blob: e8e24d7deab952f7e7d0d429febfa94b464398d1 [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 */
wdenk8bde7f72003-06-27 21:31:46 +00001682
wdenkfe8c2802002-11-03 00:38:21 +00001683 rcode = (cmdtp->cmd)
wdenk8bde7f72003-06-27 21:31:46 +00001684(cmdtp, flag,child->argc-i,&child->argv[i]);
wdenkfe8c2802002-11-03 00:38:21 +00001685 if ( !cmdtp->repeatable )
1686 flag_repeat = 0;
wdenk8bde7f72003-06-27 21:31:46 +00001687
1688
wdenkfe8c2802002-11-03 00:38:21 +00001689#endif
1690 child->argv-=i; /* XXX restore hack so free() can work right */
1691#ifndef __U_BOOT__
wdenk8bde7f72003-06-27 21:31:46 +00001692
wdenkfe8c2802002-11-03 00:38:21 +00001693 restore_redirects(squirrel);
1694#endif
wdenk8bde7f72003-06-27 21:31:46 +00001695
wdenkfe8c2802002-11-03 00:38:21 +00001696 return rcode;
1697 }
1698 }
1699#ifndef __U_BOOT__
1700 }
1701
1702 for (i = 0; i < pi->num_progs; i++) {
1703 child = & (pi->progs[i]);
1704
1705 /* pipes are inserted between pairs of commands */
1706 if ((i + 1) < pi->num_progs) {
1707 if (pipe(pipefds)<0) perror_msg_and_die("pipe");
1708 nextout = pipefds[1];
1709 } else {
1710 nextout=1;
1711 pipefds[0] = -1;
1712 }
1713
1714 /* XXX test for failed fork()? */
1715 if (!(child->pid = fork())) {
1716 /* Set the handling for job control signals back to the default. */
1717 signal(SIGINT, SIG_DFL);
1718 signal(SIGQUIT, SIG_DFL);
1719 signal(SIGTERM, SIG_DFL);
1720 signal(SIGTSTP, SIG_DFL);
1721 signal(SIGTTIN, SIG_DFL);
1722 signal(SIGTTOU, SIG_DFL);
1723 signal(SIGCHLD, SIG_DFL);
1724
1725 close_all();
1726
1727 if (nextin != 0) {
1728 dup2(nextin, 0);
1729 close(nextin);
1730 }
1731 if (nextout != 1) {
1732 dup2(nextout, 1);
1733 close(nextout);
1734 }
1735 if (pipefds[0]!=-1) {
1736 close(pipefds[0]); /* opposite end of our output pipe */
1737 }
1738
1739 /* Like bash, explicit redirects override pipes,
1740 * and the pipe fd is available for dup'ing. */
1741 setup_redirects(child,NULL);
1742
1743 if (interactive && pi->followup!=PIPE_BG) {
1744 /* If we (the child) win the race, put ourselves in the process
1745 * group whose leader is the first process in this pipe. */
1746 if (pi->pgrp < 0) {
1747 pi->pgrp = getpid();
1748 }
1749 if (setpgid(0, pi->pgrp) == 0) {
1750 tcsetpgrp(2, pi->pgrp);
1751 }
1752 }
1753
1754 pseudo_exec(child);
1755 }
1756
1757
1758 /* put our child in the process group whose leader is the
1759 first process in this pipe */
1760 if (pi->pgrp < 0) {
1761 pi->pgrp = child->pid;
1762 }
1763 /* Don't check for errors. The child may be dead already,
1764 * in which case setpgid returns error code EACCES. */
1765 setpgid(child->pid, pi->pgrp);
1766
1767 if (nextin != 0)
1768 close(nextin);
1769 if (nextout != 1)
1770 close(nextout);
1771
1772 /* If there isn't another process, nextin is garbage
1773 but it doesn't matter */
1774 nextin = pipefds[0];
1775 }
1776#endif
1777 return -1;
1778}
1779
1780static int run_list_real(struct pipe *pi)
1781{
1782 char *save_name = NULL;
1783 char **list = NULL;
1784 char **save_list = NULL;
1785 struct pipe *rpipe;
1786 int flag_rep = 0;
1787#ifndef __U_BOOT__
1788 int save_num_progs;
1789#endif
1790 int rcode=0, flag_skip=1;
1791 int flag_restore = 0;
1792 int if_code=0, next_if_code=0; /* need double-buffer to handle elif */
1793 reserved_style rmode, skip_more_in_this_rmode=RES_XXXX;
1794 /* check syntax for "for" */
1795 for (rpipe = pi; rpipe; rpipe = rpipe->next) {
1796 if ((rpipe->r_mode == RES_IN ||
1797 rpipe->r_mode == RES_FOR) &&
1798 (rpipe->next == NULL)) {
1799 syntax();
1800#ifdef __U_BOOT__
1801 flag_repeat = 0;
1802#endif
1803 return 1;
1804 }
1805 if ((rpipe->r_mode == RES_IN &&
1806 (rpipe->next->r_mode == RES_IN &&
1807 rpipe->next->progs->argv != NULL))||
1808 (rpipe->r_mode == RES_FOR &&
1809 rpipe->next->r_mode != RES_IN)) {
1810 syntax();
1811#ifdef __U_BOOT__
1812 flag_repeat = 0;
1813#endif
1814 return 1;
1815 }
1816 }
1817 for (; pi; pi = (flag_restore != 0) ? rpipe : pi->next) {
1818 if (pi->r_mode == RES_WHILE || pi->r_mode == RES_UNTIL ||
1819 pi->r_mode == RES_FOR) {
1820#ifdef __U_BOOT__
1821 /* check Ctrl-C */
1822 ctrlc();
1823 if ((had_ctrlc())) {
1824 return 1;
1825 }
1826#endif
1827 flag_restore = 0;
1828 if (!rpipe) {
1829 flag_rep = 0;
1830 rpipe = pi;
1831 }
1832 }
1833 rmode = pi->r_mode;
1834 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);
1835 if (rmode == skip_more_in_this_rmode && flag_skip) {
1836 if (pi->followup == PIPE_SEQ) flag_skip=0;
1837 continue;
1838 }
1839 flag_skip = 1;
1840 skip_more_in_this_rmode = RES_XXXX;
1841 if (rmode == RES_THEN || rmode == RES_ELSE) if_code = next_if_code;
1842 if (rmode == RES_THEN && if_code) continue;
1843 if (rmode == RES_ELSE && !if_code) continue;
wdenk56b86bf2004-04-12 14:31:43 +00001844 if (rmode == RES_ELIF && !if_code) break;
wdenkfe8c2802002-11-03 00:38:21 +00001845 if (rmode == RES_FOR && pi->num_progs) {
1846 if (!list) {
1847 /* if no variable values after "in" we skip "for" */
1848 if (!pi->next->progs->argv) continue;
1849 /* create list of variable values */
1850 list = make_list_in(pi->next->progs->argv,
1851 pi->progs->argv[0]);
1852 save_list = list;
1853 save_name = pi->progs->argv[0];
1854 pi->progs->argv[0] = NULL;
1855 flag_rep = 1;
1856 }
1857 if (!(*list)) {
1858 free(pi->progs->argv[0]);
1859 free(save_list);
1860 list = NULL;
1861 flag_rep = 0;
1862 pi->progs->argv[0] = save_name;
1863#ifndef __U_BOOT__
1864 pi->progs->glob_result.gl_pathv[0] =
1865 pi->progs->argv[0];
1866#endif
1867 continue;
1868 } else {
1869 /* insert new value from list for variable */
1870 if (pi->progs->argv[0])
1871 free(pi->progs->argv[0]);
1872 pi->progs->argv[0] = *list++;
1873#ifndef __U_BOOT__
1874 pi->progs->glob_result.gl_pathv[0] =
1875 pi->progs->argv[0];
1876#endif
1877 }
1878 }
1879 if (rmode == RES_IN) continue;
1880 if (rmode == RES_DO) {
1881 if (!flag_rep) continue;
1882 }
1883 if ((rmode == RES_DONE)) {
1884 if (flag_rep) {
1885 flag_restore = 1;
1886 } else {
1887 rpipe = NULL;
1888 }
1889 }
1890 if (pi->num_progs == 0) continue;
1891#ifndef __U_BOOT__
1892 save_num_progs = pi->num_progs; /* save number of programs */
1893#endif
1894 rcode = run_pipe_real(pi);
1895 debug_printf("run_pipe_real returned %d\n",rcode);
1896#ifndef __U_BOOT__
1897 if (rcode!=-1) {
1898 /* We only ran a builtin: rcode was set by the return value
1899 * of run_pipe_real(), and we don't need to wait for anything. */
1900 } else if (pi->followup==PIPE_BG) {
1901 /* XXX check bash's behavior with nontrivial pipes */
1902 /* XXX compute jobid */
1903 /* XXX what does bash do with attempts to background builtins? */
1904 insert_bg_job(pi);
1905 rcode = EXIT_SUCCESS;
1906 } else {
1907 if (interactive) {
1908 /* move the new process group into the foreground */
1909 if (tcsetpgrp(shell_terminal, pi->pgrp) && errno != ENOTTY)
1910 perror_msg("tcsetpgrp-3");
1911 rcode = checkjobs(pi);
1912 /* move the shell to the foreground */
1913 if (tcsetpgrp(shell_terminal, getpgid(0)) && errno != ENOTTY)
1914 perror_msg("tcsetpgrp-4");
1915 } else {
1916 rcode = checkjobs(pi);
1917 }
1918 debug_printf("checkjobs returned %d\n",rcode);
1919 }
1920 last_return_code=rcode;
1921#else
wdenkc26e4542004-04-18 10:13:26 +00001922 if (rcode < -1) {
1923 last_return_code = -rcode - 2;
1924 return -2; /* exit */
1925 }
wdenkfe8c2802002-11-03 00:38:21 +00001926 last_return_code=(rcode == 0) ? 0 : 1;
1927#endif
1928#ifndef __U_BOOT__
1929 pi->num_progs = save_num_progs; /* restore number of programs */
1930#endif
1931 if ( rmode == RES_IF || rmode == RES_ELIF )
1932 next_if_code=rcode; /* can be overwritten a number of times */
1933 if (rmode == RES_WHILE)
1934 flag_rep = !last_return_code;
1935 if (rmode == RES_UNTIL)
1936 flag_rep = last_return_code;
1937 if ( (rcode==EXIT_SUCCESS && pi->followup==PIPE_OR) ||
1938 (rcode!=EXIT_SUCCESS && pi->followup==PIPE_AND) )
1939 skip_more_in_this_rmode=rmode;
1940#ifndef __U_BOOT__
1941 checkjobs(NULL);
1942#endif
1943 }
1944 return rcode;
1945}
1946
1947/* broken, of course, but OK for testing */
1948static char *indenter(int i)
1949{
1950 static char blanks[]=" ";
1951 return &blanks[sizeof(blanks)-i-1];
1952}
1953
1954/* return code is the exit status of the pipe */
1955static int free_pipe(struct pipe *pi, int indent)
1956{
1957 char **p;
1958 struct child_prog *child;
1959#ifndef __U_BOOT__
1960 struct redir_struct *r, *rnext;
1961#endif
1962 int a, i, ret_code=0;
1963 char *ind = indenter(indent);
1964
1965#ifndef __U_BOOT__
1966 if (pi->stopped_progs > 0)
1967 return ret_code;
1968 final_printf("%s run pipe: (pid %d)\n",ind,getpid());
1969#endif
1970 for (i=0; i<pi->num_progs; i++) {
1971 child = &pi->progs[i];
1972 final_printf("%s command %d:\n",ind,i);
1973 if (child->argv) {
1974 for (a=0,p=child->argv; *p; a++,p++) {
1975 final_printf("%s argv[%d] = %s\n",ind,a,*p);
1976 }
1977#ifndef __U_BOOT__
1978 globfree(&child->glob_result);
1979#else
Peter Tyser197324d2009-08-05 16:18:44 -05001980 for (a = 0; a < child->argc; a++) {
wdenk8bde7f72003-06-27 21:31:46 +00001981 free(child->argv[a]);
1982 }
wdenkfe8c2802002-11-03 00:38:21 +00001983 free(child->argv);
wdenk8bde7f72003-06-27 21:31:46 +00001984 child->argc = 0;
wdenkfe8c2802002-11-03 00:38:21 +00001985#endif
1986 child->argv=NULL;
1987 } else if (child->group) {
1988#ifndef __U_BOOT__
1989 final_printf("%s begin group (subshell:%d)\n",ind, child->subshell);
1990#endif
1991 ret_code = free_pipe_list(child->group,indent+3);
1992 final_printf("%s end group\n",ind);
1993 } else {
1994 final_printf("%s (nil)\n",ind);
1995 }
1996#ifndef __U_BOOT__
1997 for (r=child->redirects; r; r=rnext) {
1998 final_printf("%s redirect %d%s", ind, r->fd, redir_table[r->type].descrip);
1999 if (r->dup == -1) {
2000 /* guard against the case >$FOO, where foo is unset or blank */
2001 if (r->word.gl_pathv) {
2002 final_printf(" %s\n", *r->word.gl_pathv);
2003 globfree(&r->word);
2004 }
2005 } else {
2006 final_printf("&%d\n", r->dup);
2007 }
2008 rnext=r->next;
2009 free(r);
2010 }
2011 child->redirects=NULL;
2012#endif
2013 }
2014 free(pi->progs); /* children are an array, they get freed all at once */
2015 pi->progs=NULL;
2016 return ret_code;
2017}
2018
2019static int free_pipe_list(struct pipe *head, int indent)
2020{
2021 int rcode=0; /* if list has no members */
2022 struct pipe *pi, *next;
2023 char *ind = indenter(indent);
2024 for (pi=head; pi; pi=next) {
2025 final_printf("%s pipe reserved mode %d\n", ind, pi->r_mode);
2026 rcode = free_pipe(pi, indent);
2027 final_printf("%s pipe followup code %d\n", ind, pi->followup);
2028 next=pi->next;
2029 pi->next=NULL;
2030 free(pi);
2031 }
2032 return rcode;
2033}
2034
2035/* Select which version we will use */
2036static int run_list(struct pipe *pi)
2037{
2038 int rcode=0;
2039#ifndef __U_BOOT__
2040 if (fake_mode==0) {
2041#endif
2042 rcode = run_list_real(pi);
2043#ifndef __U_BOOT__
2044 }
2045#endif
2046 /* free_pipe_list has the side effect of clearing memory
2047 * In the long run that function can be merged with run_list_real,
2048 * but doing that now would hobble the debugging effort. */
2049 free_pipe_list(pi,0);
2050 return rcode;
2051}
2052
2053/* The API for glob is arguably broken. This routine pushes a non-matching
2054 * string into the output structure, removing non-backslashed backslashes.
2055 * If someone can prove me wrong, by performing this function within the
2056 * original glob(3) api, feel free to rewrite this routine into oblivion.
2057 * Return code (0 vs. GLOB_NOSPACE) matches glob(3).
2058 * XXX broken if the last character is '\\', check that before calling.
2059 */
2060#ifndef __U_BOOT__
2061static int globhack(const char *src, int flags, glob_t *pglob)
2062{
2063 int cnt=0, pathc;
2064 const char *s;
2065 char *dest;
2066 for (cnt=1, s=src; s && *s; s++) {
2067 if (*s == '\\') s++;
2068 cnt++;
2069 }
2070 dest = malloc(cnt);
2071 if (!dest) return GLOB_NOSPACE;
2072 if (!(flags & GLOB_APPEND)) {
2073 pglob->gl_pathv=NULL;
2074 pglob->gl_pathc=0;
2075 pglob->gl_offs=0;
2076 pglob->gl_offs=0;
2077 }
2078 pathc = ++pglob->gl_pathc;
2079 pglob->gl_pathv = realloc(pglob->gl_pathv, (pathc+1)*sizeof(*pglob->gl_pathv));
2080 if (pglob->gl_pathv == NULL) return GLOB_NOSPACE;
2081 pglob->gl_pathv[pathc-1]=dest;
2082 pglob->gl_pathv[pathc]=NULL;
2083 for (s=src; s && *s; s++, dest++) {
2084 if (*s == '\\') s++;
2085 *dest = *s;
2086 }
2087 *dest='\0';
2088 return 0;
2089}
2090
2091/* XXX broken if the last character is '\\', check that before calling */
2092static int glob_needed(const char *s)
2093{
2094 for (; *s; s++) {
2095 if (*s == '\\') s++;
2096 if (strchr("*[?",*s)) return 1;
2097 }
2098 return 0;
2099}
2100
2101#if 0
2102static void globprint(glob_t *pglob)
2103{
2104 int i;
2105 debug_printf("glob_t at %p:\n", pglob);
2106 debug_printf(" gl_pathc=%d gl_pathv=%p gl_offs=%d gl_flags=%d\n",
2107 pglob->gl_pathc, pglob->gl_pathv, pglob->gl_offs, pglob->gl_flags);
2108 for (i=0; i<pglob->gl_pathc; i++)
2109 debug_printf("pglob->gl_pathv[%d] = %p = %s\n", i,
2110 pglob->gl_pathv[i], pglob->gl_pathv[i]);
2111}
2112#endif
2113
2114static int xglob(o_string *dest, int flags, glob_t *pglob)
2115{
2116 int gr;
2117
wdenk8bde7f72003-06-27 21:31:46 +00002118 /* short-circuit for null word */
wdenkfe8c2802002-11-03 00:38:21 +00002119 /* we can code this better when the debug_printf's are gone */
wdenk8bde7f72003-06-27 21:31:46 +00002120 if (dest->length == 0) {
2121 if (dest->nonnull) {
2122 /* bash man page calls this an "explicit" null */
2123 gr = globhack(dest->data, flags, pglob);
2124 debug_printf("globhack returned %d\n",gr);
2125 } else {
wdenkfe8c2802002-11-03 00:38:21 +00002126 return 0;
2127 }
wdenk8bde7f72003-06-27 21:31:46 +00002128 } else if (glob_needed(dest->data)) {
wdenkfe8c2802002-11-03 00:38:21 +00002129 gr = glob(dest->data, flags, NULL, pglob);
2130 debug_printf("glob returned %d\n",gr);
2131 if (gr == GLOB_NOMATCH) {
2132 /* quote removal, or more accurately, backslash removal */
2133 gr = globhack(dest->data, flags, pglob);
2134 debug_printf("globhack returned %d\n",gr);
2135 }
2136 } else {
2137 gr = globhack(dest->data, flags, pglob);
2138 debug_printf("globhack returned %d\n",gr);
2139 }
2140 if (gr == GLOB_NOSPACE)
2141 error_msg_and_die("out of memory during glob");
2142 if (gr != 0) { /* GLOB_ABORTED ? */
2143 error_msg("glob(3) error %d",gr);
2144 }
2145 /* globprint(glob_target); */
2146 return gr;
2147}
2148#endif
2149
wdenkc26e4542004-04-18 10:13:26 +00002150#ifdef __U_BOOT__
2151static char *get_dollar_var(char ch);
2152#endif
2153
wdenkfe8c2802002-11-03 00:38:21 +00002154/* This is used to get/check local shell variables */
Holger Brunckeae3b062011-04-08 02:47:42 +00002155char *get_local_var(const char *s)
wdenkfe8c2802002-11-03 00:38:21 +00002156{
2157 struct variables *cur;
2158
2159 if (!s)
2160 return NULL;
wdenkc26e4542004-04-18 10:13:26 +00002161
2162#ifdef __U_BOOT__
2163 if (*s == '$')
2164 return get_dollar_var(s[1]);
2165#endif
2166
wdenkfe8c2802002-11-03 00:38:21 +00002167 for (cur = top_vars; cur; cur=cur->next)
2168 if(strcmp(cur->name, s)==0)
2169 return cur->value;
2170 return NULL;
2171}
2172
2173/* This is used to set local shell variables
2174 flg_export==0 if only local (not exporting) variable
2175 flg_export==1 if "new" exporting environ
2176 flg_export>1 if current startup environ (not call putenv()) */
Heiko Schocher81473f62008-10-15 09:40:28 +02002177int set_local_var(const char *s, int flg_export)
wdenkfe8c2802002-11-03 00:38:21 +00002178{
2179 char *name, *value;
2180 int result=0;
2181 struct variables *cur;
2182
wdenkc26e4542004-04-18 10:13:26 +00002183#ifdef __U_BOOT__
2184 /* might be possible! */
2185 if (!isalpha(*s))
2186 return -1;
2187#endif
2188
wdenkfe8c2802002-11-03 00:38:21 +00002189 name=strdup(s);
2190
2191#ifdef __U_BOOT__
2192 if (getenv(name) != NULL) {
2193 printf ("ERROR: "
wdenk2d1a5372004-02-23 19:30:57 +00002194 "There is a global environment variable with the same name.\n");
wdenkc26e4542004-04-18 10:13:26 +00002195 free(name);
wdenkfe8c2802002-11-03 00:38:21 +00002196 return -1;
2197 }
2198#endif
2199 /* Assume when we enter this function that we are already in
2200 * NAME=VALUE format. So the first order of business is to
2201 * split 's' on the '=' into 'name' and 'value' */
2202 value = strchr(name, '=');
2203 if (value==0 && ++value==0) {
2204 free(name);
2205 return -1;
2206 }
2207 *value++ = 0;
2208
2209 for(cur = top_vars; cur; cur = cur->next) {
2210 if(strcmp(cur->name, name)==0)
2211 break;
2212 }
2213
2214 if(cur) {
2215 if(strcmp(cur->value, value)==0) {
2216 if(flg_export>0 && cur->flg_export==0)
2217 cur->flg_export=flg_export;
2218 else
2219 result++;
2220 } else {
2221 if(cur->flg_read_only) {
2222 error_msg("%s: readonly variable", name);
2223 result = -1;
2224 } else {
2225 if(flg_export>0 || cur->flg_export>1)
2226 cur->flg_export=1;
2227 free(cur->value);
2228
2229 cur->value = strdup(value);
2230 }
2231 }
2232 } else {
2233 cur = malloc(sizeof(struct variables));
2234 if(!cur) {
2235 result = -1;
2236 } else {
2237 cur->name = strdup(name);
2238 if(cur->name == 0) {
2239 free(cur);
2240 result = -1;
2241 } else {
2242 struct variables *bottom = top_vars;
2243 cur->value = strdup(value);
2244 cur->next = 0;
2245 cur->flg_export = flg_export;
2246 cur->flg_read_only = 0;
2247 while(bottom->next) bottom=bottom->next;
2248 bottom->next = cur;
2249 }
2250 }
2251 }
2252
2253#ifndef __U_BOOT__
2254 if(result==0 && cur->flg_export==1) {
2255 *(value-1) = '=';
2256 result = putenv(name);
2257 } else {
2258#endif
2259 free(name);
2260#ifndef __U_BOOT__
2261 if(result>0) /* equivalent to previous set */
2262 result = 0;
2263 }
2264#endif
2265 return result;
2266}
2267
Heiko Schocher81473f62008-10-15 09:40:28 +02002268void unset_local_var(const char *name)
wdenkfe8c2802002-11-03 00:38:21 +00002269{
2270 struct variables *cur;
2271
2272 if (name) {
2273 for (cur = top_vars; cur; cur=cur->next) {
2274 if(strcmp(cur->name, name)==0)
2275 break;
2276 }
2277 if(cur!=0) {
2278 struct variables *next = top_vars;
2279 if(cur->flg_read_only) {
2280 error_msg("%s: readonly variable", name);
2281 return;
2282 } else {
Heiko Schocher81473f62008-10-15 09:40:28 +02002283#ifndef __U_BOOT__
wdenkfe8c2802002-11-03 00:38:21 +00002284 if(cur->flg_export)
2285 unsetenv(cur->name);
Heiko Schocher81473f62008-10-15 09:40:28 +02002286#endif
wdenkfe8c2802002-11-03 00:38:21 +00002287 free(cur->name);
2288 free(cur->value);
2289 while (next->next != cur)
2290 next = next->next;
2291 next->next = cur->next;
2292 }
2293 free(cur);
2294 }
2295 }
2296}
wdenkfe8c2802002-11-03 00:38:21 +00002297
2298static int is_assignment(const char *s)
2299{
wdenkc26e4542004-04-18 10:13:26 +00002300 if (s == NULL)
2301 return 0;
2302
2303 if (!isalpha(*s)) return 0;
wdenkfe8c2802002-11-03 00:38:21 +00002304 ++s;
2305 while(isalnum(*s) || *s=='_') ++s;
2306 return *s=='=';
2307}
2308
2309#ifndef __U_BOOT__
2310/* the src parameter allows us to peek forward to a possible &n syntax
2311 * for file descriptor duplication, e.g., "2>&1".
2312 * Return code is 0 normally, 1 if a syntax error is detected in src.
2313 * Resource errors (in xmalloc) cause the process to exit */
2314static int setup_redirect(struct p_context *ctx, int fd, redir_type style,
2315 struct in_str *input)
2316{
2317 struct child_prog *child=ctx->child;
2318 struct redir_struct *redir = child->redirects;
2319 struct redir_struct *last_redir=NULL;
2320
2321 /* Create a new redir_struct and drop it onto the end of the linked list */
2322 while(redir) {
2323 last_redir=redir;
2324 redir=redir->next;
2325 }
2326 redir = xmalloc(sizeof(struct redir_struct));
2327 redir->next=NULL;
2328 redir->word.gl_pathv=NULL;
2329 if (last_redir) {
2330 last_redir->next=redir;
2331 } else {
2332 child->redirects=redir;
2333 }
2334
2335 redir->type=style;
2336 redir->fd= (fd==-1) ? redir_table[style].default_fd : fd ;
2337
2338 debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
2339
2340 /* Check for a '2>&1' type redirect */
2341 redir->dup = redirect_dup_num(input);
2342 if (redir->dup == -2) return 1; /* syntax error */
2343 if (redir->dup != -1) {
2344 /* Erik had a check here that the file descriptor in question
2345 * is legit; I postpone that to "run time"
2346 * A "-" representation of "close me" shows up as a -3 here */
2347 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
2348 } else {
2349 /* We do _not_ try to open the file that src points to,
2350 * since we need to return and let src be expanded first.
2351 * Set ctx->pending_redirect, so we know what to do at the
2352 * end of the next parsed word.
2353 */
2354 ctx->pending_redirect = redir;
2355 }
2356 return 0;
2357}
2358#endif
2359
2360struct pipe *new_pipe(void) {
2361 struct pipe *pi;
2362 pi = xmalloc(sizeof(struct pipe));
2363 pi->num_progs = 0;
2364 pi->progs = NULL;
2365 pi->next = NULL;
2366 pi->followup = 0; /* invalid */
Wolfgang Denke98f68b2005-09-28 01:49:47 +02002367 pi->r_mode = RES_NONE;
wdenkfe8c2802002-11-03 00:38:21 +00002368 return pi;
2369}
2370
2371static void initialize_context(struct p_context *ctx)
2372{
2373 ctx->pipe=NULL;
2374#ifndef __U_BOOT__
2375 ctx->pending_redirect=NULL;
2376#endif
2377 ctx->child=NULL;
2378 ctx->list_head=new_pipe();
2379 ctx->pipe=ctx->list_head;
2380 ctx->w=RES_NONE;
2381 ctx->stack=NULL;
2382#ifdef __U_BOOT__
2383 ctx->old_flag=0;
2384#endif
2385 done_command(ctx); /* creates the memory for working child */
2386}
2387
2388/* normal return is 0
2389 * if a reserved word is found, and processed, return 1
2390 * should handle if, then, elif, else, fi, for, while, until, do, done.
2391 * case, function, and select are obnoxious, save those for later.
2392 */
wdenk3e386912003-04-05 00:53:31 +00002393struct reserved_combo {
2394 char *literal;
2395 int code;
2396 long flag;
2397};
2398/* Mostly a list of accepted follow-up reserved words.
2399 * FLAG_END means we are done with the sequence, and are ready
2400 * to turn the compound list into a command.
2401 * FLAG_START means the word must start a new compound list.
2402 */
2403static struct reserved_combo reserved_list[] = {
2404 { "if", RES_IF, FLAG_THEN | FLAG_START },
2405 { "then", RES_THEN, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
2406 { "elif", RES_ELIF, FLAG_THEN },
2407 { "else", RES_ELSE, FLAG_FI },
2408 { "fi", RES_FI, FLAG_END },
2409 { "for", RES_FOR, FLAG_IN | FLAG_START },
2410 { "while", RES_WHILE, FLAG_DO | FLAG_START },
2411 { "until", RES_UNTIL, FLAG_DO | FLAG_START },
2412 { "in", RES_IN, FLAG_DO },
2413 { "do", RES_DO, FLAG_DONE },
2414 { "done", RES_DONE, FLAG_END }
2415};
2416#define NRES (sizeof(reserved_list)/sizeof(struct reserved_combo))
2417
wdenkfe8c2802002-11-03 00:38:21 +00002418int reserved_word(o_string *dest, struct p_context *ctx)
2419{
wdenkfe8c2802002-11-03 00:38:21 +00002420 struct reserved_combo *r;
2421 for (r=reserved_list;
wdenkfe8c2802002-11-03 00:38:21 +00002422 r<reserved_list+NRES; r++) {
2423 if (strcmp(dest->data, r->literal) == 0) {
2424 debug_printf("found reserved word %s, code %d\n",r->literal,r->code);
2425 if (r->flag & FLAG_START) {
2426 struct p_context *new = xmalloc(sizeof(struct p_context));
2427 debug_printf("push stack\n");
2428 if (ctx->w == RES_IN || ctx->w == RES_FOR) {
2429 syntax();
2430 free(new);
2431 ctx->w = RES_SNTX;
2432 b_reset(dest);
2433 return 1;
2434 }
2435 *new = *ctx; /* physical copy */
2436 initialize_context(ctx);
2437 ctx->stack=new;
2438 } else if ( ctx->w == RES_NONE || ! (ctx->old_flag & (1<<r->code))) {
2439 syntax();
2440 ctx->w = RES_SNTX;
2441 b_reset(dest);
2442 return 1;
2443 }
2444 ctx->w=r->code;
2445 ctx->old_flag = r->flag;
2446 if (ctx->old_flag & FLAG_END) {
2447 struct p_context *old;
2448 debug_printf("pop stack\n");
2449 done_pipe(ctx,PIPE_SEQ);
2450 old = ctx->stack;
2451 old->child->group = ctx->list_head;
2452#ifndef __U_BOOT__
2453 old->child->subshell = 0;
2454#endif
2455 *ctx = *old; /* physical copy */
2456 free(old);
2457 }
2458 b_reset (dest);
2459 return 1;
2460 }
2461 }
2462 return 0;
2463}
2464
2465/* normal return is 0.
2466 * Syntax or xglob errors return 1. */
2467static int done_word(o_string *dest, struct p_context *ctx)
2468{
2469 struct child_prog *child=ctx->child;
2470#ifndef __U_BOOT__
2471 glob_t *glob_target;
2472 int gr, flags = 0;
2473#else
2474 char *str, *s;
2475 int argc, cnt;
2476#endif
2477
2478 debug_printf("done_word: %s %p\n", dest->data, child);
2479 if (dest->length == 0 && !dest->nonnull) {
2480 debug_printf(" true null, ignored\n");
2481 return 0;
2482 }
2483#ifndef __U_BOOT__
2484 if (ctx->pending_redirect) {
2485 glob_target = &ctx->pending_redirect->word;
2486 } else {
2487#endif
2488 if (child->group) {
2489 syntax();
2490 return 1; /* syntax error, groups and arglists don't mix */
2491 }
2492 if (!child->argv && (ctx->type & FLAG_PARSE_SEMICOLON)) {
2493 debug_printf("checking %s for reserved-ness\n",dest->data);
2494 if (reserved_word(dest,ctx)) return ctx->w==RES_SNTX;
2495 }
2496#ifndef __U_BOOT__
2497 glob_target = &child->glob_result;
wdenk8bde7f72003-06-27 21:31:46 +00002498 if (child->argv) flags |= GLOB_APPEND;
wdenkfe8c2802002-11-03 00:38:21 +00002499#else
2500 for (cnt = 1, s = dest->data; s && *s; s++) {
2501 if (*s == '\\') s++;
2502 cnt++;
2503 }
2504 str = malloc(cnt);
2505 if (!str) return 1;
2506 if ( child->argv == NULL) {
2507 child->argc=0;
2508 }
2509 argc = ++child->argc;
2510 child->argv = realloc(child->argv, (argc+1)*sizeof(*child->argv));
2511 if (child->argv == NULL) return 1;
2512 child->argv[argc-1]=str;
2513 child->argv[argc]=NULL;
2514 for (s = dest->data; s && *s; s++,str++) {
2515 if (*s == '\\') s++;
2516 *str = *s;
2517 }
2518 *str = '\0';
2519#endif
2520#ifndef __U_BOOT__
2521 }
2522 gr = xglob(dest, flags, glob_target);
2523 if (gr != 0) return 1;
2524#endif
2525
2526 b_reset(dest);
2527#ifndef __U_BOOT__
2528 if (ctx->pending_redirect) {
2529 ctx->pending_redirect=NULL;
2530 if (glob_target->gl_pathc != 1) {
2531 error_msg("ambiguous redirect");
2532 return 1;
2533 }
2534 } else {
2535 child->argv = glob_target->gl_pathv;
2536 }
2537#endif
2538 if (ctx->w == RES_FOR) {
2539 done_word(dest,ctx);
2540 done_pipe(ctx,PIPE_SEQ);
2541 }
2542 return 0;
2543}
2544
2545/* The only possible error here is out of memory, in which case
2546 * xmalloc exits. */
2547static int done_command(struct p_context *ctx)
2548{
2549 /* The child is really already in the pipe structure, so
2550 * advance the pipe counter and make a new, null child.
2551 * Only real trickiness here is that the uncommitted
2552 * child structure, to which ctx->child points, is not
2553 * counted in pi->num_progs. */
2554 struct pipe *pi=ctx->pipe;
2555 struct child_prog *prog=ctx->child;
2556
2557 if (prog && prog->group == NULL
wdenk8bde7f72003-06-27 21:31:46 +00002558 && prog->argv == NULL
wdenkfe8c2802002-11-03 00:38:21 +00002559#ifndef __U_BOOT__
wdenk8bde7f72003-06-27 21:31:46 +00002560 && prog->redirects == NULL) {
wdenkfe8c2802002-11-03 00:38:21 +00002561#else
2562 ) {
2563#endif
2564 debug_printf("done_command: skipping null command\n");
2565 return 0;
2566 } else if (prog) {
2567 pi->num_progs++;
2568 debug_printf("done_command: num_progs incremented to %d\n",pi->num_progs);
2569 } else {
2570 debug_printf("done_command: initializing\n");
2571 }
2572 pi->progs = xrealloc(pi->progs, sizeof(*pi->progs) * (pi->num_progs+1));
2573
2574 prog = pi->progs + pi->num_progs;
2575#ifndef __U_BOOT__
2576 prog->redirects = NULL;
2577#endif
2578 prog->argv = NULL;
2579#ifndef __U_BOOT__
2580 prog->is_stopped = 0;
2581#endif
2582 prog->group = NULL;
2583#ifndef __U_BOOT__
2584 prog->glob_result.gl_pathv = NULL;
2585 prog->family = pi;
2586#endif
2587 prog->sp = 0;
2588 ctx->child = prog;
2589 prog->type = ctx->type;
2590
2591 /* but ctx->pipe and ctx->list_head remain unchanged */
2592 return 0;
2593}
2594
2595static int done_pipe(struct p_context *ctx, pipe_style type)
2596{
2597 struct pipe *new_p;
2598 done_command(ctx); /* implicit closure of previous command */
2599 debug_printf("done_pipe, type %d\n", type);
2600 ctx->pipe->followup = type;
2601 ctx->pipe->r_mode = ctx->w;
2602 new_p=new_pipe();
2603 ctx->pipe->next = new_p;
2604 ctx->pipe = new_p;
2605 ctx->child = NULL;
2606 done_command(ctx); /* set up new pipe to accept commands */
2607 return 0;
2608}
2609
2610#ifndef __U_BOOT__
2611/* peek ahead in the in_str to find out if we have a "&n" construct,
2612 * as in "2>&1", that represents duplicating a file descriptor.
2613 * returns either -2 (syntax error), -1 (no &), or the number found.
2614 */
2615static int redirect_dup_num(struct in_str *input)
2616{
2617 int ch, d=0, ok=0;
2618 ch = b_peek(input);
2619 if (ch != '&') return -1;
2620
2621 b_getch(input); /* get the & */
2622 ch=b_peek(input);
2623 if (ch == '-') {
2624 b_getch(input);
2625 return -3; /* "-" represents "close me" */
2626 }
2627 while (isdigit(ch)) {
2628 d = d*10+(ch-'0');
2629 ok=1;
2630 b_getch(input);
2631 ch = b_peek(input);
2632 }
2633 if (ok) return d;
2634
2635 error_msg("ambiguous redirect");
2636 return -2;
2637}
2638
2639/* If a redirect is immediately preceded by a number, that number is
2640 * supposed to tell which file descriptor to redirect. This routine
2641 * looks for such preceding numbers. In an ideal world this routine
2642 * needs to handle all the following classes of redirects...
2643 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
2644 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
2645 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
2646 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
2647 * A -1 output from this program means no valid number was found, so the
2648 * caller should use the appropriate default for this redirection.
2649 */
2650static int redirect_opt_num(o_string *o)
2651{
2652 int num;
2653
2654 if (o->length==0) return -1;
2655 for(num=0; num<o->length; num++) {
2656 if (!isdigit(*(o->data+num))) {
2657 return -1;
2658 }
2659 }
2660 /* reuse num (and save an int) */
2661 num=atoi(o->data);
2662 b_reset(o);
2663 return num;
2664}
2665
2666FILE *generate_stream_from_list(struct pipe *head)
2667{
2668 FILE *pf;
2669#if 1
2670 int pid, channel[2];
2671 if (pipe(channel)<0) perror_msg_and_die("pipe");
2672 pid=fork();
2673 if (pid<0) {
2674 perror_msg_and_die("fork");
2675 } else if (pid==0) {
2676 close(channel[0]);
2677 if (channel[1] != 1) {
2678 dup2(channel[1],1);
2679 close(channel[1]);
2680 }
2681#if 0
2682#define SURROGATE "surrogate response"
2683 write(1,SURROGATE,sizeof(SURROGATE));
2684 _exit(run_list(head));
2685#else
2686 _exit(run_list_real(head)); /* leaks memory */
2687#endif
2688 }
2689 debug_printf("forked child %d\n",pid);
2690 close(channel[1]);
2691 pf = fdopen(channel[0],"r");
2692 debug_printf("pipe on FILE *%p\n",pf);
2693#else
2694 free_pipe_list(head,0);
2695 pf=popen("echo surrogate response","r");
2696 debug_printf("started fake pipe on FILE *%p\n",pf);
2697#endif
2698 return pf;
2699}
2700
2701/* this version hacked for testing purposes */
2702/* return code is exit status of the process that is run. */
2703static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end)
2704{
2705 int retcode;
2706 o_string result=NULL_O_STRING;
2707 struct p_context inner;
2708 FILE *p;
2709 struct in_str pipe_str;
2710 initialize_context(&inner);
2711
2712 /* recursion to generate command */
2713 retcode = parse_stream(&result, &inner, input, subst_end);
2714 if (retcode != 0) return retcode; /* syntax error or EOF */
2715 done_word(&result, &inner);
2716 done_pipe(&inner, PIPE_SEQ);
2717 b_free(&result);
2718
2719 p=generate_stream_from_list(inner.list_head);
2720 if (p==NULL) return 1;
2721 mark_open(fileno(p));
2722 setup_file_in_str(&pipe_str, p);
2723
2724 /* now send results of command back into original context */
2725 retcode = parse_stream(dest, ctx, &pipe_str, '\0');
2726 /* XXX In case of a syntax error, should we try to kill the child?
2727 * That would be tough to do right, so just read until EOF. */
2728 if (retcode == 1) {
2729 while (b_getch(&pipe_str)!=EOF) { /* discard */ };
2730 }
2731
2732 debug_printf("done reading from pipe, pclose()ing\n");
2733 /* This is the step that wait()s for the child. Should be pretty
2734 * safe, since we just read an EOF from its stdout. We could try
2735 * to better, by using wait(), and keeping track of background jobs
2736 * at the same time. That would be a lot of work, and contrary
2737 * to the KISS philosophy of this program. */
2738 mark_closed(fileno(p));
2739 retcode=pclose(p);
2740 free_pipe_list(inner.list_head,0);
2741 debug_printf("pclosed, retcode=%d\n",retcode);
2742 /* XXX this process fails to trim a single trailing newline */
2743 return retcode;
2744}
2745
2746static int parse_group(o_string *dest, struct p_context *ctx,
2747 struct in_str *input, int ch)
2748{
2749 int rcode, endch=0;
2750 struct p_context sub;
2751 struct child_prog *child = ctx->child;
2752 if (child->argv) {
2753 syntax();
2754 return 1; /* syntax error, groups and arglists don't mix */
2755 }
2756 initialize_context(&sub);
2757 switch(ch) {
2758 case '(': endch=')'; child->subshell=1; break;
2759 case '{': endch='}'; break;
2760 default: syntax(); /* really logic error */
2761 }
2762 rcode=parse_stream(dest,&sub,input,endch);
2763 done_word(dest,&sub); /* finish off the final word in the subcontext */
2764 done_pipe(&sub, PIPE_SEQ); /* and the final command there, too */
2765 child->group = sub.list_head;
2766 return rcode;
2767 /* child remains "open", available for possible redirects */
2768}
2769#endif
2770
2771/* basically useful version until someone wants to get fancier,
2772 * see the bash man page under "Parameter Expansion" */
2773static char *lookup_param(char *src)
2774{
wdenkc26e4542004-04-18 10:13:26 +00002775 char *p;
2776
2777 if (!src)
2778 return NULL;
2779
wdenkfe8c2802002-11-03 00:38:21 +00002780 p = getenv(src);
2781 if (!p)
2782 p = get_local_var(src);
wdenkc26e4542004-04-18 10:13:26 +00002783
wdenkfe8c2802002-11-03 00:38:21 +00002784 return p;
2785}
2786
wdenkc26e4542004-04-18 10:13:26 +00002787#ifdef __U_BOOT__
2788static char *get_dollar_var(char ch)
2789{
2790 static char buf[40];
2791
2792 buf[0] = '\0';
2793 switch (ch) {
2794 case '?':
2795 sprintf(buf, "%u", (unsigned int)last_return_code);
2796 break;
2797 default:
2798 return NULL;
2799 }
2800 return buf;
2801}
2802#endif
2803
wdenkfe8c2802002-11-03 00:38:21 +00002804/* return code: 0 for OK, 1 for syntax error */
2805static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input)
2806{
2807#ifndef __U_BOOT__
2808 int i, advance=0;
2809#else
2810 int advance=0;
2811#endif
2812#ifndef __U_BOOT__
2813 char sep[]=" ";
2814#endif
2815 int ch = input->peek(input); /* first character after the $ */
2816 debug_printf("handle_dollar: ch=%c\n",ch);
2817 if (isalpha(ch)) {
2818 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2819 ctx->child->sp++;
2820 while(ch=b_peek(input),isalnum(ch) || ch=='_') {
2821 b_getch(input);
2822 b_addchr(dest,ch);
2823 }
2824 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2825#ifndef __U_BOOT__
2826 } else if (isdigit(ch)) {
2827 i = ch-'0'; /* XXX is $0 special? */
2828 if (i<global_argc) {
2829 parse_string(dest, ctx, global_argv[i]); /* recursion */
2830 }
2831 advance = 1;
2832#endif
2833 } else switch (ch) {
2834#ifndef __U_BOOT__
2835 case '$':
2836 b_adduint(dest,getpid());
2837 advance = 1;
2838 break;
2839 case '!':
2840 if (last_bg_pid > 0) b_adduint(dest, last_bg_pid);
2841 advance = 1;
2842 break;
2843#endif
2844 case '?':
wdenkc26e4542004-04-18 10:13:26 +00002845#ifndef __U_BOOT__
wdenkfe8c2802002-11-03 00:38:21 +00002846 b_adduint(dest,last_return_code);
wdenkc26e4542004-04-18 10:13:26 +00002847#else
2848 ctx->child->sp++;
2849 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2850 b_addchr(dest, '$');
2851 b_addchr(dest, '?');
2852 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2853#endif
wdenkfe8c2802002-11-03 00:38:21 +00002854 advance = 1;
2855 break;
2856#ifndef __U_BOOT__
2857 case '#':
2858 b_adduint(dest,global_argc ? global_argc-1 : 0);
2859 advance = 1;
2860 break;
2861#endif
2862 case '{':
2863 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2864 ctx->child->sp++;
2865 b_getch(input);
2866 /* XXX maybe someone will try to escape the '}' */
2867 while(ch=b_getch(input),ch!=EOF && ch!='}') {
2868 b_addchr(dest,ch);
2869 }
2870 if (ch != '}') {
2871 syntax();
2872 return 1;
2873 }
2874 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2875 break;
2876#ifndef __U_BOOT__
2877 case '(':
2878 b_getch(input);
2879 process_command_subs(dest, ctx, input, ')');
2880 break;
2881 case '*':
2882 sep[0]=ifs[0];
2883 for (i=1; i<global_argc; i++) {
2884 parse_string(dest, ctx, global_argv[i]);
2885 if (i+1 < global_argc) parse_string(dest, ctx, sep);
2886 }
2887 break;
2888 case '@':
2889 case '-':
2890 case '_':
2891 /* still unhandled, but should be eventually */
2892 error_msg("unhandled syntax: $%c",ch);
2893 return 1;
2894 break;
2895#endif
2896 default:
2897 b_addqchr(dest,'$',dest->quote);
2898 }
2899 /* Eat the character if the flag was set. If the compiler
2900 * is smart enough, we could substitute "b_getch(input);"
2901 * for all the "advance = 1;" above, and also end up with
2902 * a nice size-optimized program. Hah! That'll be the day.
2903 */
2904 if (advance) b_getch(input);
2905 return 0;
2906}
2907
2908#ifndef __U_BOOT__
2909int parse_string(o_string *dest, struct p_context *ctx, const char *src)
2910{
2911 struct in_str foo;
2912 setup_string_in_str(&foo, src);
2913 return parse_stream(dest, ctx, &foo, '\0');
2914}
2915#endif
2916
2917/* return code is 0 for normal exit, 1 for syntax error */
2918int parse_stream(o_string *dest, struct p_context *ctx,
2919 struct in_str *input, int end_trigger)
2920{
2921 unsigned int ch, m;
2922#ifndef __U_BOOT__
2923 int redir_fd;
2924 redir_type redir_style;
2925#endif
2926 int next;
2927
2928 /* Only double-quote state is handled in the state variable dest->quote.
2929 * A single-quote triggers a bypass of the main loop until its mate is
2930 * found. When recursing, quote state is passed in via dest->quote. */
2931
2932 debug_printf("parse_stream, end_trigger=%d\n",end_trigger);
2933 while ((ch=b_getch(input))!=EOF) {
2934 m = map[ch];
2935#ifdef __U_BOOT__
2936 if (input->__promptme == 0) return 1;
2937#endif
2938 next = (ch == '\n') ? 0 : b_peek(input);
wdenkc26e4542004-04-18 10:13:26 +00002939
2940 debug_printf("parse_stream: ch=%c (%d) m=%d quote=%d - %c\n",
2941 ch >= ' ' ? ch : '.', ch, m,
2942 dest->quote, ctx->stack == NULL ? '*' : '.');
2943
wdenkfe8c2802002-11-03 00:38:21 +00002944 if (m==0 || ((m==1 || m==2) && dest->quote)) {
2945 b_addqchr(dest, ch, dest->quote);
2946 } else {
2947 if (m==2) { /* unquoted IFS */
2948 if (done_word(dest, ctx)) {
2949 return 1;
2950 }
2951 /* If we aren't performing a substitution, treat a newline as a
2952 * command separator. */
2953 if (end_trigger != '\0' && ch=='\n')
2954 done_pipe(ctx,PIPE_SEQ);
2955 }
2956 if (ch == end_trigger && !dest->quote && ctx->w==RES_NONE) {
2957 debug_printf("leaving parse_stream (triggered)\n");
2958 return 0;
2959 }
2960#if 0
2961 if (ch=='\n') {
2962 /* Yahoo! Time to run with it! */
2963 done_pipe(ctx,PIPE_SEQ);
2964 run_list(ctx->list_head);
2965 initialize_context(ctx);
2966 }
2967#endif
2968 if (m!=2) switch (ch) {
2969 case '#':
2970 if (dest->length == 0 && !dest->quote) {
2971 while(ch=b_peek(input),ch!=EOF && ch!='\n') { b_getch(input); }
2972 } else {
2973 b_addqchr(dest, ch, dest->quote);
2974 }
2975 break;
2976 case '\\':
2977 if (next == EOF) {
2978 syntax();
2979 return 1;
2980 }
2981 b_addqchr(dest, '\\', dest->quote);
2982 b_addqchr(dest, b_getch(input), dest->quote);
2983 break;
2984 case '$':
2985 if (handle_dollar(dest, ctx, input)!=0) return 1;
2986 break;
2987 case '\'':
2988 dest->nonnull = 1;
2989 while(ch=b_getch(input),ch!=EOF && ch!='\'') {
2990#ifdef __U_BOOT__
2991 if(input->__promptme == 0) return 1;
2992#endif
2993 b_addchr(dest,ch);
2994 }
2995 if (ch==EOF) {
2996 syntax();
2997 return 1;
2998 }
2999 break;
3000 case '"':
3001 dest->nonnull = 1;
3002 dest->quote = !dest->quote;
3003 break;
3004#ifndef __U_BOOT__
3005 case '`':
3006 process_command_subs(dest, ctx, input, '`');
3007 break;
3008 case '>':
3009 redir_fd = redirect_opt_num(dest);
3010 done_word(dest, ctx);
3011 redir_style=REDIRECT_OVERWRITE;
3012 if (next == '>') {
3013 redir_style=REDIRECT_APPEND;
3014 b_getch(input);
3015 } else if (next == '(') {
3016 syntax(); /* until we support >(list) Process Substitution */
3017 return 1;
3018 }
3019 setup_redirect(ctx, redir_fd, redir_style, input);
3020 break;
3021 case '<':
3022 redir_fd = redirect_opt_num(dest);
3023 done_word(dest, ctx);
3024 redir_style=REDIRECT_INPUT;
3025 if (next == '<') {
3026 redir_style=REDIRECT_HEREIS;
3027 b_getch(input);
3028 } else if (next == '>') {
3029 redir_style=REDIRECT_IO;
3030 b_getch(input);
3031 } else if (next == '(') {
3032 syntax(); /* until we support <(list) Process Substitution */
3033 return 1;
3034 }
3035 setup_redirect(ctx, redir_fd, redir_style, input);
3036 break;
3037#endif
3038 case ';':
3039 done_word(dest, ctx);
3040 done_pipe(ctx,PIPE_SEQ);
3041 break;
3042 case '&':
3043 done_word(dest, ctx);
3044 if (next=='&') {
3045 b_getch(input);
3046 done_pipe(ctx,PIPE_AND);
3047 } else {
3048#ifndef __U_BOOT__
3049 done_pipe(ctx,PIPE_BG);
3050#else
3051 syntax_err();
3052 return 1;
3053#endif
3054 }
3055 break;
3056 case '|':
3057 done_word(dest, ctx);
3058 if (next=='|') {
3059 b_getch(input);
3060 done_pipe(ctx,PIPE_OR);
3061 } else {
3062 /* we could pick up a file descriptor choice here
3063 * with redirect_opt_num(), but bash doesn't do it.
3064 * "echo foo 2| cat" yields "foo 2". */
3065#ifndef __U_BOOT__
3066 done_command(ctx);
3067#else
3068 syntax_err();
3069 return 1;
3070#endif
3071 }
3072 break;
3073#ifndef __U_BOOT__
3074 case '(':
3075 case '{':
3076 if (parse_group(dest, ctx, input, ch)!=0) return 1;
3077 break;
3078 case ')':
3079 case '}':
3080 syntax(); /* Proper use of this character caught by end_trigger */
3081 return 1;
3082 break;
3083#endif
3084 default:
3085 syntax(); /* this is really an internal logic error */
3086 return 1;
3087 }
3088 }
3089 }
3090 /* complain if quote? No, maybe we just finished a command substitution
3091 * that was quoted. Example:
3092 * $ echo "`cat foo` plus more"
3093 * and we just got the EOF generated by the subshell that ran "cat foo"
3094 * The only real complaint is if we got an EOF when end_trigger != '\0',
3095 * that is, we were really supposed to get end_trigger, and never got
3096 * one before the EOF. Can't use the standard "syntax error" return code,
3097 * so that parse_stream_outer can distinguish the EOF and exit smoothly. */
3098 debug_printf("leaving parse_stream (EOF)\n");
3099 if (end_trigger != '\0') return -1;
3100 return 0;
3101}
3102
3103void mapset(const unsigned char *set, int code)
3104{
3105 const unsigned char *s;
3106 for (s=set; *s; s++) map[*s] = code;
3107}
3108
3109void update_ifs_map(void)
3110{
3111 /* char *ifs and char map[256] are both globals. */
Wolfgang Denk77ddac92005-10-13 16:45:02 +02003112 ifs = (uchar *)getenv("IFS");
3113 if (ifs == NULL) ifs=(uchar *)" \t\n";
wdenkfe8c2802002-11-03 00:38:21 +00003114 /* Precompute a list of 'flow through' behavior so it can be treated
3115 * quickly up front. Computation is necessary because of IFS.
3116 * Special case handling of IFS == " \t\n" is not implemented.
3117 * The map[] array only really needs two bits each, and on most machines
3118 * that would be faster because of the reduced L1 cache footprint.
3119 */
3120 memset(map,0,sizeof(map)); /* most characters flow through always */
3121#ifndef __U_BOOT__
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#else
Wolfgang Denk77ddac92005-10-13 16:45:02 +02003125 mapset((uchar *)"\\$'\"", 3); /* never flow through */
3126 mapset((uchar *)";&|#", 1); /* flow through if quoted */
wdenkfe8c2802002-11-03 00:38:21 +00003127#endif
3128 mapset(ifs, 2); /* also flow through if quoted */
3129}
3130
3131/* most recursion does not come through here, the exeception is
3132 * from builtin_source() */
3133int parse_stream_outer(struct in_str *inp, int flag)
3134{
3135
3136 struct p_context ctx;
3137 o_string temp=NULL_O_STRING;
3138 int rcode;
3139#ifdef __U_BOOT__
3140 int code = 0;
3141#endif
3142 do {
3143 ctx.type = flag;
3144 initialize_context(&ctx);
3145 update_ifs_map();
Wolfgang Denk77ddac92005-10-13 16:45:02 +02003146 if (!(flag & FLAG_PARSE_SEMICOLON) || (flag & FLAG_REPARSING)) mapset((uchar *)";$&|", 0);
wdenkfe8c2802002-11-03 00:38:21 +00003147 inp->promptmode=1;
3148 rcode = parse_stream(&temp, &ctx, inp, '\n');
3149#ifdef __U_BOOT__
3150 if (rcode == 1) flag_repeat = 0;
3151#endif
3152 if (rcode != 1 && ctx.old_flag != 0) {
3153 syntax();
3154#ifdef __U_BOOT__
3155 flag_repeat = 0;
3156#endif
3157 }
3158 if (rcode != 1 && ctx.old_flag == 0) {
3159 done_word(&temp, &ctx);
3160 done_pipe(&ctx,PIPE_SEQ);
3161#ifndef __U_BOOT__
3162 run_list(ctx.list_head);
3163#else
wdenkc26e4542004-04-18 10:13:26 +00003164 code = run_list(ctx.list_head);
3165 if (code == -2) { /* exit */
3166 b_free(&temp);
3167 code = 0;
3168 /* XXX hackish way to not allow exit from main loop */
3169 if (inp->peek == file_peek) {
3170 printf("exit not allowed from main input shell.\n");
3171 continue;
3172 }
3173 break;
3174 }
3175 if (code == -1)
wdenkfe8c2802002-11-03 00:38:21 +00003176 flag_repeat = 0;
3177#endif
3178 } else {
3179 if (ctx.old_flag != 0) {
3180 free(ctx.stack);
3181 b_reset(&temp);
3182 }
3183#ifdef __U_BOOT__
3184 if (inp->__promptme == 0) printf("<INTERRUPT>\n");
3185 inp->__promptme = 1;
3186#endif
3187 temp.nonnull = 0;
3188 temp.quote = 0;
3189 inp->p = NULL;
3190 free_pipe_list(ctx.list_head,0);
3191 }
3192 b_free(&temp);
3193 } while (rcode != -1 && !(flag & FLAG_EXIT_FROM_LOOP)); /* loop on syntax errors, return on EOF */
3194#ifndef __U_BOOT__
3195 return 0;
3196#else
3197 return (code != 0) ? 1 : 0;
3198#endif /* __U_BOOT__ */
3199}
3200
3201#ifndef __U_BOOT__
3202static int parse_string_outer(const char *s, int flag)
3203#else
Jason Hobbsc8a20792011-08-31 05:37:24 +00003204int parse_string_outer(const char *s, int flag)
wdenkfe8c2802002-11-03 00:38:21 +00003205#endif /* __U_BOOT__ */
3206{
3207 struct in_str input;
3208#ifdef __U_BOOT__
3209 char *p = NULL;
3210 int rcode;
3211 if ( !s || !*s)
3212 return 1;
3213 if (!(p = strchr(s, '\n')) || *++p) {
3214 p = xmalloc(strlen(s) + 2);
3215 strcpy(p, s);
3216 strcat(p, "\n");
3217 setup_string_in_str(&input, p);
3218 rcode = parse_stream_outer(&input, flag);
3219 free(p);
3220 return rcode;
3221 } else {
3222#endif
3223 setup_string_in_str(&input, s);
3224 return parse_stream_outer(&input, flag);
3225#ifdef __U_BOOT__
3226 }
3227#endif
3228}
3229
3230#ifndef __U_BOOT__
3231static int parse_file_outer(FILE *f)
3232#else
3233int parse_file_outer(void)
3234#endif
3235{
3236 int rcode;
3237 struct in_str input;
3238#ifndef __U_BOOT__
3239 setup_file_in_str(&input, f);
3240#else
3241 setup_file_in_str(&input);
3242#endif
3243 rcode = parse_stream_outer(&input, FLAG_PARSE_SEMICOLON);
3244 return rcode;
3245}
3246
3247#ifdef __U_BOOT__
Wolfgang Denk2e5167c2010-10-28 20:00:11 +02003248#ifdef CONFIG_NEEDS_MANUAL_RELOC
wdenk3e386912003-04-05 00:53:31 +00003249static void u_boot_hush_reloc(void)
3250{
wdenk3e386912003-04-05 00:53:31 +00003251 unsigned long addr;
3252 struct reserved_combo *r;
3253
3254 for (r=reserved_list; r<reserved_list+NRES; r++) {
3255 addr = (ulong) (r->literal) + gd->reloc_off;
3256 r->literal = (char *)addr;
3257 }
3258}
Peter Tyser521af042009-09-21 11:20:36 -05003259#endif
wdenk3e386912003-04-05 00:53:31 +00003260
wdenkfe8c2802002-11-03 00:38:21 +00003261int u_boot_hush_start(void)
3262{
wdenk2d5b5612003-10-14 19:43:55 +00003263 if (top_vars == NULL) {
3264 top_vars = malloc(sizeof(struct variables));
3265 top_vars->name = "HUSH_VERSION";
3266 top_vars->value = "0.01";
3267 top_vars->next = 0;
3268 top_vars->flg_export = 0;
3269 top_vars->flg_read_only = 1;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +02003270#ifdef CONFIG_NEEDS_MANUAL_RELOC
wdenk2d5b5612003-10-14 19:43:55 +00003271 u_boot_hush_reloc();
Peter Tyser521af042009-09-21 11:20:36 -05003272#endif
wdenk2d5b5612003-10-14 19:43:55 +00003273 }
wdenkfe8c2802002-11-03 00:38:21 +00003274 return 0;
3275}
3276
3277static void *xmalloc(size_t size)
3278{
3279 void *p = NULL;
3280
3281 if (!(p = malloc(size))) {
3282 printf("ERROR : memory not allocated\n");
3283 for(;;);
3284 }
3285 return p;
3286}
3287
3288static void *xrealloc(void *ptr, size_t size)
3289{
3290 void *p = NULL;
3291
3292 if (!(p = realloc(ptr, size))) {
3293 printf("ERROR : memory not allocated\n");
3294 for(;;);
3295 }
3296 return p;
3297}
3298#endif /* __U_BOOT__ */
3299
3300#ifndef __U_BOOT__
3301/* Make sure we have a controlling tty. If we get started under a job
3302 * aware app (like bash for example), make sure we are now in charge so
3303 * we don't fight over who gets the foreground */
wdenkd0fb80c2003-01-11 09:48:40 +00003304static void setup_job_control(void)
wdenkfe8c2802002-11-03 00:38:21 +00003305{
3306 static pid_t shell_pgrp;
3307 /* Loop until we are in the foreground. */
3308 while (tcgetpgrp (shell_terminal) != (shell_pgrp = getpgrp ()))
3309 kill (- shell_pgrp, SIGTTIN);
3310
3311 /* Ignore interactive and job-control signals. */
3312 signal(SIGINT, SIG_IGN);
3313 signal(SIGQUIT, SIG_IGN);
3314 signal(SIGTERM, SIG_IGN);
3315 signal(SIGTSTP, SIG_IGN);
3316 signal(SIGTTIN, SIG_IGN);
3317 signal(SIGTTOU, SIG_IGN);
3318 signal(SIGCHLD, SIG_IGN);
3319
3320 /* Put ourselves in our own process group. */
3321 setsid();
3322 shell_pgrp = getpid ();
3323 setpgid (shell_pgrp, shell_pgrp);
3324
3325 /* Grab control of the terminal. */
3326 tcsetpgrp(shell_terminal, shell_pgrp);
3327}
3328
Wolfgang Denk54841ab2010-06-28 22:00:46 +02003329int hush_main(int argc, char * const *argv)
wdenkfe8c2802002-11-03 00:38:21 +00003330{
3331 int opt;
3332 FILE *input;
3333 char **e = environ;
3334
3335 /* XXX what should these be while sourcing /etc/profile? */
3336 global_argc = argc;
3337 global_argv = argv;
3338
3339 /* (re?) initialize globals. Sometimes hush_main() ends up calling
3340 * hush_main(), therefore we cannot rely on the BSS to zero out this
3341 * stuff. Reset these to 0 every time. */
3342 ifs = NULL;
3343 /* map[] is taken care of with call to update_ifs_map() */
3344 fake_mode = 0;
3345 interactive = 0;
3346 close_me_head = NULL;
3347 last_bg_pid = 0;
3348 job_list = NULL;
3349 last_jobid = 0;
3350
3351 /* Initialize some more globals to non-zero values */
3352 set_cwd();
wdenkd0fb80c2003-01-11 09:48:40 +00003353#ifdef CONFIG_FEATURE_COMMAND_EDITING
wdenkfe8c2802002-11-03 00:38:21 +00003354 cmdedit_set_initial_prompt();
3355#else
3356 PS1 = NULL;
3357#endif
3358 PS2 = "> ";
3359
3360 /* initialize our shell local variables with the values
3361 * currently living in the environment */
3362 if (e) {
3363 for (; *e; e++)
3364 set_local_var(*e, 2); /* without call putenv() */
3365 }
3366
3367 last_return_code=EXIT_SUCCESS;
3368
3369
3370 if (argv[0] && argv[0][0] == '-') {
3371 debug_printf("\nsourcing /etc/profile\n");
3372 if ((input = fopen("/etc/profile", "r")) != NULL) {
3373 mark_open(fileno(input));
3374 parse_file_outer(input);
3375 mark_closed(fileno(input));
3376 fclose(input);
3377 }
3378 }
3379 input=stdin;
3380
3381 while ((opt = getopt(argc, argv, "c:xif")) > 0) {
3382 switch (opt) {
3383 case 'c':
3384 {
3385 global_argv = argv+optind;
3386 global_argc = argc-optind;
3387 opt = parse_string_outer(optarg, FLAG_PARSE_SEMICOLON);
3388 goto final_return;
3389 }
3390 break;
3391 case 'i':
3392 interactive++;
3393 break;
3394 case 'f':
3395 fake_mode++;
3396 break;
3397 default:
3398#ifndef BB_VER
3399 fprintf(stderr, "Usage: sh [FILE]...\n"
3400 " or: sh -c command [args]...\n\n");
3401 exit(EXIT_FAILURE);
3402#else
3403 show_usage();
3404#endif
3405 }
3406 }
3407 /* A shell is interactive if the `-i' flag was given, or if all of
3408 * the following conditions are met:
3409 * no -c command
3410 * no arguments remaining or the -s flag given
3411 * standard input is a terminal
3412 * standard output is a terminal
3413 * Refer to Posix.2, the description of the `sh' utility. */
3414 if (argv[optind]==NULL && input==stdin &&
3415 isatty(fileno(stdin)) && isatty(fileno(stdout))) {
3416 interactive++;
3417 }
3418
3419 debug_printf("\ninteractive=%d\n", interactive);
3420 if (interactive) {
3421 /* Looks like they want an interactive shell */
wdenk8bde7f72003-06-27 21:31:46 +00003422#ifndef CONFIG_FEATURE_SH_EXTRA_QUIET
wdenkd0fb80c2003-01-11 09:48:40 +00003423 printf( "\n\n" BB_BANNER " hush - the humble shell v0.01 (testing)\n");
3424 printf( "Enter 'help' for a list of built-in commands.\n\n");
3425#endif
wdenkfe8c2802002-11-03 00:38:21 +00003426 setup_job_control();
3427 }
3428
3429 if (argv[optind]==NULL) {
3430 opt=parse_file_outer(stdin);
3431 goto final_return;
3432 }
3433
3434 debug_printf("\nrunning script '%s'\n", argv[optind]);
3435 global_argv = argv+optind;
3436 global_argc = argc-optind;
3437 input = xfopen(argv[optind], "r");
3438 opt = parse_file_outer(input);
3439
wdenkd0fb80c2003-01-11 09:48:40 +00003440#ifdef CONFIG_FEATURE_CLEAN_UP
wdenkfe8c2802002-11-03 00:38:21 +00003441 fclose(input);
3442 if (cwd && cwd != unknown)
3443 free((char*)cwd);
3444 {
3445 struct variables *cur, *tmp;
3446 for(cur = top_vars; cur; cur = tmp) {
3447 tmp = cur->next;
3448 if (!cur->flg_read_only) {
3449 free(cur->name);
3450 free(cur->value);
3451 free(cur);
3452 }
3453 }
3454 }
3455#endif
3456
3457final_return:
3458 return(opt?opt:last_return_code);
3459}
3460#endif
3461
3462static char *insert_var_value(char *inp)
3463{
3464 int res_str_len = 0;
3465 int len;
3466 int done = 0;
3467 char *p, *p1, *res_str = NULL;
3468
3469 while ((p = strchr(inp, SPECIAL_VAR_SYMBOL))) {
3470 if (p != inp) {
3471 len = p - inp;
3472 res_str = xrealloc(res_str, (res_str_len + len));
3473 strncpy((res_str + res_str_len), inp, len);
3474 res_str_len += len;
3475 }
3476 inp = ++p;
3477 p = strchr(inp, SPECIAL_VAR_SYMBOL);
3478 *p = '\0';
3479 if ((p1 = lookup_param(inp))) {
3480 len = res_str_len + strlen(p1);
3481 res_str = xrealloc(res_str, (1 + len));
3482 strcpy((res_str + res_str_len), p1);
3483 res_str_len = len;
3484 }
3485 *p = SPECIAL_VAR_SYMBOL;
3486 inp = ++p;
3487 done = 1;
3488 }
3489 if (done) {
3490 res_str = xrealloc(res_str, (1 + res_str_len + strlen(inp)));
3491 strcpy((res_str + res_str_len), inp);
3492 while ((p = strchr(res_str, '\n'))) {
3493 *p = ' ';
3494 }
3495 }
3496 return (res_str == NULL) ? inp : res_str;
3497}
3498
3499static char **make_list_in(char **inp, char *name)
3500{
3501 int len, i;
3502 int name_len = strlen(name);
3503 int n = 0;
3504 char **list;
3505 char *p1, *p2, *p3;
3506
3507 /* create list of variable values */
3508 list = xmalloc(sizeof(*list));
3509 for (i = 0; inp[i]; i++) {
3510 p3 = insert_var_value(inp[i]);
3511 p1 = p3;
3512 while (*p1) {
3513 if ((*p1 == ' ')) {
3514 p1++;
3515 continue;
3516 }
3517 if ((p2 = strchr(p1, ' '))) {
3518 len = p2 - p1;
3519 } else {
3520 len = strlen(p1);
3521 p2 = p1 + len;
3522 }
3523 /* we use n + 2 in realloc for list,because we add
3524 * new element and then we will add NULL element */
3525 list = xrealloc(list, sizeof(*list) * (n + 2));
3526 list[n] = xmalloc(2 + name_len + len);
3527 strcpy(list[n], name);
3528 strcat(list[n], "=");
3529 strncat(list[n], p1, len);
3530 list[n++][name_len + len + 1] = '\0';
3531 p1 = p2;
3532 }
3533 if (p3 != inp[i]) free(p3);
3534 }
3535 list[n] = NULL;
3536 return list;
3537}
3538
3539/* Make new string for parser */
3540static char * make_string(char ** inp)
3541{
3542 char *p;
3543 char *str = NULL;
3544 int n;
3545 int len = 2;
3546
3547 for (n = 0; inp[n]; n++) {
3548 p = insert_var_value(inp[n]);
3549 str = xrealloc(str, (len + strlen(p)));
3550 if (n) {
3551 strcat(str, " ");
3552 } else {
3553 *str = '\0';
3554 }
3555 strcat(str, p);
3556 len = strlen(str) + 3;
3557 if (p != inp[n]) free(p);
3558 }
3559 len = strlen(str);
3560 *(str + len) = '\n';
3561 *(str + len + 1) = '\0';
3562 return str;
3563}
3564
Heiko Schocher81473f62008-10-15 09:40:28 +02003565#ifdef __U_BOOT__
Wolfgang Denk54841ab2010-06-28 22:00:46 +02003566int do_showvar (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Heiko Schocher81473f62008-10-15 09:40:28 +02003567{
3568 int i, k;
3569 int rcode = 0;
3570 struct variables *cur;
3571
3572 if (argc == 1) { /* Print all env variables */
3573 for (cur = top_vars; cur; cur = cur->next) {
3574 printf ("%s=%s\n", cur->name, cur->value);
3575 if (ctrlc ()) {
3576 puts ("\n ** Abort\n");
3577 return 1;
3578 }
3579 }
3580 return 0;
3581 }
3582 for (i = 1; i < argc; ++i) { /* print single env variables */
3583 char *name = argv[i];
3584
3585 k = -1;
3586 for (cur = top_vars; cur; cur = cur->next) {
3587 if(strcmp (cur->name, name) == 0) {
3588 k = 0;
3589 printf ("%s=%s\n", cur->name, cur->value);
3590 }
3591 if (ctrlc ()) {
3592 puts ("\n ** Abort\n");
3593 return 1;
3594 }
3595 }
3596 if (k < 0) {
3597 printf ("## Error: \"%s\" not defined\n", name);
3598 rcode ++;
3599 }
3600 }
3601 return rcode;
3602}
3603
3604U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02003605 showvar, CONFIG_SYS_MAXARGS, 1, do_showvar,
Peter Tyser2fb26042009-01-27 18:03:12 -06003606 "print local hushshell variables",
Heiko Schocher81473f62008-10-15 09:40:28 +02003607 "\n - print values of all hushshell variables\n"
3608 "showvar name ...\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02003609 " - print value of hushshell variable 'name'"
Heiko Schocher81473f62008-10-15 09:40:28 +02003610);
3611
3612#endif
wdenkfe8c2802002-11-03 00:38:21 +00003613/****************************************************************************/