blob: 1c7cddd36c50a4e5d7fd3bcb0e8e8694eab0c9aa [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:
Eric Andersen25f27032001-04-26 23:22:31 +000023 * b_addchr() derived from similar w_addchar function in glibc-2.2
24 * 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
Eric Andersen25f27032001-04-26 23:22:31 +000026 * miscellaneous bugfixes from Matt Kraai
27 *
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 * $_
41 * ! negation operator for pipes
42 * &> and >& redirection of stdout+stderr
43 * Brace Expansion
44 * Tilde Expansion
45 * fancy forms of Parameter Expansion
Eric Andersen78a7c992001-05-15 16:30:25 +000046 * aliases
Eric Andersen25f27032001-04-26 23:22:31 +000047 * Arithmetic Expansion
48 * <(list) and >(list) Process Substitution
Eric Andersen83a2ae22001-05-07 17:59:25 +000049 * reserved words: case, esac, select, function
Eric Andersen25f27032001-04-26 23:22:31 +000050 * Here Documents ( << word )
51 * Functions
52 * Major bugs:
Denis Vlasenkob81b3df2007-04-28 16:48:04 +000053 * job handling woefully incomplete and buggy (improved --vda)
Eric Andersen25f27032001-04-26 23:22:31 +000054 * reserved word execution woefully incomplete and buggy
Eric Andersen25f27032001-04-26 23:22:31 +000055 * to-do:
Eric Andersen83a2ae22001-05-07 17:59:25 +000056 * port selected bugfixes from post-0.49 busybox lash - done?
57 * finish implementing reserved words: for, while, until, do, done
58 * change { and } from special chars to reserved words
59 * builtins: break, continue, eval, return, set, trap, ulimit
60 * test magic exec
Eric Andersen25f27032001-04-26 23:22:31 +000061 * handle children going into background
62 * clean up recognition of null pipes
Eric Andersen25f27032001-04-26 23:22:31 +000063 * check setting of global_argc and global_argv
64 * control-C handling, probably with longjmp
Eric Andersen25f27032001-04-26 23:22:31 +000065 * follow IFS rules more precisely, including update semantics
Eric Andersen25f27032001-04-26 23:22:31 +000066 * figure out what to do with backslash-newline
67 * explain why we use signal instead of sigaction
68 * propagate syntax errors, die on resource errors?
69 * continuation lines, both explicit and implicit - done?
70 * memory leak finding and plugging - done?
71 * more testing, especially quoting rules and redirection
Eric Andersen78a7c992001-05-15 16:30:25 +000072 * document how quoting rules not precisely followed for variable assignments
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +000073 * maybe change charmap[] to use 2-bit entries
Eric Andersen25f27032001-04-26 23:22:31 +000074 * (eventually) remove all the printf's
Eric Andersen25f27032001-04-26 23:22:31 +000075 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000076 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen25f27032001-04-26 23:22:31 +000077 */
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +000078
79#include "busybox.h"
Eric Andersen25f27032001-04-26 23:22:31 +000080#include <glob.h> /* glob, of course */
Eric Andersen25f27032001-04-26 23:22:31 +000081#include <getopt.h> /* should be pretty obvious */
Eric Andersen25f27032001-04-26 23:22:31 +000082/* #include <dmalloc.h> */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +000083extern char **environ; /* This is in <unistd.h>, but protected with __USE_GNU */
Denis Vlasenkod01ff132007-05-02 21:40:23 +000084
85
86/* If you comment out one of these below, it will be #defined later
87 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +000088#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +000089/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +000090#define debug_printf_parse(...) do {} while (0)
91#define debug_print_tree(a, b) do {} while (0)
92#define debug_printf_exec(...) do {} while (0)
93#define debug_printf_jobs(...) do {} while (0)
94#define debug_printf_expand(...) do {} while (0)
95#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +000096
97#ifndef debug_printf
98#define debug_printf(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +000099#endif
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000100
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000101#ifndef debug_printf_parse
102#define debug_printf_parse(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000103#endif
104
105#ifndef debug_printf_exec
106#define debug_printf_exec(...) fprintf(stderr, __VA_ARGS__)
107#endif
108
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000109#ifndef debug_printf_jobs
110#define debug_printf_jobs(...) fprintf(stderr, __VA_ARGS__)
111#define DEBUG_SHELL_JOBS 1
112#endif
113
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000114#ifndef debug_printf_expand
115#define debug_printf_expand(...) fprintf(stderr, __VA_ARGS__)
116#define DEBUG_EXPAND 1
117#endif
118
Denis Vlasenko170435c2007-05-23 13:01:10 +0000119/* Keep unconditionally on for now */
120#define ENABLE_HUSH_DEBUG 1
121
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000122#ifndef debug_printf_clean
123/* broken, of course, but OK for testing */
124static const char *indenter(int i)
125{
126 static const char blanks[] = " ";
127 return &blanks[sizeof(blanks) - i - 1];
128}
129#define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000130#define DEBUG_CLEAN 1
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000131#endif
132
Eric Andersen25f27032001-04-26 23:22:31 +0000133
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000134#if !ENABLE_HUSH_INTERACTIVE
135#undef ENABLE_FEATURE_EDITING
136#define ENABLE_FEATURE_EDITING 0
137#undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
138#define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
139#endif
"Robert P. J. Day"f3501602006-07-01 12:19:39 +0000140
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +0000141#define SPECIAL_VAR_SYMBOL 3
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000142
143#define PARSEFLAG_EXIT_FROM_LOOP 1
144#define PARSEFLAG_SEMICOLON (1 << 1) /* symbol ';' is special for parser */
145#define PARSEFLAG_REPARSING (1 << 2) /* >= 2nd pass */
Eric Andersen25f27032001-04-26 23:22:31 +0000146
147typedef enum {
148 REDIRECT_INPUT = 1,
149 REDIRECT_OVERWRITE = 2,
150 REDIRECT_APPEND = 3,
151 REDIRECT_HEREIS = 4,
152 REDIRECT_IO = 5
153} redir_type;
154
155/* The descrip member of this structure is only used to make debugging
156 * output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000157static const struct {
158 int mode;
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000159 signed char default_fd;
160 char descrip[3];
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000161} redir_table[] = {
Eric Andersen25f27032001-04-26 23:22:31 +0000162 { 0, 0, "()" },
163 { O_RDONLY, 0, "<" },
164 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
165 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
166 { O_RDONLY, -1, "<<" },
167 { O_RDWR, 1, "<>" }
168};
169
170typedef enum {
171 PIPE_SEQ = 1,
172 PIPE_AND = 2,
173 PIPE_OR = 3,
174 PIPE_BG = 4,
175} pipe_style;
176
177/* might eventually control execution */
178typedef enum {
179 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000180#if ENABLE_HUSH_IF
Eric Andersen25f27032001-04-26 23:22:31 +0000181 RES_IF = 1,
182 RES_THEN = 2,
183 RES_ELIF = 3,
184 RES_ELSE = 4,
185 RES_FI = 5,
Denis Vlasenko06810332007-05-21 23:30:54 +0000186#endif
187#if ENABLE_HUSH_LOOPS
Eric Andersen25f27032001-04-26 23:22:31 +0000188 RES_FOR = 6,
189 RES_WHILE = 7,
190 RES_UNTIL = 8,
191 RES_DO = 9,
192 RES_DONE = 10,
Denis Vlasenko06810332007-05-21 23:30:54 +0000193 RES_IN = 11,
194#endif
195 RES_XXXX = 12,
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000196 RES_SNTX = 13
Eric Andersen25f27032001-04-26 23:22:31 +0000197} reserved_style;
Denis Vlasenko5f786c22007-04-20 08:35:45 +0000198enum {
199 FLAG_END = (1 << RES_NONE ),
Denis Vlasenko06810332007-05-21 23:30:54 +0000200#if ENABLE_HUSH_IF
Denis Vlasenko5f786c22007-04-20 08:35:45 +0000201 FLAG_IF = (1 << RES_IF ),
202 FLAG_THEN = (1 << RES_THEN ),
203 FLAG_ELIF = (1 << RES_ELIF ),
204 FLAG_ELSE = (1 << RES_ELSE ),
205 FLAG_FI = (1 << RES_FI ),
Denis Vlasenko06810332007-05-21 23:30:54 +0000206#endif
207#if ENABLE_HUSH_LOOPS
Denis Vlasenko5f786c22007-04-20 08:35:45 +0000208 FLAG_FOR = (1 << RES_FOR ),
209 FLAG_WHILE = (1 << RES_WHILE),
210 FLAG_UNTIL = (1 << RES_UNTIL),
211 FLAG_DO = (1 << RES_DO ),
212 FLAG_DONE = (1 << RES_DONE ),
213 FLAG_IN = (1 << RES_IN ),
Denis Vlasenko06810332007-05-21 23:30:54 +0000214#endif
Denis Vlasenko5f786c22007-04-20 08:35:45 +0000215 FLAG_START = (1 << RES_XXXX ),
216};
Eric Andersen25f27032001-04-26 23:22:31 +0000217
218/* This holds pointers to the various results of parsing */
219struct p_context {
220 struct child_prog *child;
221 struct pipe *list_head;
222 struct pipe *pipe;
223 struct redir_struct *pending_redirect;
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000224 smallint res_w;
225 smallint parse_type; /* bitmask of PARSEFLAG_xxx, defines type of parser : ";$" common or special symbol */
226 int old_flag; /* bitmask of FLAG_xxx, for figuring out valid reserved words */
Eric Andersen25f27032001-04-26 23:22:31 +0000227 struct p_context *stack;
228 /* How about quoting status? */
229};
230
231struct redir_struct {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000232 struct redir_struct *next; /* pointer to the next redirect in the list */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000233 redir_type type; /* type of redirection */
234 int fd; /* file descriptor being redirected */
235 int dup; /* -1, or file descriptor being duplicated */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000236 glob_t word; /* *word.gl_pathv is the filename */
Eric Andersen25f27032001-04-26 23:22:31 +0000237};
238
239struct child_prog {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000240 pid_t pid; /* 0 if exited */
241 char **argv; /* program name and arguments */
242 struct pipe *group; /* if non-NULL, first in group or subshell */
Denis Vlasenko262d7652007-05-20 21:52:49 +0000243 smallint subshell; /* flag, non-zero if group must be forked */
244 smallint is_stopped; /* is the program currently running? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000245 struct redir_struct *redirects; /* I/O redirections */
246 glob_t glob_result; /* result of parameter globbing */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000247 struct pipe *family; /* pointer back to the child's parent pipe */
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000248 //sp counting seems to be broken... so commented out, grep for '//sp:'
249 //sp: int sp; /* number of SPECIAL_VAR_SYMBOL */
Denis Vlasenko262d7652007-05-20 21:52:49 +0000250 //seems to be unused, grep for '//pt:'
251 //pt: int parse_type;
Eric Andersen25f27032001-04-26 23:22:31 +0000252};
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000253/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
254 * and on execution these are substituted with their values.
255 * Substitution can make _several_ words out of one argv[n]!
256 * Example: argv[0]=='.^C*^C.' here: echo .$*.
257 */
Eric Andersen25f27032001-04-26 23:22:31 +0000258
259struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000260 struct pipe *next;
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000261 int num_progs; /* total number of programs in job */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000262 int running_progs; /* number of programs running (not exited) */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000263 int stopped_progs; /* number of programs alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000264#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000265 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000266 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000267 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000268#endif
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000269 char *cmdbuf; /* buffer various argv's point into */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000270 struct child_prog *progs; /* array of commands in pipe */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000271 int job_context; /* bitmask defining current context */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000272 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
273 smallint res_word; /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000274};
275
Eric Andersen25f27032001-04-26 23:22:31 +0000276struct close_me {
Eric Andersen25f27032001-04-26 23:22:31 +0000277 struct close_me *next;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000278 int fd;
Eric Andersen25f27032001-04-26 23:22:31 +0000279};
280
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000281/* On program start, environ points to initial environment.
282 * putenv adds new pointers into it, unsetenv removes them.
283 * Neither of these (de)allocates the strings.
284 * setenv allocates new strings in malloc space and does putenv,
285 * and thus setenv is unusable (leaky) for shell's purposes */
286#define setenv(...) setenv_is_leaky_dont_use()
287struct variable {
288 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000289 char *varstr; /* points to "name=" portion */
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000290 int max_len; /* if > 0, name is part of initial env; else name is malloced */
291 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000292 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000293};
294
Eric Andersen25f27032001-04-26 23:22:31 +0000295typedef struct {
296 char *data;
297 int length;
298 int maxlen;
299 int quote;
300 int nonnull;
301} o_string;
302#define NULL_O_STRING {NULL,0,0,0,0}
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000303/* used for initialization: o_string foo = NULL_O_STRING; */
Eric Andersen25f27032001-04-26 23:22:31 +0000304
305/* I can almost use ordinary FILE *. Is open_memstream() universally
306 * available? Where is it documented? */
307struct in_str {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +0000308 const char *p;
309 /* eof_flag=1: last char in ->p is really an EOF */
310 char eof_flag; /* meaningless if ->p == NULL */
311 char peek_buf[2];
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000312#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000313 smallint promptme;
314 smallint promptmode; /* 0: PS1, 1: PS2 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000315#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000316 FILE *file;
317 int (*get) (struct in_str *);
318 int (*peek) (struct in_str *);
319};
320#define b_getch(input) ((input)->get(input))
321#define b_peek(input) ((input)->peek(input))
322
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000323enum {
324 CHAR_ORDINARY = 0,
325 CHAR_ORDINARY_IF_QUOTED = 1, /* example: *, # */
326 CHAR_IFS = 2, /* treated as ordinary if quoted */
327 CHAR_SPECIAL = 3, /* example: $ */
Eric Andersen25f27032001-04-26 23:22:31 +0000328};
329
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000330#define HUSH_VER_STR "0.02"
331
332static const char version_str[] = "HUSH_VERSION="HUSH_VER_STR;
333
334static const struct variable const_shell_ver = {
335 .next = NULL,
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000336 .varstr = (char*)version_str,
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000337 .max_len = 1, /* 0 can provoke free(name) */
338 .flg_export = 1,
339 .flg_read_only = 1,
340};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000341
342/* "Globals" within this file */
343
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000344/* Sorted roughly by size (smaller offsets == smaller code) */
345struct globals {
346#if ENABLE_HUSH_INTERACTIVE
347 /* 'interactive_fd' is a fd# open to ctty, if we have one
348 * _AND_ if we decided to act interactively */
349 int interactive_fd;
350 const char *PS1;
351 const char *PS2;
352#endif
353#if ENABLE_FEATURE_EDITING
354 line_input_t *line_input_state;
355#endif
356#if ENABLE_HUSH_JOB
357 int run_list_level;
358 pid_t saved_task_pgrp;
359 pid_t saved_tty_pgrp;
360 int last_jobid;
361 struct pipe *job_list;
362 struct pipe *toplevel_list;
363 smallint ctrl_z_flag;
364#endif
365 smallint fake_mode;
366 /* these three support $?, $#, and $1 */
367 char **global_argv;
368 int global_argc;
369 int last_return_code;
370 const char *ifs;
371 struct close_me *close_me_head;
372 const char *cwd;
373 unsigned last_bg_pid;
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000374 struct variable *top_var; /* = &shell_ver (both are set in main()) */
375 struct variable shell_ver; /* = const_shell_ver */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000376#if ENABLE_FEATURE_SH_STANDALONE
377 struct nofork_save_area nofork_save;
378#endif
379#if ENABLE_HUSH_JOB
380 sigjmp_buf toplevel_jb;
381#endif
382 unsigned char charmap[256];
383 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
384};
385
386#define G (*ptr_to_globals)
387
388#if !ENABLE_HUSH_INTERACTIVE
389enum { interactive_fd = 0 };
390#endif
391#if !ENABLE_HUSH_JOB
392enum { run_list_level = 0 };
393#endif
394
395#if ENABLE_HUSH_INTERACTIVE
396#define interactive_fd (G.interactive_fd )
397#define PS1 (G.PS1 )
398#define PS2 (G.PS2 )
399#endif
400#if ENABLE_FEATURE_EDITING
401#define line_input_state (G.line_input_state)
402#endif
403#if ENABLE_HUSH_JOB
404#define run_list_level (G.run_list_level )
405#define saved_task_pgrp (G.saved_task_pgrp )
406#define saved_tty_pgrp (G.saved_tty_pgrp )
407#define last_jobid (G.last_jobid )
408#define job_list (G.job_list )
409#define toplevel_list (G.toplevel_list )
410#define toplevel_jb (G.toplevel_jb )
411#define ctrl_z_flag (G.ctrl_z_flag )
412#endif /* JOB */
413#define global_argv (G.global_argv )
414#define global_argc (G.global_argc )
415#define last_return_code (G.last_return_code)
416#define ifs (G.ifs )
417#define fake_mode (G.fake_mode )
418#define close_me_head (G.close_me_head )
419#define cwd (G.cwd )
420#define last_bg_pid (G.last_bg_pid )
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000421#define top_var (G.top_var )
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000422#define shell_ver (G.shell_ver )
423#if ENABLE_FEATURE_SH_STANDALONE
424#define nofork_save (G.nofork_save )
425#endif
426#if ENABLE_HUSH_JOB
427#define toplevel_jb (G.toplevel_jb )
428#endif
429#define charmap (G.charmap )
430#define user_input_buf (G.user_input_buf )
431
432
433#define B_CHUNK 100
434#define B_NOSPAC 1
435#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
436
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000437#if 1
438/* Normal */
439static void syntax(const char *msg)
440{
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000441 /* Was using fancy stuff:
442 * (interactive_fd ? bb_error_msg : bb_error_msg_and_die)(...params...)
443 * but it SEGVs. ?! Oh well... explicit temp ptr works around that */
444 void (*fp)(const char *s, ...);
445
446 fp = (interactive_fd ? bb_error_msg : bb_error_msg_and_die);
447 fp(msg ? "%s: %s" : "syntax error", "syntax error", msg);
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000448}
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000449
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000450#else
451/* Debug */
452static void syntax_lineno(int line)
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000453{
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000454 void (*fp)(const char *s, ...);
455
456 fp = (interactive_fd ? bb_error_msg : bb_error_msg_and_die);
457 fp("syntax error hush.c:%d", line);
Eric Andersen25f27032001-04-26 23:22:31 +0000458}
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000459#define syntax(str) syntax_lineno(__LINE__)
460#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000461
462/* Index of subroutines: */
463/* function prototypes for builtins */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000464static int builtin_cd(char **argv);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000465static int builtin_eval(char **argv);
466static int builtin_exec(char **argv);
467static int builtin_exit(char **argv);
468static int builtin_export(char **argv);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000469#if ENABLE_HUSH_JOB
Denis Vlasenko1359da62007-04-21 23:27:30 +0000470static int builtin_fg_bg(char **argv);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000471static int builtin_jobs(char **argv);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000472#endif
Denis Vlasenko06810332007-05-21 23:30:54 +0000473#if ENABLE_HUSH_HELP
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000474static int builtin_help(char **argv);
Denis Vlasenko06810332007-05-21 23:30:54 +0000475#endif
Denis Vlasenko1359da62007-04-21 23:27:30 +0000476static int builtin_pwd(char **argv);
477static int builtin_read(char **argv);
478static int builtin_set(char **argv);
479static int builtin_shift(char **argv);
480static int builtin_source(char **argv);
481static int builtin_umask(char **argv);
482static int builtin_unset(char **argv);
Denis Vlasenko06810332007-05-21 23:30:54 +0000483//static int builtin_not_written(char **argv);
Eric Andersen25f27032001-04-26 23:22:31 +0000484/* o_string manipulation: */
485static int b_check_space(o_string *o, int len);
486static int b_addchr(o_string *o, int ch);
487static void b_reset(o_string *o);
488static int b_addqchr(o_string *o, int ch, int quote);
Eric Andersen25f27032001-04-26 23:22:31 +0000489/* in_str manipulations: */
490static int static_get(struct in_str *i);
491static int static_peek(struct in_str *i);
492static int file_get(struct in_str *i);
493static int file_peek(struct in_str *i);
494static void setup_file_in_str(struct in_str *i, FILE *f);
495static void setup_string_in_str(struct in_str *i, const char *s);
496/* close_me manipulations: */
497static void mark_open(int fd);
498static void mark_closed(int fd);
Eric Anderseneaecbf32001-10-31 10:41:31 +0000499static void close_all(void);
Eric Andersen25f27032001-04-26 23:22:31 +0000500/* "run" the final data structures: */
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000501#if !defined(DEBUG_CLEAN)
502#define free_pipe_list(head, indent) free_pipe_list(head)
503#define free_pipe(pi, indent) free_pipe(pi)
504#endif
Eric Andersenbf7df042001-05-23 22:18:35 +0000505static int free_pipe_list(struct pipe *head, int indent);
506static int free_pipe(struct pipe *pi, int indent);
Eric Andersen25f27032001-04-26 23:22:31 +0000507/* really run the final data structures: */
508static int setup_redirects(struct child_prog *prog, int squirrel[]);
Eric Andersen25f27032001-04-26 23:22:31 +0000509static int run_list_real(struct pipe *pi);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000510static void pseudo_exec_argv(char **argv) ATTRIBUTE_NORETURN;
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +0000511static void pseudo_exec(struct child_prog *child) ATTRIBUTE_NORETURN;
Eric Andersen25f27032001-04-26 23:22:31 +0000512static int run_pipe_real(struct pipe *pi);
513/* extended glob support: */
514static int globhack(const char *src, int flags, glob_t *pglob);
515static int glob_needed(const char *s);
516static int xglob(o_string *dest, int flags, glob_t *pglob);
Eric Andersen78a7c992001-05-15 16:30:25 +0000517/* variable assignment: */
Eric Andersen78a7c992001-05-15 16:30:25 +0000518static int is_assignment(const char *s);
Eric Andersen25f27032001-04-26 23:22:31 +0000519/* data structure manipulation: */
520static int setup_redirect(struct p_context *ctx, int fd, redir_type style, struct in_str *input);
521static void initialize_context(struct p_context *ctx);
522static int done_word(o_string *dest, struct p_context *ctx);
523static int done_command(struct p_context *ctx);
524static int done_pipe(struct p_context *ctx, pipe_style type);
525/* primary string parsing: */
526static int redirect_dup_num(struct in_str *input);
527static int redirect_opt_num(o_string *o);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +0000528#if ENABLE_HUSH_TICK
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000529static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, const char *subst_end);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +0000530#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000531static int parse_group(o_string *dest, struct p_context *ctx, struct in_str *input, int ch);
Denis Vlasenko15d78fb2007-01-30 22:28:21 +0000532static const char *lookup_param(const char *src);
Eric Andersen25f27032001-04-26 23:22:31 +0000533static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000534static 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 +0000535/* setup: */
Denis Vlasenko170435c2007-05-23 13:01:10 +0000536static int parse_and_run_stream(struct in_str *inp, int parse_flag);
537static int parse_and_run_string(const char *s, int parse_flag);
538static int parse_and_run_file(FILE *f);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000539/* job management: */
Eric Andersenc798b072001-06-22 06:23:03 +0000540static int checkjobs(struct pipe* fg_pipe);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000541#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +0000542static int checkjobs_and_fg_shell(struct pipe* fg_pipe);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000543static void insert_bg_job(struct pipe *pi);
544static void remove_bg_job(struct pipe *pi);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000545static void delete_finished_bg_job(struct pipe *pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000546#else
547int checkjobs_and_fg_shell(struct pipe* fg_pipe); /* never called */
548#endif
Eric Andersenf72f5622001-05-15 23:21:41 +0000549/* local variable support */
Denis Vlasenko170435c2007-05-23 13:01:10 +0000550static char **expand_strvec_to_strvec(char **argv);
551/* used for eval */
552static char *expand_strvec_to_string(char **argv);
Denis Vlasenkob6a741f2007-05-17 14:38:17 +0000553/* used for expansion of right hand of assignments */
Denis Vlasenko170435c2007-05-23 13:01:10 +0000554static char *expand_string_to_string(const char *str);
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000555static struct variable *get_local_var(const char *name);
556static int set_local_var(char *str, int flg_export);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +0000557static void unset_local_var(const char *name);
Eric Andersen25f27032001-04-26 23:22:31 +0000558
559/* Table of built-in functions. They can be forked or not, depending on
560 * context: within pipes, they fork. As simple commands, they do not.
561 * When used in non-forking context, they can change global variables
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000562 * in the parent shell process. If forked, of course they cannot.
Eric Andersen25f27032001-04-26 23:22:31 +0000563 * For example, 'unset foo | whatever' will parse and run, but foo will
564 * still be set at the end. */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000565struct built_in_command {
566 const char *cmd; /* name */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000567 int (*function) (char **argv); /* function ptr */
Denis Vlasenko06810332007-05-21 23:30:54 +0000568#if ENABLE_HUSH_HELP
569 const char *descr; /* description */
570#define BLTIN(cmd, func, help) { cmd, func, help }
571#else
572#define BLTIN(cmd, func, help) { cmd, func }
573#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000574};
575
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +0000576static const struct built_in_command bltins[] = {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000577#if ENABLE_HUSH_JOB
Denis Vlasenko06810332007-05-21 23:30:54 +0000578 BLTIN("bg" , builtin_fg_bg, "Resume a job in the background"),
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000579#endif
Denis Vlasenko06810332007-05-21 23:30:54 +0000580// BLTIN("break" , builtin_not_written, "Exit for, while or until loop"),
581 BLTIN("cd" , builtin_cd, "Change working directory"),
582// BLTIN("continue", builtin_not_written, "Continue for, while or until loop"),
583 BLTIN("eval" , builtin_eval, "Construct and run shell command"),
584 BLTIN("exec" , builtin_exec, "Exec command, replacing this shell with the exec'd process"),
585 BLTIN("exit" , builtin_exit, "Exit from shell"),
586 BLTIN("export", builtin_export, "Set environment variable"),
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000587#if ENABLE_HUSH_JOB
Denis Vlasenko06810332007-05-21 23:30:54 +0000588 BLTIN("fg" , builtin_fg_bg, "Bring job into the foreground"),
589 BLTIN("jobs" , builtin_jobs, "Lists the active jobs"),
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000590#endif
Denis Vlasenko06810332007-05-21 23:30:54 +0000591// TODO: remove pwd? we have it as an applet...
592 BLTIN("pwd" , builtin_pwd, "Print current directory"),
593 BLTIN("read" , builtin_read, "Input environment variable"),
594// BLTIN("return", builtin_not_written, "Return from a function"),
595 BLTIN("set" , builtin_set, "Set/unset shell local variables"),
596 BLTIN("shift" , builtin_shift, "Shift positional parameters"),
597// BLTIN("trap" , builtin_not_written, "Trap signals"),
598// BLTIN("ulimit", builtin_not_written, "Controls resource limits"),
599 BLTIN("umask" , builtin_umask, "Sets file creation mask"),
600 BLTIN("unset" , builtin_unset, "Unset environment variable"),
601 BLTIN("." , builtin_source, "Source-in and run commands in a file"),
602#if ENABLE_HUSH_HELP
603 BLTIN("help" , builtin_help, "List shell built-in commands"),
604#endif
605 BLTIN(NULL, NULL, NULL)
Eric Andersen25f27032001-04-26 23:22:31 +0000606};
607
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000608#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000609
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000610/* move to libbb? */
611static void signal_SA_RESTART(int sig, void (*handler)(int))
612{
613 struct sigaction sa;
614 sa.sa_handler = handler;
615 sa.sa_flags = SA_RESTART;
616 sigemptyset(&sa.sa_mask);
617 sigaction(sig, &sa, NULL);
618}
619
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000620/* Signals are grouped, we handle them in batches */
621static void set_fatal_sighandler(void (*handler)(int))
622{
623 signal(SIGILL , handler);
624 signal(SIGTRAP, handler);
625 signal(SIGABRT, handler);
626 signal(SIGFPE , handler);
627 signal(SIGBUS , handler);
628 signal(SIGSEGV, handler);
629 /* bash 3.2 seems to handle these just like 'fatal' ones */
630 signal(SIGHUP , handler);
631 signal(SIGPIPE, handler);
632 signal(SIGALRM, handler);
633}
634static void set_jobctrl_sighandler(void (*handler)(int))
635{
636 signal(SIGTSTP, handler);
637 signal(SIGTTIN, handler);
638 signal(SIGTTOU, handler);
639}
640static void set_misc_sighandler(void (*handler)(int))
641{
642 signal(SIGINT , handler);
643 signal(SIGQUIT, handler);
644 signal(SIGTERM, handler);
645}
646/* SIGCHLD is special and handled separately */
647
648static void set_every_sighandler(void (*handler)(int))
649{
650 set_fatal_sighandler(handler);
651 set_jobctrl_sighandler(handler);
652 set_misc_sighandler(handler);
653 signal(SIGCHLD, handler);
654}
655
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +0000656static void handler_ctrl_c(int sig)
657{
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000658 debug_printf_jobs("got sig %d\n", sig);
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +0000659// as usual we can have all kinds of nasty problems with leaked malloc data here
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000660 siglongjmp(toplevel_jb, 1);
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +0000661}
662
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000663static void handler_ctrl_z(int sig)
664{
665 pid_t pid;
666
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000667 debug_printf_jobs("got tty sig %d in pid %d\n", sig, getpid());
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000668 pid = fork();
Denis Vlasenkoc2990322007-05-16 12:57:12 +0000669 if (pid < 0) /* can't fork. Pretend there was no ctrl-Z */
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000670 return;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000671 ctrl_z_flag = 1;
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000672 if (!pid) { /* child */
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000673 setpgrp();
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000674 debug_printf_jobs("set pgrp for child %d ok\n", getpid());
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000675 set_every_sighandler(SIG_DFL);
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000676 raise(SIGTSTP); /* resend TSTP so that child will be stopped */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000677 debug_printf_jobs("returning in child\n");
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000678 /* return to nofork, it will eventually exit now,
679 * not return back to shell */
680 return;
681 }
682 /* parent */
683 /* finish filling up pipe info */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000684 toplevel_list->pgrp = pid; /* child is in its own pgrp */
685 toplevel_list->progs[0].pid = pid;
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000686 /* parent needs to longjmp out of running nofork.
687 * we will "return" exitcode 0, with child put in background */
688// as usual we can have all kinds of nasty problems with leaked malloc data here
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000689 debug_printf_jobs("siglongjmp in parent\n");
690 siglongjmp(toplevel_jb, 1);
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000691}
692
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000693/* Restores tty foreground process group, and exits.
694 * May be called as signal handler for fatal signal
695 * (will faithfully resend signal to itself, producing correct exit state)
696 * or called directly with -EXITCODE.
697 * We also call it if xfunc is exiting. */
698static void sigexit(int sig) ATTRIBUTE_NORETURN;
699static void sigexit(int sig)
700{
701 sigset_t block_all;
702
703 /* Disable all signals: job control, SIGPIPE, etc. */
704 sigfillset(&block_all);
705 sigprocmask(SIG_SETMASK, &block_all, NULL);
706
Denis Vlasenko87cb2db2007-04-21 10:00:01 +0000707 if (interactive_fd)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000708 tcsetpgrp(interactive_fd, saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000709
710 /* Not a signal, just exit */
711 if (sig <= 0)
712 _exit(- sig);
713
714 /* Enable only this sig and kill ourself with it */
715 signal(sig, SIG_DFL);
716 sigdelset(&block_all, sig);
717 sigprocmask(SIG_SETMASK, &block_all, NULL);
718 raise(sig);
719 _exit(1); /* Should not reach it */
720}
721
722/* Restores tty foreground process group, and exits. */
723static void hush_exit(int exitcode) ATTRIBUTE_NORETURN;
724static void hush_exit(int exitcode)
725{
726 fflush(NULL); /* flush all streams */
727 sigexit(- (exitcode & 0xff));
728}
729
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000730#else /* !JOB */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000731
732#define set_fatal_sighandler(handler) ((void)0)
733#define set_jobctrl_sighandler(handler) ((void)0)
734#define set_misc_sighandler(handler) ((void)0)
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000735#define hush_exit(e) exit(e)
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000736
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000737#endif /* JOB */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000738
739
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000740static const char *set_cwd(void)
741{
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000742 if (cwd == bb_msg_unknown)
Denis Vlasenko7cced6e2007-04-12 17:08:53 +0000743 cwd = NULL; /* xrealloc_getcwd_or_warn(arg) calls free(arg)! */
Denis Vlasenko6ca04442007-02-11 16:19:28 +0000744 cwd = xrealloc_getcwd_or_warn((char *)cwd);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000745 if (!cwd)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000746 cwd = bb_msg_unknown;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000747 return cwd;
748}
749
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000750/* built-in 'eval' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000751static int builtin_eval(char **argv)
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000752{
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000753 int rcode = EXIT_SUCCESS;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000754
Denis Vlasenko1359da62007-04-21 23:27:30 +0000755 if (argv[1]) {
Denis Vlasenko170435c2007-05-23 13:01:10 +0000756 char *str = expand_strvec_to_string(argv + 1);
757 parse_and_run_string(str, PARSEFLAG_EXIT_FROM_LOOP |
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000758 PARSEFLAG_SEMICOLON);
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000759 free(str);
760 rcode = last_return_code;
761 }
762 return rcode;
763}
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000764
Eric Andersen25f27032001-04-26 23:22:31 +0000765/* built-in 'cd <path>' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000766static int builtin_cd(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000767{
Denis Vlasenko170435c2007-05-23 13:01:10 +0000768 const char *newdir;
Denis Vlasenko1359da62007-04-21 23:27:30 +0000769 if (argv[1] == NULL)
Denis Vlasenko170435c2007-05-23 13:01:10 +0000770 newdir = getenv("HOME") ? : "/";
Eric Andersen25f27032001-04-26 23:22:31 +0000771 else
Denis Vlasenko1359da62007-04-21 23:27:30 +0000772 newdir = argv[1];
Eric Andersen25f27032001-04-26 23:22:31 +0000773 if (chdir(newdir)) {
774 printf("cd: %s: %s\n", newdir, strerror(errno));
775 return EXIT_FAILURE;
776 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000777 set_cwd();
Eric Andersen25f27032001-04-26 23:22:31 +0000778 return EXIT_SUCCESS;
779}
780
Eric Andersen25f27032001-04-26 23:22:31 +0000781/* built-in 'exec' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000782static int builtin_exec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000783{
Denis Vlasenko1359da62007-04-21 23:27:30 +0000784 if (argv[1] == NULL)
Eric Andersen25f27032001-04-26 23:22:31 +0000785 return EXIT_SUCCESS; /* Really? */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000786 pseudo_exec_argv(argv + 1);
Eric Andersen25f27032001-04-26 23:22:31 +0000787 /* never returns */
788}
789
790/* built-in 'exit' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000791static int builtin_exit(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000792{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000793// TODO: bash does it ONLY on top-level sh exit (+interacive only?)
794 //puts("exit"); /* bash does it */
Denis Vlasenkof2fffd02007-05-02 23:39:04 +0000795// TODO: warn if we have background jobs: "There are stopped jobs"
796// On second consecutive 'exit', exit anyway.
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000797
Denis Vlasenko1359da62007-04-21 23:27:30 +0000798 if (argv[1] == NULL)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000799 hush_exit(last_return_code);
Denis Vlasenko5f786c22007-04-20 08:35:45 +0000800 /* mimic bash: exit 123abc == exit 255 + error msg */
801 xfunc_error_retval = 255;
802 /* bash: exit -2 == exit 254, no error msg */
Denis Vlasenkof2fffd02007-05-02 23:39:04 +0000803 hush_exit(xatoi(argv[1]) & 0xff);
Eric Andersen25f27032001-04-26 23:22:31 +0000804}
805
806/* built-in 'export VAR=value' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000807static int builtin_export(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000808{
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000809 const char *value;
Denis Vlasenko1359da62007-04-21 23:27:30 +0000810 char *name = argv[1];
Eric Andersen25f27032001-04-26 23:22:31 +0000811
Eric Andersenf72f5622001-05-15 23:21:41 +0000812 if (name == NULL) {
Denis Vlasenkof2fffd02007-05-02 23:39:04 +0000813 // TODO:
814 // ash emits: export VAR='VAL'
815 // bash: declare -x VAR="VAL"
816 // (both also escape as needed (quotes, $, etc))
817 char **e = environ;
818 if (e)
819 while (*e)
820 puts(*e++);
821 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +0000822 }
Eric Andersenf72f5622001-05-15 23:21:41 +0000823
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000824 value = strchr(name, '=');
825 if (!value) {
826 /* They are exporting something without a =VALUE */
827 struct variable *var;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000828
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000829 var = get_local_var(name);
830 if (var) {
831 var->flg_export = 1;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000832 putenv(var->varstr);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000833 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000834 /* bash does not return an error when trying to export
835 * an undefined variable. Do likewise. */
836 return EXIT_SUCCESS;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000837 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000838
839 set_local_var(xstrdup(name), 1);
840 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +0000841}
842
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000843#if ENABLE_HUSH_JOB
Eric Andersen25f27032001-04-26 23:22:31 +0000844/* built-in 'fg' and 'bg' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000845static int builtin_fg_bg(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000846{
Eric Andersen0fcd4472001-05-02 20:12:03 +0000847 int i, jobnum;
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000848 struct pipe *pi;
Eric Andersen25f27032001-04-26 23:22:31 +0000849
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000850 if (!interactive_fd)
Eric Andersenc798b072001-06-22 06:23:03 +0000851 return EXIT_FAILURE;
Eric Andersen0fcd4472001-05-02 20:12:03 +0000852 /* If they gave us no args, assume they want the last backgrounded task */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000853 if (!argv[1]) {
Eric Andersenc798b072001-06-22 06:23:03 +0000854 for (pi = job_list; pi; pi = pi->next) {
855 if (pi->jobid == last_jobid) {
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000856 goto found;
Eric Andersen0fcd4472001-05-02 20:12:03 +0000857 }
858 }
Denis Vlasenko1359da62007-04-21 23:27:30 +0000859 bb_error_msg("%s: no current job", argv[0]);
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000860 return EXIT_FAILURE;
861 }
Denis Vlasenko1359da62007-04-21 23:27:30 +0000862 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
863 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000864 return EXIT_FAILURE;
865 }
866 for (pi = job_list; pi; pi = pi->next) {
867 if (pi->jobid == jobnum) {
868 goto found;
Eric Andersen25f27032001-04-26 23:22:31 +0000869 }
870 }
Denis Vlasenko1359da62007-04-21 23:27:30 +0000871 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000872 return EXIT_FAILURE;
873 found:
Denis Vlasenko52881e92007-04-21 13:42:52 +0000874 // TODO: bash prints a string representation
875 // of job being foregrounded (like "sleep 1 | cat")
Denis Vlasenko1359da62007-04-21 23:27:30 +0000876 if (*argv[0] == 'f') {
Eric Andersen028b65b2001-06-28 01:10:11 +0000877 /* Put the job into the foreground. */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000878 tcsetpgrp(interactive_fd, pi->pgrp);
Eric Andersen25f27032001-04-26 23:22:31 +0000879 }
880
881 /* Restart the processes in the job */
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000882 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_progs, pi->pgrp);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000883 for (i = 0; i < pi->num_progs; i++) {
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000884 debug_printf_jobs("reviving pid %d\n", pi->progs[i].pid);
Eric Andersen0fcd4472001-05-02 20:12:03 +0000885 pi->progs[i].is_stopped = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +0000886 }
887 pi->stopped_progs = 0;
Eric Andersen25f27032001-04-26 23:22:31 +0000888
Denis Vlasenkobb81c582007-01-30 22:32:09 +0000889 i = kill(- pi->pgrp, SIGCONT);
890 if (i < 0) {
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000891 if (errno == ESRCH) {
Denis Vlasenko1359da62007-04-21 23:27:30 +0000892 delete_finished_bg_job(pi);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000893 return EXIT_SUCCESS;
Eric Andersen028b65b2001-06-28 01:10:11 +0000894 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000895 bb_perror_msg("kill (SIGCONT)");
Eric Andersen028b65b2001-06-28 01:10:11 +0000896 }
897 }
Eric Andersen25f27032001-04-26 23:22:31 +0000898
Denis Vlasenko1359da62007-04-21 23:27:30 +0000899 if (*argv[0] == 'f') {
900 remove_bg_job(pi);
Denis Vlasenko52881e92007-04-21 13:42:52 +0000901 return checkjobs_and_fg_shell(pi);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000902 }
Eric Andersen25f27032001-04-26 23:22:31 +0000903 return EXIT_SUCCESS;
904}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000905#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000906
907/* built-in 'help' handler */
Denis Vlasenko06810332007-05-21 23:30:54 +0000908#if ENABLE_HUSH_HELP
Denis Vlasenko1359da62007-04-21 23:27:30 +0000909static int builtin_help(char **argv ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +0000910{
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +0000911 const struct built_in_command *x;
Eric Andersen25f27032001-04-26 23:22:31 +0000912
913 printf("\nBuilt-in commands:\n");
914 printf("-------------------\n");
915 for (x = bltins; x->cmd; x++) {
Eric Andersen25f27032001-04-26 23:22:31 +0000916 printf("%s\t%s\n", x->cmd, x->descr);
917 }
918 printf("\n\n");
919 return EXIT_SUCCESS;
920}
Denis Vlasenko06810332007-05-21 23:30:54 +0000921#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000922
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000923#if ENABLE_HUSH_JOB
Eric Andersen25f27032001-04-26 23:22:31 +0000924/* built-in 'jobs' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000925static int builtin_jobs(char **argv ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +0000926{
927 struct pipe *job;
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000928 const char *status_string;
Eric Andersen25f27032001-04-26 23:22:31 +0000929
Eric Andersenc798b072001-06-22 06:23:03 +0000930 for (job = job_list; job; job = job->next) {
Eric Andersen25f27032001-04-26 23:22:31 +0000931 if (job->running_progs == job->stopped_progs)
932 status_string = "Stopped";
933 else
934 status_string = "Running";
Eric Andersen52a97ca2001-06-22 06:49:26 +0000935
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000936 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
Eric Andersen25f27032001-04-26 23:22:31 +0000937 }
938 return EXIT_SUCCESS;
939}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000940#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000941
Eric Andersen25f27032001-04-26 23:22:31 +0000942/* built-in 'pwd' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000943static int builtin_pwd(char **argv ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +0000944{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000945 puts(set_cwd());
Eric Andersen25f27032001-04-26 23:22:31 +0000946 return EXIT_SUCCESS;
947}
948
949/* built-in 'read VAR' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000950static int builtin_read(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000951{
Denis Vlasenko3e7b0e62007-05-16 12:52:15 +0000952 char string[BUFSIZ];
953 char *p;
954 const char *name = argv[1] ? argv[1] : "REPLY";
955 int name_len = strlen(name);
Eric Andersen25f27032001-04-26 23:22:31 +0000956
Denis Vlasenko3e7b0e62007-05-16 12:52:15 +0000957 if (name_len >= sizeof(string) - 2)
958 return EXIT_FAILURE;
959 strcpy(string, name);
960 p = string + name_len;
961 *p++ = '=';
962 *p = '\0'; /* In case stdin has only EOF */
963 /* read string. name_len+1 chars are already used by 'name=' */
964 fgets(p, sizeof(string) - 1 - name_len, stdin);
965 chomp(p);
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000966 return set_local_var(xstrdup(string), 0);
Eric Andersen25f27032001-04-26 23:22:31 +0000967}
968
Denis Vlasenko3e7b0e62007-05-16 12:52:15 +0000969/* built-in 'set [VAR=value]' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000970static int builtin_set(char **argv)
Eric Andersenf72f5622001-05-15 23:21:41 +0000971{
Denis Vlasenko1359da62007-04-21 23:27:30 +0000972 char *temp = argv[1];
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000973 struct variable *e;
Eric Andersenf72f5622001-05-15 23:21:41 +0000974
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000975 if (temp == NULL)
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000976 for (e = top_var; e; e = e->next)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000977 puts(e->varstr);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000978 else
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000979 set_local_var(xstrdup(temp), 0);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000980
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000981 return EXIT_SUCCESS;
Eric Andersenf72f5622001-05-15 23:21:41 +0000982}
983
984
Eric Andersen25f27032001-04-26 23:22:31 +0000985/* Built-in 'shift' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000986static int builtin_shift(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000987{
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000988 int n = 1;
Denis Vlasenko1359da62007-04-21 23:27:30 +0000989 if (argv[1]) {
990 n = atoi(argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +0000991 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000992 if (n >= 0 && n < global_argc) {
Denis Vlasenko004baba2007-05-20 22:22:18 +0000993 global_argv[n] = global_argv[0];
Eric Andersen25f27032001-04-26 23:22:31 +0000994 global_argc -= n;
995 global_argv += n;
996 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +0000997 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +0000998 return EXIT_FAILURE;
Eric Andersen25f27032001-04-26 23:22:31 +0000999}
1000
1001/* Built-in '.' handler (read-in and execute commands from file) */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001002static int builtin_source(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001003{
1004 FILE *input;
1005 int status;
1006
Denis Vlasenko1359da62007-04-21 23:27:30 +00001007 if (argv[1] == NULL)
Eric Andersen25f27032001-04-26 23:22:31 +00001008 return EXIT_FAILURE;
1009
1010 /* XXX search through $PATH is missing */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001011 input = fopen(argv[1], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00001012 if (!input) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001013 bb_error_msg("cannot open '%s'", argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +00001014 return EXIT_FAILURE;
1015 }
1016
1017 /* Now run the file */
1018 /* XXX argv and argc are broken; need to save old global_argv
1019 * (pointer only is OK!) on this stack frame,
Denis Vlasenko1359da62007-04-21 23:27:30 +00001020 * set global_argv=argv+1, recurse, and restore. */
Eric Andersen25f27032001-04-26 23:22:31 +00001021 mark_open(fileno(input));
Denis Vlasenko170435c2007-05-23 13:01:10 +00001022 status = parse_and_run_file(input);
Eric Andersen25f27032001-04-26 23:22:31 +00001023 mark_closed(fileno(input));
1024 fclose(input);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001025 return status;
Eric Andersen25f27032001-04-26 23:22:31 +00001026}
1027
Denis Vlasenko1359da62007-04-21 23:27:30 +00001028static int builtin_umask(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001029{
Eric Andersen83a2ae22001-05-07 17:59:25 +00001030 mode_t new_umask;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001031 const char *arg = argv[1];
Eric Andersen83a2ae22001-05-07 17:59:25 +00001032 char *end;
1033 if (arg) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001034 new_umask = strtoul(arg, &end, 8);
1035 if (*end != '\0' || end == arg) {
Eric Andersen83a2ae22001-05-07 17:59:25 +00001036 return EXIT_FAILURE;
1037 }
1038 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001039 new_umask = umask(0);
1040 printf("%.3o\n", (unsigned) new_umask);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001041 }
1042 umask(new_umask);
1043 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +00001044}
1045
1046/* built-in 'unset VAR' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001047static int builtin_unset(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001048{
Denis Vlasenko3e7b0e62007-05-16 12:52:15 +00001049 /* bash always returns true */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001050 unset_local_var(argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +00001051 return EXIT_SUCCESS;
1052}
1053
Denis Vlasenko06810332007-05-21 23:30:54 +00001054//static int builtin_not_written(char **argv)
1055//{
1056// printf("builtin_%s not written\n", argv[0]);
1057// return EXIT_FAILURE;
1058//}
Eric Andersen83a2ae22001-05-07 17:59:25 +00001059
Eric Andersen25f27032001-04-26 23:22:31 +00001060static int b_check_space(o_string *o, int len)
1061{
1062 /* It would be easy to drop a more restrictive policy
1063 * in here, such as setting a maximum string length */
1064 if (o->length + len > o->maxlen) {
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001065 /* assert(data == NULL || o->maxlen != 0); */
Denis Vlasenkoef36ead2007-05-02 15:34:47 +00001066 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001067 o->data = xrealloc(o->data, 1 + o->maxlen);
Eric Andersen25f27032001-04-26 23:22:31 +00001068 }
1069 return o->data == NULL;
1070}
1071
1072static int b_addchr(o_string *o, int ch)
1073{
Denis Vlasenko831dcc42007-05-16 15:05:36 +00001074 debug_printf("b_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001075 if (b_check_space(o, 1))
1076 return B_NOSPAC;
Eric Andersen25f27032001-04-26 23:22:31 +00001077 o->data[o->length] = ch;
1078 o->length++;
1079 o->data[o->length] = '\0';
1080 return 0;
1081}
1082
1083static void b_reset(o_string *o)
1084{
1085 o->length = 0;
1086 o->nonnull = 0;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001087 if (o->data != NULL)
1088 *o->data = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001089}
1090
1091static void b_free(o_string *o)
1092{
1093 b_reset(o);
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001094 free(o->data);
Eric Andersen25f27032001-04-26 23:22:31 +00001095 o->data = NULL;
1096 o->maxlen = 0;
1097}
1098
1099/* My analysis of quoting semantics tells me that state information
1100 * is associated with a destination, not a source.
1101 */
1102static int b_addqchr(o_string *o, int ch, int quote)
1103{
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00001104 if (quote && strchr("*?[\\", ch)) {
Eric Andersen25f27032001-04-26 23:22:31 +00001105 int rc;
1106 rc = b_addchr(o, '\\');
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001107 if (rc)
1108 return rc;
Eric Andersen25f27032001-04-26 23:22:31 +00001109 }
1110 return b_addchr(o, ch);
1111}
1112
Eric Andersen25f27032001-04-26 23:22:31 +00001113static int static_get(struct in_str *i)
1114{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001115 int ch = *i->p++;
1116 if (ch == '\0') return EOF;
Eric Andersen25f27032001-04-26 23:22:31 +00001117 return ch;
1118}
1119
1120static int static_peek(struct in_str *i)
1121{
1122 return *i->p;
1123}
1124
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001125#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001126#if ENABLE_FEATURE_EDITING
Rob Landley88621d72006-08-29 19:41:06 +00001127static void cmdedit_set_initial_prompt(void)
Eric Andersen25f27032001-04-26 23:22:31 +00001128{
Denis Vlasenko38f63192007-01-22 09:03:07 +00001129#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +00001130 PS1 = NULL;
1131#else
1132 PS1 = getenv("PS1");
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001133 if (PS1 == NULL)
Eric Andersen25f27032001-04-26 23:22:31 +00001134 PS1 = "\\w \\$ ";
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001135#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001136}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001137#endif /* EDITING */
Eric Andersen25f27032001-04-26 23:22:31 +00001138
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001139static const char* setup_prompt_string(int promptmode)
Eric Andersen25f27032001-04-26 23:22:31 +00001140{
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001141 const char *prompt_str;
1142 debug_printf("setup_prompt_string %d ", promptmode);
Denis Vlasenko38f63192007-01-22 09:03:07 +00001143#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +00001144 /* Set up the prompt */
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001145 if (promptmode == 0) { /* PS1 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001146 free((char*)PS1);
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001147 PS1 = xasprintf("%s %c ", cwd, (geteuid() != 0) ? '$' : '#');
1148 prompt_str = PS1;
Eric Andersen25f27032001-04-26 23:22:31 +00001149 } else {
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001150 prompt_str = PS2;
Eric Andersen25f27032001-04-26 23:22:31 +00001151 }
1152#else
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001153 prompt_str = (promptmode == 0) ? PS1 : PS2;
Eric Andersenaf44a0e2001-04-27 07:26:12 +00001154#endif
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001155 debug_printf("result '%s'\n", prompt_str);
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001156 return prompt_str;
Eric Andersen25f27032001-04-26 23:22:31 +00001157}
1158
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001159static void get_user_input(struct in_str *i)
Eric Andersen25f27032001-04-26 23:22:31 +00001160{
Denis Vlasenko0937be52007-04-28 16:47:08 +00001161 int r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001162 const char *prompt_str;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001163
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001164 prompt_str = setup_prompt_string(i->promptmode);
Denis Vlasenko38f63192007-01-22 09:03:07 +00001165#if ENABLE_FEATURE_EDITING
Denis Vlasenko170435c2007-05-23 13:01:10 +00001166 /* Enable command line editing only while a command line
1167 * is actually being read; otherwise, we'll end up bequeathing
1168 * atexit() handlers and other unwanted stuff to our
1169 * child processes (rob@sysgo.de) */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001170 r = read_line_input(prompt_str, user_input_buf, BUFSIZ-1, line_input_state);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001171 i->eof_flag = (r < 0);
1172 if (i->eof_flag) { /* EOF/error detected */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001173 user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1174 user_input_buf[1] = '\0';
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001175 }
Eric Andersen25f27032001-04-26 23:22:31 +00001176#else
1177 fputs(prompt_str, stdout);
1178 fflush(stdout);
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001179 user_input_buf[0] = r = fgetc(i->file);
1180 /*user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001181 i->eof_flag = (r == EOF);
Eric Andersen25f27032001-04-26 23:22:31 +00001182#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001183 i->p = user_input_buf;
Eric Andersen25f27032001-04-26 23:22:31 +00001184}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001185#endif /* INTERACTIVE */
Eric Andersen25f27032001-04-26 23:22:31 +00001186
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001187/* This is the magic location that prints prompts
Eric Andersen25f27032001-04-26 23:22:31 +00001188 * and gets data back from the user */
1189static int file_get(struct in_str *i)
1190{
1191 int ch;
1192
Eric Andersen25f27032001-04-26 23:22:31 +00001193 /* If there is data waiting, eat it up */
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001194 if (i->p && *i->p) {
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001195#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001196 take_cached:
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001197#endif
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001198 ch = *i->p++;
1199 if (i->eof_flag && !*i->p)
1200 ch = EOF;
Eric Andersen25f27032001-04-26 23:22:31 +00001201 } else {
1202 /* need to double check i->file because we might be doing something
1203 * more complicated by now, like sourcing or substituting. */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001204#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001205 if (interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001206 do {
1207 get_user_input(i);
1208 } while (!*i->p); /* need non-empty line */
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001209 i->promptmode = 1; /* PS2 */
1210 i->promptme = 0;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001211 goto take_cached;
Eric Andersen25f27032001-04-26 23:22:31 +00001212 }
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001213#endif
1214 ch = fgetc(i->file);
Eric Andersen25f27032001-04-26 23:22:31 +00001215 }
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001216 debug_printf("file_get: got a '%c' %d\n", ch, ch);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001217#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001218 if (ch == '\n')
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001219 i->promptme = 1;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001220#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001221 return ch;
1222}
1223
1224/* All the callers guarantee this routine will never be
1225 * used right after a newline, so prompting is not needed.
1226 */
1227static int file_peek(struct in_str *i)
1228{
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00001229 int ch;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001230 if (i->p && *i->p) {
1231 if (i->eof_flag && !i->p[1])
1232 return EOF;
1233 return *i->p;
Eric Andersen25f27032001-04-26 23:22:31 +00001234 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00001235 ch = fgetc(i->file);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001236 i->eof_flag = (ch == EOF);
1237 i->peek_buf[0] = ch;
1238 i->peek_buf[1] = '\0';
1239 i->p = i->peek_buf;
1240 debug_printf("file_peek: got a '%c' %d\n", *i->p, *i->p);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00001241 return ch;
Eric Andersen25f27032001-04-26 23:22:31 +00001242}
1243
1244static void setup_file_in_str(struct in_str *i, FILE *f)
1245{
1246 i->peek = file_peek;
1247 i->get = file_get;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001248#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001249 i->promptme = 1;
1250 i->promptmode = 0; /* PS1 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001251#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001252 i->file = f;
1253 i->p = NULL;
1254}
1255
1256static void setup_string_in_str(struct in_str *i, const char *s)
1257{
1258 i->peek = static_peek;
1259 i->get = static_get;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001260#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001261 i->promptme = 1;
1262 i->promptmode = 0; /* PS1 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001263#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001264 i->p = s;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001265 i->eof_flag = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00001266}
1267
1268static void mark_open(int fd)
1269{
1270 struct close_me *new = xmalloc(sizeof(struct close_me));
1271 new->fd = fd;
1272 new->next = close_me_head;
1273 close_me_head = new;
1274}
1275
1276static void mark_closed(int fd)
1277{
1278 struct close_me *tmp;
1279 if (close_me_head == NULL || close_me_head->fd != fd)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001280 bb_error_msg_and_die("corrupt close_me");
Eric Andersen25f27032001-04-26 23:22:31 +00001281 tmp = close_me_head;
1282 close_me_head = close_me_head->next;
1283 free(tmp);
1284}
1285
Eric Anderseneaecbf32001-10-31 10:41:31 +00001286static void close_all(void)
Eric Andersen25f27032001-04-26 23:22:31 +00001287{
1288 struct close_me *c;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001289 for (c = close_me_head; c; c = c->next) {
Eric Andersen25f27032001-04-26 23:22:31 +00001290 close(c->fd);
1291 }
1292 close_me_head = NULL;
1293}
1294
1295/* squirrel != NULL means we squirrel away copies of stdin, stdout,
1296 * and stderr if they are redirected. */
1297static int setup_redirects(struct child_prog *prog, int squirrel[])
1298{
1299 int openfd, mode;
1300 struct redir_struct *redir;
1301
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001302 for (redir = prog->redirects; redir; redir = redir->next) {
Eric Andersen817e73c2001-06-06 17:56:09 +00001303 if (redir->dup == -1 && redir->word.gl_pathv == NULL) {
1304 /* something went wrong in the parse. Pretend it didn't happen */
1305 continue;
1306 }
Eric Andersen25f27032001-04-26 23:22:31 +00001307 if (redir->dup == -1) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001308 mode = redir_table[redir->type].mode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001309 openfd = open_or_warn(redir->word.gl_pathv[0], mode);
Eric Andersen25f27032001-04-26 23:22:31 +00001310 if (openfd < 0) {
1311 /* this could get lost if stderr has been redirected, but
1312 bash and ash both lose it as well (though zsh doesn't!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001313 return 1;
1314 }
1315 } else {
1316 openfd = redir->dup;
1317 }
1318
1319 if (openfd != redir->fd) {
1320 if (squirrel && redir->fd < 3) {
1321 squirrel[redir->fd] = dup(redir->fd);
1322 }
Eric Andersen83a2ae22001-05-07 17:59:25 +00001323 if (openfd == -3) {
1324 close(openfd);
1325 } else {
1326 dup2(openfd, redir->fd);
Matt Kraaic616e532001-06-05 16:50:08 +00001327 if (redir->dup == -1)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001328 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001329 }
Eric Andersen25f27032001-04-26 23:22:31 +00001330 }
1331 }
1332 return 0;
1333}
1334
1335static void restore_redirects(int squirrel[])
1336{
1337 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001338 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00001339 fd = squirrel[i];
1340 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00001341 /* We simply die on error */
1342 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00001343 }
1344 }
1345}
1346
Eric Andersenada18ff2001-05-21 16:18:22 +00001347/* never returns */
Eric Andersen94ac2442001-05-22 19:05:18 +00001348/* XXX no exit() here. If you don't exec, use _exit instead.
1349 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001350 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001351static void pseudo_exec_argv(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001352{
Eric Andersen78a7c992001-05-15 16:30:25 +00001353 int i, rcode;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001354 char *p;
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00001355 const struct built_in_command *x;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001356
Denis Vlasenko1359da62007-04-21 23:27:30 +00001357 for (i = 0; is_assignment(argv[i]); i++) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001358 debug_printf_exec("pid %d environment modification: %s\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001359 getpid(), argv[i]);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001360// FIXME: vfork case??
Denis Vlasenko170435c2007-05-23 13:01:10 +00001361 p = expand_string_to_string(argv[i]);
1362 putenv(p);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001363 }
1364 argv += i;
1365 /* If a variable is assigned in a forest, and nobody listens,
1366 * was it ever really set?
1367 */
1368 if (argv[0] == NULL) {
1369 _exit(EXIT_SUCCESS);
1370 }
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001371
Denis Vlasenko170435c2007-05-23 13:01:10 +00001372 argv = expand_strvec_to_strvec(argv);
Denis Vlasenko764d59d2007-05-14 16:23:23 +00001373
Denis Vlasenko1359da62007-04-21 23:27:30 +00001374 /*
1375 * Check if the command matches any of the builtins.
1376 * Depending on context, this might be redundant. But it's
1377 * easier to waste a few CPU cycles than it is to figure out
1378 * if this is one of those cases.
1379 */
1380 for (x = bltins; x->cmd; x++) {
1381 if (strcmp(argv[0], x->cmd) == 0) {
Denis Vlasenko764d59d2007-05-14 16:23:23 +00001382 debug_printf_exec("running builtin '%s'\n", argv[0]);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001383 rcode = x->function(argv);
1384 fflush(stdout);
1385 _exit(rcode);
Eric Andersen94ac2442001-05-22 19:05:18 +00001386 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001387 }
Eric Andersen78a7c992001-05-15 16:30:25 +00001388
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001389 /* Check if the command matches any busybox applets */
Denis Vlasenko80d14be2007-04-10 23:03:30 +00001390#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001391 if (strchr(argv[0], '/') == NULL) {
1392 const struct bb_applet *a = find_applet_by_name(argv[0]);
1393 if (a) {
1394 if (a->noexec) {
1395 current_applet = a;
1396 debug_printf_exec("running applet '%s'\n", argv[0]);
1397// is it ok that run_current_applet_and_exit() does exit(), not _exit()?
1398 run_current_applet_and_exit(argv);
1399 }
1400 /* re-exec ourselves with the new arguments */
1401 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
1402 execvp(CONFIG_BUSYBOX_EXEC_PATH, argv);
1403 /* If they called chroot or otherwise made the binary no longer
1404 * executable, fall through */
1405 }
1406 }
Eric Andersenaac75e52001-04-30 18:18:45 +00001407#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001408
1409 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001410 execvp(argv[0], argv);
1411 bb_perror_msg("cannot exec '%s'", argv[0]);
1412 _exit(1);
1413}
1414
1415static void pseudo_exec(struct child_prog *child)
1416{
Denis Vlasenkof2fffd02007-05-02 23:39:04 +00001417// FIXME: buggy wrt NOMMU! Must not modify any global data
1418// until it does exec/_exit, but currently it does.
Denis Vlasenko1359da62007-04-21 23:27:30 +00001419 int rcode;
1420
1421 if (child->argv) {
1422 pseudo_exec_argv(child->argv);
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001423 }
1424
1425 if (child->group) {
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001426 // FIXME: do not modify globals! Think vfork!
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001427#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001428 debug_printf_exec("pseudo_exec: setting interactive_fd=0\n");
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001429 interactive_fd = 0; /* crucial!!!! */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001430#endif
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001431 debug_printf_exec("pseudo_exec: run_list_real\n");
Eric Andersen25f27032001-04-26 23:22:31 +00001432 rcode = run_list_real(child->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00001433 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00001434 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00001435 _exit(rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001436 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001437
1438 /* Can happen. See what bash does with ">foo" by itself. */
1439 debug_printf("trying to pseudo_exec null command\n");
1440 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00001441}
1442
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001443#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001444static const char *get_cmdtext(struct pipe *pi)
1445{
1446 char **argv;
1447 char *p;
1448 int len;
1449
1450 /* This is subtle. ->cmdtext is created only on first backgrounding.
1451 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001452 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001453 if (pi->cmdtext)
1454 return pi->cmdtext;
1455 argv = pi->progs[0].argv;
1456 if (!argv || !argv[0])
1457 return (pi->cmdtext = xzalloc(1));
1458
1459 len = 0;
1460 do len += strlen(*argv) + 1; while (*++argv);
1461 pi->cmdtext = p = xmalloc(len);
1462 argv = pi->progs[0].argv;
1463 do {
1464 len = strlen(*argv);
1465 memcpy(p, *argv, len);
1466 p += len;
1467 *p++ = ' ';
1468 } while (*++argv);
1469 p[-1] = '\0';
1470 return pi->cmdtext;
1471}
1472
Eric Andersenbafd94f2001-05-02 16:11:59 +00001473static void insert_bg_job(struct pipe *pi)
1474{
1475 struct pipe *thejob;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001476 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001477
1478 /* Linear search for the ID of the job to use */
1479 pi->jobid = 1;
Eric Andersenc798b072001-06-22 06:23:03 +00001480 for (thejob = job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001481 if (thejob->jobid >= pi->jobid)
1482 pi->jobid = thejob->jobid + 1;
1483
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001484 /* Add thejob to the list of running jobs */
Eric Andersenc798b072001-06-22 06:23:03 +00001485 if (!job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001486 thejob = job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001487 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001488 for (thejob = job_list; thejob->next; thejob = thejob->next)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001489 continue;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001490 thejob->next = xmalloc(sizeof(*thejob));
1491 thejob = thejob->next;
1492 }
1493
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001494 /* Physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00001495 memcpy(thejob, pi, sizeof(struct pipe));
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001496 thejob->progs = xzalloc(sizeof(pi->progs[0]) * pi->num_progs);
1497 /* We cannot copy entire pi->progs[] vector! Double free()s will happen */
1498 for (i = 0; i < pi->num_progs; i++) {
1499// TODO: do we really need to have so many fields which are just dead weight
1500// at execution stage?
1501 thejob->progs[i].pid = pi->progs[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001502 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001503 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00001504 thejob->next = NULL;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001505 thejob->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001506
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001507 /* We don't wait for background thejobs to return -- append it
Eric Andersenbafd94f2001-05-02 16:11:59 +00001508 to the list of backgrounded thejobs and leave it alone */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001509 printf("[%d] %d %s\n", thejob->jobid, thejob->progs[0].pid, thejob->cmdtext);
Eric Andersen1a6d39b2001-05-08 05:11:54 +00001510 last_bg_pid = thejob->progs[0].pid;
Eric Andersenc798b072001-06-22 06:23:03 +00001511 last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001512}
1513
Eric Andersenbafd94f2001-05-02 16:11:59 +00001514static void remove_bg_job(struct pipe *pi)
1515{
1516 struct pipe *prev_pipe;
1517
Eric Andersenc798b072001-06-22 06:23:03 +00001518 if (pi == job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001519 job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001520 } else {
Eric Andersenc798b072001-06-22 06:23:03 +00001521 prev_pipe = job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001522 while (prev_pipe->next != pi)
1523 prev_pipe = prev_pipe->next;
1524 prev_pipe->next = pi->next;
1525 }
Eric Andersen028b65b2001-06-28 01:10:11 +00001526 if (job_list)
1527 last_jobid = job_list->jobid;
1528 else
1529 last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001530}
Eric Andersen028b65b2001-06-28 01:10:11 +00001531
Denis Vlasenko1359da62007-04-21 23:27:30 +00001532/* remove a backgrounded job */
1533static void delete_finished_bg_job(struct pipe *pi)
1534{
1535 remove_bg_job(pi);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001536 pi->stopped_progs = 0;
Eric Andersenbf7df042001-05-23 22:18:35 +00001537 free_pipe(pi, 0);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001538 free(pi);
1539}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001540#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001541
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001542/* Checks to see if any processes have exited -- if they
Eric Andersenbafd94f2001-05-02 16:11:59 +00001543 have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00001544static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001545{
Eric Andersenc798b072001-06-22 06:23:03 +00001546 int attributes;
1547 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001548#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00001549 int prognum = 0;
1550 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001551#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001552 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001553 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001554
Eric Andersenc798b072001-06-22 06:23:03 +00001555 attributes = WUNTRACED;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001556 if (fg_pipe == NULL) {
Eric Andersenc798b072001-06-22 06:23:03 +00001557 attributes |= WNOHANG;
1558 }
1559
Denis Vlasenko1359da62007-04-21 23:27:30 +00001560/* Do we do this right?
1561 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001562 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00001563 * [3]+ Stopped sleep 20 | false
1564 * bash-3.00# echo $?
1565 * 1 <========== bg pipe is not fully done, but exitcode is already known!
1566 */
1567
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001568//FIXME: non-interactive bash does not continue even if all processes in fg pipe
1569//are stopped. Testcase: "cat | cat" in a script (not on command line)
1570// + killall -STOP cat
1571
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001572 wait_more:
Eric Andersenc798b072001-06-22 06:23:03 +00001573 while ((childpid = waitpid(-1, &status, attributes)) > 0) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001574 const int dead = WIFEXITED(status) || WIFSIGNALED(status);
1575
1576#ifdef DEBUG_SHELL_JOBS
1577 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001578 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001579 childpid, WSTOPSIG(status), WEXITSTATUS(status));
1580 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001581 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001582 childpid, WTERMSIG(status), WEXITSTATUS(status));
1583 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001584 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001585 childpid, WEXITSTATUS(status));
1586#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001587 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00001588 if (fg_pipe) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001589 int i;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001590 for (i = 0; i < fg_pipe->num_progs; i++) {
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001591 debug_printf_jobs("check pid %d\n", fg_pipe->progs[i].pid);
Eric Andersenc798b072001-06-22 06:23:03 +00001592 if (fg_pipe->progs[i].pid == childpid) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001593 /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001594 if (dead) {
1595 fg_pipe->progs[i].pid = 0;
1596 fg_pipe->running_progs--;
1597 if (i == fg_pipe->num_progs-1)
1598 /* last process gives overall exitstatus */
1599 rcode = WEXITSTATUS(status);
1600 } else {
1601 fg_pipe->progs[i].is_stopped = 1;
1602 fg_pipe->stopped_progs++;
1603 }
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001604 debug_printf_jobs("fg_pipe: running_progs %d stopped_progs %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001605 fg_pipe->running_progs, fg_pipe->stopped_progs);
1606 if (fg_pipe->running_progs - fg_pipe->stopped_progs <= 0) {
1607 /* All processes in fg pipe have exited/stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001608#if ENABLE_HUSH_JOB
Denis Vlasenko1359da62007-04-21 23:27:30 +00001609 if (fg_pipe->running_progs)
1610 insert_bg_job(fg_pipe);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001611#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001612 return rcode;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001613 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001614 /* There are still running processes in the fg pipe */
1615 goto wait_more;
Eric Andersenc798b072001-06-22 06:23:03 +00001616 }
1617 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001618 /* fall through to searching process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00001619 }
1620
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001621#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001622 /* We asked to wait for bg or orphaned children */
1623 /* No need to remember exitcode in this case */
Eric Andersenc798b072001-06-22 06:23:03 +00001624 for (pi = job_list; pi; pi = pi->next) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00001625 prognum = 0;
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001626 while (prognum < pi->num_progs) {
1627 if (pi->progs[prognum].pid == childpid)
1628 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00001629 prognum++;
1630 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00001631 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001632#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001633
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001634 /* Happens when shell is used as init process (init=/bin/sh) */
1635 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001636 goto wait_more;
Eric Andersenaeb44c42001-05-22 20:29:00 +00001637
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001638#if ENABLE_HUSH_JOB
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001639 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00001640 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00001641 /* child exited */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001642 pi->progs[prognum].pid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001643 pi->running_progs--;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001644 if (!pi->running_progs) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001645 printf(JOB_STATUS_FORMAT, pi->jobid,
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001646 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001647 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001648 }
1649 } else {
1650 /* child stopped */
1651 pi->stopped_progs++;
1652 pi->progs[prognum].is_stopped = 1;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001653 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001654#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001655 }
1656
Denis Vlasenko1359da62007-04-21 23:27:30 +00001657 /* wait found no children or failed */
1658
1659 if (childpid && errno != ECHILD)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001660 bb_perror_msg("waitpid");
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001661 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00001662}
1663
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001664#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00001665static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
1666{
1667 pid_t p;
1668 int rcode = checkjobs(fg_pipe);
1669 /* Job finished, move the shell to the foreground */
Denis Vlasenko170435c2007-05-23 13:01:10 +00001670 p = getpgid(0); /* pgid of our process */
1671 debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
Denis Vlasenko52881e92007-04-21 13:42:52 +00001672 if (tcsetpgrp(interactive_fd, p) && errno != ENOTTY)
1673 bb_perror_msg("tcsetpgrp-4a");
1674 return rcode;
1675}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001676#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00001677
Eric Andersen25f27032001-04-26 23:22:31 +00001678/* run_pipe_real() starts all the jobs, but doesn't wait for anything
Eric Andersenc798b072001-06-22 06:23:03 +00001679 * to finish. See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00001680 *
1681 * return code is normally -1, when the caller has to wait for children
1682 * to finish to determine the exit status of the pipe. If the pipe
1683 * is a simple builtin command, however, the action is done by the
1684 * time run_pipe_real returns, and the exit code is provided as the
1685 * return value.
1686 *
1687 * The input of the pipe is always stdin, the output is always
1688 * stdout. The outpipe[] mechanism in BusyBox-0.48 lash is bogus,
1689 * because it tries to avoid running the command substitution in
1690 * subshell, when that is in fact necessary. The subshell process
1691 * now has its stdout directed to the input of the appropriate pipe,
1692 * so this routine is noticeably simpler.
Denis Vlasenko170435c2007-05-23 13:01:10 +00001693 *
1694 * Returns -1 only if started some children. IOW: we have to
1695 * mask out retvals of builtins etc with 0xff!
Eric Andersen25f27032001-04-26 23:22:31 +00001696 */
1697static int run_pipe_real(struct pipe *pi)
1698{
1699 int i;
1700 int nextin, nextout;
1701 int pipefds[2]; /* pipefds[0] is for reading */
Rob Landley53702e52006-07-19 21:43:53 +00001702 struct child_prog *child;
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00001703 const struct built_in_command *x;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001704 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001705 /* it is not always needed, but we aim to smaller code */
1706 int squirrel[] = { -1, -1, -1 };
1707 int rcode;
Denis Vlasenko52881e92007-04-21 13:42:52 +00001708 const int single_fg = (pi->num_progs == 1 && pi->followup != PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00001709
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001710 debug_printf_exec("run_pipe_real start: single_fg=%d\n", single_fg);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00001711
Eric Andersen25f27032001-04-26 23:22:31 +00001712 nextin = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001713#if ENABLE_HUSH_JOB
Eric Andersenada18ff2001-05-21 16:18:22 +00001714 pi->pgrp = -1;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001715#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001716 pi->running_progs = 1;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001717 pi->stopped_progs = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00001718
1719 /* Check if this is a simple builtin (not part of a pipe).
1720 * Builtins within pipes have to fork anyway, and are handled in
1721 * pseudo_exec. "echo foo | read bar" doesn't work on bash, either.
1722 */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001723 child = &(pi->progs[0]);
Denis Vlasenko52881e92007-04-21 13:42:52 +00001724 if (single_fg && child->group && child->subshell == 0) {
Eric Andersen04407e52001-06-07 16:42:05 +00001725 debug_printf("non-subshell grouping\n");
1726 setup_redirects(child, squirrel);
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001727 debug_printf_exec(": run_list_real\n");
Eric Andersen04407e52001-06-07 16:42:05 +00001728 rcode = run_list_real(child->group);
1729 restore_redirects(squirrel);
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001730 debug_printf_exec("run_pipe_real return %d\n", rcode);
Denis Vlasenko170435c2007-05-23 13:01:10 +00001731 return rcode; // do we need to add '... & 0xff' ?
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001732 }
1733
Denis Vlasenko1359da62007-04-21 23:27:30 +00001734 if (single_fg && child->argv != NULL) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001735 char **argv_expanded;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001736 char **argv = child->argv;
1737
1738 for (i = 0; is_assignment(argv[i]); i++)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001739 continue;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001740 if (i != 0 && argv[i] == NULL) {
Eric Andersen78a7c992001-05-15 16:30:25 +00001741 /* assignments, but no command: set the local environment */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001742 for (i = 0; argv[i] != NULL; i++) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00001743 debug_printf("local environment set: %s\n", argv[i]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00001744 p = expand_string_to_string(argv[i]);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00001745 set_local_var(p, 0);
Eric Andersen78a7c992001-05-15 16:30:25 +00001746 }
1747 return EXIT_SUCCESS; /* don't worry about errors in set_local_var() yet */
1748 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001749 for (i = 0; is_assignment(argv[i]); i++) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00001750 p = expand_string_to_string(argv[i]);
1751 //sp: child->sp--;
1752 putenv(p);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001753 }
Eric Andersen25f27032001-04-26 23:22:31 +00001754 for (x = bltins; x->cmd; x++) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001755 if (strcmp(argv[i], x->cmd) == 0) {
1756 if (x->function == builtin_exec && argv[i+1] == NULL) {
Eric Andersen83a2ae22001-05-07 17:59:25 +00001757 debug_printf("magic exec\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001758 setup_redirects(child, NULL);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001759 return EXIT_SUCCESS;
1760 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001761 debug_printf("builtin inline %s\n", argv[0]);
Eric Andersen25f27032001-04-26 23:22:31 +00001762 /* XXX setup_redirects acts on file descriptors, not FILEs.
1763 * This is perfect for work that comes after exec().
1764 * Is it really safe for inline use? Experimentally,
1765 * things seem to work with glibc. */
1766 setup_redirects(child, squirrel);
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001767 debug_printf_exec(": builtin '%s' '%s'...\n", x->cmd, argv[i+1]);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001768 //sp: if (child->sp) /* btw we can do it unconditionally... */
Denis Vlasenko170435c2007-05-23 13:01:10 +00001769 argv_expanded = expand_strvec_to_strvec(argv + i);
1770 rcode = x->function(argv_expanded) & 0xff;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001771 free(argv_expanded);
Eric Andersen25f27032001-04-26 23:22:31 +00001772 restore_redirects(squirrel);
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001773 debug_printf_exec("run_pipe_real return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001774 return rcode;
1775 }
1776 }
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001777#if ENABLE_FEATURE_SH_STANDALONE
1778 {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001779 const struct bb_applet *a = find_applet_by_name(argv[i]);
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001780 if (a && a->nofork) {
1781 setup_redirects(child, squirrel);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001782 save_nofork_data(&nofork_save);
Denis Vlasenko764d59d2007-05-14 16:23:23 +00001783 argv_expanded = argv + i;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001784 //sp: if (child->sp)
Denis Vlasenko170435c2007-05-23 13:01:10 +00001785 argv_expanded = expand_strvec_to_strvec(argv + i);
Denis Vlasenko764d59d2007-05-14 16:23:23 +00001786 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n", argv_expanded[0], argv_expanded[1]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00001787 rcode = run_nofork_applet_prime(&nofork_save, a, argv_expanded) & 0xff;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001788 free(argv_expanded);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001789 restore_redirects(squirrel);
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001790 debug_printf_exec("run_pipe_real return %d\n", rcode);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001791 return rcode;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001792 }
1793 }
1794#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001795 }
1796
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001797 /* Going to fork a child per each pipe member */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001798 pi->running_progs = 0;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001799
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001800 /* Disable job control signals for shell (parent) and
1801 * for initial child code after fork */
1802 set_jobctrl_sighandler(SIG_IGN);
1803
Eric Andersen25f27032001-04-26 23:22:31 +00001804 for (i = 0; i < pi->num_progs; i++) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001805 child = &(pi->progs[i]);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001806 if (child->argv)
1807 debug_printf_exec(": pipe member '%s' '%s'...\n", child->argv[0], child->argv[1]);
1808 else
1809 debug_printf_exec(": pipe member with no argv\n");
Eric Andersen25f27032001-04-26 23:22:31 +00001810
1811 /* pipes are inserted between pairs of commands */
1812 if ((i + 1) < pi->num_progs) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001813 if (pipe(pipefds) < 0)
1814 bb_perror_msg_and_die("pipe");
Eric Andersen25f27032001-04-26 23:22:31 +00001815 nextout = pipefds[1];
1816 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001817 nextout = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00001818 pipefds[0] = -1;
1819 }
1820
1821 /* XXX test for failed fork()? */
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001822#if BB_MMU
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001823 child->pid = fork();
Eric Andersen72f9a422001-10-28 05:12:20 +00001824#else
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001825 child->pid = vfork();
Eric Andersen72f9a422001-10-28 05:12:20 +00001826#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001827 if (!child->pid) { /* child */
1828 /* Every child adds itself to new process group
1829 * with pgid == pid of first child in pipe */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001830#if ENABLE_HUSH_JOB
Denis Vlasenko170435c2007-05-23 13:01:10 +00001831 if (run_list_level == 1 && interactive_fd) {
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001832 /* Don't do pgrp restore anymore on fatal signals */
1833 set_fatal_sighandler(SIG_DFL);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001834 if (pi->pgrp < 0) /* true for 1st process only */
1835 pi->pgrp = getpid();
1836 if (setpgid(0, pi->pgrp) == 0 && pi->followup != PIPE_BG) {
1837 /* We do it in *every* child, not just first,
1838 * to avoid races */
1839 tcsetpgrp(interactive_fd, pi->pgrp);
1840 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001841 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001842#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001843 /* in non-interactive case fatal sigs are already SIG_DFL */
Eric Andersen25f27032001-04-26 23:22:31 +00001844 close_all();
Eric Andersen25f27032001-04-26 23:22:31 +00001845 if (nextin != 0) {
1846 dup2(nextin, 0);
1847 close(nextin);
1848 }
1849 if (nextout != 1) {
1850 dup2(nextout, 1);
1851 close(nextout);
1852 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00001853 if (pipefds[0] != -1) {
Eric Andersen25f27032001-04-26 23:22:31 +00001854 close(pipefds[0]); /* opposite end of our output pipe */
1855 }
Eric Andersen25f27032001-04-26 23:22:31 +00001856 /* Like bash, explicit redirects override pipes,
1857 * and the pipe fd is available for dup'ing. */
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001858 setup_redirects(child, NULL);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001859
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001860 /* Restore default handlers just prior to exec */
1861 set_jobctrl_sighandler(SIG_DFL);
1862 set_misc_sighandler(SIG_DFL);
1863 signal(SIGCHLD, SIG_DFL);
Eric Andersen25f27032001-04-26 23:22:31 +00001864 pseudo_exec(child);
1865 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001866
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001867 pi->running_progs++;
1868
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001869#if ENABLE_HUSH_JOB
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00001870 /* Second and next children need to know pid of first one */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001871 if (pi->pgrp < 0)
Eric Andersen0fcd4472001-05-02 20:12:03 +00001872 pi->pgrp = child->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001873#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001874 if (nextin != 0)
1875 close(nextin);
1876 if (nextout != 1)
1877 close(nextout);
1878
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001879 /* If there isn't another process, nextin is garbage
Eric Andersen25f27032001-04-26 23:22:31 +00001880 but it doesn't matter */
1881 nextin = pipefds[0];
1882 }
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001883 debug_printf_exec("run_pipe_real return -1\n");
Eric Andersen25f27032001-04-26 23:22:31 +00001884 return -1;
1885}
1886
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001887#ifndef debug_print_tree
1888static void debug_print_tree(struct pipe *pi, int lvl)
1889{
1890 static const char *PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001891 [PIPE_SEQ] = "SEQ",
1892 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001893 [PIPE_OR ] = "OR" ,
1894 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001895 };
1896 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001897 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00001898#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001899 [RES_IF ] = "IF" ,
1900 [RES_THEN ] = "THEN" ,
1901 [RES_ELIF ] = "ELIF" ,
1902 [RES_ELSE ] = "ELSE" ,
1903 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00001904#endif
1905#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001906 [RES_FOR ] = "FOR" ,
1907 [RES_WHILE] = "WHILE",
1908 [RES_UNTIL] = "UNTIL",
1909 [RES_DO ] = "DO" ,
1910 [RES_DONE ] = "DONE" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001911 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00001912#endif
1913 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001914 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001915 };
1916
1917 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00001918
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001919 pin = 0;
1920 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00001921 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
1922 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001923 prn = 0;
1924 while (prn < pi->num_progs) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00001925 struct child_prog *child = &pi->progs[prn];
1926 char **argv = child->argv;
1927
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001928 fprintf(stderr, "%*s prog %d", lvl*2, "", prn);
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00001929 if (child->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001930 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00001931 (child->subshell ? "()" : "{}"),
1932 argv);
1933 debug_print_tree(child->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001934 prn++;
1935 continue;
1936 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001937 if (argv) while (*argv) {
1938 fprintf(stderr, " '%s'", *argv);
1939 argv++;
1940 }
1941 fprintf(stderr, "\n");
1942 prn++;
1943 }
1944 pi = pi->next;
1945 pin++;
1946 }
1947}
1948#endif
1949
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001950/* NB: called by pseudo_exec, and therefore must not modify any
1951 * global data until exec/_exit (we can be a child after vfork!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001952static int run_list_real(struct pipe *pi)
1953{
Denis Vlasenko06810332007-05-21 23:30:54 +00001954 struct pipe *rpipe;
1955#if ENABLE_HUSH_LOOPS
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00001956 char *for_varname = NULL;
1957 char **for_lcur = NULL;
1958 char **for_list = NULL;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001959 int flag_rep = 0;
Denis Vlasenko06810332007-05-21 23:30:54 +00001960#endif
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001961 int save_num_progs;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001962 int flag_skip = 1;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00001963 int rcode = 0; /* probably for gcc only */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001964 int flag_restore = 0;
Denis Vlasenko06810332007-05-21 23:30:54 +00001965#if ENABLE_HUSH_IF
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001966 int if_code = 0, next_if_code = 0; /* need double-buffer to handle elif */
Denis Vlasenko06810332007-05-21 23:30:54 +00001967#else
1968 enum { if_code = 0, next_if_code = 0 };
1969#endif
Denis Vlasenko219e88d2007-05-21 10:18:23 +00001970 reserved_style rword;
1971 reserved_style skip_more_for_this_rword = RES_XXXX;
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00001972
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001973 debug_printf_exec("run_list_real start lvl %d\n", run_list_level + 1);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00001974
Denis Vlasenko06810332007-05-21 23:30:54 +00001975#if ENABLE_HUSH_LOOPS
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001976 /* check syntax for "for" */
1977 for (rpipe = pi; rpipe; rpipe = rpipe->next) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00001978 if ((rpipe->res_word == RES_IN || rpipe->res_word == RES_FOR)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001979 && (rpipe->next == NULL)
1980 ) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001981 syntax("malformed for"); /* no IN or no commands after IN */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001982 debug_printf_exec("run_list_real lvl %d return 1\n", run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001983 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001984 }
Denis Vlasenko219e88d2007-05-21 10:18:23 +00001985 if ((rpipe->res_word == RES_IN && rpipe->next->res_word == RES_IN && rpipe->next->progs[0].argv != NULL)
1986 || (rpipe->res_word == RES_FOR && rpipe->next->res_word != RES_IN)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001987 ) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001988 /* TODO: what is tested in the first condition? */
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001989 syntax("malformed for"); /* 2nd condition: not followed by IN */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001990 debug_printf_exec("run_list_real lvl %d return 1\n", run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001991 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001992 }
1993 }
Denis Vlasenko06810332007-05-21 23:30:54 +00001994#else
1995 rpipe = NULL;
1996#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001997
1998#if ENABLE_HUSH_JOB
1999 /* Example of nested list: "while true; do { sleep 1 | exit 2; } done".
2000 * We are saving state before entering outermost list ("while...done")
2001 * so that ctrl-Z will correctly background _entire_ outermost list,
2002 * not just a part of it (like "sleep 1 | exit 2") */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00002003 if (++run_list_level == 1 && interactive_fd) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002004 if (sigsetjmp(toplevel_jb, 1)) {
2005 /* ctrl-Z forked and we are parent; or ctrl-C.
2006 * Sighandler has longjmped us here */
2007 signal(SIGINT, SIG_IGN);
2008 signal(SIGTSTP, SIG_IGN);
2009 /* Restore level (we can be coming from deep inside
2010 * nested levels) */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00002011 run_list_level = 1;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002012#if ENABLE_FEATURE_SH_STANDALONE
2013 if (nofork_save.saved) { /* if save area is valid */
2014 debug_printf_jobs("exiting nofork early\n");
2015 restore_nofork_data(&nofork_save);
2016 }
2017#endif
2018 if (ctrl_z_flag) {
2019 /* ctrl-Z has forked and stored pid of the child in pi->pid.
2020 * Remember this child as background job */
2021 insert_bg_job(pi);
2022 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002023 /* ctrl-C. We just stop doing whatever we were doing */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002024 putchar('\n');
2025 }
2026 rcode = 0;
2027 goto ret;
2028 }
2029 /* ctrl-Z handler will store pid etc in pi */
2030 toplevel_list = pi;
2031 ctrl_z_flag = 0;
2032#if ENABLE_FEATURE_SH_STANDALONE
2033 nofork_save.saved = 0; /* in case we will run a nofork later */
2034#endif
2035 signal_SA_RESTART(SIGTSTP, handler_ctrl_z);
2036 signal(SIGINT, handler_ctrl_c);
2037 }
2038#endif
2039
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002040 for (; pi; pi = flag_restore ? rpipe : pi->next) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002041 rword = pi->res_word;
Denis Vlasenko06810332007-05-21 23:30:54 +00002042#if ENABLE_HUSH_LOOPS
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002043 if (rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002044 flag_restore = 0;
2045 if (!rpipe) {
2046 flag_rep = 0;
2047 rpipe = pi;
2048 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002049 }
Denis Vlasenko06810332007-05-21 23:30:54 +00002050#endif
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002051 debug_printf_exec(": rword=%d if_code=%d next_if_code=%d skip_more=%d\n",
2052 rword, if_code, next_if_code, skip_more_for_this_rword);
2053 if (rword == skip_more_for_this_rword && flag_skip) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002054 if (pi->followup == PIPE_SEQ)
2055 flag_skip = 0;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002056 continue;
2057 }
2058 flag_skip = 1;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002059 skip_more_for_this_rword = RES_XXXX;
Denis Vlasenko06810332007-05-21 23:30:54 +00002060#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002061 if (rword == RES_THEN || rword == RES_ELSE)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002062 if_code = next_if_code;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002063 if (rword == RES_THEN && if_code)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002064 continue;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002065 if (rword == RES_ELSE && !if_code)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002066 continue;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002067 if (rword == RES_ELIF && !if_code)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002068 break;
Denis Vlasenko06810332007-05-21 23:30:54 +00002069#endif
2070#if ENABLE_HUSH_LOOPS
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002071 if (rword == RES_FOR && pi->num_progs) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002072 if (!for_lcur) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002073 /* if no variable values after "in" we skip "for" */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002074 if (!pi->next->progs->argv)
2075 continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002076 /* create list of variable values */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002077 for_list = expand_strvec_to_strvec(pi->next->progs->argv);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002078 for_lcur = for_list;
2079 for_varname = pi->progs->argv[0];
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002080 pi->progs->argv[0] = NULL;
2081 flag_rep = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002082 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002083 free(pi->progs->argv[0]);
2084 if (!*for_lcur) {
2085 free(for_list);
2086 for_lcur = NULL;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002087 flag_rep = 0;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002088 pi->progs->argv[0] = for_varname;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002089 pi->progs->glob_result.gl_pathv[0] = pi->progs->argv[0];
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002090 continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002091 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002092 /* insert next value from for_lcur */
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002093 /* vda: does it need escaping? */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002094 pi->progs->argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002095 pi->progs->glob_result.gl_pathv[0] = pi->progs->argv[0];
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002096 }
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002097 if (rword == RES_IN)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002098 continue;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002099 if (rword == RES_DO) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002100 if (!flag_rep)
2101 continue;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002102 }
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002103 if (rword == RES_DONE) {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002104 if (flag_rep) {
2105 flag_restore = 1;
2106 } else {
2107 rpipe = NULL;
2108 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002109 }
Denis Vlasenko06810332007-05-21 23:30:54 +00002110#endif
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002111 if (pi->num_progs == 0)
2112 continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002113 save_num_progs = pi->num_progs; /* save number of programs */
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002114 debug_printf_exec(": run_pipe_real with %d members\n", pi->num_progs);
Eric Andersen25f27032001-04-26 23:22:31 +00002115 rcode = run_pipe_real(pi);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002116 if (rcode != -1) {
Eric Andersen25f27032001-04-26 23:22:31 +00002117 /* We only ran a builtin: rcode was set by the return value
2118 * of run_pipe_real(), and we don't need to wait for anything. */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002119 } else if (pi->followup == PIPE_BG) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002120 /* What does bash do with attempts to background builtins? */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002121 /* Even bash 3.2 doesn't do that well with nested bg:
2122 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
Denis Vlasenko170435c2007-05-23 13:01:10 +00002123 * I'm NOT treating inner &'s as jobs */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002124#if ENABLE_HUSH_JOB
Denis Vlasenko170435c2007-05-23 13:01:10 +00002125 if (run_list_level == 1)
2126 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002127#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002128 rcode = EXIT_SUCCESS;
2129 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002130#if ENABLE_HUSH_JOB
Denis Vlasenko170435c2007-05-23 13:01:10 +00002131 /* Paranoia, just "interactive_fd" should be enough? */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00002132 if (run_list_level == 1 && interactive_fd) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00002133 /* waits for completion, then fg's main shell */
Denis Vlasenko52881e92007-04-21 13:42:52 +00002134 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002135 } else
2136#endif
2137 {
Denis Vlasenko170435c2007-05-23 13:01:10 +00002138 /* this one just waits for completion */
Eric Andersenc798b072001-06-22 06:23:03 +00002139 rcode = checkjobs(pi);
Eric Andersen25f27032001-04-26 23:22:31 +00002140 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002141 debug_printf_exec(": checkjobs returned %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00002142 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002143 debug_printf_exec(": setting last_return_code=%d\n", rcode);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002144 last_return_code = rcode;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002145 pi->num_progs = save_num_progs; /* restore number of programs */
Denis Vlasenko06810332007-05-21 23:30:54 +00002146#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002147 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002148 next_if_code = rcode; /* can be overwritten a number of times */
Denis Vlasenko06810332007-05-21 23:30:54 +00002149#endif
2150#if ENABLE_HUSH_LOOPS
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002151 if (rword == RES_WHILE)
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002152 flag_rep = !last_return_code;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002153 if (rword == RES_UNTIL)
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002154 flag_rep = last_return_code;
Denis Vlasenko06810332007-05-21 23:30:54 +00002155#endif
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002156 if ((rcode == EXIT_SUCCESS && pi->followup == PIPE_OR)
2157 || (rcode != EXIT_SUCCESS && pi->followup == PIPE_AND)
2158 ) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002159 skip_more_for_this_rword = rword;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002160 }
Eric Andersen028b65b2001-06-28 01:10:11 +00002161 checkjobs(NULL);
Eric Andersen25f27032001-04-26 23:22:31 +00002162 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002163
2164#if ENABLE_HUSH_JOB
2165 if (ctrl_z_flag) {
2166 /* ctrl-Z forked somewhere in the past, we are the child,
2167 * and now we completed running the list. Exit. */
2168 exit(rcode);
2169 }
2170 ret:
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00002171 run_list_level--;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002172#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00002173 debug_printf_exec("run_list_real lvl %d return %d\n", run_list_level + 1, rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00002174 return rcode;
2175}
2176
Eric Andersen25f27032001-04-26 23:22:31 +00002177/* return code is the exit status of the pipe */
Eric Andersenbf7df042001-05-23 22:18:35 +00002178static int free_pipe(struct pipe *pi, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00002179{
2180 char **p;
2181 struct child_prog *child;
2182 struct redir_struct *r, *rnext;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002183 int a, i, ret_code = 0;
Eric Andersen52a97ca2001-06-22 06:49:26 +00002184
2185 if (pi->stopped_progs > 0)
2186 return ret_code;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002187 debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid());
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002188 for (i = 0; i < pi->num_progs; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002189 child = &pi->progs[i];
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002190 debug_printf_clean("%s command %d:\n", indenter(indent), i);
Eric Andersen25f27032001-04-26 23:22:31 +00002191 if (child->argv) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002192 for (a = 0, p = child->argv; *p; a++, p++) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002193 debug_printf_clean("%s argv[%d] = %s\n", indenter(indent), a, *p);
Eric Andersen25f27032001-04-26 23:22:31 +00002194 }
2195 globfree(&child->glob_result);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002196 child->argv = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002197 } else if (child->group) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002198 debug_printf_clean("%s begin group (subshell:%d)\n", indenter(indent), child->subshell);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002199 ret_code = free_pipe_list(child->group, indent+3);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002200 debug_printf_clean("%s end group\n", indenter(indent));
Eric Andersen25f27032001-04-26 23:22:31 +00002201 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002202 debug_printf_clean("%s (nil)\n", indenter(indent));
Eric Andersen25f27032001-04-26 23:22:31 +00002203 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002204 for (r = child->redirects; r; r = rnext) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002205 debug_printf_clean("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->type].descrip);
Eric Andersen25f27032001-04-26 23:22:31 +00002206 if (r->dup == -1) {
Eric Andersen817e73c2001-06-06 17:56:09 +00002207 /* guard against the case >$FOO, where foo is unset or blank */
2208 if (r->word.gl_pathv) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002209 debug_printf_clean(" %s\n", *r->word.gl_pathv);
Eric Andersen817e73c2001-06-06 17:56:09 +00002210 globfree(&r->word);
2211 }
Eric Andersen25f27032001-04-26 23:22:31 +00002212 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002213 debug_printf_clean("&%d\n", r->dup);
Eric Andersen25f27032001-04-26 23:22:31 +00002214 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002215 rnext = r->next;
Eric Andersen25f27032001-04-26 23:22:31 +00002216 free(r);
2217 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002218 child->redirects = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002219 }
2220 free(pi->progs); /* children are an array, they get freed all at once */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002221 pi->progs = NULL;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002222#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002223 free(pi->cmdtext);
2224 pi->cmdtext = NULL;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002225#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002226 return ret_code;
2227}
2228
Eric Andersenbf7df042001-05-23 22:18:35 +00002229static int free_pipe_list(struct pipe *head, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00002230{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002231 int rcode = 0; /* if list has no members */
Eric Andersen25f27032001-04-26 23:22:31 +00002232 struct pipe *pi, *next;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002233
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002234 for (pi = head; pi; pi = next) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002235 debug_printf_clean("%s pipe reserved mode %d\n", indenter(indent), pi->res_word);
Eric Andersenbf7df042001-05-23 22:18:35 +00002236 rcode = free_pipe(pi, indent);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002237 debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002238 next = pi->next;
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002239 /*pi->next = NULL;*/
Eric Andersen25f27032001-04-26 23:22:31 +00002240 free(pi);
2241 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002242 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00002243}
2244
2245/* Select which version we will use */
2246static int run_list(struct pipe *pi)
2247{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002248 int rcode = 0;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002249 debug_printf_exec("run_list entered\n");
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002250 if (fake_mode == 0) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002251 debug_printf_exec(": run_list_real with %d members\n", pi->num_progs);
Eric Andersen25f27032001-04-26 23:22:31 +00002252 rcode = run_list_real(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002253 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002254 /* free_pipe_list has the side effect of clearing memory.
Eric Andersen25f27032001-04-26 23:22:31 +00002255 * In the long run that function can be merged with run_list_real,
2256 * but doing that now would hobble the debugging effort. */
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002257 free_pipe_list(pi, 0);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002258 debug_printf_exec("run_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00002259 return rcode;
2260}
2261
2262/* The API for glob is arguably broken. This routine pushes a non-matching
2263 * string into the output structure, removing non-backslashed backslashes.
2264 * If someone can prove me wrong, by performing this function within the
2265 * original glob(3) api, feel free to rewrite this routine into oblivion.
2266 * Return code (0 vs. GLOB_NOSPACE) matches glob(3).
2267 * XXX broken if the last character is '\\', check that before calling.
2268 */
2269static int globhack(const char *src, int flags, glob_t *pglob)
2270{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002271 int cnt = 0, pathc;
Eric Andersen25f27032001-04-26 23:22:31 +00002272 const char *s;
2273 char *dest;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002274 for (cnt = 1, s = src; s && *s; s++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002275 if (*s == '\\') s++;
2276 cnt++;
2277 }
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002278 dest = xmalloc(cnt);
Eric Andersen25f27032001-04-26 23:22:31 +00002279 if (!(flags & GLOB_APPEND)) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002280 pglob->gl_pathv = NULL;
2281 pglob->gl_pathc = 0;
2282 pglob->gl_offs = 0;
2283 pglob->gl_offs = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00002284 }
2285 pathc = ++pglob->gl_pathc;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002286 pglob->gl_pathv = xrealloc(pglob->gl_pathv, (pathc+1) * sizeof(*pglob->gl_pathv));
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002287 pglob->gl_pathv[pathc-1] = dest;
2288 pglob->gl_pathv[pathc] = NULL;
2289 for (s = src; s && *s; s++, dest++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002290 if (*s == '\\') s++;
2291 *dest = *s;
2292 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002293 *dest = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002294 return 0;
2295}
2296
2297/* XXX broken if the last character is '\\', check that before calling */
2298static int glob_needed(const char *s)
2299{
2300 for (; *s; s++) {
2301 if (*s == '\\') s++;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002302 if (strchr("*[?", *s)) return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002303 }
2304 return 0;
2305}
2306
Eric Andersen25f27032001-04-26 23:22:31 +00002307static int xglob(o_string *dest, int flags, glob_t *pglob)
2308{
2309 int gr;
2310
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002311 /* short-circuit for null word */
Eric Andersen25f27032001-04-26 23:22:31 +00002312 /* we can code this better when the debug_printf's are gone */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002313 if (dest->length == 0) {
2314 if (dest->nonnull) {
2315 /* bash man page calls this an "explicit" null */
2316 gr = globhack(dest->data, flags, pglob);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002317 debug_printf("globhack returned %d\n", gr);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002318 } else {
Eric Andersen25f27032001-04-26 23:22:31 +00002319 return 0;
2320 }
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002321 } else if (glob_needed(dest->data)) {
Eric Andersen25f27032001-04-26 23:22:31 +00002322 gr = glob(dest->data, flags, NULL, pglob);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002323 debug_printf("glob returned %d\n", gr);
Eric Andersen25f27032001-04-26 23:22:31 +00002324 if (gr == GLOB_NOMATCH) {
2325 /* quote removal, or more accurately, backslash removal */
2326 gr = globhack(dest->data, flags, pglob);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002327 debug_printf("globhack returned %d\n", gr);
Eric Andersen25f27032001-04-26 23:22:31 +00002328 }
2329 } else {
2330 gr = globhack(dest->data, flags, pglob);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002331 debug_printf("globhack returned %d\n", gr);
Eric Andersen25f27032001-04-26 23:22:31 +00002332 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002333 if (gr == GLOB_NOSPACE)
Manuel Novoa III cad53642003-03-19 09:13:01 +00002334 bb_error_msg_and_die("out of memory during glob");
Eric Andersen25f27032001-04-26 23:22:31 +00002335 if (gr != 0) { /* GLOB_ABORTED ? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002336 bb_error_msg("glob(3) error %d", gr);
Eric Andersen25f27032001-04-26 23:22:31 +00002337 }
2338 /* globprint(glob_target); */
2339 return gr;
2340}
2341
Denis Vlasenko170435c2007-05-23 13:01:10 +00002342/* expand_strvec_to_strvec() takes a list of strings, expands
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002343 * all variable references within and returns a pointer to
2344 * a list of expanded strings, possibly with larger number
2345 * of strings. (Think VAR="a b"; echo $VAR).
2346 * This new list is allocated as a single malloc block.
2347 * NULL-terminated list of char* pointers is at the beginning of it,
2348 * followed by strings themself.
2349 * Caller can deallocate entire list by single free(list). */
2350
2351/* Helpers first:
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00002352 * count_XXX estimates size of the block we need. It's okay
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002353 * to over-estimate sizes a bit, if it makes code simpler */
2354static int count_ifs(const char *str)
2355{
2356 int cnt = 0;
2357 debug_printf_expand("count_ifs('%s') ifs='%s'", str, ifs);
2358 while (1) {
2359 str += strcspn(str, ifs);
2360 if (!*str) break;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002361 str++; /* str += strspn(str, ifs); */
2362 cnt++; /* cnt += strspn(str, ifs); - but this code is larger */
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002363 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002364 debug_printf_expand(" return %d\n", cnt);
2365 return cnt;
2366}
2367
2368static void count_var_expansion_space(int *countp, int *lenp, char *arg)
2369{
2370 char first_ch;
2371 int i;
2372 int len = *lenp;
2373 int count = *countp;
2374 const char *val;
2375 char *p;
2376
2377 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL))) {
2378 len += p - arg;
2379 arg = ++p;
2380 p = strchr(p, SPECIAL_VAR_SYMBOL);
2381 first_ch = arg[0];
2382
2383 switch (first_ch & 0x7f) {
2384 /* high bit in 1st_ch indicates that var is double-quoted */
2385 case '$': /* pid */
2386 case '!': /* bg pid */
2387 case '?': /* exitcode */
2388 case '#': /* argc */
2389 len += sizeof(int)*3 + 1; /* enough for int */
2390 break;
2391 case '*':
2392 case '@':
2393 for (i = 1; i < global_argc; i++) {
2394 len += strlen(global_argv[i]) + 1;
2395 count++;
2396 if (!(first_ch & 0x80))
2397 count += count_ifs(global_argv[i]);
2398 }
2399 break;
2400 default:
2401 *p = '\0';
2402 arg[0] = first_ch & 0x7f;
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002403 if (isdigit(arg[0])) {
2404 i = xatoi_u(arg);
2405 val = NULL;
2406 if (i < global_argc)
2407 val = global_argv[i];
2408 } else
2409 val = lookup_param(arg);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002410 arg[0] = first_ch;
2411 *p = SPECIAL_VAR_SYMBOL;
2412
2413 if (val) {
2414 len += strlen(val) + 1;
2415 if (!(first_ch & 0x80))
2416 count += count_ifs(val);
2417 }
2418 }
2419 arg = ++p;
2420 }
2421
2422 len += strlen(arg) + 1;
2423 count++;
2424 *lenp = len;
2425 *countp = count;
2426}
2427
2428/* Store given string, finalizing the word and starting new one whenever
2429 * we encounter ifs char(s). This is used for expanding variable values.
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002430 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002431static int expand_on_ifs(char **list, int n, char **posp, const char *str)
2432{
2433 char *pos = *posp;
2434 while (1) {
2435 int word_len = strcspn(str, ifs);
2436 if (word_len) {
2437 memcpy(pos, str, word_len); /* store non-ifs chars */
2438 pos += word_len;
2439 str += word_len;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002440 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002441 if (!*str) /* EOL - do not finalize word */
2442 break;
2443 *pos++ = '\0';
2444 if (n) debug_printf_expand("expand_on_ifs finalized list[%d]=%p '%s' "
2445 "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2446 strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
2447 list[n++] = pos;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002448 str += strspn(str, ifs); /* skip ifs chars */
2449 }
2450 *posp = pos;
2451 return n;
2452}
2453
2454/* Expand all variable references in given string, adding words to list[]
2455 * at n, n+1,... positions. Return updated n (so that list[n] is next one
2456 * to be filled). This routine is extremely tricky: has to deal with
2457 * variables/parameters with whitespace, $* and $@, and constructs like
2458 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002459/* NB: another bug is that we cannot detect empty strings yet:
2460 * "" or $empty"" expands to zero words, has to expand to empty word */
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002461static int expand_vars_to_list(char **list, int n, char **posp, char *arg, char or_mask)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002462{
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002463 /* or_mask is either 0 (normal case) or 0x80
2464 * (expansion of right-hand side of assignment == 1-element expand) */
2465
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002466 char first_ch, ored_ch;
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002467 int i;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002468 const char *val;
2469 char *p;
2470 char *pos = *posp;
2471
2472 ored_ch = 0;
2473
2474 if (n) debug_printf_expand("expand_vars_to_list finalized list[%d]=%p '%s' "
2475 "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2476 strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
2477 list[n++] = pos;
2478
2479 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL))) {
2480 memcpy(pos, arg, p - arg);
2481 pos += (p - arg);
2482 arg = ++p;
2483 p = strchr(p, SPECIAL_VAR_SYMBOL);
2484
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002485 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002486 ored_ch |= first_ch;
2487 val = NULL;
2488 switch (first_ch & 0x7f) {
2489 /* Highest bit in first_ch indicates that var is double-quoted */
2490 case '$': /* pid */
2491 /* FIXME: (echo $$) should still print pid of main shell */
2492 val = utoa(getpid());
2493 break;
2494 case '!': /* bg pid */
2495 val = last_bg_pid ? utoa(last_bg_pid) : (char*)"";
2496 break;
2497 case '?': /* exitcode */
2498 val = utoa(last_return_code);
2499 break;
2500 case '#': /* argc */
2501 val = utoa(global_argc ? global_argc-1 : 0);
2502 break;
2503 case '*':
2504 case '@':
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002505 i = 1;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002506 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002507 while (i < global_argc) {
2508 n = expand_on_ifs(list, n, &pos, global_argv[i]);
2509 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, global_argc-1);
2510 if (global_argv[i++][0] && i < global_argc) {
2511 /* this argv[] is not empty and not last:
2512 * put terminating NUL, start new word */
2513 *pos++ = '\0';
2514 if (n) debug_printf_expand("expand_vars_to_list 2 finalized list[%d]=%p '%s' "
2515 "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2516 strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
2517 list[n++] = pos;
2518 }
2519 }
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002520 } else
2521 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
2522 * and in this case should theat it like '$*' */
2523 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002524 while (1) {
2525 strcpy(pos, global_argv[i]);
2526 pos += strlen(global_argv[i]);
2527 if (++i >= global_argc)
2528 break;
2529 *pos++ = '\0';
2530 if (n) debug_printf_expand("expand_vars_to_list 3 finalized list[%d]=%p '%s' "
2531 "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2532 strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
2533 list[n++] = pos;
2534 }
2535 } else { /* quoted $*: add as one word */
2536 while (1) {
2537 strcpy(pos, global_argv[i]);
2538 pos += strlen(global_argv[i]);
2539 if (++i >= global_argc)
2540 break;
2541 if (ifs[0])
2542 *pos++ = ifs[0];
2543 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002544 }
2545 break;
2546 default:
2547 *p = '\0';
2548 arg[0] = first_ch & 0x7f;
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002549 if (isdigit(arg[0])) {
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002550 i = xatoi_u(arg);
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002551 val = NULL;
2552 if (i < global_argc)
2553 val = global_argv[i];
2554 } else
2555 val = lookup_param(arg);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002556 arg[0] = first_ch;
2557 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002558 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002559 if (val) {
2560 n = expand_on_ifs(list, n, &pos, val);
2561 val = NULL;
2562 }
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002563 } /* else: quoted $VAR, val will be appended at pos */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002564 }
2565 if (val) {
2566 strcpy(pos, val);
2567 pos += strlen(val);
2568 }
2569 arg = ++p;
2570 }
2571 debug_printf_expand("expand_vars_to_list adding tail '%s' at %p\n", arg, pos);
2572 strcpy(pos, arg);
2573 pos += strlen(arg) + 1;
2574 if (pos == list[n-1] + 1) { /* expansion is empty */
2575 if (!(ored_ch & 0x80)) { /* all vars were not quoted... */
2576 debug_printf_expand("expand_vars_to_list list[%d] empty, going back\n", n);
2577 pos--;
2578 n--;
2579 }
2580 }
2581
2582 *posp = pos;
2583 return n;
2584}
2585
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002586static char **expand_variables(char **argv, char or_mask)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002587{
2588 int n;
2589 int count = 1;
2590 int len = 0;
2591 char *pos, **v, **list;
2592
2593 v = argv;
2594 if (!*v) debug_printf_expand("count_var_expansion_space: "
2595 "argv[0]=NULL count=%d len=%d alloc_space=%d\n",
2596 count, len, sizeof(char*) * count + len);
2597 while (*v) {
2598 count_var_expansion_space(&count, &len, *v);
2599 debug_printf_expand("count_var_expansion_space: "
2600 "'%s' count=%d len=%d alloc_space=%d\n",
2601 *v, count, len, sizeof(char*) * count + len);
2602 v++;
2603 }
2604 len += sizeof(char*) * count; /* total to alloc */
2605 list = xmalloc(len);
2606 pos = (char*)(list + count);
2607 debug_printf_expand("list=%p, list[0] should be %p\n", list, pos);
2608 n = 0;
2609 v = argv;
2610 while (*v)
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002611 n = expand_vars_to_list(list, n, &pos, *v++, or_mask);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002612
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002613 if (n) debug_printf_expand("finalized list[%d]=%p '%s' "
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002614 "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2615 strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002616 list[n] = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002617
2618#ifdef DEBUG_EXPAND
2619 {
2620 int m = 0;
2621 while (m <= n) {
2622 debug_printf_expand("list[%d]=%p '%s'\n", m, list[m], list[m]);
2623 m++;
2624 }
2625 debug_printf_expand("used_space=%d\n", pos - (char*)list);
2626 }
2627#endif
Denis Vlasenko170435c2007-05-23 13:01:10 +00002628 if (ENABLE_HUSH_DEBUG)
2629 if (pos - (char*)list > len)
2630 bb_error_msg_and_die("BUG in varexp");
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002631 return list;
2632}
2633
Denis Vlasenko170435c2007-05-23 13:01:10 +00002634static char **expand_strvec_to_strvec(char **argv)
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002635{
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002636 return expand_variables(argv, 0);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002637}
2638
Denis Vlasenko170435c2007-05-23 13:01:10 +00002639static char *expand_string_to_string(const char *str)
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002640{
2641 char *argv[2], **list;
2642
2643 argv[0] = (char*)str;
2644 argv[1] = NULL;
2645 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002646 if (ENABLE_HUSH_DEBUG)
2647 if (!list[0] || list[1])
2648 bb_error_msg_and_die("BUG in varexp2");
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002649 /* actually, just move string 2*sizeof(char*) bytes back */
2650 strcpy((char*)list, list[0]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00002651 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2652 return (char*)list;
2653}
2654
2655static char* expand_strvec_to_string(char **argv)
2656{
2657 char **list;
2658
2659 list = expand_variables(argv, 0x80);
2660 /* Convert all NULs to spaces */
2661 if (list[0]) {
2662 int n = 1;
2663 while (list[n]) {
2664 if (ENABLE_HUSH_DEBUG)
2665 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2666 bb_error_msg_and_die("BUG in varexp3");
2667 list[n][-1] = ' '; /* TODO: or to ifs[0]? */
2668 n++;
2669 }
2670 }
2671 strcpy((char*)list, list[0]);
2672 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002673 return (char*)list;
2674}
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002675
Eric Andersenf72f5622001-05-15 23:21:41 +00002676/* This is used to get/check local shell variables */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002677static struct variable *get_local_var(const char *name)
Eric Andersenf72f5622001-05-15 23:21:41 +00002678{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002679 struct variable *cur;
2680 int len;
Eric Andersenf72f5622001-05-15 23:21:41 +00002681
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002682 if (!name)
Eric Andersenf72f5622001-05-15 23:21:41 +00002683 return NULL;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002684 len = strlen(name);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002685 for (cur = top_var; cur; cur = cur->next) {
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002686 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002687 return cur;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00002688 }
Eric Andersenf72f5622001-05-15 23:21:41 +00002689 return NULL;
2690}
2691
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002692/* str holds "NAME=VAL" and is expected to be malloced.
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002693 * We take ownership of it. */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002694static int set_local_var(char *str, int flg_export)
Eric Andersen78a7c992001-05-15 16:30:25 +00002695{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002696 struct variable *cur;
2697 char *value;
2698 int name_len;
Eric Andersen20a69a72001-05-15 17:24:44 +00002699
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002700 value = strchr(str, '=');
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002701 if (!value) { /* not expected to ever happen? */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002702 free(str);
Eric Andersen99785762001-05-22 21:37:48 +00002703 return -1;
2704 }
Eric Andersen20a69a72001-05-15 17:24:44 +00002705
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002706 name_len = value - str + 1; /* including '=' */
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002707 cur = top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
2708 while (1) {
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002709 if (strncmp(cur->varstr, str, name_len) != 0) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002710 if (!cur->next) {
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002711 /* Bail out. Note that now cur points
2712 * to last var in linked list */
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002713 break;
Eric Andersen20a69a72001-05-15 17:24:44 +00002714 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002715 cur = cur->next;
2716 continue;
Eric Andersen20a69a72001-05-15 17:24:44 +00002717 }
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002718 /* We found an existing var with this name */
2719 *value = '\0';
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002720 if (cur->flg_read_only) {
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002721 bb_error_msg("%s: readonly variable", str);
2722 free(str);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002723 return -1;
2724 }
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002725 unsetenv(str); /* just in case */
2726 *value = '=';
2727 if (strcmp(cur->varstr, str) == 0) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002728 free_and_exp:
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002729 free(str);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002730 goto exp;
2731 }
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002732 if (cur->max_len >= strlen(str)) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002733 /* This one is from startup env, reuse space */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002734 strcpy(cur->varstr, str);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002735 goto free_and_exp;
2736 }
2737 /* max_len == 0 signifies "malloced" var, which we can
2738 * (and has to) free */
2739 if (!cur->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002740 free(cur->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002741 cur->max_len = 0;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002742 goto set_str_and_exp;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002743 }
Eric Andersen20a69a72001-05-15 17:24:44 +00002744
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002745 /* Not found - create next variable struct */
2746 cur->next = xzalloc(sizeof(*cur));
2747 cur = cur->next;
2748
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002749 set_str_and_exp:
2750 cur->varstr = str;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002751 exp:
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002752 if (flg_export)
2753 cur->flg_export = 1;
2754 if (cur->flg_export)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002755 return putenv(cur->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002756 return 0;
Eric Andersen20a69a72001-05-15 17:24:44 +00002757}
2758
Eric Andersenf72f5622001-05-15 23:21:41 +00002759static void unset_local_var(const char *name)
Eric Andersen20a69a72001-05-15 17:24:44 +00002760{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002761 struct variable *cur;
2762 struct variable *prev = prev; /* for gcc */
2763 int name_len;
Eric Andersen20a69a72001-05-15 17:24:44 +00002764
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002765 if (!name)
2766 return;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002767 name_len = strlen(name);
2768 cur = top_var;
2769 while (cur) {
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002770 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002771 if (cur->flg_read_only) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00002772 bb_error_msg("%s: readonly variable", name);
Eric Andersen94ac2442001-05-22 19:05:18 +00002773 return;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002774 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002775 /* prev is ok to use here because 1st variable, HUSH_VERSION,
2776 * is ro, and we cannot reach this code on the 1st pass */
2777 prev->next = cur->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002778 unsetenv(cur->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002779 if (!cur->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002780 free(cur->varstr);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002781 free(cur);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002782 return;
Eric Andersenf72f5622001-05-15 23:21:41 +00002783 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002784 prev = cur;
2785 cur = cur->next;
Eric Andersen20a69a72001-05-15 17:24:44 +00002786 }
Eric Andersen78a7c992001-05-15 16:30:25 +00002787}
2788
2789static int is_assignment(const char *s)
2790{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002791 if (!s || !isalpha(*s))
2792 return 0;
2793 s++;
2794 while (isalnum(*s) || *s == '_')
2795 s++;
2796 return *s == '=';
Eric Andersen78a7c992001-05-15 16:30:25 +00002797}
2798
Eric Andersen25f27032001-04-26 23:22:31 +00002799/* the src parameter allows us to peek forward to a possible &n syntax
2800 * for file descriptor duplication, e.g., "2>&1".
2801 * Return code is 0 normally, 1 if a syntax error is detected in src.
2802 * Resource errors (in xmalloc) cause the process to exit */
2803static int setup_redirect(struct p_context *ctx, int fd, redir_type style,
2804 struct in_str *input)
2805{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002806 struct child_prog *child = ctx->child;
Eric Andersen25f27032001-04-26 23:22:31 +00002807 struct redir_struct *redir = child->redirects;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002808 struct redir_struct *last_redir = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002809
2810 /* Create a new redir_struct and drop it onto the end of the linked list */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002811 while (redir) {
2812 last_redir = redir;
2813 redir = redir->next;
Eric Andersen25f27032001-04-26 23:22:31 +00002814 }
2815 redir = xmalloc(sizeof(struct redir_struct));
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002816 redir->next = NULL;
2817 redir->word.gl_pathv = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002818 if (last_redir) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002819 last_redir->next = redir;
Eric Andersen25f27032001-04-26 23:22:31 +00002820 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002821 child->redirects = redir;
Eric Andersen25f27032001-04-26 23:22:31 +00002822 }
2823
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002824 redir->type = style;
2825 redir->fd = (fd == -1) ? redir_table[style].default_fd : fd;
Eric Andersen25f27032001-04-26 23:22:31 +00002826
2827 debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
2828
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002829 /* Check for a '2>&1' type redirect */
Eric Andersen25f27032001-04-26 23:22:31 +00002830 redir->dup = redirect_dup_num(input);
2831 if (redir->dup == -2) return 1; /* syntax error */
2832 if (redir->dup != -1) {
2833 /* Erik had a check here that the file descriptor in question
Eric Andersen83a2ae22001-05-07 17:59:25 +00002834 * is legit; I postpone that to "run time"
2835 * A "-" representation of "close me" shows up as a -3 here */
Eric Andersen25f27032001-04-26 23:22:31 +00002836 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
2837 } else {
2838 /* We do _not_ try to open the file that src points to,
2839 * since we need to return and let src be expanded first.
2840 * Set ctx->pending_redirect, so we know what to do at the
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002841 * end of the next parsed word. */
Eric Andersen25f27032001-04-26 23:22:31 +00002842 ctx->pending_redirect = redir;
2843 }
2844 return 0;
2845}
2846
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00002847static struct pipe *new_pipe(void)
2848{
Eric Andersen25f27032001-04-26 23:22:31 +00002849 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002850 pi = xzalloc(sizeof(struct pipe));
2851 /*pi->num_progs = 0;*/
2852 /*pi->progs = NULL;*/
2853 /*pi->next = NULL;*/
2854 /*pi->followup = 0; invalid */
2855 if (RES_NONE)
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002856 pi->res_word = RES_NONE;
Eric Andersen25f27032001-04-26 23:22:31 +00002857 return pi;
2858}
2859
2860static void initialize_context(struct p_context *ctx)
2861{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002862 ctx->child = NULL;
Denis Vlasenko1a735862007-05-23 00:32:25 +00002863 ctx->pipe = ctx->list_head = new_pipe();
2864 ctx->pending_redirect = NULL;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002865 ctx->res_w = RES_NONE;
Denis Vlasenko1a735862007-05-23 00:32:25 +00002866 //only ctx->parse_type is not touched... is this intentional?
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002867 ctx->old_flag = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00002868 ctx->stack = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002869 done_command(ctx); /* creates the memory for working child */
2870}
2871
2872/* normal return is 0
2873 * if a reserved word is found, and processed, return 1
2874 * should handle if, then, elif, else, fi, for, while, until, do, done.
2875 * case, function, and select are obnoxious, save those for later.
2876 */
Denis Vlasenko06810332007-05-21 23:30:54 +00002877#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +00002878static int reserved_word(o_string *dest, struct p_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00002879{
2880 struct reserved_combo {
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002881 char literal[7];
2882 unsigned char code;
2883 int flag;
Eric Andersen25f27032001-04-26 23:22:31 +00002884 };
2885 /* Mostly a list of accepted follow-up reserved words.
2886 * FLAG_END means we are done with the sequence, and are ready
2887 * to turn the compound list into a command.
2888 * FLAG_START means the word must start a new compound list.
2889 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002890 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00002891#if ENABLE_HUSH_IF
Eric Andersen25f27032001-04-26 23:22:31 +00002892 { "if", RES_IF, FLAG_THEN | FLAG_START },
2893 { "then", RES_THEN, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
2894 { "elif", RES_ELIF, FLAG_THEN },
2895 { "else", RES_ELSE, FLAG_FI },
2896 { "fi", RES_FI, FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00002897#endif
2898#if ENABLE_HUSH_LOOPS
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002899 { "for", RES_FOR, FLAG_IN | FLAG_START },
Eric Andersen25f27032001-04-26 23:22:31 +00002900 { "while", RES_WHILE, FLAG_DO | FLAG_START },
2901 { "until", RES_UNTIL, FLAG_DO | FLAG_START },
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002902 { "in", RES_IN, FLAG_DO },
Eric Andersen25f27032001-04-26 23:22:31 +00002903 { "do", RES_DO, FLAG_DONE },
2904 { "done", RES_DONE, FLAG_END }
Denis Vlasenko06810332007-05-21 23:30:54 +00002905#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002906 };
Denis Vlasenko7d4c44e2007-04-16 22:34:39 +00002907 enum { NRES = sizeof(reserved_list)/sizeof(reserved_list[0]) };
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002908 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002909
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002910 for (r = reserved_list; r < reserved_list + NRES; r++) {
Denis Vlasenko1a735862007-05-23 00:32:25 +00002911 if (strcmp(dest->data, r->literal) != 0)
2912 continue;
2913 debug_printf("found reserved word %s, code %d\n", r->literal, r->code);
2914 if (r->flag & FLAG_START) {
2915 struct p_context *new;
2916 debug_printf("push stack\n");
Denis Vlasenko06810332007-05-21 23:30:54 +00002917#if ENABLE_HUSH_LOOPS
Denis Vlasenko1a735862007-05-23 00:32:25 +00002918 if (ctx->res_w == RES_IN || ctx->res_w == RES_FOR) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00002919 syntax("malformed for"); /* example: 'for if' */
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002920 ctx->res_w = RES_SNTX;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002921 b_reset(dest);
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002922 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002923 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00002924#endif
2925 new = xmalloc(sizeof(*new));
2926 *new = *ctx; /* physical copy */
2927 initialize_context(ctx);
2928 ctx->stack = new;
2929 } else if (ctx->res_w == RES_NONE || !(ctx->old_flag & (1 << r->code))) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00002930 syntax(NULL);
Denis Vlasenko1a735862007-05-23 00:32:25 +00002931 ctx->res_w = RES_SNTX;
Denis Vlasenkoff131b92007-04-10 15:42:06 +00002932 b_reset(dest);
Eric Andersen25f27032001-04-26 23:22:31 +00002933 return 1;
2934 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00002935 ctx->res_w = r->code;
2936 ctx->old_flag = r->flag;
2937 if (ctx->old_flag & FLAG_END) {
2938 struct p_context *old;
2939 debug_printf("pop stack\n");
2940 done_pipe(ctx, PIPE_SEQ);
2941 old = ctx->stack;
2942 old->child->group = ctx->list_head;
2943 old->child->subshell = 0;
2944 *ctx = *old; /* physical copy */
2945 free(old);
2946 }
2947 b_reset(dest);
2948 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002949 }
2950 return 0;
2951}
Denis Vlasenko06810332007-05-21 23:30:54 +00002952#else
2953#define reserved_word(dest, ctx) ((int)0)
2954#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002955
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002956/* Normal return is 0.
Eric Andersen25f27032001-04-26 23:22:31 +00002957 * Syntax or xglob errors return 1. */
2958static int done_word(o_string *dest, struct p_context *ctx)
2959{
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002960 struct child_prog *child = ctx->child;
Eric Andersen25f27032001-04-26 23:22:31 +00002961 glob_t *glob_target;
2962 int gr, flags = 0;
2963
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002964 debug_printf_parse("done_word entered: '%s' %p\n", dest->data, child);
Eric Andersen25f27032001-04-26 23:22:31 +00002965 if (dest->length == 0 && !dest->nonnull) {
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002966 debug_printf_parse("done_word return 0: true null, ignored\n");
Eric Andersen25f27032001-04-26 23:22:31 +00002967 return 0;
2968 }
2969 if (ctx->pending_redirect) {
2970 glob_target = &ctx->pending_redirect->word;
2971 } else {
2972 if (child->group) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00002973 syntax(NULL);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002974 debug_printf_parse("done_word return 1: syntax error, groups and arglists don't mix\n");
2975 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002976 }
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002977 if (!child->argv && (ctx->parse_type & PARSEFLAG_SEMICOLON)) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002978 debug_printf_parse(": checking '%s' for reserved-ness\n", dest->data);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002979 if (reserved_word(dest, ctx)) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002980 debug_printf_parse("done_word return %d\n", (ctx->res_w == RES_SNTX));
2981 return (ctx->res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002982 }
Eric Andersen25f27032001-04-26 23:22:31 +00002983 }
2984 glob_target = &child->glob_result;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002985 if (child->argv)
2986 flags |= GLOB_APPEND;
Eric Andersen25f27032001-04-26 23:22:31 +00002987 }
2988 gr = xglob(dest, flags, glob_target);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002989 if (gr != 0) {
2990 debug_printf_parse("done_word return 1: xglob returned %d\n", gr);
2991 return 1;
2992 }
Eric Andersen25f27032001-04-26 23:22:31 +00002993
2994 b_reset(dest);
2995 if (ctx->pending_redirect) {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002996 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002997 if (glob_target->gl_pathc != 1) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00002998 bb_error_msg("ambiguous redirect");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002999 debug_printf_parse("done_word return 1: ambiguous redirect\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003000 return 1;
3001 }
3002 } else {
3003 child->argv = glob_target->gl_pathv;
3004 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003005#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003006 if (ctx->res_w == RES_FOR) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003007 done_word(dest, ctx);
3008 done_pipe(ctx, PIPE_SEQ);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003009 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003010#endif
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003011 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003012 return 0;
3013}
3014
3015/* The only possible error here is out of memory, in which case
3016 * xmalloc exits. */
3017static int done_command(struct p_context *ctx)
3018{
3019 /* The child is really already in the pipe structure, so
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003020 * advance the pipe counter and make a new, null child. */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003021 struct pipe *pi = ctx->pipe;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003022 struct child_prog *child = ctx->child;
Eric Andersen25f27032001-04-26 23:22:31 +00003023
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003024 if (child) {
3025 if (child->group == NULL
3026 && child->argv == NULL
3027 && child->redirects == NULL
3028 ) {
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003029 debug_printf_parse("done_command: skipping null cmd, num_progs=%d\n", pi->num_progs);
3030 return pi->num_progs;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003031 }
Eric Andersen25f27032001-04-26 23:22:31 +00003032 pi->num_progs++;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003033 debug_printf_parse("done_command: ++num_progs=%d\n", pi->num_progs);
Eric Andersen25f27032001-04-26 23:22:31 +00003034 } else {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003035 debug_printf_parse("done_command: initializing, num_progs=%d\n", pi->num_progs);
Eric Andersen25f27032001-04-26 23:22:31 +00003036 }
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003037
3038 /* Only real trickiness here is that the uncommitted
3039 * child structure is not counted in pi->num_progs. */
Eric Andersen25f27032001-04-26 23:22:31 +00003040 pi->progs = xrealloc(pi->progs, sizeof(*pi->progs) * (pi->num_progs+1));
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003041 child = &pi->progs[pi->num_progs];
Eric Andersen25f27032001-04-26 23:22:31 +00003042
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003043 memset(child, 0, sizeof(*child));
3044 /*child->redirects = NULL;*/
3045 /*child->argv = NULL;*/
3046 /*child->is_stopped = 0;*/
3047 /*child->group = NULL;*/
3048 /*child->glob_result.gl_pathv = NULL;*/
3049 child->family = pi;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003050 //sp: /*child->sp = 0;*/
Denis Vlasenko262d7652007-05-20 21:52:49 +00003051 //pt: child->parse_type = ctx->parse_type;
Eric Andersen25f27032001-04-26 23:22:31 +00003052
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003053 ctx->child = child;
Eric Andersen25f27032001-04-26 23:22:31 +00003054 /* but ctx->pipe and ctx->list_head remain unchanged */
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003055
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003056 return pi->num_progs; /* used only for 0/nonzero check */
Eric Andersen25f27032001-04-26 23:22:31 +00003057}
3058
3059static int done_pipe(struct p_context *ctx, pipe_style type)
3060{
3061 struct pipe *new_p;
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003062 int not_null;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003063
3064 debug_printf_parse("done_pipe entered, followup %d\n", type);
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003065 not_null = done_command(ctx); /* implicit closure of previous command */
Eric Andersen25f27032001-04-26 23:22:31 +00003066 ctx->pipe->followup = type;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003067 ctx->pipe->res_word = ctx->res_w;
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003068 /* Without this check, even just <enter> on command line generates
3069 * tree of three NOPs (!). Which is harmless but annoying.
3070 * IOW: it is safe to do it unconditionally. */
3071 if (not_null) {
3072 new_p = new_pipe();
3073 ctx->pipe->next = new_p;
3074 ctx->pipe = new_p;
3075 ctx->child = NULL;
3076 done_command(ctx); /* set up new pipe to accept commands */
3077 }
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003078 debug_printf_parse("done_pipe return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003079 return 0;
3080}
3081
3082/* peek ahead in the in_str to find out if we have a "&n" construct,
3083 * as in "2>&1", that represents duplicating a file descriptor.
3084 * returns either -2 (syntax error), -1 (no &), or the number found.
3085 */
3086static int redirect_dup_num(struct in_str *input)
3087{
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003088 int ch, d = 0, ok = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003089 ch = b_peek(input);
3090 if (ch != '&') return -1;
3091
3092 b_getch(input); /* get the & */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003093 ch = b_peek(input);
Eric Andersen83a2ae22001-05-07 17:59:25 +00003094 if (ch == '-') {
3095 b_getch(input);
3096 return -3; /* "-" represents "close me" */
3097 }
3098 while (isdigit(ch)) {
Denis Vlasenko7d4c44e2007-04-16 22:34:39 +00003099 d = d*10 + (ch-'0');
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003100 ok = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003101 b_getch(input);
Eric Andersen83a2ae22001-05-07 17:59:25 +00003102 ch = b_peek(input);
Eric Andersen25f27032001-04-26 23:22:31 +00003103 }
3104 if (ok) return d;
3105
Manuel Novoa III cad53642003-03-19 09:13:01 +00003106 bb_error_msg("ambiguous redirect");
Eric Andersen25f27032001-04-26 23:22:31 +00003107 return -2;
3108}
3109
3110/* If a redirect is immediately preceded by a number, that number is
3111 * supposed to tell which file descriptor to redirect. This routine
3112 * looks for such preceding numbers. In an ideal world this routine
3113 * needs to handle all the following classes of redirects...
3114 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3115 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3116 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3117 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
3118 * A -1 output from this program means no valid number was found, so the
3119 * caller should use the appropriate default for this redirection.
3120 */
3121static int redirect_opt_num(o_string *o)
3122{
3123 int num;
3124
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003125 if (o->length == 0)
3126 return -1;
3127 for (num = 0; num < o->length; num++) {
3128 if (!isdigit(*(o->data + num))) {
Eric Andersen25f27032001-04-26 23:22:31 +00003129 return -1;
3130 }
3131 }
3132 /* reuse num (and save an int) */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003133 num = atoi(o->data);
Eric Andersen25f27032001-04-26 23:22:31 +00003134 b_reset(o);
3135 return num;
3136}
3137
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003138#if ENABLE_HUSH_TICK
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +00003139static FILE *generate_stream_from_list(struct pipe *head)
Eric Andersen25f27032001-04-26 23:22:31 +00003140{
3141 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00003142 int pid, channel[2];
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003143 if (pipe(channel) < 0) bb_perror_msg_and_die("pipe");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003144#if BB_MMU
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003145 pid = fork();
Eric Andersen72f9a422001-10-28 05:12:20 +00003146#else
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003147 pid = vfork();
Eric Andersen72f9a422001-10-28 05:12:20 +00003148#endif
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003149 if (pid < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00003150 bb_perror_msg_and_die("fork");
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003151 } else if (pid == 0) {
Eric Andersen25f27032001-04-26 23:22:31 +00003152 close(channel[0]);
3153 if (channel[1] != 1) {
Denis Vlasenko7d4c44e2007-04-16 22:34:39 +00003154 dup2(channel[1], 1);
Eric Andersen25f27032001-04-26 23:22:31 +00003155 close(channel[1]);
3156 }
Eric Andersen94ac2442001-05-22 19:05:18 +00003157 _exit(run_list_real(head)); /* leaks memory */
Eric Andersen25f27032001-04-26 23:22:31 +00003158 }
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003159 debug_printf("forked child %d\n", pid);
Eric Andersen25f27032001-04-26 23:22:31 +00003160 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003161 pf = fdopen(channel[0], "r");
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003162 debug_printf("pipe on FILE *%p\n", pf);
Eric Andersen25f27032001-04-26 23:22:31 +00003163 return pf;
3164}
3165
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003166/* Return code is exit status of the process that is run. */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003167static int process_command_subs(o_string *dest, struct p_context *ctx,
3168 struct in_str *input, const char *subst_end)
Eric Andersen25f27032001-04-26 23:22:31 +00003169{
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003170 int retcode, ch, eol_cnt;
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003171 o_string result = NULL_O_STRING;
Eric Andersen25f27032001-04-26 23:22:31 +00003172 struct p_context inner;
3173 FILE *p;
3174 struct in_str pipe_str;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003175
Eric Andersen25f27032001-04-26 23:22:31 +00003176 initialize_context(&inner);
3177
3178 /* recursion to generate command */
3179 retcode = parse_stream(&result, &inner, input, subst_end);
Denis Vlasenko1a735862007-05-23 00:32:25 +00003180 if (retcode != 0)
3181 return retcode; /* syntax error or EOF */
Eric Andersen25f27032001-04-26 23:22:31 +00003182 done_word(&result, &inner);
3183 done_pipe(&inner, PIPE_SEQ);
3184 b_free(&result);
3185
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003186 p = generate_stream_from_list(inner.list_head);
3187 if (p == NULL) return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003188 mark_open(fileno(p));
3189 setup_file_in_str(&pipe_str, p);
3190
3191 /* now send results of command back into original context */
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003192 eol_cnt = 0;
3193 while ((ch = b_getch(&pipe_str)) != EOF) {
3194 if (ch == '\n') {
3195 eol_cnt++;
3196 continue;
3197 }
3198 while (eol_cnt) {
3199 b_addqchr(dest, '\n', dest->quote);
3200 eol_cnt--;
3201 }
3202 b_addqchr(dest, ch, dest->quote);
Eric Andersen25f27032001-04-26 23:22:31 +00003203 }
3204
3205 debug_printf("done reading from pipe, pclose()ing\n");
3206 /* This is the step that wait()s for the child. Should be pretty
3207 * safe, since we just read an EOF from its stdout. We could try
Denis Vlasenko262d7652007-05-20 21:52:49 +00003208 * to do better, by using wait(), and keeping track of background jobs
Eric Andersen25f27032001-04-26 23:22:31 +00003209 * at the same time. That would be a lot of work, and contrary
3210 * to the KISS philosophy of this program. */
3211 mark_closed(fileno(p));
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003212 retcode = pclose(p);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003213 free_pipe_list(inner.list_head, 0);
3214 debug_printf("pclosed, retcode=%d\n", retcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003215 return retcode;
3216}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003217#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003218
3219static int parse_group(o_string *dest, struct p_context *ctx,
3220 struct in_str *input, int ch)
3221{
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003222 int rcode;
3223 const char *endch = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003224 struct p_context sub;
3225 struct child_prog *child = ctx->child;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003226
3227 debug_printf_parse("parse_group entered\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003228 if (child->argv) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003229 syntax(NULL);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003230 debug_printf_parse("parse_group return 1: syntax error, groups and arglists don't mix\n");
3231 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003232 }
3233 initialize_context(&sub);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003234 endch = "}";
3235 if (ch == '(') {
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003236 endch = ")";
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003237 child->subshell = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003238 }
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003239 rcode = parse_stream(dest, &sub, input, endch);
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00003240//vda: err chk?
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003241 done_word(dest, &sub); /* finish off the final word in the subcontext */
Eric Andersen25f27032001-04-26 23:22:31 +00003242 done_pipe(&sub, PIPE_SEQ); /* and the final command there, too */
3243 child->group = sub.list_head;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003244
3245 debug_printf_parse("parse_group return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003246 return rcode;
3247 /* child remains "open", available for possible redirects */
3248}
3249
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003250/* Basically useful version until someone wants to get fancier,
Eric Andersen25f27032001-04-26 23:22:31 +00003251 * see the bash man page under "Parameter Expansion" */
Denis Vlasenko15d78fb2007-01-30 22:28:21 +00003252static const char *lookup_param(const char *src)
Eric Andersen25f27032001-04-26 23:22:31 +00003253{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003254 struct variable *var = get_local_var(src);
3255 if (var)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00003256 return strchr(var->varstr, '=') + 1;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003257 return NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003258}
3259
3260/* return code: 0 for OK, 1 for syntax error */
3261static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input)
3262{
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003263 int ch = b_peek(input); /* first character after the $ */
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003264 unsigned char quote_mask = dest->quote ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003265
3266 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003267 if (isalpha(ch)) {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003268 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003269 //sp: ctx->child->sp++;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003270 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003271 debug_printf_parse(": '%c'\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003272 b_getch(input);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003273 b_addchr(dest, ch | quote_mask);
3274 quote_mask = 0;
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003275 ch = b_peek(input);
3276 if (!isalnum(ch) && ch != '_')
3277 break;
Eric Andersen25f27032001-04-26 23:22:31 +00003278 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003279 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003280 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003281 make_one_char_var:
3282 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003283 //sp: ctx->child->sp++;
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003284 debug_printf_parse(": '%c'\n", ch);
3285 b_getch(input);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003286 b_addchr(dest, ch | quote_mask);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003287 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003288 } else switch (ch) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003289 case '$': /* pid */
3290 case '!': /* last bg pid */
3291 case '?': /* last exit code */
3292 case '#': /* number of args */
3293 case '*': /* args */
3294 case '@': /* args */
3295 goto make_one_char_var;
Eric Andersen25f27032001-04-26 23:22:31 +00003296 case '{':
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003297 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003298 //sp: ctx->child->sp++;
Eric Andersen25f27032001-04-26 23:22:31 +00003299 b_getch(input);
3300 /* XXX maybe someone will try to escape the '}' */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003301 while (1) {
3302 ch = b_getch(input);
Denis Vlasenkob0550012007-05-24 12:18:16 +00003303 if (ch == '}')
3304 break;
3305 if (!isalnum(ch) && ch != '_') {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003306 syntax("unterminated ${name}");
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003307 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
3308 return 1;
3309 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003310 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003311 b_addchr(dest, ch | quote_mask);
3312 quote_mask = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003313 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003314 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003315 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003316#if ENABLE_HUSH_TICK
Eric Andersen25f27032001-04-26 23:22:31 +00003317 case '(':
Matt Kraai9f8caf12001-05-02 16:26:12 +00003318 b_getch(input);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003319 process_command_subs(dest, ctx, input, ")");
Eric Andersen25f27032001-04-26 23:22:31 +00003320 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003321#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003322 case '-':
3323 case '_':
3324 /* still unhandled, but should be eventually */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003325 bb_error_msg("unhandled syntax: $%c", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003326 return 1;
3327 break;
3328 default:
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003329 b_addqchr(dest, '$', dest->quote);
Eric Andersen25f27032001-04-26 23:22:31 +00003330 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003331 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003332 return 0;
3333}
3334
Eric Andersen25f27032001-04-26 23:22:31 +00003335/* return code is 0 for normal exit, 1 for syntax error */
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003336static int parse_stream(o_string *dest, struct p_context *ctx,
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003337 struct in_str *input, const char *end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00003338{
"Vladimir N. Oleynik"4ccd2b42006-01-31 09:27:48 +00003339 int ch, m;
Eric Andersen25f27032001-04-26 23:22:31 +00003340 int redir_fd;
3341 redir_type redir_style;
3342 int next;
3343
3344 /* Only double-quote state is handled in the state variable dest->quote.
3345 * A single-quote triggers a bypass of the main loop until its mate is
3346 * found. When recursing, quote state is passed in via dest->quote. */
3347
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003348 debug_printf_parse("parse_stream entered, end_trigger='%s'\n", end_trigger);
3349
Denis Vlasenko1a735862007-05-23 00:32:25 +00003350 while (1) {
Denis Vlasenko1a735862007-05-23 00:32:25 +00003351 m = CHAR_IFS;
3352 next = '\0';
Denis Vlasenko170435c2007-05-23 13:01:10 +00003353 ch = b_getch(input);
Denis Vlasenko1a735862007-05-23 00:32:25 +00003354 if (ch != EOF) {
3355 m = charmap[ch];
3356 if (ch != '\n')
3357 next = b_peek(input);
3358 }
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003359 debug_printf_parse(": ch=%c (%d) m=%d quote=%d\n",
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003360 ch, ch, m, dest->quote);
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003361 if (m == CHAR_ORDINARY
3362 || (m != CHAR_SPECIAL && dest->quote)
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003363 ) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00003364 if (ch == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003365 syntax("unterminated \"");
Denis Vlasenko170435c2007-05-23 13:01:10 +00003366 debug_printf_parse("parse_stream return 1: unterminated \"\n");
3367 return 1;
3368 }
Eric Andersen25f27032001-04-26 23:22:31 +00003369 b_addqchr(dest, ch, dest->quote);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003370 continue;
3371 }
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003372 if (m == CHAR_IFS) {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003373 if (done_word(dest, ctx)) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003374 debug_printf_parse("parse_stream return 1: done_word!=0\n");
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003375 return 1;
Eric Andersenaac75e52001-04-30 18:18:45 +00003376 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00003377 if (ch == EOF)
3378 break;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003379 /* If we aren't performing a substitution, treat
3380 * a newline as a command separator.
3381 * [why we don't handle it exactly like ';'? --vda] */
3382 if (end_trigger && ch == '\n') {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003383 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003384 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003385 }
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003386 if ((end_trigger && strchr(end_trigger, ch))
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003387 && !dest->quote && ctx->res_w == RES_NONE
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003388 ) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003389 debug_printf_parse("parse_stream return 0: end_trigger char found\n");
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003390 return 0;
3391 }
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003392 if (m == CHAR_IFS)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003393 continue;
3394 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00003395 case '#':
3396 if (dest->length == 0 && !dest->quote) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003397 while (1) {
3398 ch = b_peek(input);
3399 if (ch == EOF || ch == '\n')
3400 break;
3401 b_getch(input);
3402 }
Eric Andersen25f27032001-04-26 23:22:31 +00003403 } else {
3404 b_addqchr(dest, ch, dest->quote);
3405 }
3406 break;
3407 case '\\':
3408 if (next == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003409 syntax("\\<eof>");
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003410 debug_printf_parse("parse_stream return 1: \\<eof>\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003411 return 1;
3412 }
3413 b_addqchr(dest, '\\', dest->quote);
3414 b_addqchr(dest, b_getch(input), dest->quote);
3415 break;
3416 case '$':
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003417 if (handle_dollar(dest, ctx, input) != 0) {
3418 debug_printf_parse("parse_stream return 1: handle_dollar returned non-0\n");
3419 return 1;
3420 }
Eric Andersen25f27032001-04-26 23:22:31 +00003421 break;
3422 case '\'':
3423 dest->nonnull = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003424 while (1) {
3425 ch = b_getch(input);
3426 if (ch == EOF || ch == '\'')
3427 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003428 b_addchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003429 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003430 if (ch == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003431 syntax("unterminated '");
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003432 debug_printf_parse("parse_stream return 1: unterminated '\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003433 return 1;
3434 }
3435 break;
3436 case '"':
3437 dest->nonnull = 1;
3438 dest->quote = !dest->quote;
3439 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003440#if ENABLE_HUSH_TICK
Eric Andersen25f27032001-04-26 23:22:31 +00003441 case '`':
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003442 process_command_subs(dest, ctx, input, "`");
Eric Andersen25f27032001-04-26 23:22:31 +00003443 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003444#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003445 case '>':
3446 redir_fd = redirect_opt_num(dest);
3447 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003448 redir_style = REDIRECT_OVERWRITE;
Eric Andersen25f27032001-04-26 23:22:31 +00003449 if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003450 redir_style = REDIRECT_APPEND;
Eric Andersen25f27032001-04-26 23:22:31 +00003451 b_getch(input);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003452 }
3453#if 0
3454 else if (next == '(') {
3455 syntax(">(process) not supported");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003456 debug_printf_parse("parse_stream return 1: >(process) not supported\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003457 return 1;
3458 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003459#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003460 setup_redirect(ctx, redir_fd, redir_style, input);
3461 break;
3462 case '<':
3463 redir_fd = redirect_opt_num(dest);
3464 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003465 redir_style = REDIRECT_INPUT;
Eric Andersen25f27032001-04-26 23:22:31 +00003466 if (next == '<') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003467 redir_style = REDIRECT_HEREIS;
Eric Andersen25f27032001-04-26 23:22:31 +00003468 b_getch(input);
3469 } else if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003470 redir_style = REDIRECT_IO;
Eric Andersen25f27032001-04-26 23:22:31 +00003471 b_getch(input);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003472 }
3473#if 0
3474 else if (next == '(') {
3475 syntax("<(process) not supported");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003476 debug_printf_parse("parse_stream return 1: <(process) not supported\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003477 return 1;
3478 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003479#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003480 setup_redirect(ctx, redir_fd, redir_style, input);
3481 break;
3482 case ';':
3483 done_word(dest, ctx);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003484 done_pipe(ctx, PIPE_SEQ);
Eric Andersen25f27032001-04-26 23:22:31 +00003485 break;
3486 case '&':
3487 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003488 if (next == '&') {
Eric Andersen25f27032001-04-26 23:22:31 +00003489 b_getch(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003490 done_pipe(ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00003491 } else {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003492 done_pipe(ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00003493 }
3494 break;
3495 case '|':
3496 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003497 if (next == '|') {
Eric Andersen25f27032001-04-26 23:22:31 +00003498 b_getch(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003499 done_pipe(ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00003500 } else {
3501 /* we could pick up a file descriptor choice here
3502 * with redirect_opt_num(), but bash doesn't do it.
3503 * "echo foo 2| cat" yields "foo 2". */
3504 done_command(ctx);
3505 }
3506 break;
3507 case '(':
3508 case '{':
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003509 if (parse_group(dest, ctx, input, ch) != 0) {
3510 debug_printf_parse("parse_stream return 1: parse_group returned non-0\n");
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003511 return 1;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003512 }
Eric Andersen25f27032001-04-26 23:22:31 +00003513 break;
3514 case ')':
3515 case '}':
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003516 syntax("unexpected }"); /* Proper use of this character is caught by end_trigger */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003517 debug_printf_parse("parse_stream return 1: unexpected '}'\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003518 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003519 default:
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003520 if (ENABLE_HUSH_DEBUG)
3521 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003522 }
3523 }
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003524 /* Complain if quote? No, maybe we just finished a command substitution
Eric Andersen25f27032001-04-26 23:22:31 +00003525 * that was quoted. Example:
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003526 * $ echo "`cat foo` plus more"
Eric Andersen25f27032001-04-26 23:22:31 +00003527 * and we just got the EOF generated by the subshell that ran "cat foo"
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003528 * The only real complaint is if we got an EOF when end_trigger != NULL,
Eric Andersen25f27032001-04-26 23:22:31 +00003529 * that is, we were really supposed to get end_trigger, and never got
3530 * one before the EOF. Can't use the standard "syntax error" return code,
3531 * so that parse_stream_outer can distinguish the EOF and exit smoothly. */
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003532 debug_printf_parse("parse_stream return %d\n", -(end_trigger != NULL));
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003533 if (end_trigger)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003534 return -1;
Eric Andersen25f27032001-04-26 23:22:31 +00003535 return 0;
3536}
3537
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003538static void set_in_charmap(const char *set, int code)
Eric Andersen25f27032001-04-26 23:22:31 +00003539{
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003540 while (*set)
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003541 charmap[(unsigned char)*set++] = code;
Eric Andersen25f27032001-04-26 23:22:31 +00003542}
3543
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003544static void update_charmap(void)
Eric Andersen25f27032001-04-26 23:22:31 +00003545{
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003546 /* char *ifs and char charmap[256] are both globals. */
Eric Andersen25f27032001-04-26 23:22:31 +00003547 ifs = getenv("IFS");
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003548 if (ifs == NULL)
3549 ifs = " \t\n";
Eric Andersen25f27032001-04-26 23:22:31 +00003550 /* Precompute a list of 'flow through' behavior so it can be treated
3551 * quickly up front. Computation is necessary because of IFS.
3552 * Special case handling of IFS == " \t\n" is not implemented.
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003553 * The charmap[] array only really needs two bits each,
3554 * and on most machines that would be faster (reduced L1 cache use).
Eric Andersen25f27032001-04-26 23:22:31 +00003555 */
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003556 memset(charmap, CHAR_ORDINARY, sizeof(charmap));
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003557#if ENABLE_HUSH_TICK
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003558 set_in_charmap("\\$\"`", CHAR_SPECIAL);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003559#else
3560 set_in_charmap("\\$\"", CHAR_SPECIAL);
3561#endif
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003562 set_in_charmap("<>;&|(){}#'", CHAR_ORDINARY_IF_QUOTED);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003563 set_in_charmap(ifs, CHAR_IFS); /* are ordinary if quoted */
Eric Andersen25f27032001-04-26 23:22:31 +00003564}
3565
Eric Andersenaff114c2004-04-14 17:51:38 +00003566/* most recursion does not come through here, the exception is
Denis Vlasenko170435c2007-05-23 13:01:10 +00003567 * from builtin_source() and builtin_eval() */
3568static int parse_and_run_stream(struct in_str *inp, int parse_flag)
Eric Andersen25f27032001-04-26 23:22:31 +00003569{
Eric Andersen25f27032001-04-26 23:22:31 +00003570 struct p_context ctx;
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003571 o_string temp = NULL_O_STRING;
Eric Andersen25f27032001-04-26 23:22:31 +00003572 int rcode;
3573 do {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003574 ctx.parse_type = parse_flag;
Eric Andersen25f27032001-04-26 23:22:31 +00003575 initialize_context(&ctx);
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003576 update_charmap();
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003577 if (!(parse_flag & PARSEFLAG_SEMICOLON) || (parse_flag & PARSEFLAG_REPARSING))
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003578 set_in_charmap(";$&|", CHAR_ORDINARY);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003579#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00003580 inp->promptmode = 0; /* PS1 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003581#endif
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003582 /* We will stop & execute after each ';' or '\n'.
3583 * Example: "sleep 9999; echo TEST" + ctrl-C:
3584 * TEST should be printed */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003585 rcode = parse_stream(&temp, &ctx, inp, ";\n");
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003586 if (rcode != 1 && ctx.old_flag != 0) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003587 syntax(NULL);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003588 }
3589 if (rcode != 1 && ctx.old_flag == 0) {
3590 done_word(&temp, &ctx);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003591 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003592 debug_print_tree(ctx.list_head, 0);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003593 debug_printf_exec("parse_stream_outer: run_list\n");
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003594 run_list(ctx.list_head);
3595 } else {
3596 if (ctx.old_flag != 0) {
3597 free(ctx.stack);
3598 b_reset(&temp);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003599 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003600 temp.nonnull = 0;
3601 temp.quote = 0;
3602 inp->p = NULL;
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003603 free_pipe_list(ctx.list_head, 0);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003604 }
Eric Andersena813afc2001-05-24 16:19:36 +00003605 b_free(&temp);
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003606 } while (rcode != -1 && !(parse_flag & PARSEFLAG_EXIT_FROM_LOOP)); /* loop on syntax errors, return on EOF */
Eric Andersen25f27032001-04-26 23:22:31 +00003607 return 0;
3608}
3609
Denis Vlasenko170435c2007-05-23 13:01:10 +00003610static int parse_and_run_string(const char *s, int parse_flag)
Eric Andersen25f27032001-04-26 23:22:31 +00003611{
3612 struct in_str input;
3613 setup_string_in_str(&input, s);
Denis Vlasenko170435c2007-05-23 13:01:10 +00003614 return parse_and_run_stream(&input, parse_flag);
Eric Andersen25f27032001-04-26 23:22:31 +00003615}
3616
Denis Vlasenko170435c2007-05-23 13:01:10 +00003617static int parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00003618{
3619 int rcode;
3620 struct in_str input;
3621 setup_file_in_str(&input, f);
Denis Vlasenko170435c2007-05-23 13:01:10 +00003622 rcode = parse_and_run_stream(&input, PARSEFLAG_SEMICOLON);
Eric Andersen25f27032001-04-26 23:22:31 +00003623 return rcode;
3624}
3625
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003626#if ENABLE_HUSH_JOB
Eric Andersen6c947d22001-06-25 22:24:38 +00003627/* Make sure we have a controlling tty. If we get started under a job
3628 * aware app (like bash for example), make sure we are now in charge so
3629 * we don't fight over who gets the foreground */
Eric Anderseneaecbf32001-10-31 10:41:31 +00003630static void setup_job_control(void)
Eric Andersen52a97ca2001-06-22 06:49:26 +00003631{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003632 pid_t shell_pgrp;
3633
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00003634 saved_task_pgrp = shell_pgrp = getpgrp();
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003635 debug_printf_jobs("saved_task_pgrp=%d\n", saved_task_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003636 fcntl(interactive_fd, F_SETFD, FD_CLOEXEC);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003637
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00003638 /* If we were ran as 'hush &',
3639 * sleep until we are in the foreground. */
3640 while (tcgetpgrp(interactive_fd) != shell_pgrp) {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003641 /* Send TTIN to ourself (should stop us) */
Denis Vlasenkoff131b92007-04-10 15:42:06 +00003642 kill(- shell_pgrp, SIGTTIN);
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00003643 shell_pgrp = getpgrp();
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003644 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00003645
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003646 /* Ignore job-control and misc signals. */
3647 set_jobctrl_sighandler(SIG_IGN);
3648 set_misc_sighandler(SIG_IGN);
3649//huh? signal(SIGCHLD, SIG_IGN);
3650
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003651 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003652 set_fatal_sighandler(sigexit);
Eric Andersen6c947d22001-06-25 22:24:38 +00003653
3654 /* Put ourselves in our own process group. */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003655 setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
Eric Andersen6c947d22001-06-25 22:24:38 +00003656 /* Grab control of the terminal. */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003657 tcsetpgrp(interactive_fd, getpid());
Eric Andersen6c947d22001-06-25 22:24:38 +00003658}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003659#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00003660
Denis Vlasenko06af2162007-02-03 17:28:39 +00003661int hush_main(int argc, char **argv);
Matt Kraai2d91deb2001-08-01 17:21:35 +00003662int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00003663{
3664 int opt;
3665 FILE *input;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003666 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003667 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00003668
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00003669 PTR_TO_GLOBALS = xzalloc(sizeof(G));
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003670
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00003671 shell_ver = const_shell_ver; /* copying struct here */
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003672 top_var = &shell_ver;
3673 /* initialize our shell local variables with the values
3674 * currently living in the environment */
3675 e = environ;
3676 cur_var = top_var;
3677 if (e) while (*e) {
3678 char *value = strchr(*e, '=');
3679 if (value) { /* paranoia */
3680 cur_var->next = xzalloc(sizeof(*cur_var));
3681 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00003682 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003683 cur_var->max_len = strlen(*e);
3684 cur_var->flg_export = 1;
3685 }
3686 e++;
3687 }
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00003688 putenv(shell_ver.varstr);
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00003689
Denis Vlasenko38f63192007-01-22 09:03:07 +00003690#if ENABLE_FEATURE_EDITING
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003691 line_input_state = new_line_input_t(FOR_SHELL);
3692#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003693 /* XXX what should these be while sourcing /etc/profile? */
3694 global_argc = argc;
3695 global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00003696 /* Initialize some more globals to non-zero values */
3697 set_cwd();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003698#if ENABLE_HUSH_INTERACTIVE
3699#if ENABLE_FEATURE_EDITING
3700 cmdedit_set_initial_prompt();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003701#endif
Eric Andersen94ac2442001-05-22 19:05:18 +00003702 PS2 = "> ";
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003703#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00003704
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003705 if (EXIT_SUCCESS) /* otherwise is already done */
3706 last_return_code = EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +00003707
3708 if (argv[0] && argv[0][0] == '-') {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003709 debug_printf("sourcing /etc/profile\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003710 input = fopen("/etc/profile", "r");
3711 if (input != NULL) {
Eric Andersena90f20b2001-06-26 23:00:21 +00003712 mark_open(fileno(input));
Denis Vlasenko170435c2007-05-23 13:01:10 +00003713 parse_and_run_file(input);
Eric Andersena90f20b2001-06-26 23:00:21 +00003714 mark_closed(fileno(input));
3715 fclose(input);
3716 }
Eric Andersen25f27032001-04-26 23:22:31 +00003717 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003718 input = stdin;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003719
Eric Andersen25f27032001-04-26 23:22:31 +00003720 while ((opt = getopt(argc, argv, "c:xif")) > 0) {
3721 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003722 case 'c':
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003723 global_argv = argv + optind;
3724 global_argc = argc - optind;
Denis Vlasenko170435c2007-05-23 13:01:10 +00003725 opt = parse_and_run_string(optarg, PARSEFLAG_SEMICOLON);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003726 goto final_return;
3727 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003728 /* Well, we cannot just declare interactiveness,
3729 * we have to have some stuff (ctty, etc) */
3730 /* interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003731 break;
3732 case 'f':
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00003733 fake_mode = 1;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003734 break;
3735 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00003736#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003737 fprintf(stderr, "Usage: sh [FILE]...\n"
3738 " or: sh -c command [args]...\n\n");
3739 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00003740#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003741 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00003742#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003743 }
3744 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003745#if ENABLE_HUSH_JOB
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003746 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00003747 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00003748 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00003749 * no arguments remaining or the -s flag given
3750 * standard input is a terminal
3751 * standard output is a terminal
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003752 * Refer to Posix.2, the description of the 'sh' utility. */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003753 if (argv[optind] == NULL && input == stdin
3754 && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)
3755 ) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003756 saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
3757 debug_printf("saved_tty_pgrp=%d\n", saved_tty_pgrp);
3758 if (saved_tty_pgrp >= 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003759 /* try to dup to high fd#, >= 255 */
3760 interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
3761 if (interactive_fd < 0) {
3762 /* try to dup to any fd */
3763 interactive_fd = dup(STDIN_FILENO);
3764 if (interactive_fd < 0)
3765 /* give up */
3766 interactive_fd = 0;
3767 }
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003768 // TODO: track & disallow any attempts of user
3769 // to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003770 }
Eric Andersen25f27032001-04-26 23:22:31 +00003771 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003772 debug_printf("interactive_fd=%d\n", interactive_fd);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003773 if (interactive_fd) {
Eric Andersen25f27032001-04-26 23:22:31 +00003774 /* Looks like they want an interactive shell */
Eric Andersen52a97ca2001-06-22 06:49:26 +00003775 setup_job_control();
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003776 /* Make xfuncs do cleanup on exit */
3777 die_sleep = -1; /* flag */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003778// FIXME: should we reset die_sleep = 0 whereever we fork?
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003779 if (setjmp(die_jmp)) {
3780 /* xfunc has failed! die die die */
3781 hush_exit(xfunc_error_retval);
3782 }
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003783#if !ENABLE_FEATURE_SH_EXTRA_QUIET
Denis Vlasenkoef36ead2007-05-02 15:34:47 +00003784 printf("\n\n%s hush - the humble shell v"HUSH_VER_STR"\n", BB_BANNER);
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003785 printf("Enter 'help' for a list of built-in commands.\n\n");
3786#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00003787 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003788#elif ENABLE_HUSH_INTERACTIVE
3789/* no job control compiled, only prompt/line editing */
3790 if (argv[optind] == NULL && input == stdin
3791 && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)
3792 ) {
3793 interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
3794 if (interactive_fd < 0) {
3795 /* try to dup to any fd */
3796 interactive_fd = dup(STDIN_FILENO);
3797 if (interactive_fd < 0)
3798 /* give up */
3799 interactive_fd = 0;
3800 }
3801 }
3802
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003803#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003804
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003805 if (argv[optind] == NULL) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00003806 opt = parse_and_run_file(stdin);
Eric Andersene67c3ce2001-05-02 02:09:36 +00003807 goto final_return;
Eric Andersen25f27032001-04-26 23:22:31 +00003808 }
Eric Andersen25f27032001-04-26 23:22:31 +00003809
3810 debug_printf("\nrunning script '%s'\n", argv[optind]);
Denis Vlasenko4c978632007-02-03 03:31:13 +00003811 global_argv = argv + optind;
3812 global_argc = argc - optind;
Rob Landleyd921b2e2006-08-03 15:41:12 +00003813 input = xfopen(argv[optind], "r");
Denis Vlasenko170435c2007-05-23 13:01:10 +00003814 opt = parse_and_run_file(input);
Eric Andersen25f27032001-04-26 23:22:31 +00003815
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003816 final_return:
3817
Denis Vlasenko38f63192007-01-22 09:03:07 +00003818#if ENABLE_FEATURE_CLEAN_UP
Eric Andersenaeb44c42001-05-22 20:29:00 +00003819 fclose(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003820 if (cwd != bb_msg_unknown)
Eric Andersenaeb44c42001-05-22 20:29:00 +00003821 free((char*)cwd);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003822 cur_var = top_var->next;
3823 while (cur_var) {
3824 struct variable *tmp = cur_var;
3825 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00003826 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003827 cur_var = cur_var->next;
3828 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00003829 }
Eric Andersen25f27032001-04-26 23:22:31 +00003830#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003831 hush_exit(opt ? opt : last_return_code);
Eric Andersen25f27032001-04-26 23:22:31 +00003832}