blob: 6cb921d4f35151a901b521e8e3b3878cb6582319 [file] [log] [blame]
wdenkfe8c2802002-11-03 00:38:21 +00001/*
2 * sh.c -- a prototype Bourne shell grammar parser
3 * Intended to follow the original Thompson and Ritchie
4 * "small and simple is beautiful" philosophy, which
5 * incidentally is a good match to today's BusyBox.
6 *
7 * Copyright (C) 2000,2001 Larry Doolittle <larry@doolittle.boa.org>
8 *
9 * Credits:
10 * The parser routines proper are all original material, first
11 * written Dec 2000 and Jan 2001 by Larry Doolittle.
12 * The execution engine, the builtins, and much of the underlying
13 * support has been adapted from busybox-0.49pre's lash,
14 * which is Copyright (C) 2000 by Lineo, Inc., and
15 * written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>.
16 * That, in turn, is based in part on ladsh.c, by Michael K. Johnson and
17 * Erik W. Troan, which they placed in the public domain. I don't know
18 * how much of the Johnson/Troan code has survived the repeated rewrites.
19 * Other credits:
wdenkfe8c2802002-11-03 00:38:21 +000020 * b_addchr() derived from similar w_addchar function in glibc-2.2
21 * setup_redirect(), redirect_opt_num(), and big chunks of main()
22 * and many builtins derived from contributions by Erik Andersen
23 * miscellaneous bugfixes from Matt Kraai
24 *
25 * There are two big (and related) architecture differences between
26 * this parser and the lash parser. One is that this version is
27 * actually designed from the ground up to understand nearly all
28 * of the Bourne grammar. The second, consequential change is that
29 * the parser and input reader have been turned inside out. Now,
30 * the parser is in control, and asks for input as needed. The old
31 * way had the input reader in control, and it asked for parsing to
32 * take place as needed. The new way makes it much easier to properly
33 * handle the recursion implicit in the various substitutions, especially
34 * across continuation lines.
35 *
36 * Bash grammar not implemented: (how many of these were in original sh?)
37 * $@ (those sure look like weird quoting rules)
38 * $_
39 * ! negation operator for pipes
40 * &> and >& redirection of stdout+stderr
41 * Brace Expansion
42 * Tilde Expansion
43 * fancy forms of Parameter Expansion
44 * aliases
45 * Arithmetic Expansion
46 * <(list) and >(list) Process Substitution
47 * reserved words: case, esac, select, function
48 * Here Documents ( << word )
49 * Functions
50 * Major bugs:
51 * job handling woefully incomplete and buggy
52 * reserved word execution woefully incomplete and buggy
53 * to-do:
54 * port selected bugfixes from post-0.49 busybox lash - done?
55 * finish implementing reserved words: for, while, until, do, done
56 * change { and } from special chars to reserved words
57 * builtins: break, continue, eval, return, set, trap, ulimit
58 * test magic exec
59 * handle children going into background
60 * clean up recognition of null pipes
61 * check setting of global_argc and global_argv
62 * control-C handling, probably with longjmp
63 * follow IFS rules more precisely, including update semantics
64 * figure out what to do with backslash-newline
65 * explain why we use signal instead of sigaction
66 * propagate syntax errors, die on resource errors?
67 * continuation lines, both explicit and implicit - done?
68 * memory leak finding and plugging - done?
69 * more testing, especially quoting rules and redirection
70 * document how quoting rules not precisely followed for variable assignments
71 * maybe change map[] to use 2-bit entries
72 * (eventually) remove all the printf's
73 *
74 * This program is free software; you can redistribute it and/or modify
75 * it under the terms of the GNU General Public License as published by
76 * the Free Software Foundation; either version 2 of the License, or
77 * (at your option) any later version.
78 *
79 * This program is distributed in the hope that it will be useful,
80 * but WITHOUT ANY WARRANTY; without even the implied warranty of
81 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
82 * General Public License for more details.
83 *
84 * You should have received a copy of the GNU General Public License
85 * along with this program; if not, write to the Free Software
86 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
87 */
88#define __U_BOOT__
89#ifdef __U_BOOT__
90#include <malloc.h> /* malloc, free, realloc*/
91#include <linux/ctype.h> /* isalpha, isdigit */
92#include <common.h> /* readline */
93#include <hush.h>
94#include <command.h> /* find_cmd */
wdenkfe8c2802002-11-03 00:38:21 +000095#endif
wdenkfe8c2802002-11-03 00:38:21 +000096#ifndef __U_BOOT__
97#include <ctype.h> /* isalpha, isdigit */
98#include <unistd.h> /* getpid */
99#include <stdlib.h> /* getenv, atoi */
100#include <string.h> /* strchr */
101#include <stdio.h> /* popen etc. */
102#include <glob.h> /* glob, of course */
103#include <stdarg.h> /* va_list */
104#include <errno.h>
105#include <fcntl.h>
106#include <getopt.h> /* should be pretty obvious */
107
108#include <sys/stat.h> /* ulimit */
109#include <sys/types.h>
110#include <sys/wait.h>
111#include <signal.h>
112
113/* #include <dmalloc.h> */
wdenkfe8c2802002-11-03 00:38:21 +0000114
wdenkd0fb80c2003-01-11 09:48:40 +0000115#if 1
wdenkfe8c2802002-11-03 00:38:21 +0000116#include "busybox.h"
117#include "cmdedit.h"
118#else
119#define applet_name "hush"
120#include "standalone.h"
121#define hush_main main
wdenkd0fb80c2003-01-11 09:48:40 +0000122#undef CONFIG_FEATURE_SH_FANCY_PROMPT
123#define BB_BANNER
wdenkfe8c2802002-11-03 00:38:21 +0000124#endif
125#endif
126#define SPECIAL_VAR_SYMBOL 03
127#ifndef __U_BOOT__
128#define FLAG_EXIT_FROM_LOOP 1
129#define FLAG_PARSE_SEMICOLON (1 << 1) /* symbol ';' is special for parser */
130#define FLAG_REPARSING (1 << 2) /* >= 2nd pass */
131
132#endif
133
134#ifdef __U_BOOT__
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200135DECLARE_GLOBAL_DATA_PTR;
136
wdenkfe8c2802002-11-03 00:38:21 +0000137#define EXIT_SUCCESS 0
138#define EOF -1
139#define syntax() syntax_err()
140#define xstrdup strdup
141#define error_msg printf
142#else
143typedef enum {
144 REDIRECT_INPUT = 1,
145 REDIRECT_OVERWRITE = 2,
146 REDIRECT_APPEND = 3,
147 REDIRECT_HEREIS = 4,
148 REDIRECT_IO = 5
149} redir_type;
150
151/* The descrip member of this structure is only used to make debugging
152 * output pretty */
153struct {int mode; int default_fd; char *descrip;} redir_table[] = {
154 { 0, 0, "()" },
155 { O_RDONLY, 0, "<" },
156 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
157 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
158 { O_RDONLY, -1, "<<" },
159 { O_RDWR, 1, "<>" }
160};
161#endif
162
163typedef enum {
164 PIPE_SEQ = 1,
165 PIPE_AND = 2,
166 PIPE_OR = 3,
167 PIPE_BG = 4,
168} pipe_style;
169
170/* might eventually control execution */
171typedef enum {
172 RES_NONE = 0,
173 RES_IF = 1,
174 RES_THEN = 2,
175 RES_ELIF = 3,
176 RES_ELSE = 4,
177 RES_FI = 5,
178 RES_FOR = 6,
179 RES_WHILE = 7,
180 RES_UNTIL = 8,
181 RES_DO = 9,
182 RES_DONE = 10,
183 RES_XXXX = 11,
184 RES_IN = 12,
185 RES_SNTX = 13
186} reserved_style;
187#define FLAG_END (1<<RES_NONE)
188#define FLAG_IF (1<<RES_IF)
189#define FLAG_THEN (1<<RES_THEN)
190#define FLAG_ELIF (1<<RES_ELIF)
191#define FLAG_ELSE (1<<RES_ELSE)
192#define FLAG_FI (1<<RES_FI)
193#define FLAG_FOR (1<<RES_FOR)
194#define FLAG_WHILE (1<<RES_WHILE)
195#define FLAG_UNTIL (1<<RES_UNTIL)
196#define FLAG_DO (1<<RES_DO)
197#define FLAG_DONE (1<<RES_DONE)
198#define FLAG_IN (1<<RES_IN)
199#define FLAG_START (1<<RES_XXXX)
200
201/* This holds pointers to the various results of parsing */
202struct p_context {
203 struct child_prog *child;
204 struct pipe *list_head;
205 struct pipe *pipe;
206#ifndef __U_BOOT__
207 struct redir_struct *pending_redirect;
208#endif
209 reserved_style w;
210 int old_flag; /* for figuring out valid reserved words */
211 struct p_context *stack;
212 int type; /* define type of parser : ";$" common or special symbol */
213 /* How about quoting status? */
214};
215
216#ifndef __U_BOOT__
217struct redir_struct {
218 redir_type type; /* type of redirection */
219 int fd; /* file descriptor being redirected */
220 int dup; /* -1, or file descriptor being duplicated */
221 struct redir_struct *next; /* pointer to the next redirect in the list */
222 glob_t word; /* *word.gl_pathv is the filename */
223};
224#endif
225
226struct child_prog {
227#ifndef __U_BOOT__
228 pid_t pid; /* 0 if exited */
229#endif
230 char **argv; /* program name and arguments */
231#ifdef __U_BOOT__
232 int argc; /* number of program arguments */
233#endif
234 struct pipe *group; /* if non-NULL, first in group or subshell */
235#ifndef __U_BOOT__
236 int subshell; /* flag, non-zero if group must be forked */
237 struct redir_struct *redirects; /* I/O redirections */
238 glob_t glob_result; /* result of parameter globbing */
239 int is_stopped; /* is the program currently running? */
240 struct pipe *family; /* pointer back to the child's parent pipe */
241#endif
242 int sp; /* number of SPECIAL_VAR_SYMBOL */
243 int type;
244};
245
246struct pipe {
247#ifndef __U_BOOT__
248 int jobid; /* job number */
249#endif
250 int num_progs; /* total number of programs in job */
251#ifndef __U_BOOT__
252 int running_progs; /* number of programs running */
253 char *text; /* name of job */
254 char *cmdbuf; /* buffer various argv's point into */
255 pid_t pgrp; /* process group ID for the job */
256#endif
257 struct child_prog *progs; /* array of commands in pipe */
258 struct pipe *next; /* to track background commands */
259#ifndef __U_BOOT__
260 int stopped_progs; /* number of programs alive, but stopped */
261 int job_context; /* bitmask defining current context */
262#endif
263 pipe_style followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
264 reserved_style r_mode; /* supports if, for, while, until */
265};
266
267#ifndef __U_BOOT__
268struct close_me {
269 int fd;
270 struct close_me *next;
271};
272#endif
273
274struct variables {
275 char *name;
276 char *value;
277 int flg_export;
278 int flg_read_only;
279 struct variables *next;
280};
281
282/* globals, connect us to the outside world
283 * the first three support $?, $#, and $1 */
284#ifndef __U_BOOT__
285char **global_argv;
286unsigned int global_argc;
287#endif
288unsigned int last_return_code;
wdenkc26e4542004-04-18 10:13:26 +0000289int nesting_level;
wdenkfe8c2802002-11-03 00:38:21 +0000290#ifndef __U_BOOT__
291extern char **environ; /* This is in <unistd.h>, but protected with __USE_GNU */
292#endif
293
294/* "globals" within this file */
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200295static uchar *ifs;
wdenkfe8c2802002-11-03 00:38:21 +0000296static char map[256];
297#ifndef __U_BOOT__
298static int fake_mode;
299static int interactive;
300static struct close_me *close_me_head;
301static const char *cwd;
302static struct pipe *job_list;
303static unsigned int last_bg_pid;
304static unsigned int last_jobid;
305static unsigned int shell_terminal;
306static char *PS1;
307static char *PS2;
308struct variables shell_ver = { "HUSH_VERSION", "0.01", 1, 1, 0 };
309struct variables *top_vars = &shell_ver;
310#else
311static int flag_repeat = 0;
312static int do_repeat = 0;
wdenk2d5b5612003-10-14 19:43:55 +0000313static struct variables *top_vars = NULL ;
wdenkfe8c2802002-11-03 00:38:21 +0000314#endif /*__U_BOOT__ */
315
316#define B_CHUNK (100)
317#define B_NOSPAC 1
318
319typedef struct {
320 char *data;
321 int length;
322 int maxlen;
323 int quote;
324 int nonnull;
325} o_string;
326#define NULL_O_STRING {NULL,0,0,0,0}
327/* used for initialization:
328 o_string foo = NULL_O_STRING; */
329
330/* I can almost use ordinary FILE *. Is open_memstream() universally
331 * available? Where is it documented? */
332struct in_str {
333 const char *p;
334#ifndef __U_BOOT__
335 char peek_buf[2];
336#endif
337 int __promptme;
338 int promptmode;
339#ifndef __U_BOOT__
340 FILE *file;
341#endif
342 int (*get) (struct in_str *);
343 int (*peek) (struct in_str *);
344};
345#define b_getch(input) ((input)->get(input))
346#define b_peek(input) ((input)->peek(input))
347
348#ifndef __U_BOOT__
349#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
350
351struct built_in_command {
352 char *cmd; /* name */
353 char *descr; /* description */
354 int (*function) (struct child_prog *); /* function ptr */
355};
356#endif
357
Stefan Roese4cacf7c2008-08-19 14:57:55 +0200358/* define DEBUG_SHELL for debugging output (obviously ;-)) */
359#if 0
360#define DEBUG_SHELL
361#endif
362
wdenkfe8c2802002-11-03 00:38:21 +0000363/* This should be in utility.c */
364#ifdef DEBUG_SHELL
365#ifndef __U_BOOT__
366static void debug_printf(const char *format, ...)
367{
368 va_list args;
369 va_start(args, format);
370 vfprintf(stderr, format, args);
371 va_end(args);
372}
373#else
Stefan Roese4cacf7c2008-08-19 14:57:55 +0200374#define debug_printf(fmt,args...) printf (fmt ,##args)
wdenkfe8c2802002-11-03 00:38:21 +0000375#endif
376#else
377static inline void debug_printf(const char *format, ...) { }
378#endif
379#define final_printf debug_printf
380
381#ifdef __U_BOOT__
382static void syntax_err(void) {
383 printf("syntax error\n");
384}
385#else
386static void __syntax(char *file, int line) {
387 error_msg("syntax error %s:%d", file, line);
388}
389#define syntax() __syntax(__FILE__, __LINE__)
390#endif
391
392#ifdef __U_BOOT__
393static void *xmalloc(size_t size);
394static void *xrealloc(void *ptr, size_t size);
395#else
396/* Index of subroutines: */
397/* function prototypes for builtins */
398static int builtin_cd(struct child_prog *child);
399static int builtin_env(struct child_prog *child);
400static int builtin_eval(struct child_prog *child);
401static int builtin_exec(struct child_prog *child);
402static int builtin_exit(struct child_prog *child);
403static int builtin_export(struct child_prog *child);
404static int builtin_fg_bg(struct child_prog *child);
405static int builtin_help(struct child_prog *child);
406static int builtin_jobs(struct child_prog *child);
407static int builtin_pwd(struct child_prog *child);
408static int builtin_read(struct child_prog *child);
409static int builtin_set(struct child_prog *child);
410static int builtin_shift(struct child_prog *child);
411static int builtin_source(struct child_prog *child);
412static int builtin_umask(struct child_prog *child);
413static int builtin_unset(struct child_prog *child);
414static int builtin_not_written(struct child_prog *child);
415#endif
416/* o_string manipulation: */
417static int b_check_space(o_string *o, int len);
418static int b_addchr(o_string *o, int ch);
419static void b_reset(o_string *o);
420static int b_addqchr(o_string *o, int ch, int quote);
wdenkc26e4542004-04-18 10:13:26 +0000421#ifndef __U_BOOT__
wdenkfe8c2802002-11-03 00:38:21 +0000422static int b_adduint(o_string *o, unsigned int i);
wdenkc26e4542004-04-18 10:13:26 +0000423#endif
wdenkfe8c2802002-11-03 00:38:21 +0000424/* in_str manipulations: */
425static int static_get(struct in_str *i);
426static int static_peek(struct in_str *i);
427static int file_get(struct in_str *i);
428static int file_peek(struct in_str *i);
429#ifndef __U_BOOT__
430static void setup_file_in_str(struct in_str *i, FILE *f);
431#else
432static void setup_file_in_str(struct in_str *i);
433#endif
434static void setup_string_in_str(struct in_str *i, const char *s);
435#ifndef __U_BOOT__
436/* close_me manipulations: */
437static void mark_open(int fd);
438static void mark_closed(int fd);
wdenkd0fb80c2003-01-11 09:48:40 +0000439static void close_all(void);
wdenkfe8c2802002-11-03 00:38:21 +0000440#endif
441/* "run" the final data structures: */
442static char *indenter(int i);
443static int free_pipe_list(struct pipe *head, int indent);
444static int free_pipe(struct pipe *pi, int indent);
445/* really run the final data structures: */
446#ifndef __U_BOOT__
447static int setup_redirects(struct child_prog *prog, int squirrel[]);
448#endif
449static int run_list_real(struct pipe *pi);
450#ifndef __U_BOOT__
451static void pseudo_exec(struct child_prog *child) __attribute__ ((noreturn));
452#endif
453static int run_pipe_real(struct pipe *pi);
454/* extended glob support: */
455#ifndef __U_BOOT__
456static int globhack(const char *src, int flags, glob_t *pglob);
457static int glob_needed(const char *s);
458static int xglob(o_string *dest, int flags, glob_t *pglob);
459#endif
460/* variable assignment: */
461static int is_assignment(const char *s);
462/* data structure manipulation: */
463#ifndef __U_BOOT__
464static int setup_redirect(struct p_context *ctx, int fd, redir_type style, struct in_str *input);
465#endif
466static void initialize_context(struct p_context *ctx);
467static int done_word(o_string *dest, struct p_context *ctx);
468static int done_command(struct p_context *ctx);
469static int done_pipe(struct p_context *ctx, pipe_style type);
470/* primary string parsing: */
471#ifndef __U_BOOT__
472static int redirect_dup_num(struct in_str *input);
473static int redirect_opt_num(o_string *o);
474static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end);
475static int parse_group(o_string *dest, struct p_context *ctx, struct in_str *input, int ch);
476#endif
477static char *lookup_param(char *src);
478static char *make_string(char **inp);
479static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input);
480#ifndef __U_BOOT__
481static int parse_string(o_string *dest, struct p_context *ctx, const char *src);
482#endif
483static int parse_stream(o_string *dest, struct p_context *ctx, struct in_str *input0, int end_trigger);
484/* setup: */
485static int parse_stream_outer(struct in_str *inp, int flag);
486#ifndef __U_BOOT__
487static int parse_string_outer(const char *s, int flag);
488static int parse_file_outer(FILE *f);
489#endif
490#ifndef __U_BOOT__
491/* job management: */
492static int checkjobs(struct pipe* fg_pipe);
493static void insert_bg_job(struct pipe *pi);
494static void remove_bg_job(struct pipe *pi);
495#endif
496/* local variable support */
497static char **make_list_in(char **inp, char *name);
498static char *insert_var_value(char *inp);
wdenkfe8c2802002-11-03 00:38:21 +0000499
500#ifndef __U_BOOT__
501/* Table of built-in functions. They can be forked or not, depending on
502 * context: within pipes, they fork. As simple commands, they do not.
503 * When used in non-forking context, they can change global variables
504 * in the parent shell process. If forked, of course they can not.
505 * For example, 'unset foo | whatever' will parse and run, but foo will
506 * still be set at the end. */
507static struct built_in_command bltins[] = {
508 {"bg", "Resume a job in the background", builtin_fg_bg},
509 {"break", "Exit for, while or until loop", builtin_not_written},
510 {"cd", "Change working directory", builtin_cd},
511 {"continue", "Continue for, while or until loop", builtin_not_written},
512 {"env", "Print all environment variables", builtin_env},
513 {"eval", "Construct and run shell command", builtin_eval},
514 {"exec", "Exec command, replacing this shell with the exec'd process",
515 builtin_exec},
516 {"exit", "Exit from shell()", builtin_exit},
517 {"export", "Set environment variable", builtin_export},
518 {"fg", "Bring job into the foreground", builtin_fg_bg},
519 {"jobs", "Lists the active jobs", builtin_jobs},
520 {"pwd", "Print current directory", builtin_pwd},
521 {"read", "Input environment variable", builtin_read},
522 {"return", "Return from a function", builtin_not_written},
523 {"set", "Set/unset shell local variables", builtin_set},
524 {"shift", "Shift positional parameters", builtin_shift},
525 {"trap", "Trap signals", builtin_not_written},
526 {"ulimit","Controls resource limits", builtin_not_written},
527 {"umask","Sets file creation mask", builtin_umask},
528 {"unset", "Unset environment variable", builtin_unset},
529 {".", "Source-in and run commands in a file", builtin_source},
530 {"help", "List shell built-in commands", builtin_help},
531 {NULL, NULL, NULL}
532};
533
534static const char *set_cwd(void)
535{
536 if(cwd==unknown)
537 cwd = NULL; /* xgetcwd(arg) called free(arg) */
538 cwd = xgetcwd((char *)cwd);
539 if (!cwd)
540 cwd = unknown;
541 return cwd;
542}
543
544/* built-in 'eval' handler */
545static int builtin_eval(struct child_prog *child)
546{
547 char *str = NULL;
548 int rcode = EXIT_SUCCESS;
549
550 if (child->argv[1]) {
551 str = make_string(child->argv + 1);
552 parse_string_outer(str, FLAG_EXIT_FROM_LOOP |
553 FLAG_PARSE_SEMICOLON);
554 free(str);
555 rcode = last_return_code;
556 }
557 return rcode;
558}
559
560/* built-in 'cd <path>' handler */
561static int builtin_cd(struct child_prog *child)
562{
563 char *newdir;
564 if (child->argv[1] == NULL)
565 newdir = getenv("HOME");
566 else
567 newdir = child->argv[1];
568 if (chdir(newdir)) {
569 printf("cd: %s: %s\n", newdir, strerror(errno));
570 return EXIT_FAILURE;
571 }
572 set_cwd();
573 return EXIT_SUCCESS;
574}
575
576/* built-in 'env' handler */
577static int builtin_env(struct child_prog *dummy)
578{
579 char **e = environ;
580 if (e == NULL) return EXIT_FAILURE;
581 for (; *e; e++) {
582 puts(*e);
583 }
584 return EXIT_SUCCESS;
585}
586
587/* built-in 'exec' handler */
588static int builtin_exec(struct child_prog *child)
589{
590 if (child->argv[1] == NULL)
591 return EXIT_SUCCESS; /* Really? */
592 child->argv++;
593 pseudo_exec(child);
594 /* never returns */
595}
596
597/* built-in 'exit' handler */
598static int builtin_exit(struct child_prog *child)
599{
600 if (child->argv[1] == NULL)
601 exit(last_return_code);
602 exit (atoi(child->argv[1]));
603}
604
605/* built-in 'export VAR=value' handler */
606static int builtin_export(struct child_prog *child)
607{
608 int res = 0;
609 char *name = child->argv[1];
610
611 if (name == NULL) {
612 return (builtin_env(child));
613 }
614
615 name = strdup(name);
616
617 if(name) {
618 char *value = strchr(name, '=');
619
620 if (!value) {
621 char *tmp;
622 /* They are exporting something without an =VALUE */
623
624 value = get_local_var(name);
625 if (value) {
626 size_t ln = strlen(name);
627
628 tmp = realloc(name, ln+strlen(value)+2);
629 if(tmp==NULL)
630 res = -1;
631 else {
632 sprintf(tmp+ln, "=%s", value);
633 name = tmp;
634 }
635 } else {
636 /* bash does not return an error when trying to export
637 * an undefined variable. Do likewise. */
638 res = 1;
639 }
640 }
641 }
642 if (res<0)
643 perror_msg("export");
644 else if(res==0)
645 res = set_local_var(name, 1);
646 else
647 res = 0;
648 free(name);
649 return res;
650}
651
652/* built-in 'fg' and 'bg' handler */
653static int builtin_fg_bg(struct child_prog *child)
654{
655 int i, jobnum;
656 struct pipe *pi=NULL;
657
658 if (!interactive)
659 return EXIT_FAILURE;
660 /* If they gave us no args, assume they want the last backgrounded task */
661 if (!child->argv[1]) {
662 for (pi = job_list; pi; pi = pi->next) {
663 if (pi->jobid == last_jobid) {
664 break;
665 }
666 }
667 if (!pi) {
668 error_msg("%s: no current job", child->argv[0]);
669 return EXIT_FAILURE;
670 }
671 } else {
672 if (sscanf(child->argv[1], "%%%d", &jobnum) != 1) {
673 error_msg("%s: bad argument '%s'", child->argv[0], child->argv[1]);
674 return EXIT_FAILURE;
675 }
676 for (pi = job_list; pi; pi = pi->next) {
677 if (pi->jobid == jobnum) {
678 break;
679 }
680 }
681 if (!pi) {
682 error_msg("%s: %d: no such job", child->argv[0], jobnum);
683 return EXIT_FAILURE;
684 }
685 }
686
687 if (*child->argv[0] == 'f') {
688 /* Put the job into the foreground. */
689 tcsetpgrp(shell_terminal, pi->pgrp);
690 }
691
692 /* Restart the processes in the job */
693 for (i = 0; i < pi->num_progs; i++)
694 pi->progs[i].is_stopped = 0;
695
696 if ( (i=kill(- pi->pgrp, SIGCONT)) < 0) {
697 if (i == ESRCH) {
698 remove_bg_job(pi);
699 } else {
700 perror_msg("kill (SIGCONT)");
701 }
702 }
703
704 pi->stopped_progs = 0;
705 return EXIT_SUCCESS;
706}
707
708/* built-in 'help' handler */
709static int builtin_help(struct child_prog *dummy)
710{
711 struct built_in_command *x;
712
713 printf("\nBuilt-in commands:\n");
714 printf("-------------------\n");
715 for (x = bltins; x->cmd; x++) {
716 if (x->descr==NULL)
717 continue;
718 printf("%s\t%s\n", x->cmd, x->descr);
719 }
720 printf("\n\n");
721 return EXIT_SUCCESS;
722}
723
724/* built-in 'jobs' handler */
725static int builtin_jobs(struct child_prog *child)
726{
727 struct pipe *job;
728 char *status_string;
729
730 for (job = job_list; job; job = job->next) {
731 if (job->running_progs == job->stopped_progs)
732 status_string = "Stopped";
733 else
734 status_string = "Running";
735
736 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->text);
737 }
738 return EXIT_SUCCESS;
739}
740
741
742/* built-in 'pwd' handler */
743static int builtin_pwd(struct child_prog *dummy)
744{
745 puts(set_cwd());
746 return EXIT_SUCCESS;
747}
748
749/* built-in 'read VAR' handler */
750static int builtin_read(struct child_prog *child)
751{
752 int res;
753
754 if (child->argv[1]) {
755 char string[BUFSIZ];
756 char *var = 0;
757
758 string[0] = 0; /* In case stdin has only EOF */
759 /* read string */
760 fgets(string, sizeof(string), stdin);
761 chomp(string);
762 var = malloc(strlen(child->argv[1])+strlen(string)+2);
763 if(var) {
764 sprintf(var, "%s=%s", child->argv[1], string);
765 res = set_local_var(var, 0);
766 } else
767 res = -1;
768 if (res)
769 fprintf(stderr, "read: %m\n");
770 free(var); /* So not move up to avoid breaking errno */
771 return res;
772 } else {
773 do res=getchar(); while(res!='\n' && res!=EOF);
774 return 0;
775 }
776}
777
778/* built-in 'set VAR=value' handler */
779static int builtin_set(struct child_prog *child)
780{
781 char *temp = child->argv[1];
782 struct variables *e;
783
784 if (temp == NULL)
785 for(e = top_vars; e; e=e->next)
786 printf("%s=%s\n", e->name, e->value);
787 else
788 set_local_var(temp, 0);
789
790 return EXIT_SUCCESS;
791}
792
793
794/* Built-in 'shift' handler */
795static int builtin_shift(struct child_prog *child)
796{
797 int n=1;
798 if (child->argv[1]) {
799 n=atoi(child->argv[1]);
800 }
801 if (n>=0 && n<global_argc) {
802 /* XXX This probably breaks $0 */
803 global_argc -= n;
804 global_argv += n;
805 return EXIT_SUCCESS;
806 } else {
807 return EXIT_FAILURE;
808 }
809}
810
811/* Built-in '.' handler (read-in and execute commands from file) */
812static int builtin_source(struct child_prog *child)
813{
814 FILE *input;
815 int status;
816
817 if (child->argv[1] == NULL)
818 return EXIT_FAILURE;
819
820 /* XXX search through $PATH is missing */
821 input = fopen(child->argv[1], "r");
822 if (!input) {
823 error_msg("Couldn't open file '%s'", child->argv[1]);
824 return EXIT_FAILURE;
825 }
826
827 /* Now run the file */
828 /* XXX argv and argc are broken; need to save old global_argv
829 * (pointer only is OK!) on this stack frame,
830 * set global_argv=child->argv+1, recurse, and restore. */
831 mark_open(fileno(input));
832 status = parse_file_outer(input);
833 mark_closed(fileno(input));
834 fclose(input);
835 return (status);
836}
837
838static int builtin_umask(struct child_prog *child)
839{
840 mode_t new_umask;
841 const char *arg = child->argv[1];
842 char *end;
843 if (arg) {
844 new_umask=strtoul(arg, &end, 8);
845 if (*end!='\0' || end == arg) {
846 return EXIT_FAILURE;
847 }
848 } else {
849 printf("%.3o\n", (unsigned int) (new_umask=umask(0)));
850 }
851 umask(new_umask);
852 return EXIT_SUCCESS;
853}
854
855/* built-in 'unset VAR' handler */
856static int builtin_unset(struct child_prog *child)
857{
858 /* bash returned already true */
859 unset_local_var(child->argv[1]);
860 return EXIT_SUCCESS;
861}
862
863static int builtin_not_written(struct child_prog *child)
864{
865 printf("builtin_%s not written\n",child->argv[0]);
866 return EXIT_FAILURE;
867}
868#endif
869
870static int b_check_space(o_string *o, int len)
871{
872 /* It would be easy to drop a more restrictive policy
873 * in here, such as setting a maximum string length */
874 if (o->length + len > o->maxlen) {
875 char *old_data = o->data;
876 /* assert (data == NULL || o->maxlen != 0); */
877 o->maxlen += max(2*len, B_CHUNK);
878 o->data = realloc(o->data, 1 + o->maxlen);
879 if (o->data == NULL) {
880 free(old_data);
881 }
882 }
883 return o->data == NULL;
884}
885
886static int b_addchr(o_string *o, int ch)
887{
888 debug_printf("b_addchr: %c %d %p\n", ch, o->length, o);
889 if (b_check_space(o, 1)) return B_NOSPAC;
890 o->data[o->length] = ch;
891 o->length++;
892 o->data[o->length] = '\0';
893 return 0;
894}
895
896static void b_reset(o_string *o)
897{
898 o->length = 0;
899 o->nonnull = 0;
900 if (o->data != NULL) *o->data = '\0';
901}
902
903static void b_free(o_string *o)
904{
905 b_reset(o);
wdenkd0fb80c2003-01-11 09:48:40 +0000906 free(o->data);
wdenkfe8c2802002-11-03 00:38:21 +0000907 o->data = NULL;
908 o->maxlen = 0;
909}
910
911/* My analysis of quoting semantics tells me that state information
912 * is associated with a destination, not a source.
913 */
914static int b_addqchr(o_string *o, int ch, int quote)
915{
916 if (quote && strchr("*?[\\",ch)) {
917 int rc;
918 rc = b_addchr(o, '\\');
919 if (rc) return rc;
920 }
921 return b_addchr(o, ch);
922}
923
wdenkc26e4542004-04-18 10:13:26 +0000924#ifndef __U_BOOT__
wdenkfe8c2802002-11-03 00:38:21 +0000925static int b_adduint(o_string *o, unsigned int i)
926{
927 int r;
928 char *p = simple_itoa(i);
929 /* no escape checking necessary */
930 do r=b_addchr(o, *p++); while (r==0 && *p);
931 return r;
932}
wdenkc26e4542004-04-18 10:13:26 +0000933#endif
wdenkfe8c2802002-11-03 00:38:21 +0000934
935static int static_get(struct in_str *i)
936{
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200937 int ch = *i->p++;
wdenkfe8c2802002-11-03 00:38:21 +0000938 if (ch=='\0') return EOF;
939 return ch;
940}
941
942static int static_peek(struct in_str *i)
943{
944 return *i->p;
945}
946
947#ifndef __U_BOOT__
948static inline void cmdedit_set_initial_prompt(void)
949{
wdenkd0fb80c2003-01-11 09:48:40 +0000950#ifndef CONFIG_FEATURE_SH_FANCY_PROMPT
wdenkfe8c2802002-11-03 00:38:21 +0000951 PS1 = NULL;
952#else
953 PS1 = getenv("PS1");
954 if(PS1==0)
955 PS1 = "\\w \\$ ";
956#endif
957}
958
959static inline void setup_prompt_string(int promptmode, char **prompt_str)
960{
961 debug_printf("setup_prompt_string %d ",promptmode);
wdenkd0fb80c2003-01-11 09:48:40 +0000962#ifndef CONFIG_FEATURE_SH_FANCY_PROMPT
wdenkfe8c2802002-11-03 00:38:21 +0000963 /* Set up the prompt */
964 if (promptmode == 1) {
wdenkd0fb80c2003-01-11 09:48:40 +0000965 free(PS1);
wdenkfe8c2802002-11-03 00:38:21 +0000966 PS1=xmalloc(strlen(cwd)+4);
967 sprintf(PS1, "%s %s", cwd, ( geteuid() != 0 ) ? "$ ":"# ");
968 *prompt_str = PS1;
969 } else {
970 *prompt_str = PS2;
971 }
972#else
973 *prompt_str = (promptmode==1)? PS1 : PS2;
974#endif
975 debug_printf("result %s\n",*prompt_str);
976}
977#endif
978
979static void get_user_input(struct in_str *i)
980{
981#ifndef __U_BOOT__
982 char *prompt_str;
983 static char the_command[BUFSIZ];
984
985 setup_prompt_string(i->promptmode, &prompt_str);
wdenkd0fb80c2003-01-11 09:48:40 +0000986#ifdef CONFIG_FEATURE_COMMAND_EDITING
wdenkfe8c2802002-11-03 00:38:21 +0000987 /*
988 ** enable command line editing only while a command line
989 ** is actually being read; otherwise, we'll end up bequeathing
990 ** atexit() handlers and other unwanted stuff to our
991 ** child processes (rob@sysgo.de)
992 */
993 cmdedit_read_input(prompt_str, the_command);
994#else
995 fputs(prompt_str, stdout);
996 fflush(stdout);
997 the_command[0]=fgetc(i->file);
998 the_command[1]='\0';
999#endif
1000 fflush(stdout);
1001 i->p = the_command;
1002#else
wdenkfe8c2802002-11-03 00:38:21 +00001003 int n;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001004 static char the_command[CONFIG_SYS_CBSIZE];
wdenkfe8c2802002-11-03 00:38:21 +00001005
Wolfgang Denk396387a2005-08-12 23:34:51 +02001006#ifdef CONFIG_BOOT_RETRY_TIME
Mike Frysinger882b7d72010-10-20 03:41:17 -04001007# ifndef CONFIG_RESET_TO_RETRY
Wolfgang Denk396387a2005-08-12 23:34:51 +02001008# error "This currently only works with CONFIG_RESET_TO_RETRY enabled"
1009# endif
1010 reset_cmd_timeout();
1011#endif
wdenkfe8c2802002-11-03 00:38:21 +00001012 i->__promptme = 1;
1013 if (i->promptmode == 1) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001014 n = readline(CONFIG_SYS_PROMPT);
wdenkfe8c2802002-11-03 00:38:21 +00001015 } else {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001016 n = readline(CONFIG_SYS_PROMPT_HUSH_PS2);
wdenkfe8c2802002-11-03 00:38:21 +00001017 }
Wolfgang Denk396387a2005-08-12 23:34:51 +02001018#ifdef CONFIG_BOOT_RETRY_TIME
1019 if (n == -2) {
1020 puts("\nTimeout waiting for command\n");
1021# ifdef CONFIG_RESET_TO_RETRY
1022 do_reset(NULL, 0, 0, NULL);
1023# else
1024# error "This currently only works with CONFIG_RESET_TO_RETRY enabled"
1025# endif
1026 }
1027#endif
wdenkfe8c2802002-11-03 00:38:21 +00001028 if (n == -1 ) {
1029 flag_repeat = 0;
1030 i->__promptme = 0;
1031 }
1032 n = strlen(console_buffer);
1033 console_buffer[n] = '\n';
1034 console_buffer[n+1]= '\0';
1035 if (had_ctrlc()) flag_repeat = 0;
1036 clear_ctrlc();
1037 do_repeat = 0;
1038 if (i->promptmode == 1) {
1039 if (console_buffer[0] == '\n'&& flag_repeat == 0) {
1040 strcpy(the_command,console_buffer);
1041 }
1042 else {
1043 if (console_buffer[0] != '\n') {
1044 strcpy(the_command,console_buffer);
1045 flag_repeat = 1;
1046 }
1047 else {
1048 do_repeat = 1;
1049 }
1050 }
1051 i->p = the_command;
1052 }
1053 else {
wdenk8bde7f72003-06-27 21:31:46 +00001054 if (console_buffer[0] != '\n') {
1055 if (strlen(the_command) + strlen(console_buffer)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001056 < CONFIG_SYS_CBSIZE) {
wdenk8bde7f72003-06-27 21:31:46 +00001057 n = strlen(the_command);
1058 the_command[n-1] = ' ';
1059 strcpy(&the_command[n],console_buffer);
wdenkfe8c2802002-11-03 00:38:21 +00001060 }
1061 else {
1062 the_command[0] = '\n';
1063 the_command[1] = '\0';
1064 flag_repeat = 0;
1065 }
1066 }
1067 if (i->__promptme == 0) {
1068 the_command[0] = '\n';
1069 the_command[1] = '\0';
1070 }
1071 i->p = console_buffer;
1072 }
1073#endif
1074}
1075
1076/* This is the magic location that prints prompts
1077 * and gets data back from the user */
1078static int file_get(struct in_str *i)
1079{
1080 int ch;
1081
1082 ch = 0;
1083 /* If there is data waiting, eat it up */
1084 if (i->p && *i->p) {
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +02001085 ch = *i->p++;
wdenkfe8c2802002-11-03 00:38:21 +00001086 } else {
1087 /* need to double check i->file because we might be doing something
1088 * more complicated by now, like sourcing or substituting. */
1089#ifndef __U_BOOT__
1090 if (i->__promptme && interactive && i->file == stdin) {
1091 while(! i->p || (interactive && strlen(i->p)==0) ) {
1092#else
1093 while(! i->p || strlen(i->p)==0 ) {
1094#endif
1095 get_user_input(i);
1096 }
1097 i->promptmode=2;
1098#ifndef __U_BOOT__
1099 i->__promptme = 0;
1100#endif
1101 if (i->p && *i->p) {
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +02001102 ch = *i->p++;
wdenkfe8c2802002-11-03 00:38:21 +00001103 }
1104#ifndef __U_BOOT__
1105 } else {
1106 ch = fgetc(i->file);
1107 }
1108
1109#endif
1110 debug_printf("b_getch: got a %d\n", ch);
1111 }
1112#ifndef __U_BOOT__
1113 if (ch == '\n') i->__promptme=1;
1114#endif
1115 return ch;
1116}
1117
1118/* All the callers guarantee this routine will never be
1119 * used right after a newline, so prompting is not needed.
1120 */
1121static int file_peek(struct in_str *i)
1122{
1123#ifndef __U_BOOT__
1124 if (i->p && *i->p) {
1125#endif
1126 return *i->p;
1127#ifndef __U_BOOT__
1128 } else {
1129 i->peek_buf[0] = fgetc(i->file);
1130 i->peek_buf[1] = '\0';
1131 i->p = i->peek_buf;
1132 debug_printf("b_peek: got a %d\n", *i->p);
1133 return *i->p;
1134 }
1135#endif
1136}
1137
1138#ifndef __U_BOOT__
1139static void setup_file_in_str(struct in_str *i, FILE *f)
1140#else
1141static void setup_file_in_str(struct in_str *i)
1142#endif
1143{
1144 i->peek = file_peek;
1145 i->get = file_get;
1146 i->__promptme=1;
1147 i->promptmode=1;
1148#ifndef __U_BOOT__
1149 i->file = f;
1150#endif
1151 i->p = NULL;
1152}
1153
1154static void setup_string_in_str(struct in_str *i, const char *s)
1155{
1156 i->peek = static_peek;
1157 i->get = static_get;
1158 i->__promptme=1;
1159 i->promptmode=1;
1160 i->p = s;
1161}
1162
1163#ifndef __U_BOOT__
1164static void mark_open(int fd)
1165{
1166 struct close_me *new = xmalloc(sizeof(struct close_me));
1167 new->fd = fd;
1168 new->next = close_me_head;
1169 close_me_head = new;
1170}
1171
1172static void mark_closed(int fd)
1173{
1174 struct close_me *tmp;
1175 if (close_me_head == NULL || close_me_head->fd != fd)
1176 error_msg_and_die("corrupt close_me");
1177 tmp = close_me_head;
1178 close_me_head = close_me_head->next;
1179 free(tmp);
1180}
1181
wdenkd0fb80c2003-01-11 09:48:40 +00001182static void close_all(void)
wdenkfe8c2802002-11-03 00:38:21 +00001183{
1184 struct close_me *c;
1185 for (c=close_me_head; c; c=c->next) {
1186 close(c->fd);
1187 }
1188 close_me_head = NULL;
1189}
1190
1191/* squirrel != NULL means we squirrel away copies of stdin, stdout,
1192 * and stderr if they are redirected. */
1193static int setup_redirects(struct child_prog *prog, int squirrel[])
1194{
1195 int openfd, mode;
1196 struct redir_struct *redir;
1197
1198 for (redir=prog->redirects; redir; redir=redir->next) {
1199 if (redir->dup == -1 && redir->word.gl_pathv == NULL) {
1200 /* something went wrong in the parse. Pretend it didn't happen */
1201 continue;
1202 }
1203 if (redir->dup == -1) {
1204 mode=redir_table[redir->type].mode;
1205 openfd = open(redir->word.gl_pathv[0], mode, 0666);
1206 if (openfd < 0) {
1207 /* this could get lost if stderr has been redirected, but
1208 bash and ash both lose it as well (though zsh doesn't!) */
1209 perror_msg("error opening %s", redir->word.gl_pathv[0]);
1210 return 1;
1211 }
1212 } else {
1213 openfd = redir->dup;
1214 }
1215
1216 if (openfd != redir->fd) {
1217 if (squirrel && redir->fd < 3) {
1218 squirrel[redir->fd] = dup(redir->fd);
1219 }
1220 if (openfd == -3) {
1221 close(openfd);
1222 } else {
1223 dup2(openfd, redir->fd);
1224 if (redir->dup == -1)
1225 close (openfd);
1226 }
1227 }
1228 }
1229 return 0;
1230}
1231
1232static void restore_redirects(int squirrel[])
1233{
1234 int i, fd;
1235 for (i=0; i<3; i++) {
1236 fd = squirrel[i];
1237 if (fd != -1) {
1238 /* No error checking. I sure wouldn't know what
1239 * to do with an error if I found one! */
1240 dup2(fd, i);
1241 close(fd);
1242 }
1243 }
1244}
1245
1246/* never returns */
1247/* XXX no exit() here. If you don't exec, use _exit instead.
1248 * The at_exit handlers apparently confuse the calling process,
1249 * in particular stdin handling. Not sure why? */
1250static void pseudo_exec(struct child_prog *child)
1251{
1252 int i, rcode;
1253 char *p;
1254 struct built_in_command *x;
1255 if (child->argv) {
1256 for (i=0; is_assignment(child->argv[i]); i++) {
1257 debug_printf("pid %d environment modification: %s\n",getpid(),child->argv[i]);
1258 p = insert_var_value(child->argv[i]);
1259 putenv(strdup(p));
1260 if (p != child->argv[i]) free(p);
1261 }
1262 child->argv+=i; /* XXX this hack isn't so horrible, since we are about
wdenk8bde7f72003-06-27 21:31:46 +00001263 to exit, and therefore don't need to keep data
1264 structures consistent for free() use. */
wdenkfe8c2802002-11-03 00:38:21 +00001265 /* If a variable is assigned in a forest, and nobody listens,
1266 * was it ever really set?
1267 */
1268 if (child->argv[0] == NULL) {
1269 _exit(EXIT_SUCCESS);
1270 }
1271
1272 /*
1273 * Check if the command matches any of the builtins.
1274 * Depending on context, this might be redundant. But it's
1275 * easier to waste a few CPU cycles than it is to figure out
1276 * if this is one of those cases.
1277 */
1278 for (x = bltins; x->cmd; x++) {
1279 if (strcmp(child->argv[0], x->cmd) == 0 ) {
1280 debug_printf("builtin exec %s\n", child->argv[0]);
1281 rcode = x->function(child);
1282 fflush(stdout);
1283 _exit(rcode);
1284 }
1285 }
1286
1287 /* Check if the command matches any busybox internal commands
1288 * ("applets") here.
1289 * FIXME: This feature is not 100% safe, since
1290 * BusyBox is not fully reentrant, so we have no guarantee the things
1291 * from the .bss are still zeroed, or that things from .data are still
1292 * at their defaults. We could exec ourself from /proc/self/exe, but I
1293 * really dislike relying on /proc for things. We could exec ourself
1294 * from global_argv[0], but if we are in a chroot, we may not be able
1295 * to find ourself... */
wdenkd0fb80c2003-01-11 09:48:40 +00001296#ifdef CONFIG_FEATURE_SH_STANDALONE_SHELL
wdenkfe8c2802002-11-03 00:38:21 +00001297 {
1298 int argc_l;
1299 char** argv_l=child->argv;
1300 char *name = child->argv[0];
1301
wdenkd0fb80c2003-01-11 09:48:40 +00001302#ifdef CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN
wdenkfe8c2802002-11-03 00:38:21 +00001303 /* Following discussions from November 2000 on the busybox mailing
1304 * list, the default configuration, (without
1305 * get_last_path_component()) lets the user force use of an
1306 * external command by specifying the full (with slashes) filename.
wdenkd0fb80c2003-01-11 09:48:40 +00001307 * If you enable CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN then applets
wdenkfe8c2802002-11-03 00:38:21 +00001308 * _aways_ override external commands, so if you want to run
1309 * /bin/cat, it will use BusyBox cat even if /bin/cat exists on the
1310 * filesystem and is _not_ busybox. Some systems may want this,
1311 * most do not. */
1312 name = get_last_path_component(name);
1313#endif
1314 /* Count argc for use in a second... */
1315 for(argc_l=0;*argv_l!=NULL; argv_l++, argc_l++);
1316 optind = 1;
1317 debug_printf("running applet %s\n", name);
1318 run_applet_by_name(name, argc_l, child->argv);
1319 }
1320#endif
1321 debug_printf("exec of %s\n",child->argv[0]);
1322 execvp(child->argv[0],child->argv);
1323 perror_msg("couldn't exec: %s",child->argv[0]);
1324 _exit(1);
1325 } else if (child->group) {
1326 debug_printf("runtime nesting to group\n");
1327 interactive=0; /* crucial!!!! */
1328 rcode = run_list_real(child->group);
1329 /* OK to leak memory by not calling free_pipe_list,
1330 * since this process is about to exit */
1331 _exit(rcode);
1332 } else {
1333 /* Can happen. See what bash does with ">foo" by itself. */
1334 debug_printf("trying to pseudo_exec null command\n");
1335 _exit(EXIT_SUCCESS);
1336 }
1337}
1338
1339static void insert_bg_job(struct pipe *pi)
1340{
1341 struct pipe *thejob;
1342
1343 /* Linear search for the ID of the job to use */
1344 pi->jobid = 1;
1345 for (thejob = job_list; thejob; thejob = thejob->next)
1346 if (thejob->jobid >= pi->jobid)
1347 pi->jobid = thejob->jobid + 1;
1348
1349 /* add thejob to the list of running jobs */
1350 if (!job_list) {
1351 thejob = job_list = xmalloc(sizeof(*thejob));
1352 } else {
1353 for (thejob = job_list; thejob->next; thejob = thejob->next) /* nothing */;
1354 thejob->next = xmalloc(sizeof(*thejob));
1355 thejob = thejob->next;
1356 }
1357
1358 /* physically copy the struct job */
1359 memcpy(thejob, pi, sizeof(struct pipe));
1360 thejob->next = NULL;
1361 thejob->running_progs = thejob->num_progs;
1362 thejob->stopped_progs = 0;
1363 thejob->text = xmalloc(BUFSIZ); /* cmdedit buffer size */
1364
1365 /*if (pi->progs[0] && pi->progs[0].argv && pi->progs[0].argv[0]) */
1366 {
1367 char *bar=thejob->text;
1368 char **foo=pi->progs[0].argv;
1369 while(foo && *foo) {
1370 bar += sprintf(bar, "%s ", *foo++);
1371 }
1372 }
1373
1374 /* we don't wait for background thejobs to return -- append it
1375 to the list of backgrounded thejobs and leave it alone */
1376 printf("[%d] %d\n", thejob->jobid, thejob->progs[0].pid);
1377 last_bg_pid = thejob->progs[0].pid;
1378 last_jobid = thejob->jobid;
1379}
1380
1381/* remove a backgrounded job */
1382static void remove_bg_job(struct pipe *pi)
1383{
1384 struct pipe *prev_pipe;
1385
1386 if (pi == job_list) {
1387 job_list = pi->next;
1388 } else {
1389 prev_pipe = job_list;
1390 while (prev_pipe->next != pi)
1391 prev_pipe = prev_pipe->next;
1392 prev_pipe->next = pi->next;
1393 }
1394 if (job_list)
1395 last_jobid = job_list->jobid;
1396 else
1397 last_jobid = 0;
1398
1399 pi->stopped_progs = 0;
1400 free_pipe(pi, 0);
1401 free(pi);
1402}
1403
1404/* Checks to see if any processes have exited -- if they
1405 have, figure out why and see if a job has completed */
1406static int checkjobs(struct pipe* fg_pipe)
1407{
1408 int attributes;
1409 int status;
1410 int prognum = 0;
1411 struct pipe *pi;
1412 pid_t childpid;
1413
1414 attributes = WUNTRACED;
1415 if (fg_pipe==NULL) {
1416 attributes |= WNOHANG;
1417 }
1418
1419 while ((childpid = waitpid(-1, &status, attributes)) > 0) {
1420 if (fg_pipe) {
1421 int i, rcode = 0;
1422 for (i=0; i < fg_pipe->num_progs; i++) {
1423 if (fg_pipe->progs[i].pid == childpid) {
1424 if (i==fg_pipe->num_progs-1)
1425 rcode=WEXITSTATUS(status);
1426 (fg_pipe->num_progs)--;
1427 return(rcode);
1428 }
1429 }
1430 }
1431
1432 for (pi = job_list; pi; pi = pi->next) {
1433 prognum = 0;
1434 while (prognum < pi->num_progs && pi->progs[prognum].pid != childpid) {
1435 prognum++;
1436 }
1437 if (prognum < pi->num_progs)
1438 break;
1439 }
1440
1441 if(pi==NULL) {
1442 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
1443 continue;
1444 }
1445
1446 if (WIFEXITED(status) || WIFSIGNALED(status)) {
1447 /* child exited */
1448 pi->running_progs--;
1449 pi->progs[prognum].pid = 0;
1450
1451 if (!pi->running_progs) {
1452 printf(JOB_STATUS_FORMAT, pi->jobid, "Done", pi->text);
1453 remove_bg_job(pi);
1454 }
1455 } else {
1456 /* child stopped */
1457 pi->stopped_progs++;
1458 pi->progs[prognum].is_stopped = 1;
1459
1460#if 0
1461 /* Printing this stuff is a pain, since it tends to
1462 * overwrite the prompt an inconveinient moments. So
1463 * don't do that. */
1464 if (pi->stopped_progs == pi->num_progs) {
1465 printf("\n"JOB_STATUS_FORMAT, pi->jobid, "Stopped", pi->text);
1466 }
1467#endif
1468 }
1469 }
1470
1471 if (childpid == -1 && errno != ECHILD)
1472 perror_msg("waitpid");
1473
1474 /* move the shell to the foreground */
1475 /*if (interactive && tcsetpgrp(shell_terminal, getpgid(0))) */
1476 /* perror_msg("tcsetpgrp-2"); */
1477 return -1;
1478}
1479
1480/* Figure out our controlling tty, checking in order stderr,
1481 * stdin, and stdout. If check_pgrp is set, also check that
1482 * we belong to the foreground process group associated with
1483 * that tty. The value of shell_terminal is needed in order to call
1484 * tcsetpgrp(shell_terminal, ...); */
1485void controlling_tty(int check_pgrp)
1486{
1487 pid_t curpgrp;
1488
1489 if ((curpgrp = tcgetpgrp(shell_terminal = 2)) < 0
1490 && (curpgrp = tcgetpgrp(shell_terminal = 0)) < 0
1491 && (curpgrp = tcgetpgrp(shell_terminal = 1)) < 0)
1492 goto shell_terminal_error;
1493
1494 if (check_pgrp && curpgrp != getpgid(0))
1495 goto shell_terminal_error;
1496
1497 return;
1498
1499shell_terminal_error:
1500 shell_terminal = -1;
1501 return;
1502}
1503#endif
1504
1505/* run_pipe_real() starts all the jobs, but doesn't wait for anything
1506 * to finish. See checkjobs().
1507 *
1508 * return code is normally -1, when the caller has to wait for children
1509 * to finish to determine the exit status of the pipe. If the pipe
1510 * is a simple builtin command, however, the action is done by the
1511 * time run_pipe_real returns, and the exit code is provided as the
1512 * return value.
1513 *
1514 * The input of the pipe is always stdin, the output is always
1515 * stdout. The outpipe[] mechanism in BusyBox-0.48 lash is bogus,
1516 * because it tries to avoid running the command substitution in
1517 * subshell, when that is in fact necessary. The subshell process
1518 * now has its stdout directed to the input of the appropriate pipe,
1519 * so this routine is noticeably simpler.
1520 */
1521static int run_pipe_real(struct pipe *pi)
1522{
1523 int i;
1524#ifndef __U_BOOT__
1525 int nextin, nextout;
1526 int pipefds[2]; /* pipefds[0] is for reading */
1527 struct child_prog *child;
1528 struct built_in_command *x;
1529 char *p;
wdenkd0fb80c2003-01-11 09:48:40 +00001530# if __GNUC__
1531 /* Avoid longjmp clobbering */
1532 (void) &i;
1533 (void) &nextin;
1534 (void) &nextout;
1535 (void) &child;
1536# endif
wdenkfe8c2802002-11-03 00:38:21 +00001537#else
1538 int nextin;
1539 int flag = do_repeat ? CMD_FLAG_REPEAT : 0;
1540 struct child_prog *child;
1541 cmd_tbl_t *cmdtp;
1542 char *p;
wdenkd0fb80c2003-01-11 09:48:40 +00001543# if __GNUC__
1544 /* Avoid longjmp clobbering */
1545 (void) &i;
1546 (void) &nextin;
1547 (void) &child;
1548# endif
1549#endif /* __U_BOOT__ */
wdenkfe8c2802002-11-03 00:38:21 +00001550
1551 nextin = 0;
1552#ifndef __U_BOOT__
1553 pi->pgrp = -1;
1554#endif
1555
1556 /* Check if this is a simple builtin (not part of a pipe).
1557 * Builtins within pipes have to fork anyway, and are handled in
1558 * pseudo_exec. "echo foo | read bar" doesn't work on bash, either.
1559 */
1560 if (pi->num_progs == 1) child = & (pi->progs[0]);
1561#ifndef __U_BOOT__
1562 if (pi->num_progs == 1 && child->group && child->subshell == 0) {
1563 int squirrel[] = {-1, -1, -1};
1564 int rcode;
1565 debug_printf("non-subshell grouping\n");
1566 setup_redirects(child, squirrel);
1567 /* XXX could we merge code with following builtin case,
1568 * by creating a pseudo builtin that calls run_list_real? */
1569 rcode = run_list_real(child->group);
1570 restore_redirects(squirrel);
1571#else
1572 if (pi->num_progs == 1 && child->group) {
1573 int rcode;
1574 debug_printf("non-subshell grouping\n");
1575 rcode = run_list_real(child->group);
1576#endif
1577 return rcode;
1578 } else if (pi->num_progs == 1 && pi->progs[0].argv != NULL) {
1579 for (i=0; is_assignment(child->argv[i]); i++) { /* nothing */ }
1580 if (i!=0 && child->argv[i]==NULL) {
1581 /* assignments, but no command: set the local environment */
1582 for (i=0; child->argv[i]!=NULL; i++) {
1583
1584 /* Ok, this case is tricky. We have to decide if this is a
1585 * local variable, or an already exported variable. If it is
1586 * already exported, we have to export the new value. If it is
1587 * not exported, we need only set this as a local variable.
1588 * This junk is all to decide whether or not to export this
1589 * variable. */
1590 int export_me=0;
1591 char *name, *value;
1592 name = xstrdup(child->argv[i]);
1593 debug_printf("Local environment set: %s\n", name);
1594 value = strchr(name, '=');
1595 if (value)
1596 *value=0;
1597#ifndef __U_BOOT__
1598 if ( get_local_var(name)) {
1599 export_me=1;
1600 }
1601#endif
1602 free(name);
1603 p = insert_var_value(child->argv[i]);
1604 set_local_var(p, export_me);
1605 if (p != child->argv[i]) free(p);
1606 }
1607 return EXIT_SUCCESS; /* don't worry about errors in set_local_var() yet */
1608 }
1609 for (i = 0; is_assignment(child->argv[i]); i++) {
1610 p = insert_var_value(child->argv[i]);
1611#ifndef __U_BOOT__
1612 putenv(strdup(p));
1613#else
1614 set_local_var(p, 0);
1615#endif
1616 if (p != child->argv[i]) {
1617 child->sp--;
1618 free(p);
1619 }
1620 }
1621 if (child->sp) {
1622 char * str = NULL;
1623
1624 str = make_string((child->argv + i));
1625 parse_string_outer(str, FLAG_EXIT_FROM_LOOP | FLAG_REPARSING);
1626 free(str);
1627 return last_return_code;
1628 }
1629#ifndef __U_BOOT__
1630 for (x = bltins; x->cmd; x++) {
1631 if (strcmp(child->argv[i], x->cmd) == 0 ) {
1632 int squirrel[] = {-1, -1, -1};
1633 int rcode;
1634 if (x->function == builtin_exec && child->argv[i+1]==NULL) {
1635 debug_printf("magic exec\n");
1636 setup_redirects(child,NULL);
1637 return EXIT_SUCCESS;
1638 }
1639 debug_printf("builtin inline %s\n", child->argv[0]);
1640 /* XXX setup_redirects acts on file descriptors, not FILEs.
1641 * This is perfect for work that comes after exec().
1642 * Is it really safe for inline use? Experimentally,
1643 * things seem to work with glibc. */
1644 setup_redirects(child, squirrel);
1645#else
1646 /* check ";", because ,example , argv consist from
1647 * "help;flinfo" must not execute
1648 */
1649 if (strchr(child->argv[i], ';')) {
1650 printf ("Unknown command '%s' - try 'help' or use 'run' command\n",
1651 child->argv[i]);
1652 return -1;
1653 }
wdenk8bde7f72003-06-27 21:31:46 +00001654 /* Look up command in command table */
1655
1656
wdenkfe8c2802002-11-03 00:38:21 +00001657 if ((cmdtp = find_cmd(child->argv[i])) == NULL) {
1658 printf ("Unknown command '%s' - try 'help'\n", child->argv[i]);
1659 return -1; /* give up after bad command */
1660 } else {
1661 int rcode;
Jon Loeligerc3517f92007-07-08 18:10:08 -05001662#if defined(CONFIG_CMD_BOOTD)
wdenk8bde7f72003-06-27 21:31:46 +00001663 /* avoid "bootd" recursion */
wdenkfe8c2802002-11-03 00:38:21 +00001664 if (cmdtp->cmd == do_bootd) {
1665 if (flag & CMD_FLAG_BOOTD) {
1666 printf ("'bootd' recursion detected\n");
1667 return -1;
1668 }
1669 else
1670 flag |= CMD_FLAG_BOOTD;
1671 }
Jon Loeliger90253172007-07-10 11:02:44 -05001672#endif
wdenk8bde7f72003-06-27 21:31:46 +00001673 /* found - check max args */
Wolfgang Denk47e26b12010-07-17 01:06:04 +02001674 if ((child->argc - i) > cmdtp->maxargs)
1675 return cmd_usage(cmdtp);
wdenkfe8c2802002-11-03 00:38:21 +00001676#endif
1677 child->argv+=i; /* XXX horrible hack */
1678#ifndef __U_BOOT__
1679 rcode = x->function(child);
1680#else
1681 /* OK - call function to do the command */
Simon Glassbdf8e342012-02-14 19:59:23 +00001682 rcode = cmd_call(cmdtp, flag, child->argc-i,
1683 &child->argv[i]);
1684 if (!cmdtp->repeatable)
wdenkfe8c2802002-11-03 00:38:21 +00001685 flag_repeat = 0;
1686#endif
1687 child->argv-=i; /* XXX restore hack so free() can work right */
1688#ifndef __U_BOOT__
wdenk8bde7f72003-06-27 21:31:46 +00001689
wdenkfe8c2802002-11-03 00:38:21 +00001690 restore_redirects(squirrel);
1691#endif
wdenk8bde7f72003-06-27 21:31:46 +00001692
wdenkfe8c2802002-11-03 00:38:21 +00001693 return rcode;
1694 }
1695 }
1696#ifndef __U_BOOT__
1697 }
1698
1699 for (i = 0; i < pi->num_progs; i++) {
1700 child = & (pi->progs[i]);
1701
1702 /* pipes are inserted between pairs of commands */
1703 if ((i + 1) < pi->num_progs) {
1704 if (pipe(pipefds)<0) perror_msg_and_die("pipe");
1705 nextout = pipefds[1];
1706 } else {
1707 nextout=1;
1708 pipefds[0] = -1;
1709 }
1710
1711 /* XXX test for failed fork()? */
1712 if (!(child->pid = fork())) {
1713 /* Set the handling for job control signals back to the default. */
1714 signal(SIGINT, SIG_DFL);
1715 signal(SIGQUIT, SIG_DFL);
1716 signal(SIGTERM, SIG_DFL);
1717 signal(SIGTSTP, SIG_DFL);
1718 signal(SIGTTIN, SIG_DFL);
1719 signal(SIGTTOU, SIG_DFL);
1720 signal(SIGCHLD, SIG_DFL);
1721
1722 close_all();
1723
1724 if (nextin != 0) {
1725 dup2(nextin, 0);
1726 close(nextin);
1727 }
1728 if (nextout != 1) {
1729 dup2(nextout, 1);
1730 close(nextout);
1731 }
1732 if (pipefds[0]!=-1) {
1733 close(pipefds[0]); /* opposite end of our output pipe */
1734 }
1735
1736 /* Like bash, explicit redirects override pipes,
1737 * and the pipe fd is available for dup'ing. */
1738 setup_redirects(child,NULL);
1739
1740 if (interactive && pi->followup!=PIPE_BG) {
1741 /* If we (the child) win the race, put ourselves in the process
1742 * group whose leader is the first process in this pipe. */
1743 if (pi->pgrp < 0) {
1744 pi->pgrp = getpid();
1745 }
1746 if (setpgid(0, pi->pgrp) == 0) {
1747 tcsetpgrp(2, pi->pgrp);
1748 }
1749 }
1750
1751 pseudo_exec(child);
1752 }
1753
1754
1755 /* put our child in the process group whose leader is the
1756 first process in this pipe */
1757 if (pi->pgrp < 0) {
1758 pi->pgrp = child->pid;
1759 }
1760 /* Don't check for errors. The child may be dead already,
1761 * in which case setpgid returns error code EACCES. */
1762 setpgid(child->pid, pi->pgrp);
1763
1764 if (nextin != 0)
1765 close(nextin);
1766 if (nextout != 1)
1767 close(nextout);
1768
1769 /* If there isn't another process, nextin is garbage
1770 but it doesn't matter */
1771 nextin = pipefds[0];
1772 }
1773#endif
1774 return -1;
1775}
1776
1777static int run_list_real(struct pipe *pi)
1778{
1779 char *save_name = NULL;
1780 char **list = NULL;
1781 char **save_list = NULL;
1782 struct pipe *rpipe;
1783 int flag_rep = 0;
1784#ifndef __U_BOOT__
1785 int save_num_progs;
1786#endif
1787 int rcode=0, flag_skip=1;
1788 int flag_restore = 0;
1789 int if_code=0, next_if_code=0; /* need double-buffer to handle elif */
1790 reserved_style rmode, skip_more_in_this_rmode=RES_XXXX;
1791 /* check syntax for "for" */
1792 for (rpipe = pi; rpipe; rpipe = rpipe->next) {
1793 if ((rpipe->r_mode == RES_IN ||
1794 rpipe->r_mode == RES_FOR) &&
1795 (rpipe->next == NULL)) {
1796 syntax();
1797#ifdef __U_BOOT__
1798 flag_repeat = 0;
1799#endif
1800 return 1;
1801 }
1802 if ((rpipe->r_mode == RES_IN &&
1803 (rpipe->next->r_mode == RES_IN &&
1804 rpipe->next->progs->argv != NULL))||
1805 (rpipe->r_mode == RES_FOR &&
1806 rpipe->next->r_mode != RES_IN)) {
1807 syntax();
1808#ifdef __U_BOOT__
1809 flag_repeat = 0;
1810#endif
1811 return 1;
1812 }
1813 }
1814 for (; pi; pi = (flag_restore != 0) ? rpipe : pi->next) {
1815 if (pi->r_mode == RES_WHILE || pi->r_mode == RES_UNTIL ||
1816 pi->r_mode == RES_FOR) {
1817#ifdef __U_BOOT__
1818 /* check Ctrl-C */
1819 ctrlc();
1820 if ((had_ctrlc())) {
1821 return 1;
1822 }
1823#endif
1824 flag_restore = 0;
1825 if (!rpipe) {
1826 flag_rep = 0;
1827 rpipe = pi;
1828 }
1829 }
1830 rmode = pi->r_mode;
1831 debug_printf("rmode=%d if_code=%d next_if_code=%d skip_more=%d\n", rmode, if_code, next_if_code, skip_more_in_this_rmode);
1832 if (rmode == skip_more_in_this_rmode && flag_skip) {
1833 if (pi->followup == PIPE_SEQ) flag_skip=0;
1834 continue;
1835 }
1836 flag_skip = 1;
1837 skip_more_in_this_rmode = RES_XXXX;
1838 if (rmode == RES_THEN || rmode == RES_ELSE) if_code = next_if_code;
1839 if (rmode == RES_THEN && if_code) continue;
1840 if (rmode == RES_ELSE && !if_code) continue;
wdenk56b86bf2004-04-12 14:31:43 +00001841 if (rmode == RES_ELIF && !if_code) break;
wdenkfe8c2802002-11-03 00:38:21 +00001842 if (rmode == RES_FOR && pi->num_progs) {
1843 if (!list) {
1844 /* if no variable values after "in" we skip "for" */
1845 if (!pi->next->progs->argv) continue;
1846 /* create list of variable values */
1847 list = make_list_in(pi->next->progs->argv,
1848 pi->progs->argv[0]);
1849 save_list = list;
1850 save_name = pi->progs->argv[0];
1851 pi->progs->argv[0] = NULL;
1852 flag_rep = 1;
1853 }
1854 if (!(*list)) {
1855 free(pi->progs->argv[0]);
1856 free(save_list);
1857 list = NULL;
1858 flag_rep = 0;
1859 pi->progs->argv[0] = save_name;
1860#ifndef __U_BOOT__
1861 pi->progs->glob_result.gl_pathv[0] =
1862 pi->progs->argv[0];
1863#endif
1864 continue;
1865 } else {
1866 /* insert new value from list for variable */
1867 if (pi->progs->argv[0])
1868 free(pi->progs->argv[0]);
1869 pi->progs->argv[0] = *list++;
1870#ifndef __U_BOOT__
1871 pi->progs->glob_result.gl_pathv[0] =
1872 pi->progs->argv[0];
1873#endif
1874 }
1875 }
1876 if (rmode == RES_IN) continue;
1877 if (rmode == RES_DO) {
1878 if (!flag_rep) continue;
1879 }
1880 if ((rmode == RES_DONE)) {
1881 if (flag_rep) {
1882 flag_restore = 1;
1883 } else {
1884 rpipe = NULL;
1885 }
1886 }
1887 if (pi->num_progs == 0) continue;
1888#ifndef __U_BOOT__
1889 save_num_progs = pi->num_progs; /* save number of programs */
1890#endif
1891 rcode = run_pipe_real(pi);
1892 debug_printf("run_pipe_real returned %d\n",rcode);
1893#ifndef __U_BOOT__
1894 if (rcode!=-1) {
1895 /* We only ran a builtin: rcode was set by the return value
1896 * of run_pipe_real(), and we don't need to wait for anything. */
1897 } else if (pi->followup==PIPE_BG) {
1898 /* XXX check bash's behavior with nontrivial pipes */
1899 /* XXX compute jobid */
1900 /* XXX what does bash do with attempts to background builtins? */
1901 insert_bg_job(pi);
1902 rcode = EXIT_SUCCESS;
1903 } else {
1904 if (interactive) {
1905 /* move the new process group into the foreground */
1906 if (tcsetpgrp(shell_terminal, pi->pgrp) && errno != ENOTTY)
1907 perror_msg("tcsetpgrp-3");
1908 rcode = checkjobs(pi);
1909 /* move the shell to the foreground */
1910 if (tcsetpgrp(shell_terminal, getpgid(0)) && errno != ENOTTY)
1911 perror_msg("tcsetpgrp-4");
1912 } else {
1913 rcode = checkjobs(pi);
1914 }
1915 debug_printf("checkjobs returned %d\n",rcode);
1916 }
1917 last_return_code=rcode;
1918#else
wdenkc26e4542004-04-18 10:13:26 +00001919 if (rcode < -1) {
1920 last_return_code = -rcode - 2;
1921 return -2; /* exit */
1922 }
wdenkfe8c2802002-11-03 00:38:21 +00001923 last_return_code=(rcode == 0) ? 0 : 1;
1924#endif
1925#ifndef __U_BOOT__
1926 pi->num_progs = save_num_progs; /* restore number of programs */
1927#endif
1928 if ( rmode == RES_IF || rmode == RES_ELIF )
1929 next_if_code=rcode; /* can be overwritten a number of times */
1930 if (rmode == RES_WHILE)
1931 flag_rep = !last_return_code;
1932 if (rmode == RES_UNTIL)
1933 flag_rep = last_return_code;
1934 if ( (rcode==EXIT_SUCCESS && pi->followup==PIPE_OR) ||
1935 (rcode!=EXIT_SUCCESS && pi->followup==PIPE_AND) )
1936 skip_more_in_this_rmode=rmode;
1937#ifndef __U_BOOT__
1938 checkjobs(NULL);
1939#endif
1940 }
1941 return rcode;
1942}
1943
1944/* broken, of course, but OK for testing */
1945static char *indenter(int i)
1946{
1947 static char blanks[]=" ";
1948 return &blanks[sizeof(blanks)-i-1];
1949}
1950
1951/* return code is the exit status of the pipe */
1952static int free_pipe(struct pipe *pi, int indent)
1953{
1954 char **p;
1955 struct child_prog *child;
1956#ifndef __U_BOOT__
1957 struct redir_struct *r, *rnext;
1958#endif
1959 int a, i, ret_code=0;
1960 char *ind = indenter(indent);
1961
1962#ifndef __U_BOOT__
1963 if (pi->stopped_progs > 0)
1964 return ret_code;
1965 final_printf("%s run pipe: (pid %d)\n",ind,getpid());
1966#endif
1967 for (i=0; i<pi->num_progs; i++) {
1968 child = &pi->progs[i];
1969 final_printf("%s command %d:\n",ind,i);
1970 if (child->argv) {
1971 for (a=0,p=child->argv; *p; a++,p++) {
1972 final_printf("%s argv[%d] = %s\n",ind,a,*p);
1973 }
1974#ifndef __U_BOOT__
1975 globfree(&child->glob_result);
1976#else
Peter Tyser197324d2009-08-05 16:18:44 -05001977 for (a = 0; a < child->argc; a++) {
wdenk8bde7f72003-06-27 21:31:46 +00001978 free(child->argv[a]);
1979 }
wdenkfe8c2802002-11-03 00:38:21 +00001980 free(child->argv);
wdenk8bde7f72003-06-27 21:31:46 +00001981 child->argc = 0;
wdenkfe8c2802002-11-03 00:38:21 +00001982#endif
1983 child->argv=NULL;
1984 } else if (child->group) {
1985#ifndef __U_BOOT__
1986 final_printf("%s begin group (subshell:%d)\n",ind, child->subshell);
1987#endif
1988 ret_code = free_pipe_list(child->group,indent+3);
1989 final_printf("%s end group\n",ind);
1990 } else {
1991 final_printf("%s (nil)\n",ind);
1992 }
1993#ifndef __U_BOOT__
1994 for (r=child->redirects; r; r=rnext) {
1995 final_printf("%s redirect %d%s", ind, r->fd, redir_table[r->type].descrip);
1996 if (r->dup == -1) {
1997 /* guard against the case >$FOO, where foo is unset or blank */
1998 if (r->word.gl_pathv) {
1999 final_printf(" %s\n", *r->word.gl_pathv);
2000 globfree(&r->word);
2001 }
2002 } else {
2003 final_printf("&%d\n", r->dup);
2004 }
2005 rnext=r->next;
2006 free(r);
2007 }
2008 child->redirects=NULL;
2009#endif
2010 }
2011 free(pi->progs); /* children are an array, they get freed all at once */
2012 pi->progs=NULL;
2013 return ret_code;
2014}
2015
2016static int free_pipe_list(struct pipe *head, int indent)
2017{
2018 int rcode=0; /* if list has no members */
2019 struct pipe *pi, *next;
2020 char *ind = indenter(indent);
2021 for (pi=head; pi; pi=next) {
2022 final_printf("%s pipe reserved mode %d\n", ind, pi->r_mode);
2023 rcode = free_pipe(pi, indent);
2024 final_printf("%s pipe followup code %d\n", ind, pi->followup);
2025 next=pi->next;
2026 pi->next=NULL;
2027 free(pi);
2028 }
2029 return rcode;
2030}
2031
2032/* Select which version we will use */
2033static int run_list(struct pipe *pi)
2034{
2035 int rcode=0;
2036#ifndef __U_BOOT__
2037 if (fake_mode==0) {
2038#endif
2039 rcode = run_list_real(pi);
2040#ifndef __U_BOOT__
2041 }
2042#endif
2043 /* free_pipe_list has the side effect of clearing memory
2044 * In the long run that function can be merged with run_list_real,
2045 * but doing that now would hobble the debugging effort. */
2046 free_pipe_list(pi,0);
2047 return rcode;
2048}
2049
2050/* The API for glob is arguably broken. This routine pushes a non-matching
2051 * string into the output structure, removing non-backslashed backslashes.
2052 * If someone can prove me wrong, by performing this function within the
2053 * original glob(3) api, feel free to rewrite this routine into oblivion.
2054 * Return code (0 vs. GLOB_NOSPACE) matches glob(3).
2055 * XXX broken if the last character is '\\', check that before calling.
2056 */
2057#ifndef __U_BOOT__
2058static int globhack(const char *src, int flags, glob_t *pglob)
2059{
2060 int cnt=0, pathc;
2061 const char *s;
2062 char *dest;
2063 for (cnt=1, s=src; s && *s; s++) {
2064 if (*s == '\\') s++;
2065 cnt++;
2066 }
2067 dest = malloc(cnt);
2068 if (!dest) return GLOB_NOSPACE;
2069 if (!(flags & GLOB_APPEND)) {
2070 pglob->gl_pathv=NULL;
2071 pglob->gl_pathc=0;
2072 pglob->gl_offs=0;
2073 pglob->gl_offs=0;
2074 }
2075 pathc = ++pglob->gl_pathc;
2076 pglob->gl_pathv = realloc(pglob->gl_pathv, (pathc+1)*sizeof(*pglob->gl_pathv));
2077 if (pglob->gl_pathv == NULL) return GLOB_NOSPACE;
2078 pglob->gl_pathv[pathc-1]=dest;
2079 pglob->gl_pathv[pathc]=NULL;
2080 for (s=src; s && *s; s++, dest++) {
2081 if (*s == '\\') s++;
2082 *dest = *s;
2083 }
2084 *dest='\0';
2085 return 0;
2086}
2087
2088/* XXX broken if the last character is '\\', check that before calling */
2089static int glob_needed(const char *s)
2090{
2091 for (; *s; s++) {
2092 if (*s == '\\') s++;
2093 if (strchr("*[?",*s)) return 1;
2094 }
2095 return 0;
2096}
2097
2098#if 0
2099static void globprint(glob_t *pglob)
2100{
2101 int i;
2102 debug_printf("glob_t at %p:\n", pglob);
2103 debug_printf(" gl_pathc=%d gl_pathv=%p gl_offs=%d gl_flags=%d\n",
2104 pglob->gl_pathc, pglob->gl_pathv, pglob->gl_offs, pglob->gl_flags);
2105 for (i=0; i<pglob->gl_pathc; i++)
2106 debug_printf("pglob->gl_pathv[%d] = %p = %s\n", i,
2107 pglob->gl_pathv[i], pglob->gl_pathv[i]);
2108}
2109#endif
2110
2111static int xglob(o_string *dest, int flags, glob_t *pglob)
2112{
2113 int gr;
2114
wdenk8bde7f72003-06-27 21:31:46 +00002115 /* short-circuit for null word */
wdenkfe8c2802002-11-03 00:38:21 +00002116 /* we can code this better when the debug_printf's are gone */
wdenk8bde7f72003-06-27 21:31:46 +00002117 if (dest->length == 0) {
2118 if (dest->nonnull) {
2119 /* bash man page calls this an "explicit" null */
2120 gr = globhack(dest->data, flags, pglob);
2121 debug_printf("globhack returned %d\n",gr);
2122 } else {
wdenkfe8c2802002-11-03 00:38:21 +00002123 return 0;
2124 }
wdenk8bde7f72003-06-27 21:31:46 +00002125 } else if (glob_needed(dest->data)) {
wdenkfe8c2802002-11-03 00:38:21 +00002126 gr = glob(dest->data, flags, NULL, pglob);
2127 debug_printf("glob returned %d\n",gr);
2128 if (gr == GLOB_NOMATCH) {
2129 /* quote removal, or more accurately, backslash removal */
2130 gr = globhack(dest->data, flags, pglob);
2131 debug_printf("globhack returned %d\n",gr);
2132 }
2133 } else {
2134 gr = globhack(dest->data, flags, pglob);
2135 debug_printf("globhack returned %d\n",gr);
2136 }
2137 if (gr == GLOB_NOSPACE)
2138 error_msg_and_die("out of memory during glob");
2139 if (gr != 0) { /* GLOB_ABORTED ? */
2140 error_msg("glob(3) error %d",gr);
2141 }
2142 /* globprint(glob_target); */
2143 return gr;
2144}
2145#endif
2146
wdenkc26e4542004-04-18 10:13:26 +00002147#ifdef __U_BOOT__
2148static char *get_dollar_var(char ch);
2149#endif
2150
wdenkfe8c2802002-11-03 00:38:21 +00002151/* This is used to get/check local shell variables */
Holger Brunckeae3b062011-04-08 02:47:42 +00002152char *get_local_var(const char *s)
wdenkfe8c2802002-11-03 00:38:21 +00002153{
2154 struct variables *cur;
2155
2156 if (!s)
2157 return NULL;
wdenkc26e4542004-04-18 10:13:26 +00002158
2159#ifdef __U_BOOT__
2160 if (*s == '$')
2161 return get_dollar_var(s[1]);
2162#endif
2163
wdenkfe8c2802002-11-03 00:38:21 +00002164 for (cur = top_vars; cur; cur=cur->next)
2165 if(strcmp(cur->name, s)==0)
2166 return cur->value;
2167 return NULL;
2168}
2169
2170/* This is used to set local shell variables
2171 flg_export==0 if only local (not exporting) variable
2172 flg_export==1 if "new" exporting environ
2173 flg_export>1 if current startup environ (not call putenv()) */
Heiko Schocher81473f62008-10-15 09:40:28 +02002174int set_local_var(const char *s, int flg_export)
wdenkfe8c2802002-11-03 00:38:21 +00002175{
2176 char *name, *value;
2177 int result=0;
2178 struct variables *cur;
2179
wdenkc26e4542004-04-18 10:13:26 +00002180#ifdef __U_BOOT__
2181 /* might be possible! */
2182 if (!isalpha(*s))
2183 return -1;
2184#endif
2185
wdenkfe8c2802002-11-03 00:38:21 +00002186 name=strdup(s);
2187
2188#ifdef __U_BOOT__
2189 if (getenv(name) != NULL) {
2190 printf ("ERROR: "
wdenk2d1a5372004-02-23 19:30:57 +00002191 "There is a global environment variable with the same name.\n");
wdenkc26e4542004-04-18 10:13:26 +00002192 free(name);
wdenkfe8c2802002-11-03 00:38:21 +00002193 return -1;
2194 }
2195#endif
2196 /* Assume when we enter this function that we are already in
2197 * NAME=VALUE format. So the first order of business is to
2198 * split 's' on the '=' into 'name' and 'value' */
2199 value = strchr(name, '=');
2200 if (value==0 && ++value==0) {
2201 free(name);
2202 return -1;
2203 }
2204 *value++ = 0;
2205
2206 for(cur = top_vars; cur; cur = cur->next) {
2207 if(strcmp(cur->name, name)==0)
2208 break;
2209 }
2210
2211 if(cur) {
2212 if(strcmp(cur->value, value)==0) {
2213 if(flg_export>0 && cur->flg_export==0)
2214 cur->flg_export=flg_export;
2215 else
2216 result++;
2217 } else {
2218 if(cur->flg_read_only) {
2219 error_msg("%s: readonly variable", name);
2220 result = -1;
2221 } else {
2222 if(flg_export>0 || cur->flg_export>1)
2223 cur->flg_export=1;
2224 free(cur->value);
2225
2226 cur->value = strdup(value);
2227 }
2228 }
2229 } else {
2230 cur = malloc(sizeof(struct variables));
2231 if(!cur) {
2232 result = -1;
2233 } else {
2234 cur->name = strdup(name);
2235 if(cur->name == 0) {
2236 free(cur);
2237 result = -1;
2238 } else {
2239 struct variables *bottom = top_vars;
2240 cur->value = strdup(value);
2241 cur->next = 0;
2242 cur->flg_export = flg_export;
2243 cur->flg_read_only = 0;
2244 while(bottom->next) bottom=bottom->next;
2245 bottom->next = cur;
2246 }
2247 }
2248 }
2249
2250#ifndef __U_BOOT__
2251 if(result==0 && cur->flg_export==1) {
2252 *(value-1) = '=';
2253 result = putenv(name);
2254 } else {
2255#endif
2256 free(name);
2257#ifndef __U_BOOT__
2258 if(result>0) /* equivalent to previous set */
2259 result = 0;
2260 }
2261#endif
2262 return result;
2263}
2264
Heiko Schocher81473f62008-10-15 09:40:28 +02002265void unset_local_var(const char *name)
wdenkfe8c2802002-11-03 00:38:21 +00002266{
2267 struct variables *cur;
2268
2269 if (name) {
2270 for (cur = top_vars; cur; cur=cur->next) {
2271 if(strcmp(cur->name, name)==0)
2272 break;
2273 }
2274 if(cur!=0) {
2275 struct variables *next = top_vars;
2276 if(cur->flg_read_only) {
2277 error_msg("%s: readonly variable", name);
2278 return;
2279 } else {
Heiko Schocher81473f62008-10-15 09:40:28 +02002280#ifndef __U_BOOT__
wdenkfe8c2802002-11-03 00:38:21 +00002281 if(cur->flg_export)
2282 unsetenv(cur->name);
Heiko Schocher81473f62008-10-15 09:40:28 +02002283#endif
wdenkfe8c2802002-11-03 00:38:21 +00002284 free(cur->name);
2285 free(cur->value);
2286 while (next->next != cur)
2287 next = next->next;
2288 next->next = cur->next;
2289 }
2290 free(cur);
2291 }
2292 }
2293}
wdenkfe8c2802002-11-03 00:38:21 +00002294
2295static int is_assignment(const char *s)
2296{
wdenkc26e4542004-04-18 10:13:26 +00002297 if (s == NULL)
2298 return 0;
2299
2300 if (!isalpha(*s)) return 0;
wdenkfe8c2802002-11-03 00:38:21 +00002301 ++s;
2302 while(isalnum(*s) || *s=='_') ++s;
2303 return *s=='=';
2304}
2305
2306#ifndef __U_BOOT__
2307/* the src parameter allows us to peek forward to a possible &n syntax
2308 * for file descriptor duplication, e.g., "2>&1".
2309 * Return code is 0 normally, 1 if a syntax error is detected in src.
2310 * Resource errors (in xmalloc) cause the process to exit */
2311static int setup_redirect(struct p_context *ctx, int fd, redir_type style,
2312 struct in_str *input)
2313{
2314 struct child_prog *child=ctx->child;
2315 struct redir_struct *redir = child->redirects;
2316 struct redir_struct *last_redir=NULL;
2317
2318 /* Create a new redir_struct and drop it onto the end of the linked list */
2319 while(redir) {
2320 last_redir=redir;
2321 redir=redir->next;
2322 }
2323 redir = xmalloc(sizeof(struct redir_struct));
2324 redir->next=NULL;
2325 redir->word.gl_pathv=NULL;
2326 if (last_redir) {
2327 last_redir->next=redir;
2328 } else {
2329 child->redirects=redir;
2330 }
2331
2332 redir->type=style;
2333 redir->fd= (fd==-1) ? redir_table[style].default_fd : fd ;
2334
2335 debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
2336
2337 /* Check for a '2>&1' type redirect */
2338 redir->dup = redirect_dup_num(input);
2339 if (redir->dup == -2) return 1; /* syntax error */
2340 if (redir->dup != -1) {
2341 /* Erik had a check here that the file descriptor in question
2342 * is legit; I postpone that to "run time"
2343 * A "-" representation of "close me" shows up as a -3 here */
2344 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
2345 } else {
2346 /* We do _not_ try to open the file that src points to,
2347 * since we need to return and let src be expanded first.
2348 * Set ctx->pending_redirect, so we know what to do at the
2349 * end of the next parsed word.
2350 */
2351 ctx->pending_redirect = redir;
2352 }
2353 return 0;
2354}
2355#endif
2356
2357struct pipe *new_pipe(void) {
2358 struct pipe *pi;
2359 pi = xmalloc(sizeof(struct pipe));
2360 pi->num_progs = 0;
2361 pi->progs = NULL;
2362 pi->next = NULL;
2363 pi->followup = 0; /* invalid */
Wolfgang Denke98f68b2005-09-28 01:49:47 +02002364 pi->r_mode = RES_NONE;
wdenkfe8c2802002-11-03 00:38:21 +00002365 return pi;
2366}
2367
2368static void initialize_context(struct p_context *ctx)
2369{
2370 ctx->pipe=NULL;
2371#ifndef __U_BOOT__
2372 ctx->pending_redirect=NULL;
2373#endif
2374 ctx->child=NULL;
2375 ctx->list_head=new_pipe();
2376 ctx->pipe=ctx->list_head;
2377 ctx->w=RES_NONE;
2378 ctx->stack=NULL;
2379#ifdef __U_BOOT__
2380 ctx->old_flag=0;
2381#endif
2382 done_command(ctx); /* creates the memory for working child */
2383}
2384
2385/* normal return is 0
2386 * if a reserved word is found, and processed, return 1
2387 * should handle if, then, elif, else, fi, for, while, until, do, done.
2388 * case, function, and select are obnoxious, save those for later.
2389 */
wdenk3e386912003-04-05 00:53:31 +00002390struct reserved_combo {
2391 char *literal;
2392 int code;
2393 long flag;
2394};
2395/* Mostly a list of accepted follow-up reserved words.
2396 * FLAG_END means we are done with the sequence, and are ready
2397 * to turn the compound list into a command.
2398 * FLAG_START means the word must start a new compound list.
2399 */
2400static struct reserved_combo reserved_list[] = {
2401 { "if", RES_IF, FLAG_THEN | FLAG_START },
2402 { "then", RES_THEN, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
2403 { "elif", RES_ELIF, FLAG_THEN },
2404 { "else", RES_ELSE, FLAG_FI },
2405 { "fi", RES_FI, FLAG_END },
2406 { "for", RES_FOR, FLAG_IN | FLAG_START },
2407 { "while", RES_WHILE, FLAG_DO | FLAG_START },
2408 { "until", RES_UNTIL, FLAG_DO | FLAG_START },
2409 { "in", RES_IN, FLAG_DO },
2410 { "do", RES_DO, FLAG_DONE },
2411 { "done", RES_DONE, FLAG_END }
2412};
2413#define NRES (sizeof(reserved_list)/sizeof(struct reserved_combo))
2414
wdenkfe8c2802002-11-03 00:38:21 +00002415int reserved_word(o_string *dest, struct p_context *ctx)
2416{
wdenkfe8c2802002-11-03 00:38:21 +00002417 struct reserved_combo *r;
2418 for (r=reserved_list;
wdenkfe8c2802002-11-03 00:38:21 +00002419 r<reserved_list+NRES; r++) {
2420 if (strcmp(dest->data, r->literal) == 0) {
2421 debug_printf("found reserved word %s, code %d\n",r->literal,r->code);
2422 if (r->flag & FLAG_START) {
2423 struct p_context *new = xmalloc(sizeof(struct p_context));
2424 debug_printf("push stack\n");
2425 if (ctx->w == RES_IN || ctx->w == RES_FOR) {
2426 syntax();
2427 free(new);
2428 ctx->w = RES_SNTX;
2429 b_reset(dest);
2430 return 1;
2431 }
2432 *new = *ctx; /* physical copy */
2433 initialize_context(ctx);
2434 ctx->stack=new;
2435 } else if ( ctx->w == RES_NONE || ! (ctx->old_flag & (1<<r->code))) {
2436 syntax();
2437 ctx->w = RES_SNTX;
2438 b_reset(dest);
2439 return 1;
2440 }
2441 ctx->w=r->code;
2442 ctx->old_flag = r->flag;
2443 if (ctx->old_flag & FLAG_END) {
2444 struct p_context *old;
2445 debug_printf("pop stack\n");
2446 done_pipe(ctx,PIPE_SEQ);
2447 old = ctx->stack;
2448 old->child->group = ctx->list_head;
2449#ifndef __U_BOOT__
2450 old->child->subshell = 0;
2451#endif
2452 *ctx = *old; /* physical copy */
2453 free(old);
2454 }
2455 b_reset (dest);
2456 return 1;
2457 }
2458 }
2459 return 0;
2460}
2461
2462/* normal return is 0.
2463 * Syntax or xglob errors return 1. */
2464static int done_word(o_string *dest, struct p_context *ctx)
2465{
2466 struct child_prog *child=ctx->child;
2467#ifndef __U_BOOT__
2468 glob_t *glob_target;
2469 int gr, flags = 0;
2470#else
2471 char *str, *s;
2472 int argc, cnt;
2473#endif
2474
2475 debug_printf("done_word: %s %p\n", dest->data, child);
2476 if (dest->length == 0 && !dest->nonnull) {
2477 debug_printf(" true null, ignored\n");
2478 return 0;
2479 }
2480#ifndef __U_BOOT__
2481 if (ctx->pending_redirect) {
2482 glob_target = &ctx->pending_redirect->word;
2483 } else {
2484#endif
2485 if (child->group) {
2486 syntax();
2487 return 1; /* syntax error, groups and arglists don't mix */
2488 }
2489 if (!child->argv && (ctx->type & FLAG_PARSE_SEMICOLON)) {
2490 debug_printf("checking %s for reserved-ness\n",dest->data);
2491 if (reserved_word(dest,ctx)) return ctx->w==RES_SNTX;
2492 }
2493#ifndef __U_BOOT__
2494 glob_target = &child->glob_result;
wdenk8bde7f72003-06-27 21:31:46 +00002495 if (child->argv) flags |= GLOB_APPEND;
wdenkfe8c2802002-11-03 00:38:21 +00002496#else
2497 for (cnt = 1, s = dest->data; s && *s; s++) {
2498 if (*s == '\\') s++;
2499 cnt++;
2500 }
2501 str = malloc(cnt);
2502 if (!str) return 1;
2503 if ( child->argv == NULL) {
2504 child->argc=0;
2505 }
2506 argc = ++child->argc;
2507 child->argv = realloc(child->argv, (argc+1)*sizeof(*child->argv));
2508 if (child->argv == NULL) return 1;
2509 child->argv[argc-1]=str;
2510 child->argv[argc]=NULL;
2511 for (s = dest->data; s && *s; s++,str++) {
2512 if (*s == '\\') s++;
2513 *str = *s;
2514 }
2515 *str = '\0';
2516#endif
2517#ifndef __U_BOOT__
2518 }
2519 gr = xglob(dest, flags, glob_target);
2520 if (gr != 0) return 1;
2521#endif
2522
2523 b_reset(dest);
2524#ifndef __U_BOOT__
2525 if (ctx->pending_redirect) {
2526 ctx->pending_redirect=NULL;
2527 if (glob_target->gl_pathc != 1) {
2528 error_msg("ambiguous redirect");
2529 return 1;
2530 }
2531 } else {
2532 child->argv = glob_target->gl_pathv;
2533 }
2534#endif
2535 if (ctx->w == RES_FOR) {
2536 done_word(dest,ctx);
2537 done_pipe(ctx,PIPE_SEQ);
2538 }
2539 return 0;
2540}
2541
2542/* The only possible error here is out of memory, in which case
2543 * xmalloc exits. */
2544static int done_command(struct p_context *ctx)
2545{
2546 /* The child is really already in the pipe structure, so
2547 * advance the pipe counter and make a new, null child.
2548 * Only real trickiness here is that the uncommitted
2549 * child structure, to which ctx->child points, is not
2550 * counted in pi->num_progs. */
2551 struct pipe *pi=ctx->pipe;
2552 struct child_prog *prog=ctx->child;
2553
2554 if (prog && prog->group == NULL
wdenk8bde7f72003-06-27 21:31:46 +00002555 && prog->argv == NULL
wdenkfe8c2802002-11-03 00:38:21 +00002556#ifndef __U_BOOT__
wdenk8bde7f72003-06-27 21:31:46 +00002557 && prog->redirects == NULL) {
wdenkfe8c2802002-11-03 00:38:21 +00002558#else
2559 ) {
2560#endif
2561 debug_printf("done_command: skipping null command\n");
2562 return 0;
2563 } else if (prog) {
2564 pi->num_progs++;
2565 debug_printf("done_command: num_progs incremented to %d\n",pi->num_progs);
2566 } else {
2567 debug_printf("done_command: initializing\n");
2568 }
2569 pi->progs = xrealloc(pi->progs, sizeof(*pi->progs) * (pi->num_progs+1));
2570
2571 prog = pi->progs + pi->num_progs;
2572#ifndef __U_BOOT__
2573 prog->redirects = NULL;
2574#endif
2575 prog->argv = NULL;
2576#ifndef __U_BOOT__
2577 prog->is_stopped = 0;
2578#endif
2579 prog->group = NULL;
2580#ifndef __U_BOOT__
2581 prog->glob_result.gl_pathv = NULL;
2582 prog->family = pi;
2583#endif
2584 prog->sp = 0;
2585 ctx->child = prog;
2586 prog->type = ctx->type;
2587
2588 /* but ctx->pipe and ctx->list_head remain unchanged */
2589 return 0;
2590}
2591
2592static int done_pipe(struct p_context *ctx, pipe_style type)
2593{
2594 struct pipe *new_p;
2595 done_command(ctx); /* implicit closure of previous command */
2596 debug_printf("done_pipe, type %d\n", type);
2597 ctx->pipe->followup = type;
2598 ctx->pipe->r_mode = ctx->w;
2599 new_p=new_pipe();
2600 ctx->pipe->next = new_p;
2601 ctx->pipe = new_p;
2602 ctx->child = NULL;
2603 done_command(ctx); /* set up new pipe to accept commands */
2604 return 0;
2605}
2606
2607#ifndef __U_BOOT__
2608/* peek ahead in the in_str to find out if we have a "&n" construct,
2609 * as in "2>&1", that represents duplicating a file descriptor.
2610 * returns either -2 (syntax error), -1 (no &), or the number found.
2611 */
2612static int redirect_dup_num(struct in_str *input)
2613{
2614 int ch, d=0, ok=0;
2615 ch = b_peek(input);
2616 if (ch != '&') return -1;
2617
2618 b_getch(input); /* get the & */
2619 ch=b_peek(input);
2620 if (ch == '-') {
2621 b_getch(input);
2622 return -3; /* "-" represents "close me" */
2623 }
2624 while (isdigit(ch)) {
2625 d = d*10+(ch-'0');
2626 ok=1;
2627 b_getch(input);
2628 ch = b_peek(input);
2629 }
2630 if (ok) return d;
2631
2632 error_msg("ambiguous redirect");
2633 return -2;
2634}
2635
2636/* If a redirect is immediately preceded by a number, that number is
2637 * supposed to tell which file descriptor to redirect. This routine
2638 * looks for such preceding numbers. In an ideal world this routine
2639 * needs to handle all the following classes of redirects...
2640 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
2641 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
2642 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
2643 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
2644 * A -1 output from this program means no valid number was found, so the
2645 * caller should use the appropriate default for this redirection.
2646 */
2647static int redirect_opt_num(o_string *o)
2648{
2649 int num;
2650
2651 if (o->length==0) return -1;
2652 for(num=0; num<o->length; num++) {
2653 if (!isdigit(*(o->data+num))) {
2654 return -1;
2655 }
2656 }
2657 /* reuse num (and save an int) */
2658 num=atoi(o->data);
2659 b_reset(o);
2660 return num;
2661}
2662
2663FILE *generate_stream_from_list(struct pipe *head)
2664{
2665 FILE *pf;
2666#if 1
2667 int pid, channel[2];
2668 if (pipe(channel)<0) perror_msg_and_die("pipe");
2669 pid=fork();
2670 if (pid<0) {
2671 perror_msg_and_die("fork");
2672 } else if (pid==0) {
2673 close(channel[0]);
2674 if (channel[1] != 1) {
2675 dup2(channel[1],1);
2676 close(channel[1]);
2677 }
2678#if 0
2679#define SURROGATE "surrogate response"
2680 write(1,SURROGATE,sizeof(SURROGATE));
2681 _exit(run_list(head));
2682#else
2683 _exit(run_list_real(head)); /* leaks memory */
2684#endif
2685 }
2686 debug_printf("forked child %d\n",pid);
2687 close(channel[1]);
2688 pf = fdopen(channel[0],"r");
2689 debug_printf("pipe on FILE *%p\n",pf);
2690#else
2691 free_pipe_list(head,0);
2692 pf=popen("echo surrogate response","r");
2693 debug_printf("started fake pipe on FILE *%p\n",pf);
2694#endif
2695 return pf;
2696}
2697
2698/* this version hacked for testing purposes */
2699/* return code is exit status of the process that is run. */
2700static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end)
2701{
2702 int retcode;
2703 o_string result=NULL_O_STRING;
2704 struct p_context inner;
2705 FILE *p;
2706 struct in_str pipe_str;
2707 initialize_context(&inner);
2708
2709 /* recursion to generate command */
2710 retcode = parse_stream(&result, &inner, input, subst_end);
2711 if (retcode != 0) return retcode; /* syntax error or EOF */
2712 done_word(&result, &inner);
2713 done_pipe(&inner, PIPE_SEQ);
2714 b_free(&result);
2715
2716 p=generate_stream_from_list(inner.list_head);
2717 if (p==NULL) return 1;
2718 mark_open(fileno(p));
2719 setup_file_in_str(&pipe_str, p);
2720
2721 /* now send results of command back into original context */
2722 retcode = parse_stream(dest, ctx, &pipe_str, '\0');
2723 /* XXX In case of a syntax error, should we try to kill the child?
2724 * That would be tough to do right, so just read until EOF. */
2725 if (retcode == 1) {
2726 while (b_getch(&pipe_str)!=EOF) { /* discard */ };
2727 }
2728
2729 debug_printf("done reading from pipe, pclose()ing\n");
2730 /* This is the step that wait()s for the child. Should be pretty
2731 * safe, since we just read an EOF from its stdout. We could try
2732 * to better, by using wait(), and keeping track of background jobs
2733 * at the same time. That would be a lot of work, and contrary
2734 * to the KISS philosophy of this program. */
2735 mark_closed(fileno(p));
2736 retcode=pclose(p);
2737 free_pipe_list(inner.list_head,0);
2738 debug_printf("pclosed, retcode=%d\n",retcode);
2739 /* XXX this process fails to trim a single trailing newline */
2740 return retcode;
2741}
2742
2743static int parse_group(o_string *dest, struct p_context *ctx,
2744 struct in_str *input, int ch)
2745{
2746 int rcode, endch=0;
2747 struct p_context sub;
2748 struct child_prog *child = ctx->child;
2749 if (child->argv) {
2750 syntax();
2751 return 1; /* syntax error, groups and arglists don't mix */
2752 }
2753 initialize_context(&sub);
2754 switch(ch) {
2755 case '(': endch=')'; child->subshell=1; break;
2756 case '{': endch='}'; break;
2757 default: syntax(); /* really logic error */
2758 }
2759 rcode=parse_stream(dest,&sub,input,endch);
2760 done_word(dest,&sub); /* finish off the final word in the subcontext */
2761 done_pipe(&sub, PIPE_SEQ); /* and the final command there, too */
2762 child->group = sub.list_head;
2763 return rcode;
2764 /* child remains "open", available for possible redirects */
2765}
2766#endif
2767
2768/* basically useful version until someone wants to get fancier,
2769 * see the bash man page under "Parameter Expansion" */
2770static char *lookup_param(char *src)
2771{
wdenkc26e4542004-04-18 10:13:26 +00002772 char *p;
2773
2774 if (!src)
2775 return NULL;
2776
wdenkfe8c2802002-11-03 00:38:21 +00002777 p = getenv(src);
2778 if (!p)
2779 p = get_local_var(src);
wdenkc26e4542004-04-18 10:13:26 +00002780
wdenkfe8c2802002-11-03 00:38:21 +00002781 return p;
2782}
2783
wdenkc26e4542004-04-18 10:13:26 +00002784#ifdef __U_BOOT__
2785static char *get_dollar_var(char ch)
2786{
2787 static char buf[40];
2788
2789 buf[0] = '\0';
2790 switch (ch) {
2791 case '?':
2792 sprintf(buf, "%u", (unsigned int)last_return_code);
2793 break;
2794 default:
2795 return NULL;
2796 }
2797 return buf;
2798}
2799#endif
2800
wdenkfe8c2802002-11-03 00:38:21 +00002801/* return code: 0 for OK, 1 for syntax error */
2802static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input)
2803{
2804#ifndef __U_BOOT__
2805 int i, advance=0;
2806#else
2807 int advance=0;
2808#endif
2809#ifndef __U_BOOT__
2810 char sep[]=" ";
2811#endif
2812 int ch = input->peek(input); /* first character after the $ */
2813 debug_printf("handle_dollar: ch=%c\n",ch);
2814 if (isalpha(ch)) {
2815 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2816 ctx->child->sp++;
2817 while(ch=b_peek(input),isalnum(ch) || ch=='_') {
2818 b_getch(input);
2819 b_addchr(dest,ch);
2820 }
2821 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2822#ifndef __U_BOOT__
2823 } else if (isdigit(ch)) {
2824 i = ch-'0'; /* XXX is $0 special? */
2825 if (i<global_argc) {
2826 parse_string(dest, ctx, global_argv[i]); /* recursion */
2827 }
2828 advance = 1;
2829#endif
2830 } else switch (ch) {
2831#ifndef __U_BOOT__
2832 case '$':
2833 b_adduint(dest,getpid());
2834 advance = 1;
2835 break;
2836 case '!':
2837 if (last_bg_pid > 0) b_adduint(dest, last_bg_pid);
2838 advance = 1;
2839 break;
2840#endif
2841 case '?':
wdenkc26e4542004-04-18 10:13:26 +00002842#ifndef __U_BOOT__
wdenkfe8c2802002-11-03 00:38:21 +00002843 b_adduint(dest,last_return_code);
wdenkc26e4542004-04-18 10:13:26 +00002844#else
2845 ctx->child->sp++;
2846 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2847 b_addchr(dest, '$');
2848 b_addchr(dest, '?');
2849 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2850#endif
wdenkfe8c2802002-11-03 00:38:21 +00002851 advance = 1;
2852 break;
2853#ifndef __U_BOOT__
2854 case '#':
2855 b_adduint(dest,global_argc ? global_argc-1 : 0);
2856 advance = 1;
2857 break;
2858#endif
2859 case '{':
2860 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2861 ctx->child->sp++;
2862 b_getch(input);
2863 /* XXX maybe someone will try to escape the '}' */
2864 while(ch=b_getch(input),ch!=EOF && ch!='}') {
2865 b_addchr(dest,ch);
2866 }
2867 if (ch != '}') {
2868 syntax();
2869 return 1;
2870 }
2871 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2872 break;
2873#ifndef __U_BOOT__
2874 case '(':
2875 b_getch(input);
2876 process_command_subs(dest, ctx, input, ')');
2877 break;
2878 case '*':
2879 sep[0]=ifs[0];
2880 for (i=1; i<global_argc; i++) {
2881 parse_string(dest, ctx, global_argv[i]);
2882 if (i+1 < global_argc) parse_string(dest, ctx, sep);
2883 }
2884 break;
2885 case '@':
2886 case '-':
2887 case '_':
2888 /* still unhandled, but should be eventually */
2889 error_msg("unhandled syntax: $%c",ch);
2890 return 1;
2891 break;
2892#endif
2893 default:
2894 b_addqchr(dest,'$',dest->quote);
2895 }
2896 /* Eat the character if the flag was set. If the compiler
2897 * is smart enough, we could substitute "b_getch(input);"
2898 * for all the "advance = 1;" above, and also end up with
2899 * a nice size-optimized program. Hah! That'll be the day.
2900 */
2901 if (advance) b_getch(input);
2902 return 0;
2903}
2904
2905#ifndef __U_BOOT__
2906int parse_string(o_string *dest, struct p_context *ctx, const char *src)
2907{
2908 struct in_str foo;
2909 setup_string_in_str(&foo, src);
2910 return parse_stream(dest, ctx, &foo, '\0');
2911}
2912#endif
2913
2914/* return code is 0 for normal exit, 1 for syntax error */
2915int parse_stream(o_string *dest, struct p_context *ctx,
2916 struct in_str *input, int end_trigger)
2917{
2918 unsigned int ch, m;
2919#ifndef __U_BOOT__
2920 int redir_fd;
2921 redir_type redir_style;
2922#endif
2923 int next;
2924
2925 /* Only double-quote state is handled in the state variable dest->quote.
2926 * A single-quote triggers a bypass of the main loop until its mate is
2927 * found. When recursing, quote state is passed in via dest->quote. */
2928
2929 debug_printf("parse_stream, end_trigger=%d\n",end_trigger);
2930 while ((ch=b_getch(input))!=EOF) {
2931 m = map[ch];
2932#ifdef __U_BOOT__
2933 if (input->__promptme == 0) return 1;
2934#endif
2935 next = (ch == '\n') ? 0 : b_peek(input);
wdenkc26e4542004-04-18 10:13:26 +00002936
2937 debug_printf("parse_stream: ch=%c (%d) m=%d quote=%d - %c\n",
2938 ch >= ' ' ? ch : '.', ch, m,
2939 dest->quote, ctx->stack == NULL ? '*' : '.');
2940
wdenkfe8c2802002-11-03 00:38:21 +00002941 if (m==0 || ((m==1 || m==2) && dest->quote)) {
2942 b_addqchr(dest, ch, dest->quote);
2943 } else {
2944 if (m==2) { /* unquoted IFS */
2945 if (done_word(dest, ctx)) {
2946 return 1;
2947 }
2948 /* If we aren't performing a substitution, treat a newline as a
2949 * command separator. */
2950 if (end_trigger != '\0' && ch=='\n')
2951 done_pipe(ctx,PIPE_SEQ);
2952 }
2953 if (ch == end_trigger && !dest->quote && ctx->w==RES_NONE) {
2954 debug_printf("leaving parse_stream (triggered)\n");
2955 return 0;
2956 }
2957#if 0
2958 if (ch=='\n') {
2959 /* Yahoo! Time to run with it! */
2960 done_pipe(ctx,PIPE_SEQ);
2961 run_list(ctx->list_head);
2962 initialize_context(ctx);
2963 }
2964#endif
2965 if (m!=2) switch (ch) {
2966 case '#':
2967 if (dest->length == 0 && !dest->quote) {
2968 while(ch=b_peek(input),ch!=EOF && ch!='\n') { b_getch(input); }
2969 } else {
2970 b_addqchr(dest, ch, dest->quote);
2971 }
2972 break;
2973 case '\\':
2974 if (next == EOF) {
2975 syntax();
2976 return 1;
2977 }
2978 b_addqchr(dest, '\\', dest->quote);
2979 b_addqchr(dest, b_getch(input), dest->quote);
2980 break;
2981 case '$':
2982 if (handle_dollar(dest, ctx, input)!=0) return 1;
2983 break;
2984 case '\'':
2985 dest->nonnull = 1;
2986 while(ch=b_getch(input),ch!=EOF && ch!='\'') {
2987#ifdef __U_BOOT__
2988 if(input->__promptme == 0) return 1;
2989#endif
2990 b_addchr(dest,ch);
2991 }
2992 if (ch==EOF) {
2993 syntax();
2994 return 1;
2995 }
2996 break;
2997 case '"':
2998 dest->nonnull = 1;
2999 dest->quote = !dest->quote;
3000 break;
3001#ifndef __U_BOOT__
3002 case '`':
3003 process_command_subs(dest, ctx, input, '`');
3004 break;
3005 case '>':
3006 redir_fd = redirect_opt_num(dest);
3007 done_word(dest, ctx);
3008 redir_style=REDIRECT_OVERWRITE;
3009 if (next == '>') {
3010 redir_style=REDIRECT_APPEND;
3011 b_getch(input);
3012 } else if (next == '(') {
3013 syntax(); /* until we support >(list) Process Substitution */
3014 return 1;
3015 }
3016 setup_redirect(ctx, redir_fd, redir_style, input);
3017 break;
3018 case '<':
3019 redir_fd = redirect_opt_num(dest);
3020 done_word(dest, ctx);
3021 redir_style=REDIRECT_INPUT;
3022 if (next == '<') {
3023 redir_style=REDIRECT_HEREIS;
3024 b_getch(input);
3025 } else if (next == '>') {
3026 redir_style=REDIRECT_IO;
3027 b_getch(input);
3028 } else if (next == '(') {
3029 syntax(); /* until we support <(list) Process Substitution */
3030 return 1;
3031 }
3032 setup_redirect(ctx, redir_fd, redir_style, input);
3033 break;
3034#endif
3035 case ';':
3036 done_word(dest, ctx);
3037 done_pipe(ctx,PIPE_SEQ);
3038 break;
3039 case '&':
3040 done_word(dest, ctx);
3041 if (next=='&') {
3042 b_getch(input);
3043 done_pipe(ctx,PIPE_AND);
3044 } else {
3045#ifndef __U_BOOT__
3046 done_pipe(ctx,PIPE_BG);
3047#else
3048 syntax_err();
3049 return 1;
3050#endif
3051 }
3052 break;
3053 case '|':
3054 done_word(dest, ctx);
3055 if (next=='|') {
3056 b_getch(input);
3057 done_pipe(ctx,PIPE_OR);
3058 } else {
3059 /* we could pick up a file descriptor choice here
3060 * with redirect_opt_num(), but bash doesn't do it.
3061 * "echo foo 2| cat" yields "foo 2". */
3062#ifndef __U_BOOT__
3063 done_command(ctx);
3064#else
3065 syntax_err();
3066 return 1;
3067#endif
3068 }
3069 break;
3070#ifndef __U_BOOT__
3071 case '(':
3072 case '{':
3073 if (parse_group(dest, ctx, input, ch)!=0) return 1;
3074 break;
3075 case ')':
3076 case '}':
3077 syntax(); /* Proper use of this character caught by end_trigger */
3078 return 1;
3079 break;
3080#endif
3081 default:
3082 syntax(); /* this is really an internal logic error */
3083 return 1;
3084 }
3085 }
3086 }
3087 /* complain if quote? No, maybe we just finished a command substitution
3088 * that was quoted. Example:
3089 * $ echo "`cat foo` plus more"
3090 * and we just got the EOF generated by the subshell that ran "cat foo"
3091 * The only real complaint is if we got an EOF when end_trigger != '\0',
3092 * that is, we were really supposed to get end_trigger, and never got
3093 * one before the EOF. Can't use the standard "syntax error" return code,
3094 * so that parse_stream_outer can distinguish the EOF and exit smoothly. */
3095 debug_printf("leaving parse_stream (EOF)\n");
3096 if (end_trigger != '\0') return -1;
3097 return 0;
3098}
3099
3100void mapset(const unsigned char *set, int code)
3101{
3102 const unsigned char *s;
3103 for (s=set; *s; s++) map[*s] = code;
3104}
3105
3106void update_ifs_map(void)
3107{
3108 /* char *ifs and char map[256] are both globals. */
Wolfgang Denk77ddac92005-10-13 16:45:02 +02003109 ifs = (uchar *)getenv("IFS");
3110 if (ifs == NULL) ifs=(uchar *)" \t\n";
wdenkfe8c2802002-11-03 00:38:21 +00003111 /* Precompute a list of 'flow through' behavior so it can be treated
3112 * quickly up front. Computation is necessary because of IFS.
3113 * Special case handling of IFS == " \t\n" is not implemented.
3114 * The map[] array only really needs two bits each, and on most machines
3115 * that would be faster because of the reduced L1 cache footprint.
3116 */
3117 memset(map,0,sizeof(map)); /* most characters flow through always */
3118#ifndef __U_BOOT__
Wolfgang Denk77ddac92005-10-13 16:45:02 +02003119 mapset((uchar *)"\\$'\"`", 3); /* never flow through */
3120 mapset((uchar *)"<>;&|(){}#", 1); /* flow through if quoted */
wdenkfe8c2802002-11-03 00:38:21 +00003121#else
Wolfgang Denk77ddac92005-10-13 16:45:02 +02003122 mapset((uchar *)"\\$'\"", 3); /* never flow through */
3123 mapset((uchar *)";&|#", 1); /* flow through if quoted */
wdenkfe8c2802002-11-03 00:38:21 +00003124#endif
3125 mapset(ifs, 2); /* also flow through if quoted */
3126}
3127
3128/* most recursion does not come through here, the exeception is
3129 * from builtin_source() */
3130int parse_stream_outer(struct in_str *inp, int flag)
3131{
3132
3133 struct p_context ctx;
3134 o_string temp=NULL_O_STRING;
3135 int rcode;
3136#ifdef __U_BOOT__
3137 int code = 0;
3138#endif
3139 do {
3140 ctx.type = flag;
3141 initialize_context(&ctx);
3142 update_ifs_map();
Wolfgang Denk77ddac92005-10-13 16:45:02 +02003143 if (!(flag & FLAG_PARSE_SEMICOLON) || (flag & FLAG_REPARSING)) mapset((uchar *)";$&|", 0);
wdenkfe8c2802002-11-03 00:38:21 +00003144 inp->promptmode=1;
3145 rcode = parse_stream(&temp, &ctx, inp, '\n');
3146#ifdef __U_BOOT__
3147 if (rcode == 1) flag_repeat = 0;
3148#endif
3149 if (rcode != 1 && ctx.old_flag != 0) {
3150 syntax();
3151#ifdef __U_BOOT__
3152 flag_repeat = 0;
3153#endif
3154 }
3155 if (rcode != 1 && ctx.old_flag == 0) {
3156 done_word(&temp, &ctx);
3157 done_pipe(&ctx,PIPE_SEQ);
3158#ifndef __U_BOOT__
3159 run_list(ctx.list_head);
3160#else
wdenkc26e4542004-04-18 10:13:26 +00003161 code = run_list(ctx.list_head);
3162 if (code == -2) { /* exit */
3163 b_free(&temp);
3164 code = 0;
3165 /* XXX hackish way to not allow exit from main loop */
3166 if (inp->peek == file_peek) {
3167 printf("exit not allowed from main input shell.\n");
3168 continue;
3169 }
3170 break;
3171 }
3172 if (code == -1)
wdenkfe8c2802002-11-03 00:38:21 +00003173 flag_repeat = 0;
3174#endif
3175 } else {
3176 if (ctx.old_flag != 0) {
3177 free(ctx.stack);
3178 b_reset(&temp);
3179 }
3180#ifdef __U_BOOT__
3181 if (inp->__promptme == 0) printf("<INTERRUPT>\n");
3182 inp->__promptme = 1;
3183#endif
3184 temp.nonnull = 0;
3185 temp.quote = 0;
3186 inp->p = NULL;
3187 free_pipe_list(ctx.list_head,0);
3188 }
3189 b_free(&temp);
3190 } while (rcode != -1 && !(flag & FLAG_EXIT_FROM_LOOP)); /* loop on syntax errors, return on EOF */
3191#ifndef __U_BOOT__
3192 return 0;
3193#else
3194 return (code != 0) ? 1 : 0;
3195#endif /* __U_BOOT__ */
3196}
3197
3198#ifndef __U_BOOT__
3199static int parse_string_outer(const char *s, int flag)
3200#else
Jason Hobbsc8a20792011-08-31 05:37:24 +00003201int parse_string_outer(const char *s, int flag)
wdenkfe8c2802002-11-03 00:38:21 +00003202#endif /* __U_BOOT__ */
3203{
3204 struct in_str input;
3205#ifdef __U_BOOT__
3206 char *p = NULL;
3207 int rcode;
3208 if ( !s || !*s)
3209 return 1;
3210 if (!(p = strchr(s, '\n')) || *++p) {
3211 p = xmalloc(strlen(s) + 2);
3212 strcpy(p, s);
3213 strcat(p, "\n");
3214 setup_string_in_str(&input, p);
3215 rcode = parse_stream_outer(&input, flag);
3216 free(p);
3217 return rcode;
3218 } else {
3219#endif
3220 setup_string_in_str(&input, s);
3221 return parse_stream_outer(&input, flag);
3222#ifdef __U_BOOT__
3223 }
3224#endif
3225}
3226
3227#ifndef __U_BOOT__
3228static int parse_file_outer(FILE *f)
3229#else
3230int parse_file_outer(void)
3231#endif
3232{
3233 int rcode;
3234 struct in_str input;
3235#ifndef __U_BOOT__
3236 setup_file_in_str(&input, f);
3237#else
3238 setup_file_in_str(&input);
3239#endif
3240 rcode = parse_stream_outer(&input, FLAG_PARSE_SEMICOLON);
3241 return rcode;
3242}
3243
3244#ifdef __U_BOOT__
Wolfgang Denk2e5167c2010-10-28 20:00:11 +02003245#ifdef CONFIG_NEEDS_MANUAL_RELOC
wdenk3e386912003-04-05 00:53:31 +00003246static void u_boot_hush_reloc(void)
3247{
wdenk3e386912003-04-05 00:53:31 +00003248 unsigned long addr;
3249 struct reserved_combo *r;
3250
3251 for (r=reserved_list; r<reserved_list+NRES; r++) {
3252 addr = (ulong) (r->literal) + gd->reloc_off;
3253 r->literal = (char *)addr;
3254 }
3255}
Peter Tyser521af042009-09-21 11:20:36 -05003256#endif
wdenk3e386912003-04-05 00:53:31 +00003257
wdenkfe8c2802002-11-03 00:38:21 +00003258int u_boot_hush_start(void)
3259{
wdenk2d5b5612003-10-14 19:43:55 +00003260 if (top_vars == NULL) {
3261 top_vars = malloc(sizeof(struct variables));
3262 top_vars->name = "HUSH_VERSION";
3263 top_vars->value = "0.01";
3264 top_vars->next = 0;
3265 top_vars->flg_export = 0;
3266 top_vars->flg_read_only = 1;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +02003267#ifdef CONFIG_NEEDS_MANUAL_RELOC
wdenk2d5b5612003-10-14 19:43:55 +00003268 u_boot_hush_reloc();
Peter Tyser521af042009-09-21 11:20:36 -05003269#endif
wdenk2d5b5612003-10-14 19:43:55 +00003270 }
wdenkfe8c2802002-11-03 00:38:21 +00003271 return 0;
3272}
3273
3274static void *xmalloc(size_t size)
3275{
3276 void *p = NULL;
3277
3278 if (!(p = malloc(size))) {
3279 printf("ERROR : memory not allocated\n");
3280 for(;;);
3281 }
3282 return p;
3283}
3284
3285static void *xrealloc(void *ptr, size_t size)
3286{
3287 void *p = NULL;
3288
3289 if (!(p = realloc(ptr, size))) {
3290 printf("ERROR : memory not allocated\n");
3291 for(;;);
3292 }
3293 return p;
3294}
3295#endif /* __U_BOOT__ */
3296
3297#ifndef __U_BOOT__
3298/* Make sure we have a controlling tty. If we get started under a job
3299 * aware app (like bash for example), make sure we are now in charge so
3300 * we don't fight over who gets the foreground */
wdenkd0fb80c2003-01-11 09:48:40 +00003301static void setup_job_control(void)
wdenkfe8c2802002-11-03 00:38:21 +00003302{
3303 static pid_t shell_pgrp;
3304 /* Loop until we are in the foreground. */
3305 while (tcgetpgrp (shell_terminal) != (shell_pgrp = getpgrp ()))
3306 kill (- shell_pgrp, SIGTTIN);
3307
3308 /* Ignore interactive and job-control signals. */
3309 signal(SIGINT, SIG_IGN);
3310 signal(SIGQUIT, SIG_IGN);
3311 signal(SIGTERM, SIG_IGN);
3312 signal(SIGTSTP, SIG_IGN);
3313 signal(SIGTTIN, SIG_IGN);
3314 signal(SIGTTOU, SIG_IGN);
3315 signal(SIGCHLD, SIG_IGN);
3316
3317 /* Put ourselves in our own process group. */
3318 setsid();
3319 shell_pgrp = getpid ();
3320 setpgid (shell_pgrp, shell_pgrp);
3321
3322 /* Grab control of the terminal. */
3323 tcsetpgrp(shell_terminal, shell_pgrp);
3324}
3325
Wolfgang Denk54841ab2010-06-28 22:00:46 +02003326int hush_main(int argc, char * const *argv)
wdenkfe8c2802002-11-03 00:38:21 +00003327{
3328 int opt;
3329 FILE *input;
3330 char **e = environ;
3331
3332 /* XXX what should these be while sourcing /etc/profile? */
3333 global_argc = argc;
3334 global_argv = argv;
3335
3336 /* (re?) initialize globals. Sometimes hush_main() ends up calling
3337 * hush_main(), therefore we cannot rely on the BSS to zero out this
3338 * stuff. Reset these to 0 every time. */
3339 ifs = NULL;
3340 /* map[] is taken care of with call to update_ifs_map() */
3341 fake_mode = 0;
3342 interactive = 0;
3343 close_me_head = NULL;
3344 last_bg_pid = 0;
3345 job_list = NULL;
3346 last_jobid = 0;
3347
3348 /* Initialize some more globals to non-zero values */
3349 set_cwd();
wdenkd0fb80c2003-01-11 09:48:40 +00003350#ifdef CONFIG_FEATURE_COMMAND_EDITING
wdenkfe8c2802002-11-03 00:38:21 +00003351 cmdedit_set_initial_prompt();
3352#else
3353 PS1 = NULL;
3354#endif
3355 PS2 = "> ";
3356
3357 /* initialize our shell local variables with the values
3358 * currently living in the environment */
3359 if (e) {
3360 for (; *e; e++)
3361 set_local_var(*e, 2); /* without call putenv() */
3362 }
3363
3364 last_return_code=EXIT_SUCCESS;
3365
3366
3367 if (argv[0] && argv[0][0] == '-') {
3368 debug_printf("\nsourcing /etc/profile\n");
3369 if ((input = fopen("/etc/profile", "r")) != NULL) {
3370 mark_open(fileno(input));
3371 parse_file_outer(input);
3372 mark_closed(fileno(input));
3373 fclose(input);
3374 }
3375 }
3376 input=stdin;
3377
3378 while ((opt = getopt(argc, argv, "c:xif")) > 0) {
3379 switch (opt) {
3380 case 'c':
3381 {
3382 global_argv = argv+optind;
3383 global_argc = argc-optind;
3384 opt = parse_string_outer(optarg, FLAG_PARSE_SEMICOLON);
3385 goto final_return;
3386 }
3387 break;
3388 case 'i':
3389 interactive++;
3390 break;
3391 case 'f':
3392 fake_mode++;
3393 break;
3394 default:
3395#ifndef BB_VER
3396 fprintf(stderr, "Usage: sh [FILE]...\n"
3397 " or: sh -c command [args]...\n\n");
3398 exit(EXIT_FAILURE);
3399#else
3400 show_usage();
3401#endif
3402 }
3403 }
3404 /* A shell is interactive if the `-i' flag was given, or if all of
3405 * the following conditions are met:
3406 * no -c command
3407 * no arguments remaining or the -s flag given
3408 * standard input is a terminal
3409 * standard output is a terminal
3410 * Refer to Posix.2, the description of the `sh' utility. */
3411 if (argv[optind]==NULL && input==stdin &&
3412 isatty(fileno(stdin)) && isatty(fileno(stdout))) {
3413 interactive++;
3414 }
3415
3416 debug_printf("\ninteractive=%d\n", interactive);
3417 if (interactive) {
3418 /* Looks like they want an interactive shell */
wdenk8bde7f72003-06-27 21:31:46 +00003419#ifndef CONFIG_FEATURE_SH_EXTRA_QUIET
wdenkd0fb80c2003-01-11 09:48:40 +00003420 printf( "\n\n" BB_BANNER " hush - the humble shell v0.01 (testing)\n");
3421 printf( "Enter 'help' for a list of built-in commands.\n\n");
3422#endif
wdenkfe8c2802002-11-03 00:38:21 +00003423 setup_job_control();
3424 }
3425
3426 if (argv[optind]==NULL) {
3427 opt=parse_file_outer(stdin);
3428 goto final_return;
3429 }
3430
3431 debug_printf("\nrunning script '%s'\n", argv[optind]);
3432 global_argv = argv+optind;
3433 global_argc = argc-optind;
3434 input = xfopen(argv[optind], "r");
3435 opt = parse_file_outer(input);
3436
wdenkd0fb80c2003-01-11 09:48:40 +00003437#ifdef CONFIG_FEATURE_CLEAN_UP
wdenkfe8c2802002-11-03 00:38:21 +00003438 fclose(input);
3439 if (cwd && cwd != unknown)
3440 free((char*)cwd);
3441 {
3442 struct variables *cur, *tmp;
3443 for(cur = top_vars; cur; cur = tmp) {
3444 tmp = cur->next;
3445 if (!cur->flg_read_only) {
3446 free(cur->name);
3447 free(cur->value);
3448 free(cur);
3449 }
3450 }
3451 }
3452#endif
3453
3454final_return:
3455 return(opt?opt:last_return_code);
3456}
3457#endif
3458
3459static char *insert_var_value(char *inp)
3460{
3461 int res_str_len = 0;
3462 int len;
3463 int done = 0;
3464 char *p, *p1, *res_str = NULL;
3465
3466 while ((p = strchr(inp, SPECIAL_VAR_SYMBOL))) {
3467 if (p != inp) {
3468 len = p - inp;
3469 res_str = xrealloc(res_str, (res_str_len + len));
3470 strncpy((res_str + res_str_len), inp, len);
3471 res_str_len += len;
3472 }
3473 inp = ++p;
3474 p = strchr(inp, SPECIAL_VAR_SYMBOL);
3475 *p = '\0';
3476 if ((p1 = lookup_param(inp))) {
3477 len = res_str_len + strlen(p1);
3478 res_str = xrealloc(res_str, (1 + len));
3479 strcpy((res_str + res_str_len), p1);
3480 res_str_len = len;
3481 }
3482 *p = SPECIAL_VAR_SYMBOL;
3483 inp = ++p;
3484 done = 1;
3485 }
3486 if (done) {
3487 res_str = xrealloc(res_str, (1 + res_str_len + strlen(inp)));
3488 strcpy((res_str + res_str_len), inp);
3489 while ((p = strchr(res_str, '\n'))) {
3490 *p = ' ';
3491 }
3492 }
3493 return (res_str == NULL) ? inp : res_str;
3494}
3495
3496static char **make_list_in(char **inp, char *name)
3497{
3498 int len, i;
3499 int name_len = strlen(name);
3500 int n = 0;
3501 char **list;
3502 char *p1, *p2, *p3;
3503
3504 /* create list of variable values */
3505 list = xmalloc(sizeof(*list));
3506 for (i = 0; inp[i]; i++) {
3507 p3 = insert_var_value(inp[i]);
3508 p1 = p3;
3509 while (*p1) {
3510 if ((*p1 == ' ')) {
3511 p1++;
3512 continue;
3513 }
3514 if ((p2 = strchr(p1, ' '))) {
3515 len = p2 - p1;
3516 } else {
3517 len = strlen(p1);
3518 p2 = p1 + len;
3519 }
3520 /* we use n + 2 in realloc for list,because we add
3521 * new element and then we will add NULL element */
3522 list = xrealloc(list, sizeof(*list) * (n + 2));
3523 list[n] = xmalloc(2 + name_len + len);
3524 strcpy(list[n], name);
3525 strcat(list[n], "=");
3526 strncat(list[n], p1, len);
3527 list[n++][name_len + len + 1] = '\0';
3528 p1 = p2;
3529 }
3530 if (p3 != inp[i]) free(p3);
3531 }
3532 list[n] = NULL;
3533 return list;
3534}
3535
3536/* Make new string for parser */
3537static char * make_string(char ** inp)
3538{
3539 char *p;
3540 char *str = NULL;
3541 int n;
3542 int len = 2;
3543
3544 for (n = 0; inp[n]; n++) {
3545 p = insert_var_value(inp[n]);
3546 str = xrealloc(str, (len + strlen(p)));
3547 if (n) {
3548 strcat(str, " ");
3549 } else {
3550 *str = '\0';
3551 }
3552 strcat(str, p);
3553 len = strlen(str) + 3;
3554 if (p != inp[n]) free(p);
3555 }
3556 len = strlen(str);
3557 *(str + len) = '\n';
3558 *(str + len + 1) = '\0';
3559 return str;
3560}
3561
Heiko Schocher81473f62008-10-15 09:40:28 +02003562#ifdef __U_BOOT__
Wolfgang Denk54841ab2010-06-28 22:00:46 +02003563int do_showvar (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Heiko Schocher81473f62008-10-15 09:40:28 +02003564{
3565 int i, k;
3566 int rcode = 0;
3567 struct variables *cur;
3568
3569 if (argc == 1) { /* Print all env variables */
3570 for (cur = top_vars; cur; cur = cur->next) {
3571 printf ("%s=%s\n", cur->name, cur->value);
3572 if (ctrlc ()) {
3573 puts ("\n ** Abort\n");
3574 return 1;
3575 }
3576 }
3577 return 0;
3578 }
3579 for (i = 1; i < argc; ++i) { /* print single env variables */
3580 char *name = argv[i];
3581
3582 k = -1;
3583 for (cur = top_vars; cur; cur = cur->next) {
3584 if(strcmp (cur->name, name) == 0) {
3585 k = 0;
3586 printf ("%s=%s\n", cur->name, cur->value);
3587 }
3588 if (ctrlc ()) {
3589 puts ("\n ** Abort\n");
3590 return 1;
3591 }
3592 }
3593 if (k < 0) {
3594 printf ("## Error: \"%s\" not defined\n", name);
3595 rcode ++;
3596 }
3597 }
3598 return rcode;
3599}
3600
3601U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02003602 showvar, CONFIG_SYS_MAXARGS, 1, do_showvar,
Peter Tyser2fb26042009-01-27 18:03:12 -06003603 "print local hushshell variables",
Heiko Schocher81473f62008-10-15 09:40:28 +02003604 "\n - print values of all hushshell variables\n"
3605 "showvar name ...\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02003606 " - print value of hushshell variable 'name'"
Heiko Schocher81473f62008-10-15 09:40:28 +02003607);
3608
3609#endif
wdenkfe8c2802002-11-03 00:38:21 +00003610/****************************************************************************/