Magellan Linux

Contents of /trunk/mkinitrd-magellan/busybox/shell/hush.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1127 - (show annotations) (download)
Wed Aug 18 22:00:50 2010 UTC (13 years, 8 months ago) by niro
File MIME type: text/plain
File size: 226667 byte(s)
-added upstream shell patch
1 /* vi: set sw=4 ts=4: */
2 /*
3 * 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 * Copyright (C) 2008,2009 Denys Vlasenko <vda.linux@googlemail.com>
10 *
11 * Credits:
12 * The parser routines proper are all original material, first
13 * written Dec 2000 and Jan 2001 by Larry Doolittle. The
14 * execution engine, the builtins, and much of the underlying
15 * support has been adapted from busybox-0.49pre's lash, which is
16 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
17 * written by Erik Andersen <andersen@codepoet.org>. That, in turn,
18 * is based in part on ladsh.c, by Michael K. Johnson and Erik W.
19 * Troan, which they placed in the public domain. I don't know
20 * how much of the Johnson/Troan code has survived the repeated
21 * rewrites.
22 *
23 * Other credits:
24 * o_addchr derived from similar w_addchar function in glibc-2.2.
25 * parse_redirect, redirect_opt_num, and big chunks of main
26 * and many builtins derived from contributions by Erik Andersen.
27 * Miscellaneous bugfixes from Matt Kraai.
28 *
29 * There are two big (and related) architecture differences between
30 * this parser and the lash parser. One is that this version is
31 * actually designed from the ground up to understand nearly all
32 * of the Bourne grammar. The second, consequential change is that
33 * the parser and input reader have been turned inside out. Now,
34 * the parser is in control, and asks for input as needed. The old
35 * way had the input reader in control, and it asked for parsing to
36 * take place as needed. The new way makes it much easier to properly
37 * handle the recursion implicit in the various substitutions, especially
38 * across continuation lines.
39 *
40 * TODOs:
41 * grep for "TODO" and fix (some of them are easy)
42 * special variables (done: PWD, PPID, RANDOM)
43 * tilde expansion
44 * aliases
45 * follow IFS rules more precisely, including update semantics
46 * builtins mandated by standards we don't support:
47 * [un]alias, command, fc, getopts, newgrp, readonly, times
48 * make complex ${var%...} constructs support optional
49 * make here documents optional
50 *
51 * Bash compat TODO:
52 * redirection of stdout+stderr: &> and >&
53 * subst operator: ${var/[/]expr/expr}
54 * brace expansion: one/{two,three,four}
55 * reserved words: function select
56 * advanced test: [[ ]]
57 * process substitution: <(list) and >(list)
58 * =~: regex operator
59 * let EXPR [EXPR...]
60 * Each EXPR is an arithmetic expression (ARITHMETIC EVALUATION)
61 * If the last arg evaluates to 0, let returns 1; 0 otherwise.
62 * NB: let `echo 'a=a + 1'` - error (IOW: multi-word expansion is used)
63 * ((EXPR))
64 * The EXPR is evaluated according to ARITHMETIC EVALUATION.
65 * This is exactly equivalent to let "EXPR".
66 * $[EXPR]: synonym for $((EXPR))
67 * export builtin should be special, its arguments are assignments
68 * and therefore expansion of them should be "one-word" expansion:
69 * $ export i=`echo 'a b'` # export has one arg: "i=a b"
70 * compare with:
71 * $ ls i=`echo 'a b'` # ls has two args: "i=a" and "b"
72 * ls: cannot access i=a: No such file or directory
73 * ls: cannot access b: No such file or directory
74 * Note1: same applies to local builtin.
75 * Note2: bash 3.2.33(1) does this only if export word itself
76 * is not quoted:
77 * $ export i=`echo 'aaa bbb'`; echo "$i"
78 * aaa bbb
79 * $ "export" i=`echo 'aaa bbb'`; echo "$i"
80 * aaa
81 *
82 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
83 */
84 #include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
85 #include <malloc.h> /* for malloc_trim */
86 #include <glob.h>
87 /* #include <dmalloc.h> */
88 #if ENABLE_HUSH_CASE
89 # include <fnmatch.h>
90 #endif
91
92 #include "shell_common.h"
93 #include "math.h"
94 #include "match.h"
95 #if ENABLE_HUSH_RANDOM_SUPPORT
96 # include "random.h"
97 #else
98 # define CLEAR_RANDOM_T(rnd) ((void)0)
99 #endif
100 #ifndef PIPE_BUF
101 # define PIPE_BUF 4096 /* amount of buffering in a pipe */
102 #endif
103
104
105 /* Build knobs */
106 #define LEAK_HUNTING 0
107 #define BUILD_AS_NOMMU 0
108 /* Enable/disable sanity checks. Ok to enable in production,
109 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
110 * Keeping 1 for now even in released versions.
111 */
112 #define HUSH_DEBUG 1
113 /* Slightly bigger (+200 bytes), but faster hush.
114 * So far it only enables a trick with counting SIGCHLDs and forks,
115 * which allows us to do fewer waitpid's.
116 * (we can detect a case where neither forks were done nor SIGCHLDs happened
117 * and therefore waitpid will return the same result as last time)
118 */
119 #define ENABLE_HUSH_FAST 0
120 /* TODO: implement simplified code for users which do not need ${var%...} ops
121 * So far ${var%...} ops are always enabled:
122 */
123 #define ENABLE_HUSH_DOLLAR_OPS 1
124
125
126 #if BUILD_AS_NOMMU
127 # undef BB_MMU
128 # undef USE_FOR_NOMMU
129 # undef USE_FOR_MMU
130 # define BB_MMU 0
131 # define USE_FOR_NOMMU(...) __VA_ARGS__
132 # define USE_FOR_MMU(...)
133 #endif
134
135 #include "NUM_APPLETS.h"
136 #if NUM_APPLETS == 1
137 /* STANDALONE does not make sense, and won't compile */
138 # undef CONFIG_FEATURE_SH_STANDALONE
139 # undef ENABLE_FEATURE_SH_STANDALONE
140 # undef IF_FEATURE_SH_STANDALONE
141 # undef IF_NOT_FEATURE_SH_STANDALONE
142 # define ENABLE_FEATURE_SH_STANDALONE 0
143 # define IF_FEATURE_SH_STANDALONE(...)
144 # define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
145 #endif
146
147 #if !ENABLE_HUSH_INTERACTIVE
148 # undef ENABLE_FEATURE_EDITING
149 # define ENABLE_FEATURE_EDITING 0
150 # undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
151 # define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
152 #endif
153
154 /* Do we support ANY keywords? */
155 #if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
156 # define HAS_KEYWORDS 1
157 # define IF_HAS_KEYWORDS(...) __VA_ARGS__
158 # define IF_HAS_NO_KEYWORDS(...)
159 #else
160 # define HAS_KEYWORDS 0
161 # define IF_HAS_KEYWORDS(...)
162 # define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
163 #endif
164
165 /* If you comment out one of these below, it will be #defined later
166 * to perform debug printfs to stderr: */
167 #define debug_printf(...) do {} while (0)
168 /* Finer-grained debug switches */
169 #define debug_printf_parse(...) do {} while (0)
170 #define debug_print_tree(a, b) do {} while (0)
171 #define debug_printf_exec(...) do {} while (0)
172 #define debug_printf_env(...) do {} while (0)
173 #define debug_printf_jobs(...) do {} while (0)
174 #define debug_printf_expand(...) do {} while (0)
175 #define debug_printf_varexp(...) do {} while (0)
176 #define debug_printf_glob(...) do {} while (0)
177 #define debug_printf_list(...) do {} while (0)
178 #define debug_printf_subst(...) do {} while (0)
179 #define debug_printf_clean(...) do {} while (0)
180
181 #define ERR_PTR ((void*)(long)1)
182
183 #define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
184
185 #define _SPECIAL_VARS_STR "_*@$!?#"
186 #define SPECIAL_VARS_STR ("_*@$!?#" + 1)
187 #define NUMERIC_SPECVARS_STR ("_*@$!?#" + 3)
188
189 #define SPECIAL_VAR_SYMBOL 3
190
191 struct variable;
192
193 static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
194
195 /* This supports saving pointers malloced in vfork child,
196 * to be freed in the parent.
197 */
198 #if !BB_MMU
199 typedef struct nommu_save_t {
200 char **new_env;
201 struct variable *old_vars;
202 char **argv;
203 char **argv_from_re_execing;
204 } nommu_save_t;
205 #endif
206
207 typedef enum reserved_style {
208 RES_NONE = 0,
209 #if ENABLE_HUSH_IF
210 RES_IF ,
211 RES_THEN ,
212 RES_ELIF ,
213 RES_ELSE ,
214 RES_FI ,
215 #endif
216 #if ENABLE_HUSH_LOOPS
217 RES_FOR ,
218 RES_WHILE ,
219 RES_UNTIL ,
220 RES_DO ,
221 RES_DONE ,
222 #endif
223 #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
224 RES_IN ,
225 #endif
226 #if ENABLE_HUSH_CASE
227 RES_CASE ,
228 /* three pseudo-keywords support contrived "case" syntax: */
229 RES_CASE_IN, /* "case ... IN", turns into RES_MATCH when IN is observed */
230 RES_MATCH , /* "word)" */
231 RES_CASE_BODY, /* "this command is inside CASE" */
232 RES_ESAC ,
233 #endif
234 RES_XXXX ,
235 RES_SNTX
236 } reserved_style;
237
238 typedef struct o_string {
239 char *data;
240 int length; /* position where data is appended */
241 int maxlen;
242 /* Protect newly added chars against globbing
243 * (by prepending \ to *, ?, [, \) */
244 smallint o_escape;
245 smallint o_glob;
246 /* At least some part of the string was inside '' or "",
247 * possibly empty one: word"", wo''rd etc. */
248 smallint o_quoted;
249 smallint has_empty_slot;
250 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
251 } o_string;
252 enum {
253 MAYBE_ASSIGNMENT = 0,
254 DEFINITELY_ASSIGNMENT = 1,
255 NOT_ASSIGNMENT = 2,
256 WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
257 };
258 /* Used for initialization: o_string foo = NULL_O_STRING; */
259 #define NULL_O_STRING { NULL }
260
261 /* I can almost use ordinary FILE*. Is open_memstream() universally
262 * available? Where is it documented? */
263 typedef struct in_str {
264 const char *p;
265 /* eof_flag=1: last char in ->p is really an EOF */
266 char eof_flag; /* meaningless if ->p == NULL */
267 char peek_buf[2];
268 #if ENABLE_HUSH_INTERACTIVE
269 smallint promptme;
270 smallint promptmode; /* 0: PS1, 1: PS2 */
271 #endif
272 FILE *file;
273 int (*get) (struct in_str *) FAST_FUNC;
274 int (*peek) (struct in_str *) FAST_FUNC;
275 } in_str;
276 #define i_getch(input) ((input)->get(input))
277 #define i_peek(input) ((input)->peek(input))
278
279 /* The descrip member of this structure is only used to make
280 * debugging output pretty */
281 static const struct {
282 int mode;
283 signed char default_fd;
284 char descrip[3];
285 } redir_table[] = {
286 { O_RDONLY, 0, "<" },
287 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
288 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
289 { O_CREAT|O_RDWR, 1, "<>" },
290 { O_RDONLY, 0, "<<" },
291 /* Should not be needed. Bogus default_fd helps in debugging */
292 /* { O_RDONLY, 77, "<<" }, */
293 };
294
295 struct redir_struct {
296 struct redir_struct *next;
297 char *rd_filename; /* filename */
298 int rd_fd; /* fd to redirect */
299 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
300 int rd_dup;
301 smallint rd_type; /* (enum redir_type) */
302 /* note: for heredocs, rd_filename contains heredoc delimiter,
303 * and subsequently heredoc itself; and rd_dup is a bitmask:
304 * bit 0: do we need to trim leading tabs?
305 * bit 1: is heredoc quoted (<<'delim' syntax) ?
306 */
307 };
308 typedef enum redir_type {
309 REDIRECT_INPUT = 0,
310 REDIRECT_OVERWRITE = 1,
311 REDIRECT_APPEND = 2,
312 REDIRECT_IO = 3,
313 REDIRECT_HEREDOC = 4,
314 REDIRECT_HEREDOC2 = 5, /* REDIRECT_HEREDOC after heredoc is loaded */
315
316 REDIRFD_CLOSE = -3,
317 REDIRFD_SYNTAX_ERR = -2,
318 REDIRFD_TO_FILE = -1,
319 /* otherwise, rd_fd is redirected to rd_dup */
320
321 HEREDOC_SKIPTABS = 1,
322 HEREDOC_QUOTED = 2,
323 } redir_type;
324
325
326 struct command {
327 pid_t pid; /* 0 if exited */
328 int assignment_cnt; /* how many argv[i] are assignments? */
329 smallint is_stopped; /* is the command currently running? */
330 smallint cmd_type; /* CMD_xxx */
331 #define CMD_NORMAL 0
332 #define CMD_SUBSHELL 1
333
334 /* used for "[[ EXPR ]]" */
335 #if ENABLE_HUSH_BASH_COMPAT
336 # define CMD_SINGLEWORD_NOGLOB 2
337 #endif
338
339 /* used for "export noglob=* glob* a=`echo a b`" */
340 //#define CMD_SINGLEWORD_NOGLOB_COND 3
341 // It is hard to implement correctly, it adds significant amounts of tricky code,
342 // and all this is only useful for really obscure export statements
343 // almost nobody would use anyway. #ifdef CMD_SINGLEWORD_NOGLOB_COND
344 // guards the code which implements it, but I have doubts it works
345 // in all cases (especially with mixed globbed/non-globbed arguments)
346
347 #if ENABLE_HUSH_FUNCTIONS
348 # define CMD_FUNCDEF 3
349 #endif
350
351 /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */
352 struct pipe *group;
353 #if !BB_MMU
354 char *group_as_string;
355 #endif
356 #if ENABLE_HUSH_FUNCTIONS
357 struct function *child_func;
358 /* This field is used to prevent a bug here:
359 * while...do f1() {a;}; f1; f1() {b;}; f1; done
360 * When we execute "f1() {a;}" cmd, we create new function and clear
361 * cmd->group, cmd->group_as_string, cmd->argv[0].
362 * When we execute "f1() {b;}", we notice that f1 exists,
363 * and that its "parent cmd" struct is still "alive",
364 * we put those fields back into cmd->xxx
365 * (struct function has ->parent_cmd ptr to facilitate that).
366 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
367 * Without this trick, loop would execute a;b;b;b;...
368 * instead of correct sequence a;b;a;b;...
369 * When command is freed, it severs the link
370 * (sets ->child_func->parent_cmd to NULL).
371 */
372 #endif
373 char **argv; /* command name and arguments */
374 /* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
375 * and on execution these are substituted with their values.
376 * Substitution can make _several_ words out of one argv[n]!
377 * Example: argv[0]=='.^C*^C.' here: echo .$*.
378 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
379 */
380 struct redir_struct *redirects; /* I/O redirections */
381 };
382 /* Is there anything in this command at all? */
383 #define IS_NULL_CMD(cmd) \
384 (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
385
386
387 struct pipe {
388 struct pipe *next;
389 int num_cmds; /* total number of commands in pipe */
390 int alive_cmds; /* number of commands running (not exited) */
391 int stopped_cmds; /* number of commands alive, but stopped */
392 #if ENABLE_HUSH_JOB
393 int jobid; /* job number */
394 pid_t pgrp; /* process group ID for the job */
395 char *cmdtext; /* name of job */
396 #endif
397 struct command *cmds; /* array of commands in pipe */
398 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
399 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
400 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
401 };
402 typedef enum pipe_style {
403 PIPE_SEQ = 1,
404 PIPE_AND = 2,
405 PIPE_OR = 3,
406 PIPE_BG = 4,
407 } pipe_style;
408 /* Is there anything in this pipe at all? */
409 #define IS_NULL_PIPE(pi) \
410 ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
411
412 /* This holds pointers to the various results of parsing */
413 struct parse_context {
414 /* linked list of pipes */
415 struct pipe *list_head;
416 /* last pipe (being constructed right now) */
417 struct pipe *pipe;
418 /* last command in pipe (being constructed right now) */
419 struct command *command;
420 /* last redirect in command->redirects list */
421 struct redir_struct *pending_redirect;
422 #if !BB_MMU
423 o_string as_string;
424 #endif
425 #if HAS_KEYWORDS
426 smallint ctx_res_w;
427 smallint ctx_inverted; /* "! cmd | cmd" */
428 #if ENABLE_HUSH_CASE
429 smallint ctx_dsemicolon; /* ";;" seen */
430 #endif
431 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
432 int old_flag;
433 /* group we are enclosed in:
434 * example: "if pipe1; pipe2; then pipe3; fi"
435 * when we see "if" or "then", we malloc and copy current context,
436 * and make ->stack point to it. then we parse pipeN.
437 * when closing "then" / fi" / whatever is found,
438 * we move list_head into ->stack->command->group,
439 * copy ->stack into current context, and delete ->stack.
440 * (parsing of { list } and ( list ) doesn't use this method)
441 */
442 struct parse_context *stack;
443 #endif
444 };
445
446 /* On program start, environ points to initial environment.
447 * putenv adds new pointers into it, unsetenv removes them.
448 * Neither of these (de)allocates the strings.
449 * setenv allocates new strings in malloc space and does putenv,
450 * and thus setenv is unusable (leaky) for shell's purposes */
451 #define setenv(...) setenv_is_leaky_dont_use()
452 struct variable {
453 struct variable *next;
454 char *varstr; /* points to "name=" portion */
455 #if ENABLE_HUSH_LOCAL
456 unsigned func_nest_level;
457 #endif
458 int max_len; /* if > 0, name is part of initial env; else name is malloced */
459 smallint flg_export; /* putenv should be done on this var */
460 smallint flg_read_only;
461 };
462
463 enum {
464 BC_BREAK = 1,
465 BC_CONTINUE = 2,
466 };
467
468 #if ENABLE_HUSH_FUNCTIONS
469 struct function {
470 struct function *next;
471 char *name;
472 struct command *parent_cmd;
473 struct pipe *body;
474 # if !BB_MMU
475 char *body_as_string;
476 # endif
477 };
478 #endif
479
480
481 /* "Globals" within this file */
482 /* Sorted roughly by size (smaller offsets == smaller code) */
483 struct globals {
484 /* interactive_fd != 0 means we are an interactive shell.
485 * If we are, then saved_tty_pgrp can also be != 0, meaning
486 * that controlling tty is available. With saved_tty_pgrp == 0,
487 * job control still works, but terminal signals
488 * (^C, ^Z, ^Y, ^\) won't work at all, and background
489 * process groups can only be created with "cmd &".
490 * With saved_tty_pgrp != 0, hush will use tcsetpgrp()
491 * to give tty to the foreground process group,
492 * and will take it back when the group is stopped (^Z)
493 * or killed (^C).
494 */
495 #if ENABLE_HUSH_INTERACTIVE
496 /* 'interactive_fd' is a fd# open to ctty, if we have one
497 * _AND_ if we decided to act interactively */
498 int interactive_fd;
499 const char *PS1;
500 const char *PS2;
501 # define G_interactive_fd (G.interactive_fd)
502 #else
503 # define G_interactive_fd 0
504 #endif
505 #if ENABLE_FEATURE_EDITING
506 line_input_t *line_input_state;
507 #endif
508 pid_t root_pid;
509 pid_t root_ppid;
510 pid_t last_bg_pid;
511 #if ENABLE_HUSH_RANDOM_SUPPORT
512 random_t random_gen;
513 #endif
514 #if ENABLE_HUSH_JOB
515 int run_list_level;
516 int last_jobid;
517 pid_t saved_tty_pgrp;
518 struct pipe *job_list;
519 # define G_saved_tty_pgrp (G.saved_tty_pgrp)
520 #else
521 # define G_saved_tty_pgrp 0
522 #endif
523 smallint flag_SIGINT;
524 #if ENABLE_HUSH_LOOPS
525 smallint flag_break_continue;
526 #endif
527 #if ENABLE_HUSH_FUNCTIONS
528 /* 0: outside of a function (or sourced file)
529 * -1: inside of a function, ok to use return builtin
530 * 1: return is invoked, skip all till end of func
531 */
532 smallint flag_return_in_progress;
533 #endif
534 smallint fake_mode;
535 smallint exiting; /* used to prevent EXIT trap recursion */
536 /* These four support $?, $#, and $1 */
537 smalluint last_exitcode;
538 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
539 smalluint global_args_malloced;
540 smalluint inherited_set_is_saved;
541 /* how many non-NULL argv's we have. NB: $# + 1 */
542 int global_argc;
543 char **global_argv;
544 #if !BB_MMU
545 char *argv0_for_re_execing;
546 #endif
547 #if ENABLE_HUSH_LOOPS
548 unsigned depth_break_continue;
549 unsigned depth_of_loop;
550 #endif
551 const char *ifs;
552 const char *cwd;
553 struct variable *top_var; /* = &G.shell_ver (set in main()) */
554 struct variable shell_ver;
555 #if ENABLE_HUSH_FUNCTIONS
556 struct function *top_func;
557 # if ENABLE_HUSH_LOCAL
558 struct variable **shadowed_vars_pp;
559 unsigned func_nest_level;
560 # endif
561 #endif
562 /* Signal and trap handling */
563 #if ENABLE_HUSH_FAST
564 unsigned count_SIGCHLD;
565 unsigned handled_SIGCHLD;
566 smallint we_have_children;
567 #endif
568 /* which signals have non-DFL handler (even with no traps set)? */
569 unsigned non_DFL_mask;
570 char **traps; /* char *traps[NSIG] */
571 sigset_t blocked_set;
572 sigset_t inherited_set;
573 #if HUSH_DEBUG
574 unsigned long memleak_value;
575 int debug_indent;
576 #endif
577 char user_input_buf[ENABLE_FEATURE_EDITING ? CONFIG_FEATURE_EDITING_MAX_LEN : 2];
578 };
579 #define G (*ptr_to_globals)
580 /* Not #defining name to G.name - this quickly gets unwieldy
581 * (too many defines). Also, I actually prefer to see when a variable
582 * is global, thus "G." prefix is a useful hint */
583 #define INIT_G() do { \
584 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
585 } while (0)
586
587
588 /* Function prototypes for builtins */
589 static int builtin_cd(char **argv) FAST_FUNC;
590 static int builtin_echo(char **argv) FAST_FUNC;
591 static int builtin_eval(char **argv) FAST_FUNC;
592 static int builtin_exec(char **argv) FAST_FUNC;
593 static int builtin_exit(char **argv) FAST_FUNC;
594 static int builtin_export(char **argv) FAST_FUNC;
595 #if ENABLE_HUSH_JOB
596 static int builtin_fg_bg(char **argv) FAST_FUNC;
597 static int builtin_jobs(char **argv) FAST_FUNC;
598 #endif
599 #if ENABLE_HUSH_HELP
600 static int builtin_help(char **argv) FAST_FUNC;
601 #endif
602 #if ENABLE_HUSH_LOCAL
603 static int builtin_local(char **argv) FAST_FUNC;
604 #endif
605 #if HUSH_DEBUG
606 static int builtin_memleak(char **argv) FAST_FUNC;
607 #endif
608 #if ENABLE_PRINTF
609 static int builtin_printf(char **argv) FAST_FUNC;
610 #endif
611 static int builtin_pwd(char **argv) FAST_FUNC;
612 static int builtin_read(char **argv) FAST_FUNC;
613 static int builtin_set(char **argv) FAST_FUNC;
614 static int builtin_shift(char **argv) FAST_FUNC;
615 static int builtin_source(char **argv) FAST_FUNC;
616 static int builtin_test(char **argv) FAST_FUNC;
617 static int builtin_trap(char **argv) FAST_FUNC;
618 static int builtin_type(char **argv) FAST_FUNC;
619 static int builtin_true(char **argv) FAST_FUNC;
620 static int builtin_umask(char **argv) FAST_FUNC;
621 static int builtin_unset(char **argv) FAST_FUNC;
622 static int builtin_wait(char **argv) FAST_FUNC;
623 #if ENABLE_HUSH_LOOPS
624 static int builtin_break(char **argv) FAST_FUNC;
625 static int builtin_continue(char **argv) FAST_FUNC;
626 #endif
627 #if ENABLE_HUSH_FUNCTIONS
628 static int builtin_return(char **argv) FAST_FUNC;
629 #endif
630
631 /* Table of built-in functions. They can be forked or not, depending on
632 * context: within pipes, they fork. As simple commands, they do not.
633 * When used in non-forking context, they can change global variables
634 * in the parent shell process. If forked, of course they cannot.
635 * For example, 'unset foo | whatever' will parse and run, but foo will
636 * still be set at the end. */
637 struct built_in_command {
638 const char *b_cmd;
639 int (*b_function)(char **argv) FAST_FUNC;
640 #if ENABLE_HUSH_HELP
641 const char *b_descr;
642 # define BLTIN(cmd, func, help) { cmd, func, help }
643 #else
644 # define BLTIN(cmd, func, help) { cmd, func }
645 #endif
646 };
647
648 static const struct built_in_command bltins1[] = {
649 BLTIN("." , builtin_source , "Run commands in a file"),
650 BLTIN(":" , builtin_true , NULL),
651 #if ENABLE_HUSH_JOB
652 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
653 #endif
654 #if ENABLE_HUSH_LOOPS
655 BLTIN("break" , builtin_break , "Exit from a loop"),
656 #endif
657 BLTIN("cd" , builtin_cd , "Change directory"),
658 #if ENABLE_HUSH_LOOPS
659 BLTIN("continue" , builtin_continue, "Start new loop iteration"),
660 #endif
661 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
662 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
663 BLTIN("exit" , builtin_exit , "Exit"),
664 BLTIN("export" , builtin_export , "Set environment variables"),
665 #if ENABLE_HUSH_JOB
666 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
667 #endif
668 #if ENABLE_HUSH_HELP
669 BLTIN("help" , builtin_help , NULL),
670 #endif
671 #if ENABLE_HUSH_JOB
672 BLTIN("jobs" , builtin_jobs , "List jobs"),
673 #endif
674 #if ENABLE_HUSH_LOCAL
675 BLTIN("local" , builtin_local , "Set local variables"),
676 #endif
677 #if HUSH_DEBUG
678 BLTIN("memleak" , builtin_memleak , NULL),
679 #endif
680 BLTIN("read" , builtin_read , "Input into variable"),
681 #if ENABLE_HUSH_FUNCTIONS
682 BLTIN("return" , builtin_return , "Return from a function"),
683 #endif
684 BLTIN("set" , builtin_set , "Set/unset positional parameters"),
685 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
686 #if ENABLE_HUSH_BASH_COMPAT
687 BLTIN("source" , builtin_source , "Run commands in a file"),
688 #endif
689 BLTIN("trap" , builtin_trap , "Trap signals"),
690 BLTIN("type" , builtin_type , "Show command type"),
691 BLTIN("ulimit" , shell_builtin_ulimit , "Control resource limits"),
692 BLTIN("umask" , builtin_umask , "Set file creation mask"),
693 BLTIN("unset" , builtin_unset , "Unset variables"),
694 BLTIN("wait" , builtin_wait , "Wait for process"),
695 };
696 /* For now, echo and test are unconditionally enabled.
697 * Maybe make it configurable? */
698 static const struct built_in_command bltins2[] = {
699 BLTIN("[" , builtin_test , NULL),
700 BLTIN("echo" , builtin_echo , NULL),
701 #if ENABLE_PRINTF
702 BLTIN("printf" , builtin_printf , NULL),
703 #endif
704 BLTIN("pwd" , builtin_pwd , NULL),
705 BLTIN("test" , builtin_test , NULL),
706 };
707
708
709 /* Debug printouts.
710 */
711 #if HUSH_DEBUG
712 /* prevent disasters with G.debug_indent < 0 */
713 # define indent() fprintf(stderr, "%*s", (G.debug_indent * 2) & 0xff, "")
714 # define debug_enter() (G.debug_indent++)
715 # define debug_leave() (G.debug_indent--)
716 #else
717 # define indent() ((void)0)
718 # define debug_enter() ((void)0)
719 # define debug_leave() ((void)0)
720 #endif
721
722 #ifndef debug_printf
723 # define debug_printf(...) (indent(), fprintf(stderr, __VA_ARGS__))
724 #endif
725
726 #ifndef debug_printf_parse
727 # define debug_printf_parse(...) (indent(), fprintf(stderr, __VA_ARGS__))
728 #endif
729
730 #ifndef debug_printf_exec
731 #define debug_printf_exec(...) (indent(), fprintf(stderr, __VA_ARGS__))
732 #endif
733
734 #ifndef debug_printf_env
735 # define debug_printf_env(...) (indent(), fprintf(stderr, __VA_ARGS__))
736 #endif
737
738 #ifndef debug_printf_jobs
739 # define debug_printf_jobs(...) (indent(), fprintf(stderr, __VA_ARGS__))
740 # define DEBUG_JOBS 1
741 #else
742 # define DEBUG_JOBS 0
743 #endif
744
745 #ifndef debug_printf_expand
746 # define debug_printf_expand(...) (indent(), fprintf(stderr, __VA_ARGS__))
747 # define DEBUG_EXPAND 1
748 #else
749 # define DEBUG_EXPAND 0
750 #endif
751
752 #ifndef debug_printf_varexp
753 # define debug_printf_varexp(...) (indent(), fprintf(stderr, __VA_ARGS__))
754 #endif
755
756 #ifndef debug_printf_glob
757 # define debug_printf_glob(...) (indent(), fprintf(stderr, __VA_ARGS__))
758 # define DEBUG_GLOB 1
759 #else
760 # define DEBUG_GLOB 0
761 #endif
762
763 #ifndef debug_printf_list
764 # define debug_printf_list(...) (indent(), fprintf(stderr, __VA_ARGS__))
765 #endif
766
767 #ifndef debug_printf_subst
768 # define debug_printf_subst(...) (indent(), fprintf(stderr, __VA_ARGS__))
769 #endif
770
771 #ifndef debug_printf_clean
772 # define debug_printf_clean(...) (indent(), fprintf(stderr, __VA_ARGS__))
773 # define DEBUG_CLEAN 1
774 #else
775 # define DEBUG_CLEAN 0
776 #endif
777
778 #if DEBUG_EXPAND
779 static void debug_print_strings(const char *prefix, char **vv)
780 {
781 indent();
782 fprintf(stderr, "%s:\n", prefix);
783 while (*vv)
784 fprintf(stderr, " '%s'\n", *vv++);
785 }
786 #else
787 # define debug_print_strings(prefix, vv) ((void)0)
788 #endif
789
790
791 /* Leak hunting. Use hush_leaktool.sh for post-processing.
792 */
793 #if LEAK_HUNTING
794 static void *xxmalloc(int lineno, size_t size)
795 {
796 void *ptr = xmalloc((size + 0xff) & ~0xff);
797 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
798 return ptr;
799 }
800 static void *xxrealloc(int lineno, void *ptr, size_t size)
801 {
802 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
803 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
804 return ptr;
805 }
806 static char *xxstrdup(int lineno, const char *str)
807 {
808 char *ptr = xstrdup(str);
809 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
810 return ptr;
811 }
812 static void xxfree(void *ptr)
813 {
814 fdprintf(2, "free %p\n", ptr);
815 free(ptr);
816 }
817 # define xmalloc(s) xxmalloc(__LINE__, s)
818 # define xrealloc(p, s) xxrealloc(__LINE__, p, s)
819 # define xstrdup(s) xxstrdup(__LINE__, s)
820 # define free(p) xxfree(p)
821 #endif
822
823
824 /* Syntax and runtime errors. They always abort scripts.
825 * In interactive use they usually discard unparsed and/or unexecuted commands
826 * and return to the prompt.
827 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
828 */
829 #if HUSH_DEBUG < 2
830 # define die_if_script(lineno, ...) die_if_script(__VA_ARGS__)
831 # define syntax_error(lineno, msg) syntax_error(msg)
832 # define syntax_error_at(lineno, msg) syntax_error_at(msg)
833 # define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
834 # define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
835 # define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
836 #endif
837
838 static void die_if_script(unsigned lineno, const char *fmt, ...)
839 {
840 va_list p;
841
842 #if HUSH_DEBUG >= 2
843 bb_error_msg("hush.c:%u", lineno);
844 #endif
845 va_start(p, fmt);
846 bb_verror_msg(fmt, p, NULL);
847 va_end(p);
848 if (!G_interactive_fd)
849 xfunc_die();
850 }
851
852 static void syntax_error(unsigned lineno, const char *msg)
853 {
854 if (msg)
855 die_if_script(lineno, "syntax error: %s", msg);
856 else
857 die_if_script(lineno, "syntax error", NULL);
858 }
859
860 static void syntax_error_at(unsigned lineno, const char *msg)
861 {
862 die_if_script(lineno, "syntax error at '%s'", msg);
863 }
864
865 static void syntax_error_unterm_str(unsigned lineno, const char *s)
866 {
867 die_if_script(lineno, "syntax error: unterminated %s", s);
868 }
869
870 /* It so happens that all such cases are totally fatal
871 * even if shell is interactive: EOF while looking for closing
872 * delimiter. There is nowhere to read stuff from after that,
873 * it's EOF! The only choice is to terminate.
874 */
875 static void syntax_error_unterm_ch(unsigned lineno, char ch) NORETURN;
876 static void syntax_error_unterm_ch(unsigned lineno, char ch)
877 {
878 char msg[2] = { ch, '\0' };
879 syntax_error_unterm_str(lineno, msg);
880 xfunc_die();
881 }
882
883 static void syntax_error_unexpected_ch(unsigned lineno, int ch)
884 {
885 char msg[2];
886 msg[0] = ch;
887 msg[1] = '\0';
888 die_if_script(lineno, "syntax error: unexpected %s", ch == EOF ? "EOF" : msg);
889 }
890
891 #if HUSH_DEBUG < 2
892 # undef die_if_script
893 # undef syntax_error
894 # undef syntax_error_at
895 # undef syntax_error_unterm_ch
896 # undef syntax_error_unterm_str
897 # undef syntax_error_unexpected_ch
898 #else
899 # define die_if_script(...) die_if_script(__LINE__, __VA_ARGS__)
900 # define syntax_error(msg) syntax_error(__LINE__, msg)
901 # define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
902 # define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
903 # define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
904 # define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
905 #endif
906
907
908 #if ENABLE_HUSH_INTERACTIVE
909 static void cmdedit_update_prompt(void);
910 #else
911 # define cmdedit_update_prompt() ((void)0)
912 #endif
913
914
915 /* Utility functions
916 */
917 /* Replace each \x with x in place, return ptr past NUL. */
918 static char *unbackslash(char *src)
919 {
920 char *dst = src = strchrnul(src, '\\');
921 while (1) {
922 if (*src == '\\')
923 src++;
924 if ((*dst++ = *src++) == '\0')
925 break;
926 }
927 return dst;
928 }
929
930 static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
931 {
932 int i;
933 unsigned count1;
934 unsigned count2;
935 char **v;
936
937 v = strings;
938 count1 = 0;
939 if (v) {
940 while (*v) {
941 count1++;
942 v++;
943 }
944 }
945 count2 = 0;
946 v = add;
947 while (*v) {
948 count2++;
949 v++;
950 }
951 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
952 v[count1 + count2] = NULL;
953 i = count2;
954 while (--i >= 0)
955 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
956 return v;
957 }
958 #if LEAK_HUNTING
959 static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
960 {
961 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
962 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
963 return ptr;
964 }
965 #define add_strings_to_strings(strings, add, need_to_dup) \
966 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
967 #endif
968
969 /* Note: takes ownership of "add" ptr (it is not strdup'ed) */
970 static char **add_string_to_strings(char **strings, char *add)
971 {
972 char *v[2];
973 v[0] = add;
974 v[1] = NULL;
975 return add_strings_to_strings(strings, v, /*dup:*/ 0);
976 }
977 #if LEAK_HUNTING
978 static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
979 {
980 char **ptr = add_string_to_strings(strings, add);
981 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
982 return ptr;
983 }
984 #define add_string_to_strings(strings, add) \
985 xx_add_string_to_strings(__LINE__, strings, add)
986 #endif
987
988 static void free_strings(char **strings)
989 {
990 char **v;
991
992 if (!strings)
993 return;
994 v = strings;
995 while (*v) {
996 free(*v);
997 v++;
998 }
999 free(strings);
1000 }
1001
1002
1003 /* Helpers for setting new $n and restoring them back
1004 */
1005 typedef struct save_arg_t {
1006 char *sv_argv0;
1007 char **sv_g_argv;
1008 int sv_g_argc;
1009 smallint sv_g_malloced;
1010 } save_arg_t;
1011
1012 static void save_and_replace_G_args(save_arg_t *sv, char **argv)
1013 {
1014 int n;
1015
1016 sv->sv_argv0 = argv[0];
1017 sv->sv_g_argv = G.global_argv;
1018 sv->sv_g_argc = G.global_argc;
1019 sv->sv_g_malloced = G.global_args_malloced;
1020
1021 argv[0] = G.global_argv[0]; /* retain $0 */
1022 G.global_argv = argv;
1023 G.global_args_malloced = 0;
1024
1025 n = 1;
1026 while (*++argv)
1027 n++;
1028 G.global_argc = n;
1029 }
1030
1031 static void restore_G_args(save_arg_t *sv, char **argv)
1032 {
1033 char **pp;
1034
1035 if (G.global_args_malloced) {
1036 /* someone ran "set -- arg1 arg2 ...", undo */
1037 pp = G.global_argv;
1038 while (*++pp) /* note: does not free $0 */
1039 free(*pp);
1040 free(G.global_argv);
1041 }
1042 argv[0] = sv->sv_argv0;
1043 G.global_argv = sv->sv_g_argv;
1044 G.global_argc = sv->sv_g_argc;
1045 G.global_args_malloced = sv->sv_g_malloced;
1046 }
1047
1048
1049 /* Basic theory of signal handling in shell
1050 * ========================================
1051 * This does not describe what hush does, rather, it is current understanding
1052 * what it _should_ do. If it doesn't, it's a bug.
1053 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1054 *
1055 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1056 * is finished or backgrounded. It is the same in interactive and
1057 * non-interactive shells, and is the same regardless of whether
1058 * a user trap handler is installed or a shell special one is in effect.
1059 * ^C or ^Z from keyboard seems to execute "at once" because it usually
1060 * backgrounds (i.e. stops) or kills all members of currently running
1061 * pipe.
1062 *
1063 * Wait builtin in interruptible by signals for which user trap is set
1064 * or by SIGINT in interactive shell.
1065 *
1066 * Trap handlers will execute even within trap handlers. (right?)
1067 *
1068 * User trap handlers are forgotten when subshell ("(cmd)") is entered,
1069 * except for handlers set to '' (empty string).
1070 *
1071 * If job control is off, backgrounded commands ("cmd &")
1072 * have SIGINT, SIGQUIT set to SIG_IGN.
1073 *
1074 * Commands which are run in command substitution ("`cmd`")
1075 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
1076 *
1077 * Ordinary commands have signals set to SIG_IGN/DFL as inherited
1078 * by the shell from its parent.
1079 *
1080 * Signals which differ from SIG_DFL action
1081 * (note: child (i.e., [v]forked) shell is not an interactive shell):
1082 *
1083 * SIGQUIT: ignore
1084 * SIGTERM (interactive): ignore
1085 * SIGHUP (interactive):
1086 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
1087 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
1088 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1089 * that all pipe members are stopped. Try this in bash:
1090 * while :; do :; done - ^Z does not background it
1091 * (while :; do :; done) - ^Z backgrounds it
1092 * SIGINT (interactive): wait for last pipe, ignore the rest
1093 * of the command line, show prompt. NB: ^C does not send SIGINT
1094 * to interactive shell while shell is waiting for a pipe,
1095 * since shell is bg'ed (is not in foreground process group).
1096 * Example 1: this waits 5 sec, but does not execute ls:
1097 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1098 * Example 2: this does not wait and does not execute ls:
1099 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1100 * Example 3: this does not wait 5 sec, but executes ls:
1101 * "sleep 5; ls -l" + press ^C
1102 *
1103 * (What happens to signals which are IGN on shell start?)
1104 * (What happens with signal mask on shell start?)
1105 *
1106 * Implementation in hush
1107 * ======================
1108 * We use in-kernel pending signal mask to determine which signals were sent.
1109 * We block all signals which we don't want to take action immediately,
1110 * i.e. we block all signals which need to have special handling as described
1111 * above, and all signals which have traps set.
1112 * After each pipe execution, we extract any pending signals via sigtimedwait()
1113 * and act on them.
1114 *
1115 * unsigned non_DFL_mask: a mask of such "special" signals
1116 * sigset_t blocked_set: current blocked signal set
1117 *
1118 * "trap - SIGxxx":
1119 * clear bit in blocked_set unless it is also in non_DFL_mask
1120 * "trap 'cmd' SIGxxx":
1121 * set bit in blocked_set (even if 'cmd' is '')
1122 * after [v]fork, if we plan to be a shell:
1123 * unblock signals with special interactive handling
1124 * (child shell is not interactive),
1125 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
1126 * after [v]fork, if we plan to exec:
1127 * POSIX says fork clears pending signal mask in child - no need to clear it.
1128 * Restore blocked signal set to one inherited by shell just prior to exec.
1129 *
1130 * Note: as a result, we do not use signal handlers much. The only uses
1131 * are to count SIGCHLDs
1132 * and to restore tty pgrp on signal-induced exit.
1133 *
1134 * Note 2 (compat):
1135 * Standard says "When a subshell is entered, traps that are not being ignored
1136 * are set to the default actions". bash interprets it so that traps which
1137 * are set to '' (ignore) are NOT reset to defaults. We do the same.
1138 */
1139 enum {
1140 SPECIAL_INTERACTIVE_SIGS = 0
1141 | (1 << SIGTERM)
1142 | (1 << SIGINT)
1143 | (1 << SIGHUP)
1144 ,
1145 SPECIAL_JOB_SIGS = 0
1146 #if ENABLE_HUSH_JOB
1147 | (1 << SIGTTIN)
1148 | (1 << SIGTTOU)
1149 | (1 << SIGTSTP)
1150 #endif
1151 };
1152
1153 #if ENABLE_HUSH_FAST
1154 static void SIGCHLD_handler(int sig UNUSED_PARAM)
1155 {
1156 G.count_SIGCHLD++;
1157 //bb_error_msg("[%d] SIGCHLD_handler: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1158 }
1159 #endif
1160
1161 #if ENABLE_HUSH_JOB
1162
1163 /* After [v]fork, in child: do not restore tty pgrp on xfunc death */
1164 # define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
1165 /* After [v]fork, in parent: restore tty pgrp on xfunc death */
1166 # define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
1167
1168 /* Restores tty foreground process group, and exits.
1169 * May be called as signal handler for fatal signal
1170 * (will resend signal to itself, producing correct exit state)
1171 * or called directly with -EXITCODE.
1172 * We also call it if xfunc is exiting. */
1173 static void sigexit(int sig) NORETURN;
1174 static void sigexit(int sig)
1175 {
1176 /* Disable all signals: job control, SIGPIPE, etc. */
1177 sigprocmask_allsigs(SIG_BLOCK);
1178
1179 /* Careful: we can end up here after [v]fork. Do not restore
1180 * tty pgrp then, only top-level shell process does that */
1181 if (G_saved_tty_pgrp && getpid() == G.root_pid)
1182 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
1183
1184 /* Not a signal, just exit */
1185 if (sig <= 0)
1186 _exit(- sig);
1187
1188 kill_myself_with_sig(sig); /* does not return */
1189 }
1190 #else
1191
1192 # define disable_restore_tty_pgrp_on_exit() ((void)0)
1193 # define enable_restore_tty_pgrp_on_exit() ((void)0)
1194
1195 #endif
1196
1197 /* Restores tty foreground process group, and exits. */
1198 static void hush_exit(int exitcode) NORETURN;
1199 static void hush_exit(int exitcode)
1200 {
1201 if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
1202 /* Prevent recursion:
1203 * trap "echo Hi; exit" EXIT; exit
1204 */
1205 char *argv[] = { NULL, G.traps[0], NULL };
1206 G.traps[0] = NULL;
1207 G.exiting = 1;
1208 builtin_eval(argv);
1209 free(argv[1]);
1210 }
1211
1212 #if ENABLE_HUSH_JOB
1213 fflush_all();
1214 sigexit(- (exitcode & 0xff));
1215 #else
1216 exit(exitcode);
1217 #endif
1218 }
1219
1220 static int check_and_run_traps(int sig)
1221 {
1222 static const struct timespec zero_timespec;
1223 smalluint save_rcode;
1224 int last_sig = 0;
1225
1226 if (sig)
1227 goto jump_in;
1228 while (1) {
1229 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
1230 if (sig <= 0)
1231 break;
1232 jump_in:
1233 last_sig = sig;
1234 if (G.traps && G.traps[sig]) {
1235 if (G.traps[sig][0]) {
1236 /* We have user-defined handler */
1237 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
1238 save_rcode = G.last_exitcode;
1239 builtin_eval(argv);
1240 free(argv[1]);
1241 G.last_exitcode = save_rcode;
1242 } /* else: "" trap, ignoring signal */
1243 continue;
1244 }
1245 /* not a trap: special action */
1246 switch (sig) {
1247 #if ENABLE_HUSH_FAST
1248 case SIGCHLD:
1249 G.count_SIGCHLD++;
1250 //bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1251 break;
1252 #endif
1253 case SIGINT:
1254 /* Builtin was ^C'ed, make it look prettier: */
1255 bb_putchar('\n');
1256 G.flag_SIGINT = 1;
1257 break;
1258 #if ENABLE_HUSH_JOB
1259 case SIGHUP: {
1260 struct pipe *job;
1261 /* bash is observed to signal whole process groups,
1262 * not individual processes */
1263 for (job = G.job_list; job; job = job->next) {
1264 if (job->pgrp <= 0)
1265 continue;
1266 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1267 if (kill(- job->pgrp, SIGHUP) == 0)
1268 kill(- job->pgrp, SIGCONT);
1269 }
1270 sigexit(SIGHUP);
1271 }
1272 #endif
1273 default: /* ignored: */
1274 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
1275 break;
1276 }
1277 }
1278 return last_sig;
1279 }
1280
1281
1282 static const char *get_cwd(int force)
1283 {
1284 if (force || G.cwd == NULL) {
1285 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1286 * we must not try to free(bb_msg_unknown) */
1287 if (G.cwd == bb_msg_unknown)
1288 G.cwd = NULL;
1289 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1290 if (!G.cwd)
1291 G.cwd = bb_msg_unknown;
1292 }
1293 return G.cwd;
1294 }
1295
1296
1297 /*
1298 * Shell and environment variable support
1299 */
1300 static struct variable **get_ptr_to_local_var(const char *name)
1301 {
1302 struct variable **pp;
1303 struct variable *cur;
1304 int len;
1305
1306 len = strlen(name);
1307 pp = &G.top_var;
1308 while ((cur = *pp) != NULL) {
1309 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
1310 return pp;
1311 pp = &cur->next;
1312 }
1313 return NULL;
1314 }
1315
1316 static struct variable *get_local_var(const char *name)
1317 {
1318 struct variable **pp = get_ptr_to_local_var(name);
1319 if (pp)
1320 return *pp;
1321 return NULL;
1322 }
1323
1324 static const char* FAST_FUNC get_local_var_value(const char *name)
1325 {
1326 struct variable **pp = get_ptr_to_local_var(name);
1327 if (pp)
1328 return strchr((*pp)->varstr, '=') + 1;
1329 if (strcmp(name, "PPID") == 0)
1330 return utoa(G.root_ppid);
1331 // bash compat: UID? EUID?
1332 #if ENABLE_HUSH_RANDOM_SUPPORT
1333 if (strcmp(name, "RANDOM") == 0) {
1334 return utoa(next_random(&G.random_gen));
1335 }
1336 #endif
1337 return NULL;
1338 }
1339
1340 /* str holds "NAME=VAL" and is expected to be malloced.
1341 * We take ownership of it.
1342 * flg_export:
1343 * 0: do not change export flag
1344 * (if creating new variable, flag will be 0)
1345 * 1: set export flag and putenv the variable
1346 * -1: clear export flag and unsetenv the variable
1347 * flg_read_only is set only when we handle -R var=val
1348 */
1349 #if !BB_MMU && ENABLE_HUSH_LOCAL
1350 /* all params are used */
1351 #elif BB_MMU && ENABLE_HUSH_LOCAL
1352 #define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1353 set_local_var(str, flg_export, local_lvl)
1354 #elif BB_MMU && !ENABLE_HUSH_LOCAL
1355 #define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1356 set_local_var(str, flg_export)
1357 #elif !BB_MMU && !ENABLE_HUSH_LOCAL
1358 #define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1359 set_local_var(str, flg_export, flg_read_only)
1360 #endif
1361 static int set_local_var(char *str, int flg_export, int local_lvl, int flg_read_only)
1362 {
1363 struct variable **var_pp;
1364 struct variable *cur;
1365 char *eq_sign;
1366 int name_len;
1367
1368 eq_sign = strchr(str, '=');
1369 if (!eq_sign) { /* not expected to ever happen? */
1370 free(str);
1371 return -1;
1372 }
1373
1374 name_len = eq_sign - str + 1; /* including '=' */
1375 var_pp = &G.top_var;
1376 while ((cur = *var_pp) != NULL) {
1377 if (strncmp(cur->varstr, str, name_len) != 0) {
1378 var_pp = &cur->next;
1379 continue;
1380 }
1381 /* We found an existing var with this name */
1382 if (cur->flg_read_only) {
1383 #if !BB_MMU
1384 if (!flg_read_only)
1385 #endif
1386 bb_error_msg("%s: readonly variable", str);
1387 free(str);
1388 return -1;
1389 }
1390 if (flg_export == -1) { // "&& cur->flg_export" ?
1391 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1392 *eq_sign = '\0';
1393 unsetenv(str);
1394 *eq_sign = '=';
1395 }
1396 #if ENABLE_HUSH_LOCAL
1397 if (cur->func_nest_level < local_lvl) {
1398 /* New variable is declared as local,
1399 * and existing one is global, or local
1400 * from enclosing function.
1401 * Remove and save old one: */
1402 *var_pp = cur->next;
1403 cur->next = *G.shadowed_vars_pp;
1404 *G.shadowed_vars_pp = cur;
1405 /* bash 3.2.33(1) and exported vars:
1406 * # export z=z
1407 * # f() { local z=a; env | grep ^z; }
1408 * # f
1409 * z=a
1410 * # env | grep ^z
1411 * z=z
1412 */
1413 if (cur->flg_export)
1414 flg_export = 1;
1415 break;
1416 }
1417 #endif
1418 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
1419 free_and_exp:
1420 free(str);
1421 goto exp;
1422 }
1423 if (cur->max_len != 0) {
1424 if (cur->max_len >= strlen(str)) {
1425 /* This one is from startup env, reuse space */
1426 strcpy(cur->varstr, str);
1427 goto free_and_exp;
1428 }
1429 } else {
1430 /* max_len == 0 signifies "malloced" var, which we can
1431 * (and has to) free */
1432 free(cur->varstr);
1433 }
1434 cur->max_len = 0;
1435 goto set_str_and_exp;
1436 }
1437
1438 /* Not found - create new variable struct */
1439 cur = xzalloc(sizeof(*cur));
1440 #if ENABLE_HUSH_LOCAL
1441 cur->func_nest_level = local_lvl;
1442 #endif
1443 cur->next = *var_pp;
1444 *var_pp = cur;
1445
1446 set_str_and_exp:
1447 cur->varstr = str;
1448 #if !BB_MMU
1449 cur->flg_read_only = flg_read_only;
1450 #endif
1451 exp:
1452 if (flg_export == 1)
1453 cur->flg_export = 1;
1454 if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1455 cmdedit_update_prompt();
1456 if (cur->flg_export) {
1457 if (flg_export == -1) {
1458 cur->flg_export = 0;
1459 /* unsetenv was already done */
1460 } else {
1461 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1462 return putenv(cur->varstr);
1463 }
1464 }
1465 return 0;
1466 }
1467
1468 /* Used at startup and after each cd */
1469 static void set_pwd_var(int exp)
1470 {
1471 set_local_var(xasprintf("PWD=%s", get_cwd(/*force:*/ 1)),
1472 /*exp:*/ exp, /*lvl:*/ 0, /*ro:*/ 0);
1473 }
1474
1475 static int unset_local_var_len(const char *name, int name_len)
1476 {
1477 struct variable *cur;
1478 struct variable **var_pp;
1479
1480 if (!name)
1481 return EXIT_SUCCESS;
1482 var_pp = &G.top_var;
1483 while ((cur = *var_pp) != NULL) {
1484 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1485 if (cur->flg_read_only) {
1486 bb_error_msg("%s: readonly variable", name);
1487 return EXIT_FAILURE;
1488 }
1489 *var_pp = cur->next;
1490 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1491 bb_unsetenv(cur->varstr);
1492 if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1493 cmdedit_update_prompt();
1494 if (!cur->max_len)
1495 free(cur->varstr);
1496 free(cur);
1497 return EXIT_SUCCESS;
1498 }
1499 var_pp = &cur->next;
1500 }
1501 return EXIT_SUCCESS;
1502 }
1503
1504 static int unset_local_var(const char *name)
1505 {
1506 return unset_local_var_len(name, strlen(name));
1507 }
1508
1509 static void unset_vars(char **strings)
1510 {
1511 char **v;
1512
1513 if (!strings)
1514 return;
1515 v = strings;
1516 while (*v) {
1517 const char *eq = strchrnul(*v, '=');
1518 unset_local_var_len(*v, (int)(eq - *v));
1519 v++;
1520 }
1521 free(strings);
1522 }
1523
1524 #if ENABLE_SH_MATH_SUPPORT
1525 # define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1526 # define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1527 static char* FAST_FUNC endofname(const char *name)
1528 {
1529 char *p;
1530
1531 p = (char *) name;
1532 if (!is_name(*p))
1533 return p;
1534 while (*++p) {
1535 if (!is_in_name(*p))
1536 break;
1537 }
1538 return p;
1539 }
1540 #endif
1541
1542 static void FAST_FUNC set_local_var_from_halves(const char *name, const char *val)
1543 {
1544 char *var = xasprintf("%s=%s", name, val);
1545 set_local_var(var, /*flags:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
1546 }
1547
1548
1549 /*
1550 * Helpers for "var1=val1 var2=val2 cmd" feature
1551 */
1552 static void add_vars(struct variable *var)
1553 {
1554 struct variable *next;
1555
1556 while (var) {
1557 next = var->next;
1558 var->next = G.top_var;
1559 G.top_var = var;
1560 if (var->flg_export) {
1561 debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr);
1562 putenv(var->varstr);
1563 } else {
1564 debug_printf_env("%s: restoring variable '%s'\n", __func__, var->varstr);
1565 }
1566 var = next;
1567 }
1568 }
1569
1570 static struct variable *set_vars_and_save_old(char **strings)
1571 {
1572 char **s;
1573 struct variable *old = NULL;
1574
1575 if (!strings)
1576 return old;
1577 s = strings;
1578 while (*s) {
1579 struct variable *var_p;
1580 struct variable **var_pp;
1581 char *eq;
1582
1583 eq = strchr(*s, '=');
1584 if (eq) {
1585 *eq = '\0';
1586 var_pp = get_ptr_to_local_var(*s);
1587 *eq = '=';
1588 if (var_pp) {
1589 /* Remove variable from global linked list */
1590 var_p = *var_pp;
1591 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
1592 *var_pp = var_p->next;
1593 /* Add it to returned list */
1594 var_p->next = old;
1595 old = var_p;
1596 }
1597 set_local_var(*s, /*exp:*/ 1, /*lvl:*/ 0, /*ro:*/ 0);
1598 }
1599 s++;
1600 }
1601 return old;
1602 }
1603
1604
1605 /*
1606 * in_str support
1607 */
1608 static int FAST_FUNC static_get(struct in_str *i)
1609 {
1610 int ch = *i->p;
1611 if (ch != '\0') {
1612 i->p++;
1613 return ch;
1614 }
1615 return EOF;
1616 }
1617
1618 static int FAST_FUNC static_peek(struct in_str *i)
1619 {
1620 return *i->p;
1621 }
1622
1623 #if ENABLE_HUSH_INTERACTIVE
1624
1625 static void cmdedit_update_prompt(void)
1626 {
1627 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1628 G.PS1 = get_local_var_value("PS1");
1629 if (G.PS1 == NULL)
1630 G.PS1 = "\\w \\$ ";
1631 G.PS2 = get_local_var_value("PS2");
1632 } else {
1633 G.PS1 = NULL;
1634 }
1635 if (G.PS2 == NULL)
1636 G.PS2 = "> ";
1637 }
1638
1639 static const char* setup_prompt_string(int promptmode)
1640 {
1641 const char *prompt_str;
1642 debug_printf("setup_prompt_string %d ", promptmode);
1643 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1644 /* Set up the prompt */
1645 if (promptmode == 0) { /* PS1 */
1646 free((char*)G.PS1);
1647 /* bash uses $PWD value, even if it is set by user.
1648 * It uses current dir only if PWD is unset.
1649 * We always use current dir. */
1650 G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#');
1651 prompt_str = G.PS1;
1652 } else
1653 prompt_str = G.PS2;
1654 } else
1655 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
1656 debug_printf("result '%s'\n", prompt_str);
1657 return prompt_str;
1658 }
1659
1660 static void get_user_input(struct in_str *i)
1661 {
1662 int r;
1663 const char *prompt_str;
1664
1665 prompt_str = setup_prompt_string(i->promptmode);
1666 # if ENABLE_FEATURE_EDITING
1667 /* Enable command line editing only while a command line
1668 * is actually being read */
1669 do {
1670 G.flag_SIGINT = 0;
1671 /* buglet: SIGINT will not make new prompt to appear _at once_,
1672 * only after <Enter>. (^C will work) */
1673 r = read_line_input(prompt_str, G.user_input_buf, CONFIG_FEATURE_EDITING_MAX_LEN-1, G.line_input_state);
1674 /* catch *SIGINT* etc (^C is handled by read_line_input) */
1675 check_and_run_traps(0);
1676 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
1677 i->eof_flag = (r < 0);
1678 if (i->eof_flag) { /* EOF/error detected */
1679 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1680 G.user_input_buf[1] = '\0';
1681 }
1682 # else
1683 do {
1684 G.flag_SIGINT = 0;
1685 fputs(prompt_str, stdout);
1686 fflush_all();
1687 G.user_input_buf[0] = r = fgetc(i->file);
1688 /*G.user_input_buf[1] = '\0'; - already is and never changed */
1689 //do we need check_and_run_traps(0)? (maybe only if stdin)
1690 } while (G.flag_SIGINT);
1691 i->eof_flag = (r == EOF);
1692 # endif
1693 i->p = G.user_input_buf;
1694 }
1695
1696 #endif /* INTERACTIVE */
1697
1698 /* This is the magic location that prints prompts
1699 * and gets data back from the user */
1700 static int FAST_FUNC file_get(struct in_str *i)
1701 {
1702 int ch;
1703
1704 /* If there is data waiting, eat it up */
1705 if (i->p && *i->p) {
1706 #if ENABLE_HUSH_INTERACTIVE
1707 take_cached:
1708 #endif
1709 ch = *i->p++;
1710 if (i->eof_flag && !*i->p)
1711 ch = EOF;
1712 /* note: ch is never NUL */
1713 } else {
1714 /* need to double check i->file because we might be doing something
1715 * more complicated by now, like sourcing or substituting. */
1716 #if ENABLE_HUSH_INTERACTIVE
1717 if (G_interactive_fd && i->promptme && i->file == stdin) {
1718 do {
1719 get_user_input(i);
1720 } while (!*i->p); /* need non-empty line */
1721 i->promptmode = 1; /* PS2 */
1722 i->promptme = 0;
1723 goto take_cached;
1724 }
1725 #endif
1726 do ch = fgetc(i->file); while (ch == '\0');
1727 }
1728 debug_printf("file_get: got '%c' %d\n", ch, ch);
1729 #if ENABLE_HUSH_INTERACTIVE
1730 if (ch == '\n')
1731 i->promptme = 1;
1732 #endif
1733 return ch;
1734 }
1735
1736 /* All callers guarantee this routine will never
1737 * be used right after a newline, so prompting is not needed.
1738 */
1739 static int FAST_FUNC file_peek(struct in_str *i)
1740 {
1741 int ch;
1742 if (i->p && *i->p) {
1743 if (i->eof_flag && !i->p[1])
1744 return EOF;
1745 return *i->p;
1746 /* note: ch is never NUL */
1747 }
1748 do ch = fgetc(i->file); while (ch == '\0');
1749 i->eof_flag = (ch == EOF);
1750 i->peek_buf[0] = ch;
1751 i->peek_buf[1] = '\0';
1752 i->p = i->peek_buf;
1753 debug_printf("file_peek: got '%c' %d\n", ch, ch);
1754 return ch;
1755 }
1756
1757 static void setup_file_in_str(struct in_str *i, FILE *f)
1758 {
1759 i->peek = file_peek;
1760 i->get = file_get;
1761 #if ENABLE_HUSH_INTERACTIVE
1762 i->promptme = 1;
1763 i->promptmode = 0; /* PS1 */
1764 #endif
1765 i->file = f;
1766 i->p = NULL;
1767 }
1768
1769 static void setup_string_in_str(struct in_str *i, const char *s)
1770 {
1771 i->peek = static_peek;
1772 i->get = static_get;
1773 #if ENABLE_HUSH_INTERACTIVE
1774 i->promptme = 1;
1775 i->promptmode = 0; /* PS1 */
1776 #endif
1777 i->p = s;
1778 i->eof_flag = 0;
1779 }
1780
1781
1782 /*
1783 * o_string support
1784 */
1785 #define B_CHUNK (32 * sizeof(char*))
1786
1787 static void o_reset_to_empty_unquoted(o_string *o)
1788 {
1789 o->length = 0;
1790 o->o_quoted = 0;
1791 if (o->data)
1792 o->data[0] = '\0';
1793 }
1794
1795 static void o_free(o_string *o)
1796 {
1797 free(o->data);
1798 memset(o, 0, sizeof(*o));
1799 }
1800
1801 static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1802 {
1803 free(o->data);
1804 }
1805
1806 static void o_grow_by(o_string *o, int len)
1807 {
1808 if (o->length + len > o->maxlen) {
1809 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1810 o->data = xrealloc(o->data, 1 + o->maxlen);
1811 }
1812 }
1813
1814 static void o_addchr(o_string *o, int ch)
1815 {
1816 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1817 o_grow_by(o, 1);
1818 o->data[o->length] = ch;
1819 o->length++;
1820 o->data[o->length] = '\0';
1821 }
1822
1823 static void o_addblock(o_string *o, const char *str, int len)
1824 {
1825 o_grow_by(o, len);
1826 memcpy(&o->data[o->length], str, len);
1827 o->length += len;
1828 o->data[o->length] = '\0';
1829 }
1830
1831 static void o_addstr(o_string *o, const char *str)
1832 {
1833 o_addblock(o, str, strlen(str));
1834 }
1835
1836 #if !BB_MMU
1837 static void nommu_addchr(o_string *o, int ch)
1838 {
1839 if (o)
1840 o_addchr(o, ch);
1841 }
1842 #else
1843 # define nommu_addchr(o, str) ((void)0)
1844 #endif
1845
1846 static void o_addstr_with_NUL(o_string *o, const char *str)
1847 {
1848 o_addblock(o, str, strlen(str) + 1);
1849 }
1850
1851 static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
1852 {
1853 while (len) {
1854 o_addchr(o, *str);
1855 if (*str++ == '\\'
1856 && (*str != '*' && *str != '?' && *str != '[')
1857 ) {
1858 o_addchr(o, '\\');
1859 }
1860 len--;
1861 }
1862 }
1863
1864 #undef HUSH_BRACE_EXP
1865 /*
1866 * HUSH_BRACE_EXP code needs corresponding quoting on variable expansion side.
1867 * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v.
1868 * Apparently, on unquoted $v bash still does globbing
1869 * ("v='*.txt'; echo $v" prints all .txt files),
1870 * but NOT brace expansion! Thus, there should be TWO independent
1871 * quoting mechanisms on $v expansion side: one protects
1872 * $v from brace expansion, and other additionally protects "$v" against globbing.
1873 * We have only second one.
1874 */
1875
1876 #ifdef HUSH_BRACE_EXP
1877 # define MAYBE_BRACES "{}"
1878 #else
1879 # define MAYBE_BRACES ""
1880 #endif
1881
1882 /* My analysis of quoting semantics tells me that state information
1883 * is associated with a destination, not a source.
1884 */
1885 static void o_addqchr(o_string *o, int ch)
1886 {
1887 int sz = 1;
1888 char *found = strchr("*?[\\" MAYBE_BRACES, ch);
1889 if (found)
1890 sz++;
1891 o_grow_by(o, sz);
1892 if (found) {
1893 o->data[o->length] = '\\';
1894 o->length++;
1895 }
1896 o->data[o->length] = ch;
1897 o->length++;
1898 o->data[o->length] = '\0';
1899 }
1900
1901 static void o_addQchr(o_string *o, int ch)
1902 {
1903 int sz = 1;
1904 if (o->o_escape && strchr("*?[\\" MAYBE_BRACES, ch)) {
1905 sz++;
1906 o->data[o->length] = '\\';
1907 o->length++;
1908 }
1909 o_grow_by(o, sz);
1910 o->data[o->length] = ch;
1911 o->length++;
1912 o->data[o->length] = '\0';
1913 }
1914
1915 static void o_addQstr(o_string *o, const char *str, int len)
1916 {
1917 if (!o->o_escape) {
1918 o_addblock(o, str, len);
1919 return;
1920 }
1921 while (len) {
1922 char ch;
1923 int sz;
1924 int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES);
1925 if (ordinary_cnt > len) /* paranoia */
1926 ordinary_cnt = len;
1927 o_addblock(o, str, ordinary_cnt);
1928 if (ordinary_cnt == len)
1929 return;
1930 str += ordinary_cnt;
1931 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
1932
1933 ch = *str++;
1934 sz = 1;
1935 if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */
1936 sz++;
1937 o->data[o->length] = '\\';
1938 o->length++;
1939 }
1940 o_grow_by(o, sz);
1941 o->data[o->length] = ch;
1942 o->length++;
1943 o->data[o->length] = '\0';
1944 }
1945 }
1946
1947 /* A special kind of o_string for $VAR and `cmd` expansion.
1948 * It contains char* list[] at the beginning, which is grown in 16 element
1949 * increments. Actual string data starts at the next multiple of 16 * (char*).
1950 * list[i] contains an INDEX (int!) into this string data.
1951 * It means that if list[] needs to grow, data needs to be moved higher up
1952 * but list[i]'s need not be modified.
1953 * NB: remembering how many list[i]'s you have there is crucial.
1954 * o_finalize_list() operation post-processes this structure - calculates
1955 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1956 */
1957 #if DEBUG_EXPAND || DEBUG_GLOB
1958 static void debug_print_list(const char *prefix, o_string *o, int n)
1959 {
1960 char **list = (char**)o->data;
1961 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1962 int i = 0;
1963
1964 indent();
1965 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1966 prefix, list, n, string_start, o->length, o->maxlen);
1967 while (i < n) {
1968 indent();
1969 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1970 o->data + (int)list[i] + string_start,
1971 o->data + (int)list[i] + string_start);
1972 i++;
1973 }
1974 if (n) {
1975 const char *p = o->data + (int)list[n - 1] + string_start;
1976 indent();
1977 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
1978 }
1979 }
1980 #else
1981 # define debug_print_list(prefix, o, n) ((void)0)
1982 #endif
1983
1984 /* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1985 * in list[n] so that it points past last stored byte so far.
1986 * It returns n+1. */
1987 static int o_save_ptr_helper(o_string *o, int n)
1988 {
1989 char **list = (char**)o->data;
1990 int string_start;
1991 int string_len;
1992
1993 if (!o->has_empty_slot) {
1994 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1995 string_len = o->length - string_start;
1996 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
1997 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
1998 /* list[n] points to string_start, make space for 16 more pointers */
1999 o->maxlen += 0x10 * sizeof(list[0]);
2000 o->data = xrealloc(o->data, o->maxlen + 1);
2001 list = (char**)o->data;
2002 memmove(list + n + 0x10, list + n, string_len);
2003 o->length += 0x10 * sizeof(list[0]);
2004 } else {
2005 debug_printf_list("list[%d]=%d string_start=%d\n",
2006 n, string_len, string_start);
2007 }
2008 } else {
2009 /* We have empty slot at list[n], reuse without growth */
2010 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
2011 string_len = o->length - string_start;
2012 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
2013 n, string_len, string_start);
2014 o->has_empty_slot = 0;
2015 }
2016 list[n] = (char*)(ptrdiff_t)string_len;
2017 return n + 1;
2018 }
2019
2020 /* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
2021 static int o_get_last_ptr(o_string *o, int n)
2022 {
2023 char **list = (char**)o->data;
2024 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2025
2026 return ((int)(ptrdiff_t)list[n-1]) + string_start;
2027 }
2028
2029 #ifdef HUSH_BRACE_EXP
2030 /* There in a GNU extension, GLOB_BRACE, but it is not usable:
2031 * first, it processes even {a} (no commas), second,
2032 * I didn't manage to make it return strings when they don't match
2033 * existing files. Need to re-implement it.
2034 */
2035
2036 /* Helper */
2037 static int glob_needed(const char *s)
2038 {
2039 while (*s) {
2040 if (*s == '\\') {
2041 if (!s[1])
2042 return 0;
2043 s += 2;
2044 continue;
2045 }
2046 if (*s == '*' || *s == '[' || *s == '?' || *s == '{')
2047 return 1;
2048 s++;
2049 }
2050 return 0;
2051 }
2052 /* Return pointer to next closing brace or to comma */
2053 static const char *next_brace_sub(const char *cp)
2054 {
2055 unsigned depth = 0;
2056 cp++;
2057 while (*cp != '\0') {
2058 if (*cp == '\\') {
2059 if (*++cp == '\0')
2060 break;
2061 cp++;
2062 continue;
2063 }
2064 /*{*/ if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
2065 break;
2066 if (*cp++ == '{') /*}*/
2067 depth++;
2068 }
2069
2070 return *cp != '\0' ? cp : NULL;
2071 }
2072 /* Recursive brace globber. Note: may garble pattern[]. */
2073 static int glob_brace(char *pattern, o_string *o, int n)
2074 {
2075 char *new_pattern_buf;
2076 const char *begin;
2077 const char *next;
2078 const char *rest;
2079 const char *p;
2080 size_t rest_len;
2081
2082 debug_printf_glob("glob_brace('%s')\n", pattern);
2083
2084 begin = pattern;
2085 while (1) {
2086 if (*begin == '\0')
2087 goto simple_glob;
2088 if (*begin == '{') /*}*/ {
2089 /* Find the first sub-pattern and at the same time
2090 * find the rest after the closing brace */
2091 next = next_brace_sub(begin);
2092 if (next == NULL) {
2093 /* An illegal expression */
2094 goto simple_glob;
2095 }
2096 /*{*/ if (*next == '}') {
2097 /* "{abc}" with no commas - illegal
2098 * brace expr, disregard and skip it */
2099 begin = next + 1;
2100 continue;
2101 }
2102 break;
2103 }
2104 if (*begin == '\\' && begin[1] != '\0')
2105 begin++;
2106 begin++;
2107 }
2108 debug_printf_glob("begin:%s\n", begin);
2109 debug_printf_glob("next:%s\n", next);
2110
2111 /* Now find the end of the whole brace expression */
2112 rest = next;
2113 /*{*/ while (*rest != '}') {
2114 rest = next_brace_sub(rest);
2115 if (rest == NULL) {
2116 /* An illegal expression */
2117 goto simple_glob;
2118 }
2119 debug_printf_glob("rest:%s\n", rest);
2120 }
2121 rest_len = strlen(++rest) + 1;
2122
2123 /* We are sure the brace expression is well-formed */
2124
2125 /* Allocate working buffer large enough for our work */
2126 new_pattern_buf = xmalloc(strlen(pattern));
2127
2128 /* We have a brace expression. BEGIN points to the opening {,
2129 * NEXT points past the terminator of the first element, and REST
2130 * points past the final }. We will accumulate result names from
2131 * recursive runs for each brace alternative in the buffer using
2132 * GLOB_APPEND. */
2133
2134 p = begin + 1;
2135 while (1) {
2136 /* Construct the new glob expression */
2137 memcpy(
2138 mempcpy(
2139 mempcpy(new_pattern_buf,
2140 /* We know the prefix for all sub-patterns */
2141 pattern, begin - pattern),
2142 p, next - p),
2143 rest, rest_len);
2144
2145 /* Note: glob_brace() may garble new_pattern_buf[].
2146 * That's why we re-copy prefix every time (1st memcpy above).
2147 */
2148 n = glob_brace(new_pattern_buf, o, n);
2149 /*{*/ if (*next == '}') {
2150 /* We saw the last entry */
2151 break;
2152 }
2153 p = next + 1;
2154 next = next_brace_sub(next);
2155 }
2156 free(new_pattern_buf);
2157 return n;
2158
2159 simple_glob:
2160 {
2161 int gr;
2162 glob_t globdata;
2163
2164 memset(&globdata, 0, sizeof(globdata));
2165 gr = glob(pattern, 0, NULL, &globdata);
2166 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
2167 if (gr != 0) {
2168 if (gr == GLOB_NOMATCH) {
2169 globfree(&globdata);
2170 /* NB: garbles parameter */
2171 unbackslash(pattern);
2172 o_addstr_with_NUL(o, pattern);
2173 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2174 return o_save_ptr_helper(o, n);
2175 }
2176 if (gr == GLOB_NOSPACE)
2177 bb_error_msg_and_die(bb_msg_memory_exhausted);
2178 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2179 * but we didn't specify it. Paranoia again. */
2180 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
2181 }
2182 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2183 char **argv = globdata.gl_pathv;
2184 while (1) {
2185 o_addstr_with_NUL(o, *argv);
2186 n = o_save_ptr_helper(o, n);
2187 argv++;
2188 if (!*argv)
2189 break;
2190 }
2191 }
2192 globfree(&globdata);
2193 }
2194 return n;
2195 }
2196 /* Performs globbing on last list[],
2197 * saving each result as a new list[].
2198 */
2199 static int o_glob(o_string *o, int n)
2200 {
2201 char *pattern, *copy;
2202
2203 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
2204 if (!o->data)
2205 return o_save_ptr_helper(o, n);
2206 pattern = o->data + o_get_last_ptr(o, n);
2207 debug_printf_glob("glob pattern '%s'\n", pattern);
2208 if (!glob_needed(pattern)) {
2209 /* unbackslash last string in o in place, fix length */
2210 o->length = unbackslash(pattern) - o->data;
2211 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2212 return o_save_ptr_helper(o, n);
2213 }
2214
2215 copy = xstrdup(pattern);
2216 /* "forget" pattern in o */
2217 o->length = pattern - o->data;
2218 n = glob_brace(copy, o, n);
2219 free(copy);
2220 if (DEBUG_GLOB)
2221 debug_print_list("o_glob returning", o, n);
2222 return n;
2223 }
2224
2225 #else /* !HUSH_BRACE_EXP */
2226
2227 /* Helper */
2228 static int glob_needed(const char *s)
2229 {
2230 while (*s) {
2231 if (*s == '\\') {
2232 if (!s[1])
2233 return 0;
2234 s += 2;
2235 continue;
2236 }
2237 if (*s == '*' || *s == '[' || *s == '?')
2238 return 1;
2239 s++;
2240 }
2241 return 0;
2242 }
2243 /* Performs globbing on last list[],
2244 * saving each result as a new list[].
2245 */
2246 static int o_glob(o_string *o, int n)
2247 {
2248 glob_t globdata;
2249 int gr;
2250 char *pattern;
2251
2252 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
2253 if (!o->data)
2254 return o_save_ptr_helper(o, n);
2255 pattern = o->data + o_get_last_ptr(o, n);
2256 debug_printf_glob("glob pattern '%s'\n", pattern);
2257 if (!glob_needed(pattern)) {
2258 literal:
2259 /* unbackslash last string in o in place, fix length */
2260 o->length = unbackslash(pattern) - o->data;
2261 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2262 return o_save_ptr_helper(o, n);
2263 }
2264
2265 memset(&globdata, 0, sizeof(globdata));
2266 /* Can't use GLOB_NOCHECK: it does not unescape the string.
2267 * If we glob "*.\*" and don't find anything, we need
2268 * to fall back to using literal "*.*", but GLOB_NOCHECK
2269 * will return "*.\*"!
2270 */
2271 gr = glob(pattern, 0, NULL, &globdata);
2272 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
2273 if (gr != 0) {
2274 if (gr == GLOB_NOMATCH) {
2275 globfree(&globdata);
2276 goto literal;
2277 }
2278 if (gr == GLOB_NOSPACE)
2279 bb_error_msg_and_die(bb_msg_memory_exhausted);
2280 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2281 * but we didn't specify it. Paranoia again. */
2282 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
2283 }
2284 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2285 char **argv = globdata.gl_pathv;
2286 /* "forget" pattern in o */
2287 o->length = pattern - o->data;
2288 while (1) {
2289 o_addstr_with_NUL(o, *argv);
2290 n = o_save_ptr_helper(o, n);
2291 argv++;
2292 if (!*argv)
2293 break;
2294 }
2295 }
2296 globfree(&globdata);
2297 if (DEBUG_GLOB)
2298 debug_print_list("o_glob returning", o, n);
2299 return n;
2300 }
2301
2302 #endif /* !HUSH_BRACE_EXP */
2303
2304 /* If o->o_glob == 1, glob the string so far remembered.
2305 * Otherwise, just finish current list[] and start new */
2306 static int o_save_ptr(o_string *o, int n)
2307 {
2308 if (o->o_glob) { /* if globbing is requested */
2309 /* If o->has_empty_slot, list[n] was already globbed
2310 * (if it was requested back then when it was filled)
2311 * so don't do that again! */
2312 if (!o->has_empty_slot)
2313 return o_glob(o, n); /* o_save_ptr_helper is inside */
2314 }
2315 return o_save_ptr_helper(o, n);
2316 }
2317
2318 /* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
2319 static char **o_finalize_list(o_string *o, int n)
2320 {
2321 char **list;
2322 int string_start;
2323
2324 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
2325 if (DEBUG_EXPAND)
2326 debug_print_list("finalized", o, n);
2327 debug_printf_expand("finalized n:%d\n", n);
2328 list = (char**)o->data;
2329 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2330 list[--n] = NULL;
2331 while (n) {
2332 n--;
2333 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
2334 }
2335 return list;
2336 }
2337
2338
2339 /* Expansion can recurse */
2340 #if ENABLE_HUSH_TICK
2341 static int process_command_subs(o_string *dest, const char *s);
2342 #endif
2343 static char *expand_string_to_string(const char *str);
2344 #if BB_MMU
2345 #define parse_stream_dquoted(as_string, dest, input, dquote_end) \
2346 parse_stream_dquoted(dest, input, dquote_end)
2347 #endif
2348 static int parse_stream_dquoted(o_string *as_string,
2349 o_string *dest,
2350 struct in_str *input,
2351 int dquote_end);
2352
2353 /* expand_strvec_to_strvec() takes a list of strings, expands
2354 * all variable references within and returns a pointer to
2355 * a list of expanded strings, possibly with larger number
2356 * of strings. (Think VAR="a b"; echo $VAR).
2357 * This new list is allocated as a single malloc block.
2358 * NULL-terminated list of char* pointers is at the beginning of it,
2359 * followed by strings themself.
2360 * Caller can deallocate entire list by single free(list). */
2361
2362 /* Store given string, finalizing the word and starting new one whenever
2363 * we encounter IFS char(s). This is used for expanding variable values.
2364 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
2365 static int expand_on_ifs(o_string *output, int n, const char *str)
2366 {
2367 while (1) {
2368 int word_len = strcspn(str, G.ifs);
2369 if (word_len) {
2370 if (output->o_escape || !output->o_glob)
2371 o_addQstr(output, str, word_len);
2372 else /* protect backslashes against globbing up :) */
2373 o_addblock_duplicate_backslash(output, str, word_len);
2374 str += word_len;
2375 }
2376 if (!*str) /* EOL - do not finalize word */
2377 break;
2378 o_addchr(output, '\0');
2379 debug_print_list("expand_on_ifs", output, n);
2380 n = o_save_ptr(output, n);
2381 str += strspn(str, G.ifs); /* skip ifs chars */
2382 }
2383 debug_print_list("expand_on_ifs[1]", output, n);
2384 return n;
2385 }
2386
2387 /* Helper to expand $((...)) and heredoc body. These act as if
2388 * they are in double quotes, with the exception that they are not :).
2389 * Just the rules are similar: "expand only $var and `cmd`"
2390 *
2391 * Returns malloced string.
2392 * As an optimization, we return NULL if expansion is not needed.
2393 */
2394 static char *expand_pseudo_dquoted(const char *str)
2395 {
2396 char *exp_str;
2397 struct in_str input;
2398 o_string dest = NULL_O_STRING;
2399
2400 if (strchr(str, '$') == NULL
2401 #if ENABLE_HUSH_TICK
2402 && strchr(str, '`') == NULL
2403 #endif
2404 ) {
2405 return NULL;
2406 }
2407
2408 /* We need to expand. Example:
2409 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
2410 */
2411 setup_string_in_str(&input, str);
2412 parse_stream_dquoted(NULL, &dest, &input, EOF);
2413 //bb_error_msg("'%s' -> '%s'", str, dest.data);
2414 exp_str = expand_string_to_string(dest.data);
2415 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
2416 o_free_unsafe(&dest);
2417 return exp_str;
2418 }
2419
2420 #if ENABLE_SH_MATH_SUPPORT
2421 static arith_t expand_and_evaluate_arith(const char *arg, int *errcode_p)
2422 {
2423 arith_eval_hooks_t hooks;
2424 arith_t res;
2425 char *exp_str;
2426
2427 hooks.lookupvar = get_local_var_value;
2428 hooks.setvar = set_local_var_from_halves;
2429 hooks.endofname = endofname;
2430 exp_str = expand_pseudo_dquoted(arg);
2431 res = arith(exp_str ? exp_str : arg, errcode_p, &hooks);
2432 free(exp_str);
2433 return res;
2434 }
2435 #endif
2436
2437 /* Expand all variable references in given string, adding words to list[]
2438 * at n, n+1,... positions. Return updated n (so that list[n] is next one
2439 * to be filled). This routine is extremely tricky: has to deal with
2440 * variables/parameters with whitespace, $* and $@, and constructs like
2441 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
2442 static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
2443 {
2444 /* or_mask is either 0 (normal case) or 0x80 -
2445 * expansion of right-hand side of assignment == 1-element expand.
2446 * It will also do no globbing, and thus we must not backslash-quote!
2447 */
2448 char ored_ch;
2449 char *p;
2450
2451 ored_ch = 0;
2452
2453 debug_printf_expand("expand_vars_to_list: arg:'%s' or_mask:%x\n", arg, or_mask);
2454 debug_print_list("expand_vars_to_list", output, n);
2455 n = o_save_ptr(output, n);
2456 debug_print_list("expand_vars_to_list[0]", output, n);
2457
2458 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
2459 char first_ch;
2460 int i;
2461 char *to_be_freed = NULL;
2462 const char *val = NULL;
2463 #if ENABLE_HUSH_TICK
2464 o_string subst_result = NULL_O_STRING;
2465 #endif
2466 #if ENABLE_SH_MATH_SUPPORT
2467 char arith_buf[sizeof(arith_t)*3 + 2];
2468 #endif
2469 o_addblock(output, arg, p - arg);
2470 debug_print_list("expand_vars_to_list[1]", output, n);
2471 arg = ++p;
2472 p = strchr(p, SPECIAL_VAR_SYMBOL);
2473
2474 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
2475 /* "$@" is special. Even if quoted, it can still
2476 * expand to nothing (not even an empty string) */
2477 if ((first_ch & 0x7f) != '@')
2478 ored_ch |= first_ch;
2479
2480 switch (first_ch & 0x7f) {
2481 /* Highest bit in first_ch indicates that var is double-quoted */
2482 case '*':
2483 case '@':
2484 i = 1;
2485 if (!G.global_argv[i])
2486 break;
2487 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
2488 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
2489 smallint sv = output->o_escape;
2490 /* unquoted var's contents should be globbed, so don't escape */
2491 output->o_escape = 0;
2492 while (G.global_argv[i]) {
2493 n = expand_on_ifs(output, n, G.global_argv[i]);
2494 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
2495 if (G.global_argv[i++][0] && G.global_argv[i]) {
2496 /* this argv[] is not empty and not last:
2497 * put terminating NUL, start new word */
2498 o_addchr(output, '\0');
2499 debug_print_list("expand_vars_to_list[2]", output, n);
2500 n = o_save_ptr(output, n);
2501 debug_print_list("expand_vars_to_list[3]", output, n);
2502 }
2503 }
2504 output->o_escape = sv;
2505 } else
2506 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
2507 * and in this case should treat it like '$*' - see 'else...' below */
2508 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
2509 while (1) {
2510 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
2511 if (++i >= G.global_argc)
2512 break;
2513 o_addchr(output, '\0');
2514 debug_print_list("expand_vars_to_list[4]", output, n);
2515 n = o_save_ptr(output, n);
2516 }
2517 } else { /* quoted $*: add as one word */
2518 while (1) {
2519 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
2520 if (!G.global_argv[++i])
2521 break;
2522 if (G.ifs[0])
2523 o_addchr(output, G.ifs[0]);
2524 }
2525 }
2526 break;
2527 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
2528 /* "Empty variable", used to make "" etc to not disappear */
2529 arg++;
2530 ored_ch = 0x80;
2531 break;
2532 #if ENABLE_HUSH_TICK
2533 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
2534 *p = '\0';
2535 arg++;
2536 /* Can't just stuff it into output o_string,
2537 * expanded result may need to be globbed
2538 * and $IFS-splitted */
2539 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
2540 G.last_exitcode = process_command_subs(&subst_result, arg);
2541 debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data);
2542 val = subst_result.data;
2543 goto store_val;
2544 #endif
2545 #if ENABLE_SH_MATH_SUPPORT
2546 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
2547 arith_t res;
2548 int errcode;
2549
2550 arg++; /* skip '+' */
2551 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
2552 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
2553 res = expand_and_evaluate_arith(arg, &errcode);
2554
2555 if (errcode < 0) {
2556 const char *msg = "error in arithmetic";
2557 switch (errcode) {
2558 case -3:
2559 msg = "exponent less than 0";
2560 break;
2561 case -2:
2562 msg = "divide by 0";
2563 break;
2564 case -5:
2565 msg = "expression recursion loop detected";
2566 break;
2567 }
2568 die_if_script(msg);
2569 }
2570 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
2571 sprintf(arith_buf, arith_t_fmt, res);
2572 val = arith_buf;
2573 break;
2574 }
2575 #endif
2576 default: { /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
2577 char *var;
2578 char first_char;
2579 char exp_op;
2580 char exp_save = exp_save; /* for compiler */
2581 char *exp_saveptr; /* points to expansion operator */
2582 char *exp_word = exp_word; /* for compiler */
2583
2584 var = arg;
2585 *p = '\0';
2586 exp_saveptr = arg[1] ? strchr("%#:-=+?", arg[1]) : NULL;
2587 first_char = arg[0] = first_ch & 0x7f;
2588 exp_op = 0;
2589
2590 if (first_char == '#' && arg[1] && !exp_saveptr) {
2591 /* handle length expansion ${#var} */
2592 var++;
2593 exp_op = 'L';
2594 } else {
2595 /* maybe handle parameter expansion */
2596 if (exp_saveptr /* if 2nd char is one of expansion operators */
2597 && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */
2598 ) {
2599 /* ${?:0}, ${#[:]%0} etc */
2600 exp_saveptr = var + 1;
2601 } else {
2602 /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */
2603 exp_saveptr = var+1 + strcspn(var+1, "%#:-=+?");
2604 }
2605 exp_op = exp_save = *exp_saveptr;
2606 if (exp_op) {
2607 exp_word = exp_saveptr + 1;
2608 if (exp_op == ':') {
2609 exp_op = *exp_word++;
2610 if (ENABLE_HUSH_BASH_COMPAT
2611 && (exp_op == '\0' || !strchr("%#:-=+?"+3, exp_op))
2612 ) {
2613 /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */
2614 exp_op = ':';
2615 exp_word--;
2616 }
2617 }
2618 *exp_saveptr = '\0';
2619 } /* else: it's not an expansion op, but bare ${var} */
2620 }
2621
2622 /* lookup the variable in question */
2623 if (isdigit(var[0])) {
2624 /* parse_dollar() should have vetted var for us */
2625 i = xatoi_u(var);
2626 if (i < G.global_argc)
2627 val = G.global_argv[i];
2628 /* else val remains NULL: $N with too big N */
2629 } else {
2630 switch (var[0]) {
2631 case '$': /* pid */
2632 val = utoa(G.root_pid);
2633 break;
2634 case '!': /* bg pid */
2635 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
2636 break;
2637 case '?': /* exitcode */
2638 val = utoa(G.last_exitcode);
2639 break;
2640 case '#': /* argc */
2641 val = utoa(G.global_argc ? G.global_argc-1 : 0);
2642 break;
2643 default:
2644 val = get_local_var_value(var);
2645 }
2646 }
2647
2648 /* handle any expansions */
2649 if (exp_op == 'L') {
2650 debug_printf_expand("expand: length(%s)=", val);
2651 val = utoa(val ? strlen(val) : 0);
2652 debug_printf_expand("%s\n", val);
2653 } else if (exp_op) {
2654 if (exp_op == '%' || exp_op == '#') {
2655 /* Standard-mandated substring removal ops:
2656 * ${parameter%word} - remove smallest suffix pattern
2657 * ${parameter%%word} - remove largest suffix pattern
2658 * ${parameter#word} - remove smallest prefix pattern
2659 * ${parameter##word} - remove largest prefix pattern
2660 *
2661 * Word is expanded to produce a glob pattern.
2662 * Then var's value is matched to it and matching part removed.
2663 */
2664 if (val) {
2665 bool match_at_left;
2666 char *loc;
2667 scan_t scan = pick_scan(exp_op, *exp_word, &match_at_left);
2668 if (exp_op == *exp_word) /* ## or %% */
2669 exp_word++;
2670 val = to_be_freed = xstrdup(val);
2671 {
2672 char *exp_exp_word = expand_pseudo_dquoted(exp_word);
2673 if (exp_exp_word)
2674 exp_word = exp_exp_word;
2675 loc = scan(to_be_freed, exp_word, match_at_left);
2676 //bb_error_msg("op:%c str:'%s' pat:'%s' res:'%s'",
2677 // exp_op, to_be_freed, exp_word, loc);
2678 free(exp_exp_word);
2679 }
2680 if (loc) { /* match was found */
2681 if (match_at_left) /* # or ## */
2682 val = loc;
2683 else /* % or %% */
2684 *loc = '\0';
2685 }
2686 }
2687 } else if (exp_op == ':') {
2688 #if ENABLE_HUSH_BASH_COMPAT && ENABLE_SH_MATH_SUPPORT
2689 /* It's ${var:N[:M]} bashism.
2690 * Note that in encoded form it has TWO parts:
2691 * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL>
2692 */
2693 arith_t beg, len;
2694 int errcode = 0;
2695
2696 beg = expand_and_evaluate_arith(exp_word, &errcode);
2697 debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg);
2698 *p++ = SPECIAL_VAR_SYMBOL;
2699 exp_word = p;
2700 p = strchr(p, SPECIAL_VAR_SYMBOL);
2701 *p = '\0';
2702 len = expand_and_evaluate_arith(exp_word, &errcode);
2703 debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len);
2704
2705 if (errcode >= 0 && len >= 0) { /* bash compat: len < 0 is illegal */
2706 if (beg < 0) /* bash compat */
2707 beg = 0;
2708 debug_printf_varexp("from val:'%s'\n", val);
2709 if (len == 0 || !val || beg >= strlen(val))
2710 val = "";
2711 else {
2712 /* Paranoia. What if user entered 9999999999999
2713 * which fits in arith_t but not int? */
2714 if (len >= INT_MAX)
2715 len = INT_MAX;
2716 val = to_be_freed = xstrndup(val + beg, len);
2717 }
2718 debug_printf_varexp("val:'%s'\n", val);
2719 } else
2720 #endif
2721 {
2722 die_if_script("malformed ${%s:...}", var);
2723 val = "";
2724 }
2725 } else { /* one of "-=+?" */
2726 /* Standard-mandated substitution ops:
2727 * ${var?word} - indicate error if unset
2728 * If var is unset, word (or a message indicating it is unset
2729 * if word is null) is written to standard error
2730 * and the shell exits with a non-zero exit status.
2731 * Otherwise, the value of var is substituted.
2732 * ${var-word} - use default value
2733 * If var is unset, word is substituted.
2734 * ${var=word} - assign and use default value
2735 * If var is unset, word is assigned to var.
2736 * In all cases, final value of var is substituted.
2737 * ${var+word} - use alternative value
2738 * If var is unset, null is substituted.
2739 * Otherwise, word is substituted.
2740 *
2741 * Word is subjected to tilde expansion, parameter expansion,
2742 * command substitution, and arithmetic expansion.
2743 * If word is not needed, it is not expanded.
2744 *
2745 * Colon forms (${var:-word}, ${var:=word} etc) do the same,
2746 * but also treat null var as if it is unset.
2747 */
2748 int use_word = (!val || ((exp_save == ':') && !val[0]));
2749 if (exp_op == '+')
2750 use_word = !use_word;
2751 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
2752 (exp_save == ':') ? "true" : "false", use_word);
2753 if (use_word) {
2754 to_be_freed = expand_pseudo_dquoted(exp_word);
2755 if (to_be_freed)
2756 exp_word = to_be_freed;
2757 if (exp_op == '?') {
2758 /* mimic bash message */
2759 die_if_script("%s: %s",
2760 var,
2761 exp_word[0] ? exp_word : "parameter null or not set"
2762 );
2763 //TODO: how interactive bash aborts expansion mid-command?
2764 } else {
2765 val = exp_word;
2766 }
2767
2768 if (exp_op == '=') {
2769 /* ${var=[word]} or ${var:=[word]} */
2770 if (isdigit(var[0]) || var[0] == '#') {
2771 /* mimic bash message */
2772 die_if_script("$%s: cannot assign in this way", var);
2773 val = NULL;
2774 } else {
2775 char *new_var = xasprintf("%s=%s", var, val);
2776 set_local_var(new_var, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
2777 }
2778 }
2779 }
2780 } /* one of "-=+?" */
2781
2782 *exp_saveptr = exp_save;
2783 } /* if (exp_op) */
2784
2785 arg[0] = first_ch;
2786 #if ENABLE_HUSH_TICK
2787 store_val:
2788 #endif
2789 if (!(first_ch & 0x80)) { /* unquoted $VAR */
2790 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
2791 if (val) {
2792 /* unquoted var's contents should be globbed, so don't escape */
2793 smallint sv = output->o_escape;
2794 output->o_escape = 0;
2795 n = expand_on_ifs(output, n, val);
2796 val = NULL;
2797 output->o_escape = sv;
2798 }
2799 } else { /* quoted $VAR, val will be appended below */
2800 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
2801 }
2802 } /* default: */
2803 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
2804
2805 if (val) {
2806 o_addQstr(output, val, strlen(val));
2807 }
2808 free(to_be_freed);
2809 /* Do the check to avoid writing to a const string */
2810 if (*p != SPECIAL_VAR_SYMBOL)
2811 *p = SPECIAL_VAR_SYMBOL;
2812
2813 #if ENABLE_HUSH_TICK
2814 o_free(&subst_result);
2815 #endif
2816 arg = ++p;
2817 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
2818
2819 if (arg[0]) {
2820 debug_print_list("expand_vars_to_list[a]", output, n);
2821 /* this part is literal, and it was already pre-quoted
2822 * if needed (much earlier), do not use o_addQstr here! */
2823 o_addstr_with_NUL(output, arg);
2824 debug_print_list("expand_vars_to_list[b]", output, n);
2825 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
2826 && !(ored_ch & 0x80) /* and all vars were not quoted. */
2827 ) {
2828 n--;
2829 /* allow to reuse list[n] later without re-growth */
2830 output->has_empty_slot = 1;
2831 } else {
2832 o_addchr(output, '\0');
2833 }
2834 return n;
2835 }
2836
2837 static char **expand_variables(char **argv, int or_mask)
2838 {
2839 int n;
2840 char **list;
2841 char **v;
2842 o_string output = NULL_O_STRING;
2843
2844 if (or_mask & 0x100) {
2845 output.o_escape = 1; /* protect against globbing for "$var" */
2846 /* (unquoted $var will temporarily switch it off) */
2847 output.o_glob = 1;
2848 }
2849
2850 n = 0;
2851 v = argv;
2852 while (*v) {
2853 n = expand_vars_to_list(&output, n, *v, (unsigned char)or_mask);
2854 v++;
2855 }
2856 debug_print_list("expand_variables", &output, n);
2857
2858 /* output.data (malloced in one block) gets returned in "list" */
2859 list = o_finalize_list(&output, n);
2860 debug_print_strings("expand_variables[1]", list);
2861 return list;
2862 }
2863
2864 static char **expand_strvec_to_strvec(char **argv)
2865 {
2866 return expand_variables(argv, 0x100);
2867 }
2868
2869 #if ENABLE_HUSH_BASH_COMPAT
2870 static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
2871 {
2872 return expand_variables(argv, 0x80);
2873 }
2874 #endif
2875
2876 #ifdef CMD_SINGLEWORD_NOGLOB_COND
2877 static char **expand_strvec_to_strvec_singleword_noglob_cond(char **argv)
2878 {
2879 int n;
2880 char **list;
2881 char **v;
2882 o_string output = NULL_O_STRING;
2883
2884 n = 0;
2885 v = argv;
2886 while (*v) {
2887 int is_var = is_well_formed_var_name(*v, '=');
2888 /* is_var * 0x80: singleword expansion for vars */
2889 n = expand_vars_to_list(&output, n, *v, is_var * 0x80);
2890
2891 /* Subtle! expand_vars_to_list did not glob last word yet.
2892 * It does this only when fed with further data.
2893 * Therefore we set globbing flags AFTER it, not before:
2894 */
2895
2896 /* if it is not recognizably abc=...; then: */
2897 output.o_escape = !is_var; /* protect against globbing for "$var" */
2898 /* (unquoted $var will temporarily switch it off) */
2899 output.o_glob = !is_var; /* and indeed do globbing */
2900 v++;
2901 }
2902 debug_print_list("expand_cond", &output, n);
2903
2904 /* output.data (malloced in one block) gets returned in "list" */
2905 list = o_finalize_list(&output, n);
2906 debug_print_strings("expand_cond[1]", list);
2907 return list;
2908 }
2909 #endif
2910
2911 /* Used for expansion of right hand of assignments */
2912 /* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2913 * "v=/bin/c*" */
2914 static char *expand_string_to_string(const char *str)
2915 {
2916 char *argv[2], **list;
2917
2918 argv[0] = (char*)str;
2919 argv[1] = NULL;
2920 list = expand_variables(argv, 0x80); /* 0x80: singleword expansion */
2921 if (HUSH_DEBUG)
2922 if (!list[0] || list[1])
2923 bb_error_msg_and_die("BUG in varexp2");
2924 /* actually, just move string 2*sizeof(char*) bytes back */
2925 overlapping_strcpy((char*)list, list[0]);
2926 unbackslash((char*)list);
2927 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2928 return (char*)list;
2929 }
2930
2931 /* Used for "eval" builtin */
2932 static char* expand_strvec_to_string(char **argv)
2933 {
2934 char **list;
2935
2936 list = expand_variables(argv, 0x80);
2937 /* Convert all NULs to spaces */
2938 if (list[0]) {
2939 int n = 1;
2940 while (list[n]) {
2941 if (HUSH_DEBUG)
2942 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2943 bb_error_msg_and_die("BUG in varexp3");
2944 /* bash uses ' ' regardless of $IFS contents */
2945 list[n][-1] = ' ';
2946 n++;
2947 }
2948 }
2949 overlapping_strcpy((char*)list, list[0]);
2950 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2951 return (char*)list;
2952 }
2953
2954 static char **expand_assignments(char **argv, int count)
2955 {
2956 int i;
2957 char **p = NULL;
2958 /* Expand assignments into one string each */
2959 for (i = 0; i < count; i++) {
2960 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2961 }
2962 return p;
2963 }
2964
2965
2966 #if BB_MMU
2967 /* never called */
2968 void re_execute_shell(char ***to_free, const char *s,
2969 char *g_argv0, char **g_argv,
2970 char **builtin_argv) NORETURN;
2971
2972 static void reset_traps_to_defaults(void)
2973 {
2974 /* This function is always called in a child shell
2975 * after fork (not vfork, NOMMU doesn't use this function).
2976 */
2977 unsigned sig;
2978 unsigned mask;
2979
2980 /* Child shells are not interactive.
2981 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
2982 * Testcase: (while :; do :; done) + ^Z should background.
2983 * Same goes for SIGTERM, SIGHUP, SIGINT.
2984 */
2985 if (!G.traps && !(G.non_DFL_mask & SPECIAL_INTERACTIVE_SIGS))
2986 return; /* already no traps and no SPECIAL_INTERACTIVE_SIGS */
2987
2988 /* Switching off SPECIAL_INTERACTIVE_SIGS.
2989 * Stupid. It can be done with *single* &= op, but we can't use
2990 * the fact that G.blocked_set is implemented as a bitmask
2991 * in libc... */
2992 mask = (SPECIAL_INTERACTIVE_SIGS >> 1);
2993 sig = 1;
2994 while (1) {
2995 if (mask & 1) {
2996 /* Careful. Only if no trap or trap is not "" */
2997 if (!G.traps || !G.traps[sig] || G.traps[sig][0])
2998 sigdelset(&G.blocked_set, sig);
2999 }
3000 mask >>= 1;
3001 if (!mask)
3002 break;
3003 sig++;
3004 }
3005 /* Our homegrown sig mask is saner to work with :) */
3006 G.non_DFL_mask &= ~SPECIAL_INTERACTIVE_SIGS;
3007
3008 /* Resetting all traps to default except empty ones */
3009 mask = G.non_DFL_mask;
3010 if (G.traps) for (sig = 0; sig < NSIG; sig++, mask >>= 1) {
3011 if (!G.traps[sig] || !G.traps[sig][0])
3012 continue;
3013 free(G.traps[sig]);
3014 G.traps[sig] = NULL;
3015 /* There is no signal for 0 (EXIT) */
3016 if (sig == 0)
3017 continue;
3018 /* There was a trap handler, we just removed it.
3019 * But if sig still has non-DFL handling,
3020 * we should not unblock the sig. */
3021 if (mask & 1)
3022 continue;
3023 sigdelset(&G.blocked_set, sig);
3024 }
3025 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
3026 }
3027
3028 #else /* !BB_MMU */
3029
3030 static void re_execute_shell(char ***to_free, const char *s,
3031 char *g_argv0, char **g_argv,
3032 char **builtin_argv) NORETURN;
3033 static void re_execute_shell(char ***to_free, const char *s,
3034 char *g_argv0, char **g_argv,
3035 char **builtin_argv)
3036 {
3037 # define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x"))
3038 /* delims + 2 * (number of bytes in printed hex numbers) */
3039 char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)];
3040 char *heredoc_argv[4];
3041 struct variable *cur;
3042 # if ENABLE_HUSH_FUNCTIONS
3043 struct function *funcp;
3044 # endif
3045 char **argv, **pp;
3046 unsigned cnt;
3047 unsigned long long empty_trap_mask;
3048
3049 if (!g_argv0) { /* heredoc */
3050 argv = heredoc_argv;
3051 argv[0] = (char *) G.argv0_for_re_execing;
3052 argv[1] = (char *) "-<";
3053 argv[2] = (char *) s;
3054 argv[3] = NULL;
3055 pp = &argv[3]; /* used as pointer to empty environment */
3056 goto do_exec;
3057 }
3058
3059 cnt = 0;
3060 pp = builtin_argv;
3061 if (pp) while (*pp++)
3062 cnt++;
3063
3064 empty_trap_mask = 0;
3065 if (G.traps) {
3066 int sig;
3067 for (sig = 1; sig < NSIG; sig++) {
3068 if (G.traps[sig] && !G.traps[sig][0])
3069 empty_trap_mask |= 1LL << sig;
3070 }
3071 }
3072
3073 sprintf(param_buf, NOMMU_HACK_FMT
3074 , (unsigned) G.root_pid
3075 , (unsigned) G.root_ppid
3076 , (unsigned) G.last_bg_pid
3077 , (unsigned) G.last_exitcode
3078 , cnt
3079 , empty_trap_mask
3080 IF_HUSH_LOOPS(, G.depth_of_loop)
3081 );
3082 # undef NOMMU_HACK_FMT
3083 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...>
3084 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
3085 */
3086 cnt += 6;
3087 for (cur = G.top_var; cur; cur = cur->next) {
3088 if (!cur->flg_export || cur->flg_read_only)
3089 cnt += 2;
3090 }
3091 # if ENABLE_HUSH_FUNCTIONS
3092 for (funcp = G.top_func; funcp; funcp = funcp->next)
3093 cnt += 3;
3094 # endif
3095 pp = g_argv;
3096 while (*pp++)
3097 cnt++;
3098 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
3099 *pp++ = (char *) G.argv0_for_re_execing;
3100 *pp++ = param_buf;
3101 for (cur = G.top_var; cur; cur = cur->next) {
3102 if (cur->varstr == hush_version_str)
3103 continue;
3104 if (cur->flg_read_only) {
3105 *pp++ = (char *) "-R";
3106 *pp++ = cur->varstr;
3107 } else if (!cur->flg_export) {
3108 *pp++ = (char *) "-V";
3109 *pp++ = cur->varstr;
3110 }
3111 }
3112 # if ENABLE_HUSH_FUNCTIONS
3113 for (funcp = G.top_func; funcp; funcp = funcp->next) {
3114 *pp++ = (char *) "-F";
3115 *pp++ = funcp->name;
3116 *pp++ = funcp->body_as_string;
3117 }
3118 # endif
3119 /* We can pass activated traps here. Say, -Tnn:trap_string
3120 *
3121 * However, POSIX says that subshells reset signals with traps
3122 * to SIG_DFL.
3123 * I tested bash-3.2 and it not only does that with true subshells
3124 * of the form ( list ), but with any forked children shells.
3125 * I set trap "echo W" WINCH; and then tried:
3126 *
3127 * { echo 1; sleep 20; echo 2; } &
3128 * while true; do echo 1; sleep 20; echo 2; break; done &
3129 * true | { echo 1; sleep 20; echo 2; } | cat
3130 *
3131 * In all these cases sending SIGWINCH to the child shell
3132 * did not run the trap. If I add trap "echo V" WINCH;
3133 * _inside_ group (just before echo 1), it works.
3134 *
3135 * I conclude it means we don't need to pass active traps here.
3136 * Even if we would use signal handlers instead of signal masking
3137 * in order to implement trap handling,
3138 * exec syscall below resets signals to SIG_DFL for us.
3139 */
3140 *pp++ = (char *) "-c";
3141 *pp++ = (char *) s;
3142 if (builtin_argv) {
3143 while (*++builtin_argv)
3144 *pp++ = *builtin_argv;
3145 *pp++ = (char *) "";
3146 }
3147 *pp++ = g_argv0;
3148 while (*g_argv)
3149 *pp++ = *g_argv++;
3150 /* *pp = NULL; - is already there */
3151 pp = environ;
3152
3153 do_exec:
3154 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
3155 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
3156 execve(bb_busybox_exec_path, argv, pp);
3157 /* Fallback. Useful for init=/bin/hush usage etc */
3158 if (argv[0][0] == '/')
3159 execve(argv[0], argv, pp);
3160 xfunc_error_retval = 127;
3161 bb_error_msg_and_die("can't re-execute the shell");
3162 }
3163 #endif /* !BB_MMU */
3164
3165
3166 static void setup_heredoc(struct redir_struct *redir)
3167 {
3168 struct fd_pair pair;
3169 pid_t pid;
3170 int len, written;
3171 /* the _body_ of heredoc (misleading field name) */
3172 const char *heredoc = redir->rd_filename;
3173 char *expanded;
3174 #if !BB_MMU
3175 char **to_free;
3176 #endif
3177
3178 expanded = NULL;
3179 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
3180 expanded = expand_pseudo_dquoted(heredoc);
3181 if (expanded)
3182 heredoc = expanded;
3183 }
3184 len = strlen(heredoc);
3185
3186 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
3187 xpiped_pair(pair);
3188 xmove_fd(pair.rd, redir->rd_fd);
3189
3190 /* Try writing without forking. Newer kernels have
3191 * dynamically growing pipes. Must use non-blocking write! */
3192 ndelay_on(pair.wr);
3193 while (1) {
3194 written = write(pair.wr, heredoc, len);
3195 if (written <= 0)
3196 break;
3197 len -= written;
3198 if (len == 0) {
3199 close(pair.wr);
3200 free(expanded);
3201 return;
3202 }
3203 heredoc += written;
3204 }
3205 ndelay_off(pair.wr);
3206
3207 /* Okay, pipe buffer was not big enough */
3208 /* Note: we must not create a stray child (bastard? :)
3209 * for the unsuspecting parent process. Child creates a grandchild
3210 * and exits before parent execs the process which consumes heredoc
3211 * (that exec happens after we return from this function) */
3212 #if !BB_MMU
3213 to_free = NULL;
3214 #endif
3215 pid = xvfork();
3216 if (pid == 0) {
3217 /* child */
3218 disable_restore_tty_pgrp_on_exit();
3219 pid = BB_MMU ? xfork() : xvfork();
3220 if (pid != 0)
3221 _exit(0);
3222 /* grandchild */
3223 close(redir->rd_fd); /* read side of the pipe */
3224 #if BB_MMU
3225 full_write(pair.wr, heredoc, len); /* may loop or block */
3226 _exit(0);
3227 #else
3228 /* Delegate blocking writes to another process */
3229 xmove_fd(pair.wr, STDOUT_FILENO);
3230 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
3231 #endif
3232 }
3233 /* parent */
3234 #if ENABLE_HUSH_FAST
3235 G.count_SIGCHLD++;
3236 //bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
3237 #endif
3238 enable_restore_tty_pgrp_on_exit();
3239 #if !BB_MMU
3240 free(to_free);
3241 #endif
3242 close(pair.wr);
3243 free(expanded);
3244 wait(NULL); /* wait till child has died */
3245 }
3246
3247 /* squirrel != NULL means we squirrel away copies of stdin, stdout,
3248 * and stderr if they are redirected. */
3249 static int setup_redirects(struct command *prog, int squirrel[])
3250 {
3251 int openfd, mode;
3252 struct redir_struct *redir;
3253
3254 for (redir = prog->redirects; redir; redir = redir->next) {
3255 if (redir->rd_type == REDIRECT_HEREDOC2) {
3256 /* rd_fd<<HERE case */
3257 if (squirrel && redir->rd_fd < 3
3258 && squirrel[redir->rd_fd] < 0
3259 ) {
3260 squirrel[redir->rd_fd] = dup(redir->rd_fd);
3261 }
3262 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
3263 * of the heredoc */
3264 debug_printf_parse("set heredoc '%s'\n",
3265 redir->rd_filename);
3266 setup_heredoc(redir);
3267 continue;
3268 }
3269
3270 if (redir->rd_dup == REDIRFD_TO_FILE) {
3271 /* rd_fd<*>file case (<*> is <,>,>>,<>) */
3272 char *p;
3273 if (redir->rd_filename == NULL) {
3274 /* Something went wrong in the parse.
3275 * Pretend it didn't happen */
3276 bb_error_msg("bug in redirect parse");
3277 continue;
3278 }
3279 mode = redir_table[redir->rd_type].mode;
3280 p = expand_string_to_string(redir->rd_filename);
3281 openfd = open_or_warn(p, mode);
3282 free(p);
3283 if (openfd < 0) {
3284 /* this could get lost if stderr has been redirected, but
3285 * bash and ash both lose it as well (though zsh doesn't!) */
3286 //what the above comment tries to say?
3287 return 1;
3288 }
3289 } else {
3290 /* rd_fd<*>rd_dup or rd_fd<*>- cases */
3291 openfd = redir->rd_dup;
3292 }
3293
3294 if (openfd != redir->rd_fd) {
3295 if (squirrel && redir->rd_fd < 3
3296 && squirrel[redir->rd_fd] < 0
3297 ) {
3298 squirrel[redir->rd_fd] = dup(redir->rd_fd);
3299 }
3300 if (openfd == REDIRFD_CLOSE) {
3301 /* "n>-" means "close me" */
3302 close(redir->rd_fd);
3303 } else {
3304 xdup2(openfd, redir->rd_fd);
3305 if (redir->rd_dup == REDIRFD_TO_FILE)
3306 close(openfd);
3307 }
3308 }
3309 }
3310 return 0;
3311 }
3312
3313 static void restore_redirects(int squirrel[])
3314 {
3315 int i, fd;
3316 for (i = 0; i < 3; i++) {
3317 fd = squirrel[i];
3318 if (fd != -1) {
3319 /* We simply die on error */
3320 xmove_fd(fd, i);
3321 }
3322 }
3323 }
3324
3325
3326 static void free_pipe_list(struct pipe *head);
3327
3328 /* Return code is the exit status of the pipe */
3329 static void free_pipe(struct pipe *pi)
3330 {
3331 char **p;
3332 struct command *command;
3333 struct redir_struct *r, *rnext;
3334 int a, i;
3335
3336 if (pi->stopped_cmds > 0) /* why? */
3337 return;
3338 debug_printf_clean("run pipe: (pid %d)\n", getpid());
3339 for (i = 0; i < pi->num_cmds; i++) {
3340 command = &pi->cmds[i];
3341 debug_printf_clean(" command %d:\n", i);
3342 if (command->argv) {
3343 for (a = 0, p = command->argv; *p; a++, p++) {
3344 debug_printf_clean(" argv[%d] = %s\n", a, *p);
3345 }
3346 free_strings(command->argv);
3347 command->argv = NULL;
3348 }
3349 /* not "else if": on syntax error, we may have both! */
3350 if (command->group) {
3351 debug_printf_clean(" begin group (cmd_type:%d)\n",
3352 command->cmd_type);
3353 free_pipe_list(command->group);
3354 debug_printf_clean(" end group\n");
3355 command->group = NULL;
3356 }
3357 /* else is crucial here.
3358 * If group != NULL, child_func is meaningless */
3359 #if ENABLE_HUSH_FUNCTIONS
3360 else if (command->child_func) {
3361 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
3362 command->child_func->parent_cmd = NULL;
3363 }
3364 #endif
3365 #if !BB_MMU
3366 free(command->group_as_string);
3367 command->group_as_string = NULL;
3368 #endif
3369 for (r = command->redirects; r; r = rnext) {
3370 debug_printf_clean(" redirect %d%s",
3371 r->rd_fd, redir_table[r->rd_type].descrip);
3372 /* guard against the case >$FOO, where foo is unset or blank */
3373 if (r->rd_filename) {
3374 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
3375 free(r->rd_filename);
3376 r->rd_filename = NULL;
3377 }
3378 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
3379 rnext = r->next;
3380 free(r);
3381 }
3382 command->redirects = NULL;
3383 }
3384 free(pi->cmds); /* children are an array, they get freed all at once */
3385 pi->cmds = NULL;
3386 #if ENABLE_HUSH_JOB
3387 free(pi->cmdtext);
3388 pi->cmdtext = NULL;
3389 #endif
3390 }
3391
3392 static void free_pipe_list(struct pipe *head)
3393 {
3394 struct pipe *pi, *next;
3395
3396 for (pi = head; pi; pi = next) {
3397 #if HAS_KEYWORDS
3398 debug_printf_clean(" pipe reserved word %d\n", pi->res_word);
3399 #endif
3400 free_pipe(pi);
3401 debug_printf_clean("pipe followup code %d\n", pi->followup);
3402 next = pi->next;
3403 /*pi->next = NULL;*/
3404 free(pi);
3405 }
3406 }
3407
3408
3409 static int run_list(struct pipe *pi);
3410 #if BB_MMU
3411 #define parse_stream(pstring, input, end_trigger) \
3412 parse_stream(input, end_trigger)
3413 #endif
3414 static struct pipe *parse_stream(char **pstring,
3415 struct in_str *input,
3416 int end_trigger);
3417 static void parse_and_run_string(const char *s);
3418
3419
3420 static char *find_in_path(const char *arg)
3421 {
3422 char *ret = NULL;
3423 const char *PATH = get_local_var_value("PATH");
3424
3425 if (!PATH)
3426 return NULL;
3427
3428 while (1) {
3429 const char *end = strchrnul(PATH, ':');
3430 int sz = end - PATH; /* must be int! */
3431
3432 free(ret);
3433 if (sz != 0) {
3434 ret = xasprintf("%.*s/%s", sz, PATH, arg);
3435 } else {
3436 /* We have xxx::yyyy in $PATH,
3437 * it means "use current dir" */
3438 ret = xstrdup(arg);
3439 }
3440 if (access(ret, F_OK) == 0)
3441 break;
3442
3443 if (*end == '\0') {
3444 free(ret);
3445 return NULL;
3446 }
3447 PATH = end + 1;
3448 }
3449
3450 return ret;
3451 }
3452
3453 static const struct built_in_command* find_builtin_helper(const char *name,
3454 const struct built_in_command *x,
3455 const struct built_in_command *end)
3456 {
3457 while (x != end) {
3458 if (strcmp(name, x->b_cmd) != 0) {
3459 x++;
3460 continue;
3461 }
3462 debug_printf_exec("found builtin '%s'\n", name);
3463 return x;
3464 }
3465 return NULL;
3466 }
3467 static const struct built_in_command* find_builtin1(const char *name)
3468 {
3469 return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
3470 }
3471 static const struct built_in_command* find_builtin(const char *name)
3472 {
3473 const struct built_in_command *x = find_builtin1(name);
3474 if (x)
3475 return x;
3476 return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
3477 }
3478
3479 #if ENABLE_HUSH_FUNCTIONS
3480 static struct function **find_function_slot(const char *name)
3481 {
3482 struct function **funcpp = &G.top_func;
3483 while (*funcpp) {
3484 if (strcmp(name, (*funcpp)->name) == 0) {
3485 break;
3486 }
3487 funcpp = &(*funcpp)->next;
3488 }
3489 return funcpp;
3490 }
3491
3492 static const struct function *find_function(const char *name)
3493 {
3494 const struct function *funcp = *find_function_slot(name);
3495 if (funcp)
3496 debug_printf_exec("found function '%s'\n", name);
3497 return funcp;
3498 }
3499
3500 /* Note: takes ownership on name ptr */
3501 static struct function *new_function(char *name)
3502 {
3503 struct function **funcpp = find_function_slot(name);
3504 struct function *funcp = *funcpp;
3505
3506 if (funcp != NULL) {
3507 struct command *cmd = funcp->parent_cmd;
3508 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
3509 if (!cmd) {
3510 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
3511 free(funcp->name);
3512 /* Note: if !funcp->body, do not free body_as_string!
3513 * This is a special case of "-F name body" function:
3514 * body_as_string was not malloced! */
3515 if (funcp->body) {
3516 free_pipe_list(funcp->body);
3517 # if !BB_MMU
3518 free(funcp->body_as_string);
3519 # endif
3520 }
3521 } else {
3522 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
3523 cmd->argv[0] = funcp->name;
3524 cmd->group = funcp->body;
3525 # if !BB_MMU
3526 cmd->group_as_string = funcp->body_as_string;
3527 # endif
3528 }
3529 } else {
3530 debug_printf_exec("remembering new function '%s'\n", name);
3531 funcp = *funcpp = xzalloc(sizeof(*funcp));
3532 /*funcp->next = NULL;*/
3533 }
3534
3535 funcp->name = name;
3536 return funcp;
3537 }
3538
3539 static void unset_func(const char *name)
3540 {
3541 struct function **funcpp = find_function_slot(name);
3542 struct function *funcp = *funcpp;
3543
3544 if (funcp != NULL) {
3545 debug_printf_exec("freeing function '%s'\n", funcp->name);
3546 *funcpp = funcp->next;
3547 /* funcp is unlinked now, deleting it.
3548 * Note: if !funcp->body, the function was created by
3549 * "-F name body", do not free ->body_as_string
3550 * and ->name as they were not malloced. */
3551 if (funcp->body) {
3552 free_pipe_list(funcp->body);
3553 free(funcp->name);
3554 # if !BB_MMU
3555 free(funcp->body_as_string);
3556 # endif
3557 }
3558 free(funcp);
3559 }
3560 }
3561
3562 # if BB_MMU
3563 #define exec_function(to_free, funcp, argv) \
3564 exec_function(funcp, argv)
3565 # endif
3566 static void exec_function(char ***to_free,
3567 const struct function *funcp,
3568 char **argv) NORETURN;
3569 static void exec_function(char ***to_free,
3570 const struct function *funcp,
3571 char **argv)
3572 {
3573 # if BB_MMU
3574 int n = 1;
3575
3576 argv[0] = G.global_argv[0];
3577 G.global_argv = argv;
3578 while (*++argv)
3579 n++;
3580 G.global_argc = n;
3581 /* On MMU, funcp->body is always non-NULL */
3582 n = run_list(funcp->body);
3583 fflush_all();
3584 _exit(n);
3585 # else
3586 re_execute_shell(to_free,
3587 funcp->body_as_string,
3588 G.global_argv[0],
3589 argv + 1,
3590 NULL);
3591 # endif
3592 }
3593
3594 static int run_function(const struct function *funcp, char **argv)
3595 {
3596 int rc;
3597 save_arg_t sv;
3598 smallint sv_flg;
3599
3600 save_and_replace_G_args(&sv, argv);
3601
3602 /* "we are in function, ok to use return" */
3603 sv_flg = G.flag_return_in_progress;
3604 G.flag_return_in_progress = -1;
3605 # if ENABLE_HUSH_LOCAL
3606 G.func_nest_level++;
3607 # endif
3608
3609 /* On MMU, funcp->body is always non-NULL */
3610 # if !BB_MMU
3611 if (!funcp->body) {
3612 /* Function defined by -F */
3613 parse_and_run_string(funcp->body_as_string);
3614 rc = G.last_exitcode;
3615 } else
3616 # endif
3617 {
3618 rc = run_list(funcp->body);
3619 }
3620
3621 # if ENABLE_HUSH_LOCAL
3622 {
3623 struct variable *var;
3624 struct variable **var_pp;
3625
3626 var_pp = &G.top_var;
3627 while ((var = *var_pp) != NULL) {
3628 if (var->func_nest_level < G.func_nest_level) {
3629 var_pp = &var->next;
3630 continue;
3631 }
3632 /* Unexport */
3633 if (var->flg_export)
3634 bb_unsetenv(var->varstr);
3635 /* Remove from global list */
3636 *var_pp = var->next;
3637 /* Free */
3638 if (!var->max_len)
3639 free(var->varstr);
3640 free(var);
3641 }
3642 G.func_nest_level--;
3643 }
3644 # endif
3645 G.flag_return_in_progress = sv_flg;
3646
3647 restore_G_args(&sv, argv);
3648
3649 return rc;
3650 }
3651 #endif /* ENABLE_HUSH_FUNCTIONS */
3652
3653
3654 #if BB_MMU
3655 #define exec_builtin(to_free, x, argv) \
3656 exec_builtin(x, argv)
3657 #else
3658 #define exec_builtin(to_free, x, argv) \
3659 exec_builtin(to_free, argv)
3660 #endif
3661 static void exec_builtin(char ***to_free,
3662 const struct built_in_command *x,
3663 char **argv) NORETURN;
3664 static void exec_builtin(char ***to_free,
3665 const struct built_in_command *x,
3666 char **argv)
3667 {
3668 #if BB_MMU
3669 int rcode = x->b_function(argv);
3670 fflush_all();
3671 _exit(rcode);
3672 #else
3673 /* On NOMMU, we must never block!
3674 * Example: { sleep 99 | read line; } & echo Ok
3675 */
3676 re_execute_shell(to_free,
3677 argv[0],
3678 G.global_argv[0],
3679 G.global_argv + 1,
3680 argv);
3681 #endif
3682 }
3683
3684
3685 static void execvp_or_die(char **argv) NORETURN;
3686 static void execvp_or_die(char **argv)
3687 {
3688 debug_printf_exec("execing '%s'\n", argv[0]);
3689 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
3690 execvp(argv[0], argv);
3691 bb_perror_msg("can't execute '%s'", argv[0]);
3692 _exit(127); /* bash compat */
3693 }
3694
3695 #if BB_MMU
3696 #define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
3697 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
3698 #define pseudo_exec(nommu_save, command, argv_expanded) \
3699 pseudo_exec(command, argv_expanded)
3700 #endif
3701
3702 /* Called after [v]fork() in run_pipe, or from builtin_exec.
3703 * Never returns.
3704 * Don't exit() here. If you don't exec, use _exit instead.
3705 * The at_exit handlers apparently confuse the calling process,
3706 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
3707 static void pseudo_exec_argv(nommu_save_t *nommu_save,
3708 char **argv, int assignment_cnt,
3709 char **argv_expanded) NORETURN;
3710 static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
3711 char **argv, int assignment_cnt,
3712 char **argv_expanded)
3713 {
3714 char **new_env;
3715
3716 /* Case when we are here: ... | var=val | ... */
3717 if (!argv[assignment_cnt])
3718 _exit(EXIT_SUCCESS);
3719
3720 new_env = expand_assignments(argv, assignment_cnt);
3721 #if BB_MMU
3722 set_vars_and_save_old(new_env);
3723 free(new_env); /* optional */
3724 /* we can also destroy set_vars_and_save_old's return value,
3725 * to save memory */
3726 #else
3727 nommu_save->new_env = new_env;
3728 nommu_save->old_vars = set_vars_and_save_old(new_env);
3729 #endif
3730 if (argv_expanded) {
3731 argv = argv_expanded;
3732 } else {
3733 argv = expand_strvec_to_strvec(argv + assignment_cnt);
3734 #if !BB_MMU
3735 nommu_save->argv = argv;
3736 #endif
3737 }
3738
3739 #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
3740 if (strchr(argv[0], '/') != NULL)
3741 goto skip;
3742 #endif
3743
3744 /* Check if the command matches any of the builtins.
3745 * Depending on context, this might be redundant. But it's
3746 * easier to waste a few CPU cycles than it is to figure out
3747 * if this is one of those cases.
3748 */
3749 {
3750 /* On NOMMU, it is more expensive to re-execute shell
3751 * just in order to run echo or test builtin.
3752 * It's better to skip it here and run corresponding
3753 * non-builtin later. */
3754 const struct built_in_command *x;
3755 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
3756 if (x) {
3757 exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
3758 }
3759 }
3760 #if ENABLE_HUSH_FUNCTIONS
3761 /* Check if the command matches any functions */
3762 {
3763 const struct function *funcp = find_function(argv[0]);
3764 if (funcp) {
3765 exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
3766 }
3767 }
3768 #endif
3769
3770 #if ENABLE_FEATURE_SH_STANDALONE
3771 /* Check if the command matches any busybox applets */
3772 {
3773 int a = find_applet_by_name(argv[0]);
3774 if (a >= 0) {
3775 # if BB_MMU /* see above why on NOMMU it is not allowed */
3776 if (APPLET_IS_NOEXEC(a)) {
3777 debug_printf_exec("running applet '%s'\n", argv[0]);
3778 run_applet_no_and_exit(a, argv);
3779 }
3780 # endif
3781 /* Re-exec ourselves */
3782 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
3783 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
3784 execv(bb_busybox_exec_path, argv);
3785 /* If they called chroot or otherwise made the binary no longer
3786 * executable, fall through */
3787 }
3788 }
3789 #endif
3790
3791 #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
3792 skip:
3793 #endif
3794 execvp_or_die(argv);
3795 }
3796
3797 /* Called after [v]fork() in run_pipe
3798 */
3799 static void pseudo_exec(nommu_save_t *nommu_save,
3800 struct command *command,
3801 char **argv_expanded) NORETURN;
3802 static void pseudo_exec(nommu_save_t *nommu_save,
3803 struct command *command,
3804 char **argv_expanded)
3805 {
3806 if (command->argv) {
3807 pseudo_exec_argv(nommu_save, command->argv,
3808 command->assignment_cnt, argv_expanded);
3809 }
3810
3811 if (command->group) {
3812 /* Cases when we are here:
3813 * ( list )
3814 * { list } &
3815 * ... | ( list ) | ...
3816 * ... | { list } | ...
3817 */
3818 #if BB_MMU
3819 int rcode;
3820 debug_printf_exec("pseudo_exec: run_list\n");
3821 reset_traps_to_defaults();
3822 rcode = run_list(command->group);
3823 /* OK to leak memory by not calling free_pipe_list,
3824 * since this process is about to exit */
3825 _exit(rcode);
3826 #else
3827 re_execute_shell(&nommu_save->argv_from_re_execing,
3828 command->group_as_string,
3829 G.global_argv[0],
3830 G.global_argv + 1,
3831 NULL);
3832 #endif
3833 }
3834
3835 /* Case when we are here: ... | >file */
3836 debug_printf_exec("pseudo_exec'ed null command\n");
3837 _exit(EXIT_SUCCESS);
3838 }
3839
3840 #if ENABLE_HUSH_JOB
3841 static const char *get_cmdtext(struct pipe *pi)
3842 {
3843 char **argv;
3844 char *p;
3845 int len;
3846
3847 /* This is subtle. ->cmdtext is created only on first backgrounding.
3848 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
3849 * On subsequent bg argv is trashed, but we won't use it */
3850 if (pi->cmdtext)
3851 return pi->cmdtext;
3852 argv = pi->cmds[0].argv;
3853 if (!argv || !argv[0]) {
3854 pi->cmdtext = xzalloc(1);
3855 return pi->cmdtext;
3856 }
3857
3858 len = 0;
3859 do {
3860 len += strlen(*argv) + 1;
3861 } while (*++argv);
3862 p = xmalloc(len);
3863 pi->cmdtext = p;
3864 argv = pi->cmds[0].argv;
3865 do {
3866 len = strlen(*argv);
3867 memcpy(p, *argv, len);
3868 p += len;
3869 *p++ = ' ';
3870 } while (*++argv);
3871 p[-1] = '\0';
3872 return pi->cmdtext;
3873 }
3874
3875 static void insert_bg_job(struct pipe *pi)
3876 {
3877 struct pipe *job, **jobp;
3878 int i;
3879
3880 /* Linear search for the ID of the job to use */
3881 pi->jobid = 1;
3882 for (job = G.job_list; job; job = job->next)
3883 if (job->jobid >= pi->jobid)
3884 pi->jobid = job->jobid + 1;
3885
3886 /* Add job to the list of running jobs */
3887 jobp = &G.job_list;
3888 while ((job = *jobp) != NULL)
3889 jobp = &job->next;
3890 job = *jobp = xmalloc(sizeof(*job));
3891
3892 *job = *pi; /* physical copy */
3893 job->next = NULL;
3894 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
3895 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
3896 for (i = 0; i < pi->num_cmds; i++) {
3897 job->cmds[i].pid = pi->cmds[i].pid;
3898 /* all other fields are not used and stay zero */
3899 }
3900 job->cmdtext = xstrdup(get_cmdtext(pi));
3901
3902 if (G_interactive_fd)
3903 printf("[%d] %d %s\n", job->jobid, job->cmds[0].pid, job->cmdtext);
3904 G.last_jobid = job->jobid;
3905 }
3906
3907 static void remove_bg_job(struct pipe *pi)
3908 {
3909 struct pipe *prev_pipe;
3910
3911 if (pi == G.job_list) {
3912 G.job_list = pi->next;
3913 } else {
3914 prev_pipe = G.job_list;
3915 while (prev_pipe->next != pi)
3916 prev_pipe = prev_pipe->next;
3917 prev_pipe->next = pi->next;
3918 }
3919 if (G.job_list)
3920 G.last_jobid = G.job_list->jobid;
3921 else
3922 G.last_jobid = 0;
3923 }
3924
3925 /* Remove a backgrounded job */
3926 static void delete_finished_bg_job(struct pipe *pi)
3927 {
3928 remove_bg_job(pi);
3929 pi->stopped_cmds = 0;
3930 free_pipe(pi);
3931 free(pi);
3932 }
3933 #endif /* JOB */
3934
3935 /* Check to see if any processes have exited -- if they
3936 * have, figure out why and see if a job has completed */
3937 static int checkjobs(struct pipe* fg_pipe)
3938 {
3939 int attributes;
3940 int status;
3941 #if ENABLE_HUSH_JOB
3942 struct pipe *pi;
3943 #endif
3944 pid_t childpid;
3945 int rcode = 0;
3946
3947 debug_printf_jobs("checkjobs %p\n", fg_pipe);
3948
3949 attributes = WUNTRACED;
3950 if (fg_pipe == NULL)
3951 attributes |= WNOHANG;
3952
3953 errno = 0;
3954 #if ENABLE_HUSH_FAST
3955 if (G.handled_SIGCHLD == G.count_SIGCHLD) {
3956 //bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
3957 //getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
3958 /* There was neither fork nor SIGCHLD since last waitpid */
3959 /* Avoid doing waitpid syscall if possible */
3960 if (!G.we_have_children) {
3961 errno = ECHILD;
3962 return -1;
3963 }
3964 if (fg_pipe == NULL) { /* is WNOHANG set? */
3965 /* We have children, but they did not exit
3966 * or stop yet (we saw no SIGCHLD) */
3967 return 0;
3968 }
3969 /* else: !WNOHANG, waitpid will block, can't short-circuit */
3970 }
3971 #endif
3972
3973 /* Do we do this right?
3974 * bash-3.00# sleep 20 | false
3975 * <ctrl-Z pressed>
3976 * [3]+ Stopped sleep 20 | false
3977 * bash-3.00# echo $?
3978 * 1 <========== bg pipe is not fully done, but exitcode is already known!
3979 * [hush 1.14.0: yes we do it right]
3980 */
3981 wait_more:
3982 while (1) {
3983 int i;
3984 int dead;
3985
3986 #if ENABLE_HUSH_FAST
3987 i = G.count_SIGCHLD;
3988 #endif
3989 childpid = waitpid(-1, &status, attributes);
3990 if (childpid <= 0) {
3991 if (childpid && errno != ECHILD)
3992 bb_perror_msg("waitpid");
3993 #if ENABLE_HUSH_FAST
3994 else { /* Until next SIGCHLD, waitpid's are useless */
3995 G.we_have_children = (childpid == 0);
3996 G.handled_SIGCHLD = i;
3997 //bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
3998 }
3999 #endif
4000 break;
4001 }
4002 dead = WIFEXITED(status) || WIFSIGNALED(status);
4003
4004 #if DEBUG_JOBS
4005 if (WIFSTOPPED(status))
4006 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
4007 childpid, WSTOPSIG(status), WEXITSTATUS(status));
4008 if (WIFSIGNALED(status))
4009 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
4010 childpid, WTERMSIG(status), WEXITSTATUS(status));
4011 if (WIFEXITED(status))
4012 debug_printf_jobs("pid %d exited, exitcode %d\n",
4013 childpid, WEXITSTATUS(status));
4014 #endif
4015 /* Were we asked to wait for fg pipe? */
4016 if (fg_pipe) {
4017 for (i = 0; i < fg_pipe->num_cmds; i++) {
4018 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
4019 if (fg_pipe->cmds[i].pid != childpid)
4020 continue;
4021 if (dead) {
4022 fg_pipe->cmds[i].pid = 0;
4023 fg_pipe->alive_cmds--;
4024 if (i == fg_pipe->num_cmds - 1) {
4025 /* last process gives overall exitstatus */
4026 rcode = WEXITSTATUS(status);
4027 /* bash prints killer signal's name for *last*
4028 * process in pipe (prints just newline for SIGINT).
4029 * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
4030 */
4031 if (WIFSIGNALED(status)) {
4032 int sig = WTERMSIG(status);
4033 printf("%s\n", sig == SIGINT ? "" : get_signame(sig));
4034 /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
4035 * Maybe we need to use sig | 128? */
4036 rcode = sig + 128;
4037 }
4038 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
4039 }
4040 } else {
4041 fg_pipe->cmds[i].is_stopped = 1;
4042 fg_pipe->stopped_cmds++;
4043 }
4044 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
4045 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
4046 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
4047 /* All processes in fg pipe have exited or stopped */
4048 /* Note: *non-interactive* bash does not continue if all processes in fg pipe
4049 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
4050 * and "killall -STOP cat" */
4051 if (G_interactive_fd) {
4052 #if ENABLE_HUSH_JOB
4053 if (fg_pipe->alive_cmds)
4054 insert_bg_job(fg_pipe);
4055 #endif
4056 return rcode;
4057 }
4058 if (!fg_pipe->alive_cmds)
4059 return rcode;
4060 }
4061 /* There are still running processes in the fg pipe */
4062 goto wait_more; /* do waitpid again */
4063 }
4064 /* it wasnt fg_pipe, look for process in bg pipes */
4065 }
4066
4067 #if ENABLE_HUSH_JOB
4068 /* We asked to wait for bg or orphaned children */
4069 /* No need to remember exitcode in this case */
4070 for (pi = G.job_list; pi; pi = pi->next) {
4071 for (i = 0; i < pi->num_cmds; i++) {
4072 if (pi->cmds[i].pid == childpid)
4073 goto found_pi_and_prognum;
4074 }
4075 }
4076 /* Happens when shell is used as init process (init=/bin/sh) */
4077 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
4078 continue; /* do waitpid again */
4079
4080 found_pi_and_prognum:
4081 if (dead) {
4082 /* child exited */
4083 pi->cmds[i].pid = 0;
4084 pi->alive_cmds--;
4085 if (!pi->alive_cmds) {
4086 if (G_interactive_fd)
4087 printf(JOB_STATUS_FORMAT, pi->jobid,
4088 "Done", pi->cmdtext);
4089 delete_finished_bg_job(pi);
4090 }
4091 } else {
4092 /* child stopped */
4093 pi->cmds[i].is_stopped = 1;
4094 pi->stopped_cmds++;
4095 }
4096 #endif
4097 } /* while (waitpid succeeds)... */
4098
4099 return rcode;
4100 }
4101
4102 #if ENABLE_HUSH_JOB
4103 static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
4104 {
4105 pid_t p;
4106 int rcode = checkjobs(fg_pipe);
4107 if (G_saved_tty_pgrp) {
4108 /* Job finished, move the shell to the foreground */
4109 p = getpgrp(); /* our process group id */
4110 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
4111 tcsetpgrp(G_interactive_fd, p);
4112 }
4113 return rcode;
4114 }
4115 #endif
4116
4117 /* Start all the jobs, but don't wait for anything to finish.
4118 * See checkjobs().
4119 *
4120 * Return code is normally -1, when the caller has to wait for children
4121 * to finish to determine the exit status of the pipe. If the pipe
4122 * is a simple builtin command, however, the action is done by the
4123 * time run_pipe returns, and the exit code is provided as the
4124 * return value.
4125 *
4126 * Returns -1 only if started some children. IOW: we have to
4127 * mask out retvals of builtins etc with 0xff!
4128 *
4129 * The only case when we do not need to [v]fork is when the pipe
4130 * is single, non-backgrounded, non-subshell command. Examples:
4131 * cmd ; ... { list } ; ...
4132 * cmd && ... { list } && ...
4133 * cmd || ... { list } || ...
4134 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
4135 * or (if SH_STANDALONE) an applet, and we can run the { list }
4136 * with run_list. If it isn't one of these, we fork and exec cmd.
4137 *
4138 * Cases when we must fork:
4139 * non-single: cmd | cmd
4140 * backgrounded: cmd & { list } &
4141 * subshell: ( list ) [&]
4142 */
4143 static NOINLINE int run_pipe(struct pipe *pi)
4144 {
4145 static const char *const null_ptr = NULL;
4146 int i;
4147 int nextin;
4148 struct command *command;
4149 char **argv_expanded;
4150 char **argv;
4151 char *p;
4152 /* it is not always needed, but we aim to smaller code */
4153 int squirrel[] = { -1, -1, -1 };
4154 int rcode;
4155
4156 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
4157 debug_enter();
4158
4159 IF_HUSH_JOB(pi->pgrp = -1;)
4160 pi->stopped_cmds = 0;
4161 command = &(pi->cmds[0]);
4162 argv_expanded = NULL;
4163
4164 if (pi->num_cmds != 1
4165 || pi->followup == PIPE_BG
4166 || command->cmd_type == CMD_SUBSHELL
4167 ) {
4168 goto must_fork;
4169 }
4170
4171 pi->alive_cmds = 1;
4172
4173 debug_printf_exec(": group:%p argv:'%s'\n",
4174 command->group, command->argv ? command->argv[0] : "NONE");
4175
4176 if (command->group) {
4177 #if ENABLE_HUSH_FUNCTIONS
4178 if (command->cmd_type == CMD_FUNCDEF) {
4179 /* "executing" func () { list } */
4180 struct function *funcp;
4181
4182 funcp = new_function(command->argv[0]);
4183 /* funcp->name is already set to argv[0] */
4184 funcp->body = command->group;
4185 # if !BB_MMU
4186 funcp->body_as_string = command->group_as_string;
4187 command->group_as_string = NULL;
4188 # endif
4189 command->group = NULL;
4190 command->argv[0] = NULL;
4191 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
4192 funcp->parent_cmd = command;
4193 command->child_func = funcp;
4194
4195 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
4196 debug_leave();
4197 return EXIT_SUCCESS;
4198 }
4199 #endif
4200 /* { list } */
4201 debug_printf("non-subshell group\n");
4202 rcode = 1; /* exitcode if redir failed */
4203 if (setup_redirects(command, squirrel) == 0) {
4204 debug_printf_exec(": run_list\n");
4205 rcode = run_list(command->group) & 0xff;
4206 }
4207 restore_redirects(squirrel);
4208 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
4209 debug_leave();
4210 debug_printf_exec("run_pipe: return %d\n", rcode);
4211 return rcode;
4212 }
4213
4214 argv = command->argv ? command->argv : (char **) &null_ptr;
4215 {
4216 const struct built_in_command *x;
4217 #if ENABLE_HUSH_FUNCTIONS
4218 const struct function *funcp;
4219 #else
4220 enum { funcp = 0 };
4221 #endif
4222 char **new_env = NULL;
4223 struct variable *old_vars = NULL;
4224
4225 if (argv[command->assignment_cnt] == NULL) {
4226 /* Assignments, but no command */
4227 /* Ensure redirects take effect (that is, create files).
4228 * Try "a=t >file": */
4229 rcode = setup_redirects(command, squirrel);
4230 restore_redirects(squirrel);
4231 /* Set shell variables */
4232 while (*argv) {
4233 p = expand_string_to_string(*argv);
4234 debug_printf_exec("set shell var:'%s'->'%s'\n",
4235 *argv, p);
4236 set_local_var(p, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
4237 argv++;
4238 }
4239 /* Redirect error sets $? to 1. Othervise,
4240 * if evaluating assignment value set $?, retain it.
4241 * Try "false; q=`exit 2`; echo $?" - should print 2: */
4242 if (rcode == 0)
4243 rcode = G.last_exitcode;
4244 /* Do we need to flag set_local_var() errors?
4245 * "assignment to readonly var" and "putenv error"
4246 */
4247 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
4248 debug_leave();
4249 debug_printf_exec("run_pipe: return %d\n", rcode);
4250 return rcode;
4251 }
4252
4253 /* Expand the rest into (possibly) many strings each */
4254 if (0) {}
4255 #if ENABLE_HUSH_BASH_COMPAT
4256 else if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
4257 argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
4258 }
4259 #endif
4260 #ifdef CMD_SINGLEWORD_NOGLOB_COND
4261 else if (command->cmd_type == CMD_SINGLEWORD_NOGLOB_COND) {
4262 argv_expanded = expand_strvec_to_strvec_singleword_noglob_cond(argv + command->assignment_cnt);
4263
4264 }
4265 #endif
4266 else {
4267 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
4268 }
4269
4270 /* if someone gives us an empty string: `cmd with empty output` */
4271 if (!argv_expanded[0]) {
4272 free(argv_expanded);
4273 debug_leave();
4274 return G.last_exitcode;
4275 }
4276
4277 x = find_builtin(argv_expanded[0]);
4278 #if ENABLE_HUSH_FUNCTIONS
4279 funcp = NULL;
4280 if (!x)
4281 funcp = find_function(argv_expanded[0]);
4282 #endif
4283 if (x || funcp) {
4284 if (!funcp) {
4285 if (x->b_function == builtin_exec && argv_expanded[1] == NULL) {
4286 debug_printf("exec with redirects only\n");
4287 rcode = setup_redirects(command, NULL);
4288 goto clean_up_and_ret1;
4289 }
4290 }
4291 /* setup_redirects acts on file descriptors, not FILEs.
4292 * This is perfect for work that comes after exec().
4293 * Is it really safe for inline use? Experimentally,
4294 * things seem to work. */
4295 rcode = setup_redirects(command, squirrel);
4296 if (rcode == 0) {
4297 new_env = expand_assignments(argv, command->assignment_cnt);
4298 old_vars = set_vars_and_save_old(new_env);
4299 if (!funcp) {
4300 debug_printf_exec(": builtin '%s' '%s'...\n",
4301 x->b_cmd, argv_expanded[1]);
4302 rcode = x->b_function(argv_expanded) & 0xff;
4303 fflush_all();
4304 }
4305 #if ENABLE_HUSH_FUNCTIONS
4306 else {
4307 # if ENABLE_HUSH_LOCAL
4308 struct variable **sv;
4309 sv = G.shadowed_vars_pp;
4310 G.shadowed_vars_pp = &old_vars;
4311 # endif
4312 debug_printf_exec(": function '%s' '%s'...\n",
4313 funcp->name, argv_expanded[1]);
4314 rcode = run_function(funcp, argv_expanded) & 0xff;
4315 # if ENABLE_HUSH_LOCAL
4316 G.shadowed_vars_pp = sv;
4317 # endif
4318 }
4319 #endif
4320 }
4321 #if ENABLE_FEATURE_SH_STANDALONE
4322 clean_up_and_ret:
4323 #endif
4324 restore_redirects(squirrel);
4325 unset_vars(new_env);
4326 add_vars(old_vars);
4327 clean_up_and_ret1:
4328 free(argv_expanded);
4329 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
4330 debug_leave();
4331 debug_printf_exec("run_pipe return %d\n", rcode);
4332 return rcode;
4333 }
4334
4335 #if ENABLE_FEATURE_SH_STANDALONE
4336 i = find_applet_by_name(argv_expanded[0]);
4337 if (i >= 0 && APPLET_IS_NOFORK(i)) {
4338 rcode = setup_redirects(command, squirrel);
4339 if (rcode == 0) {
4340 new_env = expand_assignments(argv, command->assignment_cnt);
4341 old_vars = set_vars_and_save_old(new_env);
4342 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
4343 argv_expanded[0], argv_expanded[1]);
4344 rcode = run_nofork_applet(i, argv_expanded);
4345 }
4346 goto clean_up_and_ret;
4347 }
4348 #endif
4349 /* It is neither builtin nor applet. We must fork. */
4350 }
4351
4352 must_fork:
4353 /* NB: argv_expanded may already be created, and that
4354 * might include `cmd` runs! Do not rerun it! We *must*
4355 * use argv_expanded if it's non-NULL */
4356
4357 /* Going to fork a child per each pipe member */
4358 pi->alive_cmds = 0;
4359 nextin = 0;
4360
4361 for (i = 0; i < pi->num_cmds; i++) {
4362 struct fd_pair pipefds;
4363 #if !BB_MMU
4364 volatile nommu_save_t nommu_save;
4365 nommu_save.new_env = NULL;
4366 nommu_save.old_vars = NULL;
4367 nommu_save.argv = NULL;
4368 nommu_save.argv_from_re_execing = NULL;
4369 #endif
4370 command = &(pi->cmds[i]);
4371 if (command->argv) {
4372 debug_printf_exec(": pipe member '%s' '%s'...\n",
4373 command->argv[0], command->argv[1]);
4374 } else {
4375 debug_printf_exec(": pipe member with no argv\n");
4376 }
4377
4378 /* pipes are inserted between pairs of commands */
4379 pipefds.rd = 0;
4380 pipefds.wr = 1;
4381 if ((i + 1) < pi->num_cmds)
4382 xpiped_pair(pipefds);
4383
4384 command->pid = BB_MMU ? fork() : vfork();
4385 if (!command->pid) { /* child */
4386 #if ENABLE_HUSH_JOB
4387 disable_restore_tty_pgrp_on_exit();
4388 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
4389
4390 /* Every child adds itself to new process group
4391 * with pgid == pid_of_first_child_in_pipe */
4392 if (G.run_list_level == 1 && G_interactive_fd) {
4393 pid_t pgrp;
4394 pgrp = pi->pgrp;
4395 if (pgrp < 0) /* true for 1st process only */
4396 pgrp = getpid();
4397 if (setpgid(0, pgrp) == 0
4398 && pi->followup != PIPE_BG
4399 && G_saved_tty_pgrp /* we have ctty */
4400 ) {
4401 /* We do it in *every* child, not just first,
4402 * to avoid races */
4403 tcsetpgrp(G_interactive_fd, pgrp);
4404 }
4405 }
4406 #endif
4407 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
4408 /* 1st cmd in backgrounded pipe
4409 * should have its stdin /dev/null'ed */
4410 close(0);
4411 if (open(bb_dev_null, O_RDONLY))
4412 xopen("/", O_RDONLY);
4413 } else {
4414 xmove_fd(nextin, 0);
4415 }
4416 xmove_fd(pipefds.wr, 1);
4417 if (pipefds.rd > 1)
4418 close(pipefds.rd);
4419 /* Like bash, explicit redirects override pipes,
4420 * and the pipe fd is available for dup'ing. */
4421 if (setup_redirects(command, NULL))
4422 _exit(1);
4423
4424 /* Restore default handlers just prior to exec */
4425 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
4426
4427 /* Stores to nommu_save list of env vars putenv'ed
4428 * (NOMMU, on MMU we don't need that) */
4429 /* cast away volatility... */
4430 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
4431 /* pseudo_exec() does not return */
4432 }
4433
4434 /* parent or error */
4435 #if ENABLE_HUSH_FAST
4436 G.count_SIGCHLD++;
4437 //bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
4438 #endif
4439 enable_restore_tty_pgrp_on_exit();
4440 #if !BB_MMU
4441 /* Clean up after vforked child */
4442 free(nommu_save.argv);
4443 free(nommu_save.argv_from_re_execing);
4444 unset_vars(nommu_save.new_env);
4445 add_vars(nommu_save.old_vars);
4446 #endif
4447 free(argv_expanded);
4448 argv_expanded = NULL;
4449 if (command->pid < 0) { /* [v]fork failed */
4450 /* Clearly indicate, was it fork or vfork */
4451 bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork");
4452 } else {
4453 pi->alive_cmds++;
4454 #if ENABLE_HUSH_JOB
4455 /* Second and next children need to know pid of first one */
4456 if (pi->pgrp < 0)
4457 pi->pgrp = command->pid;
4458 #endif
4459 }
4460
4461 if (i)
4462 close(nextin);
4463 if ((i + 1) < pi->num_cmds)
4464 close(pipefds.wr);
4465 /* Pass read (output) pipe end to next iteration */
4466 nextin = pipefds.rd;
4467 }
4468
4469 if (!pi->alive_cmds) {
4470 debug_leave();
4471 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
4472 return 1;
4473 }
4474
4475 debug_leave();
4476 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
4477 return -1;
4478 }
4479
4480 #ifndef debug_print_tree
4481 static void debug_print_tree(struct pipe *pi, int lvl)
4482 {
4483 static const char *const PIPE[] = {
4484 [PIPE_SEQ] = "SEQ",
4485 [PIPE_AND] = "AND",
4486 [PIPE_OR ] = "OR" ,
4487 [PIPE_BG ] = "BG" ,
4488 };
4489 static const char *RES[] = {
4490 [RES_NONE ] = "NONE" ,
4491 # if ENABLE_HUSH_IF
4492 [RES_IF ] = "IF" ,
4493 [RES_THEN ] = "THEN" ,
4494 [RES_ELIF ] = "ELIF" ,
4495 [RES_ELSE ] = "ELSE" ,
4496 [RES_FI ] = "FI" ,
4497 # endif
4498 # if ENABLE_HUSH_LOOPS
4499 [RES_FOR ] = "FOR" ,
4500 [RES_WHILE] = "WHILE",
4501 [RES_UNTIL] = "UNTIL",
4502 [RES_DO ] = "DO" ,
4503 [RES_DONE ] = "DONE" ,
4504 # endif
4505 # if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
4506 [RES_IN ] = "IN" ,
4507 # endif
4508 # if ENABLE_HUSH_CASE
4509 [RES_CASE ] = "CASE" ,
4510 [RES_CASE_IN ] = "CASE_IN" ,
4511 [RES_MATCH] = "MATCH",
4512 [RES_CASE_BODY] = "CASE_BODY",
4513 [RES_ESAC ] = "ESAC" ,
4514 # endif
4515 [RES_XXXX ] = "XXXX" ,
4516 [RES_SNTX ] = "SNTX" ,
4517 };
4518 static const char *const CMDTYPE[] = {
4519 "{}",
4520 "()",
4521 "[noglob]",
4522 # if ENABLE_HUSH_FUNCTIONS
4523 "func()",
4524 # endif
4525 };
4526
4527 int pin, prn;
4528
4529 pin = 0;
4530 while (pi) {
4531 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
4532 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
4533 prn = 0;
4534 while (prn < pi->num_cmds) {
4535 struct command *command = &pi->cmds[prn];
4536 char **argv = command->argv;
4537
4538 fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
4539 lvl*2, "", prn,
4540 command->assignment_cnt);
4541 if (command->group) {
4542 fprintf(stderr, " group %s: (argv=%p)%s%s\n",
4543 CMDTYPE[command->cmd_type],
4544 argv
4545 # if !BB_MMU
4546 , " group_as_string:", command->group_as_string
4547 # else
4548 , "", ""
4549 # endif
4550 );
4551 debug_print_tree(command->group, lvl+1);
4552 prn++;
4553 continue;
4554 }
4555 if (argv) while (*argv) {
4556 fprintf(stderr, " '%s'", *argv);
4557 argv++;
4558 }
4559 fprintf(stderr, "\n");
4560 prn++;
4561 }
4562 pi = pi->next;
4563 pin++;
4564 }
4565 }
4566 #endif /* debug_print_tree */
4567
4568 /* NB: called by pseudo_exec, and therefore must not modify any
4569 * global data until exec/_exit (we can be a child after vfork!) */
4570 static int run_list(struct pipe *pi)
4571 {
4572 #if ENABLE_HUSH_CASE
4573 char *case_word = NULL;
4574 #endif
4575 #if ENABLE_HUSH_LOOPS
4576 struct pipe *loop_top = NULL;
4577 char **for_lcur = NULL;
4578 char **for_list = NULL;
4579 #endif
4580 smallint last_followup;
4581 smalluint rcode;
4582 #if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
4583 smalluint cond_code = 0;
4584 #else
4585 enum { cond_code = 0 };
4586 #endif
4587 #if HAS_KEYWORDS
4588 smallint rword; /* enum reserved_style */
4589 smallint last_rword; /* ditto */
4590 #endif
4591
4592 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
4593 debug_enter();
4594
4595 #if ENABLE_HUSH_LOOPS
4596 /* Check syntax for "for" */
4597 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
4598 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
4599 continue;
4600 /* current word is FOR or IN (BOLD in comments below) */
4601 if (cpipe->next == NULL) {
4602 syntax_error("malformed for");
4603 debug_leave();
4604 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
4605 return 1;
4606 }
4607 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
4608 if (cpipe->next->res_word == RES_DO)
4609 continue;
4610 /* next word is not "do". It must be "in" then ("FOR v in ...") */
4611 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
4612 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
4613 ) {
4614 syntax_error("malformed for");
4615 debug_leave();
4616 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
4617 return 1;
4618 }
4619 }
4620 #endif
4621
4622 /* Past this point, all code paths should jump to ret: label
4623 * in order to return, no direct "return" statements please.
4624 * This helps to ensure that no memory is leaked. */
4625
4626 #if ENABLE_HUSH_JOB
4627 G.run_list_level++;
4628 #endif
4629
4630 #if HAS_KEYWORDS
4631 rword = RES_NONE;
4632 last_rword = RES_XXXX;
4633 #endif
4634 last_followup = PIPE_SEQ;
4635 rcode = G.last_exitcode;
4636
4637 /* Go through list of pipes, (maybe) executing them. */
4638 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
4639 if (G.flag_SIGINT)
4640 break;
4641
4642 IF_HAS_KEYWORDS(rword = pi->res_word;)
4643 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
4644 rword, cond_code, last_rword);
4645 #if ENABLE_HUSH_LOOPS
4646 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
4647 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
4648 ) {
4649 /* start of a loop: remember where loop starts */
4650 loop_top = pi;
4651 G.depth_of_loop++;
4652 }
4653 #endif
4654 /* Still in the same "if...", "then..." or "do..." branch? */
4655 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
4656 if ((rcode == 0 && last_followup == PIPE_OR)
4657 || (rcode != 0 && last_followup == PIPE_AND)
4658 ) {
4659 /* It is "<true> || CMD" or "<false> && CMD"
4660 * and we should not execute CMD */
4661 debug_printf_exec("skipped cmd because of || or &&\n");
4662 last_followup = pi->followup;
4663 continue;
4664 }
4665 }
4666 last_followup = pi->followup;
4667 IF_HAS_KEYWORDS(last_rword = rword;)
4668 #if ENABLE_HUSH_IF
4669 if (cond_code) {
4670 if (rword == RES_THEN) {
4671 /* if false; then ... fi has exitcode 0! */
4672 G.last_exitcode = rcode = EXIT_SUCCESS;
4673 /* "if <false> THEN cmd": skip cmd */
4674 continue;
4675 }
4676 } else {
4677 if (rword == RES_ELSE || rword == RES_ELIF) {
4678 /* "if <true> then ... ELSE/ELIF cmd":
4679 * skip cmd and all following ones */
4680 break;
4681 }
4682 }
4683 #endif
4684 #if ENABLE_HUSH_LOOPS
4685 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
4686 if (!for_lcur) {
4687 /* first loop through for */
4688
4689 static const char encoded_dollar_at[] ALIGN1 = {
4690 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
4691 }; /* encoded representation of "$@" */
4692 static const char *const encoded_dollar_at_argv[] = {
4693 encoded_dollar_at, NULL
4694 }; /* argv list with one element: "$@" */
4695 char **vals;
4696
4697 vals = (char**)encoded_dollar_at_argv;
4698 if (pi->next->res_word == RES_IN) {
4699 /* if no variable values after "in" we skip "for" */
4700 if (!pi->next->cmds[0].argv) {
4701 G.last_exitcode = rcode = EXIT_SUCCESS;
4702 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
4703 break;
4704 }
4705 vals = pi->next->cmds[0].argv;
4706 } /* else: "for var; do..." -> assume "$@" list */
4707 /* create list of variable values */
4708 debug_print_strings("for_list made from", vals);
4709 for_list = expand_strvec_to_strvec(vals);
4710 for_lcur = for_list;
4711 debug_print_strings("for_list", for_list);
4712 }
4713 if (!*for_lcur) {
4714 /* "for" loop is over, clean up */
4715 free(for_list);
4716 for_list = NULL;
4717 for_lcur = NULL;
4718 break;
4719 }
4720 /* Insert next value from for_lcur */
4721 /* note: *for_lcur already has quotes removed, $var expanded, etc */
4722 set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
4723 continue;
4724 }
4725 if (rword == RES_IN) {
4726 continue; /* "for v IN list;..." - "in" has no cmds anyway */
4727 }
4728 if (rword == RES_DONE) {
4729 continue; /* "done" has no cmds too */
4730 }
4731 #endif
4732 #if ENABLE_HUSH_CASE
4733 if (rword == RES_CASE) {
4734 case_word = expand_strvec_to_string(pi->cmds->argv);
4735 continue;
4736 }
4737 if (rword == RES_MATCH) {
4738 char **argv;
4739
4740 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
4741 break;
4742 /* all prev words didn't match, does this one match? */
4743 argv = pi->cmds->argv;
4744 while (*argv) {
4745 char *pattern = expand_string_to_string(*argv);
4746 /* TODO: which FNM_xxx flags to use? */
4747 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
4748 free(pattern);
4749 if (cond_code == 0) { /* match! we will execute this branch */
4750 free(case_word); /* make future "word)" stop */
4751 case_word = NULL;
4752 break;
4753 }
4754 argv++;
4755 }
4756 continue;
4757 }
4758 if (rword == RES_CASE_BODY) { /* inside of a case branch */
4759 if (cond_code != 0)
4760 continue; /* not matched yet, skip this pipe */
4761 }
4762 #endif
4763 /* Just pressing <enter> in shell should check for jobs.
4764 * OTOH, in non-interactive shell this is useless
4765 * and only leads to extra job checks */
4766 if (pi->num_cmds == 0) {
4767 if (G_interactive_fd)
4768 goto check_jobs_and_continue;
4769 continue;
4770 }
4771
4772 /* After analyzing all keywords and conditions, we decided
4773 * to execute this pipe. NB: have to do checkjobs(NULL)
4774 * after run_pipe to collect any background children,
4775 * even if list execution is to be stopped. */
4776 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
4777 {
4778 int r;
4779 #if ENABLE_HUSH_LOOPS
4780 G.flag_break_continue = 0;
4781 #endif
4782 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
4783 if (r != -1) {
4784 /* We ran a builtin, function, or group.
4785 * rcode is already known
4786 * and we don't need to wait for anything. */
4787 G.last_exitcode = rcode;
4788 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
4789 check_and_run_traps(0);
4790 #if ENABLE_HUSH_LOOPS
4791 /* Was it "break" or "continue"? */
4792 if (G.flag_break_continue) {
4793 smallint fbc = G.flag_break_continue;
4794 /* We might fall into outer *loop*,
4795 * don't want to break it too */
4796 if (loop_top) {
4797 G.depth_break_continue--;
4798 if (G.depth_break_continue == 0)
4799 G.flag_break_continue = 0;
4800 /* else: e.g. "continue 2" should *break* once, *then* continue */
4801 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
4802 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
4803 goto check_jobs_and_break;
4804 /* "continue": simulate end of loop */
4805 rword = RES_DONE;
4806 continue;
4807 }
4808 #endif
4809 #if ENABLE_HUSH_FUNCTIONS
4810 if (G.flag_return_in_progress == 1) {
4811 /* same as "goto check_jobs_and_break" */
4812 checkjobs(NULL);
4813 break;
4814 }
4815 #endif
4816 } else if (pi->followup == PIPE_BG) {
4817 /* What does bash do with attempts to background builtins? */
4818 /* even bash 3.2 doesn't do that well with nested bg:
4819 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
4820 * I'm NOT treating inner &'s as jobs */
4821 check_and_run_traps(0);
4822 #if ENABLE_HUSH_JOB
4823 if (G.run_list_level == 1)
4824 insert_bg_job(pi);
4825 #endif
4826 /* Last command's pid goes to $! */
4827 G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid;
4828 G.last_exitcode = rcode = EXIT_SUCCESS;
4829 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
4830 } else {
4831 #if ENABLE_HUSH_JOB
4832 if (G.run_list_level == 1 && G_interactive_fd) {
4833 /* Waits for completion, then fg's main shell */
4834 rcode = checkjobs_and_fg_shell(pi);
4835 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
4836 check_and_run_traps(0);
4837 } else
4838 #endif
4839 { /* This one just waits for completion */
4840 rcode = checkjobs(pi);
4841 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
4842 check_and_run_traps(0);
4843 }
4844 G.last_exitcode = rcode;
4845 }
4846 }
4847
4848 /* Analyze how result affects subsequent commands */
4849 #if ENABLE_HUSH_IF
4850 if (rword == RES_IF || rword == RES_ELIF)
4851 cond_code = rcode;
4852 #endif
4853 #if ENABLE_HUSH_LOOPS
4854 /* Beware of "while false; true; do ..."! */
4855 if (pi->next && pi->next->res_word == RES_DO) {
4856 if (rword == RES_WHILE) {
4857 if (rcode) {
4858 /* "while false; do...done" - exitcode 0 */
4859 G.last_exitcode = rcode = EXIT_SUCCESS;
4860 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
4861 goto check_jobs_and_break;
4862 }
4863 }
4864 if (rword == RES_UNTIL) {
4865 if (!rcode) {
4866 debug_printf_exec(": until expr is true: breaking\n");
4867 check_jobs_and_break:
4868 checkjobs(NULL);
4869 break;
4870 }
4871 }
4872 }
4873 #endif
4874
4875 check_jobs_and_continue:
4876 checkjobs(NULL);
4877 } /* for (pi) */
4878
4879 #if ENABLE_HUSH_JOB
4880 G.run_list_level--;
4881 #endif
4882 #if ENABLE_HUSH_LOOPS
4883 if (loop_top)
4884 G.depth_of_loop--;
4885 free(for_list);
4886 #endif
4887 #if ENABLE_HUSH_CASE
4888 free(case_word);
4889 #endif
4890 debug_leave();
4891 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
4892 return rcode;
4893 }
4894
4895 /* Select which version we will use */
4896 static int run_and_free_list(struct pipe *pi)
4897 {
4898 int rcode = 0;
4899 debug_printf_exec("run_and_free_list entered\n");
4900 if (!G.fake_mode) {
4901 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
4902 rcode = run_list(pi);
4903 }
4904 /* free_pipe_list has the side effect of clearing memory.
4905 * In the long run that function can be merged with run_list,
4906 * but doing that now would hobble the debugging effort. */
4907 free_pipe_list(pi);
4908 debug_printf_exec("run_and_free_list return %d\n", rcode);
4909 return rcode;
4910 }
4911
4912
4913 static struct pipe *new_pipe(void)
4914 {
4915 struct pipe *pi;
4916 pi = xzalloc(sizeof(struct pipe));
4917 /*pi->followup = 0; - deliberately invalid value */
4918 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
4919 return pi;
4920 }
4921
4922 /* Command (member of a pipe) is complete, or we start a new pipe
4923 * if ctx->command is NULL.
4924 * No errors possible here.
4925 */
4926 static int done_command(struct parse_context *ctx)
4927 {
4928 /* The command is really already in the pipe structure, so
4929 * advance the pipe counter and make a new, null command. */
4930 struct pipe *pi = ctx->pipe;
4931 struct command *command = ctx->command;
4932
4933 if (command) {
4934 if (IS_NULL_CMD(command)) {
4935 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
4936 goto clear_and_ret;
4937 }
4938 pi->num_cmds++;
4939 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
4940 //debug_print_tree(ctx->list_head, 20);
4941 } else {
4942 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
4943 }
4944
4945 /* Only real trickiness here is that the uncommitted
4946 * command structure is not counted in pi->num_cmds. */
4947 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
4948 ctx->command = command = &pi->cmds[pi->num_cmds];
4949 clear_and_ret:
4950 memset(command, 0, sizeof(*command));
4951 return pi->num_cmds; /* used only for 0/nonzero check */
4952 }
4953
4954 static void done_pipe(struct parse_context *ctx, pipe_style type)
4955 {
4956 int not_null;
4957
4958 debug_printf_parse("done_pipe entered, followup %d\n", type);
4959 /* Close previous command */
4960 not_null = done_command(ctx);
4961 ctx->pipe->followup = type;
4962 #if HAS_KEYWORDS
4963 ctx->pipe->pi_inverted = ctx->ctx_inverted;
4964 ctx->ctx_inverted = 0;
4965 ctx->pipe->res_word = ctx->ctx_res_w;
4966 #endif
4967
4968 /* Without this check, even just <enter> on command line generates
4969 * tree of three NOPs (!). Which is harmless but annoying.
4970 * IOW: it is safe to do it unconditionally. */
4971 if (not_null
4972 #if ENABLE_HUSH_IF
4973 || ctx->ctx_res_w == RES_FI
4974 #endif
4975 #if ENABLE_HUSH_LOOPS
4976 || ctx->ctx_res_w == RES_DONE
4977 || ctx->ctx_res_w == RES_FOR
4978 || ctx->ctx_res_w == RES_IN
4979 #endif
4980 #if ENABLE_HUSH_CASE
4981 || ctx->ctx_res_w == RES_ESAC
4982 #endif
4983 ) {
4984 struct pipe *new_p;
4985 debug_printf_parse("done_pipe: adding new pipe: "
4986 "not_null:%d ctx->ctx_res_w:%d\n",
4987 not_null, ctx->ctx_res_w);
4988 new_p = new_pipe();
4989 ctx->pipe->next = new_p;
4990 ctx->pipe = new_p;
4991 /* RES_THEN, RES_DO etc are "sticky" -
4992 * they remain set for pipes inside if/while.
4993 * This is used to control execution.
4994 * RES_FOR and RES_IN are NOT sticky (needed to support
4995 * cases where variable or value happens to match a keyword):
4996 */
4997 #if ENABLE_HUSH_LOOPS
4998 if (ctx->ctx_res_w == RES_FOR
4999 || ctx->ctx_res_w == RES_IN)
5000 ctx->ctx_res_w = RES_NONE;
5001 #endif
5002 #if ENABLE_HUSH_CASE
5003 if (ctx->ctx_res_w == RES_MATCH)
5004 ctx->ctx_res_w = RES_CASE_BODY;
5005 if (ctx->ctx_res_w == RES_CASE)
5006 ctx->ctx_res_w = RES_CASE_IN;
5007 #endif
5008 ctx->command = NULL; /* trick done_command below */
5009 /* Create the memory for command, roughly:
5010 * ctx->pipe->cmds = new struct command;
5011 * ctx->command = &ctx->pipe->cmds[0];
5012 */
5013 done_command(ctx);
5014 //debug_print_tree(ctx->list_head, 10);
5015 }
5016 debug_printf_parse("done_pipe return\n");
5017 }
5018
5019 static void initialize_context(struct parse_context *ctx)
5020 {
5021 memset(ctx, 0, sizeof(*ctx));
5022 ctx->pipe = ctx->list_head = new_pipe();
5023 /* Create the memory for command, roughly:
5024 * ctx->pipe->cmds = new struct command;
5025 * ctx->command = &ctx->pipe->cmds[0];
5026 */
5027 done_command(ctx);
5028 }
5029
5030 /* If a reserved word is found and processed, parse context is modified
5031 * and 1 is returned.
5032 */
5033 #if HAS_KEYWORDS
5034 struct reserved_combo {
5035 char literal[6];
5036 unsigned char res;
5037 unsigned char assignment_flag;
5038 int flag;
5039 };
5040 enum {
5041 FLAG_END = (1 << RES_NONE ),
5042 # if ENABLE_HUSH_IF
5043 FLAG_IF = (1 << RES_IF ),
5044 FLAG_THEN = (1 << RES_THEN ),
5045 FLAG_ELIF = (1 << RES_ELIF ),
5046 FLAG_ELSE = (1 << RES_ELSE ),
5047 FLAG_FI = (1 << RES_FI ),
5048 # endif
5049 # if ENABLE_HUSH_LOOPS
5050 FLAG_FOR = (1 << RES_FOR ),
5051 FLAG_WHILE = (1 << RES_WHILE),
5052 FLAG_UNTIL = (1 << RES_UNTIL),
5053 FLAG_DO = (1 << RES_DO ),
5054 FLAG_DONE = (1 << RES_DONE ),
5055 FLAG_IN = (1 << RES_IN ),
5056 # endif
5057 # if ENABLE_HUSH_CASE
5058 FLAG_MATCH = (1 << RES_MATCH),
5059 FLAG_ESAC = (1 << RES_ESAC ),
5060 # endif
5061 FLAG_START = (1 << RES_XXXX ),
5062 };
5063
5064 static const struct reserved_combo* match_reserved_word(o_string *word)
5065 {
5066 /* Mostly a list of accepted follow-up reserved words.
5067 * FLAG_END means we are done with the sequence, and are ready
5068 * to turn the compound list into a command.
5069 * FLAG_START means the word must start a new compound list.
5070 */
5071 static const struct reserved_combo reserved_list[] = {
5072 # if ENABLE_HUSH_IF
5073 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
5074 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
5075 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
5076 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
5077 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
5078 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
5079 # endif
5080 # if ENABLE_HUSH_LOOPS
5081 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
5082 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
5083 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
5084 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
5085 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
5086 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
5087 # endif
5088 # if ENABLE_HUSH_CASE
5089 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
5090 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
5091 # endif
5092 };
5093 const struct reserved_combo *r;
5094
5095 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
5096 if (strcmp(word->data, r->literal) == 0)
5097 return r;
5098 }
5099 return NULL;
5100 }
5101 /* Return 0: not a keyword, 1: keyword
5102 */
5103 static int reserved_word(o_string *word, struct parse_context *ctx)
5104 {
5105 # if ENABLE_HUSH_CASE
5106 static const struct reserved_combo reserved_match = {
5107 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
5108 };
5109 # endif
5110 const struct reserved_combo *r;
5111
5112 if (word->o_quoted)
5113 return 0;
5114 r = match_reserved_word(word);
5115 if (!r)
5116 return 0;
5117
5118 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
5119 # if ENABLE_HUSH_CASE
5120 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
5121 /* "case word IN ..." - IN part starts first MATCH part */
5122 r = &reserved_match;
5123 } else
5124 # endif
5125 if (r->flag == 0) { /* '!' */
5126 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
5127 syntax_error("! ! command");
5128 ctx->ctx_res_w = RES_SNTX;
5129 }
5130 ctx->ctx_inverted = 1;
5131 return 1;
5132 }
5133 if (r->flag & FLAG_START) {
5134 struct parse_context *old;
5135
5136 old = xmalloc(sizeof(*old));
5137 debug_printf_parse("push stack %p\n", old);
5138 *old = *ctx; /* physical copy */
5139 initialize_context(ctx);
5140 ctx->stack = old;
5141 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
5142 syntax_error_at(word->data);
5143 ctx->ctx_res_w = RES_SNTX;
5144 return 1;
5145 } else {
5146 /* "{...} fi" is ok. "{...} if" is not
5147 * Example:
5148 * if { echo foo; } then { echo bar; } fi */
5149 if (ctx->command->group)
5150 done_pipe(ctx, PIPE_SEQ);
5151 }
5152
5153 ctx->ctx_res_w = r->res;
5154 ctx->old_flag = r->flag;
5155 word->o_assignment = r->assignment_flag;
5156
5157 if (ctx->old_flag & FLAG_END) {
5158 struct parse_context *old;
5159
5160 done_pipe(ctx, PIPE_SEQ);
5161 debug_printf_parse("pop stack %p\n", ctx->stack);
5162 old = ctx->stack;
5163 old->command->group = ctx->list_head;
5164 old->command->cmd_type = CMD_NORMAL;
5165 # if !BB_MMU
5166 o_addstr(&old->as_string, ctx->as_string.data);
5167 o_free_unsafe(&ctx->as_string);
5168 old->command->group_as_string = xstrdup(old->as_string.data);
5169 debug_printf_parse("pop, remembering as:'%s'\n",
5170 old->command->group_as_string);
5171 # endif
5172 *ctx = *old; /* physical copy */
5173 free(old);
5174 }
5175 return 1;
5176 }
5177 #endif /* HAS_KEYWORDS */
5178
5179 /* Word is complete, look at it and update parsing context.
5180 * Normal return is 0. Syntax errors return 1.
5181 * Note: on return, word is reset, but not o_free'd!
5182 */
5183 static int done_word(o_string *word, struct parse_context *ctx)
5184 {
5185 struct command *command = ctx->command;
5186
5187 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
5188 if (word->length == 0 && word->o_quoted == 0) {
5189 debug_printf_parse("done_word return 0: true null, ignored\n");
5190 return 0;
5191 }
5192
5193 if (ctx->pending_redirect) {
5194 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
5195 * only if run as "bash", not "sh" */
5196 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
5197 * "2.7 Redirection
5198 * ...the word that follows the redirection operator
5199 * shall be subjected to tilde expansion, parameter expansion,
5200 * command substitution, arithmetic expansion, and quote
5201 * removal. Pathname expansion shall not be performed
5202 * on the word by a non-interactive shell; an interactive
5203 * shell may perform it, but shall do so only when
5204 * the expansion would result in one word."
5205 */
5206 ctx->pending_redirect->rd_filename = xstrdup(word->data);
5207 /* Cater for >\file case:
5208 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
5209 * Same with heredocs:
5210 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
5211 */
5212 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
5213 unbackslash(ctx->pending_redirect->rd_filename);
5214 /* Is it <<"HEREDOC"? */
5215 if (word->o_quoted) {
5216 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
5217 }
5218 }
5219 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
5220 ctx->pending_redirect = NULL;
5221 } else {
5222 /* If this word wasn't an assignment, next ones definitely
5223 * can't be assignments. Even if they look like ones. */
5224 if (word->o_assignment != DEFINITELY_ASSIGNMENT
5225 && word->o_assignment != WORD_IS_KEYWORD
5226 ) {
5227 word->o_assignment = NOT_ASSIGNMENT;
5228 } else {
5229 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
5230 command->assignment_cnt++;
5231 word->o_assignment = MAYBE_ASSIGNMENT;
5232 }
5233
5234 #if HAS_KEYWORDS
5235 # if ENABLE_HUSH_CASE
5236 if (ctx->ctx_dsemicolon
5237 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
5238 ) {
5239 /* already done when ctx_dsemicolon was set to 1: */
5240 /* ctx->ctx_res_w = RES_MATCH; */
5241 ctx->ctx_dsemicolon = 0;
5242 } else
5243 # endif
5244 if (!command->argv /* if it's the first word... */
5245 # if ENABLE_HUSH_LOOPS
5246 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
5247 && ctx->ctx_res_w != RES_IN
5248 # endif
5249 # if ENABLE_HUSH_CASE
5250 && ctx->ctx_res_w != RES_CASE
5251 # endif
5252 ) {
5253 debug_printf_parse("checking '%s' for reserved-ness\n", word->data);
5254 if (reserved_word(word, ctx)) {
5255 o_reset_to_empty_unquoted(word);
5256 debug_printf_parse("done_word return %d\n",
5257 (ctx->ctx_res_w == RES_SNTX));
5258 return (ctx->ctx_res_w == RES_SNTX);
5259 }
5260 # ifdef CMD_SINGLEWORD_NOGLOB_COND
5261 if (strcmp(word->data, "export") == 0
5262 # if ENABLE_HUSH_LOCAL
5263 || strcmp(word->data, "local") == 0
5264 # endif
5265 ) {
5266 command->cmd_type = CMD_SINGLEWORD_NOGLOB_COND;
5267 } else
5268 # endif
5269 # if ENABLE_HUSH_BASH_COMPAT
5270 if (strcmp(word->data, "[[") == 0) {
5271 command->cmd_type = CMD_SINGLEWORD_NOGLOB;
5272 }
5273 /* fall through */
5274 # endif
5275 }
5276 #endif
5277 if (command->group) {
5278 /* "{ echo foo; } echo bar" - bad */
5279 syntax_error_at(word->data);
5280 debug_printf_parse("done_word return 1: syntax error, "
5281 "groups and arglists don't mix\n");
5282 return 1;
5283 }
5284 if (word->o_quoted /* word had "xx" or 'xx' at least as part of it. */
5285 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
5286 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
5287 /* (otherwise it's known to be not empty and is already safe) */
5288 ) {
5289 /* exclude "$@" - it can expand to no word despite "" */
5290 char *p = word->data;
5291 while (p[0] == SPECIAL_VAR_SYMBOL
5292 && (p[1] & 0x7f) == '@'
5293 && p[2] == SPECIAL_VAR_SYMBOL
5294 ) {
5295 p += 3;
5296 }
5297 if (p == word->data || p[0] != '\0') {
5298 /* saw no "$@", or not only "$@" but some
5299 * real text is there too */
5300 /* insert "empty variable" reference, this makes
5301 * e.g. "", $empty"" etc to not disappear */
5302 o_addchr(word, SPECIAL_VAR_SYMBOL);
5303 o_addchr(word, SPECIAL_VAR_SYMBOL);
5304 }
5305 }
5306 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
5307 debug_print_strings("word appended to argv", command->argv);
5308 }
5309
5310 #if ENABLE_HUSH_LOOPS
5311 if (ctx->ctx_res_w == RES_FOR) {
5312 if (word->o_quoted
5313 || !is_well_formed_var_name(command->argv[0], '\0')
5314 ) {
5315 /* bash says just "not a valid identifier" */
5316 syntax_error("not a valid identifier in for");
5317 return 1;
5318 }
5319 /* Force FOR to have just one word (variable name) */
5320 /* NB: basically, this makes hush see "for v in ..."
5321 * syntax as if it is "for v; in ...". FOR and IN become
5322 * two pipe structs in parse tree. */
5323 done_pipe(ctx, PIPE_SEQ);
5324 }
5325 #endif
5326 #if ENABLE_HUSH_CASE
5327 /* Force CASE to have just one word */
5328 if (ctx->ctx_res_w == RES_CASE) {
5329 done_pipe(ctx, PIPE_SEQ);
5330 }
5331 #endif
5332
5333 o_reset_to_empty_unquoted(word);
5334
5335 debug_printf_parse("done_word return 0\n");
5336 return 0;
5337 }
5338
5339
5340 /* Peek ahead in the input to find out if we have a "&n" construct,
5341 * as in "2>&1", that represents duplicating a file descriptor.
5342 * Return:
5343 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
5344 * REDIRFD_SYNTAX_ERR if syntax error,
5345 * REDIRFD_TO_FILE if no & was seen,
5346 * or the number found.
5347 */
5348 #if BB_MMU
5349 #define parse_redir_right_fd(as_string, input) \
5350 parse_redir_right_fd(input)
5351 #endif
5352 static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
5353 {
5354 int ch, d, ok;
5355
5356 ch = i_peek(input);
5357 if (ch != '&')
5358 return REDIRFD_TO_FILE;
5359
5360 ch = i_getch(input); /* get the & */
5361 nommu_addchr(as_string, ch);
5362 ch = i_peek(input);
5363 if (ch == '-') {
5364 ch = i_getch(input);
5365 nommu_addchr(as_string, ch);
5366 return REDIRFD_CLOSE;
5367 }
5368 d = 0;
5369 ok = 0;
5370 while (ch != EOF && isdigit(ch)) {
5371 d = d*10 + (ch-'0');
5372 ok = 1;
5373 ch = i_getch(input);
5374 nommu_addchr(as_string, ch);
5375 ch = i_peek(input);
5376 }
5377 if (ok) return d;
5378
5379 //TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
5380
5381 bb_error_msg("ambiguous redirect");
5382 return REDIRFD_SYNTAX_ERR;
5383 }
5384
5385 /* Return code is 0 normal, 1 if a syntax error is detected
5386 */
5387 static int parse_redirect(struct parse_context *ctx,
5388 int fd,
5389 redir_type style,
5390 struct in_str *input)
5391 {
5392 struct command *command = ctx->command;
5393 struct redir_struct *redir;
5394 struct redir_struct **redirp;
5395 int dup_num;
5396
5397 dup_num = REDIRFD_TO_FILE;
5398 if (style != REDIRECT_HEREDOC) {
5399 /* Check for a '>&1' type redirect */
5400 dup_num = parse_redir_right_fd(&ctx->as_string, input);
5401 if (dup_num == REDIRFD_SYNTAX_ERR)
5402 return 1;
5403 } else {
5404 int ch = i_peek(input);
5405 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
5406 if (dup_num) { /* <<-... */
5407 ch = i_getch(input);
5408 nommu_addchr(&ctx->as_string, ch);
5409 ch = i_peek(input);
5410 }
5411 }
5412
5413 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
5414 int ch = i_peek(input);
5415 if (ch == '|') {
5416 /* >|FILE redirect ("clobbering" >).
5417 * Since we do not support "set -o noclobber" yet,
5418 * >| and > are the same for now. Just eat |.
5419 */
5420 ch = i_getch(input);
5421 nommu_addchr(&ctx->as_string, ch);
5422 }
5423 }
5424
5425 /* Create a new redir_struct and append it to the linked list */
5426 redirp = &command->redirects;
5427 while ((redir = *redirp) != NULL) {
5428 redirp = &(redir->next);
5429 }
5430 *redirp = redir = xzalloc(sizeof(*redir));
5431 /* redir->next = NULL; */
5432 /* redir->rd_filename = NULL; */
5433 redir->rd_type = style;
5434 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
5435
5436 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
5437 redir_table[style].descrip);
5438
5439 redir->rd_dup = dup_num;
5440 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
5441 /* Erik had a check here that the file descriptor in question
5442 * is legit; I postpone that to "run time"
5443 * A "-" representation of "close me" shows up as a -3 here */
5444 debug_printf_parse("duplicating redirect '%d>&%d'\n",
5445 redir->rd_fd, redir->rd_dup);
5446 } else {
5447 /* Set ctx->pending_redirect, so we know what to do at the
5448 * end of the next parsed word. */
5449 ctx->pending_redirect = redir;
5450 }
5451 return 0;
5452 }
5453
5454 /* If a redirect is immediately preceded by a number, that number is
5455 * supposed to tell which file descriptor to redirect. This routine
5456 * looks for such preceding numbers. In an ideal world this routine
5457 * needs to handle all the following classes of redirects...
5458 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
5459 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
5460 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
5461 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
5462 *
5463 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
5464 * "2.7 Redirection
5465 * ... If n is quoted, the number shall not be recognized as part of
5466 * the redirection expression. For example:
5467 * echo \2>a
5468 * writes the character 2 into file a"
5469 * We are getting it right by setting ->o_quoted on any \<char>
5470 *
5471 * A -1 return means no valid number was found,
5472 * the caller should use the appropriate default for this redirection.
5473 */
5474 static int redirect_opt_num(o_string *o)
5475 {
5476 int num;
5477
5478 if (o->data == NULL)
5479 return -1;
5480 num = bb_strtou(o->data, NULL, 10);
5481 if (errno || num < 0)
5482 return -1;
5483 o_reset_to_empty_unquoted(o);
5484 return num;
5485 }
5486
5487 #if BB_MMU
5488 #define fetch_till_str(as_string, input, word, skip_tabs) \
5489 fetch_till_str(input, word, skip_tabs)
5490 #endif
5491 static char *fetch_till_str(o_string *as_string,
5492 struct in_str *input,
5493 const char *word,
5494 int skip_tabs)
5495 {
5496 o_string heredoc = NULL_O_STRING;
5497 int past_EOL = 0;
5498 int ch;
5499
5500 goto jump_in;
5501 while (1) {
5502 ch = i_getch(input);
5503 nommu_addchr(as_string, ch);
5504 if (ch == '\n') {
5505 if (strcmp(heredoc.data + past_EOL, word) == 0) {
5506 heredoc.data[past_EOL] = '\0';
5507 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
5508 return heredoc.data;
5509 }
5510 do {
5511 o_addchr(&heredoc, ch);
5512 past_EOL = heredoc.length;
5513 jump_in:
5514 do {
5515 ch = i_getch(input);
5516 nommu_addchr(as_string, ch);
5517 } while (skip_tabs && ch == '\t');
5518 } while (ch == '\n');
5519 }
5520 if (ch == EOF) {
5521 o_free_unsafe(&heredoc);
5522 return NULL;
5523 }
5524 o_addchr(&heredoc, ch);
5525 nommu_addchr(as_string, ch);
5526 }
5527 }
5528
5529 /* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
5530 * and load them all. There should be exactly heredoc_cnt of them.
5531 */
5532 static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
5533 {
5534 struct pipe *pi = ctx->list_head;
5535
5536 while (pi && heredoc_cnt) {
5537 int i;
5538 struct command *cmd = pi->cmds;
5539
5540 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
5541 pi->num_cmds,
5542 cmd->argv ? cmd->argv[0] : "NONE");
5543 for (i = 0; i < pi->num_cmds; i++) {
5544 struct redir_struct *redir = cmd->redirects;
5545
5546 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
5547 i, cmd->argv ? cmd->argv[0] : "NONE");
5548 while (redir) {
5549 if (redir->rd_type == REDIRECT_HEREDOC) {
5550 char *p;
5551
5552 redir->rd_type = REDIRECT_HEREDOC2;
5553 /* redir->rd_dup is (ab)used to indicate <<- */
5554 p = fetch_till_str(&ctx->as_string, input,
5555 redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS);
5556 if (!p) {
5557 syntax_error("unexpected EOF in here document");
5558 return 1;
5559 }
5560 free(redir->rd_filename);
5561 redir->rd_filename = p;
5562 heredoc_cnt--;
5563 }
5564 redir = redir->next;
5565 }
5566 cmd++;
5567 }
5568 pi = pi->next;
5569 }
5570 #if 0
5571 /* Should be 0. If it isn't, it's a parse error */
5572 if (heredoc_cnt)
5573 bb_error_msg_and_die("heredoc BUG 2");
5574 #endif
5575 return 0;
5576 }
5577
5578
5579 #if ENABLE_HUSH_TICK
5580 static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
5581 {
5582 pid_t pid;
5583 int channel[2];
5584 # if !BB_MMU
5585 char **to_free = NULL;
5586 # endif
5587
5588 xpipe(channel);
5589 pid = BB_MMU ? xfork() : xvfork();
5590 if (pid == 0) { /* child */
5591 disable_restore_tty_pgrp_on_exit();
5592 /* Process substitution is not considered to be usual
5593 * 'command execution'.
5594 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
5595 */
5596 bb_signals(0
5597 + (1 << SIGTSTP)
5598 + (1 << SIGTTIN)
5599 + (1 << SIGTTOU)
5600 , SIG_IGN);
5601 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
5602 close(channel[0]); /* NB: close _first_, then move fd! */
5603 xmove_fd(channel[1], 1);
5604 /* Prevent it from trying to handle ctrl-z etc */
5605 IF_HUSH_JOB(G.run_list_level = 1;)
5606 /* Awful hack for `trap` or $(trap).
5607 *
5608 * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
5609 * contains an example where "trap" is executed in a subshell:
5610 *
5611 * save_traps=$(trap)
5612 * ...
5613 * eval "$save_traps"
5614 *
5615 * Standard does not say that "trap" in subshell shall print
5616 * parent shell's traps. It only says that its output
5617 * must have suitable form, but then, in the above example
5618 * (which is not supposed to be normative), it implies that.
5619 *
5620 * bash (and probably other shell) does implement it
5621 * (traps are reset to defaults, but "trap" still shows them),
5622 * but as a result, "trap" logic is hopelessly messed up:
5623 *
5624 * # trap
5625 * trap -- 'echo Ho' SIGWINCH <--- we have a handler
5626 * # (trap) <--- trap is in subshell - no output (correct, traps are reset)
5627 * # true | trap <--- trap is in subshell - no output (ditto)
5628 * # echo `true | trap` <--- in subshell - output (but traps are reset!)
5629 * trap -- 'echo Ho' SIGWINCH
5630 * # echo `(trap)` <--- in subshell in subshell - output
5631 * trap -- 'echo Ho' SIGWINCH
5632 * # echo `true | (trap)` <--- in subshell in subshell in subshell - output!
5633 * trap -- 'echo Ho' SIGWINCH
5634 *
5635 * The rules when to forget and when to not forget traps
5636 * get really complex and nonsensical.
5637 *
5638 * Our solution: ONLY bare $(trap) or `trap` is special.
5639 */
5640 s = skip_whitespace(s);
5641 if (strncmp(s, "trap", 4) == 0 && (*skip_whitespace(s + 4) == '\0'))
5642 {
5643 static const char *const argv[] = { NULL, NULL };
5644 builtin_trap((char**)argv);
5645 exit(0); /* not _exit() - we need to fflush */
5646 }
5647 # if BB_MMU
5648 reset_traps_to_defaults();
5649 parse_and_run_string(s);
5650 _exit(G.last_exitcode);
5651 # else
5652 /* We re-execute after vfork on NOMMU. This makes this script safe:
5653 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
5654 * huge=`cat BIG` # was blocking here forever
5655 * echo OK
5656 */
5657 re_execute_shell(&to_free,
5658 s,
5659 G.global_argv[0],
5660 G.global_argv + 1,
5661 NULL);
5662 # endif
5663 }
5664
5665 /* parent */
5666 *pid_p = pid;
5667 # if ENABLE_HUSH_FAST
5668 G.count_SIGCHLD++;
5669 //bb_error_msg("[%d] fork in generate_stream_from_string: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
5670 # endif
5671 enable_restore_tty_pgrp_on_exit();
5672 # if !BB_MMU
5673 free(to_free);
5674 # endif
5675 close(channel[1]);
5676 close_on_exec_on(channel[0]);
5677 return xfdopen_for_read(channel[0]);
5678 }
5679
5680 /* Return code is exit status of the process that is run. */
5681 static int process_command_subs(o_string *dest, const char *s)
5682 {
5683 FILE *fp;
5684 struct in_str pipe_str;
5685 pid_t pid;
5686 int status, ch, eol_cnt;
5687
5688 fp = generate_stream_from_string(s, &pid);
5689
5690 /* Now send results of command back into original context */
5691 setup_file_in_str(&pipe_str, fp);
5692 eol_cnt = 0;
5693 while ((ch = i_getch(&pipe_str)) != EOF) {
5694 if (ch == '\n') {
5695 eol_cnt++;
5696 continue;
5697 }
5698 while (eol_cnt) {
5699 o_addchr(dest, '\n');
5700 eol_cnt--;
5701 }
5702 o_addQchr(dest, ch);
5703 }
5704
5705 debug_printf("done reading from `cmd` pipe, closing it\n");
5706 fclose(fp);
5707 /* We need to extract exitcode. Test case
5708 * "true; echo `sleep 1; false` $?"
5709 * should print 1 */
5710 safe_waitpid(pid, &status, 0);
5711 debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
5712 return WEXITSTATUS(status);
5713 }
5714 #endif /* ENABLE_HUSH_TICK */
5715
5716 #if !ENABLE_HUSH_FUNCTIONS
5717 #define parse_group(dest, ctx, input, ch) \
5718 parse_group(ctx, input, ch)
5719 #endif
5720 static int parse_group(o_string *dest, struct parse_context *ctx,
5721 struct in_str *input, int ch)
5722 {
5723 /* dest contains characters seen prior to ( or {.
5724 * Typically it's empty, but for function defs,
5725 * it contains function name (without '()'). */
5726 struct pipe *pipe_list;
5727 int endch;
5728 struct command *command = ctx->command;
5729
5730 debug_printf_parse("parse_group entered\n");
5731 #if ENABLE_HUSH_FUNCTIONS
5732 if (ch == '(' && !dest->o_quoted) {
5733 if (dest->length)
5734 if (done_word(dest, ctx))
5735 return 1;
5736 if (!command->argv)
5737 goto skip; /* (... */
5738 if (command->argv[1]) { /* word word ... (... */
5739 syntax_error_unexpected_ch('(');
5740 return 1;
5741 }
5742 /* it is "word(..." or "word (..." */
5743 do
5744 ch = i_getch(input);
5745 while (ch == ' ' || ch == '\t');
5746 if (ch != ')') {
5747 syntax_error_unexpected_ch(ch);
5748 return 1;
5749 }
5750 nommu_addchr(&ctx->as_string, ch);
5751 do
5752 ch = i_getch(input);
5753 while (ch == ' ' || ch == '\t' || ch == '\n');
5754 if (ch != '{') {
5755 syntax_error_unexpected_ch(ch);
5756 return 1;
5757 }
5758 nommu_addchr(&ctx->as_string, ch);
5759 command->cmd_type = CMD_FUNCDEF;
5760 goto skip;
5761 }
5762 #endif
5763
5764 #if 0 /* Prevented by caller */
5765 if (command->argv /* word [word]{... */
5766 || dest->length /* word{... */
5767 || dest->o_quoted /* ""{... */
5768 ) {
5769 syntax_error(NULL);
5770 debug_printf_parse("parse_group return 1: "
5771 "syntax error, groups and arglists don't mix\n");
5772 return 1;
5773 }
5774 #endif
5775
5776 #if ENABLE_HUSH_FUNCTIONS
5777 skip:
5778 #endif
5779 endch = '}';
5780 if (ch == '(') {
5781 endch = ')';
5782 command->cmd_type = CMD_SUBSHELL;
5783 } else {
5784 /* bash does not allow "{echo...", requires whitespace */
5785 ch = i_getch(input);
5786 if (ch != ' ' && ch != '\t' && ch != '\n') {
5787 syntax_error_unexpected_ch(ch);
5788 return 1;
5789 }
5790 nommu_addchr(&ctx->as_string, ch);
5791 }
5792
5793 {
5794 #if BB_MMU
5795 # define as_string NULL
5796 #else
5797 char *as_string = NULL;
5798 #endif
5799 pipe_list = parse_stream(&as_string, input, endch);
5800 #if !BB_MMU
5801 if (as_string)
5802 o_addstr(&ctx->as_string, as_string);
5803 #endif
5804 /* empty ()/{} or parse error? */
5805 if (!pipe_list || pipe_list == ERR_PTR) {
5806 /* parse_stream already emitted error msg */
5807 if (!BB_MMU)
5808 free(as_string);
5809 debug_printf_parse("parse_group return 1: "
5810 "parse_stream returned %p\n", pipe_list);
5811 return 1;
5812 }
5813 command->group = pipe_list;
5814 #if !BB_MMU
5815 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
5816 command->group_as_string = as_string;
5817 debug_printf_parse("end of group, remembering as:'%s'\n",
5818 command->group_as_string);
5819 #endif
5820 #undef as_string
5821 }
5822 debug_printf_parse("parse_group return 0\n");
5823 return 0;
5824 /* command remains "open", available for possible redirects */
5825 }
5826
5827 #if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_DOLLAR_OPS
5828 /* Subroutines for copying $(...) and `...` things */
5829 static void add_till_backquote(o_string *dest, struct in_str *input);
5830 /* '...' */
5831 static void add_till_single_quote(o_string *dest, struct in_str *input)
5832 {
5833 while (1) {
5834 int ch = i_getch(input);
5835 if (ch == EOF) {
5836 syntax_error_unterm_ch('\'');
5837 /*xfunc_die(); - redundant */
5838 }
5839 if (ch == '\'')
5840 return;
5841 o_addchr(dest, ch);
5842 }
5843 }
5844 /* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
5845 static void add_till_double_quote(o_string *dest, struct in_str *input)
5846 {
5847 while (1) {
5848 int ch = i_getch(input);
5849 if (ch == EOF) {
5850 syntax_error_unterm_ch('"');
5851 /*xfunc_die(); - redundant */
5852 }
5853 if (ch == '"')
5854 return;
5855 if (ch == '\\') { /* \x. Copy both chars. */
5856 o_addchr(dest, ch);
5857 ch = i_getch(input);
5858 }
5859 o_addchr(dest, ch);
5860 if (ch == '`') {
5861 add_till_backquote(dest, input);
5862 o_addchr(dest, ch);
5863 continue;
5864 }
5865 //if (ch == '$') ...
5866 }
5867 }
5868 /* Process `cmd` - copy contents until "`" is seen. Complicated by
5869 * \` quoting.
5870 * "Within the backquoted style of command substitution, backslash
5871 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
5872 * The search for the matching backquote shall be satisfied by the first
5873 * backquote found without a preceding backslash; during this search,
5874 * if a non-escaped backquote is encountered within a shell comment,
5875 * a here-document, an embedded command substitution of the $(command)
5876 * form, or a quoted string, undefined results occur. A single-quoted
5877 * or double-quoted string that begins, but does not end, within the
5878 * "`...`" sequence produces undefined results."
5879 * Example Output
5880 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
5881 */
5882 static void add_till_backquote(o_string *dest, struct in_str *input)
5883 {
5884 while (1) {
5885 int ch = i_getch(input);
5886 if (ch == EOF) {
5887 syntax_error_unterm_ch('`');
5888 /*xfunc_die(); - redundant */
5889 }
5890 if (ch == '`')
5891 return;
5892 if (ch == '\\') {
5893 /* \x. Copy both chars unless it is \` */
5894 int ch2 = i_getch(input);
5895 if (ch2 == EOF) {
5896 syntax_error_unterm_ch('`');
5897 /*xfunc_die(); - redundant */
5898 }
5899 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
5900 o_addchr(dest, ch);
5901 ch = ch2;
5902 }
5903 o_addchr(dest, ch);
5904 }
5905 }
5906 /* Process $(cmd) - copy contents until ")" is seen. Complicated by
5907 * quoting and nested ()s.
5908 * "With the $(command) style of command substitution, all characters
5909 * following the open parenthesis to the matching closing parenthesis
5910 * constitute the command. Any valid shell script can be used for command,
5911 * except a script consisting solely of redirections which produces
5912 * unspecified results."
5913 * Example Output
5914 * echo $(echo '(TEST)' BEST) (TEST) BEST
5915 * echo $(echo 'TEST)' BEST) TEST) BEST
5916 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
5917 *
5918 * Also adapted to eat ${var%...} and $((...)) constructs, since ... part
5919 * can contain arbitrary constructs, just like $(cmd).
5920 * In bash compat mode, it needs to also be able to stop on '}' or ':'
5921 * for ${var:N[:M]} parsing.
5922 */
5923 #define DOUBLE_CLOSE_CHAR_FLAG 0x80
5924 static int add_till_closing_bracket(o_string *dest, struct in_str *input, unsigned end_ch)
5925 {
5926 int ch;
5927 char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG;
5928 # if ENABLE_HUSH_BASH_COMPAT
5929 char end_char2 = end_ch >> 8;
5930 # endif
5931 end_ch &= (DOUBLE_CLOSE_CHAR_FLAG - 1);
5932
5933 while (1) {
5934 ch = i_getch(input);
5935 if (ch == EOF) {
5936 syntax_error_unterm_ch(end_ch);
5937 /*xfunc_die(); - redundant */
5938 }
5939 if (ch == end_ch IF_HUSH_BASH_COMPAT( || ch == end_char2)) {
5940 if (!dbl)
5941 break;
5942 /* we look for closing )) of $((EXPR)) */
5943 if (i_peek(input) == end_ch) {
5944 i_getch(input); /* eat second ')' */
5945 break;
5946 }
5947 }
5948 o_addchr(dest, ch);
5949 if (ch == '(' || ch == '{') {
5950 ch = (ch == '(' ? ')' : '}');
5951 add_till_closing_bracket(dest, input, ch);
5952 o_addchr(dest, ch);
5953 continue;
5954 }
5955 if (ch == '\'') {
5956 add_till_single_quote(dest, input);
5957 o_addchr(dest, ch);
5958 continue;
5959 }
5960 if (ch == '"') {
5961 add_till_double_quote(dest, input);
5962 o_addchr(dest, ch);
5963 continue;
5964 }
5965 if (ch == '`') {
5966 add_till_backquote(dest, input);
5967 o_addchr(dest, ch);
5968 continue;
5969 }
5970 if (ch == '\\') {
5971 /* \x. Copy verbatim. Important for \(, \) */
5972 ch = i_getch(input);
5973 if (ch == EOF) {
5974 syntax_error_unterm_ch(')');
5975 /*xfunc_die(); - redundant */
5976 }
5977 o_addchr(dest, ch);
5978 continue;
5979 }
5980 }
5981 return ch;
5982 }
5983 #endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_DOLLAR_OPS */
5984
5985 /* Return code: 0 for OK, 1 for syntax error */
5986 #if BB_MMU
5987 #define parse_dollar(as_string, dest, input) \
5988 parse_dollar(dest, input)
5989 #define as_string NULL
5990 #endif
5991 static int parse_dollar(o_string *as_string,
5992 o_string *dest,
5993 struct in_str *input)
5994 {
5995 int ch = i_peek(input); /* first character after the $ */
5996 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
5997
5998 debug_printf_parse("parse_dollar entered: ch='%c'\n", ch);
5999 if (isalpha(ch)) {
6000 ch = i_getch(input);
6001 nommu_addchr(as_string, ch);
6002 make_var:
6003 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6004 while (1) {
6005 debug_printf_parse(": '%c'\n", ch);
6006 o_addchr(dest, ch | quote_mask);
6007 quote_mask = 0;
6008 ch = i_peek(input);
6009 if (!isalnum(ch) && ch != '_')
6010 break;
6011 ch = i_getch(input);
6012 nommu_addchr(as_string, ch);
6013 }
6014 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6015 } else if (isdigit(ch)) {
6016 make_one_char_var:
6017 ch = i_getch(input);
6018 nommu_addchr(as_string, ch);
6019 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6020 debug_printf_parse(": '%c'\n", ch);
6021 o_addchr(dest, ch | quote_mask);
6022 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6023 } else switch (ch) {
6024 case '$': /* pid */
6025 case '!': /* last bg pid */
6026 case '?': /* last exit code */
6027 case '#': /* number of args */
6028 case '*': /* args */
6029 case '@': /* args */
6030 goto make_one_char_var;
6031 case '{': {
6032 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6033
6034 ch = i_getch(input); /* eat '{' */
6035 nommu_addchr(as_string, ch);
6036
6037 ch = i_getch(input); /* first char after '{' */
6038 nommu_addchr(as_string, ch);
6039 /* It should be ${?}, or ${#var},
6040 * or even ${?+subst} - operator acting on a special variable,
6041 * or the beginning of variable name.
6042 */
6043 if (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) { /* not one of those */
6044 bad_dollar_syntax:
6045 syntax_error_unterm_str("${name}");
6046 debug_printf_parse("parse_dollar return 1: unterminated ${name}\n");
6047 return 1;
6048 }
6049 ch |= quote_mask;
6050
6051 /* It's possible to just call add_till_closing_bracket() at this point.
6052 * However, this regresses some of our testsuite cases
6053 * which check invalid constructs like ${%}.
6054 * Oh well... let's check that the var name part is fine... */
6055
6056 while (1) {
6057 unsigned pos;
6058
6059 o_addchr(dest, ch);
6060 debug_printf_parse(": '%c'\n", ch);
6061
6062 ch = i_getch(input);
6063 nommu_addchr(as_string, ch);
6064 if (ch == '}')
6065 break;
6066
6067 if (!isalnum(ch) && ch != '_') {
6068 unsigned end_ch;
6069 unsigned char last_ch;
6070 /* handle parameter expansions
6071 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
6072 */
6073 if (!strchr("%#:-=+?", ch)) /* ${var<bad_char>... */
6074 goto bad_dollar_syntax;
6075 o_addchr(dest, ch);
6076
6077 /* Eat everything until closing '}' (or ':') */
6078 end_ch = '}';
6079 if (ENABLE_HUSH_BASH_COMPAT
6080 && ch == ':'
6081 && !strchr("%#:-=+?"+3, i_peek(input))
6082 ) {
6083 /* It's ${var:N[:M]} thing */
6084 end_ch = '}' * 0x100 + ':';
6085 }
6086 again:
6087 if (!BB_MMU)
6088 pos = dest->length;
6089 #if ENABLE_HUSH_DOLLAR_OPS
6090 last_ch = add_till_closing_bracket(dest, input, end_ch);
6091 #else
6092 #error Simple code to only allow ${var} is not implemented
6093 #endif
6094 if (as_string) {
6095 o_addstr(as_string, dest->data + pos);
6096 o_addchr(as_string, last_ch);
6097 }
6098
6099 if (ENABLE_HUSH_BASH_COMPAT && (end_ch & 0xff00)) {
6100 /* close the first block: */
6101 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6102 /* while parsing N from ${var:N[:M]}... */
6103 if ((end_ch & 0xff) == last_ch) {
6104 /* ...got ':' - parse the rest */
6105 end_ch = '}';
6106 goto again;
6107 }
6108 /* ...got '}', not ':' - it's ${var:N}! emulate :999999999 */
6109 o_addstr(dest, "999999999");
6110 }
6111 break;
6112 }
6113 }
6114 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6115 break;
6116 }
6117 #if ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK
6118 case '(': {
6119 unsigned pos;
6120
6121 ch = i_getch(input);
6122 nommu_addchr(as_string, ch);
6123 # if ENABLE_SH_MATH_SUPPORT
6124 if (i_peek(input) == '(') {
6125 ch = i_getch(input);
6126 nommu_addchr(as_string, ch);
6127 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6128 o_addchr(dest, /*quote_mask |*/ '+');
6129 if (!BB_MMU)
6130 pos = dest->length;
6131 add_till_closing_bracket(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG);
6132 if (as_string) {
6133 o_addstr(as_string, dest->data + pos);
6134 o_addchr(as_string, ')');
6135 o_addchr(as_string, ')');
6136 }
6137 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6138 break;
6139 }
6140 # endif
6141 # if ENABLE_HUSH_TICK
6142 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6143 o_addchr(dest, quote_mask | '`');
6144 if (!BB_MMU)
6145 pos = dest->length;
6146 add_till_closing_bracket(dest, input, ')');
6147 if (as_string) {
6148 o_addstr(as_string, dest->data + pos);
6149 o_addchr(as_string, ')');
6150 }
6151 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6152 # endif
6153 break;
6154 }
6155 #endif
6156 case '_':
6157 ch = i_getch(input);
6158 nommu_addchr(as_string, ch);
6159 ch = i_peek(input);
6160 if (isalnum(ch)) { /* it's $_name or $_123 */
6161 ch = '_';
6162 goto make_var;
6163 }
6164 /* else: it's $_ */
6165 /* TODO: $_ and $-: */
6166 /* $_ Shell or shell script name; or last argument of last command
6167 * (if last command wasn't a pipe; if it was, bash sets $_ to "");
6168 * but in command's env, set to full pathname used to invoke it */
6169 /* $- Option flags set by set builtin or shell options (-i etc) */
6170 default:
6171 o_addQchr(dest, '$');
6172 }
6173 debug_printf_parse("parse_dollar return 0\n");
6174 return 0;
6175 #undef as_string
6176 }
6177
6178 #if BB_MMU
6179 #define parse_stream_dquoted(as_string, dest, input, dquote_end) \
6180 parse_stream_dquoted(dest, input, dquote_end)
6181 #define as_string NULL
6182 #endif
6183 static int parse_stream_dquoted(o_string *as_string,
6184 o_string *dest,
6185 struct in_str *input,
6186 int dquote_end)
6187 {
6188 int ch;
6189 int next;
6190
6191 again:
6192 ch = i_getch(input);
6193 if (ch != EOF)
6194 nommu_addchr(as_string, ch);
6195 if (ch == dquote_end) { /* may be only '"' or EOF */
6196 if (dest->o_assignment == NOT_ASSIGNMENT)
6197 dest->o_escape ^= 1;
6198 debug_printf_parse("parse_stream_dquoted return 0\n");
6199 return 0;
6200 }
6201 /* note: can't move it above ch == dquote_end check! */
6202 if (ch == EOF) {
6203 syntax_error_unterm_ch('"');
6204 /*xfunc_die(); - redundant */
6205 }
6206 next = '\0';
6207 if (ch != '\n') {
6208 next = i_peek(input);
6209 }
6210 debug_printf_parse("\" ch=%c (%d) escape=%d\n",
6211 ch, ch, dest->o_escape);
6212 if (ch == '\\') {
6213 if (next == EOF) {
6214 syntax_error("\\<eof>");
6215 xfunc_die();
6216 }
6217 /* bash:
6218 * "The backslash retains its special meaning [in "..."]
6219 * only when followed by one of the following characters:
6220 * $, `, ", \, or <newline>. A double quote may be quoted
6221 * within double quotes by preceding it with a backslash."
6222 */
6223 if (strchr("$`\"\\\n", next) != NULL) {
6224 ch = i_getch(input);
6225 if (ch != '\n') {
6226 o_addqchr(dest, ch);
6227 nommu_addchr(as_string, ch);
6228 }
6229 } else {
6230 o_addqchr(dest, '\\');
6231 nommu_addchr(as_string, '\\');
6232 }
6233 goto again;
6234 }
6235 if (ch == '$') {
6236 if (parse_dollar(as_string, dest, input) != 0) {
6237 debug_printf_parse("parse_stream_dquoted return 1: "
6238 "parse_dollar returned non-0\n");
6239 return 1;
6240 }
6241 goto again;
6242 }
6243 #if ENABLE_HUSH_TICK
6244 if (ch == '`') {
6245 //unsigned pos = dest->length;
6246 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6247 o_addchr(dest, 0x80 | '`');
6248 add_till_backquote(dest, input);
6249 o_addchr(dest, SPECIAL_VAR_SYMBOL);
6250 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
6251 goto again;
6252 }
6253 #endif
6254 o_addQchr(dest, ch);
6255 if (ch == '='
6256 && (dest->o_assignment == MAYBE_ASSIGNMENT
6257 || dest->o_assignment == WORD_IS_KEYWORD)
6258 && is_well_formed_var_name(dest->data, '=')
6259 ) {
6260 dest->o_assignment = DEFINITELY_ASSIGNMENT;
6261 }
6262 goto again;
6263 #undef as_string
6264 }
6265
6266 /*
6267 * Scan input until EOF or end_trigger char.
6268 * Return a list of pipes to execute, or NULL on EOF
6269 * or if end_trigger character is met.
6270 * On syntax error, exit is shell is not interactive,
6271 * reset parsing machinery and start parsing anew,
6272 * or return ERR_PTR.
6273 */
6274 static struct pipe *parse_stream(char **pstring,
6275 struct in_str *input,
6276 int end_trigger)
6277 {
6278 struct parse_context ctx;
6279 o_string dest = NULL_O_STRING;
6280 int is_in_dquote;
6281 int heredoc_cnt;
6282
6283 /* Double-quote state is handled in the state variable is_in_dquote.
6284 * A single-quote triggers a bypass of the main loop until its mate is
6285 * found. When recursing, quote state is passed in via dest->o_escape.
6286 */
6287 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
6288 end_trigger ? end_trigger : 'X');
6289 debug_enter();
6290
6291 /* If very first arg is "" or '', dest.data may end up NULL.
6292 * Preventing this: */
6293 o_addchr(&dest, '\0');
6294 dest.length = 0;
6295
6296 G.ifs = get_local_var_value("IFS");
6297 if (G.ifs == NULL)
6298 G.ifs = defifs;
6299
6300 reset:
6301 #if ENABLE_HUSH_INTERACTIVE
6302 input->promptmode = 0; /* PS1 */
6303 #endif
6304 /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
6305 initialize_context(&ctx);
6306 is_in_dquote = 0;
6307 heredoc_cnt = 0;
6308 while (1) {
6309 const char *is_ifs;
6310 const char *is_special;
6311 int ch;
6312 int next;
6313 int redir_fd;
6314 redir_type redir_style;
6315
6316 if (is_in_dquote) {
6317 /* dest.o_quoted = 1; - already is (see below) */
6318 if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
6319 goto parse_error;
6320 }
6321 /* We reached closing '"' */
6322 is_in_dquote = 0;
6323 }
6324 ch = i_getch(input);
6325 debug_printf_parse(": ch=%c (%d) escape=%d\n",
6326 ch, ch, dest.o_escape);
6327 if (ch == EOF) {
6328 struct pipe *pi;
6329
6330 if (heredoc_cnt) {
6331 syntax_error_unterm_str("here document");
6332 goto parse_error;
6333 }
6334 /* end_trigger == '}' case errors out earlier,
6335 * checking only ')' */
6336 if (end_trigger == ')') {
6337 syntax_error_unterm_ch('('); /* exits */
6338 /* goto parse_error; */
6339 }
6340
6341 if (done_word(&dest, &ctx)) {
6342 goto parse_error;
6343 }
6344 o_free(&dest);
6345 done_pipe(&ctx, PIPE_SEQ);
6346 pi = ctx.list_head;
6347 /* If we got nothing... */
6348 /* (this makes bare "&" cmd a no-op.
6349 * bash says: "syntax error near unexpected token '&'") */
6350 if (pi->num_cmds == 0
6351 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
6352 ) {
6353 free_pipe_list(pi);
6354 pi = NULL;
6355 }
6356 #if !BB_MMU
6357 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
6358 if (pstring)
6359 *pstring = ctx.as_string.data;
6360 else
6361 o_free_unsafe(&ctx.as_string);
6362 #endif
6363 debug_leave();
6364 debug_printf_parse("parse_stream return %p\n", pi);
6365 return pi;
6366 }
6367 nommu_addchr(&ctx.as_string, ch);
6368
6369 next = '\0';
6370 if (ch != '\n')
6371 next = i_peek(input);
6372
6373 is_special = "{}<>;&|()#'" /* special outside of "str" */
6374 "\\$\"" IF_HUSH_TICK("`"); /* always special */
6375 /* Are { and } special here? */
6376 if (ctx.command->argv /* word [word]{... - non-special */
6377 || dest.length /* word{... - non-special */
6378 || dest.o_quoted /* ""{... - non-special */
6379 || (next != ';' /* }; - special */
6380 && next != ')' /* }) - special */
6381 && next != '&' /* }& and }&& ... - special */
6382 && next != '|' /* }|| ... - special */
6383 && !strchr(G.ifs, next) /* {word - non-special */
6384 )
6385 ) {
6386 /* They are not special, skip "{}" */
6387 is_special += 2;
6388 }
6389 is_special = strchr(is_special, ch);
6390 is_ifs = strchr(G.ifs, ch);
6391
6392 if (!is_special && !is_ifs) { /* ordinary char */
6393 ordinary_char:
6394 o_addQchr(&dest, ch);
6395 if ((dest.o_assignment == MAYBE_ASSIGNMENT
6396 || dest.o_assignment == WORD_IS_KEYWORD)
6397 && ch == '='
6398 && is_well_formed_var_name(dest.data, '=')
6399 ) {
6400 dest.o_assignment = DEFINITELY_ASSIGNMENT;
6401 }
6402 continue;
6403 }
6404
6405 if (is_ifs) {
6406 if (done_word(&dest, &ctx)) {
6407 goto parse_error;
6408 }
6409 if (ch == '\n') {
6410 #if ENABLE_HUSH_CASE
6411 /* "case ... in <newline> word) ..." -
6412 * newlines are ignored (but ';' wouldn't be) */
6413 if (ctx.command->argv == NULL
6414 && ctx.ctx_res_w == RES_MATCH
6415 ) {
6416 continue;
6417 }
6418 #endif
6419 /* Treat newline as a command separator. */
6420 done_pipe(&ctx, PIPE_SEQ);
6421 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
6422 if (heredoc_cnt) {
6423 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
6424 goto parse_error;
6425 }
6426 heredoc_cnt = 0;
6427 }
6428 dest.o_assignment = MAYBE_ASSIGNMENT;
6429 ch = ';';
6430 /* note: if (is_ifs) continue;
6431 * will still trigger for us */
6432 }
6433 }
6434
6435 /* "cmd}" or "cmd }..." without semicolon or &:
6436 * } is an ordinary char in this case, even inside { cmd; }
6437 * Pathological example: { ""}; } should exec "}" cmd
6438 */
6439 if (ch == '}') {
6440 if (!IS_NULL_CMD(ctx.command) /* cmd } */
6441 || dest.length != 0 /* word} */
6442 || dest.o_quoted /* ""} */
6443 ) {
6444 goto ordinary_char;
6445 }
6446 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
6447 goto skip_end_trigger;
6448 /* else: } does terminate a group */
6449 }
6450
6451 if (end_trigger && end_trigger == ch
6452 && (ch != ';' || heredoc_cnt == 0)
6453 #if ENABLE_HUSH_CASE
6454 && (ch != ')'
6455 || ctx.ctx_res_w != RES_MATCH
6456 || (!dest.o_quoted && strcmp(dest.data, "esac") == 0)
6457 )
6458 #endif
6459 ) {
6460 if (heredoc_cnt) {
6461 /* This is technically valid:
6462 * { cat <<HERE; }; echo Ok
6463 * heredoc
6464 * heredoc
6465 * HERE
6466 * but we don't support this.
6467 * We require heredoc to be in enclosing {}/(),
6468 * if any.
6469 */
6470 syntax_error_unterm_str("here document");
6471 goto parse_error;
6472 }
6473 if (done_word(&dest, &ctx)) {
6474 goto parse_error;
6475 }
6476 done_pipe(&ctx, PIPE_SEQ);
6477 dest.o_assignment = MAYBE_ASSIGNMENT;
6478 /* Do we sit outside of any if's, loops or case's? */
6479 if (!HAS_KEYWORDS
6480 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
6481 ) {
6482 o_free(&dest);
6483 #if !BB_MMU
6484 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
6485 if (pstring)
6486 *pstring = ctx.as_string.data;
6487 else
6488 o_free_unsafe(&ctx.as_string);
6489 #endif
6490 debug_leave();
6491 debug_printf_parse("parse_stream return %p: "
6492 "end_trigger char found\n",
6493 ctx.list_head);
6494 return ctx.list_head;
6495 }
6496 }
6497 skip_end_trigger:
6498 if (is_ifs)
6499 continue;
6500
6501 /* Catch <, > before deciding whether this word is
6502 * an assignment. a=1 2>z b=2: b=2 is still assignment */
6503 switch (ch) {
6504 case '>':
6505 redir_fd = redirect_opt_num(&dest);
6506 if (done_word(&dest, &ctx)) {
6507 goto parse_error;
6508 }
6509 redir_style = REDIRECT_OVERWRITE;
6510 if (next == '>') {
6511 redir_style = REDIRECT_APPEND;
6512 ch = i_getch(input);
6513 nommu_addchr(&ctx.as_string, ch);
6514 }
6515 #if 0
6516 else if (next == '(') {
6517 syntax_error(">(process) not supported");
6518 goto parse_error;
6519 }
6520 #endif
6521 if (parse_redirect(&ctx, redir_fd, redir_style, input))
6522 goto parse_error;
6523 continue; /* back to top of while (1) */
6524 case '<':
6525 redir_fd = redirect_opt_num(&dest);
6526 if (done_word(&dest, &ctx)) {
6527 goto parse_error;
6528 }
6529 redir_style = REDIRECT_INPUT;
6530 if (next == '<') {
6531 redir_style = REDIRECT_HEREDOC;
6532 heredoc_cnt++;
6533 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
6534 ch = i_getch(input);
6535 nommu_addchr(&ctx.as_string, ch);
6536 } else if (next == '>') {
6537 redir_style = REDIRECT_IO;
6538 ch = i_getch(input);
6539 nommu_addchr(&ctx.as_string, ch);
6540 }
6541 #if 0
6542 else if (next == '(') {
6543 syntax_error("<(process) not supported");
6544 goto parse_error;
6545 }
6546 #endif
6547 if (parse_redirect(&ctx, redir_fd, redir_style, input))
6548 goto parse_error;
6549 continue; /* back to top of while (1) */
6550 }
6551
6552 if (dest.o_assignment == MAYBE_ASSIGNMENT
6553 /* check that we are not in word in "a=1 2>word b=1": */
6554 && !ctx.pending_redirect
6555 ) {
6556 /* ch is a special char and thus this word
6557 * cannot be an assignment */
6558 dest.o_assignment = NOT_ASSIGNMENT;
6559 }
6560
6561 /* Note: nommu_addchr(&ctx.as_string, ch) is already done */
6562
6563 switch (ch) {
6564 case '#':
6565 if (dest.length == 0) {
6566 while (1) {
6567 ch = i_peek(input);
6568 if (ch == EOF || ch == '\n')
6569 break;
6570 i_getch(input);
6571 /* note: we do not add it to &ctx.as_string */
6572 }
6573 nommu_addchr(&ctx.as_string, '\n');
6574 } else {
6575 o_addQchr(&dest, ch);
6576 }
6577 break;
6578 case '\\':
6579 if (next == EOF) {
6580 syntax_error("\\<eof>");
6581 xfunc_die();
6582 }
6583 ch = i_getch(input);
6584 if (ch != '\n') {
6585 o_addchr(&dest, '\\');
6586 /*nommu_addchr(&ctx.as_string, '\\'); - already done */
6587 o_addchr(&dest, ch);
6588 nommu_addchr(&ctx.as_string, ch);
6589 /* Example: echo Hello \2>file
6590 * we need to know that word 2 is quoted */
6591 dest.o_quoted = 1;
6592 }
6593 #if !BB_MMU
6594 else {
6595 /* It's "\<newline>". Remove trailing '\' from ctx.as_string */
6596 ctx.as_string.data[--ctx.as_string.length] = '\0';
6597 }
6598 #endif
6599 break;
6600 case '$':
6601 if (parse_dollar(&ctx.as_string, &dest, input) != 0) {
6602 debug_printf_parse("parse_stream parse error: "
6603 "parse_dollar returned non-0\n");
6604 goto parse_error;
6605 }
6606 break;
6607 case '\'':
6608 dest.o_quoted = 1;
6609 while (1) {
6610 ch = i_getch(input);
6611 if (ch == EOF) {
6612 syntax_error_unterm_ch('\'');
6613 /*xfunc_die(); - redundant */
6614 }
6615 nommu_addchr(&ctx.as_string, ch);
6616 if (ch == '\'')
6617 break;
6618 o_addqchr(&dest, ch);
6619 }
6620 break;
6621 case '"':
6622 dest.o_quoted = 1;
6623 is_in_dquote ^= 1; /* invert */
6624 if (dest.o_assignment == NOT_ASSIGNMENT)
6625 dest.o_escape ^= 1;
6626 break;
6627 #if ENABLE_HUSH_TICK
6628 case '`': {
6629 unsigned pos;
6630
6631 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
6632 o_addchr(&dest, '`');
6633 pos = dest.length;
6634 add_till_backquote(&dest, input);
6635 # if !BB_MMU
6636 o_addstr(&ctx.as_string, dest.data + pos);
6637 o_addchr(&ctx.as_string, '`');
6638 # endif
6639 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
6640 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
6641 break;
6642 }
6643 #endif
6644 case ';':
6645 #if ENABLE_HUSH_CASE
6646 case_semi:
6647 #endif
6648 if (done_word(&dest, &ctx)) {
6649 goto parse_error;
6650 }
6651 done_pipe(&ctx, PIPE_SEQ);
6652 #if ENABLE_HUSH_CASE
6653 /* Eat multiple semicolons, detect
6654 * whether it means something special */
6655 while (1) {
6656 ch = i_peek(input);
6657 if (ch != ';')
6658 break;
6659 ch = i_getch(input);
6660 nommu_addchr(&ctx.as_string, ch);
6661 if (ctx.ctx_res_w == RES_CASE_BODY) {
6662 ctx.ctx_dsemicolon = 1;
6663 ctx.ctx_res_w = RES_MATCH;
6664 break;
6665 }
6666 }
6667 #endif
6668 new_cmd:
6669 /* We just finished a cmd. New one may start
6670 * with an assignment */
6671 dest.o_assignment = MAYBE_ASSIGNMENT;
6672 break;
6673 case '&':
6674 if (done_word(&dest, &ctx)) {
6675 goto parse_error;
6676 }
6677 if (next == '&') {
6678 ch = i_getch(input);
6679 nommu_addchr(&ctx.as_string, ch);
6680 done_pipe(&ctx, PIPE_AND);
6681 } else {
6682 done_pipe(&ctx, PIPE_BG);
6683 }
6684 goto new_cmd;
6685 case '|':
6686 if (done_word(&dest, &ctx)) {
6687 goto parse_error;
6688 }
6689 #if ENABLE_HUSH_CASE
6690 if (ctx.ctx_res_w == RES_MATCH)
6691 break; /* we are in case's "word | word)" */
6692 #endif
6693 if (next == '|') { /* || */
6694 ch = i_getch(input);
6695 nommu_addchr(&ctx.as_string, ch);
6696 done_pipe(&ctx, PIPE_OR);
6697 } else {
6698 /* we could pick up a file descriptor choice here
6699 * with redirect_opt_num(), but bash doesn't do it.
6700 * "echo foo 2| cat" yields "foo 2". */
6701 done_command(&ctx);
6702 #if !BB_MMU
6703 o_reset_to_empty_unquoted(&ctx.as_string);
6704 #endif
6705 }
6706 goto new_cmd;
6707 case '(':
6708 #if ENABLE_HUSH_CASE
6709 /* "case... in [(]word)..." - skip '(' */
6710 if (ctx.ctx_res_w == RES_MATCH
6711 && ctx.command->argv == NULL /* not (word|(... */
6712 && dest.length == 0 /* not word(... */
6713 && dest.o_quoted == 0 /* not ""(... */
6714 ) {
6715 continue;
6716 }
6717 #endif
6718 case '{':
6719 if (parse_group(&dest, &ctx, input, ch) != 0) {
6720 goto parse_error;
6721 }
6722 goto new_cmd;
6723 case ')':
6724 #if ENABLE_HUSH_CASE
6725 if (ctx.ctx_res_w == RES_MATCH)
6726 goto case_semi;
6727 #endif
6728 case '}':
6729 /* proper use of this character is caught by end_trigger:
6730 * if we see {, we call parse_group(..., end_trigger='}')
6731 * and it will match } earlier (not here). */
6732 syntax_error_unexpected_ch(ch);
6733 goto parse_error;
6734 default:
6735 if (HUSH_DEBUG)
6736 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
6737 }
6738 } /* while (1) */
6739
6740 parse_error:
6741 {
6742 struct parse_context *pctx;
6743 IF_HAS_KEYWORDS(struct parse_context *p2;)
6744
6745 /* Clean up allocated tree.
6746 * Sample for finding leaks on syntax error recovery path.
6747 * Run it from interactive shell, watch pmap `pidof hush`.
6748 * while if false; then false; fi; do break; fi
6749 * Samples to catch leaks at execution:
6750 * while if (true | {true;}); then echo ok; fi; do break; done
6751 * while if (true | {true;}); then echo ok; fi; do (if echo ok; break; then :; fi) | cat; break; done
6752 */
6753 pctx = &ctx;
6754 do {
6755 /* Update pipe/command counts,
6756 * otherwise freeing may miss some */
6757 done_pipe(pctx, PIPE_SEQ);
6758 debug_printf_clean("freeing list %p from ctx %p\n",
6759 pctx->list_head, pctx);
6760 debug_print_tree(pctx->list_head, 0);
6761 free_pipe_list(pctx->list_head);
6762 debug_printf_clean("freed list %p\n", pctx->list_head);
6763 #if !BB_MMU
6764 o_free_unsafe(&pctx->as_string);
6765 #endif
6766 IF_HAS_KEYWORDS(p2 = pctx->stack;)
6767 if (pctx != &ctx) {
6768 free(pctx);
6769 }
6770 IF_HAS_KEYWORDS(pctx = p2;)
6771 } while (HAS_KEYWORDS && pctx);
6772 /* Free text, clear all dest fields */
6773 o_free(&dest);
6774 /* If we are not in top-level parse, we return,
6775 * our caller will propagate error.
6776 */
6777 if (end_trigger != ';') {
6778 #if !BB_MMU
6779 if (pstring)
6780 *pstring = NULL;
6781 #endif
6782 debug_leave();
6783 return ERR_PTR;
6784 }
6785 /* Discard cached input, force prompt */
6786 input->p = NULL;
6787 IF_HUSH_INTERACTIVE(input->promptme = 1;)
6788 goto reset;
6789 }
6790 }
6791
6792 /* Executing from string: eval, sh -c '...'
6793 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
6794 * end_trigger controls how often we stop parsing
6795 * NUL: parse all, execute, return
6796 * ';': parse till ';' or newline, execute, repeat till EOF
6797 */
6798 static void parse_and_run_stream(struct in_str *inp, int end_trigger)
6799 {
6800 /* Why we need empty flag?
6801 * An obscure corner case "false; ``; echo $?":
6802 * empty command in `` should still set $? to 0.
6803 * But we can't just set $? to 0 at the start,
6804 * this breaks "false; echo `echo $?`" case.
6805 */
6806 bool empty = 1;
6807 while (1) {
6808 struct pipe *pipe_list;
6809
6810 pipe_list = parse_stream(NULL, inp, end_trigger);
6811 if (!pipe_list) { /* EOF */
6812 if (empty)
6813 G.last_exitcode = 0;
6814 break;
6815 }
6816 debug_print_tree(pipe_list, 0);
6817 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
6818 run_and_free_list(pipe_list);
6819 empty = 0;
6820 }
6821 }
6822
6823 static void parse_and_run_string(const char *s)
6824 {
6825 struct in_str input;
6826 setup_string_in_str(&input, s);
6827 parse_and_run_stream(&input, '\0');
6828 }
6829
6830 static void parse_and_run_file(FILE *f)
6831 {
6832 struct in_str input;
6833 setup_file_in_str(&input, f);
6834 parse_and_run_stream(&input, ';');
6835 }
6836
6837 /* Called a few times only (or even once if "sh -c") */
6838 static void init_sigmasks(void)
6839 {
6840 unsigned sig;
6841 unsigned mask;
6842 sigset_t old_blocked_set;
6843
6844 if (!G.inherited_set_is_saved) {
6845 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
6846 G.inherited_set = G.blocked_set;
6847 }
6848 old_blocked_set = G.blocked_set;
6849
6850 mask = (1 << SIGQUIT);
6851 if (G_interactive_fd) {
6852 mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS;
6853 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
6854 mask |= SPECIAL_JOB_SIGS;
6855 }
6856 G.non_DFL_mask = mask;
6857
6858 sig = 0;
6859 while (mask) {
6860 if (mask & 1)
6861 sigaddset(&G.blocked_set, sig);
6862 mask >>= 1;
6863 sig++;
6864 }
6865 sigdelset(&G.blocked_set, SIGCHLD);
6866
6867 if (memcmp(&old_blocked_set, &G.blocked_set, sizeof(old_blocked_set)) != 0)
6868 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6869
6870 /* POSIX allows shell to re-enable SIGCHLD
6871 * even if it was SIG_IGN on entry */
6872 #if ENABLE_HUSH_FAST
6873 G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
6874 if (!G.inherited_set_is_saved)
6875 signal(SIGCHLD, SIGCHLD_handler);
6876 #else
6877 if (!G.inherited_set_is_saved)
6878 signal(SIGCHLD, SIG_DFL);
6879 #endif
6880
6881 G.inherited_set_is_saved = 1;
6882 }
6883
6884 #if ENABLE_HUSH_JOB
6885 /* helper */
6886 static void maybe_set_to_sigexit(int sig)
6887 {
6888 void (*handler)(int);
6889 /* non_DFL_mask'ed signals are, well, masked,
6890 * no need to set handler for them.
6891 */
6892 if (!((G.non_DFL_mask >> sig) & 1)) {
6893 handler = signal(sig, sigexit);
6894 if (handler == SIG_IGN) /* oops... restore back to IGN! */
6895 signal(sig, handler);
6896 }
6897 }
6898 /* Set handlers to restore tty pgrp and exit */
6899 static void set_fatal_handlers(void)
6900 {
6901 /* We _must_ restore tty pgrp on fatal signals */
6902 if (HUSH_DEBUG) {
6903 maybe_set_to_sigexit(SIGILL );
6904 maybe_set_to_sigexit(SIGFPE );
6905 maybe_set_to_sigexit(SIGBUS );
6906 maybe_set_to_sigexit(SIGSEGV);
6907 maybe_set_to_sigexit(SIGTRAP);
6908 } /* else: hush is perfect. what SEGV? */
6909 maybe_set_to_sigexit(SIGABRT);
6910 /* bash 3.2 seems to handle these just like 'fatal' ones */
6911 maybe_set_to_sigexit(SIGPIPE);
6912 maybe_set_to_sigexit(SIGALRM);
6913 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are masked.
6914 * if we aren't interactive... but in this case
6915 * we never want to restore pgrp on exit, and this fn is not called */
6916 /*maybe_set_to_sigexit(SIGHUP );*/
6917 /*maybe_set_to_sigexit(SIGTERM);*/
6918 /*maybe_set_to_sigexit(SIGINT );*/
6919 }
6920 #endif
6921
6922 static int set_mode(const char cstate, const char mode)
6923 {
6924 int state = (cstate == '-' ? 1 : 0);
6925 switch (mode) {
6926 case 'n': G.fake_mode = state; break;
6927 case 'x': /*G.debug_mode = state;*/ break;
6928 default: return EXIT_FAILURE;
6929 }
6930 return EXIT_SUCCESS;
6931 }
6932
6933 int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
6934 int hush_main(int argc, char **argv)
6935 {
6936 static const struct variable const_shell_ver = {
6937 .next = NULL,
6938 .varstr = (char*)hush_version_str,
6939 .max_len = 1, /* 0 can provoke free(name) */
6940 .flg_export = 1,
6941 .flg_read_only = 1,
6942 };
6943 int opt;
6944 unsigned builtin_argc;
6945 char **e;
6946 struct variable *cur_var;
6947
6948 INIT_G();
6949 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, it is already done */
6950 G.last_exitcode = EXIT_SUCCESS;
6951 #if !BB_MMU
6952 G.argv0_for_re_execing = argv[0];
6953 #endif
6954 /* Deal with HUSH_VERSION */
6955 G.shell_ver = const_shell_ver; /* copying struct here */
6956 G.top_var = &G.shell_ver;
6957 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
6958 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
6959 /* Initialize our shell local variables with the values
6960 * currently living in the environment */
6961 cur_var = G.top_var;
6962 e = environ;
6963 if (e) while (*e) {
6964 char *value = strchr(*e, '=');
6965 if (value) { /* paranoia */
6966 cur_var->next = xzalloc(sizeof(*cur_var));
6967 cur_var = cur_var->next;
6968 cur_var->varstr = *e;
6969 cur_var->max_len = strlen(*e);
6970 cur_var->flg_export = 1;
6971 }
6972 e++;
6973 }
6974 /* reinstate HUSH_VERSION */
6975 debug_printf_env("putenv '%s'\n", hush_version_str);
6976 putenv((char *)hush_version_str);
6977
6978 /* Export PWD */
6979 set_pwd_var(/*exp:*/ 1);
6980 /* bash also exports SHLVL and _,
6981 * and sets (but doesn't export) the following variables:
6982 * BASH=/bin/bash
6983 * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
6984 * BASH_VERSION='3.2.0(1)-release'
6985 * HOSTTYPE=i386
6986 * MACHTYPE=i386-pc-linux-gnu
6987 * OSTYPE=linux-gnu
6988 * HOSTNAME=<xxxxxxxxxx>
6989 * PPID=<NNNNN> - we also do it elsewhere
6990 * EUID=<NNNNN>
6991 * UID=<NNNNN>
6992 * GROUPS=()
6993 * LINES=<NNN>
6994 * COLUMNS=<NNN>
6995 * BASH_ARGC=()
6996 * BASH_ARGV=()
6997 * BASH_LINENO=()
6998 * BASH_SOURCE=()
6999 * DIRSTACK=()
7000 * PIPESTATUS=([0]="0")
7001 * HISTFILE=/<xxx>/.bash_history
7002 * HISTFILESIZE=500
7003 * HISTSIZE=500
7004 * MAILCHECK=60
7005 * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
7006 * SHELL=/bin/bash
7007 * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
7008 * TERM=dumb
7009 * OPTERR=1
7010 * OPTIND=1
7011 * IFS=$' \t\n'
7012 * PS1='\s-\v\$ '
7013 * PS2='> '
7014 * PS4='+ '
7015 */
7016
7017 #if ENABLE_FEATURE_EDITING
7018 G.line_input_state = new_line_input_t(FOR_SHELL);
7019 #endif
7020 G.global_argc = argc;
7021 G.global_argv = argv;
7022 /* Initialize some more globals to non-zero values */
7023 cmdedit_update_prompt();
7024
7025 if (setjmp(die_jmp)) {
7026 /* xfunc has failed! die die die */
7027 /* no EXIT traps, this is an escape hatch! */
7028 G.exiting = 1;
7029 hush_exit(xfunc_error_retval);
7030 }
7031
7032 /* Shell is non-interactive at first. We need to call
7033 * init_sigmasks() if we are going to execute "sh <script>",
7034 * "sh -c <cmds>" or login shell's /etc/profile and friends.
7035 * If we later decide that we are interactive, we run init_sigmasks()
7036 * in order to intercept (more) signals.
7037 */
7038
7039 /* Parse options */
7040 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
7041 builtin_argc = 0;
7042 while (1) {
7043 opt = getopt(argc, argv, "+c:xins"
7044 #if !BB_MMU
7045 "<:$:R:V:"
7046 # if ENABLE_HUSH_FUNCTIONS
7047 "F:"
7048 # endif
7049 #endif
7050 );
7051 if (opt <= 0)
7052 break;
7053 switch (opt) {
7054 case 'c':
7055 /* Possibilities:
7056 * sh ... -c 'script'
7057 * sh ... -c 'script' ARG0 [ARG1...]
7058 * On NOMMU, if builtin_argc != 0,
7059 * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...]
7060 * "" needs to be replaced with NULL
7061 * and BARGV vector fed to builtin function.
7062 * Note: the form without ARG0 never happens:
7063 * sh ... -c 'builtin' BARGV... ""
7064 */
7065 if (!G.root_pid) {
7066 G.root_pid = getpid();
7067 G.root_ppid = getppid();
7068 }
7069 G.global_argv = argv + optind;
7070 G.global_argc = argc - optind;
7071 if (builtin_argc) {
7072 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
7073 const struct built_in_command *x;
7074
7075 init_sigmasks();
7076 x = find_builtin(optarg);
7077 if (x) { /* paranoia */
7078 G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
7079 G.global_argv += builtin_argc;
7080 G.global_argv[-1] = NULL; /* replace "" */
7081 G.last_exitcode = x->b_function(argv + optind - 1);
7082 }
7083 goto final_return;
7084 }
7085 if (!G.global_argv[0]) {
7086 /* -c 'script' (no params): prevent empty $0 */
7087 G.global_argv--; /* points to argv[i] of 'script' */
7088 G.global_argv[0] = argv[0];
7089 G.global_argc++;
7090 } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
7091 init_sigmasks();
7092 parse_and_run_string(optarg);
7093 goto final_return;
7094 case 'i':
7095 /* Well, we cannot just declare interactiveness,
7096 * we have to have some stuff (ctty, etc) */
7097 /* G_interactive_fd++; */
7098 break;
7099 case 's':
7100 /* "-s" means "read from stdin", but this is how we always
7101 * operate, so simply do nothing here. */
7102 break;
7103 #if !BB_MMU
7104 case '<': /* "big heredoc" support */
7105 full_write1_str(optarg);
7106 _exit(0);
7107 case '$': {
7108 unsigned long long empty_trap_mask;
7109
7110 G.root_pid = bb_strtou(optarg, &optarg, 16);
7111 optarg++;
7112 G.root_ppid = bb_strtou(optarg, &optarg, 16);
7113 optarg++;
7114 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
7115 optarg++;
7116 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
7117 optarg++;
7118 builtin_argc = bb_strtou(optarg, &optarg, 16);
7119 optarg++;
7120 empty_trap_mask = bb_strtoull(optarg, &optarg, 16);
7121 if (empty_trap_mask != 0) {
7122 int sig;
7123 init_sigmasks();
7124 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
7125 for (sig = 1; sig < NSIG; sig++) {
7126 if (empty_trap_mask & (1LL << sig)) {
7127 G.traps[sig] = xzalloc(1); /* == xstrdup(""); */
7128 sigaddset(&G.blocked_set, sig);
7129 }
7130 }
7131 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7132 }
7133 # if ENABLE_HUSH_LOOPS
7134 optarg++;
7135 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
7136 # endif
7137 break;
7138 }
7139 case 'R':
7140 case 'V':
7141 set_local_var(xstrdup(optarg), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ opt == 'R');
7142 break;
7143 # if ENABLE_HUSH_FUNCTIONS
7144 case 'F': {
7145 struct function *funcp = new_function(optarg);
7146 /* funcp->name is already set to optarg */
7147 /* funcp->body is set to NULL. It's a special case. */
7148 funcp->body_as_string = argv[optind];
7149 optind++;
7150 break;
7151 }
7152 # endif
7153 #endif
7154 case 'n':
7155 case 'x':
7156 if (!set_mode('-', opt))
7157 break;
7158 default:
7159 #ifndef BB_VER
7160 fprintf(stderr, "Usage: sh [FILE]...\n"
7161 " or: sh -c command [args]...\n\n");
7162 exit(EXIT_FAILURE);
7163 #else
7164 bb_show_usage();
7165 #endif
7166 }
7167 } /* option parsing loop */
7168
7169 if (!G.root_pid) {
7170 G.root_pid = getpid();
7171 G.root_ppid = getppid();
7172 }
7173
7174 /* If we are login shell... */
7175 if (argv[0] && argv[0][0] == '-') {
7176 FILE *input;
7177 debug_printf("sourcing /etc/profile\n");
7178 input = fopen_for_read("/etc/profile");
7179 if (input != NULL) {
7180 close_on_exec_on(fileno(input));
7181 init_sigmasks();
7182 parse_and_run_file(input);
7183 fclose(input);
7184 }
7185 /* bash: after sourcing /etc/profile,
7186 * tries to source (in the given order):
7187 * ~/.bash_profile, ~/.bash_login, ~/.profile,
7188 * stopping on first found. --noprofile turns this off.
7189 * bash also sources ~/.bash_logout on exit.
7190 * If called as sh, skips .bash_XXX files.
7191 */
7192 }
7193
7194 if (argv[optind]) {
7195 FILE *input;
7196 /*
7197 * "bash <script>" (which is never interactive (unless -i?))
7198 * sources $BASH_ENV here (without scanning $PATH).
7199 * If called as sh, does the same but with $ENV.
7200 */
7201 debug_printf("running script '%s'\n", argv[optind]);
7202 G.global_argv = argv + optind;
7203 G.global_argc = argc - optind;
7204 input = xfopen_for_read(argv[optind]);
7205 close_on_exec_on(fileno(input));
7206 init_sigmasks();
7207 parse_and_run_file(input);
7208 #if ENABLE_FEATURE_CLEAN_UP
7209 fclose(input);
7210 #endif
7211 goto final_return;
7212 }
7213
7214 /* Up to here, shell was non-interactive. Now it may become one.
7215 * NB: don't forget to (re)run init_sigmasks() as needed.
7216 */
7217
7218 /* A shell is interactive if the '-i' flag was given,
7219 * or if all of the following conditions are met:
7220 * no -c command
7221 * no arguments remaining or the -s flag given
7222 * standard input is a terminal
7223 * standard output is a terminal
7224 * Refer to Posix.2, the description of the 'sh' utility.
7225 */
7226 #if ENABLE_HUSH_JOB
7227 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
7228 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
7229 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
7230 if (G_saved_tty_pgrp < 0)
7231 G_saved_tty_pgrp = 0;
7232
7233 /* try to dup stdin to high fd#, >= 255 */
7234 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
7235 if (G_interactive_fd < 0) {
7236 /* try to dup to any fd */
7237 G_interactive_fd = dup(STDIN_FILENO);
7238 if (G_interactive_fd < 0) {
7239 /* give up */
7240 G_interactive_fd = 0;
7241 G_saved_tty_pgrp = 0;
7242 }
7243 }
7244 // TODO: track & disallow any attempts of user
7245 // to (inadvertently) close/redirect G_interactive_fd
7246 }
7247 debug_printf("interactive_fd:%d\n", G_interactive_fd);
7248 if (G_interactive_fd) {
7249 close_on_exec_on(G_interactive_fd);
7250
7251 if (G_saved_tty_pgrp) {
7252 /* If we were run as 'hush &', sleep until we are
7253 * in the foreground (tty pgrp == our pgrp).
7254 * If we get started under a job aware app (like bash),
7255 * make sure we are now in charge so we don't fight over
7256 * who gets the foreground */
7257 while (1) {
7258 pid_t shell_pgrp = getpgrp();
7259 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
7260 if (G_saved_tty_pgrp == shell_pgrp)
7261 break;
7262 /* send TTIN to ourself (should stop us) */
7263 kill(- shell_pgrp, SIGTTIN);
7264 }
7265 }
7266
7267 /* Block some signals */
7268 init_sigmasks();
7269
7270 if (G_saved_tty_pgrp) {
7271 /* Set other signals to restore saved_tty_pgrp */
7272 set_fatal_handlers();
7273 /* Put ourselves in our own process group
7274 * (bash, too, does this only if ctty is available) */
7275 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
7276 /* Grab control of the terminal */
7277 tcsetpgrp(G_interactive_fd, getpid());
7278 }
7279 /* -1 is special - makes xfuncs longjmp, not exit
7280 * (we reset die_sleep = 0 whereever we [v]fork) */
7281 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
7282 } else {
7283 init_sigmasks();
7284 }
7285 #elif ENABLE_HUSH_INTERACTIVE
7286 /* No job control compiled in, only prompt/line editing */
7287 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
7288 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
7289 if (G_interactive_fd < 0) {
7290 /* try to dup to any fd */
7291 G_interactive_fd = dup(STDIN_FILENO);
7292 if (G_interactive_fd < 0)
7293 /* give up */
7294 G_interactive_fd = 0;
7295 }
7296 }
7297 if (G_interactive_fd) {
7298 close_on_exec_on(G_interactive_fd);
7299 }
7300 init_sigmasks();
7301 #else
7302 /* We have interactiveness code disabled */
7303 init_sigmasks();
7304 #endif
7305 /* bash:
7306 * if interactive but not a login shell, sources ~/.bashrc
7307 * (--norc turns this off, --rcfile <file> overrides)
7308 */
7309
7310 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
7311 /* note: ash and hush share this string */
7312 printf("\n\n%s %s\n"
7313 IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
7314 "\n",
7315 bb_banner,
7316 "hush - the humble shell"
7317 );
7318 }
7319
7320 parse_and_run_file(stdin);
7321
7322 final_return:
7323 #if ENABLE_FEATURE_CLEAN_UP
7324 if (G.cwd != bb_msg_unknown)
7325 free((char*)G.cwd);
7326 cur_var = G.top_var->next;
7327 while (cur_var) {
7328 struct variable *tmp = cur_var;
7329 if (!cur_var->max_len)
7330 free(cur_var->varstr);
7331 cur_var = cur_var->next;
7332 free(tmp);
7333 }
7334 #endif
7335 hush_exit(G.last_exitcode);
7336 }
7337
7338
7339 #if ENABLE_LASH
7340 int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
7341 int lash_main(int argc, char **argv)
7342 {
7343 bb_error_msg("lash is deprecated, please use hush instead");
7344 return hush_main(argc, argv);
7345 }
7346 #endif
7347
7348 #if ENABLE_MSH
7349 int msh_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
7350 int msh_main(int argc, char **argv)
7351 {
7352 //bb_error_msg("msh is deprecated, please use hush instead");
7353 return hush_main(argc, argv);
7354 }
7355 #endif
7356
7357
7358 /*
7359 * Built-ins
7360 */
7361 static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
7362 {
7363 return 0;
7364 }
7365
7366 static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
7367 {
7368 int argc = 0;
7369 while (*argv) {
7370 argc++;
7371 argv++;
7372 }
7373 return applet_main_func(argc, argv - argc);
7374 }
7375
7376 static int FAST_FUNC builtin_test(char **argv)
7377 {
7378 return run_applet_main(argv, test_main);
7379 }
7380
7381 static int FAST_FUNC builtin_echo(char **argv)
7382 {
7383 return run_applet_main(argv, echo_main);
7384 }
7385
7386 #if ENABLE_PRINTF
7387 static int FAST_FUNC builtin_printf(char **argv)
7388 {
7389 return run_applet_main(argv, printf_main);
7390 }
7391 #endif
7392
7393 static char **skip_dash_dash(char **argv)
7394 {
7395 argv++;
7396 if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0')
7397 argv++;
7398 return argv;
7399 }
7400
7401 static int FAST_FUNC builtin_eval(char **argv)
7402 {
7403 int rcode = EXIT_SUCCESS;
7404
7405 argv = skip_dash_dash(argv);
7406 if (*argv) {
7407 char *str = expand_strvec_to_string(argv);
7408 /* bash:
7409 * eval "echo Hi; done" ("done" is syntax error):
7410 * "echo Hi" will not execute too.
7411 */
7412 parse_and_run_string(str);
7413 free(str);
7414 rcode = G.last_exitcode;
7415 }
7416 return rcode;
7417 }
7418
7419 static int FAST_FUNC builtin_cd(char **argv)
7420 {
7421 const char *newdir;
7422
7423 argv = skip_dash_dash(argv);
7424 newdir = argv[0];
7425 if (newdir == NULL) {
7426 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
7427 * bash says "bash: cd: HOME not set" and does nothing
7428 * (exitcode 1)
7429 */
7430 const char *home = get_local_var_value("HOME");
7431 newdir = home ? home : "/";
7432 }
7433 if (chdir(newdir)) {
7434 /* Mimic bash message exactly */
7435 bb_perror_msg("cd: %s", newdir);
7436 return EXIT_FAILURE;
7437 }
7438 /* Read current dir (get_cwd(1) is inside) and set PWD.
7439 * Note: do not enforce exporting. If PWD was unset or unexported,
7440 * set it again, but do not export. bash does the same.
7441 */
7442 set_pwd_var(/*exp:*/ 0);
7443 return EXIT_SUCCESS;
7444 }
7445
7446 static int FAST_FUNC builtin_exec(char **argv)
7447 {
7448 argv = skip_dash_dash(argv);
7449 if (argv[0] == NULL)
7450 return EXIT_SUCCESS; /* bash does this */
7451
7452 /* Careful: we can end up here after [v]fork. Do not restore
7453 * tty pgrp then, only top-level shell process does that */
7454 if (G_saved_tty_pgrp && getpid() == G.root_pid)
7455 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
7456
7457 /* TODO: if exec fails, bash does NOT exit! We do.
7458 * We'll need to undo sigprocmask (it's inside execvp_or_die)
7459 * and tcsetpgrp, and this is inherently racy.
7460 */
7461 execvp_or_die(argv);
7462 }
7463
7464 static int FAST_FUNC builtin_exit(char **argv)
7465 {
7466 debug_printf_exec("%s()\n", __func__);
7467
7468 /* interactive bash:
7469 * # trap "echo EEE" EXIT
7470 * # exit
7471 * exit
7472 * There are stopped jobs.
7473 * (if there are _stopped_ jobs, running ones don't count)
7474 * # exit
7475 * exit
7476 # EEE (then bash exits)
7477 *
7478 * we can use G.exiting = -1 as indicator "last cmd was exit"
7479 */
7480
7481 /* note: EXIT trap is run by hush_exit */
7482 argv = skip_dash_dash(argv);
7483 if (argv[0] == NULL)
7484 hush_exit(G.last_exitcode);
7485 /* mimic bash: exit 123abc == exit 255 + error msg */
7486 xfunc_error_retval = 255;
7487 /* bash: exit -2 == exit 254, no error msg */
7488 hush_exit(xatoi(argv[0]) & 0xff);
7489 }
7490
7491 static void print_escaped(const char *s)
7492 {
7493 if (*s == '\'')
7494 goto squote;
7495 do {
7496 const char *p = strchrnul(s, '\'');
7497 /* print 'xxxx', possibly just '' */
7498 printf("'%.*s'", (int)(p - s), s);
7499 if (*p == '\0')
7500 break;
7501 s = p;
7502 squote:
7503 /* s points to '; print "'''...'''" */
7504 putchar('"');
7505 do putchar('\''); while (*++s == '\'');
7506 putchar('"');
7507 } while (*s);
7508 }
7509
7510 #if !ENABLE_HUSH_LOCAL
7511 #define helper_export_local(argv, exp, lvl) \
7512 helper_export_local(argv, exp)
7513 #endif
7514 static void helper_export_local(char **argv, int exp, int lvl)
7515 {
7516 do {
7517 char *name = *argv;
7518
7519 /* So far we do not check that name is valid (TODO?) */
7520
7521 if (strchr(name, '=') == NULL) {
7522 struct variable *var;
7523
7524 var = get_local_var(name);
7525 if (exp == -1) { /* unexporting? */
7526 /* export -n NAME (without =VALUE) */
7527 if (var) {
7528 var->flg_export = 0;
7529 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
7530 unsetenv(name);
7531 } /* else: export -n NOT_EXISTING_VAR: no-op */
7532 continue;
7533 }
7534 if (exp == 1) { /* exporting? */
7535 /* export NAME (without =VALUE) */
7536 if (var) {
7537 var->flg_export = 1;
7538 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
7539 putenv(var->varstr);
7540 continue;
7541 }
7542 }
7543 /* Exporting non-existing variable.
7544 * bash does not put it in environment,
7545 * but remembers that it is exported,
7546 * and does put it in env when it is set later.
7547 * We just set it to "" and export. */
7548 /* Or, it's "local NAME" (without =VALUE).
7549 * bash sets the value to "". */
7550 name = xasprintf("%s=", name);
7551 } else {
7552 /* (Un)exporting/making local NAME=VALUE */
7553 name = xstrdup(name);
7554 }
7555 set_local_var(name, /*exp:*/ exp, /*lvl:*/ lvl, /*ro:*/ 0);
7556 } while (*++argv);
7557 }
7558
7559 static int FAST_FUNC builtin_export(char **argv)
7560 {
7561 unsigned opt_unexport;
7562
7563 #if ENABLE_HUSH_EXPORT_N
7564 /* "!": do not abort on errors */
7565 opt_unexport = getopt32(argv, "!n");
7566 if (opt_unexport == (uint32_t)-1)
7567 return EXIT_FAILURE;
7568 argv += optind;
7569 #else
7570 opt_unexport = 0;
7571 argv++;
7572 #endif
7573
7574 if (argv[0] == NULL) {
7575 char **e = environ;
7576 if (e) {
7577 while (*e) {
7578 #if 0
7579 puts(*e++);
7580 #else
7581 /* ash emits: export VAR='VAL'
7582 * bash: declare -x VAR="VAL"
7583 * we follow ash example */
7584 const char *s = *e++;
7585 const char *p = strchr(s, '=');
7586
7587 if (!p) /* wtf? take next variable */
7588 continue;
7589 /* export var= */
7590 printf("export %.*s", (int)(p - s) + 1, s);
7591 print_escaped(p + 1);
7592 putchar('\n');
7593 #endif
7594 }
7595 /*fflush_all(); - done after each builtin anyway */
7596 }
7597 return EXIT_SUCCESS;
7598 }
7599
7600 helper_export_local(argv, (opt_unexport ? -1 : 1), 0);
7601
7602 return EXIT_SUCCESS;
7603 }
7604
7605 #if ENABLE_HUSH_LOCAL
7606 static int FAST_FUNC builtin_local(char **argv)
7607 {
7608 if (G.func_nest_level == 0) {
7609 bb_error_msg("%s: not in a function", argv[0]);
7610 return EXIT_FAILURE; /* bash compat */
7611 }
7612 helper_export_local(argv, 0, G.func_nest_level);
7613 return EXIT_SUCCESS;
7614 }
7615 #endif
7616
7617 static int FAST_FUNC builtin_trap(char **argv)
7618 {
7619 int sig;
7620 char *new_cmd;
7621
7622 if (!G.traps)
7623 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
7624
7625 argv++;
7626 if (!*argv) {
7627 int i;
7628 /* No args: print all trapped */
7629 for (i = 0; i < NSIG; ++i) {
7630 if (G.traps[i]) {
7631 printf("trap -- ");
7632 print_escaped(G.traps[i]);
7633 /* note: bash adds "SIG", but only if invoked
7634 * as "bash". If called as "sh", or if set -o posix,
7635 * then it prints short signal names.
7636 * We are printing short names: */
7637 printf(" %s\n", get_signame(i));
7638 }
7639 }
7640 /*fflush_all(); - done after each builtin anyway */
7641 return EXIT_SUCCESS;
7642 }
7643
7644 new_cmd = NULL;
7645 /* If first arg is a number: reset all specified signals */
7646 sig = bb_strtou(*argv, NULL, 10);
7647 if (errno == 0) {
7648 int ret;
7649 process_sig_list:
7650 ret = EXIT_SUCCESS;
7651 while (*argv) {
7652 sig = get_signum(*argv++);
7653 if (sig < 0 || sig >= NSIG) {
7654 ret = EXIT_FAILURE;
7655 /* Mimic bash message exactly */
7656 bb_perror_msg("trap: %s: invalid signal specification", argv[-1]);
7657 continue;
7658 }
7659
7660 free(G.traps[sig]);
7661 G.traps[sig] = xstrdup(new_cmd);
7662
7663 debug_printf("trap: setting SIG%s (%i) to '%s'\n",
7664 get_signame(sig), sig, G.traps[sig]);
7665
7666 /* There is no signal for 0 (EXIT) */
7667 if (sig == 0)
7668 continue;
7669
7670 if (new_cmd) {
7671 sigaddset(&G.blocked_set, sig);
7672 } else {
7673 /* There was a trap handler, we are removing it
7674 * (if sig has non-DFL handling,
7675 * we don't need to do anything) */
7676 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
7677 continue;
7678 sigdelset(&G.blocked_set, sig);
7679 }
7680 }
7681 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7682 return ret;
7683 }
7684
7685 if (!argv[1]) { /* no second arg */
7686 bb_error_msg("trap: invalid arguments");
7687 return EXIT_FAILURE;
7688 }
7689
7690 /* First arg is "-": reset all specified to default */
7691 /* First arg is "--": skip it, the rest is "handler SIGs..." */
7692 /* Everything else: set arg as signal handler
7693 * (includes "" case, which ignores signal) */
7694 if (argv[0][0] == '-') {
7695 if (argv[0][1] == '\0') { /* "-" */
7696 /* new_cmd remains NULL: "reset these sigs" */
7697 goto reset_traps;
7698 }
7699 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
7700 argv++;
7701 }
7702 /* else: "-something", no special meaning */
7703 }
7704 new_cmd = *argv;
7705 reset_traps:
7706 argv++;
7707 goto process_sig_list;
7708 }
7709
7710 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
7711 static int FAST_FUNC builtin_type(char **argv)
7712 {
7713 int ret = EXIT_SUCCESS;
7714
7715 while (*++argv) {
7716 const char *type;
7717 char *path = NULL;
7718
7719 if (0) {} /* make conditional compile easier below */
7720 /*else if (find_alias(*argv))
7721 type = "an alias";*/
7722 #if ENABLE_HUSH_FUNCTIONS
7723 else if (find_function(*argv))
7724 type = "a function";
7725 #endif
7726 else if (find_builtin(*argv))
7727 type = "a shell builtin";
7728 else if ((path = find_in_path(*argv)) != NULL)
7729 type = path;
7730 else {
7731 bb_error_msg("type: %s: not found", *argv);
7732 ret = EXIT_FAILURE;
7733 continue;
7734 }
7735
7736 printf("%s is %s\n", *argv, type);
7737 free(path);
7738 }
7739
7740 return ret;
7741 }
7742
7743 #if ENABLE_HUSH_JOB
7744 /* built-in 'fg' and 'bg' handler */
7745 static int FAST_FUNC builtin_fg_bg(char **argv)
7746 {
7747 int i, jobnum;
7748 struct pipe *pi;
7749
7750 if (!G_interactive_fd)
7751 return EXIT_FAILURE;
7752
7753 /* If they gave us no args, assume they want the last backgrounded task */
7754 if (!argv[1]) {
7755 for (pi = G.job_list; pi; pi = pi->next) {
7756 if (pi->jobid == G.last_jobid) {
7757 goto found;
7758 }
7759 }
7760 bb_error_msg("%s: no current job", argv[0]);
7761 return EXIT_FAILURE;
7762 }
7763 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
7764 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
7765 return EXIT_FAILURE;
7766 }
7767 for (pi = G.job_list; pi; pi = pi->next) {
7768 if (pi->jobid == jobnum) {
7769 goto found;
7770 }
7771 }
7772 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
7773 return EXIT_FAILURE;
7774 found:
7775 /* TODO: bash prints a string representation
7776 * of job being foregrounded (like "sleep 1 | cat") */
7777 if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
7778 /* Put the job into the foreground. */
7779 tcsetpgrp(G_interactive_fd, pi->pgrp);
7780 }
7781
7782 /* Restart the processes in the job */
7783 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
7784 for (i = 0; i < pi->num_cmds; i++) {
7785 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
7786 pi->cmds[i].is_stopped = 0;
7787 }
7788 pi->stopped_cmds = 0;
7789
7790 i = kill(- pi->pgrp, SIGCONT);
7791 if (i < 0) {
7792 if (errno == ESRCH) {
7793 delete_finished_bg_job(pi);
7794 return EXIT_SUCCESS;
7795 }
7796 bb_perror_msg("kill (SIGCONT)");
7797 }
7798
7799 if (argv[0][0] == 'f') {
7800 remove_bg_job(pi);
7801 return checkjobs_and_fg_shell(pi);
7802 }
7803 return EXIT_SUCCESS;
7804 }
7805 #endif
7806
7807 #if ENABLE_HUSH_HELP
7808 static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
7809 {
7810 const struct built_in_command *x;
7811
7812 printf(
7813 "Built-in commands:\n"
7814 "------------------\n");
7815 for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
7816 if (x->b_descr)
7817 printf("%-10s%s\n", x->b_cmd, x->b_descr);
7818 }
7819 bb_putchar('\n');
7820 return EXIT_SUCCESS;
7821 }
7822 #endif
7823
7824 #if ENABLE_HUSH_JOB
7825 static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
7826 {
7827 struct pipe *job;
7828 const char *status_string;
7829
7830 for (job = G.job_list; job; job = job->next) {
7831 if (job->alive_cmds == job->stopped_cmds)
7832 status_string = "Stopped";
7833 else
7834 status_string = "Running";
7835
7836 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
7837 }
7838 return EXIT_SUCCESS;
7839 }
7840 #endif
7841
7842 #if HUSH_DEBUG
7843 static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
7844 {
7845 void *p;
7846 unsigned long l;
7847
7848 # ifdef M_TRIM_THRESHOLD
7849 /* Optional. Reduces probability of false positives */
7850 malloc_trim(0);
7851 # endif
7852 /* Crude attempt to find where "free memory" starts,
7853 * sans fragmentation. */
7854 p = malloc(240);
7855 l = (unsigned long)p;
7856 free(p);
7857 p = malloc(3400);
7858 if (l < (unsigned long)p) l = (unsigned long)p;
7859 free(p);
7860
7861 if (!G.memleak_value)
7862 G.memleak_value = l;
7863
7864 l -= G.memleak_value;
7865 if ((long)l < 0)
7866 l = 0;
7867 l /= 1024;
7868 if (l > 127)
7869 l = 127;
7870
7871 /* Exitcode is "how many kilobytes we leaked since 1st call" */
7872 return l;
7873 }
7874 #endif
7875
7876 static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
7877 {
7878 puts(get_cwd(0));
7879 return EXIT_SUCCESS;
7880 }
7881
7882 static int FAST_FUNC builtin_read(char **argv)
7883 {
7884 const char *r;
7885 char *opt_n = NULL;
7886 char *opt_p = NULL;
7887 char *opt_t = NULL;
7888 char *opt_u = NULL;
7889 int read_flags;
7890
7891 /* "!": do not abort on errors.
7892 * Option string must start with "sr" to match BUILTIN_READ_xxx
7893 */
7894 read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u);
7895 if (read_flags == (uint32_t)-1)
7896 return EXIT_FAILURE;
7897 argv += optind;
7898
7899 r = shell_builtin_read(set_local_var_from_halves,
7900 argv,
7901 get_local_var_value("IFS"), /* can be NULL */
7902 read_flags,
7903 opt_n,
7904 opt_p,
7905 opt_t,
7906 opt_u
7907 );
7908
7909 if ((uintptr_t)r > 1) {
7910 bb_error_msg("%s", r);
7911 r = (char*)(uintptr_t)1;
7912 }
7913
7914 return (uintptr_t)r;
7915 }
7916
7917 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
7918 * built-in 'set' handler
7919 * SUSv3 says:
7920 * set [-abCefhmnuvx] [-o option] [argument...]
7921 * set [+abCefhmnuvx] [+o option] [argument...]
7922 * set -- [argument...]
7923 * set -o
7924 * set +o
7925 * Implementations shall support the options in both their hyphen and
7926 * plus-sign forms. These options can also be specified as options to sh.
7927 * Examples:
7928 * Write out all variables and their values: set
7929 * Set $1, $2, and $3 and set "$#" to 3: set c a b
7930 * Turn on the -x and -v options: set -xv
7931 * Unset all positional parameters: set --
7932 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
7933 * Set the positional parameters to the expansion of x, even if x expands
7934 * with a leading '-' or '+': set -- $x
7935 *
7936 * So far, we only support "set -- [argument...]" and some of the short names.
7937 */
7938 static int FAST_FUNC builtin_set(char **argv)
7939 {
7940 int n;
7941 char **pp, **g_argv;
7942 char *arg = *++argv;
7943
7944 if (arg == NULL) {
7945 struct variable *e;
7946 for (e = G.top_var; e; e = e->next)
7947 puts(e->varstr);
7948 return EXIT_SUCCESS;
7949 }
7950
7951 do {
7952 if (!strcmp(arg, "--")) {
7953 ++argv;
7954 goto set_argv;
7955 }
7956 if (arg[0] != '+' && arg[0] != '-')
7957 break;
7958 for (n = 1; arg[n]; ++n)
7959 if (set_mode(arg[0], arg[n]))
7960 goto error;
7961 } while ((arg = *++argv) != NULL);
7962 /* Now argv[0] is 1st argument */
7963
7964 if (arg == NULL)
7965 return EXIT_SUCCESS;
7966 set_argv:
7967
7968 /* NB: G.global_argv[0] ($0) is never freed/changed */
7969 g_argv = G.global_argv;
7970 if (G.global_args_malloced) {
7971 pp = g_argv;
7972 while (*++pp)
7973 free(*pp);
7974 g_argv[1] = NULL;
7975 } else {
7976 G.global_args_malloced = 1;
7977 pp = xzalloc(sizeof(pp[0]) * 2);
7978 pp[0] = g_argv[0]; /* retain $0 */
7979 g_argv = pp;
7980 }
7981 /* This realloc's G.global_argv */
7982 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
7983
7984 n = 1;
7985 while (*++pp)
7986 n++;
7987 G.global_argc = n;
7988
7989 return EXIT_SUCCESS;
7990
7991 /* Nothing known, so abort */
7992 error:
7993 bb_error_msg("set: %s: invalid option", arg);
7994 return EXIT_FAILURE;
7995 }
7996
7997 static int FAST_FUNC builtin_shift(char **argv)
7998 {
7999 int n = 1;
8000 argv = skip_dash_dash(argv);
8001 if (argv[0]) {
8002 n = atoi(argv[0]);
8003 }
8004 if (n >= 0 && n < G.global_argc) {
8005 if (G.global_args_malloced) {
8006 int m = 1;
8007 while (m <= n)
8008 free(G.global_argv[m++]);
8009 }
8010 G.global_argc -= n;
8011 memmove(&G.global_argv[1], &G.global_argv[n+1],
8012 G.global_argc * sizeof(G.global_argv[0]));
8013 return EXIT_SUCCESS;
8014 }
8015 return EXIT_FAILURE;
8016 }
8017
8018 static int FAST_FUNC builtin_source(char **argv)
8019 {
8020 char *arg_path, *filename;
8021 FILE *input;
8022 save_arg_t sv;
8023 #if ENABLE_HUSH_FUNCTIONS
8024 smallint sv_flg;
8025 #endif
8026
8027 argv = skip_dash_dash(argv);
8028 filename = argv[0];
8029 if (!filename) {
8030 /* bash says: "bash: .: filename argument required" */
8031 return 2; /* bash compat */
8032 }
8033 arg_path = NULL;
8034 if (!strchr(filename, '/')) {
8035 arg_path = find_in_path(filename);
8036 if (arg_path)
8037 filename = arg_path;
8038 }
8039 input = fopen_or_warn(filename, "r");
8040 free(arg_path);
8041 if (!input) {
8042 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
8043 return EXIT_FAILURE;
8044 }
8045 close_on_exec_on(fileno(input));
8046
8047 #if ENABLE_HUSH_FUNCTIONS
8048 sv_flg = G.flag_return_in_progress;
8049 /* "we are inside sourced file, ok to use return" */
8050 G.flag_return_in_progress = -1;
8051 #endif
8052 save_and_replace_G_args(&sv, argv);
8053
8054 parse_and_run_file(input);
8055 fclose(input);
8056
8057 restore_G_args(&sv, argv);
8058 #if ENABLE_HUSH_FUNCTIONS
8059 G.flag_return_in_progress = sv_flg;
8060 #endif
8061
8062 return G.last_exitcode;
8063 }
8064
8065 static int FAST_FUNC builtin_umask(char **argv)
8066 {
8067 int rc;
8068 mode_t mask;
8069
8070 mask = umask(0);
8071 argv = skip_dash_dash(argv);
8072 if (argv[0]) {
8073 mode_t old_mask = mask;
8074
8075 mask ^= 0777;
8076 rc = bb_parse_mode(argv[0], &mask);
8077 mask ^= 0777;
8078 if (rc == 0) {
8079 mask = old_mask;
8080 /* bash messages:
8081 * bash: umask: 'q': invalid symbolic mode operator
8082 * bash: umask: 999: octal number out of range
8083 */
8084 bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
8085 }
8086 } else {
8087 rc = 1;
8088 /* Mimic bash */
8089 printf("%04o\n", (unsigned) mask);
8090 /* fall through and restore mask which we set to 0 */
8091 }
8092 umask(mask);
8093
8094 return !rc; /* rc != 0 - success */
8095 }
8096
8097 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
8098 static int FAST_FUNC builtin_unset(char **argv)
8099 {
8100 int ret;
8101 unsigned opts;
8102
8103 /* "!": do not abort on errors */
8104 /* "+": stop at 1st non-option */
8105 opts = getopt32(argv, "!+vf");
8106 if (opts == (unsigned)-1)
8107 return EXIT_FAILURE;
8108 if (opts == 3) {
8109 bb_error_msg("unset: -v and -f are exclusive");
8110 return EXIT_FAILURE;
8111 }
8112 argv += optind;
8113
8114 ret = EXIT_SUCCESS;
8115 while (*argv) {
8116 if (!(opts & 2)) { /* not -f */
8117 if (unset_local_var(*argv)) {
8118 /* unset <nonexistent_var> doesn't fail.
8119 * Error is when one tries to unset RO var.
8120 * Message was printed by unset_local_var. */
8121 ret = EXIT_FAILURE;
8122 }
8123 }
8124 #if ENABLE_HUSH_FUNCTIONS
8125 else {
8126 unset_func(*argv);
8127 }
8128 #endif
8129 argv++;
8130 }
8131 return ret;
8132 }
8133
8134 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
8135 static int FAST_FUNC builtin_wait(char **argv)
8136 {
8137 int ret = EXIT_SUCCESS;
8138 int status, sig;
8139
8140 argv = skip_dash_dash(argv);
8141 if (argv[0] == NULL) {
8142 /* Don't care about wait results */
8143 /* Note 1: must wait until there are no more children */
8144 /* Note 2: must be interruptible */
8145 /* Examples:
8146 * $ sleep 3 & sleep 6 & wait
8147 * [1] 30934 sleep 3
8148 * [2] 30935 sleep 6
8149 * [1] Done sleep 3
8150 * [2] Done sleep 6
8151 * $ sleep 3 & sleep 6 & wait
8152 * [1] 30936 sleep 3
8153 * [2] 30937 sleep 6
8154 * [1] Done sleep 3
8155 * ^C <-- after ~4 sec from keyboard
8156 * $
8157 */
8158 sigaddset(&G.blocked_set, SIGCHLD);
8159 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
8160 while (1) {
8161 checkjobs(NULL);
8162 if (errno == ECHILD)
8163 break;
8164 /* Wait for SIGCHLD or any other signal of interest */
8165 /* sigtimedwait with infinite timeout: */
8166 sig = sigwaitinfo(&G.blocked_set, NULL);
8167 if (sig > 0) {
8168 sig = check_and_run_traps(sig);
8169 if (sig && sig != SIGCHLD) { /* see note 2 */
8170 ret = 128 + sig;
8171 break;
8172 }
8173 }
8174 }
8175 sigdelset(&G.blocked_set, SIGCHLD);
8176 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
8177 return ret;
8178 }
8179
8180 /* This is probably buggy wrt interruptible-ness */
8181 while (*argv) {
8182 pid_t pid = bb_strtou(*argv, NULL, 10);
8183 if (errno) {
8184 /* mimic bash message */
8185 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
8186 return EXIT_FAILURE;
8187 }
8188 if (waitpid(pid, &status, 0) == pid) {
8189 if (WIFSIGNALED(status))
8190 ret = 128 + WTERMSIG(status);
8191 else if (WIFEXITED(status))
8192 ret = WEXITSTATUS(status);
8193 else /* wtf? */
8194 ret = EXIT_FAILURE;
8195 } else {
8196 bb_perror_msg("wait %s", *argv);
8197 ret = 127;
8198 }
8199 argv++;
8200 }
8201
8202 return ret;
8203 }
8204
8205 #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
8206 static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
8207 {
8208 if (argv[1]) {
8209 def = bb_strtou(argv[1], NULL, 10);
8210 if (errno || def < def_min || argv[2]) {
8211 bb_error_msg("%s: bad arguments", argv[0]);
8212 def = UINT_MAX;
8213 }
8214 }
8215 return def;
8216 }
8217 #endif
8218
8219 #if ENABLE_HUSH_LOOPS
8220 static int FAST_FUNC builtin_break(char **argv)
8221 {
8222 unsigned depth;
8223 if (G.depth_of_loop == 0) {
8224 bb_error_msg("%s: only meaningful in a loop", argv[0]);
8225 return EXIT_SUCCESS; /* bash compat */
8226 }
8227 G.flag_break_continue++; /* BC_BREAK = 1 */
8228
8229 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
8230 if (depth == UINT_MAX)
8231 G.flag_break_continue = BC_BREAK;
8232 if (G.depth_of_loop < depth)
8233 G.depth_break_continue = G.depth_of_loop;
8234
8235 return EXIT_SUCCESS;
8236 }
8237
8238 static int FAST_FUNC builtin_continue(char **argv)
8239 {
8240 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
8241 return builtin_break(argv);
8242 }
8243 #endif
8244
8245 #if ENABLE_HUSH_FUNCTIONS
8246 static int FAST_FUNC builtin_return(char **argv)
8247 {
8248 int rc;
8249
8250 if (G.flag_return_in_progress != -1) {
8251 bb_error_msg("%s: not in a function or sourced script", argv[0]);
8252 return EXIT_FAILURE; /* bash compat */
8253 }
8254
8255 G.flag_return_in_progress = 1;
8256
8257 /* bash:
8258 * out of range: wraps around at 256, does not error out
8259 * non-numeric param:
8260 * f() { false; return qwe; }; f; echo $?
8261 * bash: return: qwe: numeric argument required <== we do this
8262 * 255 <== we also do this
8263 */
8264 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
8265 return rc;
8266 }
8267 #endif