blob: 01c9dc8ef232c504a3cdd3cc56e888b0840e1951 [file] [log] [blame]
Eric Andersen25f27032001-04-26 23:22:31 +00001/* vi: set sw=4 ts=4: */
2/*
3 * sh.c -- 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.
7 *
8 * Copyright (C) 2000,2001 Larry Doolittle <larry@doolittle.boa.org>
9 *
10 * Credits:
11 * The parser routines proper are all original material, first
Eric Andersencb81e642003-07-14 21:21:08 +000012 * written Dec 2000 and Jan 2001 by Larry Doolittle. The
13 * execution engine, the builtins, and much of the underlying
14 * support has been adapted from busybox-0.49pre's lash, which is
Eric Andersenc7bda1c2004-03-15 08:29:22 +000015 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersencb81e642003-07-14 21:21:08 +000016 * written by Erik Andersen <andersen@codepoet.org>. That, in turn,
17 * is based in part on ladsh.c, by Michael K. Johnson and Erik W.
18 * Troan, which they placed in the public domain. I don't know
19 * how much of the Johnson/Troan code has survived the repeated
20 * rewrites.
21 *
Eric Andersen25f27032001-04-26 23:22:31 +000022 * Other credits:
Denis Vlasenkoa8442002008-06-14 11:00:17 +000023 * o_addchr() derived from similar w_addchar function in glibc-2.2.
Eric Andersen25f27032001-04-26 23:22:31 +000024 * setup_redirect(), redirect_opt_num(), and big chunks of main()
Denis Vlasenko55b2de72007-04-18 17:21:28 +000025 * and many builtins derived from contributions by Erik Andersen
Denis Vlasenkoa8442002008-06-14 11:00:17 +000026 * miscellaneous bugfixes from Matt Kraai.
Eric Andersen25f27032001-04-26 23:22:31 +000027 *
28 * There are two big (and related) architecture differences between
29 * this parser and the lash parser. One is that this version is
30 * actually designed from the ground up to understand nearly all
31 * of the Bourne grammar. The second, consequential change is that
32 * the parser and input reader have been turned inside out. Now,
33 * the parser is in control, and asks for input as needed. The old
34 * way had the input reader in control, and it asked for parsing to
35 * take place as needed. The new way makes it much easier to properly
36 * handle the recursion implicit in the various substitutions, especially
37 * across continuation lines.
38 *
39 * Bash grammar not implemented: (how many of these were in original sh?)
Eric Andersen25f27032001-04-26 23:22:31 +000040 * $_
Eric Andersen25f27032001-04-26 23:22:31 +000041 * &> and >& redirection of stdout+stderr
42 * Brace Expansion
43 * Tilde Expansion
44 * fancy forms of Parameter Expansion
Eric Andersen78a7c992001-05-15 16:30:25 +000045 * aliases
Eric Andersen25f27032001-04-26 23:22:31 +000046 * Arithmetic Expansion
47 * <(list) and >(list) Process Substitution
Eric Andersen83a2ae22001-05-07 17:59:25 +000048 * reserved words: case, esac, select, function
Eric Andersen25f27032001-04-26 23:22:31 +000049 * Here Documents ( << word )
50 * Functions
51 * Major bugs:
Denis Vlasenkob81b3df2007-04-28 16:48:04 +000052 * job handling woefully incomplete and buggy (improved --vda)
Eric Andersen25f27032001-04-26 23:22:31 +000053 * reserved word execution woefully incomplete and buggy
Eric Andersen25f27032001-04-26 23:22:31 +000054 * to-do:
Eric Andersen83a2ae22001-05-07 17:59:25 +000055 * port selected bugfixes from post-0.49 busybox lash - done?
Eric Andersen83a2ae22001-05-07 17:59:25 +000056 * change { and } from special chars to reserved words
57 * builtins: break, continue, eval, return, set, trap, ulimit
58 * test magic exec
Eric Andersen25f27032001-04-26 23:22:31 +000059 * check setting of global_argc and global_argv
Eric Andersen25f27032001-04-26 23:22:31 +000060 * follow IFS rules more precisely, including update semantics
Eric Andersen25f27032001-04-26 23:22:31 +000061 * figure out what to do with backslash-newline
Eric Andersen25f27032001-04-26 23:22:31 +000062 * propagate syntax errors, die on resource errors?
63 * continuation lines, both explicit and implicit - done?
64 * memory leak finding and plugging - done?
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +000065 * maybe change charmap[] to use 2-bit entries
Eric Andersen25f27032001-04-26 23:22:31 +000066 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000067 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen25f27032001-04-26 23:22:31 +000068 */
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +000069
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000070
Eric Andersen25f27032001-04-26 23:22:31 +000071#include <glob.h> /* glob, of course */
Eric Andersen25f27032001-04-26 23:22:31 +000072/* #include <dmalloc.h> */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000073
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000074#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000075
Denis Vlasenkod01ff132007-05-02 21:40:23 +000076
Denis Vlasenko05743d72008-02-10 12:10:08 +000077#if !BB_MMU && ENABLE_HUSH_TICK
78//#undef ENABLE_HUSH_TICK
79//#define ENABLE_HUSH_TICK 0
80#warning On NOMMU, hush command substitution is dangerous.
81#warning Dont use it for commands which produce lots of output.
82#warning For more info see shell/hush.c, generate_stream_from_list().
83#endif
84
85#if !BB_MMU && ENABLE_HUSH_JOB
86#undef ENABLE_HUSH_JOB
87#define ENABLE_HUSH_JOB 0
88#endif
89
90#if !ENABLE_HUSH_INTERACTIVE
91#undef ENABLE_FEATURE_EDITING
92#define ENABLE_FEATURE_EDITING 0
93#undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
94#define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +000095#endif
96
97
Denis Vlasenkod01ff132007-05-02 21:40:23 +000098/* If you comment out one of these below, it will be #defined later
99 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000100#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000101/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000102#define debug_printf_parse(...) do {} while (0)
103#define debug_print_tree(a, b) do {} while (0)
104#define debug_printf_exec(...) do {} while (0)
105#define debug_printf_jobs(...) do {} while (0)
106#define debug_printf_expand(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000107#define debug_printf_glob(...) do {} while (0)
108#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000109#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000110#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000111
112#ifndef debug_printf
113#define debug_printf(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000114#endif
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000115
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000116#ifndef debug_printf_parse
117#define debug_printf_parse(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000118#endif
119
120#ifndef debug_printf_exec
121#define debug_printf_exec(...) fprintf(stderr, __VA_ARGS__)
122#endif
123
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000124#ifndef debug_printf_jobs
125#define debug_printf_jobs(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000126#define DEBUG_JOBS 1
127#else
128#define DEBUG_JOBS 0
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000129#endif
130
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000131#ifndef debug_printf_expand
132#define debug_printf_expand(...) fprintf(stderr, __VA_ARGS__)
133#define DEBUG_EXPAND 1
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000134#else
135#define DEBUG_EXPAND 0
136#endif
137
138#ifndef debug_printf_glob
139#define debug_printf_glob(...) fprintf(stderr, __VA_ARGS__)
140#define DEBUG_GLOB 1
141#else
142#define DEBUG_GLOB 0
143#endif
144
145#ifndef debug_printf_list
146#define debug_printf_list(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000147#endif
148
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000149#ifndef debug_printf_subst
150#define debug_printf_subst(...) fprintf(stderr, __VA_ARGS__)
151#endif
152
Denis Vlasenko170435c2007-05-23 13:01:10 +0000153/* Keep unconditionally on for now */
154#define ENABLE_HUSH_DEBUG 1
155
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000156#ifndef debug_printf_clean
157/* broken, of course, but OK for testing */
158static const char *indenter(int i)
159{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000160 static const char blanks[] ALIGN1 =
161 " ";
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000162 return &blanks[sizeof(blanks) - i - 1];
163}
164#define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000165#define DEBUG_CLEAN 1
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000166#endif
167
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000168#if DEBUG_EXPAND
169static void debug_print_strings(const char *prefix, char **vv)
170{
171 fprintf(stderr, "%s:\n", prefix);
172 while (*vv)
173 fprintf(stderr, " '%s'\n", *vv++);
174}
175#else
176#define debug_print_strings(prefix, vv) ((void)0)
177#endif
178
Eric Andersen25f27032001-04-26 23:22:31 +0000179
Denis Vlasenkof962a032007-11-23 12:50:54 +0000180/*
181 * Leak hunting. Use hush_leaktool.sh for post-processing.
182 */
183#ifdef FOR_HUSH_LEAKTOOL
Denis Vlasenkoccce59d2008-06-16 14:35:57 +0000184/* suppress "warning: no previous prototype..." */
185void *xxmalloc(int lineno, size_t size);
186void *xxrealloc(int lineno, void *ptr, size_t size);
187char *xxstrdup(int lineno, const char *str);
188void xxfree(void *ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000189void *xxmalloc(int lineno, size_t size)
190{
191 void *ptr = xmalloc((size + 0xff) & ~0xff);
192 fprintf(stderr, "line %d: malloc %p\n", lineno, ptr);
193 return ptr;
194}
195void *xxrealloc(int lineno, void *ptr, size_t size)
196{
197 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
198 fprintf(stderr, "line %d: realloc %p\n", lineno, ptr);
199 return ptr;
200}
201char *xxstrdup(int lineno, const char *str)
202{
203 char *ptr = xstrdup(str);
204 fprintf(stderr, "line %d: strdup %p\n", lineno, ptr);
205 return ptr;
206}
207void xxfree(void *ptr)
208{
209 fprintf(stderr, "free %p\n", ptr);
210 free(ptr);
211}
212#define xmalloc(s) xxmalloc(__LINE__, s)
213#define xrealloc(p, s) xxrealloc(__LINE__, p, s)
214#define xstrdup(s) xxstrdup(__LINE__, s)
215#define free(p) xxfree(p)
216#endif
217
218
Denis Vlasenko5703c222008-06-15 11:49:42 +0000219#define SPECIAL_VAR_SYMBOL 3
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000220#define PARSEFLAG_EXIT_FROM_LOOP 1
Eric Andersen25f27032001-04-26 23:22:31 +0000221
222typedef enum {
223 REDIRECT_INPUT = 1,
224 REDIRECT_OVERWRITE = 2,
225 REDIRECT_APPEND = 3,
226 REDIRECT_HEREIS = 4,
227 REDIRECT_IO = 5
228} redir_type;
229
Denis Vlasenko55789c62008-06-18 16:30:42 +0000230/* The descrip member of this structure is only used to make
231 * debugging output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000232static const struct {
233 int mode;
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000234 signed char default_fd;
235 char descrip[3];
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000236} redir_table[] = {
Eric Andersen25f27032001-04-26 23:22:31 +0000237 { 0, 0, "()" },
238 { O_RDONLY, 0, "<" },
239 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
240 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
241 { O_RDONLY, -1, "<<" },
242 { O_RDWR, 1, "<>" }
243};
244
245typedef enum {
246 PIPE_SEQ = 1,
247 PIPE_AND = 2,
248 PIPE_OR = 3,
249 PIPE_BG = 4,
250} pipe_style;
251
Eric Andersen25f27032001-04-26 23:22:31 +0000252typedef enum {
253 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000254#if ENABLE_HUSH_IF
Eric Andersen25f27032001-04-26 23:22:31 +0000255 RES_IF = 1,
256 RES_THEN = 2,
257 RES_ELIF = 3,
258 RES_ELSE = 4,
259 RES_FI = 5,
Denis Vlasenko06810332007-05-21 23:30:54 +0000260#endif
261#if ENABLE_HUSH_LOOPS
Eric Andersen25f27032001-04-26 23:22:31 +0000262 RES_FOR = 6,
263 RES_WHILE = 7,
264 RES_UNTIL = 8,
265 RES_DO = 9,
266 RES_DONE = 10,
Denis Vlasenko06810332007-05-21 23:30:54 +0000267 RES_IN = 11,
268#endif
269 RES_XXXX = 12,
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000270 RES_SNTX = 13
Eric Andersen25f27032001-04-26 23:22:31 +0000271} reserved_style;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000272
Eric Andersen25f27032001-04-26 23:22:31 +0000273/* This holds pointers to the various results of parsing */
274struct p_context {
275 struct child_prog *child;
276 struct pipe *list_head;
277 struct pipe *pipe;
278 struct redir_struct *pending_redirect;
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000279 smallint res_w;
Denis Vlasenkoa8442002008-06-14 11:00:17 +0000280 smallint ctx_inverted; /* "! cmd | cmd" */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000281 int old_flag; /* bitmask of FLAG_xxx, for figuring out valid reserved words */
Eric Andersen25f27032001-04-26 23:22:31 +0000282 struct p_context *stack;
Eric Andersen25f27032001-04-26 23:22:31 +0000283};
284
285struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000286 struct redir_struct *next;
287 smallint /*redir_type*/ rd_type;
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000288 int fd; /* file descriptor being redirected */
289 int dup; /* -1, or file descriptor being duplicated */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +0000290 char *rd_filename; /* filename */
Eric Andersen25f27032001-04-26 23:22:31 +0000291};
292
293struct child_prog {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000294 pid_t pid; /* 0 if exited */
Denis Vlasenko55789c62008-06-18 16:30:42 +0000295 smallint is_stopped; /* is the program currently running? */
296 smallint subshell; /* flag, non-zero if group must be forked */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000297 char **argv; /* program name and arguments */
298 struct pipe *group; /* if non-NULL, first in group or subshell */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000299 struct redir_struct *redirects; /* I/O redirections */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000300 struct pipe *family; /* pointer back to the child's parent pipe */
Eric Andersen25f27032001-04-26 23:22:31 +0000301};
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000302/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
303 * and on execution these are substituted with their values.
304 * Substitution can make _several_ words out of one argv[n]!
305 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000306 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000307 */
Eric Andersen25f27032001-04-26 23:22:31 +0000308
309struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000310 struct pipe *next;
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000311 int num_progs; /* total number of programs in job */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000312 int running_progs; /* number of programs running (not exited) */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000313 int stopped_progs; /* number of programs alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000314#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000315 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000316 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000317 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000318#endif
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000319 char *cmdbuf; /* buffer various argv's point into */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000320 struct child_prog *progs; /* array of commands in pipe */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000321 int job_context; /* bitmask defining current context */
Denis Vlasenkoa8442002008-06-14 11:00:17 +0000322 smallint pi_inverted; /* "! cmd | cmd" */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000323 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
324 smallint res_word; /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000325};
326
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000327/* On program start, environ points to initial environment.
328 * putenv adds new pointers into it, unsetenv removes them.
329 * Neither of these (de)allocates the strings.
330 * setenv allocates new strings in malloc space and does putenv,
331 * and thus setenv is unusable (leaky) for shell's purposes */
332#define setenv(...) setenv_is_leaky_dont_use()
333struct variable {
334 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000335 char *varstr; /* points to "name=" portion */
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000336 int max_len; /* if > 0, name is part of initial env; else name is malloced */
337 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000338 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000339};
340
Eric Andersen25f27032001-04-26 23:22:31 +0000341typedef struct {
342 char *data;
343 int length;
344 int maxlen;
Denis Vlasenko324a3fd2008-06-18 17:49:58 +0000345 /* Misnomer! it's not "quoting", it's "protection against globbing"!
346 * (by prepending \ to *, ?, [ and to \ too) */
Denis Vlasenkoff097622007-10-01 10:00:45 +0000347 smallint o_quote;
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000348 smallint o_glob;
Denis Vlasenkoff097622007-10-01 10:00:45 +0000349 smallint nonnull;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +0000350 smallint has_empty_slot;
Denis Vlasenko55789c62008-06-18 16:30:42 +0000351 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
Eric Andersen25f27032001-04-26 23:22:31 +0000352} o_string;
Denis Vlasenko55789c62008-06-18 16:30:42 +0000353enum {
354 MAYBE_ASSIGNMENT = 0,
355 DEFINITELY_ASSIGNMENT = 1,
356 NOT_ASSIGNMENT = 2,
357};
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000358/* Used for initialization: o_string foo = NULL_O_STRING; */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +0000359#define NULL_O_STRING { NULL }
Eric Andersen25f27032001-04-26 23:22:31 +0000360
361/* I can almost use ordinary FILE *. Is open_memstream() universally
362 * available? Where is it documented? */
363struct in_str {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +0000364 const char *p;
365 /* eof_flag=1: last char in ->p is really an EOF */
366 char eof_flag; /* meaningless if ->p == NULL */
367 char peek_buf[2];
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000368#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000369 smallint promptme;
370 smallint promptmode; /* 0: PS1, 1: PS2 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000371#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000372 FILE *file;
373 int (*get) (struct in_str *);
374 int (*peek) (struct in_str *);
375};
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +0000376#define i_getch(input) ((input)->get(input))
377#define i_peek(input) ((input)->peek(input))
Eric Andersen25f27032001-04-26 23:22:31 +0000378
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000379enum {
380 CHAR_ORDINARY = 0,
381 CHAR_ORDINARY_IF_QUOTED = 1, /* example: *, # */
382 CHAR_IFS = 2, /* treated as ordinary if quoted */
383 CHAR_SPECIAL = 3, /* example: $ */
Eric Andersen25f27032001-04-26 23:22:31 +0000384};
385
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000386#define HUSH_VER_STR "0.02"
387
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000388/* "Globals" within this file */
389
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000390/* Sorted roughly by size (smaller offsets == smaller code) */
391struct globals {
392#if ENABLE_HUSH_INTERACTIVE
393 /* 'interactive_fd' is a fd# open to ctty, if we have one
394 * _AND_ if we decided to act interactively */
395 int interactive_fd;
396 const char *PS1;
397 const char *PS2;
398#endif
399#if ENABLE_FEATURE_EDITING
400 line_input_t *line_input_state;
401#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000402 pid_t root_pid;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000403#if ENABLE_HUSH_JOB
404 int run_list_level;
405 pid_t saved_task_pgrp;
406 pid_t saved_tty_pgrp;
407 int last_jobid;
408 struct pipe *job_list;
409 struct pipe *toplevel_list;
410 smallint ctrl_z_flag;
411#endif
412 smallint fake_mode;
413 /* these three support $?, $#, and $1 */
414 char **global_argv;
415 int global_argc;
416 int last_return_code;
417 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000418 const char *cwd;
419 unsigned last_bg_pid;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000420 struct variable *top_var; /* = &shell_ver (set in main()) */
421 struct variable shell_ver;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000422#if ENABLE_FEATURE_SH_STANDALONE
423 struct nofork_save_area nofork_save;
424#endif
425#if ENABLE_HUSH_JOB
426 sigjmp_buf toplevel_jb;
427#endif
428 unsigned char charmap[256];
429 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
430};
431
432#define G (*ptr_to_globals)
433
434#if !ENABLE_HUSH_INTERACTIVE
435enum { interactive_fd = 0 };
436#endif
437#if !ENABLE_HUSH_JOB
438enum { run_list_level = 0 };
439#endif
440
441#if ENABLE_HUSH_INTERACTIVE
442#define interactive_fd (G.interactive_fd )
443#define PS1 (G.PS1 )
444#define PS2 (G.PS2 )
445#endif
446#if ENABLE_FEATURE_EDITING
447#define line_input_state (G.line_input_state)
448#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000449#define root_pid (G.root_pid )
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000450#if ENABLE_HUSH_JOB
451#define run_list_level (G.run_list_level )
452#define saved_task_pgrp (G.saved_task_pgrp )
453#define saved_tty_pgrp (G.saved_tty_pgrp )
454#define last_jobid (G.last_jobid )
455#define job_list (G.job_list )
456#define toplevel_list (G.toplevel_list )
457#define toplevel_jb (G.toplevel_jb )
458#define ctrl_z_flag (G.ctrl_z_flag )
459#endif /* JOB */
460#define global_argv (G.global_argv )
461#define global_argc (G.global_argc )
462#define last_return_code (G.last_return_code)
463#define ifs (G.ifs )
464#define fake_mode (G.fake_mode )
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000465#define cwd (G.cwd )
466#define last_bg_pid (G.last_bg_pid )
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000467#define top_var (G.top_var )
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000468#define shell_ver (G.shell_ver )
469#if ENABLE_FEATURE_SH_STANDALONE
470#define nofork_save (G.nofork_save )
Denis Vlasenko4b924f32007-05-30 00:29:55 +0000471#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000472#if ENABLE_HUSH_JOB
473#define toplevel_jb (G.toplevel_jb )
474#endif
475#define charmap (G.charmap )
476#define user_input_buf (G.user_input_buf )
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000477#define INIT_G() do { \
478 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
479} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000480
481
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000482#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
483
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000484#if 1
485/* Normal */
486static void syntax(const char *msg)
487{
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000488 /* Was using fancy stuff:
489 * (interactive_fd ? bb_error_msg : bb_error_msg_and_die)(...params...)
490 * but it SEGVs. ?! Oh well... explicit temp ptr works around that */
491 void (*fp)(const char *s, ...);
492
493 fp = (interactive_fd ? bb_error_msg : bb_error_msg_and_die);
494 fp(msg ? "%s: %s" : "syntax error", "syntax error", msg);
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000495}
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000496
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000497#else
498/* Debug */
499static void syntax_lineno(int line)
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000500{
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000501 void (*fp)(const char *s, ...);
502
503 fp = (interactive_fd ? bb_error_msg : bb_error_msg_and_die);
504 fp("syntax error hush.c:%d", line);
Eric Andersen25f27032001-04-26 23:22:31 +0000505}
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000506#define syntax(str) syntax_lineno(__LINE__)
507#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000508
509/* Index of subroutines: */
Eric Andersen25f27032001-04-26 23:22:31 +0000510/* in_str manipulations: */
511static int static_get(struct in_str *i);
512static int static_peek(struct in_str *i);
513static int file_get(struct in_str *i);
514static int file_peek(struct in_str *i);
515static void setup_file_in_str(struct in_str *i, FILE *f);
516static void setup_string_in_str(struct in_str *i, const char *s);
Eric Andersen25f27032001-04-26 23:22:31 +0000517/* "run" the final data structures: */
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000518#if !defined(DEBUG_CLEAN)
519#define free_pipe_list(head, indent) free_pipe_list(head)
520#define free_pipe(pi, indent) free_pipe(pi)
521#endif
Eric Andersenbf7df042001-05-23 22:18:35 +0000522static int free_pipe_list(struct pipe *head, int indent);
523static int free_pipe(struct pipe *pi, int indent);
Eric Andersen25f27032001-04-26 23:22:31 +0000524/* really run the final data structures: */
525static int setup_redirects(struct child_prog *prog, int squirrel[]);
Denis Vlasenko05743d72008-02-10 12:10:08 +0000526static int run_list(struct pipe *pi);
Denis Vlasenko76d50412008-06-10 16:19:39 +0000527#if BB_MMU
528#define pseudo_exec_argv(ptrs2free, argv) pseudo_exec_argv(argv)
529#define pseudo_exec(ptrs2free, child) pseudo_exec(child)
530#endif
531static void pseudo_exec_argv(char **ptrs2free, char **argv) ATTRIBUTE_NORETURN;
532static void pseudo_exec(char **ptrs2free, struct child_prog *child) ATTRIBUTE_NORETURN;
Denis Vlasenko05743d72008-02-10 12:10:08 +0000533static int run_pipe(struct pipe *pi);
Eric Andersen25f27032001-04-26 23:22:31 +0000534/* data structure manipulation: */
535static int setup_redirect(struct p_context *ctx, int fd, redir_type style, struct in_str *input);
536static void initialize_context(struct p_context *ctx);
537static int done_word(o_string *dest, struct p_context *ctx);
538static int done_command(struct p_context *ctx);
Denis Vlasenkoa8442002008-06-14 11:00:17 +0000539static void done_pipe(struct p_context *ctx, pipe_style type);
Eric Andersen25f27032001-04-26 23:22:31 +0000540/* primary string parsing: */
541static int redirect_dup_num(struct in_str *input);
542static int redirect_opt_num(o_string *o);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +0000543#if ENABLE_HUSH_TICK
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +0000544static int process_command_subs(o_string *dest,
Denis Vlasenko68404f12008-03-17 09:00:54 +0000545 struct in_str *input, const char *subst_end);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +0000546#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000547static int parse_group(o_string *dest, struct p_context *ctx, struct in_str *input, int ch);
Denis Vlasenko15d78fb2007-01-30 22:28:21 +0000548static const char *lookup_param(const char *src);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +0000549static int handle_dollar(o_string *dest,
Denis Vlasenko68404f12008-03-17 09:00:54 +0000550 struct in_str *input);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000551static int parse_stream(o_string *dest, struct p_context *ctx, struct in_str *input0, const char *end_trigger);
Eric Andersen25f27032001-04-26 23:22:31 +0000552/* setup: */
Denis Vlasenko170435c2007-05-23 13:01:10 +0000553static int parse_and_run_stream(struct in_str *inp, int parse_flag);
554static int parse_and_run_string(const char *s, int parse_flag);
555static int parse_and_run_file(FILE *f);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000556/* job management: */
Eric Andersenc798b072001-06-22 06:23:03 +0000557static int checkjobs(struct pipe* fg_pipe);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000558#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +0000559static int checkjobs_and_fg_shell(struct pipe* fg_pipe);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000560static void insert_bg_job(struct pipe *pi);
561static void remove_bg_job(struct pipe *pi);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000562static void delete_finished_bg_job(struct pipe *pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000563#else
564int checkjobs_and_fg_shell(struct pipe* fg_pipe); /* never called */
565#endif
Eric Andersenf72f5622001-05-15 23:21:41 +0000566/* local variable support */
Denis Vlasenko170435c2007-05-23 13:01:10 +0000567static char **expand_strvec_to_strvec(char **argv);
568/* used for eval */
569static char *expand_strvec_to_string(char **argv);
Denis Vlasenkob6a741f2007-05-17 14:38:17 +0000570/* used for expansion of right hand of assignments */
Denis Vlasenko170435c2007-05-23 13:01:10 +0000571static char *expand_string_to_string(const char *str);
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000572static struct variable *get_local_var(const char *name);
573static int set_local_var(char *str, int flg_export);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +0000574static void unset_local_var(const char *name);
Eric Andersen25f27032001-04-26 23:22:31 +0000575
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000576
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000577static int glob_needed(const char *s)
578{
579 while (*s) {
580 if (*s == '\\')
581 s++;
582 if (*s == '*' || *s == '[' || *s == '?')
583 return 1;
584 s++;
585 }
586 return 0;
587}
588
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000589static int is_assignment(const char *s)
590{
591 if (!s || !isalpha(*s))
592 return 0;
593 s++;
594 while (isalnum(*s) || *s == '_')
595 s++;
596 return *s == '=';
597}
598
Denis Vlasenko55789c62008-06-18 16:30:42 +0000599/* Replace each \x with x in place, return ptr past NUL. */
600static char *unbackslash(char *src)
601{
602 char *dst = src;
603 while (1) {
604 if (*src == '\\')
605 src++;
606 if ((*dst++ = *src++) == '\0')
607 break;
608 }
609 return dst;
610}
611
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000612static char **add_malloced_strings_to_strings(char **strings, char **add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000613{
614 int i;
615 unsigned count1;
616 unsigned count2;
617 char **v;
618
619 v = strings;
620 count1 = 0;
621 if (v) {
622 while (*v) {
623 count1++;
624 v++;
625 }
626 }
627 count2 = 0;
628 v = add;
629 while (*v) {
630 count2++;
631 v++;
632 }
633 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
634 v[count1 + count2] = NULL;
635 i = count2;
636 while (--i >= 0)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000637 v[count1 + i] = add[i];
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000638 return v;
639}
640
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000641static char **add_malloced_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000642{
643 char *v[2];
644
645 v[0] = add;
646 v[1] = NULL;
647
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000648 return add_malloced_strings_to_strings(strings, v);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000649}
650
651static void free_strings(char **strings)
652{
653 if (strings) {
654 char **v = strings;
655 while (*v)
656 free(*v++);
657 free(strings);
658 }
659}
660
Denis Vlasenko76d50412008-06-10 16:19:39 +0000661#if !BB_MMU
662#define EXTRA_PTRS 5 /* 1 for NULL, 1 for args, 3 for paranoid reasons */
663static char **alloc_ptrs(char **argv)
664{
665 char **v = argv;
666 while (*v)
667 v++;
668 return xzalloc((v - argv + EXTRA_PTRS) * sizeof(v[0]));
669}
670#endif
671
672
Denis Vlasenko83506862007-11-23 13:11:42 +0000673/* Function prototypes for builtins */
674static int builtin_cd(char **argv);
Denis Vlasenko5bc593c2007-11-23 21:20:21 +0000675static int builtin_echo(char **argv);
Denis Vlasenko83506862007-11-23 13:11:42 +0000676static int builtin_eval(char **argv);
677static int builtin_exec(char **argv);
678static int builtin_exit(char **argv);
679static int builtin_export(char **argv);
680#if ENABLE_HUSH_JOB
681static int builtin_fg_bg(char **argv);
682static int builtin_jobs(char **argv);
683#endif
684#if ENABLE_HUSH_HELP
685static int builtin_help(char **argv);
686#endif
687static int builtin_pwd(char **argv);
688static int builtin_read(char **argv);
689static int builtin_test(char **argv);
Denis Vlasenkodd316dd2008-06-14 15:50:55 +0000690static int builtin_true(char **argv);
Denis Vlasenko83506862007-11-23 13:11:42 +0000691static int builtin_set(char **argv);
692static int builtin_shift(char **argv);
693static int builtin_source(char **argv);
694static int builtin_umask(char **argv);
695static int builtin_unset(char **argv);
696//static int builtin_not_written(char **argv);
697
Eric Andersen25f27032001-04-26 23:22:31 +0000698/* Table of built-in functions. They can be forked or not, depending on
699 * context: within pipes, they fork. As simple commands, they do not.
700 * When used in non-forking context, they can change global variables
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000701 * in the parent shell process. If forked, of course they cannot.
Eric Andersen25f27032001-04-26 23:22:31 +0000702 * For example, 'unset foo | whatever' will parse and run, but foo will
703 * still be set at the end. */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000704struct built_in_command {
Denis Vlasenkodd316dd2008-06-14 15:50:55 +0000705 const char *cmd;
706 int (*function)(char **argv);
Denis Vlasenko06810332007-05-21 23:30:54 +0000707#if ENABLE_HUSH_HELP
Denis Vlasenkodd316dd2008-06-14 15:50:55 +0000708 const char *descr;
Denis Vlasenko06810332007-05-21 23:30:54 +0000709#define BLTIN(cmd, func, help) { cmd, func, help }
710#else
711#define BLTIN(cmd, func, help) { cmd, func }
712#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000713};
714
Denis Vlasenko5bc593c2007-11-23 21:20:21 +0000715/* For now, echo and test are unconditionally enabled.
716 * Maybe make it configurable? */
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +0000717static const struct built_in_command bltins[] = {
Denis Vlasenkodd316dd2008-06-14 15:50:55 +0000718 BLTIN("." , builtin_source, "Run commands in a file"),
719 BLTIN(":" , builtin_true, "No-op"),
Denis Vlasenko83506862007-11-23 13:11:42 +0000720 BLTIN("[" , builtin_test, "Test condition"),
721 BLTIN("[[" , builtin_test, "Test condition"),
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000722#if ENABLE_HUSH_JOB
Denis Vlasenko06810332007-05-21 23:30:54 +0000723 BLTIN("bg" , builtin_fg_bg, "Resume a job in the background"),
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000724#endif
Denis Vlasenko06810332007-05-21 23:30:54 +0000725// BLTIN("break" , builtin_not_written, "Exit for, while or until loop"),
Denis Vlasenkodd316dd2008-06-14 15:50:55 +0000726 BLTIN("cd" , builtin_cd, "Change directory"),
Denis Vlasenko06810332007-05-21 23:30:54 +0000727// BLTIN("continue", builtin_not_written, "Continue for, while or until loop"),
Denis Vlasenko5bc593c2007-11-23 21:20:21 +0000728 BLTIN("echo" , builtin_echo, "Write strings to stdout"),
Denis Vlasenko06810332007-05-21 23:30:54 +0000729 BLTIN("eval" , builtin_eval, "Construct and run shell command"),
Denis Vlasenkodd316dd2008-06-14 15:50:55 +0000730 BLTIN("exec" , builtin_exec, "Execute command, don't return to shell"),
731 BLTIN("exit" , builtin_exit, "Exit"),
Denis Vlasenko06810332007-05-21 23:30:54 +0000732 BLTIN("export", builtin_export, "Set environment variable"),
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000733#if ENABLE_HUSH_JOB
Denis Vlasenko06810332007-05-21 23:30:54 +0000734 BLTIN("fg" , builtin_fg_bg, "Bring job into the foreground"),
Denis Vlasenkodd316dd2008-06-14 15:50:55 +0000735 BLTIN("jobs" , builtin_jobs, "List active jobs"),
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000736#endif
Denis Vlasenko06810332007-05-21 23:30:54 +0000737 BLTIN("pwd" , builtin_pwd, "Print current directory"),
738 BLTIN("read" , builtin_read, "Input environment variable"),
739// BLTIN("return", builtin_not_written, "Return from a function"),
740 BLTIN("set" , builtin_set, "Set/unset shell local variables"),
741 BLTIN("shift" , builtin_shift, "Shift positional parameters"),
742// BLTIN("trap" , builtin_not_written, "Trap signals"),
Denis Vlasenko83506862007-11-23 13:11:42 +0000743 BLTIN("test" , builtin_test, "Test condition"),
Denis Vlasenkodd316dd2008-06-14 15:50:55 +0000744// BLTIN("ulimit", builtin_not_written, "Control resource limits"),
745 BLTIN("umask" , builtin_umask, "Set file creation mask"),
Denis Vlasenko06810332007-05-21 23:30:54 +0000746 BLTIN("unset" , builtin_unset, "Unset environment variable"),
Denis Vlasenko06810332007-05-21 23:30:54 +0000747#if ENABLE_HUSH_HELP
748 BLTIN("help" , builtin_help, "List shell built-in commands"),
749#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000750};
751
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000752
Denis Vlasenko4830fc52008-05-25 21:50:55 +0000753/* Signals are grouped, we handle them in batches */
754static void set_misc_sighandler(void (*handler)(int))
755{
756 bb_signals(0
757 + (1 << SIGINT)
758 + (1 << SIGQUIT)
759 + (1 << SIGTERM)
760 , handler);
761}
762
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000763#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000764
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000765static void set_fatal_sighandler(void (*handler)(int))
766{
Denis Vlasenko25591c32008-02-16 22:58:56 +0000767 bb_signals(0
768 + (1 << SIGILL)
769 + (1 << SIGTRAP)
770 + (1 << SIGABRT)
771 + (1 << SIGFPE)
772 + (1 << SIGBUS)
773 + (1 << SIGSEGV)
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000774 /* bash 3.2 seems to handle these just like 'fatal' ones */
Denis Vlasenko25591c32008-02-16 22:58:56 +0000775 + (1 << SIGHUP)
776 + (1 << SIGPIPE)
777 + (1 << SIGALRM)
778 , handler);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000779}
780static void set_jobctrl_sighandler(void (*handler)(int))
781{
Denis Vlasenko25591c32008-02-16 22:58:56 +0000782 bb_signals(0
783 + (1 << SIGTSTP)
784 + (1 << SIGTTIN)
785 + (1 << SIGTTOU)
786 , handler);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000787}
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000788/* SIGCHLD is special and handled separately */
789
790static void set_every_sighandler(void (*handler)(int))
791{
792 set_fatal_sighandler(handler);
793 set_jobctrl_sighandler(handler);
794 set_misc_sighandler(handler);
795 signal(SIGCHLD, handler);
796}
797
Denis Vlasenko68404f12008-03-17 09:00:54 +0000798static void handler_ctrl_c(int sig ATTRIBUTE_UNUSED)
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +0000799{
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000800 debug_printf_jobs("got sig %d\n", sig);
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +0000801// as usual we can have all kinds of nasty problems with leaked malloc data here
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000802 siglongjmp(toplevel_jb, 1);
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +0000803}
804
Denis Vlasenko68404f12008-03-17 09:00:54 +0000805static void handler_ctrl_z(int sig ATTRIBUTE_UNUSED)
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000806{
807 pid_t pid;
808
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000809 debug_printf_jobs("got tty sig %d in pid %d\n", sig, getpid());
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000810 pid = fork();
Denis Vlasenkoc2990322007-05-16 12:57:12 +0000811 if (pid < 0) /* can't fork. Pretend there was no ctrl-Z */
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000812 return;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000813 ctrl_z_flag = 1;
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000814 if (!pid) { /* child */
Denis Vlasenko83177992008-02-11 08:44:36 +0000815 if (ENABLE_HUSH_JOB)
816 die_sleep = 0; /* let nofork's xfuncs die */
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000817 setpgrp();
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000818 debug_printf_jobs("set pgrp for child %d ok\n", getpid());
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000819 set_every_sighandler(SIG_DFL);
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000820 raise(SIGTSTP); /* resend TSTP so that child will be stopped */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000821 debug_printf_jobs("returning in child\n");
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000822 /* return to nofork, it will eventually exit now,
823 * not return back to shell */
824 return;
825 }
826 /* parent */
827 /* finish filling up pipe info */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000828 toplevel_list->pgrp = pid; /* child is in its own pgrp */
829 toplevel_list->progs[0].pid = pid;
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000830 /* parent needs to longjmp out of running nofork.
831 * we will "return" exitcode 0, with child put in background */
832// as usual we can have all kinds of nasty problems with leaked malloc data here
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000833 debug_printf_jobs("siglongjmp in parent\n");
834 siglongjmp(toplevel_jb, 1);
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000835}
836
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000837/* Restores tty foreground process group, and exits.
838 * May be called as signal handler for fatal signal
839 * (will faithfully resend signal to itself, producing correct exit state)
840 * or called directly with -EXITCODE.
841 * We also call it if xfunc is exiting. */
842static void sigexit(int sig) ATTRIBUTE_NORETURN;
843static void sigexit(int sig)
844{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000845 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000846 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000847
Denis Vlasenko87cb2db2007-04-21 10:00:01 +0000848 if (interactive_fd)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000849 tcsetpgrp(interactive_fd, saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000850
851 /* Not a signal, just exit */
852 if (sig <= 0)
853 _exit(- sig);
854
Denis Vlasenko400d8bb2008-02-24 13:36:01 +0000855 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000856}
857
858/* Restores tty foreground process group, and exits. */
859static void hush_exit(int exitcode) ATTRIBUTE_NORETURN;
860static void hush_exit(int exitcode)
861{
862 fflush(NULL); /* flush all streams */
863 sigexit(- (exitcode & 0xff));
864}
865
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000866#else /* !JOB */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000867
868#define set_fatal_sighandler(handler) ((void)0)
869#define set_jobctrl_sighandler(handler) ((void)0)
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000870#define hush_exit(e) exit(e)
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000871
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000872#endif /* JOB */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000873
874
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000875static const char *set_cwd(void)
876{
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000877 if (cwd == bb_msg_unknown)
Denis Vlasenko7cced6e2007-04-12 17:08:53 +0000878 cwd = NULL; /* xrealloc_getcwd_or_warn(arg) calls free(arg)! */
Denis Vlasenko6ca04442007-02-11 16:19:28 +0000879 cwd = xrealloc_getcwd_or_warn((char *)cwd);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000880 if (!cwd)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000881 cwd = bb_msg_unknown;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000882 return cwd;
883}
884
Denis Vlasenko83506862007-11-23 13:11:42 +0000885
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +0000886/*
887 * o_string support
888 */
889#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +0000890
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +0000891static void o_reset(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +0000892{
893 o->length = 0;
894 o->nonnull = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000895 if (o->data)
896 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +0000897}
898
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +0000899static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +0000900{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000901 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000902 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +0000903}
904
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +0000905static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +0000906{
907 if (o->length + len > o->maxlen) {
908 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
909 o->data = xrealloc(o->data, 1 + o->maxlen);
910 }
911}
912
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +0000913static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +0000914{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +0000915 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
916 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +0000917 o->data[o->length] = ch;
918 o->length++;
919 o->data[o->length] = '\0';
920}
921
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +0000922static void o_addstr(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +0000923{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +0000924 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +0000925 memcpy(&o->data[o->length], str, len);
926 o->length += len;
927 o->data[o->length] = '\0';
928}
929
Denis Vlasenko55789c62008-06-18 16:30:42 +0000930static void o_addstr_duplicate_backslash(o_string *o, const char *str, int len)
931{
932 while (len) {
933 o_addchr(o, *str);
934 if (*str++ == '\\'
935 && (*str != '*' && *str != '?' && *str != '[')
936 ) {
937 o_addchr(o, '\\');
938 }
939 len--;
940 }
941}
942
Eric Andersen25f27032001-04-26 23:22:31 +0000943/* My analysis of quoting semantics tells me that state information
944 * is associated with a destination, not a source.
945 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +0000946static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +0000947{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +0000948 int sz = 1;
949 if (strchr("*?[\\", ch)) {
950 sz++;
951 o->data[o->length] = '\\';
952 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +0000953 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +0000954 o_grow_by(o, sz);
955 o->data[o->length] = ch;
956 o->length++;
957 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +0000958}
959
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +0000960static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +0000961{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +0000962 int sz = 1;
963 if (o->o_quote && strchr("*?[\\", ch)) {
964 sz++;
965 o->data[o->length] = '\\';
966 o->length++;
967 }
968 o_grow_by(o, sz);
969 o->data[o->length] = ch;
970 o->length++;
971 o->data[o->length] = '\0';
972}
973
974static void o_addQstr(o_string *o, const char *str, int len)
975{
976 if (!o->o_quote) {
Denis Vlasenko87f40ba2008-06-10 22:39:37 +0000977 o_addstr(o, str, len);
978 return;
979 }
980 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +0000981 char ch;
982 int sz;
983 int ordinary_cnt = strcspn(str, "*?[\\");
984 if (ordinary_cnt > len) /* paranoia */
985 ordinary_cnt = len;
986 o_addstr(o, str, ordinary_cnt);
987 if (ordinary_cnt == len)
988 return;
989 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000990 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +0000991
Denis Vlasenko87f40ba2008-06-10 22:39:37 +0000992 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +0000993 sz = 1;
994 if (ch) { /* it is necessarily one of "*?[\\" */
995 sz++;
996 o->data[o->length] = '\\';
997 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +0000998 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +0000999 o_grow_by(o, sz);
1000 o->data[o->length] = ch;
1001 o->length++;
1002 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001003 }
1004}
1005
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001006/* A special kind of o_string for $VAR and `cmd` expansion.
1007 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001008 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001009 * list[i] contains an INDEX (int!) into this string data.
1010 * It means that if list[] needs to grow, data needs to be moved higher up
1011 * but list[i]'s need not be modified.
1012 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001013 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001014 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1015 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001016#if DEBUG_EXPAND || DEBUG_GLOB
1017static void debug_print_list(const char *prefix, o_string *o, int n)
1018{
1019 char **list = (char**)o->data;
1020 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1021 int i = 0;
1022 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1023 prefix, list, n, string_start, o->length, o->maxlen);
1024 while (i < n) {
1025 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1026 o->data + (int)list[i] + string_start,
1027 o->data + (int)list[i] + string_start);
1028 i++;
1029 }
1030 if (n) {
1031 const char *p = o->data + (int)list[n - 1] + string_start;
1032 fprintf(stderr, " total_sz:%d\n", (p + strlen(p) + 1) - o->data);
1033 }
1034}
1035#else
1036#define debug_print_list(prefix, o, n) ((void)0)
1037#endif
1038
1039/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1040 * in list[n] so that it points past last stored byte so far.
1041 * It returns n+1. */
1042static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001043{
1044 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001045 int string_start;
1046 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001047
1048 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001049 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1050 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001051 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001052 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001053 /* list[n] points to string_start, make space for 16 more pointers */
1054 o->maxlen += 0x10 * sizeof(list[0]);
1055 o->data = xrealloc(o->data, o->maxlen + 1);
1056 list = (char**)o->data;
1057 memmove(list + n + 0x10, list + n, string_len);
1058 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001059 } else
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001060 debug_printf_list("list[%d]=%d string_start=%d\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001061 } else {
1062 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001063 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1064 string_len = o->length - string_start;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001065 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001066 o->has_empty_slot = 0;
1067 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001068 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001069 return n + 1;
1070}
1071
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001072/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001073static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001074{
1075 char **list = (char**)o->data;
1076 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1077
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001078 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001079}
1080
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001081/* o_glob performs globbing on last list[], saving each result
Denis Vlasenko55789c62008-06-18 16:30:42 +00001082 * as a new list[]. */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001083static int o_glob(o_string *o, int n)
1084{
1085 glob_t globdata;
1086 int gr;
1087 char *pattern;
1088
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001089 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001090 if (!o->data)
1091 return o_save_ptr_helper(o, n);
1092 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001093 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001094 if (!glob_needed(pattern)) {
1095 literal:
1096 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001097 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001098 return o_save_ptr_helper(o, n);
1099 }
1100
1101 memset(&globdata, 0, sizeof(globdata));
1102 gr = glob(pattern, 0, NULL, &globdata);
1103 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
1104 if (gr == GLOB_NOSPACE)
1105 bb_error_msg_and_die("out of memory during glob");
1106 if (gr == GLOB_NOMATCH) {
1107 globfree(&globdata);
1108 goto literal;
1109 }
1110 if (gr != 0) { /* GLOB_ABORTED ? */
1111//TODO: testcase for bad glob pattern behavior
1112 bb_error_msg("glob(3) error %d on '%s'", gr, pattern);
1113 }
1114 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
1115 char **argv = globdata.gl_pathv;
1116 o->length = pattern - o->data; /* "forget" pattern */
1117 while (1) {
1118 o_addstr(o, *argv, strlen(*argv) + 1);
1119 n = o_save_ptr_helper(o, n);
1120 argv++;
1121 if (!*argv)
1122 break;
1123 }
1124 }
1125 globfree(&globdata);
1126 if (DEBUG_GLOB)
1127 debug_print_list("o_glob returning", o, n);
1128 return n;
1129}
1130
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001131/* If o->o_glob == 1, glob the string so far remembered.
1132 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001133static int o_save_ptr(o_string *o, int n)
1134{
1135 if (o->o_glob)
1136 return o_glob(o, n); /* o_save_ptr_helper is inside */
1137 return o_save_ptr_helper(o, n);
1138}
1139
1140/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001141static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001142{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001143 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001144 int string_start;
1145
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001146 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
1147 if (DEBUG_EXPAND)
1148 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001149 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001150 list = (char**)o->data;
1151 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1152 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001153 while (n) {
1154 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001155 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001156 }
1157 return list;
1158}
1159
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001160
1161/*
1162 * in_str support
1163 */
Eric Andersen25f27032001-04-26 23:22:31 +00001164static int static_get(struct in_str *i)
1165{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001166 int ch = *i->p++;
1167 if (ch == '\0') return EOF;
Eric Andersen25f27032001-04-26 23:22:31 +00001168 return ch;
1169}
1170
1171static int static_peek(struct in_str *i)
1172{
1173 return *i->p;
1174}
1175
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001176#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001177
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001178#if ENABLE_FEATURE_EDITING
Rob Landley88621d72006-08-29 19:41:06 +00001179static void cmdedit_set_initial_prompt(void)
Eric Andersen25f27032001-04-26 23:22:31 +00001180{
Denis Vlasenko38f63192007-01-22 09:03:07 +00001181#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +00001182 PS1 = NULL;
1183#else
1184 PS1 = getenv("PS1");
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001185 if (PS1 == NULL)
Eric Andersen25f27032001-04-26 23:22:31 +00001186 PS1 = "\\w \\$ ";
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001187#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001188}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001189#endif /* EDITING */
Eric Andersen25f27032001-04-26 23:22:31 +00001190
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001191static const char* setup_prompt_string(int promptmode)
Eric Andersen25f27032001-04-26 23:22:31 +00001192{
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001193 const char *prompt_str;
1194 debug_printf("setup_prompt_string %d ", promptmode);
Denis Vlasenko38f63192007-01-22 09:03:07 +00001195#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +00001196 /* Set up the prompt */
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001197 if (promptmode == 0) { /* PS1 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001198 free((char*)PS1);
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001199 PS1 = xasprintf("%s %c ", cwd, (geteuid() != 0) ? '$' : '#');
1200 prompt_str = PS1;
Eric Andersen25f27032001-04-26 23:22:31 +00001201 } else {
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001202 prompt_str = PS2;
Eric Andersen25f27032001-04-26 23:22:31 +00001203 }
1204#else
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001205 prompt_str = (promptmode == 0) ? PS1 : PS2;
Eric Andersenaf44a0e2001-04-27 07:26:12 +00001206#endif
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001207 debug_printf("result '%s'\n", prompt_str);
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001208 return prompt_str;
Eric Andersen25f27032001-04-26 23:22:31 +00001209}
1210
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001211static void get_user_input(struct in_str *i)
Eric Andersen25f27032001-04-26 23:22:31 +00001212{
Denis Vlasenko0937be52007-04-28 16:47:08 +00001213 int r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001214 const char *prompt_str;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001215
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001216 prompt_str = setup_prompt_string(i->promptmode);
Denis Vlasenko38f63192007-01-22 09:03:07 +00001217#if ENABLE_FEATURE_EDITING
Denis Vlasenko170435c2007-05-23 13:01:10 +00001218 /* Enable command line editing only while a command line
Denis Vlasenkoe376d452008-02-20 22:23:24 +00001219 * is actually being read */
1220 do {
1221 r = read_line_input(prompt_str, user_input_buf, BUFSIZ-1, line_input_state);
1222 } while (r == 0); /* repeat if Ctrl-C */
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001223 i->eof_flag = (r < 0);
1224 if (i->eof_flag) { /* EOF/error detected */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001225 user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1226 user_input_buf[1] = '\0';
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001227 }
Eric Andersen25f27032001-04-26 23:22:31 +00001228#else
1229 fputs(prompt_str, stdout);
1230 fflush(stdout);
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001231 user_input_buf[0] = r = fgetc(i->file);
1232 /*user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001233 i->eof_flag = (r == EOF);
Eric Andersen25f27032001-04-26 23:22:31 +00001234#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001235 i->p = user_input_buf;
Eric Andersen25f27032001-04-26 23:22:31 +00001236}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001237
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001238#endif /* INTERACTIVE */
Eric Andersen25f27032001-04-26 23:22:31 +00001239
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001240/* This is the magic location that prints prompts
Eric Andersen25f27032001-04-26 23:22:31 +00001241 * and gets data back from the user */
1242static int file_get(struct in_str *i)
1243{
1244 int ch;
1245
Eric Andersen25f27032001-04-26 23:22:31 +00001246 /* If there is data waiting, eat it up */
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001247 if (i->p && *i->p) {
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001248#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001249 take_cached:
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001250#endif
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001251 ch = *i->p++;
1252 if (i->eof_flag && !*i->p)
1253 ch = EOF;
Eric Andersen25f27032001-04-26 23:22:31 +00001254 } else {
1255 /* need to double check i->file because we might be doing something
1256 * more complicated by now, like sourcing or substituting. */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001257#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001258 if (interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001259 do {
1260 get_user_input(i);
1261 } while (!*i->p); /* need non-empty line */
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001262 i->promptmode = 1; /* PS2 */
1263 i->promptme = 0;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001264 goto take_cached;
Eric Andersen25f27032001-04-26 23:22:31 +00001265 }
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001266#endif
1267 ch = fgetc(i->file);
Eric Andersen25f27032001-04-26 23:22:31 +00001268 }
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001269 debug_printf("file_get: got a '%c' %d\n", ch, ch);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001270#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001271 if (ch == '\n')
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001272 i->promptme = 1;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001273#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001274 return ch;
1275}
1276
1277/* All the callers guarantee this routine will never be
1278 * used right after a newline, so prompting is not needed.
1279 */
1280static int file_peek(struct in_str *i)
1281{
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00001282 int ch;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001283 if (i->p && *i->p) {
1284 if (i->eof_flag && !i->p[1])
1285 return EOF;
1286 return *i->p;
Eric Andersen25f27032001-04-26 23:22:31 +00001287 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00001288 ch = fgetc(i->file);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001289 i->eof_flag = (ch == EOF);
1290 i->peek_buf[0] = ch;
1291 i->peek_buf[1] = '\0';
1292 i->p = i->peek_buf;
1293 debug_printf("file_peek: got a '%c' %d\n", *i->p, *i->p);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00001294 return ch;
Eric Andersen25f27032001-04-26 23:22:31 +00001295}
1296
1297static void setup_file_in_str(struct in_str *i, FILE *f)
1298{
1299 i->peek = file_peek;
1300 i->get = file_get;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001301#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001302 i->promptme = 1;
1303 i->promptmode = 0; /* PS1 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001304#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001305 i->file = f;
1306 i->p = NULL;
1307}
1308
1309static void setup_string_in_str(struct in_str *i, const char *s)
1310{
1311 i->peek = static_peek;
1312 i->get = static_get;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001313#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001314 i->promptme = 1;
1315 i->promptmode = 0; /* PS1 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001316#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001317 i->p = s;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001318 i->eof_flag = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00001319}
1320
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001321
Eric Andersen25f27032001-04-26 23:22:31 +00001322/* squirrel != NULL means we squirrel away copies of stdin, stdout,
1323 * and stderr if they are redirected. */
1324static int setup_redirects(struct child_prog *prog, int squirrel[])
1325{
1326 int openfd, mode;
1327 struct redir_struct *redir;
1328
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001329 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00001330 if (redir->dup == -1 && redir->rd_filename == NULL) {
Eric Andersen817e73c2001-06-06 17:56:09 +00001331 /* something went wrong in the parse. Pretend it didn't happen */
1332 continue;
1333 }
Eric Andersen25f27032001-04-26 23:22:31 +00001334 if (redir->dup == -1) {
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00001335 char *p;
Denis Vlasenko55789c62008-06-18 16:30:42 +00001336 mode = redir_table[redir->rd_type].mode;
1337//TODO: check redir to names like '\\'
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00001338 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00001339 openfd = open_or_warn(p, mode);
1340 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00001341 if (openfd < 0) {
1342 /* this could get lost if stderr has been redirected, but
1343 bash and ash both lose it as well (though zsh doesn't!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001344 return 1;
1345 }
1346 } else {
1347 openfd = redir->dup;
1348 }
1349
1350 if (openfd != redir->fd) {
1351 if (squirrel && redir->fd < 3) {
1352 squirrel[redir->fd] = dup(redir->fd);
1353 }
Eric Andersen83a2ae22001-05-07 17:59:25 +00001354 if (openfd == -3) {
Denis Vlasenko8412d792007-10-01 09:59:47 +00001355 //close(openfd); // close(-3) ??!
Eric Andersen83a2ae22001-05-07 17:59:25 +00001356 } else {
1357 dup2(openfd, redir->fd);
Matt Kraaic616e532001-06-05 16:50:08 +00001358 if (redir->dup == -1)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001359 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001360 }
Eric Andersen25f27032001-04-26 23:22:31 +00001361 }
1362 }
1363 return 0;
1364}
1365
1366static void restore_redirects(int squirrel[])
1367{
1368 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001369 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00001370 fd = squirrel[i];
1371 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00001372 /* We simply die on error */
1373 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00001374 }
1375 }
1376}
1377
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001378
Denis Vlasenko05743d72008-02-10 12:10:08 +00001379/* Called after [v]fork() in run_pipe(), or from builtin_exec().
Denis Vlasenko8412d792007-10-01 09:59:47 +00001380 * Never returns.
1381 * XXX no exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00001382 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001383 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenko76d50412008-06-10 16:19:39 +00001384static void pseudo_exec_argv(char **ptrs2free, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001385{
Eric Andersen78a7c992001-05-15 16:30:25 +00001386 int i, rcode;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001387 char *p;
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00001388 const struct built_in_command *x;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001389
Denis Vlasenko1359da62007-04-21 23:27:30 +00001390 for (i = 0; is_assignment(argv[i]); i++) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001391 debug_printf_exec("pid %d environment modification: %s\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001392 getpid(), argv[i]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00001393 p = expand_string_to_string(argv[i]);
Denis Vlasenko76d50412008-06-10 16:19:39 +00001394#if !BB_MMU
1395 *ptrs2free++ = p;
1396#endif
Denis Vlasenko170435c2007-05-23 13:01:10 +00001397 putenv(p);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001398 }
1399 argv += i;
1400 /* If a variable is assigned in a forest, and nobody listens,
1401 * was it ever really set?
1402 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00001403 if (!argv[0])
Denis Vlasenko1359da62007-04-21 23:27:30 +00001404 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001405
Denis Vlasenko170435c2007-05-23 13:01:10 +00001406 argv = expand_strvec_to_strvec(argv);
Denis Vlasenko76d50412008-06-10 16:19:39 +00001407#if !BB_MMU
1408 *ptrs2free++ = (char*) argv;
1409#endif
Denis Vlasenko764d59d2007-05-14 16:23:23 +00001410
Denis Vlasenko1359da62007-04-21 23:27:30 +00001411 /*
1412 * Check if the command matches any of the builtins.
1413 * Depending on context, this might be redundant. But it's
1414 * easier to waste a few CPU cycles than it is to figure out
1415 * if this is one of those cases.
1416 */
Denis Vlasenkodd316dd2008-06-14 15:50:55 +00001417 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001418 if (strcmp(argv[0], x->cmd) == 0) {
Denis Vlasenko764d59d2007-05-14 16:23:23 +00001419 debug_printf_exec("running builtin '%s'\n", argv[0]);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001420 rcode = x->function(argv);
1421 fflush(stdout);
1422 _exit(rcode);
Eric Andersen94ac2442001-05-22 19:05:18 +00001423 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001424 }
Eric Andersen78a7c992001-05-15 16:30:25 +00001425
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001426 /* Check if the command matches any busybox applets */
Denis Vlasenko80d14be2007-04-10 23:03:30 +00001427#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001428 if (strchr(argv[0], '/') == NULL) {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00001429 int a = find_applet_by_name(argv[0]);
1430 if (a >= 0) {
1431 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001432 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00001433// is it ok that run_applet_no_and_exit() does exit(), not _exit()?
1434 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001435 }
1436 /* re-exec ourselves with the new arguments */
1437 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenkobdbbb7e2007-06-08 15:02:55 +00001438 execvp(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001439 /* If they called chroot or otherwise made the binary no longer
1440 * executable, fall through */
1441 }
1442 }
Eric Andersenaac75e52001-04-30 18:18:45 +00001443#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001444
1445 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001446 execvp(argv[0], argv);
1447 bb_perror_msg("cannot exec '%s'", argv[0]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001448 _exit(EXIT_FAILURE);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001449}
1450
Denis Vlasenko05743d72008-02-10 12:10:08 +00001451/* Called after [v]fork() in run_pipe()
Denis Vlasenko8412d792007-10-01 09:59:47 +00001452 */
Denis Vlasenko76d50412008-06-10 16:19:39 +00001453static void pseudo_exec(char **ptrs2free, struct child_prog *child)
Denis Vlasenko1359da62007-04-21 23:27:30 +00001454{
Denis Vlasenko05743d72008-02-10 12:10:08 +00001455 if (child->argv)
Denis Vlasenko76d50412008-06-10 16:19:39 +00001456 pseudo_exec_argv(ptrs2free, child->argv);
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001457
1458 if (child->group) {
Denis Vlasenko8412d792007-10-01 09:59:47 +00001459#if !BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00001460 bb_error_msg_and_die("nested lists are not supported on NOMMU");
Denis Vlasenko8412d792007-10-01 09:59:47 +00001461#else
Denis Vlasenko3b492162007-12-24 14:26:57 +00001462 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00001463 debug_printf_exec("pseudo_exec: run_list\n");
1464 rcode = run_list(child->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00001465 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00001466 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00001467 _exit(rcode);
Denis Vlasenko8412d792007-10-01 09:59:47 +00001468#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001469 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001470
1471 /* Can happen. See what bash does with ">foo" by itself. */
1472 debug_printf("trying to pseudo_exec null command\n");
1473 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00001474}
1475
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001476#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001477static const char *get_cmdtext(struct pipe *pi)
1478{
1479 char **argv;
1480 char *p;
1481 int len;
1482
1483 /* This is subtle. ->cmdtext is created only on first backgrounding.
1484 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001485 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001486 if (pi->cmdtext)
1487 return pi->cmdtext;
1488 argv = pi->progs[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00001489 if (!argv || !argv[0]) {
1490 pi->cmdtext = xzalloc(1);
1491 return pi->cmdtext;
1492 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001493
1494 len = 0;
1495 do len += strlen(*argv) + 1; while (*++argv);
1496 pi->cmdtext = p = xmalloc(len);
1497 argv = pi->progs[0].argv;
1498 do {
1499 len = strlen(*argv);
1500 memcpy(p, *argv, len);
1501 p += len;
1502 *p++ = ' ';
1503 } while (*++argv);
1504 p[-1] = '\0';
1505 return pi->cmdtext;
1506}
1507
Eric Andersenbafd94f2001-05-02 16:11:59 +00001508static void insert_bg_job(struct pipe *pi)
1509{
1510 struct pipe *thejob;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001511 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001512
1513 /* Linear search for the ID of the job to use */
1514 pi->jobid = 1;
Eric Andersenc798b072001-06-22 06:23:03 +00001515 for (thejob = job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001516 if (thejob->jobid >= pi->jobid)
1517 pi->jobid = thejob->jobid + 1;
1518
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001519 /* Add thejob to the list of running jobs */
Eric Andersenc798b072001-06-22 06:23:03 +00001520 if (!job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001521 thejob = job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001522 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001523 for (thejob = job_list; thejob->next; thejob = thejob->next)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001524 continue;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001525 thejob->next = xmalloc(sizeof(*thejob));
1526 thejob = thejob->next;
1527 }
1528
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001529 /* Physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00001530 memcpy(thejob, pi, sizeof(struct pipe));
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001531 thejob->progs = xzalloc(sizeof(pi->progs[0]) * pi->num_progs);
1532 /* We cannot copy entire pi->progs[] vector! Double free()s will happen */
1533 for (i = 0; i < pi->num_progs; i++) {
1534// TODO: do we really need to have so many fields which are just dead weight
1535// at execution stage?
1536 thejob->progs[i].pid = pi->progs[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001537 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001538 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00001539 thejob->next = NULL;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001540 thejob->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001541
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001542 /* We don't wait for background thejobs to return -- append it
Eric Andersenbafd94f2001-05-02 16:11:59 +00001543 to the list of backgrounded thejobs and leave it alone */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001544 printf("[%d] %d %s\n", thejob->jobid, thejob->progs[0].pid, thejob->cmdtext);
Eric Andersen1a6d39b2001-05-08 05:11:54 +00001545 last_bg_pid = thejob->progs[0].pid;
Eric Andersenc798b072001-06-22 06:23:03 +00001546 last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001547}
1548
Eric Andersenbafd94f2001-05-02 16:11:59 +00001549static void remove_bg_job(struct pipe *pi)
1550{
1551 struct pipe *prev_pipe;
1552
Eric Andersenc798b072001-06-22 06:23:03 +00001553 if (pi == job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001554 job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001555 } else {
Eric Andersenc798b072001-06-22 06:23:03 +00001556 prev_pipe = job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001557 while (prev_pipe->next != pi)
1558 prev_pipe = prev_pipe->next;
1559 prev_pipe->next = pi->next;
1560 }
Eric Andersen028b65b2001-06-28 01:10:11 +00001561 if (job_list)
1562 last_jobid = job_list->jobid;
1563 else
1564 last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001565}
Eric Andersen028b65b2001-06-28 01:10:11 +00001566
Denis Vlasenko1359da62007-04-21 23:27:30 +00001567/* remove a backgrounded job */
1568static void delete_finished_bg_job(struct pipe *pi)
1569{
1570 remove_bg_job(pi);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001571 pi->stopped_progs = 0;
Eric Andersenbf7df042001-05-23 22:18:35 +00001572 free_pipe(pi, 0);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001573 free(pi);
1574}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001575#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001576
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001577/* Checks to see if any processes have exited -- if they
Eric Andersenbafd94f2001-05-02 16:11:59 +00001578 have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00001579static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001580{
Eric Andersenc798b072001-06-22 06:23:03 +00001581 int attributes;
1582 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001583#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00001584 int prognum = 0;
1585 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001586#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001587 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001588 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001589
Eric Andersenc798b072001-06-22 06:23:03 +00001590 attributes = WUNTRACED;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001591 if (fg_pipe == NULL) {
Eric Andersenc798b072001-06-22 06:23:03 +00001592 attributes |= WNOHANG;
1593 }
1594
Denis Vlasenko1359da62007-04-21 23:27:30 +00001595/* Do we do this right?
1596 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001597 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00001598 * [3]+ Stopped sleep 20 | false
1599 * bash-3.00# echo $?
1600 * 1 <========== bg pipe is not fully done, but exitcode is already known!
1601 */
1602
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001603//FIXME: non-interactive bash does not continue even if all processes in fg pipe
1604//are stopped. Testcase: "cat | cat" in a script (not on command line)
1605// + killall -STOP cat
1606
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001607 wait_more:
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001608// TODO: safe_waitpid?
Eric Andersenc798b072001-06-22 06:23:03 +00001609 while ((childpid = waitpid(-1, &status, attributes)) > 0) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001610 const int dead = WIFEXITED(status) || WIFSIGNALED(status);
1611
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001612#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00001613 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001614 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001615 childpid, WSTOPSIG(status), WEXITSTATUS(status));
1616 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001617 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001618 childpid, WTERMSIG(status), WEXITSTATUS(status));
1619 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001620 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001621 childpid, WEXITSTATUS(status));
1622#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001623 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00001624 if (fg_pipe) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001625 int i;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001626 for (i = 0; i < fg_pipe->num_progs; i++) {
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001627 debug_printf_jobs("check pid %d\n", fg_pipe->progs[i].pid);
Eric Andersenc798b072001-06-22 06:23:03 +00001628 if (fg_pipe->progs[i].pid == childpid) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001629 /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001630 if (dead) {
1631 fg_pipe->progs[i].pid = 0;
1632 fg_pipe->running_progs--;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00001633 if (i == fg_pipe->num_progs - 1) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001634 /* last process gives overall exitstatus */
1635 rcode = WEXITSTATUS(status);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00001636 if (fg_pipe->pi_inverted)
1637 rcode = !rcode;
1638 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001639 } else {
1640 fg_pipe->progs[i].is_stopped = 1;
1641 fg_pipe->stopped_progs++;
1642 }
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001643 debug_printf_jobs("fg_pipe: running_progs %d stopped_progs %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001644 fg_pipe->running_progs, fg_pipe->stopped_progs);
1645 if (fg_pipe->running_progs - fg_pipe->stopped_progs <= 0) {
1646 /* All processes in fg pipe have exited/stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001647#if ENABLE_HUSH_JOB
Denis Vlasenko1359da62007-04-21 23:27:30 +00001648 if (fg_pipe->running_progs)
1649 insert_bg_job(fg_pipe);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001650#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001651 return rcode;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001652 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001653 /* There are still running processes in the fg pipe */
1654 goto wait_more;
Eric Andersenc798b072001-06-22 06:23:03 +00001655 }
1656 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001657 /* fall through to searching process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00001658 }
1659
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001660#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001661 /* We asked to wait for bg or orphaned children */
1662 /* No need to remember exitcode in this case */
Eric Andersenc798b072001-06-22 06:23:03 +00001663 for (pi = job_list; pi; pi = pi->next) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00001664 prognum = 0;
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001665 while (prognum < pi->num_progs) {
1666 if (pi->progs[prognum].pid == childpid)
1667 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00001668 prognum++;
1669 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00001670 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001671#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001672
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001673 /* Happens when shell is used as init process (init=/bin/sh) */
1674 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001675 goto wait_more;
Eric Andersenaeb44c42001-05-22 20:29:00 +00001676
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001677#if ENABLE_HUSH_JOB
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001678 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00001679 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00001680 /* child exited */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001681 pi->progs[prognum].pid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001682 pi->running_progs--;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001683 if (!pi->running_progs) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001684 printf(JOB_STATUS_FORMAT, pi->jobid,
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001685 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001686 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001687 }
1688 } else {
1689 /* child stopped */
1690 pi->stopped_progs++;
1691 pi->progs[prognum].is_stopped = 1;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001692 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001693#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001694 }
1695
Denis Vlasenko1359da62007-04-21 23:27:30 +00001696 /* wait found no children or failed */
1697
1698 if (childpid && errno != ECHILD)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001699 bb_perror_msg("waitpid");
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001700 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00001701}
1702
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001703#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00001704static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
1705{
1706 pid_t p;
1707 int rcode = checkjobs(fg_pipe);
1708 /* Job finished, move the shell to the foreground */
Denis Vlasenko170435c2007-05-23 13:01:10 +00001709 p = getpgid(0); /* pgid of our process */
1710 debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
Denis Vlasenko52881e92007-04-21 13:42:52 +00001711 if (tcsetpgrp(interactive_fd, p) && errno != ENOTTY)
1712 bb_perror_msg("tcsetpgrp-4a");
1713 return rcode;
1714}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001715#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00001716
Denis Vlasenko05743d72008-02-10 12:10:08 +00001717/* run_pipe() starts all the jobs, but doesn't wait for anything
Eric Andersenc798b072001-06-22 06:23:03 +00001718 * to finish. See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00001719 *
1720 * return code is normally -1, when the caller has to wait for children
1721 * to finish to determine the exit status of the pipe. If the pipe
1722 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00001723 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00001724 * return value.
1725 *
1726 * The input of the pipe is always stdin, the output is always
1727 * stdout. The outpipe[] mechanism in BusyBox-0.48 lash is bogus,
1728 * because it tries to avoid running the command substitution in
1729 * subshell, when that is in fact necessary. The subshell process
1730 * now has its stdout directed to the input of the appropriate pipe,
1731 * so this routine is noticeably simpler.
Denis Vlasenko170435c2007-05-23 13:01:10 +00001732 *
1733 * Returns -1 only if started some children. IOW: we have to
1734 * mask out retvals of builtins etc with 0xff!
Eric Andersen25f27032001-04-26 23:22:31 +00001735 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00001736static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00001737{
1738 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001739 int nextin;
1740 int pipefds[2]; /* pipefds[0] is for reading */
Rob Landley53702e52006-07-19 21:43:53 +00001741 struct child_prog *child;
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00001742 const struct built_in_command *x;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001743 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001744 /* it is not always needed, but we aim to smaller code */
1745 int squirrel[] = { -1, -1, -1 };
1746 int rcode;
Denis Vlasenko52881e92007-04-21 13:42:52 +00001747 const int single_fg = (pi->num_progs == 1 && pi->followup != PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00001748
Denis Vlasenko05743d72008-02-10 12:10:08 +00001749 debug_printf_exec("run_pipe start: single_fg=%d\n", single_fg);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00001750
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001751#if ENABLE_HUSH_JOB
Eric Andersenada18ff2001-05-21 16:18:22 +00001752 pi->pgrp = -1;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001753#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001754 pi->running_progs = 1;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001755 pi->stopped_progs = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00001756
1757 /* Check if this is a simple builtin (not part of a pipe).
1758 * Builtins within pipes have to fork anyway, and are handled in
1759 * pseudo_exec. "echo foo | read bar" doesn't work on bash, either.
1760 */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001761 child = &(pi->progs[0]);
Denis Vlasenko52881e92007-04-21 13:42:52 +00001762 if (single_fg && child->group && child->subshell == 0) {
Eric Andersen04407e52001-06-07 16:42:05 +00001763 debug_printf("non-subshell grouping\n");
1764 setup_redirects(child, squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00001765 debug_printf_exec(": run_list\n");
1766 rcode = run_list(child->group) & 0xff;
Eric Andersen04407e52001-06-07 16:42:05 +00001767 restore_redirects(squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00001768 debug_printf_exec("run_pipe return %d\n", rcode);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00001769 if (pi->pi_inverted)
1770 rcode = !rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00001771 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001772 }
1773
Denis Vlasenko1359da62007-04-21 23:27:30 +00001774 if (single_fg && child->argv != NULL) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001775 char **argv_expanded;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001776 char **argv = child->argv;
1777
1778 for (i = 0; is_assignment(argv[i]); i++)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001779 continue;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001780 if (i != 0 && argv[i] == NULL) {
Eric Andersen78a7c992001-05-15 16:30:25 +00001781 /* assignments, but no command: set the local environment */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001782 for (i = 0; argv[i] != NULL; i++) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00001783 debug_printf("local environment set: %s\n", argv[i]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00001784 p = expand_string_to_string(argv[i]);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00001785 set_local_var(p, 0);
Eric Andersen78a7c992001-05-15 16:30:25 +00001786 }
1787 return EXIT_SUCCESS; /* don't worry about errors in set_local_var() yet */
1788 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001789 for (i = 0; is_assignment(argv[i]); i++) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00001790 p = expand_string_to_string(argv[i]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00001791 putenv(p);
Denis Vlasenko55789c62008-06-18 16:30:42 +00001792//FIXME: do we leak p?!
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001793 }
Denis Vlasenkodd316dd2008-06-14 15:50:55 +00001794 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001795 if (strcmp(argv[i], x->cmd) == 0) {
1796 if (x->function == builtin_exec && argv[i+1] == NULL) {
Eric Andersen83a2ae22001-05-07 17:59:25 +00001797 debug_printf("magic exec\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001798 setup_redirects(child, NULL);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001799 return EXIT_SUCCESS;
1800 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001801 debug_printf("builtin inline %s\n", argv[0]);
Eric Andersen25f27032001-04-26 23:22:31 +00001802 /* XXX setup_redirects acts on file descriptors, not FILEs.
1803 * This is perfect for work that comes after exec().
1804 * Is it really safe for inline use? Experimentally,
1805 * things seem to work with glibc. */
1806 setup_redirects(child, squirrel);
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001807 debug_printf_exec(": builtin '%s' '%s'...\n", x->cmd, argv[i+1]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00001808 argv_expanded = expand_strvec_to_strvec(argv + i);
1809 rcode = x->function(argv_expanded) & 0xff;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001810 free(argv_expanded);
Eric Andersen25f27032001-04-26 23:22:31 +00001811 restore_redirects(squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00001812 debug_printf_exec("run_pipe return %d\n", rcode);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00001813 if (pi->pi_inverted)
1814 rcode = !rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00001815 return rcode;
1816 }
1817 }
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001818#if ENABLE_FEATURE_SH_STANDALONE
1819 {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00001820 int a = find_applet_by_name(argv[i]);
1821 if (a >= 0 && APPLET_IS_NOFORK(a)) {
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001822 setup_redirects(child, squirrel);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001823 save_nofork_data(&nofork_save);
Denis Vlasenko764d59d2007-05-14 16:23:23 +00001824 argv_expanded = argv + i;
Denis Vlasenko170435c2007-05-23 13:01:10 +00001825 argv_expanded = expand_strvec_to_strvec(argv + i);
Denis Vlasenko764d59d2007-05-14 16:23:23 +00001826 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n", argv_expanded[0], argv_expanded[1]);
Denis Vlasenko7465dbc2008-04-13 02:25:53 +00001827 rcode = run_nofork_applet_prime(&nofork_save, a, argv_expanded);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001828 free(argv_expanded);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001829 restore_redirects(squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00001830 debug_printf_exec("run_pipe return %d\n", rcode);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00001831 if (pi->pi_inverted)
1832 rcode = !rcode;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001833 return rcode;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001834 }
1835 }
1836#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001837 }
1838
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001839 /* Disable job control signals for shell (parent) and
1840 * for initial child code after fork */
1841 set_jobctrl_sighandler(SIG_IGN);
1842
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001843 /* Going to fork a child per each pipe member */
1844 pi->running_progs = 0;
1845 nextin = 0;
1846
Eric Andersen25f27032001-04-26 23:22:31 +00001847 for (i = 0; i < pi->num_progs; i++) {
Denis Vlasenko76d50412008-06-10 16:19:39 +00001848#if !BB_MMU
1849 char **ptrs2free = NULL;
1850#endif
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001851 child = &(pi->progs[i]);
Denis Vlasenko76d50412008-06-10 16:19:39 +00001852 if (child->argv) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001853 debug_printf_exec(": pipe member '%s' '%s'...\n", child->argv[0], child->argv[1]);
Denis Vlasenko76d50412008-06-10 16:19:39 +00001854#if !BB_MMU
1855 ptrs2free = alloc_ptrs(child->argv);
1856#endif
1857 } else
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001858 debug_printf_exec(": pipe member with no argv\n");
Eric Andersen25f27032001-04-26 23:22:31 +00001859
1860 /* pipes are inserted between pairs of commands */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001861 pipefds[0] = 0;
1862 pipefds[1] = 1;
1863 if ((i + 1) < pi->num_progs)
1864 xpipe(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00001865
Denis Vlasenko05743d72008-02-10 12:10:08 +00001866 child->pid = BB_MMU ? fork() : vfork();
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001867 if (!child->pid) { /* child */
Denis Vlasenko83177992008-02-11 08:44:36 +00001868 if (ENABLE_HUSH_JOB)
1869 die_sleep = 0; /* let nofork's xfuncs die */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001870#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001871 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00001872 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko170435c2007-05-23 13:01:10 +00001873 if (run_list_level == 1 && interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00001874 pid_t pgrp;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001875 /* Don't do pgrp restore anymore on fatal signals */
1876 set_fatal_sighandler(SIG_DFL);
Denis Vlasenko05743d72008-02-10 12:10:08 +00001877 pgrp = pi->pgrp;
1878 if (pgrp < 0) /* true for 1st process only */
1879 pgrp = getpid();
1880 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001881 /* We do it in *every* child, not just first,
1882 * to avoid races */
Denis Vlasenko05743d72008-02-10 12:10:08 +00001883 tcsetpgrp(interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001884 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001885 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001886#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +00001887 xmove_fd(nextin, 0);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001888 xmove_fd(pipefds[1], 1); /* write end */
1889 if (pipefds[0] > 1)
1890 close(pipefds[0]); /* read end */
Eric Andersen25f27032001-04-26 23:22:31 +00001891 /* Like bash, explicit redirects override pipes,
1892 * and the pipe fd is available for dup'ing. */
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001893 setup_redirects(child, NULL);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001894
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001895 /* Restore default handlers just prior to exec */
1896 set_jobctrl_sighandler(SIG_DFL);
1897 set_misc_sighandler(SIG_DFL);
1898 signal(SIGCHLD, SIG_DFL);
Denis Vlasenko76d50412008-06-10 16:19:39 +00001899 pseudo_exec(ptrs2free, child); /* does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00001900 }
Denis Vlasenko76d50412008-06-10 16:19:39 +00001901#if !BB_MMU
1902 free_strings(ptrs2free);
1903#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001904 if (child->pid < 0) { /* [v]fork failed */
1905 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko05743d72008-02-10 12:10:08 +00001906 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001907 } else {
1908 pi->running_progs++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001909#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001910 /* Second and next children need to know pid of first one */
1911 if (pi->pgrp < 0)
1912 pi->pgrp = child->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001913#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001914 }
Eric Andersen25f27032001-04-26 23:22:31 +00001915
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001916 if (i)
1917 close(nextin);
1918 if ((i + 1) < pi->num_progs)
1919 close(pipefds[1]); /* write end */
1920 /* Pass read (output) pipe end to next iteration */
Eric Andersen25f27032001-04-26 23:22:31 +00001921 nextin = pipefds[0];
1922 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001923
Denis Vlasenko05743d72008-02-10 12:10:08 +00001924 if (!pi->running_progs) {
1925 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
1926 return 1;
1927 }
1928
1929 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->running_progs);
Eric Andersen25f27032001-04-26 23:22:31 +00001930 return -1;
1931}
1932
Denis Vlasenko4b924f32007-05-30 00:29:55 +00001933#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001934static void debug_print_tree(struct pipe *pi, int lvl)
1935{
1936 static const char *PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001937 [PIPE_SEQ] = "SEQ",
1938 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001939 [PIPE_OR ] = "OR" ,
1940 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001941 };
1942 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001943 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00001944#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001945 [RES_IF ] = "IF" ,
1946 [RES_THEN ] = "THEN" ,
1947 [RES_ELIF ] = "ELIF" ,
1948 [RES_ELSE ] = "ELSE" ,
1949 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00001950#endif
1951#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001952 [RES_FOR ] = "FOR" ,
1953 [RES_WHILE] = "WHILE",
1954 [RES_UNTIL] = "UNTIL",
1955 [RES_DO ] = "DO" ,
1956 [RES_DONE ] = "DONE" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001957 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00001958#endif
1959 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001960 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001961 };
1962
1963 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00001964
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001965 pin = 0;
1966 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00001967 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
1968 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001969 prn = 0;
1970 while (prn < pi->num_progs) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00001971 struct child_prog *child = &pi->progs[prn];
1972 char **argv = child->argv;
1973
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001974 fprintf(stderr, "%*s prog %d", lvl*2, "", prn);
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00001975 if (child->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001976 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00001977 (child->subshell ? "()" : "{}"),
1978 argv);
1979 debug_print_tree(child->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001980 prn++;
1981 continue;
1982 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001983 if (argv) while (*argv) {
1984 fprintf(stderr, " '%s'", *argv);
1985 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00001986 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001987 fprintf(stderr, "\n");
1988 prn++;
1989 }
1990 pi = pi->next;
1991 pin++;
1992 }
1993}
1994#endif
1995
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001996/* NB: called by pseudo_exec, and therefore must not modify any
1997 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00001998static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00001999{
Denis Vlasenko06810332007-05-21 23:30:54 +00002000 struct pipe *rpipe;
2001#if ENABLE_HUSH_LOOPS
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002002 char *for_varname = NULL;
2003 char **for_lcur = NULL;
2004 char **for_list = NULL;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002005 int flag_rep = 0;
Denis Vlasenko06810332007-05-21 23:30:54 +00002006#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002007 int flag_skip = 1;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002008 int rcode = 0; /* probably for gcc only */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002009 int flag_restore = 0;
Denis Vlasenko06810332007-05-21 23:30:54 +00002010#if ENABLE_HUSH_IF
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002011 int if_code = 0, next_if_code = 0; /* need double-buffer to handle elif */
Denis Vlasenko06810332007-05-21 23:30:54 +00002012#else
2013 enum { if_code = 0, next_if_code = 0 };
2014#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00002015// TODO: rword and ->res_word are not needed if !LOOPS and !IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002016 reserved_style rword;
2017 reserved_style skip_more_for_this_rword = RES_XXXX;
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00002018
Denis Vlasenko05743d72008-02-10 12:10:08 +00002019 debug_printf_exec("run_list start lvl %d\n", run_list_level + 1);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00002020
Denis Vlasenko06810332007-05-21 23:30:54 +00002021#if ENABLE_HUSH_LOOPS
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002022 /* check syntax for "for" */
2023 for (rpipe = pi; rpipe; rpipe = rpipe->next) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002024 if ((rpipe->res_word == RES_IN || rpipe->res_word == RES_FOR)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002025 && (rpipe->next == NULL)
2026 ) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00002027 syntax("malformed for"); /* no IN or no commands after IN */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002028 debug_printf_exec("run_list lvl %d return 1\n", run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002029 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002030 }
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002031 if ((rpipe->res_word == RES_IN && rpipe->next->res_word == RES_IN && rpipe->next->progs[0].argv != NULL)
2032 || (rpipe->res_word == RES_FOR && rpipe->next->res_word != RES_IN)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002033 ) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002034 /* TODO: what is tested in the first condition? */
Denis Vlasenko6eaf8de2008-06-17 12:09:21 +00002035 syntax("malformed for"); /* 2nd condition: FOR not followed by IN */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002036 debug_printf_exec("run_list lvl %d return 1\n", run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002037 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002038 }
2039 }
Denis Vlasenko06810332007-05-21 23:30:54 +00002040#else
2041 rpipe = NULL;
2042#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002043
2044#if ENABLE_HUSH_JOB
2045 /* Example of nested list: "while true; do { sleep 1 | exit 2; } done".
2046 * We are saving state before entering outermost list ("while...done")
2047 * so that ctrl-Z will correctly background _entire_ outermost list,
2048 * not just a part of it (like "sleep 1 | exit 2") */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00002049 if (++run_list_level == 1 && interactive_fd) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002050 if (sigsetjmp(toplevel_jb, 1)) {
2051 /* ctrl-Z forked and we are parent; or ctrl-C.
2052 * Sighandler has longjmped us here */
2053 signal(SIGINT, SIG_IGN);
2054 signal(SIGTSTP, SIG_IGN);
2055 /* Restore level (we can be coming from deep inside
2056 * nested levels) */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00002057 run_list_level = 1;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002058#if ENABLE_FEATURE_SH_STANDALONE
2059 if (nofork_save.saved) { /* if save area is valid */
2060 debug_printf_jobs("exiting nofork early\n");
2061 restore_nofork_data(&nofork_save);
2062 }
2063#endif
2064 if (ctrl_z_flag) {
2065 /* ctrl-Z has forked and stored pid of the child in pi->pid.
2066 * Remember this child as background job */
2067 insert_bg_job(pi);
2068 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002069 /* ctrl-C. We just stop doing whatever we were doing */
Denis Vlasenko4daad902007-09-27 10:20:47 +00002070 bb_putchar('\n');
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002071 }
2072 rcode = 0;
2073 goto ret;
2074 }
2075 /* ctrl-Z handler will store pid etc in pi */
2076 toplevel_list = pi;
2077 ctrl_z_flag = 0;
2078#if ENABLE_FEATURE_SH_STANDALONE
2079 nofork_save.saved = 0; /* in case we will run a nofork later */
2080#endif
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00002081 signal_SA_RESTART_empty_mask(SIGTSTP, handler_ctrl_z);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002082 signal(SIGINT, handler_ctrl_c);
2083 }
Denis Vlasenko05743d72008-02-10 12:10:08 +00002084#endif /* JOB */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002085
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002086 for (; pi; pi = flag_restore ? rpipe : pi->next) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002087 rword = pi->res_word;
Denis Vlasenko06810332007-05-21 23:30:54 +00002088#if ENABLE_HUSH_LOOPS
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002089 if (rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002090 flag_restore = 0;
2091 if (!rpipe) {
2092 flag_rep = 0;
2093 rpipe = pi;
2094 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002095 }
Denis Vlasenko06810332007-05-21 23:30:54 +00002096#endif
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002097 debug_printf_exec(": rword=%d if_code=%d next_if_code=%d skip_more=%d\n",
2098 rword, if_code, next_if_code, skip_more_for_this_rword);
2099 if (rword == skip_more_for_this_rword && flag_skip) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002100 if (pi->followup == PIPE_SEQ)
2101 flag_skip = 0;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002102 continue;
2103 }
2104 flag_skip = 1;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002105 skip_more_for_this_rword = RES_XXXX;
Denis Vlasenko06810332007-05-21 23:30:54 +00002106#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002107 if (rword == RES_THEN || rword == RES_ELSE)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002108 if_code = next_if_code;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002109 if (rword == RES_THEN && if_code)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002110 continue;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002111 if (rword == RES_ELSE && !if_code)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002112 continue;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002113 if (rword == RES_ELIF && !if_code)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002114 break;
Denis Vlasenko06810332007-05-21 23:30:54 +00002115#endif
2116#if ENABLE_HUSH_LOOPS
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002117 if (rword == RES_FOR && pi->num_progs) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002118 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002119 /* first loop through for */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002120 /* if no variable values after "in" we skip "for" */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002121 if (!pi->next->progs->argv)
2122 continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002123 /* create list of variable values */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00002124 debug_print_strings("for_list made from", pi->next->progs->argv);
Denis Vlasenko170435c2007-05-23 13:01:10 +00002125 for_list = expand_strvec_to_strvec(pi->next->progs->argv);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00002126 debug_print_strings("for_list", for_list);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002127 for_lcur = for_list;
2128 for_varname = pi->progs->argv[0];
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002129 pi->progs->argv[0] = NULL;
2130 flag_rep = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002131 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002132 free(pi->progs->argv[0]);
2133 if (!*for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002134 /* for loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002135 free(for_list);
2136 for_lcur = NULL;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002137 flag_rep = 0;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002138 pi->progs->argv[0] = for_varname;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002139 continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002140 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002141 /* insert next value from for_lcur */
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002142 /* vda: does it need escaping? */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002143 pi->progs->argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002144 }
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002145 if (rword == RES_IN)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002146 continue;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002147 if (rword == RES_DO) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002148 if (!flag_rep)
2149 continue;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002150 }
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002151 if (rword == RES_DONE) {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002152 if (flag_rep) {
2153 flag_restore = 1;
2154 } else {
2155 rpipe = NULL;
2156 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002157 }
Denis Vlasenko06810332007-05-21 23:30:54 +00002158#endif
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002159 if (pi->num_progs == 0)
2160 continue;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002161 debug_printf_exec(": run_pipe with %d members\n", pi->num_progs);
2162 rcode = run_pipe(pi);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002163 if (rcode != -1) {
Eric Andersen25f27032001-04-26 23:22:31 +00002164 /* We only ran a builtin: rcode was set by the return value
Denis Vlasenko05743d72008-02-10 12:10:08 +00002165 * of run_pipe(), and we don't need to wait for anything. */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002166 } else if (pi->followup == PIPE_BG) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002167 /* What does bash do with attempts to background builtins? */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002168 /* Even bash 3.2 doesn't do that well with nested bg:
2169 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
Denis Vlasenko170435c2007-05-23 13:01:10 +00002170 * I'm NOT treating inner &'s as jobs */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002171#if ENABLE_HUSH_JOB
Denis Vlasenko4b924f32007-05-30 00:29:55 +00002172 if (run_list_level == 1)
Denis Vlasenko170435c2007-05-23 13:01:10 +00002173 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002174#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002175 rcode = EXIT_SUCCESS;
2176 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002177#if ENABLE_HUSH_JOB
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00002178 if (run_list_level == 1 && interactive_fd) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00002179 /* waits for completion, then fg's main shell */
Denis Vlasenko52881e92007-04-21 13:42:52 +00002180 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002181 } else
2182#endif
2183 {
Denis Vlasenko170435c2007-05-23 13:01:10 +00002184 /* this one just waits for completion */
Eric Andersenc798b072001-06-22 06:23:03 +00002185 rcode = checkjobs(pi);
Eric Andersen25f27032001-04-26 23:22:31 +00002186 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002187 debug_printf_exec(": checkjobs returned %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00002188 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002189 debug_printf_exec(": setting last_return_code=%d\n", rcode);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002190 last_return_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00002191#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002192 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002193 next_if_code = rcode; /* can be overwritten a number of times */
Denis Vlasenko06810332007-05-21 23:30:54 +00002194#endif
2195#if ENABLE_HUSH_LOOPS
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002196 if (rword == RES_WHILE)
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002197 flag_rep = !last_return_code;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002198 if (rword == RES_UNTIL)
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002199 flag_rep = last_return_code;
Denis Vlasenko06810332007-05-21 23:30:54 +00002200#endif
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002201 if ((rcode == EXIT_SUCCESS && pi->followup == PIPE_OR)
2202 || (rcode != EXIT_SUCCESS && pi->followup == PIPE_AND)
2203 ) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002204 skip_more_for_this_rword = rword;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002205 }
Eric Andersen028b65b2001-06-28 01:10:11 +00002206 checkjobs(NULL);
Eric Andersen25f27032001-04-26 23:22:31 +00002207 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002208
2209#if ENABLE_HUSH_JOB
2210 if (ctrl_z_flag) {
2211 /* ctrl-Z forked somewhere in the past, we are the child,
2212 * and now we completed running the list. Exit. */
2213 exit(rcode);
2214 }
2215 ret:
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00002216 if (!--run_list_level && interactive_fd) {
2217 signal(SIGTSTP, SIG_IGN);
2218 signal(SIGINT, SIG_IGN);
2219 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002220#endif
Denis Vlasenko05743d72008-02-10 12:10:08 +00002221 debug_printf_exec("run_list lvl %d return %d\n", run_list_level + 1, rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00002222 return rcode;
2223}
2224
Eric Andersen25f27032001-04-26 23:22:31 +00002225/* return code is the exit status of the pipe */
Eric Andersenbf7df042001-05-23 22:18:35 +00002226static int free_pipe(struct pipe *pi, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00002227{
2228 char **p;
2229 struct child_prog *child;
2230 struct redir_struct *r, *rnext;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002231 int a, i, ret_code = 0;
Eric Andersen52a97ca2001-06-22 06:49:26 +00002232
2233 if (pi->stopped_progs > 0)
2234 return ret_code;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002235 debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid());
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002236 for (i = 0; i < pi->num_progs; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002237 child = &pi->progs[i];
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002238 debug_printf_clean("%s command %d:\n", indenter(indent), i);
Eric Andersen25f27032001-04-26 23:22:31 +00002239 if (child->argv) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002240 for (a = 0, p = child->argv; *p; a++, p++) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002241 debug_printf_clean("%s argv[%d] = %s\n", indenter(indent), a, *p);
Eric Andersen25f27032001-04-26 23:22:31 +00002242 }
Denis Vlasenkof962a032007-11-23 12:50:54 +00002243 free_strings(child->argv);
2244 child->argv = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002245 } else if (child->group) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002246 debug_printf_clean("%s begin group (subshell:%d)\n", indenter(indent), child->subshell);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002247 ret_code = free_pipe_list(child->group, indent+3);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002248 debug_printf_clean("%s end group\n", indenter(indent));
Eric Andersen25f27032001-04-26 23:22:31 +00002249 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002250 debug_printf_clean("%s (nil)\n", indenter(indent));
Eric Andersen25f27032001-04-26 23:22:31 +00002251 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002252 for (r = child->redirects; r; r = rnext) {
Denis Vlasenko211b59b2008-06-23 16:28:53 +00002253 debug_printf_clean("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->rd_type].descrip);
Eric Andersen25f27032001-04-26 23:22:31 +00002254 if (r->dup == -1) {
Eric Andersen817e73c2001-06-06 17:56:09 +00002255 /* guard against the case >$FOO, where foo is unset or blank */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002256 if (r->rd_filename) {
2257 debug_printf_clean(" %s\n", r->rd_filename);
2258 free(r->rd_filename);
2259 r->rd_filename = NULL;
Eric Andersen817e73c2001-06-06 17:56:09 +00002260 }
Eric Andersen25f27032001-04-26 23:22:31 +00002261 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002262 debug_printf_clean("&%d\n", r->dup);
Eric Andersen25f27032001-04-26 23:22:31 +00002263 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002264 rnext = r->next;
Eric Andersen25f27032001-04-26 23:22:31 +00002265 free(r);
2266 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002267 child->redirects = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002268 }
2269 free(pi->progs); /* children are an array, they get freed all at once */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002270 pi->progs = NULL;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002271#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002272 free(pi->cmdtext);
2273 pi->cmdtext = NULL;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002274#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002275 return ret_code;
2276}
2277
Eric Andersenbf7df042001-05-23 22:18:35 +00002278static int free_pipe_list(struct pipe *head, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00002279{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002280 int rcode = 0; /* if list has no members */
Eric Andersen25f27032001-04-26 23:22:31 +00002281 struct pipe *pi, *next;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002282
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002283 for (pi = head; pi; pi = next) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002284 debug_printf_clean("%s pipe reserved mode %d\n", indenter(indent), pi->res_word);
Eric Andersenbf7df042001-05-23 22:18:35 +00002285 rcode = free_pipe(pi, indent);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002286 debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002287 next = pi->next;
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002288 /*pi->next = NULL;*/
Eric Andersen25f27032001-04-26 23:22:31 +00002289 free(pi);
2290 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002291 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00002292}
2293
2294/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002295static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00002296{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002297 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002298 debug_printf_exec("run_and_free_list entered\n");
2299 if (!fake_mode) {
2300 debug_printf_exec(": run_list with %d members\n", pi->num_progs);
2301 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002302 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002303 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00002304 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00002305 * but doing that now would hobble the debugging effort. */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002306 free_pipe_list(pi, /* indent: */ 0);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002307 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00002308 return rcode;
2309}
2310
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002311
Denis Vlasenko170435c2007-05-23 13:01:10 +00002312/* expand_strvec_to_strvec() takes a list of strings, expands
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002313 * all variable references within and returns a pointer to
2314 * a list of expanded strings, possibly with larger number
2315 * of strings. (Think VAR="a b"; echo $VAR).
2316 * This new list is allocated as a single malloc block.
2317 * NULL-terminated list of char* pointers is at the beginning of it,
2318 * followed by strings themself.
2319 * Caller can deallocate entire list by single free(list). */
2320
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002321/* Store given string, finalizing the word and starting new one whenever
2322 * we encounter ifs char(s). This is used for expanding variable values.
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002323 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002324static int expand_on_ifs(o_string *output, int n, const char *str)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002325{
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002326 while (1) {
2327 int word_len = strcspn(str, ifs);
2328 if (word_len) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00002329 if (output->o_quote || !output->o_glob)
2330 o_addQstr(output, str, word_len);
2331 else /* protect backslashes against globbing up :) */
2332 o_addstr_duplicate_backslash(output, str, word_len);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002333 str += word_len;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002334 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002335 if (!*str) /* EOL - do not finalize word */
2336 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002337 o_addchr(output, '\0');
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002338 debug_print_list("expand_on_ifs", output, n);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002339 n = o_save_ptr(output, n);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002340 str += strspn(str, ifs); /* skip ifs chars */
2341 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002342 debug_print_list("expand_on_ifs[1]", output, n);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002343 return n;
2344}
2345
2346/* Expand all variable references in given string, adding words to list[]
2347 * at n, n+1,... positions. Return updated n (so that list[n] is next one
2348 * to be filled). This routine is extremely tricky: has to deal with
2349 * variables/parameters with whitespace, $* and $@, and constructs like
2350 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002351/* NB: another bug is that we cannot detect empty strings yet:
2352 * "" or $empty"" expands to zero words, has to expand to empty word */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002353static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002354{
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002355 /* or_mask is either 0 (normal case) or 0x80
Denis Vlasenko55789c62008-06-18 16:30:42 +00002356 * (expansion of right-hand side of assignment == 1-element expand.
2357 * It will also do no globbing, and thus we must not backslash-quote!) */
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002358
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002359 char first_ch, ored_ch;
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002360 int i;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002361 const char *val;
2362 char *p;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002363
2364 ored_ch = 0;
2365
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002366 debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002367 debug_print_list("expand_vars_to_list", output, n);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002368 n = o_save_ptr(output, n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002369 debug_print_list("expand_vars_to_list[0]", output, n);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002370
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002371 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
Denis Vlasenkoccce59d2008-06-16 14:35:57 +00002372#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002373 o_string subst_result = NULL_O_STRING;
Denis Vlasenkoccce59d2008-06-16 14:35:57 +00002374#endif
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002375
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002376 o_addstr(output, arg, p - arg);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002377 debug_print_list("expand_vars_to_list[1]", output, n);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002378 arg = ++p;
2379 p = strchr(p, SPECIAL_VAR_SYMBOL);
2380
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002381 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002382 ored_ch |= first_ch;
2383 val = NULL;
2384 switch (first_ch & 0x7f) {
2385 /* Highest bit in first_ch indicates that var is double-quoted */
2386 case '$': /* pid */
Denis Vlasenko16c2fea2008-06-17 12:28:44 +00002387 val = utoa(root_pid);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002388 break;
2389 case '!': /* bg pid */
2390 val = last_bg_pid ? utoa(last_bg_pid) : (char*)"";
2391 break;
2392 case '?': /* exitcode */
2393 val = utoa(last_return_code);
2394 break;
2395 case '#': /* argc */
2396 val = utoa(global_argc ? global_argc-1 : 0);
2397 break;
2398 case '*':
2399 case '@':
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002400 i = 1;
Denis Vlasenkoc3c66592007-11-24 00:22:42 +00002401 if (!global_argv[i])
2402 break;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002403 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenko324a3fd2008-06-18 17:49:58 +00002404 smallint sv = output->o_quote;
2405 /* unquoted var's contents should be globbed, so don't quote */
2406 output->o_quote = 0;
Denis Vlasenkoc3c66592007-11-24 00:22:42 +00002407 while (global_argv[i]) {
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002408 n = expand_on_ifs(output, n, global_argv[i]);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002409 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, global_argc-1);
Denis Vlasenkoc3c66592007-11-24 00:22:42 +00002410 if (global_argv[i++][0] && global_argv[i]) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002411 /* this argv[] is not empty and not last:
2412 * put terminating NUL, start new word */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002413 o_addchr(output, '\0');
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002414 debug_print_list("expand_vars_to_list[2]", output, n);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002415 n = o_save_ptr(output, n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002416 debug_print_list("expand_vars_to_list[3]", output, n);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002417 }
2418 }
Denis Vlasenko324a3fd2008-06-18 17:49:58 +00002419 output->o_quote = sv;
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002420 } else
2421 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002422 * and in this case should treat it like '$*' - see 'else...' below */
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002423 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002424 while (1) {
Denis Vlasenko324a3fd2008-06-18 17:49:58 +00002425 o_addQstr(output, global_argv[i], strlen(global_argv[i]));
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002426 if (++i >= global_argc)
2427 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002428 o_addchr(output, '\0');
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002429 debug_print_list("expand_vars_to_list[4]", output, n);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002430 n = o_save_ptr(output, n);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002431 }
2432 } else { /* quoted $*: add as one word */
Denis Vlasenkoc3c66592007-11-24 00:22:42 +00002433 while (1) {
Denis Vlasenko324a3fd2008-06-18 17:49:58 +00002434 o_addQstr(output, global_argv[i], strlen(global_argv[i]));
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002435 if (!global_argv[++i])
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002436 break;
2437 if (ifs[0])
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002438 o_addchr(output, ifs[0]);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002439 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002440 }
2441 break;
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00002442 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
2443 /* "Empty variable", used to make "" etc to not disappear */
2444 arg++;
2445 ored_ch = 0x80;
2446 break;
Denis Vlasenkoccce59d2008-06-16 14:35:57 +00002447#if ENABLE_HUSH_TICK
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00002448 case '`': { /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002449 struct in_str input;
2450 *p = '\0';
2451 arg++;
Denis Vlasenkoccce59d2008-06-16 14:35:57 +00002452//TODO: can we just stuff it into "output" directly?
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002453 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002454 setup_string_in_str(&input, arg);
2455 process_command_subs(&subst_result, &input, NULL);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002456 debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002457 val = subst_result.data;
2458 goto store_val;
2459 }
Denis Vlasenkoccce59d2008-06-16 14:35:57 +00002460#endif
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00002461 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002462 *p = '\0';
2463 arg[0] = first_ch & 0x7f;
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002464 if (isdigit(arg[0])) {
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002465 i = xatoi_u(arg);
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002466 if (i < global_argc)
2467 val = global_argv[i];
Denis Vlasenko55789c62008-06-18 16:30:42 +00002468 /* else val remains NULL: $N with too big N */
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002469 } else
2470 val = lookup_param(arg);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002471 arg[0] = first_ch;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002472#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002473 store_val:
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002474#endif
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002475 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002476 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002477 debug_printf_expand("unquoted '%s', output->o_quote:%d\n", val, output->o_quote);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002478 if (val) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00002479 /* unquoted var's contents should be globbed, so don't quote */
2480 smallint sv = output->o_quote;
2481 output->o_quote = 0;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002482 n = expand_on_ifs(output, n, val);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002483 val = NULL;
Denis Vlasenko55789c62008-06-18 16:30:42 +00002484 output->o_quote = sv;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002485 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00002486 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002487 debug_printf_expand("quoted '%s', output->o_quote:%d\n", val, output->o_quote);
Denis Vlasenko55789c62008-06-18 16:30:42 +00002488 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002489 }
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002490 if (val) {
Denis Vlasenko324a3fd2008-06-18 17:49:58 +00002491 o_addQstr(output, val, strlen(val));
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002492 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002493
Denis Vlasenkoccce59d2008-06-16 14:35:57 +00002494#if ENABLE_HUSH_TICK
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002495 o_free(&subst_result);
Denis Vlasenkoccce59d2008-06-16 14:35:57 +00002496#endif
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002497 arg = ++p;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002498 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
2499
Denis Vlasenko2e76c3f2008-06-10 18:27:50 +00002500 if (arg[0]) {
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002501 debug_print_list("expand_vars_to_list[a]", output, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002502 /* this part is literal, and it was already pre-quoted
2503 * if needed (much earlier), do not use o_addQstr here! */
2504 o_addstr(output, arg, strlen(arg) + 1);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002505 debug_print_list("expand_vars_to_list[b]", output, n);
Denis Vlasenko2e76c3f2008-06-10 18:27:50 +00002506 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
2507 && !(ored_ch & 0x80) /* and all vars were not quoted. */
2508 ) {
2509 n--;
2510 /* allow to reuse list[n] later without re-growth */
2511 output->has_empty_slot = 1;
2512 } else {
2513 o_addchr(output, '\0');
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002514 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002515 return n;
2516}
2517
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002518static char **expand_variables(char **argv, int or_mask)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002519{
2520 int n;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002521 char **list;
2522 char **v;
2523 o_string output = NULL_O_STRING;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002524
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002525 if (or_mask & 0x100) {
Denis Vlasenko324a3fd2008-06-18 17:49:58 +00002526 output.o_quote = 1; /* protect against globbing for "$var" */
2527 /* (unquoted $var will temporarily switch it off) */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002528 output.o_glob = 1;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002529 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002530
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002531 n = 0;
2532 v = argv;
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002533 while (*v) {
2534 n = expand_vars_to_list(&output, n, *v, (char)or_mask);
2535 v++;
2536 }
2537 debug_print_list("expand_variables", &output, n);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002538
Denis Vlasenko82dfec32008-06-16 12:47:11 +00002539 /* output.data (malloced in one block) gets returned in "list" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002540 list = o_finalize_list(&output, n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002541 debug_print_strings("expand_variables[1]", list);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002542 return list;
2543}
2544
Denis Vlasenko170435c2007-05-23 13:01:10 +00002545static char **expand_strvec_to_strvec(char **argv)
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002546{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002547 return expand_variables(argv, 0x100);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002548}
2549
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002550/* Used for expansion of right hand of assignments */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00002551/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2552 * "v=/bin/c*" */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002553static char *expand_string_to_string(const char *str)
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002554{
2555 char *argv[2], **list;
2556
2557 argv[0] = (char*)str;
2558 argv[1] = NULL;
2559 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002560 if (ENABLE_HUSH_DEBUG)
2561 if (!list[0] || list[1])
2562 bb_error_msg_and_die("BUG in varexp2");
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002563 /* actually, just move string 2*sizeof(char*) bytes back */
2564 strcpy((char*)list, list[0]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00002565 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2566 return (char*)list;
2567}
2568
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002569/* Used for "eval" builtin */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002570static char* expand_strvec_to_string(char **argv)
2571{
2572 char **list;
2573
2574 list = expand_variables(argv, 0x80);
2575 /* Convert all NULs to spaces */
2576 if (list[0]) {
2577 int n = 1;
2578 while (list[n]) {
2579 if (ENABLE_HUSH_DEBUG)
2580 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2581 bb_error_msg_and_die("BUG in varexp3");
2582 list[n][-1] = ' '; /* TODO: or to ifs[0]? */
2583 n++;
2584 }
2585 }
2586 strcpy((char*)list, list[0]);
2587 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002588 return (char*)list;
2589}
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002590
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002591
2592/* Used to get/check local shell variables */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002593static struct variable *get_local_var(const char *name)
Eric Andersenf72f5622001-05-15 23:21:41 +00002594{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002595 struct variable *cur;
2596 int len;
Eric Andersenf72f5622001-05-15 23:21:41 +00002597
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002598 if (!name)
Eric Andersenf72f5622001-05-15 23:21:41 +00002599 return NULL;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002600 len = strlen(name);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002601 for (cur = top_var; cur; cur = cur->next) {
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002602 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002603 return cur;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00002604 }
Eric Andersenf72f5622001-05-15 23:21:41 +00002605 return NULL;
2606}
2607
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002608/* str holds "NAME=VAL" and is expected to be malloced.
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002609 * We take ownership of it. */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002610static int set_local_var(char *str, int flg_export)
Eric Andersen78a7c992001-05-15 16:30:25 +00002611{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002612 struct variable *cur;
2613 char *value;
2614 int name_len;
Eric Andersen20a69a72001-05-15 17:24:44 +00002615
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002616 value = strchr(str, '=');
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002617 if (!value) { /* not expected to ever happen? */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002618 free(str);
Eric Andersen99785762001-05-22 21:37:48 +00002619 return -1;
2620 }
Eric Andersen20a69a72001-05-15 17:24:44 +00002621
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002622 name_len = value - str + 1; /* including '=' */
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002623 cur = top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
2624 while (1) {
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002625 if (strncmp(cur->varstr, str, name_len) != 0) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002626 if (!cur->next) {
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002627 /* Bail out. Note that now cur points
2628 * to last var in linked list */
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002629 break;
Eric Andersen20a69a72001-05-15 17:24:44 +00002630 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002631 cur = cur->next;
2632 continue;
Eric Andersen20a69a72001-05-15 17:24:44 +00002633 }
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002634 /* We found an existing var with this name */
2635 *value = '\0';
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002636 if (cur->flg_read_only) {
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002637 bb_error_msg("%s: readonly variable", str);
2638 free(str);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002639 return -1;
2640 }
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002641 unsetenv(str); /* just in case */
2642 *value = '=';
2643 if (strcmp(cur->varstr, str) == 0) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002644 free_and_exp:
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002645 free(str);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002646 goto exp;
2647 }
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002648 if (cur->max_len >= strlen(str)) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002649 /* This one is from startup env, reuse space */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002650 strcpy(cur->varstr, str);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002651 goto free_and_exp;
2652 }
2653 /* max_len == 0 signifies "malloced" var, which we can
2654 * (and has to) free */
2655 if (!cur->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002656 free(cur->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002657 cur->max_len = 0;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002658 goto set_str_and_exp;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002659 }
Eric Andersen20a69a72001-05-15 17:24:44 +00002660
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002661 /* Not found - create next variable struct */
2662 cur->next = xzalloc(sizeof(*cur));
2663 cur = cur->next;
2664
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002665 set_str_and_exp:
2666 cur->varstr = str;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002667 exp:
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002668 if (flg_export)
2669 cur->flg_export = 1;
2670 if (cur->flg_export)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002671 return putenv(cur->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002672 return 0;
Eric Andersen20a69a72001-05-15 17:24:44 +00002673}
2674
Eric Andersenf72f5622001-05-15 23:21:41 +00002675static void unset_local_var(const char *name)
Eric Andersen20a69a72001-05-15 17:24:44 +00002676{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002677 struct variable *cur;
2678 struct variable *prev = prev; /* for gcc */
2679 int name_len;
Eric Andersen20a69a72001-05-15 17:24:44 +00002680
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002681 if (!name)
2682 return;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002683 name_len = strlen(name);
2684 cur = top_var;
2685 while (cur) {
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002686 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002687 if (cur->flg_read_only) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00002688 bb_error_msg("%s: readonly variable", name);
Eric Andersen94ac2442001-05-22 19:05:18 +00002689 return;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002690 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002691 /* prev is ok to use here because 1st variable, HUSH_VERSION,
2692 * is ro, and we cannot reach this code on the 1st pass */
2693 prev->next = cur->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002694 unsetenv(cur->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002695 if (!cur->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002696 free(cur->varstr);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002697 free(cur);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002698 return;
Eric Andersenf72f5622001-05-15 23:21:41 +00002699 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002700 prev = cur;
2701 cur = cur->next;
Eric Andersen20a69a72001-05-15 17:24:44 +00002702 }
Eric Andersen78a7c992001-05-15 16:30:25 +00002703}
2704
Eric Andersen25f27032001-04-26 23:22:31 +00002705/* the src parameter allows us to peek forward to a possible &n syntax
2706 * for file descriptor duplication, e.g., "2>&1".
2707 * Return code is 0 normally, 1 if a syntax error is detected in src.
2708 * Resource errors (in xmalloc) cause the process to exit */
2709static int setup_redirect(struct p_context *ctx, int fd, redir_type style,
2710 struct in_str *input)
2711{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002712 struct child_prog *child = ctx->child;
Eric Andersen25f27032001-04-26 23:22:31 +00002713 struct redir_struct *redir = child->redirects;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002714 struct redir_struct *last_redir = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002715
2716 /* Create a new redir_struct and drop it onto the end of the linked list */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002717 while (redir) {
2718 last_redir = redir;
2719 redir = redir->next;
Eric Andersen25f27032001-04-26 23:22:31 +00002720 }
Denis Vlasenkoff097622007-10-01 10:00:45 +00002721 redir = xzalloc(sizeof(struct redir_struct));
2722 /* redir->next = NULL; */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002723 /* redir->rd_filename = NULL; */
Eric Andersen25f27032001-04-26 23:22:31 +00002724 if (last_redir) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002725 last_redir->next = redir;
Eric Andersen25f27032001-04-26 23:22:31 +00002726 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002727 child->redirects = redir;
Eric Andersen25f27032001-04-26 23:22:31 +00002728 }
2729
Denis Vlasenko55789c62008-06-18 16:30:42 +00002730 redir->rd_type = style;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002731 redir->fd = (fd == -1) ? redir_table[style].default_fd : fd;
Eric Andersen25f27032001-04-26 23:22:31 +00002732
2733 debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
2734
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002735 /* Check for a '2>&1' type redirect */
Eric Andersen25f27032001-04-26 23:22:31 +00002736 redir->dup = redirect_dup_num(input);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002737 if (redir->dup == -2)
2738 return 1; /* syntax error */
Eric Andersen25f27032001-04-26 23:22:31 +00002739 if (redir->dup != -1) {
2740 /* Erik had a check here that the file descriptor in question
Eric Andersen83a2ae22001-05-07 17:59:25 +00002741 * is legit; I postpone that to "run time"
2742 * A "-" representation of "close me" shows up as a -3 here */
Eric Andersen25f27032001-04-26 23:22:31 +00002743 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
2744 } else {
2745 /* We do _not_ try to open the file that src points to,
2746 * since we need to return and let src be expanded first.
2747 * Set ctx->pending_redirect, so we know what to do at the
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002748 * end of the next parsed word. */
Eric Andersen25f27032001-04-26 23:22:31 +00002749 ctx->pending_redirect = redir;
2750 }
2751 return 0;
2752}
2753
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00002754static struct pipe *new_pipe(void)
2755{
Eric Andersen25f27032001-04-26 23:22:31 +00002756 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002757 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002758 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002759 if (RES_NONE)
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002760 pi->res_word = RES_NONE;
Eric Andersen25f27032001-04-26 23:22:31 +00002761 return pi;
2762}
2763
2764static void initialize_context(struct p_context *ctx)
2765{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002766 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00002767 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002768 /* Create the memory for child, roughly:
2769 * ctx->pipe->progs = new struct child_prog;
2770 * ctx->pipe->progs[0].family = ctx->pipe;
2771 * ctx->child = &ctx->pipe->progs[0];
2772 */
2773 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00002774}
2775
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002776/* If a reserved word is found and processed, parse context is modified
2777 * and 1 is returned.
2778 * Handles if, then, elif, else, fi, for, while, until, do, done.
Eric Andersen25f27032001-04-26 23:22:31 +00002779 * case, function, and select are obnoxious, save those for later.
2780 */
Denis Vlasenko06810332007-05-21 23:30:54 +00002781#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002782static int reserved_word(const o_string *word, struct p_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00002783{
2784 struct reserved_combo {
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002785 char literal[7];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002786 unsigned char res;
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002787 int flag;
Eric Andersen25f27032001-04-26 23:22:31 +00002788 };
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002789 enum {
2790 FLAG_END = (1 << RES_NONE ),
2791#if ENABLE_HUSH_IF
2792 FLAG_IF = (1 << RES_IF ),
2793 FLAG_THEN = (1 << RES_THEN ),
2794 FLAG_ELIF = (1 << RES_ELIF ),
2795 FLAG_ELSE = (1 << RES_ELSE ),
2796 FLAG_FI = (1 << RES_FI ),
2797#endif
2798#if ENABLE_HUSH_LOOPS
2799 FLAG_FOR = (1 << RES_FOR ),
2800 FLAG_WHILE = (1 << RES_WHILE),
2801 FLAG_UNTIL = (1 << RES_UNTIL),
2802 FLAG_DO = (1 << RES_DO ),
2803 FLAG_DONE = (1 << RES_DONE ),
2804 FLAG_IN = (1 << RES_IN ),
2805#endif
2806 FLAG_START = (1 << RES_XXXX ),
2807 };
Eric Andersen25f27032001-04-26 23:22:31 +00002808 /* Mostly a list of accepted follow-up reserved words.
2809 * FLAG_END means we are done with the sequence, and are ready
2810 * to turn the compound list into a command.
2811 * FLAG_START means the word must start a new compound list.
2812 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002813 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00002814#if ENABLE_HUSH_IF
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002815 { "!", RES_NONE, 0 },
Eric Andersen25f27032001-04-26 23:22:31 +00002816 { "if", RES_IF, FLAG_THEN | FLAG_START },
2817 { "then", RES_THEN, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
2818 { "elif", RES_ELIF, FLAG_THEN },
2819 { "else", RES_ELSE, FLAG_FI },
2820 { "fi", RES_FI, FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00002821#endif
2822#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002823 { "for", RES_FOR, FLAG_IN | FLAG_START },
2824 { "while", RES_WHILE, FLAG_DO | FLAG_START },
2825 { "until", RES_UNTIL, FLAG_DO | FLAG_START },
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002826 { "in", RES_IN, FLAG_DO },
Eric Andersen25f27032001-04-26 23:22:31 +00002827 { "do", RES_DO, FLAG_DONE },
2828 { "done", RES_DONE, FLAG_END }
Denis Vlasenko06810332007-05-21 23:30:54 +00002829#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002830 };
Denis Vlasenko80b8b392007-06-25 10:55:35 +00002831
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002832 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002833
Denis Vlasenko80b8b392007-06-25 10:55:35 +00002834 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002835 if (strcmp(word->data, r->literal) != 0)
Denis Vlasenko1a735862007-05-23 00:32:25 +00002836 continue;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002837 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
2838 if (r->flag == 0) { /* '!' */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002839#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002840 if (ctx->res_w == RES_IN) {
2841 /* 'for a in ! a b c; ...' - ! isn't a keyword here */
2842 break;
2843 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002844#endif
2845 if (ctx->ctx_inverted /* bash doesn't accept '! ! true' */
2846#if ENABLE_HUSH_LOOPS
2847 || ctx->res_w == RES_FOR /* example: 'for ! a' */
2848#endif
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002849 ) {
2850 syntax(NULL);
2851 ctx->res_w = RES_SNTX;
2852 }
2853 ctx->ctx_inverted = 1;
2854 return 1;
2855 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00002856 if (r->flag & FLAG_START) {
2857 struct p_context *new;
2858 debug_printf("push stack\n");
Denis Vlasenko06810332007-05-21 23:30:54 +00002859#if ENABLE_HUSH_LOOPS
Denis Vlasenko1a735862007-05-23 00:32:25 +00002860 if (ctx->res_w == RES_IN || ctx->res_w == RES_FOR) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00002861 syntax("malformed for"); /* example: 'for if' */
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002862 ctx->res_w = RES_SNTX;
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002863 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002864 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00002865#endif
2866 new = xmalloc(sizeof(*new));
2867 *new = *ctx; /* physical copy */
2868 initialize_context(ctx);
2869 ctx->stack = new;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002870 } else if (ctx->res_w == RES_NONE || !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00002871 syntax(NULL);
Denis Vlasenko1a735862007-05-23 00:32:25 +00002872 ctx->res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00002873 return 1;
2874 }
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002875 ctx->res_w = r->res;
Denis Vlasenko1a735862007-05-23 00:32:25 +00002876 ctx->old_flag = r->flag;
2877 if (ctx->old_flag & FLAG_END) {
2878 struct p_context *old;
2879 debug_printf("pop stack\n");
2880 done_pipe(ctx, PIPE_SEQ);
2881 old = ctx->stack;
2882 old->child->group = ctx->list_head;
2883 old->child->subshell = 0;
2884 *ctx = *old; /* physical copy */
2885 free(old);
2886 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00002887 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002888 }
2889 return 0;
2890}
Denis Vlasenko06810332007-05-21 23:30:54 +00002891#else
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002892#define reserved_word(word, ctx) ((int)0)
Denis Vlasenko06810332007-05-21 23:30:54 +00002893#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002894
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002895/* Word is complete, look at it and update parsing context.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002896 * Normal return is 0. Syntax errors return 1. */
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002897static int done_word(o_string *word, struct p_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00002898{
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002899 struct child_prog *child = ctx->child;
Eric Andersen25f27032001-04-26 23:22:31 +00002900
Denis Vlasenko55789c62008-06-18 16:30:42 +00002901 /* If this word wasn't an assignment, next ones definitely
2902 * can't be assignments. Even if they look like ones. */
2903 if (word->o_assignment != DEFINITELY_ASSIGNMENT) {
2904 word->o_assignment = NOT_ASSIGNMENT;
2905 } else {
2906 word->o_assignment = MAYBE_ASSIGNMENT;
2907 }
2908
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002909 debug_printf_parse("done_word entered: '%s' %p\n", word->data, child);
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002910 if (word->length == 0 && word->nonnull == 0) {
2911 debug_printf_parse("done_word return 0: true null, ignored\n");
2912 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00002913 }
2914 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002915 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
2916 * only if run as "bash", not "sh" */
2917 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenko55789c62008-06-18 16:30:42 +00002918 word->o_assignment = NOT_ASSIGNMENT;
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002919 debug_printf("word stored in rd_filename: '%s'\n", word->data);
Eric Andersen25f27032001-04-26 23:22:31 +00002920 } else {
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002921 if (child->group) { /* TODO: example how to trigger? */
Denis Vlasenko90e485c2007-05-23 15:22:50 +00002922 syntax(NULL);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002923 debug_printf_parse("done_word return 1: syntax error, groups and arglists don't mix\n");
2924 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002925 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00002926 if (!child->argv) { /* if it's the first word... */
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002927 debug_printf_parse(": checking '%s' for reserved-ness\n", word->data);
2928 if (reserved_word(word, ctx)) {
2929 o_reset(word);
Denis Vlasenko55789c62008-06-18 16:30:42 +00002930 word->o_assignment = NOT_ASSIGNMENT;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002931 debug_printf_parse("done_word return %d\n", (ctx->res_w == RES_SNTX));
2932 return (ctx->res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002933 }
Eric Andersen25f27032001-04-26 23:22:31 +00002934 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00002935 if (word->nonnull /* we saw "xx" or 'xx' */
2936 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
2937 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
2938 /* (otherwise it's "abc".... and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002939 ) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00002940 /* Insert "empty variable" reference, this makes
2941 * e.g. "", $empty"" etc to not disappear */
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00002942 o_addchr(word, SPECIAL_VAR_SYMBOL);
2943 o_addchr(word, SPECIAL_VAR_SYMBOL);
2944 }
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002945 child->argv = add_malloced_string_to_strings(child->argv, xstrdup(word->data));
2946 debug_print_strings("word appended to argv", child->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002947 }
Eric Andersen25f27032001-04-26 23:22:31 +00002948
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002949 o_reset(word);
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002950 ctx->pending_redirect = NULL;
2951
Denis Vlasenko06810332007-05-21 23:30:54 +00002952#if ENABLE_HUSH_LOOPS
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002953 /* Force FOR to have just one word (variable name) */
2954 if (ctx->res_w == RES_FOR)
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002955 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko06810332007-05-21 23:30:54 +00002956#endif
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002957 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00002958 return 0;
2959}
2960
Denis Vlasenko6eaf8de2008-06-17 12:09:21 +00002961/* Command (member of a pipe) is complete. The only possible error here
2962 * is out of memory, in which case xmalloc exits. */
Eric Andersen25f27032001-04-26 23:22:31 +00002963static int done_command(struct p_context *ctx)
2964{
2965 /* The child is really already in the pipe structure, so
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002966 * advance the pipe counter and make a new, null child. */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002967 struct pipe *pi = ctx->pipe;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002968 struct child_prog *child = ctx->child;
Eric Andersen25f27032001-04-26 23:22:31 +00002969
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002970 if (child) {
2971 if (child->group == NULL
2972 && child->argv == NULL
2973 && child->redirects == NULL
2974 ) {
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00002975 debug_printf_parse("done_command: skipping null cmd, num_progs=%d\n", pi->num_progs);
2976 return pi->num_progs;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002977 }
Eric Andersen25f27032001-04-26 23:22:31 +00002978 pi->num_progs++;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002979 debug_printf_parse("done_command: ++num_progs=%d\n", pi->num_progs);
Eric Andersen25f27032001-04-26 23:22:31 +00002980 } else {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002981 debug_printf_parse("done_command: initializing, num_progs=%d\n", pi->num_progs);
Eric Andersen25f27032001-04-26 23:22:31 +00002982 }
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002983
2984 /* Only real trickiness here is that the uncommitted
2985 * child structure is not counted in pi->num_progs. */
Eric Andersen25f27032001-04-26 23:22:31 +00002986 pi->progs = xrealloc(pi->progs, sizeof(*pi->progs) * (pi->num_progs+1));
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002987 child = &pi->progs[pi->num_progs];
Eric Andersen25f27032001-04-26 23:22:31 +00002988
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002989 memset(child, 0, sizeof(*child));
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002990 child->family = pi;
Eric Andersen25f27032001-04-26 23:22:31 +00002991
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002992 ctx->child = child;
Eric Andersen25f27032001-04-26 23:22:31 +00002993 /* but ctx->pipe and ctx->list_head remain unchanged */
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002994
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00002995 return pi->num_progs; /* used only for 0/nonzero check */
Eric Andersen25f27032001-04-26 23:22:31 +00002996}
2997
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002998static void done_pipe(struct p_context *ctx, pipe_style type)
Eric Andersen25f27032001-04-26 23:22:31 +00002999{
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003000 int not_null;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003001
3002 debug_printf_parse("done_pipe entered, followup %d\n", type);
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003003 not_null = done_command(ctx); /* implicit closure of previous command */
Eric Andersen25f27032001-04-26 23:22:31 +00003004 ctx->pipe->followup = type;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003005 ctx->pipe->res_word = ctx->res_w;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003006 ctx->pipe->pi_inverted = ctx->ctx_inverted;
3007 ctx->ctx_inverted = 0;
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003008 /* Without this check, even just <enter> on command line generates
3009 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenko6eaf8de2008-06-17 12:09:21 +00003010 * IOW: it is safe to do it unconditionally.
3011 * RES_IN case is for "for a in; do ..." (empty IN set)
3012 * to work. */
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00003013 if (not_null USE_HUSH_LOOPS(|| ctx->pipe->res_word == RES_IN)) {
Denis Vlasenko6eaf8de2008-06-17 12:09:21 +00003014 struct pipe *new_p = new_pipe();
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003015 ctx->pipe->next = new_p;
3016 ctx->pipe = new_p;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003017 ctx->child = NULL; /* needed! */
3018 /* Create the memory for child, roughly:
3019 * ctx->pipe->progs = new struct child_prog;
3020 * ctx->pipe->progs[0].family = ctx->pipe;
3021 * ctx->child = &ctx->pipe->progs[0];
3022 */
3023 done_command(ctx);
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003024 }
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003025 debug_printf_parse("done_pipe return\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003026}
3027
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003028/* Peek ahead in the in_str to find out if we have a "&n" construct,
Eric Andersen25f27032001-04-26 23:22:31 +00003029 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003030 * Return either -2 (syntax error), -1 (no &), or the number found.
Eric Andersen25f27032001-04-26 23:22:31 +00003031 */
3032static int redirect_dup_num(struct in_str *input)
3033{
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003034 int ch, d = 0, ok = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003035 ch = i_peek(input);
Eric Andersen25f27032001-04-26 23:22:31 +00003036 if (ch != '&') return -1;
3037
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003038 i_getch(input); /* get the & */
3039 ch = i_peek(input);
Eric Andersen83a2ae22001-05-07 17:59:25 +00003040 if (ch == '-') {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003041 i_getch(input);
Eric Andersen83a2ae22001-05-07 17:59:25 +00003042 return -3; /* "-" represents "close me" */
3043 }
3044 while (isdigit(ch)) {
Denis Vlasenko7d4c44e2007-04-16 22:34:39 +00003045 d = d*10 + (ch-'0');
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003046 ok = 1;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003047 i_getch(input);
3048 ch = i_peek(input);
Eric Andersen25f27032001-04-26 23:22:31 +00003049 }
3050 if (ok) return d;
3051
Manuel Novoa III cad53642003-03-19 09:13:01 +00003052 bb_error_msg("ambiguous redirect");
Eric Andersen25f27032001-04-26 23:22:31 +00003053 return -2;
3054}
3055
3056/* If a redirect is immediately preceded by a number, that number is
3057 * supposed to tell which file descriptor to redirect. This routine
3058 * looks for such preceding numbers. In an ideal world this routine
3059 * needs to handle all the following classes of redirects...
3060 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3061 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3062 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3063 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
3064 * A -1 output from this program means no valid number was found, so the
3065 * caller should use the appropriate default for this redirection.
3066 */
3067static int redirect_opt_num(o_string *o)
3068{
3069 int num;
3070
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003071 if (o->length == 0)
3072 return -1;
3073 for (num = 0; num < o->length; num++) {
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003074 if (!isdigit(o->data[num])) {
Eric Andersen25f27032001-04-26 23:22:31 +00003075 return -1;
3076 }
3077 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003078 num = atoi(o->data);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003079 o_reset(o);
Eric Andersen25f27032001-04-26 23:22:31 +00003080 return num;
3081}
3082
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003083#if ENABLE_HUSH_TICK
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +00003084static FILE *generate_stream_from_list(struct pipe *head)
Eric Andersen25f27032001-04-26 23:22:31 +00003085{
3086 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00003087 int pid, channel[2];
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003088
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00003089 xpipe(channel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003090/* *** NOMMU WARNING *** */
3091/* By using vfork here, we suspend parent till child exits or execs.
3092 * If child will not do it before it fills the pipe, it can block forever
3093 * in write(STDOUT_FILENO), and parent (shell) will be also stuck.
Denis Vlasenko3fe4f982008-06-09 16:02:39 +00003094 * Try this script:
3095 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >TESTFILE
3096 * huge=`cat TESTFILE` # will block here forever
3097 * echo OK
Denis Vlasenko05743d72008-02-10 12:10:08 +00003098 */
3099 pid = BB_MMU ? fork() : vfork();
3100 if (pid < 0)
3101 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
3102 if (pid == 0) { /* child */
Denis Vlasenko83177992008-02-11 08:44:36 +00003103 if (ENABLE_HUSH_JOB)
3104 die_sleep = 0; /* let nofork's xfuncs die */
Denis Vlasenko284d0fa2008-02-16 13:18:17 +00003105 close(channel[0]); /* NB: close _first_, then move fd! */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003106 xmove_fd(channel[1], 1);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003107 /* Prevent it from trying to handle ctrl-z etc */
Denis Vlasenko27f79ff2007-05-30 00:55:52 +00003108#if ENABLE_HUSH_JOB
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003109 run_list_level = 1;
Denis Vlasenko27f79ff2007-05-30 00:55:52 +00003110#endif
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003111 /* Process substitution is not considered to be usual
3112 * 'command execution'.
3113 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not. */
3114 /* Not needed, we are relying on it being disabled
3115 * everywhere outside actual command execution. */
3116 /*set_jobctrl_sighandler(SIG_IGN);*/
3117 set_misc_sighandler(SIG_DFL);
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00003118 /* Freeing 'head' here would break NOMMU. */
3119 _exit(run_list(head));
Eric Andersen25f27032001-04-26 23:22:31 +00003120 }
Eric Andersen25f27032001-04-26 23:22:31 +00003121 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003122 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00003123 return pf;
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00003124 /* 'head' is freed by the caller */
Eric Andersen25f27032001-04-26 23:22:31 +00003125}
3126
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003127/* Return code is exit status of the process that is run. */
Denis Vlasenko68404f12008-03-17 09:00:54 +00003128static int process_command_subs(o_string *dest,
Denis Vlasenko68404f12008-03-17 09:00:54 +00003129 struct in_str *input,
3130 const char *subst_end)
Eric Andersen25f27032001-04-26 23:22:31 +00003131{
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003132 int retcode, ch, eol_cnt;
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003133 o_string result = NULL_O_STRING;
Eric Andersen25f27032001-04-26 23:22:31 +00003134 struct p_context inner;
3135 FILE *p;
3136 struct in_str pipe_str;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003137
Eric Andersen25f27032001-04-26 23:22:31 +00003138 initialize_context(&inner);
3139
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003140 /* Recursion to generate command */
Eric Andersen25f27032001-04-26 23:22:31 +00003141 retcode = parse_stream(&result, &inner, input, subst_end);
Denis Vlasenko1a735862007-05-23 00:32:25 +00003142 if (retcode != 0)
3143 return retcode; /* syntax error or EOF */
Eric Andersen25f27032001-04-26 23:22:31 +00003144 done_word(&result, &inner);
3145 done_pipe(&inner, PIPE_SEQ);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003146 o_free(&result);
Eric Andersen25f27032001-04-26 23:22:31 +00003147
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003148 p = generate_stream_from_list(inner.list_head);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003149 if (p == NULL)
3150 return 1;
Denis Vlasenkoa0898172007-10-01 09:59:01 +00003151 close_on_exec_on(fileno(p));
Eric Andersen25f27032001-04-26 23:22:31 +00003152 setup_file_in_str(&pipe_str, p);
3153
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003154 /* Now send results of command back into original context */
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003155 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003156 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003157 if (ch == '\n') {
3158 eol_cnt++;
3159 continue;
3160 }
3161 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00003162 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003163 eol_cnt--;
3164 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00003165// /* Even unquoted `echo '\'` results in two backslashes
3166// * (which are converted into one by globbing later) */
3167// if (!dest->o_quote && ch == '\\') {
3168// o_addchr(dest, ch);
3169// }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003170 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003171 }
3172
3173 debug_printf("done reading from pipe, pclose()ing\n");
3174 /* This is the step that wait()s for the child. Should be pretty
3175 * safe, since we just read an EOF from its stdout. We could try
Denis Vlasenko262d7652007-05-20 21:52:49 +00003176 * to do better, by using wait(), and keeping track of background jobs
Eric Andersen25f27032001-04-26 23:22:31 +00003177 * at the same time. That would be a lot of work, and contrary
3178 * to the KISS philosophy of this program. */
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003179 retcode = fclose(p);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003180 free_pipe_list(inner.list_head, /* indent: */ 0);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003181 debug_printf("closed FILE from child, retcode=%d\n", retcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003182 return retcode;
3183}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003184#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003185
3186static int parse_group(o_string *dest, struct p_context *ctx,
3187 struct in_str *input, int ch)
3188{
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003189 int rcode;
3190 const char *endch = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003191 struct p_context sub;
3192 struct child_prog *child = ctx->child;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003193
3194 debug_printf_parse("parse_group entered\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003195 if (child->argv) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003196 syntax(NULL);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003197 debug_printf_parse("parse_group return 1: syntax error, groups and arglists don't mix\n");
3198 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003199 }
3200 initialize_context(&sub);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003201 endch = "}";
3202 if (ch == '(') {
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003203 endch = ")";
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003204 child->subshell = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003205 }
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003206 rcode = parse_stream(dest, &sub, input, endch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003207 if (rcode == 0) {
3208 done_word(dest, &sub); /* finish off the final word in the subcontext */
3209 done_pipe(&sub, PIPE_SEQ); /* and the final command there, too */
3210 child->group = sub.list_head;
3211 }
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003212 debug_printf_parse("parse_group return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003213 return rcode;
3214 /* child remains "open", available for possible redirects */
3215}
3216
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003217/* Basically useful version until someone wants to get fancier,
Eric Andersen25f27032001-04-26 23:22:31 +00003218 * see the bash man page under "Parameter Expansion" */
Denis Vlasenko15d78fb2007-01-30 22:28:21 +00003219static const char *lookup_param(const char *src)
Eric Andersen25f27032001-04-26 23:22:31 +00003220{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003221 struct variable *var = get_local_var(src);
3222 if (var)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00003223 return strchr(var->varstr, '=') + 1;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003224 return NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003225}
3226
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003227#if ENABLE_HUSH_TICK
3228/* Subroutines for copying $(...) and `...` things */
3229static void add_till_backquote(o_string *dest, struct in_str *input);
3230/* '...' */
3231static void add_till_single_quote(o_string *dest, struct in_str *input)
3232{
3233 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003234 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003235 if (ch == EOF)
3236 break;
3237 if (ch == '\'')
3238 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003239 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003240 }
3241}
3242/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
3243static void add_till_double_quote(o_string *dest, struct in_str *input)
3244{
3245 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003246 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003247 if (ch == '"')
3248 break;
3249 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003250 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003251 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003252 }
3253 if (ch == EOF)
3254 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003255 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003256 if (ch == '`') {
3257 add_till_backquote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003258 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003259 continue;
3260 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00003261 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003262 }
3263}
3264/* Process `cmd` - copy contents until "`" is seen. Complicated by
3265 * \` quoting.
3266 * "Within the backquoted style of command substitution, backslash
3267 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
3268 * The search for the matching backquote shall be satisfied by the first
3269 * backquote found without a preceding backslash; during this search,
3270 * if a non-escaped backquote is encountered within a shell comment,
3271 * a here-document, an embedded command substitution of the $(command)
3272 * form, or a quoted string, undefined results occur. A single-quoted
3273 * or double-quoted string that begins, but does not end, within the
3274 * "`...`" sequence produces undefined results."
3275 * Example Output
3276 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
3277 */
3278static void add_till_backquote(o_string *dest, struct in_str *input)
3279{
3280 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003281 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003282 if (ch == '`')
3283 break;
3284 if (ch == '\\') { /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003285 int ch2 = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003286 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003287 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003288 ch = ch2;
3289 }
3290 if (ch == EOF)
3291 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003292 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003293 }
3294}
3295/* Process $(cmd) - copy contents until ")" is seen. Complicated by
3296 * quoting and nested ()s.
3297 * "With the $(command) style of command substitution, all characters
3298 * following the open parenthesis to the matching closing parenthesis
3299 * constitute the command. Any valid shell script can be used for command,
3300 * except a script consisting solely of redirections which produces
3301 * unspecified results."
3302 * Example Output
3303 * echo $(echo '(TEST)' BEST) (TEST) BEST
3304 * echo $(echo 'TEST)' BEST) TEST) BEST
3305 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
3306 */
3307static void add_till_closing_curly_brace(o_string *dest, struct in_str *input)
3308{
3309 int count = 0;
3310 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003311 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003312 if (ch == EOF)
3313 break;
3314 if (ch == '(')
3315 count++;
3316 if (ch == ')')
3317 if (--count < 0)
3318 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003319 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003320 if (ch == '\'') {
3321 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003322 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003323 continue;
3324 }
3325 if (ch == '"') {
3326 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003327 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003328 continue;
3329 }
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003330 if (ch == '\\') { /* \x. Copy verbatim. Important for \(, \) */
3331 ch = i_getch(input);
3332 if (ch == EOF)
3333 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003334 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003335 continue;
3336 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003337 }
3338}
3339#endif /* ENABLE_HUSH_TICK */
3340
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003341/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003342static int handle_dollar(o_string *dest, struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00003343{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003344 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkoff097622007-10-01 10:00:45 +00003345 unsigned char quote_mask = dest->o_quote ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003346
3347 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003348 if (isalpha(ch)) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003349 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003350 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003351 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003352 i_getch(input);
3353 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003354 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003355 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003356 if (!isalnum(ch) && ch != '_')
3357 break;
Eric Andersen25f27032001-04-26 23:22:31 +00003358 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003359 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003360 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003361 make_one_char_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003362 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003363 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003364 i_getch(input);
3365 o_addchr(dest, ch | quote_mask);
3366 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003367 } else switch (ch) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003368 case '$': /* pid */
3369 case '!': /* last bg pid */
3370 case '?': /* last exit code */
3371 case '#': /* number of args */
3372 case '*': /* args */
3373 case '@': /* args */
3374 goto make_one_char_var;
Eric Andersen25f27032001-04-26 23:22:31 +00003375 case '{':
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003376 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3377 i_getch(input);
Eric Andersen25f27032001-04-26 23:22:31 +00003378 /* XXX maybe someone will try to escape the '}' */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003379 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003380 ch = i_getch(input);
Denis Vlasenkob0550012007-05-24 12:18:16 +00003381 if (ch == '}')
3382 break;
3383 if (!isalnum(ch) && ch != '_') {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003384 syntax("unterminated ${name}");
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003385 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
3386 return 1;
3387 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003388 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003389 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003390 quote_mask = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003391 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003392 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003393 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003394#if ENABLE_HUSH_TICK
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003395 case '(': {
3396 //int pos = dest->length;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003397 i_getch(input);
3398 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3399 o_addchr(dest, quote_mask | '`');
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003400 add_till_closing_curly_brace(dest, input);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003401 //debug_printf_subst("SUBST RES2 '%s'\n", dest->data + pos);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003402 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003403 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003404 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003405#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003406 case '-':
3407 case '_':
3408 /* still unhandled, but should be eventually */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003409 bb_error_msg("unhandled syntax: $%c", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003410 return 1;
3411 break;
3412 default:
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003413 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00003414 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003415 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003416 return 0;
3417}
3418
Denis Vlasenko55789c62008-06-18 16:30:42 +00003419/* Scan input, call done_word() whenever full IFS delemited word was seen.
3420 * call done_pipe if '\n' was seen (and end_trigger != NULL)
3421 * Return if (non-quoted) char in end_trigger was seen; or on parse error. */
3422/* Return code is 0 if end_trigger char is met,
3423 * -1 on EOF (but if end_trigger == NULL then return 0)
3424 * 1 for syntax error */
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003425static int parse_stream(o_string *dest, struct p_context *ctx,
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003426 struct in_str *input, const char *end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00003427{
"Vladimir N. Oleynik"4ccd2b42006-01-31 09:27:48 +00003428 int ch, m;
Eric Andersen25f27032001-04-26 23:22:31 +00003429 int redir_fd;
3430 redir_type redir_style;
Denis Vlasenko55789c62008-06-18 16:30:42 +00003431 int shadow_quote = dest->o_quote;
Eric Andersen25f27032001-04-26 23:22:31 +00003432 int next;
3433
Denis Vlasenkoff097622007-10-01 10:00:45 +00003434 /* Only double-quote state is handled in the state variable dest->o_quote.
Eric Andersen25f27032001-04-26 23:22:31 +00003435 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoff097622007-10-01 10:00:45 +00003436 * found. When recursing, quote state is passed in via dest->o_quote. */
Eric Andersen25f27032001-04-26 23:22:31 +00003437
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003438 debug_printf_parse("parse_stream entered, end_trigger='%s'\n", end_trigger);
3439
Denis Vlasenko1a735862007-05-23 00:32:25 +00003440 while (1) {
Denis Vlasenko1a735862007-05-23 00:32:25 +00003441 m = CHAR_IFS;
3442 next = '\0';
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003443 ch = i_getch(input);
Denis Vlasenko1a735862007-05-23 00:32:25 +00003444 if (ch != EOF) {
3445 m = charmap[ch];
Denis Vlasenko55789c62008-06-18 16:30:42 +00003446 if (ch != '\n') {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003447 next = i_peek(input);
Denis Vlasenko55789c62008-06-18 16:30:42 +00003448 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00003449 }
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003450 debug_printf_parse(": ch=%c (%d) m=%d quote=%d\n",
Denis Vlasenkoff097622007-10-01 10:00:45 +00003451 ch, ch, m, dest->o_quote);
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003452 if (m == CHAR_ORDINARY
Denis Vlasenko55789c62008-06-18 16:30:42 +00003453 || (m != CHAR_SPECIAL && shadow_quote)
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003454 ) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00003455 if (ch == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003456 syntax("unterminated \"");
Denis Vlasenko170435c2007-05-23 13:01:10 +00003457 debug_printf_parse("parse_stream return 1: unterminated \"\n");
3458 return 1;
3459 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003460 o_addQchr(dest, ch);
Denis Vlasenko55789c62008-06-18 16:30:42 +00003461 if (dest->o_assignment == MAYBE_ASSIGNMENT
3462 && ch == '='
3463 && is_assignment(dest->data)
3464 ) {
3465 dest->o_assignment = DEFINITELY_ASSIGNMENT;
3466 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003467 continue;
3468 }
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003469 if (m == CHAR_IFS) {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003470 if (done_word(dest, ctx)) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003471 debug_printf_parse("parse_stream return 1: done_word!=0\n");
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003472 return 1;
Eric Andersenaac75e52001-04-30 18:18:45 +00003473 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00003474 if (ch == EOF)
3475 break;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003476 /* If we aren't performing a substitution, treat
3477 * a newline as a command separator.
3478 * [why we don't handle it exactly like ';'? --vda] */
3479 if (end_trigger && ch == '\n') {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003480 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003481 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003482 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003483 if (end_trigger) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00003484 if (!shadow_quote && strchr(end_trigger, ch)) {
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003485 /* Special case: (...word) makes last word terminate,
3486 * as if ';' is seen */
3487 if (ch == ')') {
3488 done_word(dest, ctx);
Denis Vlasenko55789c62008-06-18 16:30:42 +00003489//err chk?
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003490 done_pipe(ctx, PIPE_SEQ);
3491 }
3492 if (ctx->res_w == RES_NONE) {
3493 debug_printf_parse("parse_stream return 0: end_trigger char found\n");
3494 return 0;
3495 }
3496 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003497 }
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003498 if (m == CHAR_IFS)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003499 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00003500
3501 if (dest->o_assignment == MAYBE_ASSIGNMENT) {
3502 /* ch is a special char and thus this word
3503 * cannot be an assignment: */
3504 dest->o_assignment = NOT_ASSIGNMENT;
3505 }
3506
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003507 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00003508 case '#':
Denis Vlasenko55789c62008-06-18 16:30:42 +00003509 if (dest->length == 0 && !shadow_quote) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003510 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003511 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003512 if (ch == EOF || ch == '\n')
3513 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003514 i_getch(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003515 }
Eric Andersen25f27032001-04-26 23:22:31 +00003516 } else {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003517 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003518 }
3519 break;
3520 case '\\':
3521 if (next == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003522 syntax("\\<eof>");
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003523 debug_printf_parse("parse_stream return 1: \\<eof>\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003524 return 1;
3525 }
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00003526 /* bash:
3527 * "The backslash retains its special meaning [in "..."]
3528 * only when followed by one of the following characters:
3529 * $, `, ", \, or <newline>. A double quote may be quoted
3530 * within double quotes by preceding it with a backslash.
3531 * If enabled, history expansion will be performed unless
3532 * an ! appearing in double quotes is escaped using
3533 * a backslash. The backslash preceding the ! is not removed."
3534 */
Denis Vlasenko55789c62008-06-18 16:30:42 +00003535 if (shadow_quote) { //NOT SURE dest->o_quote) {
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00003536 if (strchr("$`\"\\", next) != NULL) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003537 o_addqchr(dest, i_getch(input));
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00003538 } else {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003539 o_addqchr(dest, '\\');
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00003540 }
3541 } else {
3542 o_addchr(dest, '\\');
3543 o_addchr(dest, i_getch(input));
3544 }
Eric Andersen25f27032001-04-26 23:22:31 +00003545 break;
3546 case '$':
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003547 if (handle_dollar(dest, input) != 0) {
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003548 debug_printf_parse("parse_stream return 1: handle_dollar returned non-0\n");
3549 return 1;
3550 }
Eric Andersen25f27032001-04-26 23:22:31 +00003551 break;
3552 case '\'':
3553 dest->nonnull = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003554 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003555 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003556 if (ch == EOF) {
3557 syntax("unterminated '");
3558 debug_printf_parse("parse_stream return 1: unterminated '\n");
3559 return 1;
3560 }
3561 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003562 break;
Denis Vlasenko55789c62008-06-18 16:30:42 +00003563 if (dest->o_assignment == NOT_ASSIGNMENT)
3564 o_addqchr(dest, ch);
3565 else
3566 o_addchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003567 }
Eric Andersen25f27032001-04-26 23:22:31 +00003568 break;
3569 case '"':
3570 dest->nonnull = 1;
Denis Vlasenko55789c62008-06-18 16:30:42 +00003571 shadow_quote ^= 1; /* invert */
3572 if (dest->o_assignment == NOT_ASSIGNMENT)
3573 dest->o_quote ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003574 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003575#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003576 case '`': {
3577 //int pos = dest->length;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003578 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko55789c62008-06-18 16:30:42 +00003579 o_addchr(dest, shadow_quote /*or dest->o_quote??*/ ? 0x80 | '`' : '`');
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003580 add_till_backquote(dest, input);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003581 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003582 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00003583 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003584 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003585#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003586 case '>':
3587 redir_fd = redirect_opt_num(dest);
3588 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003589 redir_style = REDIRECT_OVERWRITE;
Eric Andersen25f27032001-04-26 23:22:31 +00003590 if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003591 redir_style = REDIRECT_APPEND;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003592 i_getch(input);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003593 }
3594#if 0
3595 else if (next == '(') {
3596 syntax(">(process) not supported");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003597 debug_printf_parse("parse_stream return 1: >(process) not supported\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003598 return 1;
3599 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003600#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003601 setup_redirect(ctx, redir_fd, redir_style, input);
3602 break;
3603 case '<':
3604 redir_fd = redirect_opt_num(dest);
3605 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003606 redir_style = REDIRECT_INPUT;
Eric Andersen25f27032001-04-26 23:22:31 +00003607 if (next == '<') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003608 redir_style = REDIRECT_HEREIS;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003609 i_getch(input);
Eric Andersen25f27032001-04-26 23:22:31 +00003610 } else if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003611 redir_style = REDIRECT_IO;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003612 i_getch(input);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003613 }
3614#if 0
3615 else if (next == '(') {
3616 syntax("<(process) not supported");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003617 debug_printf_parse("parse_stream return 1: <(process) not supported\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003618 return 1;
3619 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003620#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003621 setup_redirect(ctx, redir_fd, redir_style, input);
3622 break;
3623 case ';':
3624 done_word(dest, ctx);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003625 done_pipe(ctx, PIPE_SEQ);
Eric Andersen25f27032001-04-26 23:22:31 +00003626 break;
3627 case '&':
3628 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003629 if (next == '&') {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003630 i_getch(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003631 done_pipe(ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00003632 } else {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003633 done_pipe(ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00003634 }
3635 break;
3636 case '|':
3637 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003638 if (next == '|') {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003639 i_getch(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003640 done_pipe(ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00003641 } else {
3642 /* we could pick up a file descriptor choice here
3643 * with redirect_opt_num(), but bash doesn't do it.
3644 * "echo foo 2| cat" yields "foo 2". */
3645 done_command(ctx);
3646 }
3647 break;
3648 case '(':
3649 case '{':
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003650 if (parse_group(dest, ctx, input, ch) != 0) {
3651 debug_printf_parse("parse_stream return 1: parse_group returned non-0\n");
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003652 return 1;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003653 }
Eric Andersen25f27032001-04-26 23:22:31 +00003654 break;
3655 case ')':
3656 case '}':
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003657 /* proper use of this character is caught by end_trigger */
3658 syntax("unexpected } or )");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003659 debug_printf_parse("parse_stream return 1: unexpected '}'\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003660 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003661 default:
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003662 if (ENABLE_HUSH_DEBUG)
3663 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003664 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003665 } /* while (1) */
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003666 debug_printf_parse("parse_stream return %d\n", -(end_trigger != NULL));
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003667 if (end_trigger)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003668 return -1;
Eric Andersen25f27032001-04-26 23:22:31 +00003669 return 0;
3670}
3671
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003672static void set_in_charmap(const char *set, int code)
Eric Andersen25f27032001-04-26 23:22:31 +00003673{
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003674 while (*set)
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003675 charmap[(unsigned char)*set++] = code;
Eric Andersen25f27032001-04-26 23:22:31 +00003676}
3677
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003678static void update_charmap(void)
Eric Andersen25f27032001-04-26 23:22:31 +00003679{
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003680 /* char *ifs and char charmap[256] are both globals. */
Eric Andersen25f27032001-04-26 23:22:31 +00003681 ifs = getenv("IFS");
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003682 if (ifs == NULL)
3683 ifs = " \t\n";
Eric Andersen25f27032001-04-26 23:22:31 +00003684 /* Precompute a list of 'flow through' behavior so it can be treated
3685 * quickly up front. Computation is necessary because of IFS.
3686 * Special case handling of IFS == " \t\n" is not implemented.
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003687 * The charmap[] array only really needs two bits each,
3688 * and on most machines that would be faster (reduced L1 cache use).
Eric Andersen25f27032001-04-26 23:22:31 +00003689 */
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003690 memset(charmap, CHAR_ORDINARY, sizeof(charmap));
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003691#if ENABLE_HUSH_TICK
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003692 set_in_charmap("\\$\"`", CHAR_SPECIAL);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003693#else
3694 set_in_charmap("\\$\"", CHAR_SPECIAL);
3695#endif
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003696 set_in_charmap("<>;&|(){}#'", CHAR_ORDINARY_IF_QUOTED);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003697 set_in_charmap(ifs, CHAR_IFS); /* are ordinary if quoted */
Eric Andersen25f27032001-04-26 23:22:31 +00003698}
3699
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003700/* Most recursion does not come through here, the exception is
Denis Vlasenko170435c2007-05-23 13:01:10 +00003701 * from builtin_source() and builtin_eval() */
3702static int parse_and_run_stream(struct in_str *inp, int parse_flag)
Eric Andersen25f27032001-04-26 23:22:31 +00003703{
Eric Andersen25f27032001-04-26 23:22:31 +00003704 struct p_context ctx;
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003705 o_string temp = NULL_O_STRING;
Eric Andersen25f27032001-04-26 23:22:31 +00003706 int rcode;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003707
Eric Andersen25f27032001-04-26 23:22:31 +00003708 do {
3709 initialize_context(&ctx);
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003710 update_charmap();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003711#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00003712 inp->promptmode = 0; /* PS1 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003713#endif
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003714 /* We will stop & execute after each ';' or '\n'.
3715 * Example: "sleep 9999; echo TEST" + ctrl-C:
3716 * TEST should be printed */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003717 rcode = parse_stream(&temp, &ctx, inp, ";\n");
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003718 if (rcode != 1 && ctx.old_flag != 0) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003719 syntax(NULL);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003720 }
3721 if (rcode != 1 && ctx.old_flag == 0) {
3722 done_word(&temp, &ctx);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003723 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003724 debug_print_tree(ctx.list_head, 0);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003725 debug_printf_exec("parse_stream_outer: run_and_free_list\n");
3726 run_and_free_list(ctx.list_head);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003727 } else {
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003728 /* We arrive here also if rcode == 1 (error in parse_stream) */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003729 if (ctx.old_flag != 0) {
3730 free(ctx.stack);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003731 o_reset(&temp);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003732 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003733 /*temp.nonnull = 0; - o_free does it below */
3734 /*temp.o_quote = 0; - o_free does it below */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003735 free_pipe_list(ctx.list_head, /* indent: */ 0);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003736 /* Discard all unprocessed line input, force prompt on */
3737 inp->p = NULL;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003738#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003739 inp->promptme = 1;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003740#endif
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003741 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003742 o_free(&temp);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003743 /* loop on syntax errors, return on EOF: */
3744 } while (rcode != -1 && !(parse_flag & PARSEFLAG_EXIT_FROM_LOOP));
Eric Andersen25f27032001-04-26 23:22:31 +00003745 return 0;
3746}
3747
Denis Vlasenko170435c2007-05-23 13:01:10 +00003748static int parse_and_run_string(const char *s, int parse_flag)
Eric Andersen25f27032001-04-26 23:22:31 +00003749{
3750 struct in_str input;
3751 setup_string_in_str(&input, s);
Denis Vlasenko170435c2007-05-23 13:01:10 +00003752 return parse_and_run_stream(&input, parse_flag);
Eric Andersen25f27032001-04-26 23:22:31 +00003753}
3754
Denis Vlasenko170435c2007-05-23 13:01:10 +00003755static int parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00003756{
3757 int rcode;
3758 struct in_str input;
3759 setup_file_in_str(&input, f);
Denis Vlasenko5703c222008-06-15 11:49:42 +00003760 rcode = parse_and_run_stream(&input, 0 /* parse_flag */);
Eric Andersen25f27032001-04-26 23:22:31 +00003761 return rcode;
3762}
3763
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003764#if ENABLE_HUSH_JOB
Eric Andersen6c947d22001-06-25 22:24:38 +00003765/* Make sure we have a controlling tty. If we get started under a job
3766 * aware app (like bash for example), make sure we are now in charge so
3767 * we don't fight over who gets the foreground */
Eric Anderseneaecbf32001-10-31 10:41:31 +00003768static void setup_job_control(void)
Eric Andersen52a97ca2001-06-22 06:49:26 +00003769{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003770 pid_t shell_pgrp;
3771
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00003772 saved_task_pgrp = shell_pgrp = getpgrp();
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003773 debug_printf_jobs("saved_task_pgrp=%d\n", saved_task_pgrp);
Denis Vlasenko96e1b382007-09-30 23:50:48 +00003774 close_on_exec_on(interactive_fd);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003775
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00003776 /* If we were ran as 'hush &',
3777 * sleep until we are in the foreground. */
3778 while (tcgetpgrp(interactive_fd) != shell_pgrp) {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003779 /* Send TTIN to ourself (should stop us) */
Denis Vlasenkoff131b92007-04-10 15:42:06 +00003780 kill(- shell_pgrp, SIGTTIN);
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00003781 shell_pgrp = getpgrp();
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003782 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00003783
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003784 /* Ignore job-control and misc signals. */
3785 set_jobctrl_sighandler(SIG_IGN);
3786 set_misc_sighandler(SIG_IGN);
3787//huh? signal(SIGCHLD, SIG_IGN);
3788
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003789 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003790 set_fatal_sighandler(sigexit);
Eric Andersen6c947d22001-06-25 22:24:38 +00003791
3792 /* Put ourselves in our own process group. */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003793 setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
Eric Andersen6c947d22001-06-25 22:24:38 +00003794 /* Grab control of the terminal. */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003795 tcsetpgrp(interactive_fd, getpid());
Eric Andersen6c947d22001-06-25 22:24:38 +00003796}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003797#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00003798
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003799
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00003800int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00003801int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00003802{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00003803 static const char version_str[] ALIGN1 = "HUSH_VERSION="HUSH_VER_STR;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00003804 static const struct variable const_shell_ver = {
3805 .next = NULL,
3806 .varstr = (char*)version_str,
3807 .max_len = 1, /* 0 can provoke free(name) */
3808 .flg_export = 1,
3809 .flg_read_only = 1,
3810 };
3811
Eric Andersen25f27032001-04-26 23:22:31 +00003812 int opt;
3813 FILE *input;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003814 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003815 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00003816
Denis Vlasenko574f2f42008-02-27 18:41:59 +00003817 INIT_G();
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003818
Denis Vlasenko16c2fea2008-06-17 12:28:44 +00003819 root_pid = getpid();
3820
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00003821 /* Deal with HUSH_VERSION */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00003822 shell_ver = const_shell_ver; /* copying struct here */
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003823 top_var = &shell_ver;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00003824 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
3825 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003826 * currently living in the environment */
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003827 cur_var = top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00003828 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003829 if (e) while (*e) {
3830 char *value = strchr(*e, '=');
3831 if (value) { /* paranoia */
3832 cur_var->next = xzalloc(sizeof(*cur_var));
3833 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00003834 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003835 cur_var->max_len = strlen(*e);
3836 cur_var->flg_export = 1;
3837 }
3838 e++;
3839 }
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00003840 putenv((char *)version_str); /* reinstate HUSH_VERSION */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00003841
Denis Vlasenko38f63192007-01-22 09:03:07 +00003842#if ENABLE_FEATURE_EDITING
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003843 line_input_state = new_line_input_t(FOR_SHELL);
3844#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003845 /* XXX what should these be while sourcing /etc/profile? */
3846 global_argc = argc;
3847 global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00003848 /* Initialize some more globals to non-zero values */
3849 set_cwd();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003850#if ENABLE_HUSH_INTERACTIVE
3851#if ENABLE_FEATURE_EDITING
3852 cmdedit_set_initial_prompt();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003853#endif
Eric Andersen94ac2442001-05-22 19:05:18 +00003854 PS2 = "> ";
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003855#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00003856
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003857 if (EXIT_SUCCESS) /* otherwise is already done */
3858 last_return_code = EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +00003859
3860 if (argv[0] && argv[0][0] == '-') {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003861 debug_printf("sourcing /etc/profile\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003862 input = fopen("/etc/profile", "r");
3863 if (input != NULL) {
Denis Vlasenkoa0898172007-10-01 09:59:01 +00003864 close_on_exec_on(fileno(input));
Denis Vlasenko170435c2007-05-23 13:01:10 +00003865 parse_and_run_file(input);
Eric Andersena90f20b2001-06-26 23:00:21 +00003866 fclose(input);
3867 }
Eric Andersen25f27032001-04-26 23:22:31 +00003868 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003869 input = stdin;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003870
Eric Andersen25f27032001-04-26 23:22:31 +00003871 while ((opt = getopt(argc, argv, "c:xif")) > 0) {
3872 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003873 case 'c':
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003874 global_argv = argv + optind;
3875 global_argc = argc - optind;
Denis Vlasenko5703c222008-06-15 11:49:42 +00003876 opt = parse_and_run_string(optarg, 0 /* parse_flag */);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003877 goto final_return;
3878 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003879 /* Well, we cannot just declare interactiveness,
3880 * we have to have some stuff (ctty, etc) */
3881 /* interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003882 break;
3883 case 'f':
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00003884 fake_mode = 1;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003885 break;
3886 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00003887#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003888 fprintf(stderr, "Usage: sh [FILE]...\n"
3889 " or: sh -c command [args]...\n\n");
3890 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00003891#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003892 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00003893#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003894 }
3895 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003896#if ENABLE_HUSH_JOB
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003897 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00003898 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00003899 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00003900 * no arguments remaining or the -s flag given
3901 * standard input is a terminal
3902 * standard output is a terminal
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003903 * Refer to Posix.2, the description of the 'sh' utility. */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003904 if (argv[optind] == NULL && input == stdin
3905 && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)
3906 ) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003907 saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
3908 debug_printf("saved_tty_pgrp=%d\n", saved_tty_pgrp);
3909 if (saved_tty_pgrp >= 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003910 /* try to dup to high fd#, >= 255 */
3911 interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
3912 if (interactive_fd < 0) {
3913 /* try to dup to any fd */
3914 interactive_fd = dup(STDIN_FILENO);
3915 if (interactive_fd < 0)
3916 /* give up */
3917 interactive_fd = 0;
3918 }
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003919 // TODO: track & disallow any attempts of user
3920 // to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003921 }
Eric Andersen25f27032001-04-26 23:22:31 +00003922 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003923 debug_printf("interactive_fd=%d\n", interactive_fd);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003924 if (interactive_fd) {
Denis Vlasenko08126f62008-02-11 08:39:11 +00003925 fcntl(interactive_fd, F_SETFD, FD_CLOEXEC);
Eric Andersen25f27032001-04-26 23:22:31 +00003926 /* Looks like they want an interactive shell */
Eric Andersen52a97ca2001-06-22 06:49:26 +00003927 setup_job_control();
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00003928 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00003929 * (we reset die_sleep = 0 whereever we [v]fork) */
3930 die_sleep = -1;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003931 if (setjmp(die_jmp)) {
3932 /* xfunc has failed! die die die */
3933 hush_exit(xfunc_error_retval);
3934 }
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003935#if !ENABLE_FEATURE_SH_EXTRA_QUIET
Denis Vlasenkoca525b42007-06-13 12:27:17 +00003936 printf("\n\n%s hush - the humble shell v"HUSH_VER_STR"\n", bb_banner);
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003937 printf("Enter 'help' for a list of built-in commands.\n\n");
3938#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00003939 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003940#elif ENABLE_HUSH_INTERACTIVE
3941/* no job control compiled, only prompt/line editing */
3942 if (argv[optind] == NULL && input == stdin
3943 && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)
3944 ) {
3945 interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
3946 if (interactive_fd < 0) {
3947 /* try to dup to any fd */
3948 interactive_fd = dup(STDIN_FILENO);
3949 if (interactive_fd < 0)
3950 /* give up */
3951 interactive_fd = 0;
3952 }
Denis Vlasenko4830fc52008-05-25 21:50:55 +00003953 if (interactive_fd) {
Denis Vlasenko08126f62008-02-11 08:39:11 +00003954 fcntl(interactive_fd, F_SETFD, FD_CLOEXEC);
Denis Vlasenko4830fc52008-05-25 21:50:55 +00003955 set_misc_sighandler(SIG_IGN);
3956 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003957 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003958#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003959
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003960 if (argv[optind] == NULL) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00003961 opt = parse_and_run_file(stdin);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003962 } else {
3963 debug_printf("\nrunning script '%s'\n", argv[optind]);
3964 global_argv = argv + optind;
3965 global_argc = argc - optind;
3966 input = xfopen(argv[optind], "r");
Denis Vlasenko459a5ad2008-02-11 08:35:03 +00003967 fcntl(fileno(input), F_SETFD, FD_CLOEXEC);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003968 opt = parse_and_run_file(input);
Eric Andersen25f27032001-04-26 23:22:31 +00003969 }
Eric Andersen25f27032001-04-26 23:22:31 +00003970
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003971 final_return:
3972
Denis Vlasenko38f63192007-01-22 09:03:07 +00003973#if ENABLE_FEATURE_CLEAN_UP
Eric Andersenaeb44c42001-05-22 20:29:00 +00003974 fclose(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003975 if (cwd != bb_msg_unknown)
Eric Andersenaeb44c42001-05-22 20:29:00 +00003976 free((char*)cwd);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003977 cur_var = top_var->next;
3978 while (cur_var) {
3979 struct variable *tmp = cur_var;
3980 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00003981 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003982 cur_var = cur_var->next;
3983 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00003984 }
Eric Andersen25f27032001-04-26 23:22:31 +00003985#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003986 hush_exit(opt ? opt : last_return_code);
Eric Andersen25f27032001-04-26 23:22:31 +00003987}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00003988
3989
3990#if ENABLE_LASH
3991int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
3992int lash_main(int argc, char **argv)
3993{
3994 //bb_error_msg("lash is deprecated, please use hush instead");
3995 return hush_main(argc, argv);
3996}
3997#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003998
3999
4000/*
4001 * Built-ins
4002 */
4003static int builtin_true(char **argv ATTRIBUTE_UNUSED)
4004{
4005 return 0;
4006}
4007
4008static int builtin_test(char **argv)
4009{
4010 int argc = 0;
4011 while (*argv) {
4012 argc++;
4013 argv++;
4014 }
4015 return test_main(argc, argv - argc);
4016}
4017
4018static int builtin_echo(char **argv)
4019{
4020 int argc = 0;
4021 while (*argv) {
4022 argc++;
4023 argv++;
4024 }
4025 return echo_main(argc, argv - argc);
4026}
4027
4028static int builtin_eval(char **argv)
4029{
4030 int rcode = EXIT_SUCCESS;
4031
4032 if (argv[1]) {
4033 char *str = expand_strvec_to_string(argv + 1);
4034 parse_and_run_string(str, PARSEFLAG_EXIT_FROM_LOOP);
4035 free(str);
4036 rcode = last_return_code;
4037 }
4038 return rcode;
4039}
4040
4041static int builtin_cd(char **argv)
4042{
4043 const char *newdir;
4044 if (argv[1] == NULL) {
4045 // bash does nothing (exitcode 0) if HOME is ""; if it's unset,
4046 // bash says "bash: cd: HOME not set" and does nothing (exitcode 1)
4047 newdir = getenv("HOME") ? : "/";
4048 } else
4049 newdir = argv[1];
4050 if (chdir(newdir)) {
4051 printf("cd: %s: %s\n", newdir, strerror(errno));
4052 return EXIT_FAILURE;
4053 }
4054 set_cwd();
4055 return EXIT_SUCCESS;
4056}
4057
4058static int builtin_exec(char **argv)
4059{
4060 if (argv[1] == NULL)
4061 return EXIT_SUCCESS; /* bash does this */
4062 {
4063#if !BB_MMU
4064 char **ptrs2free = alloc_ptrs(argv);
4065#endif
4066// FIXME: if exec fails, bash does NOT exit! We do...
4067 pseudo_exec_argv(ptrs2free, argv + 1);
4068 /* never returns */
4069 }
4070}
4071
4072static int builtin_exit(char **argv)
4073{
4074// TODO: bash does it ONLY on top-level sh exit (+interacive only?)
4075 //puts("exit"); /* bash does it */
4076// TODO: warn if we have background jobs: "There are stopped jobs"
4077// On second consecutive 'exit', exit anyway.
4078 if (argv[1] == NULL)
4079 hush_exit(last_return_code);
4080 /* mimic bash: exit 123abc == exit 255 + error msg */
4081 xfunc_error_retval = 255;
4082 /* bash: exit -2 == exit 254, no error msg */
4083 hush_exit(xatoi(argv[1]) & 0xff);
4084}
4085
4086static int builtin_export(char **argv)
4087{
4088 const char *value;
4089 char *name = argv[1];
4090
4091 if (name == NULL) {
4092 // TODO:
4093 // ash emits: export VAR='VAL'
4094 // bash: declare -x VAR="VAL"
4095 // (both also escape as needed (quotes, $, etc))
4096 char **e = environ;
4097 if (e)
4098 while (*e)
4099 puts(*e++);
4100 return EXIT_SUCCESS;
4101 }
4102
4103 value = strchr(name, '=');
4104 if (!value) {
4105 /* They are exporting something without a =VALUE */
4106 struct variable *var;
4107
4108 var = get_local_var(name);
4109 if (var) {
4110 var->flg_export = 1;
4111 putenv(var->varstr);
4112 }
4113 /* bash does not return an error when trying to export
4114 * an undefined variable. Do likewise. */
4115 return EXIT_SUCCESS;
4116 }
4117
4118 set_local_var(xstrdup(name), 1);
4119 return EXIT_SUCCESS;
4120}
4121
4122#if ENABLE_HUSH_JOB
4123/* built-in 'fg' and 'bg' handler */
4124static int builtin_fg_bg(char **argv)
4125{
4126 int i, jobnum;
4127 struct pipe *pi;
4128
4129 if (!interactive_fd)
4130 return EXIT_FAILURE;
4131 /* If they gave us no args, assume they want the last backgrounded task */
4132 if (!argv[1]) {
4133 for (pi = job_list; pi; pi = pi->next) {
4134 if (pi->jobid == last_jobid) {
4135 goto found;
4136 }
4137 }
4138 bb_error_msg("%s: no current job", argv[0]);
4139 return EXIT_FAILURE;
4140 }
4141 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
4142 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
4143 return EXIT_FAILURE;
4144 }
4145 for (pi = job_list; pi; pi = pi->next) {
4146 if (pi->jobid == jobnum) {
4147 goto found;
4148 }
4149 }
4150 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
4151 return EXIT_FAILURE;
4152 found:
4153 // TODO: bash prints a string representation
4154 // of job being foregrounded (like "sleep 1 | cat")
4155 if (*argv[0] == 'f') {
4156 /* Put the job into the foreground. */
4157 tcsetpgrp(interactive_fd, pi->pgrp);
4158 }
4159
4160 /* Restart the processes in the job */
4161 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_progs, pi->pgrp);
4162 for (i = 0; i < pi->num_progs; i++) {
4163 debug_printf_jobs("reviving pid %d\n", pi->progs[i].pid);
4164 pi->progs[i].is_stopped = 0;
4165 }
4166 pi->stopped_progs = 0;
4167
4168 i = kill(- pi->pgrp, SIGCONT);
4169 if (i < 0) {
4170 if (errno == ESRCH) {
4171 delete_finished_bg_job(pi);
4172 return EXIT_SUCCESS;
4173 } else {
4174 bb_perror_msg("kill (SIGCONT)");
4175 }
4176 }
4177
4178 if (*argv[0] == 'f') {
4179 remove_bg_job(pi);
4180 return checkjobs_and_fg_shell(pi);
4181 }
4182 return EXIT_SUCCESS;
4183}
4184#endif
4185
4186#if ENABLE_HUSH_HELP
4187static int builtin_help(char **argv ATTRIBUTE_UNUSED)
4188{
4189 const struct built_in_command *x;
4190
4191 printf("\nBuilt-in commands:\n");
4192 printf("-------------------\n");
4193 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
4194 printf("%s\t%s\n", x->cmd, x->descr);
4195 }
4196 printf("\n\n");
4197 return EXIT_SUCCESS;
4198}
4199#endif
4200
4201#if ENABLE_HUSH_JOB
4202static int builtin_jobs(char **argv ATTRIBUTE_UNUSED)
4203{
4204 struct pipe *job;
4205 const char *status_string;
4206
4207 for (job = job_list; job; job = job->next) {
4208 if (job->running_progs == job->stopped_progs)
4209 status_string = "Stopped";
4210 else
4211 status_string = "Running";
4212
4213 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
4214 }
4215 return EXIT_SUCCESS;
4216}
4217#endif
4218
4219static int builtin_pwd(char **argv ATTRIBUTE_UNUSED)
4220{
4221 puts(set_cwd());
4222 return EXIT_SUCCESS;
4223}
4224
4225static int builtin_read(char **argv)
4226{
4227 char *string;
4228 const char *name = argv[1] ? argv[1] : "REPLY";
4229
4230 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
4231 return set_local_var(string, 0);
4232}
4233
4234/* built-in 'set [VAR=value]' handler */
4235static int builtin_set(char **argv)
4236{
4237 char *temp = argv[1];
4238 struct variable *e;
4239
4240 if (temp == NULL)
4241 for (e = top_var; e; e = e->next)
4242 puts(e->varstr);
4243 else
4244 set_local_var(xstrdup(temp), 0);
4245
4246 return EXIT_SUCCESS;
4247}
4248
4249static int builtin_shift(char **argv)
4250{
4251 int n = 1;
4252 if (argv[1]) {
4253 n = atoi(argv[1]);
4254 }
4255 if (n >= 0 && n < global_argc) {
4256 global_argv[n] = global_argv[0];
4257 global_argc -= n;
4258 global_argv += n;
4259 return EXIT_SUCCESS;
4260 }
4261 return EXIT_FAILURE;
4262}
4263
4264static int builtin_source(char **argv)
4265{
4266 FILE *input;
4267 int status;
4268
4269 if (argv[1] == NULL)
4270 return EXIT_FAILURE;
4271
4272 /* XXX search through $PATH is missing */
4273 input = fopen(argv[1], "r");
4274 if (!input) {
4275 bb_error_msg("cannot open '%s'", argv[1]);
4276 return EXIT_FAILURE;
4277 }
4278 close_on_exec_on(fileno(input));
4279
4280 /* Now run the file */
4281 /* XXX argv and argc are broken; need to save old global_argv
4282 * (pointer only is OK!) on this stack frame,
4283 * set global_argv=argv+1, recurse, and restore. */
4284 status = parse_and_run_file(input);
4285 fclose(input);
4286 return status;
4287}
4288
4289static int builtin_umask(char **argv)
4290{
4291 mode_t new_umask;
4292 const char *arg = argv[1];
4293 char *end;
4294 if (arg) {
4295 new_umask = strtoul(arg, &end, 8);
4296 if (*end != '\0' || end == arg) {
4297 return EXIT_FAILURE;
4298 }
4299 } else {
4300 new_umask = umask(0);
4301 printf("%.3o\n", (unsigned) new_umask);
4302 }
4303 umask(new_umask);
4304 return EXIT_SUCCESS;
4305}
4306
4307static int builtin_unset(char **argv)
4308{
4309 /* bash always returns true */
4310 unset_local_var(argv[1]);
4311 return EXIT_SUCCESS;
4312}