blob: 8b7981b4d1808e224699306a1e842beef5e9bc2c [file] [log] [blame]
Erik Andersen3522eb12000-03-12 23:49:18 +00001/* vi: set sw=4 ts=4: */
2/*
Erik Andersen6acaa402000-03-26 14:03:20 +00003 * lash -- the BusyBox Lame-Ass SHell
Erik Andersen3522eb12000-03-12 23:49:18 +00004 *
Eric Andersen8ec10a92001-01-27 09:33:39 +00005 * Copyright (C) 1999,2000,2001 by Lineo, inc.
Erik Andersen3522eb12000-03-12 23:49:18 +00006 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
7 *
8 * Based in part on ladsh.c by Michael K. Johnson and Erik W. Troan, which is
9 * under the following liberal license: "We have placed this source code in the
10 * public domain. Use it in any project, free or commercial."
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 *
26 */
27
Eric Andersen8ea28be2001-01-05 20:58:22 +000028/* The parsing engine of this program is officially at a dead-end.
29 * Future work in that direction should move to the work posted
30 * at http://doolittle.faludi.com/~larry/parser.html .
31 * A start on the integration of that work with the rest of sh.c
32 * is at http://codepoet.org/sh.c .
33 */
Eric Andersen1e7cea92000-12-06 23:47:38 +000034//
Eric Andersene9f07fb2000-12-21 18:31:36 +000035//This works pretty well now, and is now on by default.
Eric Andersen06f64b22000-09-19 07:16:39 +000036#define BB_FEATURE_SH_ENVIRONMENT
Eric Andersen1e7cea92000-12-06 23:47:38 +000037//
38//Backtick support has some problems, use at your own risk!
39//#define BB_FEATURE_SH_BACKTICKS
40//
Eric Andersen86349772000-12-18 20:25:50 +000041//If, then, else, etc. support.. This should now behave basically
42//like any other Bourne shell...
Eric Andersene9f07fb2000-12-21 18:31:36 +000043#define BB_FEATURE_SH_IF_EXPRESSIONS
Eric Andersen1e7cea92000-12-06 23:47:38 +000044//
Eric Andersen86349772000-12-18 20:25:50 +000045/* This is currently a little broken... */
46//#define HANDLE_CONTINUATION_CHARS
47//
Eric Andersen1e7cea92000-12-06 23:47:38 +000048//For debugging/development on the shell only...
Eric Andersen501c88b2000-07-28 15:14:45 +000049//#define DEBUG_SHELL
Eric Andersena1d187a2000-07-17 19:14:41 +000050
51
Erik Andersen3522eb12000-03-12 23:49:18 +000052#include <stdio.h>
53#include <stdlib.h>
54#include <ctype.h>
55#include <errno.h>
56#include <fcntl.h>
Erik Andersen3522eb12000-03-12 23:49:18 +000057#include <signal.h>
58#include <string.h>
59#include <sys/ioctl.h>
60#include <sys/wait.h>
61#include <unistd.h>
Eric Andersen501c88b2000-07-28 15:14:45 +000062#include <getopt.h>
Eric Andersen13d1fa12001-03-08 23:59:45 +000063
64#if ( (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1) ) || defined (__UCLIBC__)
65#include <wordexp.h>
66#define expand_t wordexp_t
67#undef BB_FEATURE_SH_BACKTICKS
68#else
69#include <glob.h>
70#define expand_t glob_t
71#endif
Eric Andersencaeeb362001-02-20 06:38:44 +000072#include "busybox.h"
Erik Andersenf0657d32000-04-12 17:49:52 +000073#include "cmdedit.h"
Erik Andersen3522eb12000-03-12 23:49:18 +000074
Eric Andersen13d1fa12001-03-08 23:59:45 +000075
Mark Whitley59ab0252001-01-23 22:30:04 +000076static const int MAX_LINE = 256; /* size of input buffer for cwd data */
77static const int MAX_READ = 128; /* size of input buffer for `read' builtin */
Erik Andersen3522eb12000-03-12 23:49:18 +000078#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
79
Erik Andersend75af992000-03-16 08:09:09 +000080
Eric Andersen86349772000-12-18 20:25:50 +000081enum redir_type { REDIRECT_INPUT, REDIRECT_OVERWRITE,
Erik Andersen161220c2000-03-16 08:12:48 +000082 REDIRECT_APPEND
83};
Erik Andersen3522eb12000-03-12 23:49:18 +000084
Eric Andersen86349772000-12-18 20:25:50 +000085static const unsigned int DEFAULT_CONTEXT=0x1;
Eric Andersen6a99aaf2000-07-27 00:15:20 +000086static const unsigned int IF_TRUE_CONTEXT=0x2;
87static const unsigned int IF_FALSE_CONTEXT=0x4;
88static const unsigned int THEN_EXP_CONTEXT=0x8;
89static const unsigned int ELSE_EXP_CONTEXT=0x10;
Eric Andersenfad9c112000-07-25 18:06:52 +000090
Eric Andersen86349772000-12-18 20:25:50 +000091
92struct jobset {
Erik Andersen161220c2000-03-16 08:12:48 +000093 struct job *head; /* head of list of running jobs */
94 struct job *fg; /* current foreground job */
Erik Andersen3522eb12000-03-12 23:49:18 +000095};
96
Eric Andersen86349772000-12-18 20:25:50 +000097struct redir_struct {
98 enum redir_type type; /* type of redirection */
Erik Andersen161220c2000-03-16 08:12:48 +000099 int fd; /* file descriptor being redirected */
100 char *filename; /* file to redirect fd to */
Erik Andersen3522eb12000-03-12 23:49:18 +0000101};
102
Eric Andersen86349772000-12-18 20:25:50 +0000103struct child_prog {
Erik Andersen161220c2000-03-16 08:12:48 +0000104 pid_t pid; /* 0 if exited */
105 char **argv; /* program name and arguments */
Eric Andersen86349772000-12-18 20:25:50 +0000106 int num_redirects; /* elements in redirection array */
107 struct redir_struct *redirects; /* I/O redirects */
Eric Andersen86349772000-12-18 20:25:50 +0000108 int is_stopped; /* is the program currently running? */
109 struct job *family; /* pointer back to the child's parent job */
Erik Andersen3522eb12000-03-12 23:49:18 +0000110};
111
112struct job {
Eric Andersen86349772000-12-18 20:25:50 +0000113 int jobid; /* job number */
114 int num_progs; /* total number of programs in job */
115 int running_progs; /* number of programs running */
Erik Andersen161220c2000-03-16 08:12:48 +0000116 char *text; /* name of job */
Eric Andersen86349772000-12-18 20:25:50 +0000117 char *cmdbuf; /* buffer various argv's point into */
Erik Andersen161220c2000-03-16 08:12:48 +0000118 pid_t pgrp; /* process group ID for the job */
Eric Andersen86349772000-12-18 20:25:50 +0000119 struct child_prog *progs; /* array of programs in job */
Erik Andersen161220c2000-03-16 08:12:48 +0000120 struct job *next; /* to track background commands */
Eric Andersen86349772000-12-18 20:25:50 +0000121 int stopped_progs; /* number of programs alive, but stopped */
122 unsigned int job_context; /* bitmask defining current context */
123 struct jobset *job_list;
Erik Andersen3522eb12000-03-12 23:49:18 +0000124};
125
Eric Andersen86349772000-12-18 20:25:50 +0000126struct built_in_command {
Erik Andersen161220c2000-03-16 08:12:48 +0000127 char *cmd; /* name */
128 char *descr; /* description */
Eric Andersen86349772000-12-18 20:25:50 +0000129 int (*function) (struct child_prog *); /* function ptr */
Erik Andersen3522eb12000-03-12 23:49:18 +0000130};
131
Eric Andersen8ea28be2001-01-05 20:58:22 +0000132struct close_me {
133 int fd;
134 struct close_me *next;
135};
136
Eric Andersen34e19412000-07-10 18:47:24 +0000137/* function prototypes for builtins */
Eric Andersen86349772000-12-18 20:25:50 +0000138static int builtin_cd(struct child_prog *cmd);
139static int builtin_env(struct child_prog *dummy);
140static int builtin_exec(struct child_prog *cmd);
141static int builtin_exit(struct child_prog *cmd);
142static int builtin_fg_bg(struct child_prog *cmd);
143static int builtin_help(struct child_prog *cmd);
144static int builtin_jobs(struct child_prog *dummy);
145static int builtin_pwd(struct child_prog *dummy);
146static int builtin_export(struct child_prog *cmd);
147static int builtin_source(struct child_prog *cmd);
148static int builtin_unset(struct child_prog *cmd);
149static int builtin_read(struct child_prog *cmd);
Eric Andersenfad9c112000-07-25 18:06:52 +0000150#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
Eric Andersen86349772000-12-18 20:25:50 +0000151static int builtin_if(struct child_prog *cmd);
152static int builtin_then(struct child_prog *cmd);
153static int builtin_else(struct child_prog *cmd);
154static int builtin_fi(struct child_prog *cmd);
Eric Andersen70da6a62000-12-20 22:59:16 +0000155/* function prototypes for shell stuff */
156static int run_command_predicate(char *cmd);
Eric Andersenfad9c112000-07-25 18:06:52 +0000157#endif
Erik Andersen3522eb12000-03-12 23:49:18 +0000158
Eric Andersen34e19412000-07-10 18:47:24 +0000159
160/* function prototypes for shell stuff */
Eric Andersen8ea28be2001-01-05 20:58:22 +0000161static void mark_open(int fd);
162static void mark_closed(int fd);
Eric Andersen36278b92001-03-06 20:47:31 +0000163static void close_all(void);
Eric Andersen86349772000-12-18 20:25:50 +0000164static void checkjobs(struct jobset *job_list);
165static int get_command(FILE * source, char *command);
166static int parse_command(char **command_ptr, struct job *job, int *inbg);
167static int run_command(struct job *newjob, int inbg, int outpipe[2]);
168static int pseudo_exec(struct child_prog *cmd) __attribute__ ((noreturn));
Erik Andersen3522eb12000-03-12 23:49:18 +0000169static int busy_loop(FILE * input);
170
Erik Andersend75af992000-03-16 08:09:09 +0000171
Mark Whitley37653aa2000-07-12 23:36:17 +0000172/* Table of built-in functions (these are non-forking builtins, meaning they
173 * can change global variables in the parent shell process but they will not
174 * work with pipes and redirects; 'unset foo | whatever' will not work) */
Eric Andersen86349772000-12-18 20:25:50 +0000175static struct built_in_command bltins[] = {
Eric Andersenfad9c112000-07-25 18:06:52 +0000176 {"bg", "Resume a job in the background", builtin_fg_bg},
177 {"cd", "Change working directory", builtin_cd},
Eric Andersend2f56772000-09-21 02:48:07 +0000178 {"exec", "Exec command, replacing this shell with the exec'd process", builtin_exec},
Eric Andersenfad9c112000-07-25 18:06:52 +0000179 {"exit", "Exit from shell()", builtin_exit},
180 {"fg", "Bring job into the foreground", builtin_fg_bg},
181 {"jobs", "Lists the active jobs", builtin_jobs},
182 {"export", "Set environment variable", builtin_export},
183 {"unset", "Unset environment variable", builtin_unset},
184 {"read", "Input environment variable", builtin_read},
Matt Kraaidd450a02000-09-13 03:43:36 +0000185 {".", "Source-in and run commands in a file", builtin_source},
Eric Andersen86349772000-12-18 20:25:50 +0000186 /* to do: add ulimit */
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000187#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
188 {"if", NULL, builtin_if},
189 {"then", NULL, builtin_then},
190 {"else", NULL, builtin_else},
191 {"fi", NULL, builtin_fi},
192#endif
Eric Andersenfad9c112000-07-25 18:06:52 +0000193 {NULL, NULL, NULL}
Erik Andersen330fd2b2000-05-19 05:35:19 +0000194};
195
Mark Whitley37653aa2000-07-12 23:36:17 +0000196/* Table of forking built-in functions (things that fork cannot change global
197 * variables in the parent process, such as the current working directory) */
Eric Andersen86349772000-12-18 20:25:50 +0000198static struct built_in_command bltins_forking[] = {
Eric Andersenfad9c112000-07-25 18:06:52 +0000199 {"env", "Print all environment variables", builtin_env},
200 {"pwd", "Print current directory", builtin_pwd},
Eric Andersenfad9c112000-07-25 18:06:52 +0000201 {"help", "List shell built-in commands", builtin_help},
202 {NULL, NULL, NULL}
Erik Andersen3522eb12000-03-12 23:49:18 +0000203};
204
Eric Andersen0bcc8132001-01-05 19:37:32 +0000205
206/* Variables we export */
207unsigned int shell_context; /* Used in cmdedit.c to reset the
208 context when someone hits ^C */
209
210
211/* Globals that are static to this file */
Eric Andersen6efc48c2000-07-18 08:16:39 +0000212static char *cwd;
Eric Andersen744b0642001-01-05 21:23:44 +0000213static char *local_pending_command = NULL;
Eric Andersen86349772000-12-18 20:25:50 +0000214static struct jobset job_list = { NULL, NULL };
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000215static int argc;
216static char **argv;
Eric Andersen702ec592001-03-06 22:17:29 +0000217static struct close_me *close_me_head;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000218#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +0000219static int last_bg_pid;
220static int last_return_code;
221static int show_x_trace;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000222#endif
Eric Andersen86349772000-12-18 20:25:50 +0000223#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
224static char syntax_err[]="syntax error near unexpected token";
225#endif
226
Eric Andersenb558e762000-11-30 22:43:16 +0000227#ifdef DEBUG_SHELL
228static inline void debug_printf(const char *format, ...)
229{
230 va_list args;
231 va_start(args, format);
Eric Andersen86349772000-12-18 20:25:50 +0000232 vfprintf(stderr, format, args);
Eric Andersenb558e762000-11-30 22:43:16 +0000233 va_end(args);
234}
235#else
236static inline void debug_printf(const char *format, ...) { }
237#endif
Erik Andersen3522eb12000-03-12 23:49:18 +0000238
Eric Andersen86349772000-12-18 20:25:50 +0000239/*
240 Most builtins need access to the struct child_prog that has
241 their arguments, previously coded as cmd->progs[0]. That coding
242 can exhibit a bug, if the builtin is not the first command in
243 a pipeline: "echo foo | exec sort" will attempt to exec foo.
244
245builtin previous use notes
246------ ----------------- ---------
247cd cmd->progs[0]
248env 0
249exec cmd->progs[0] squashed bug: didn't look for applets or forking builtins
250exit cmd->progs[0]
251fg_bg cmd->progs[0], job_list->head, job_list->fg
252help 0
253jobs job_list->head
254pwd 0
255export cmd->progs[0] passes cmd, job_list to builtin_env(), which ignores them
256source cmd->progs[0]
257unset cmd->progs[0]
258read cmd->progs[0]
259if cmd->job_context, cmd->text
260then cmd->job_context, cmd->text
261else cmd->job_context, cmd->text
262fi cmd->job_context
263
264The use of cmd->text by if/then/else/fi is hopelessly hacky.
265Would it work to increment cmd->progs[0]->argv and recurse,
266somewhat like builtin_exec does?
267
268I added "struct job *family;" to struct child_prog,
269and switched API to builtin_foo(struct child_prog *child);
270So cmd->text becomes child->family->text
271 cmd->job_context becomes child->family->job_context
272 cmd->progs[0] becomes *child
273 job_list becomes child->family->job_list
274 */
Erik Andersen3522eb12000-03-12 23:49:18 +0000275
Erik Andersend75af992000-03-16 08:09:09 +0000276/* built-in 'cd <path>' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000277static int builtin_cd(struct child_prog *child)
Erik Andersend75af992000-03-16 08:09:09 +0000278{
Erik Andersen161220c2000-03-16 08:12:48 +0000279 char *newdir;
Erik Andersend75af992000-03-16 08:09:09 +0000280
Eric Andersen86349772000-12-18 20:25:50 +0000281 if (child->argv[1] == NULL)
Erik Andersen161220c2000-03-16 08:12:48 +0000282 newdir = getenv("HOME");
283 else
Eric Andersen86349772000-12-18 20:25:50 +0000284 newdir = child->argv[1];
Erik Andersen161220c2000-03-16 08:12:48 +0000285 if (chdir(newdir)) {
286 printf("cd: %s: %s\n", newdir, strerror(errno));
Matt Kraai3e856ce2000-12-01 02:55:13 +0000287 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000288 }
Eric Andersen6efc48c2000-07-18 08:16:39 +0000289 getcwd(cwd, sizeof(char)*MAX_LINE);
Erik Andersen161220c2000-03-16 08:12:48 +0000290
Matt Kraai3e856ce2000-12-01 02:55:13 +0000291 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000292}
293
294/* built-in 'env' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000295static int builtin_env(struct child_prog *dummy)
Erik Andersen3522eb12000-03-12 23:49:18 +0000296{
Erik Andersen161220c2000-03-16 08:12:48 +0000297 char **e;
Erik Andersen3522eb12000-03-12 23:49:18 +0000298
Erik Andersen161220c2000-03-16 08:12:48 +0000299 for (e = environ; *e; e++) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000300 printf( "%s\n", *e);
Erik Andersen161220c2000-03-16 08:12:48 +0000301 }
302 return (0);
Erik Andersen3522eb12000-03-12 23:49:18 +0000303}
304
Eric Andersend2f56772000-09-21 02:48:07 +0000305/* built-in 'exec' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000306static int builtin_exec(struct child_prog *child)
Eric Andersend2f56772000-09-21 02:48:07 +0000307{
Eric Andersen86349772000-12-18 20:25:50 +0000308 if (child->argv[1] == NULL)
309 return EXIT_SUCCESS; /* Really? */
310 child->argv++;
Eric Andersen07f2f392001-03-06 20:28:22 +0000311 close_all();
Eric Andersen86349772000-12-18 20:25:50 +0000312 pseudo_exec(child);
313 /* never returns */
Eric Andersend2f56772000-09-21 02:48:07 +0000314}
315
Erik Andersen3522eb12000-03-12 23:49:18 +0000316/* built-in 'exit' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000317static int builtin_exit(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000318{
Eric Andersen86349772000-12-18 20:25:50 +0000319 if (child->argv[1] == NULL)
Matt Kraai3e856ce2000-12-01 02:55:13 +0000320 exit(EXIT_SUCCESS);
Erik Andersen161220c2000-03-16 08:12:48 +0000321
Eric Andersen86349772000-12-18 20:25:50 +0000322 exit (atoi(child->argv[1]));
Erik Andersen3522eb12000-03-12 23:49:18 +0000323}
324
325/* built-in 'fg' and 'bg' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000326static int builtin_fg_bg(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000327{
Erik Andersen161220c2000-03-16 08:12:48 +0000328 int i, jobNum;
Erik Andersen6273f652000-03-17 01:12:41 +0000329 struct job *job=NULL;
Eric Andersen86349772000-12-18 20:25:50 +0000330
Eric Andersene9f07fb2000-12-21 18:31:36 +0000331 if (!child->argv[1] || child->argv[2]) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000332 error_msg("%s: exactly one argument is expected",
Eric Andersene9f07fb2000-12-21 18:31:36 +0000333 child->argv[0]);
334 return EXIT_FAILURE;
335 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000336
Eric Andersene9f07fb2000-12-21 18:31:36 +0000337 if (sscanf(child->argv[1], "%%%d", &jobNum) != 1) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000338 error_msg("%s: bad argument '%s'",
Eric Andersene9f07fb2000-12-21 18:31:36 +0000339 child->argv[0], child->argv[1]);
340 return EXIT_FAILURE;
341 }
342
343 for (job = child->family->job_list->head; job; job = job->next) {
344 if (job->jobid == jobNum) {
345 break;
Erik Andersen161220c2000-03-16 08:12:48 +0000346 }
Eric Andersene9f07fb2000-12-21 18:31:36 +0000347 }
Erik Andersen161220c2000-03-16 08:12:48 +0000348
349 if (!job) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000350 error_msg("%s: unknown job %d",
Eric Andersen86349772000-12-18 20:25:50 +0000351 child->argv[0], jobNum);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000352 return EXIT_FAILURE;
Erik Andersend75af992000-03-16 08:09:09 +0000353 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000354
Eric Andersen86349772000-12-18 20:25:50 +0000355 if (*child->argv[0] == 'f') {
Erik Andersen161220c2000-03-16 08:12:48 +0000356 /* Make this job the foreground job */
Eric Andersen1c314ad2000-06-28 16:56:25 +0000357 /* suppress messages when run from /linuxrc mag@sysgo.de */
358 if (tcsetpgrp(0, job->pgrp) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +0000359 perror_msg("tcsetpgrp");
Eric Andersen86349772000-12-18 20:25:50 +0000360 child->family->job_list->fg = job;
Erik Andersen161220c2000-03-16 08:12:48 +0000361 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000362
Erik Andersen161220c2000-03-16 08:12:48 +0000363 /* Restart the processes in the job */
Eric Andersen86349772000-12-18 20:25:50 +0000364 for (i = 0; i < job->num_progs; i++)
365 job->progs[i].is_stopped = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000366
Erik Andersen161220c2000-03-16 08:12:48 +0000367 kill(-job->pgrp, SIGCONT);
Erik Andersen3522eb12000-03-12 23:49:18 +0000368
Eric Andersen86349772000-12-18 20:25:50 +0000369 job->stopped_progs = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000370
Matt Kraai3e856ce2000-12-01 02:55:13 +0000371 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000372}
373
374/* built-in 'help' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000375static int builtin_help(struct child_prog *dummy)
Erik Andersen3522eb12000-03-12 23:49:18 +0000376{
Eric Andersen86349772000-12-18 20:25:50 +0000377 struct built_in_command *x;
Erik Andersen3522eb12000-03-12 23:49:18 +0000378
Eric Andersen86349772000-12-18 20:25:50 +0000379 printf("\nBuilt-in commands:\n");
380 printf("-------------------\n");
Erik Andersen161220c2000-03-16 08:12:48 +0000381 for (x = bltins; x->cmd; x++) {
Eric Andersenfad9c112000-07-25 18:06:52 +0000382 if (x->descr==NULL)
383 continue;
Eric Andersen86349772000-12-18 20:25:50 +0000384 printf("%s\t%s\n", x->cmd, x->descr);
Erik Andersen161220c2000-03-16 08:12:48 +0000385 }
Erik Andersen330fd2b2000-05-19 05:35:19 +0000386 for (x = bltins_forking; x->cmd; x++) {
Eric Andersenfad9c112000-07-25 18:06:52 +0000387 if (x->descr==NULL)
388 continue;
Eric Andersen86349772000-12-18 20:25:50 +0000389 printf("%s\t%s\n", x->cmd, x->descr);
Erik Andersen330fd2b2000-05-19 05:35:19 +0000390 }
Eric Andersen86349772000-12-18 20:25:50 +0000391 printf("\n\n");
Matt Kraai3e856ce2000-12-01 02:55:13 +0000392 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000393}
394
395/* built-in 'jobs' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000396static int builtin_jobs(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000397{
Erik Andersen161220c2000-03-16 08:12:48 +0000398 struct job *job;
Eric Andersen86349772000-12-18 20:25:50 +0000399 char *status_string;
Erik Andersen3522eb12000-03-12 23:49:18 +0000400
Eric Andersen86349772000-12-18 20:25:50 +0000401 for (job = child->family->job_list->head; job; job = job->next) {
402 if (job->running_progs == job->stopped_progs)
403 status_string = "Stopped";
Erik Andersen161220c2000-03-16 08:12:48 +0000404 else
Eric Andersen86349772000-12-18 20:25:50 +0000405 status_string = "Running";
Erik Andersen161220c2000-03-16 08:12:48 +0000406
Eric Andersen86349772000-12-18 20:25:50 +0000407 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->text);
Erik Andersen161220c2000-03-16 08:12:48 +0000408 }
Matt Kraai3e856ce2000-12-01 02:55:13 +0000409 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000410}
411
412
413/* built-in 'pwd' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000414static int builtin_pwd(struct child_prog *dummy)
Erik Andersen3522eb12000-03-12 23:49:18 +0000415{
Eric Andersen86349772000-12-18 20:25:50 +0000416 getcwd(cwd, MAX_LINE);
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000417 printf( "%s\n", cwd);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000418 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000419}
420
Erik Andersen6273f652000-03-17 01:12:41 +0000421/* built-in 'export VAR=value' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000422static int builtin_export(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000423{
Erik Andersen161220c2000-03-16 08:12:48 +0000424 int res;
Erik Andersen3522eb12000-03-12 23:49:18 +0000425
Eric Andersen86349772000-12-18 20:25:50 +0000426 if (child->argv[1] == NULL) {
427 return (builtin_env(child));
Erik Andersen161220c2000-03-16 08:12:48 +0000428 }
Eric Andersen86349772000-12-18 20:25:50 +0000429 res = putenv(child->argv[1]);
Erik Andersen161220c2000-03-16 08:12:48 +0000430 if (res)
Eric Andersen86349772000-12-18 20:25:50 +0000431 fprintf(stderr, "export: %s\n", strerror(errno));
Erik Andersen161220c2000-03-16 08:12:48 +0000432 return (res);
Erik Andersen3522eb12000-03-12 23:49:18 +0000433}
434
Eric Andersenb54833c2000-07-03 23:56:26 +0000435/* built-in 'read VAR' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000436static int builtin_read(struct child_prog *child)
Eric Andersenb54833c2000-07-03 23:56:26 +0000437{
438 int res = 0, len, newlen;
439 char *s;
440 char string[MAX_READ];
441
Eric Andersen86349772000-12-18 20:25:50 +0000442 if (child->argv[1]) {
Eric Andersenb54833c2000-07-03 23:56:26 +0000443 /* argument (VAR) given: put "VAR=" into buffer */
Eric Andersen86349772000-12-18 20:25:50 +0000444 strcpy(string, child->argv[1]);
Eric Andersenb54833c2000-07-03 23:56:26 +0000445 len = strlen(string);
446 string[len++] = '=';
447 string[len] = '\0';
448 fgets(&string[len], sizeof(string) - len, stdin); /* read string */
449 newlen = strlen(string);
450 if(newlen > len)
451 string[--newlen] = '\0'; /* chomp trailing newline */
452 /*
453 ** string should now contain "VAR=<value>"
454 ** copy it (putenv() won't do that, so we must make sure
455 ** the string resides in a static buffer!)
456 */
457 res = -1;
458 if((s = strdup(string)))
459 res = putenv(s);
460 if (res)
Eric Andersen86349772000-12-18 20:25:50 +0000461 fprintf(stderr, "read: %s\n", strerror(errno));
Eric Andersenb54833c2000-07-03 23:56:26 +0000462 }
463 else
464 fgets(string, sizeof(string), stdin);
465
466 return (res);
467}
468
Eric Andersenfad9c112000-07-25 18:06:52 +0000469#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
470/* Built-in handler for 'if' commands */
Eric Andersen86349772000-12-18 20:25:50 +0000471static int builtin_if(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000472{
Eric Andersen86349772000-12-18 20:25:50 +0000473 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000474 int status;
475 char* charptr1=cmd->text+3; /* skip over the leading 'if ' */
476
477 /* Now run the 'if' command */
Eric Andersen86349772000-12-18 20:25:50 +0000478 debug_printf( "job=%p entering builtin_if ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
479 status = run_command_predicate(charptr1);
480 debug_printf( "if test returned ");
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000481 if (status == 0) {
Eric Andersen86349772000-12-18 20:25:50 +0000482 debug_printf( "TRUE\n");
483 cmd->job_context |= IF_TRUE_CONTEXT;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000484 } else {
Eric Andersen86349772000-12-18 20:25:50 +0000485 debug_printf( "FALSE\n");
486 cmd->job_context |= IF_FALSE_CONTEXT;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000487 }
Eric Andersen86349772000-12-18 20:25:50 +0000488 debug_printf("job=%p builtin_if set job context to %x\n", cmd, cmd->job_context);
489 shell_context++;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000490
491 return status;
Eric Andersenfad9c112000-07-25 18:06:52 +0000492}
493
494/* Built-in handler for 'then' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000495static int builtin_then(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000496{
Eric Andersen86349772000-12-18 20:25:50 +0000497 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000498 char* charptr1=cmd->text+5; /* skip over the leading 'then ' */
499
Eric Andersen86349772000-12-18 20:25:50 +0000500 debug_printf( "job=%p entering builtin_then ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
501 if (! (cmd->job_context & (IF_TRUE_CONTEXT|IF_FALSE_CONTEXT))) {
502 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000503 error_msg("%s `then'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000504 return EXIT_FAILURE;
Eric Andersenfad9c112000-07-25 18:06:52 +0000505 }
Eric Andersen86349772000-12-18 20:25:50 +0000506
507 cmd->job_context |= THEN_EXP_CONTEXT;
508 debug_printf("job=%p builtin_then set job context to %x\n", cmd, cmd->job_context);
509
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000510 /* If the if result was FALSE, skip the 'then' stuff */
Eric Andersen86349772000-12-18 20:25:50 +0000511 if (cmd->job_context & IF_FALSE_CONTEXT) {
Matt Kraai3e856ce2000-12-01 02:55:13 +0000512 return EXIT_SUCCESS;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000513 }
514
Eric Andersen86349772000-12-18 20:25:50 +0000515 /* Seems the if result was TRUE, so run the 'then' command */
516 debug_printf( "'then' now running '%s'\n", charptr1);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000517
Eric Andersen86349772000-12-18 20:25:50 +0000518 return(run_command_predicate(charptr1));
Eric Andersenfad9c112000-07-25 18:06:52 +0000519}
520
521/* Built-in handler for 'else' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000522static int builtin_else(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000523{
Eric Andersen86349772000-12-18 20:25:50 +0000524 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000525 char* charptr1=cmd->text+5; /* skip over the leading 'else ' */
526
Eric Andersen86349772000-12-18 20:25:50 +0000527 debug_printf( "job=%p entering builtin_else ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
528
529 if (! (cmd->job_context & THEN_EXP_CONTEXT)) {
530 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000531 error_msg("%s `else'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000532 return EXIT_FAILURE;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000533 }
534 /* If the if result was TRUE, skip the 'else' stuff */
Eric Andersen86349772000-12-18 20:25:50 +0000535 if (cmd->job_context & IF_TRUE_CONTEXT) {
Matt Kraai3e856ce2000-12-01 02:55:13 +0000536 return EXIT_SUCCESS;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000537 }
538
Eric Andersen86349772000-12-18 20:25:50 +0000539 cmd->job_context |= ELSE_EXP_CONTEXT;
Eric Andersene9f07fb2000-12-21 18:31:36 +0000540 debug_printf("job=%p builtin_else set job context to %x\n", cmd, cmd->job_context);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000541
542 /* Now run the 'else' command */
Eric Andersen86349772000-12-18 20:25:50 +0000543 debug_printf( "'else' now running '%s'\n", charptr1);
544 return(run_command_predicate(charptr1));
Eric Andersenfad9c112000-07-25 18:06:52 +0000545}
546
547/* Built-in handler for 'fi' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000548static int builtin_fi(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000549{
Eric Andersen86349772000-12-18 20:25:50 +0000550 struct job *cmd = child->family;
551 debug_printf( "job=%p entering builtin_fi ('%s')-- context=%d\n", cmd, "", cmd->job_context);
552 if (! (cmd->job_context & (IF_TRUE_CONTEXT|IF_FALSE_CONTEXT))) {
553 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000554 error_msg("%s `fi'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000555 return EXIT_FAILURE;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000556 }
557 /* Clear out the if and then context bits */
Eric Andersen86349772000-12-18 20:25:50 +0000558 cmd->job_context &= ~(IF_TRUE_CONTEXT|IF_FALSE_CONTEXT|THEN_EXP_CONTEXT|ELSE_EXP_CONTEXT);
559 debug_printf("job=%p builtin_fi set job context to %x\n", cmd, cmd->job_context);
560 shell_context--;
Matt Kraai3e856ce2000-12-01 02:55:13 +0000561 return EXIT_SUCCESS;
Eric Andersenfad9c112000-07-25 18:06:52 +0000562}
563#endif
564
Erik Andersen3522eb12000-03-12 23:49:18 +0000565/* Built-in '.' handler (read-in and execute commands from file) */
Eric Andersen86349772000-12-18 20:25:50 +0000566static int builtin_source(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000567{
Erik Andersen161220c2000-03-16 08:12:48 +0000568 FILE *input;
569 int status;
Eric Andersen8ea28be2001-01-05 20:58:22 +0000570 int fd;
Erik Andersen3522eb12000-03-12 23:49:18 +0000571
Eric Andersen86349772000-12-18 20:25:50 +0000572 if (child->argv[1] == NULL)
Matt Kraai3e856ce2000-12-01 02:55:13 +0000573 return EXIT_FAILURE;
Erik Andersen3522eb12000-03-12 23:49:18 +0000574
Eric Andersen86349772000-12-18 20:25:50 +0000575 input = fopen(child->argv[1], "r");
Erik Andersen161220c2000-03-16 08:12:48 +0000576 if (!input) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000577 printf( "Couldn't open file '%s'\n", child->argv[1]);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000578 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000579 }
Erik Andersend75af992000-03-16 08:09:09 +0000580
Eric Andersen8ea28be2001-01-05 20:58:22 +0000581 fd=fileno(input);
582 mark_open(fd);
Erik Andersen161220c2000-03-16 08:12:48 +0000583 /* Now run the file */
584 status = busy_loop(input);
Matt Kraaidd450a02000-09-13 03:43:36 +0000585 fclose(input);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000586 mark_closed(fd);
Erik Andersen161220c2000-03-16 08:12:48 +0000587 return (status);
Erik Andersen3522eb12000-03-12 23:49:18 +0000588}
589
590/* built-in 'unset VAR' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000591static int builtin_unset(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000592{
Eric Andersen86349772000-12-18 20:25:50 +0000593 if (child->argv[1] == NULL) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000594 printf( "unset: parameter required.\n");
Matt Kraai3e856ce2000-12-01 02:55:13 +0000595 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000596 }
Eric Andersen86349772000-12-18 20:25:50 +0000597 unsetenv(child->argv[1]);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000598 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000599}
600
Eric Andersen70da6a62000-12-20 22:59:16 +0000601#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
Eric Andersen86349772000-12-18 20:25:50 +0000602/* currently used by if/then/else.
Eric Andersene9f07fb2000-12-21 18:31:36 +0000603 *
604 * Reparsing the command line for this purpose is gross,
605 * incorrect, and fundamentally unfixable; in particular,
606 * think about what happens with command substitution.
607 * We really need to pull out the run, wait, return status
608 * functionality out of busy_loop so we can child->argv++
609 * and use that, without going back through parse_command.
Eric Andersen86349772000-12-18 20:25:50 +0000610 */
611static int run_command_predicate(char *cmd)
612{
613 int n=strlen(cmd);
614 local_pending_command = xmalloc(n+1);
615 strncpy(local_pending_command, cmd, n);
616 local_pending_command[n]='\0';
617 return( busy_loop(NULL));
618}
Eric Andersen70da6a62000-12-20 22:59:16 +0000619#endif
Eric Andersen86349772000-12-18 20:25:50 +0000620
Eric Andersen8ea28be2001-01-05 20:58:22 +0000621static void mark_open(int fd)
622{
623 struct close_me *new = xmalloc(sizeof(struct close_me));
624 new->fd = fd;
625 new->next = close_me_head;
626 close_me_head = new;
627}
628
629static void mark_closed(int fd)
630{
631 struct close_me *tmp;
632 if (close_me_head == NULL || close_me_head->fd != fd)
633 error_msg_and_die("corrupt close_me");
634 tmp = close_me_head;
635 close_me_head = close_me_head->next;
636 free(tmp);
637}
638
639static void close_all()
640{
Eric Andersen702ec592001-03-06 22:17:29 +0000641 struct close_me *c, *tmp;
642 for (c=close_me_head; c; c=tmp) {
643 close(c->fd);
644 tmp=c->next;
645 free(c);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000646 }
647 close_me_head = NULL;
648}
649
650
Erik Andersen3522eb12000-03-12 23:49:18 +0000651/* free up all memory from a job */
Eric Andersen86349772000-12-18 20:25:50 +0000652static void free_job(struct job *cmd)
Erik Andersen3522eb12000-03-12 23:49:18 +0000653{
Erik Andersen161220c2000-03-16 08:12:48 +0000654 int i;
Erik Andersen3522eb12000-03-12 23:49:18 +0000655
Eric Andersen86349772000-12-18 20:25:50 +0000656 for (i = 0; i < cmd->num_progs; i++) {
Erik Andersen161220c2000-03-16 08:12:48 +0000657 free(cmd->progs[i].argv);
Eric Andersen86349772000-12-18 20:25:50 +0000658 if (cmd->progs[i].redirects)
659 free(cmd->progs[i].redirects);
Erik Andersen161220c2000-03-16 08:12:48 +0000660 }
661 free(cmd->progs);
662 if (cmd->text)
663 free(cmd->text);
Eric Andersen86349772000-12-18 20:25:50 +0000664 free(cmd->cmdbuf);
Eric Andersenec10b9d2000-07-14 01:13:11 +0000665 memset(cmd, 0, sizeof(struct job));
Erik Andersen3522eb12000-03-12 23:49:18 +0000666}
667
Eric Andersen86349772000-12-18 20:25:50 +0000668/* remove a job from the job_list */
669static void remove_job(struct jobset *job_list, struct job *job)
Erik Andersen3522eb12000-03-12 23:49:18 +0000670{
Eric Andersen86349772000-12-18 20:25:50 +0000671 struct job *prevjob;
Erik Andersen3522eb12000-03-12 23:49:18 +0000672
Eric Andersen86349772000-12-18 20:25:50 +0000673 free_job(job);
674 if (job == job_list->head) {
675 job_list->head = job->next;
Erik Andersen161220c2000-03-16 08:12:48 +0000676 } else {
Eric Andersen86349772000-12-18 20:25:50 +0000677 prevjob = job_list->head;
678 while (prevjob->next != job)
679 prevjob = prevjob->next;
680 prevjob->next = job->next;
Erik Andersen161220c2000-03-16 08:12:48 +0000681 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000682
Erik Andersen161220c2000-03-16 08:12:48 +0000683 free(job);
Erik Andersen3522eb12000-03-12 23:49:18 +0000684}
685
686/* Checks to see if any background processes have exited -- if they
687 have, figure out why and see if a job has completed */
Eric Andersen86349772000-12-18 20:25:50 +0000688static void checkjobs(struct jobset *job_list)
Erik Andersen3522eb12000-03-12 23:49:18 +0000689{
Erik Andersen161220c2000-03-16 08:12:48 +0000690 struct job *job;
691 pid_t childpid;
692 int status;
Eric Andersen86349772000-12-18 20:25:50 +0000693 int prognum = 0;
Erik Andersend75af992000-03-16 08:09:09 +0000694
Erik Andersen161220c2000-03-16 08:12:48 +0000695 while ((childpid = waitpid(-1, &status, WNOHANG | WUNTRACED)) > 0) {
Eric Andersen86349772000-12-18 20:25:50 +0000696 for (job = job_list->head; job; job = job->next) {
697 prognum = 0;
698 while (prognum < job->num_progs &&
699 job->progs[prognum].pid != childpid) prognum++;
700 if (prognum < job->num_progs)
Erik Andersen161220c2000-03-16 08:12:48 +0000701 break;
702 }
703
Eric Andersena1d187a2000-07-17 19:14:41 +0000704 /* This happens on backticked commands */
705 if(job==NULL)
706 return;
707
Erik Andersen161220c2000-03-16 08:12:48 +0000708 if (WIFEXITED(status) || WIFSIGNALED(status)) {
709 /* child exited */
Eric Andersen86349772000-12-18 20:25:50 +0000710 job->running_progs--;
711 job->progs[prognum].pid = 0;
Erik Andersen161220c2000-03-16 08:12:48 +0000712
Eric Andersen86349772000-12-18 20:25:50 +0000713 if (!job->running_progs) {
714 printf(JOB_STATUS_FORMAT, job->jobid, "Done", job->text);
715 remove_job(job_list, job);
Erik Andersen161220c2000-03-16 08:12:48 +0000716 }
717 } else {
718 /* child stopped */
Eric Andersen86349772000-12-18 20:25:50 +0000719 job->stopped_progs++;
720 job->progs[prognum].is_stopped = 1;
Erik Andersen161220c2000-03-16 08:12:48 +0000721
Eric Andersen86349772000-12-18 20:25:50 +0000722 if (job->stopped_progs == job->num_progs) {
723 printf(JOB_STATUS_FORMAT, job->jobid, "Stopped",
Erik Andersen161220c2000-03-16 08:12:48 +0000724 job->text);
725 }
726 }
Erik Andersend75af992000-03-16 08:09:09 +0000727 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000728
Erik Andersen161220c2000-03-16 08:12:48 +0000729 if (childpid == -1 && errno != ECHILD)
Matt Kraaia9819b22000-12-22 01:48:07 +0000730 perror_msg("waitpid");
Erik Andersen3522eb12000-03-12 23:49:18 +0000731}
732
Eric Andersene9f07fb2000-12-21 18:31:36 +0000733/* squirrel != NULL means we squirrel away copies of stdin, stdout,
734 * and stderr if they are redirected. */
735static int setup_redirects(struct child_prog *prog, int squirrel[])
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000736{
737 int i;
738 int openfd;
739 int mode = O_RDONLY;
Eric Andersen86349772000-12-18 20:25:50 +0000740 struct redir_struct *redir = prog->redirects;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000741
Eric Andersen86349772000-12-18 20:25:50 +0000742 for (i = 0; i < prog->num_redirects; i++, redir++) {
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000743 switch (redir->type) {
744 case REDIRECT_INPUT:
745 mode = O_RDONLY;
746 break;
747 case REDIRECT_OVERWRITE:
Eric Andersen46f0beb2000-11-14 21:59:22 +0000748 mode = O_WRONLY | O_CREAT | O_TRUNC;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000749 break;
750 case REDIRECT_APPEND:
Eric Andersen46f0beb2000-11-14 21:59:22 +0000751 mode = O_WRONLY | O_CREAT | O_APPEND;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000752 break;
753 }
754
755 openfd = open(redir->filename, mode, 0666);
756 if (openfd < 0) {
757 /* this could get lost if stderr has been redirected, but
758 bash and ash both lose it as well (though zsh doesn't!) */
Matt Kraaidd19c692001-01-31 19:00:21 +0000759 error_msg("error opening %s: %s", redir->filename,
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000760 strerror(errno));
761 return 1;
762 }
763
764 if (openfd != redir->fd) {
Eric Andersene9f07fb2000-12-21 18:31:36 +0000765 if (squirrel && redir->fd < 3) {
766 squirrel[redir->fd] = dup(redir->fd);
767 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000768 dup2(openfd, redir->fd);
769 close(openfd);
770 }
771 }
772
773 return 0;
774}
775
Eric Andersene9f07fb2000-12-21 18:31:36 +0000776static void restore_redirects(int squirrel[])
777{
778 int i, fd;
779 for (i=0; i<3; i++) {
780 fd = squirrel[i];
781 if (fd != -1) {
782 /* No error checking. I sure wouldn't know what
783 * to do with an error if I found one! */
784 dup2(fd, i);
785 close(fd);
786 }
787 }
788}
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000789
Eric Andersen22332fd2001-01-30 23:40:39 +0000790#if defined(BB_FEATURE_SH_SIMPLE_PROMPT)
791static char* setup_prompt_string(int state)
792{
793 char prompt_str[BUFSIZ];
794
795 /* Set up the prompt */
796 if (state == 0) {
797 /* simple prompt */
798 sprintf(prompt_str, "%s %s", cwd, ( geteuid() != 0 ) ? "$ ":"# ");
799 } else {
800 strcpy(prompt_str,"> ");
801 }
802
803 return(strdup(prompt_str)); /* Must free this memory */
804}
805
806#else
807
Eric Andersen09acc062001-01-04 11:10:38 +0000808static char* setup_prompt_string(int state)
Erik Andersen3522eb12000-03-12 23:49:18 +0000809{
Eric Andersenf361ac22000-12-12 23:45:36 +0000810 char user[9],buf[255],*s;
Eric Andersen09acc062001-01-04 11:10:38 +0000811 char prompt[3];
812 char prompt_str[BUFSIZ];
813
814 /* Set up the prompt */
815 if (state == 0) {
816 /* get User Name and setup prompt */
817 strcpy(prompt,( geteuid() != 0 ) ? "$ ":"# ");
818 my_getpwuid(user, geteuid());
819
820 /* get HostName */
821 gethostname(buf, 255);
822 s = strchr(buf, '.');
823 if (s) {
824 *s = 0;
825 }
826 } else {
827 strcpy(prompt,"> ");
828 }
829
830 if (state == 0) {
831 snprintf(prompt_str, BUFSIZ-1, "[%s@%s %s]%s", user, buf,
832 get_last_path_component(cwd), prompt);
833 } else {
834 sprintf(prompt_str, "%s", prompt);
835 }
836 return(strdup(prompt_str)); /* Must free this memory */
837}
838
Eric Andersen22332fd2001-01-30 23:40:39 +0000839#endif
840
Eric Andersen09acc062001-01-04 11:10:38 +0000841static int get_command(FILE * source, char *command)
842{
843 char *prompt_str;
Eric Andersen8ea28be2001-01-05 20:58:22 +0000844
Eric Andersen1c314ad2000-06-28 16:56:25 +0000845 if (source == NULL) {
846 if (local_pending_command) {
847 /* a command specified (-c option): return it & mark it done */
848 strcpy(command, local_pending_command);
849 free(local_pending_command);
850 local_pending_command = NULL;
851 return 0;
852 }
853 return 1;
854 }
855
Erik Andersen161220c2000-03-16 08:12:48 +0000856 if (source == stdin) {
Matt Kraaidefcd5e2001-01-05 02:53:11 +0000857 prompt_str = setup_prompt_string(shell_context);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000858
Erik Andersend75af992000-03-16 08:09:09 +0000859#ifdef BB_FEATURE_SH_COMMAND_EDITING
Eric Andersen501c88b2000-07-28 15:14:45 +0000860 /*
861 ** enable command line editing only while a command line
862 ** is actually being read; otherwise, we'll end up bequeathing
863 ** atexit() handlers and other unwanted stuff to our
864 ** child processes (rob@sysgo.de)
865 */
Eric Andersen86349772000-12-18 20:25:50 +0000866 cmdedit_read_input(prompt_str, command);
Eric Andersen501c88b2000-07-28 15:14:45 +0000867 cmdedit_terminate();
Eric Andersen6faae7d2001-02-16 20:09:17 +0000868 free(prompt_str);
Erik Andersen161220c2000-03-16 08:12:48 +0000869 return 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +0000870#else
Eric Andersen8ea28be2001-01-05 20:58:22 +0000871 fputs(prompt_str, stdout);
872 free(prompt_str);
Erik Andersend75af992000-03-16 08:09:09 +0000873#endif
Erik Andersen161220c2000-03-16 08:12:48 +0000874 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000875
Erik Andersen161220c2000-03-16 08:12:48 +0000876 if (!fgets(command, BUFSIZ - 2, source)) {
877 if (source == stdin)
878 printf("\n");
879 return 1;
880 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000881
Erik Andersen161220c2000-03-16 08:12:48 +0000882 /* remove trailing newline */
Eric Andersenca604592001-03-08 17:17:13 +0000883 chomp(command);
Erik Andersen3522eb12000-03-12 23:49:18 +0000884
Erik Andersen161220c2000-03-16 08:12:48 +0000885 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000886}
887
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000888#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000889static char* itoa(register int i)
890{
Eric Andersenb558e762000-11-30 22:43:16 +0000891 static char a[7]; /* Max 7 ints */
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000892 register char *b = a + sizeof(a) - 1;
893 int sign = (i < 0);
894
895 if (sign)
896 i = -i;
897 *b = 0;
898 do
899 {
900 *--b = '0' + (i % 10);
901 i /= 10;
902 }
903 while (i);
904 if (sign)
905 *--b = '-';
906 return b;
907}
Eric Andersenca604592001-03-08 17:17:13 +0000908#endif
909
910static int expand_arguments(char *command)
911{
912#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen13d1fa12001-03-08 23:59:45 +0000913 expand_t expand_result;
Eric Andersenca604592001-03-08 17:17:13 +0000914 char *src, *dst, *var;
915 int i=0, length, total_length=0, retval;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000916#endif
917
Eric Andersenca604592001-03-08 17:17:13 +0000918 /* get rid of the terminating \n */
919 chomp(command);
Erik Andersen3522eb12000-03-12 23:49:18 +0000920
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000921#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +0000922
Eric Andersen13d1fa12001-03-08 23:59:45 +0000923
924#if ( (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1) ) || defined (__UCLIBC__)
Eric Andersenca604592001-03-08 17:17:13 +0000925 /* This first part uses wordexp() which is a wonderful C lib
926 * function which expands nearly everything. */
Eric Andersen13d1fa12001-03-08 23:59:45 +0000927 retval = wordexp (command, &expand_result, 0);
Eric Andersenca604592001-03-08 17:17:13 +0000928 if (retval == WRDE_NOSPACE) {
929 /* Mem may have been allocated... */
Eric Andersen13d1fa12001-03-08 23:59:45 +0000930 wordfree (&expand_result);
Eric Andersenca604592001-03-08 17:17:13 +0000931 error_msg("out of space during expansion");
932 return FALSE;
933 }
934 if (retval < 0) {
935 /* Some other error. */
936 error_msg("syntax error");
937 return FALSE;
938 }
939
940 /* Convert from char** (one word per string) to a simple char*,
941 * but don't overflow command which is BUFSIZ in length */
942 *command = '\0';
Eric Andersen13d1fa12001-03-08 23:59:45 +0000943 while (i < expand_result.we_wordc && total_length < BUFSIZ) {
944 length=strlen(expand_result.we_wordv[i])+1;
Eric Andersenca604592001-03-08 17:17:13 +0000945 if (BUFSIZ-total_length-length <= 0) {
946 error_msg("out of space during expansion");
947 return FALSE;
948 }
Eric Andersen13d1fa12001-03-08 23:59:45 +0000949 strcat(command+total_length, expand_result.we_wordv[i++]);
Eric Andersenca604592001-03-08 17:17:13 +0000950 strcat(command+total_length, " ");
951 total_length+=length;
952 }
Eric Andersen13d1fa12001-03-08 23:59:45 +0000953 wordfree (&expand_result);
954#else
955
956 /* Ok. They don't have glibc and they don't have uClibc. Chances are
957 * about 100% they don't have wordexp(), so instead, the best we can do is
958 * use glob, which is better then nothing, but certainly not perfect */
959
960 /* It turns out that glob is very stupid. We have to feed it
961 * one word at a time since it can't cope with a full string.
962 * Here we convert command (char*) into cmd (char**, one word
963 * per string) */
964 {
965
966 int flags = GLOB_NOCHECK|GLOB_BRACE|GLOB_TILDE;
967 char * tmpcmd;
968 /* We need a clean copy, so strsep can mess up the copy while
969 * we write stuff into the original in a minute */
970 char * cmd = strdup(command);
971 for (tmpcmd = cmd; (tmpcmd = strsep(&cmd, " \t")) != NULL;) {
972 if (*tmpcmd == '\0')
973 break;
974 retval = glob(tmpcmd, flags, NULL, &expand_result);
975 /* We can't haveGLOB_APPEND on the first glob call,
976 * so put it there now */
977 if (! (flags & GLOB_APPEND) )
978 flags |= GLOB_APPEND;
979
980 if (retval == GLOB_NOSPACE) {
981 /* Mem may have been allocated... */
982 globfree (&expand_result);
983 error_msg("out of space during expansion");
984 return FALSE;
985 }
986 if (retval == GLOB_ABORTED || retval == GLOB_NOSYS) {
987 /* Some other error. */
988 error_msg("syntax error");
989 return FALSE;
990 }
991
992 /* Convert from char** (one word per string) to a simple char*,
993 * but don't overflow command which is BUFSIZ in length */
994 *command = '\0';
995 if ( expand_result.gl_pathc > 1) {
996 while (i < expand_result.gl_pathc && total_length < BUFSIZ) {
997 length=strlen(expand_result.gl_pathv[i])+1;
998 if (BUFSIZ-total_length-length <= 0) {
999 error_msg("out of space during expansion");
1000 return FALSE;
1001 }
1002 strcat(command+total_length, expand_result.gl_pathv[i++]);
1003 strcat(command+total_length, " ");
1004 total_length+=length;
1005 }
1006 }
1007 }
1008
1009 free(cmd);
1010 globfree (&expand_result);
1011 }
Eric Andersenca604592001-03-08 17:17:13 +00001012
Eric Andersen13d1fa12001-03-08 23:59:45 +00001013#endif
1014
1015 /* FIXME -- this routine (which is only used when folks
1016 * don't have a C library with wordexp) needs a bit of help
1017 * to handle things like 'echo $PATH$0' */
Eric Andersenca604592001-03-08 17:17:13 +00001018
1019 /* Now do the shell variable substitutions which
1020 * wordexp can't do for us, namely $? and $! */
1021 src = command;
Eric Andersencaeeb362001-02-20 06:38:44 +00001022 while((dst = strchr(src,'$')) != NULL){
Eric Andersen13d1fa12001-03-08 23:59:45 +00001023 /* Ok -- got a $ -- now clean up any trailing mess */
1024 trim(dst);
Eric Andersencaeeb362001-02-20 06:38:44 +00001025 if (!(var = getenv(dst + 1))) {
1026 switch(*(dst+1)) {
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001027 case '?':
Eric Andersencaeeb362001-02-20 06:38:44 +00001028 var = itoa(last_return_code);
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001029 break;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001030 case '!':
Eric Andersen86349772000-12-18 20:25:50 +00001031 if (last_bg_pid==-1)
Eric Andersencaeeb362001-02-20 06:38:44 +00001032 *(var)='\0';
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001033 else
Eric Andersencaeeb362001-02-20 06:38:44 +00001034 var = itoa(last_bg_pid);
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001035 break;
Eric Andersen32f8c172001-03-08 17:44:37 +00001036 /* Everything else like $$, $#, $[0-9], etc should all be
1037 * expanded by wordexp(), so we can in theory skip that stuff
1038 * here, but just to be on the safe side (i.e. since uClibc
1039 * wordexp doesn't do this stuff yet), lets leave it in for
1040 * now. */
Eric Andersenca604592001-03-08 17:17:13 +00001041 case '$':
Eric Andersen32f8c172001-03-08 17:44:37 +00001042 var = itoa(getpid());
1043 break;
Eric Andersenca604592001-03-08 17:17:13 +00001044 case '#':
Eric Andersen32f8c172001-03-08 17:44:37 +00001045 var = itoa(argc-1);
1046 break;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001047 case '0':case '1':case '2':case '3':case '4':
1048 case '5':case '6':case '7':case '8':case '9':
Eric Andersen32f8c172001-03-08 17:44:37 +00001049 {
1050 int index=*(dst + 1)-48;
1051 if (index >= argc) {
1052 var='\0';
1053 } else {
1054 var = argv[index];
1055 }
1056 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001057 break;
Eric Andersen32f8c172001-03-08 17:44:37 +00001058
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001059 }
1060 }
Eric Andersencaeeb362001-02-20 06:38:44 +00001061 if (var) {
Eric Andersenca604592001-03-08 17:17:13 +00001062 int subst_len = strlen(var);
1063 char *next_dst;
1064 if ((next_dst=strpbrk(dst+1, " \t~`!$^&*()=|\\{}[];\"'<>?")) == NULL) {
1065 next_dst = dst;
Eric Andersencaeeb362001-02-20 06:38:44 +00001066 }
Eric Andersenca604592001-03-08 17:17:13 +00001067 src = (char*)xrealloc(src, strlen(src) - strlen(next_dst)+strlen(var)+1);
1068 /* Move stuff to the end of the string to accommodate filling
1069 * the created gap with the new stuff */
1070 memmove(dst+subst_len, next_dst+1, subst_len);
1071 /* Now copy in the new stuff */
Eric Andersen13d1fa12001-03-08 23:59:45 +00001072 strncpy(dst, var, subst_len+1);
Eric Andersen32f8c172001-03-08 17:44:37 +00001073 src = dst;
1074 src++;
1075 } else {
1076 /* Seems we got an un-expandable variable. So delete it. */
1077 char *next_dst;
1078 if ((next_dst=strpbrk(dst+1, " \t~`!$^&*()=|\\{}[];\"'<>?")) != NULL) {
1079 /* Move stuff to the end of the string to accommodate filling
1080 * the created gap with the new stuff */
1081 memmove(dst, next_dst, next_dst-dst);
1082 }
Eric Andersencaeeb362001-02-20 06:38:44 +00001083 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001084 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001085
Eric Andersenca604592001-03-08 17:17:13 +00001086
1087
1088
1089#endif
1090 return TRUE;
Erik Andersen3522eb12000-03-12 23:49:18 +00001091}
1092
Eric Andersen86349772000-12-18 20:25:50 +00001093/* Return cmd->num_progs as 0 if no command is present (e.g. an empty
1094 line). If a valid command is found, command_ptr is set to point to
Erik Andersen3522eb12000-03-12 23:49:18 +00001095 the beginning of the next command (if the original command had more
1096 then one job associated with it) or NULL if no more commands are
1097 present. */
Eric Andersen86349772000-12-18 20:25:50 +00001098static int parse_command(char **command_ptr, struct job *job, int *inbg)
Erik Andersen3522eb12000-03-12 23:49:18 +00001099{
Erik Andersen161220c2000-03-16 08:12:48 +00001100 char *command;
Eric Andersen86349772000-12-18 20:25:50 +00001101 char *return_command = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001102 char *src, *buf, *chptr;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001103 int argc_l = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001104 int done = 0;
Eric Andersen86349772000-12-18 20:25:50 +00001105 int argv_alloced;
Erik Andersen161220c2000-03-16 08:12:48 +00001106 int i;
1107 char quote = '\0';
1108 int count;
Eric Andersen86349772000-12-18 20:25:50 +00001109 struct child_prog *prog;
Erik Andersen3522eb12000-03-12 23:49:18 +00001110
Erik Andersen161220c2000-03-16 08:12:48 +00001111 /* skip leading white space */
Eric Andersen86349772000-12-18 20:25:50 +00001112 while (**command_ptr && isspace(**command_ptr))
1113 (*command_ptr)++;
Erik Andersen3522eb12000-03-12 23:49:18 +00001114
Erik Andersen161220c2000-03-16 08:12:48 +00001115 /* this handles empty lines or leading '#' characters */
Eric Andersen86349772000-12-18 20:25:50 +00001116 if (!**command_ptr || (**command_ptr == '#')) {
1117 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001118 return 0;
1119 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001120
Eric Andersen86349772000-12-18 20:25:50 +00001121 *inbg = 0;
1122 job->num_progs = 1;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001123 job->progs = xmalloc(sizeof(*job->progs));
Erik Andersen3522eb12000-03-12 23:49:18 +00001124
Erik Andersen161220c2000-03-16 08:12:48 +00001125 /* We set the argv elements to point inside of this string. The
Eric Andersen86349772000-12-18 20:25:50 +00001126 memory is freed by free_job(). Allocate twice the original
Eric Andersenb54833c2000-07-03 23:56:26 +00001127 length in case we need to quote every single character.
Erik Andersen3522eb12000-03-12 23:49:18 +00001128
Erik Andersen161220c2000-03-16 08:12:48 +00001129 Getting clean memory relieves us of the task of NULL
1130 terminating things and makes the rest of this look a bit
1131 cleaner (though it is, admittedly, a tad less efficient) */
Eric Andersen86349772000-12-18 20:25:50 +00001132 job->cmdbuf = command = xcalloc(2*strlen(*command_ptr) + 1, sizeof(char));
Erik Andersen161220c2000-03-16 08:12:48 +00001133 job->text = NULL;
Erik Andersen3522eb12000-03-12 23:49:18 +00001134
Erik Andersen161220c2000-03-16 08:12:48 +00001135 prog = job->progs;
Eric Andersen86349772000-12-18 20:25:50 +00001136 prog->num_redirects = 0;
1137 prog->redirects = NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001138 prog->is_stopped = 0;
1139 prog->family = job;
Erik Andersen3522eb12000-03-12 23:49:18 +00001140
Eric Andersen86349772000-12-18 20:25:50 +00001141 argv_alloced = 5;
1142 prog->argv = xmalloc(sizeof(*prog->argv) * argv_alloced);
1143 prog->argv[0] = job->cmdbuf;
Erik Andersen3522eb12000-03-12 23:49:18 +00001144
Erik Andersen161220c2000-03-16 08:12:48 +00001145 buf = command;
Eric Andersen86349772000-12-18 20:25:50 +00001146 src = *command_ptr;
Erik Andersen161220c2000-03-16 08:12:48 +00001147 while (*src && !done) {
1148 if (quote == *src) {
1149 quote = '\0';
1150 } else if (quote) {
1151 if (*src == '\\') {
1152 src++;
1153 if (!*src) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001154 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001155 free_job(job);
Erik Andersen161220c2000-03-16 08:12:48 +00001156 return 1;
1157 }
1158
1159 /* in shell, "\'" should yield \' */
Eric Andersenb2356f62000-12-11 19:14:40 +00001160 if (*src != quote) {
Erik Andersen161220c2000-03-16 08:12:48 +00001161 *buf++ = '\\';
Eric Andersenb2356f62000-12-11 19:14:40 +00001162 *buf++ = '\\';
1163 }
Erik Andersen161220c2000-03-16 08:12:48 +00001164 } else if (*src == '*' || *src == '?' || *src == '[' ||
1165 *src == ']') *buf++ = '\\';
1166 *buf++ = *src;
1167 } else if (isspace(*src)) {
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001168 if (*prog->argv[argc_l]) {
1169 buf++, argc_l++;
Erik Andersen161220c2000-03-16 08:12:48 +00001170 /* +1 here leaves room for the NULL which ends argv */
Eric Andersen86349772000-12-18 20:25:50 +00001171 if ((argc_l + 1) == argv_alloced) {
1172 argv_alloced += 5;
Matt Kraaib8907522000-09-13 02:08:21 +00001173 prog->argv = xrealloc(prog->argv,
1174 sizeof(*prog->argv) *
Eric Andersen86349772000-12-18 20:25:50 +00001175 argv_alloced);
Erik Andersen161220c2000-03-16 08:12:48 +00001176 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001177 prog->argv[argc_l] = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001178 }
1179 } else
1180 switch (*src) {
1181 case '"':
1182 case '\'':
1183 quote = *src;
1184 break;
1185
1186 case '#': /* comment */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001187 if (*(src-1)== '$')
1188 *buf++ = *src;
1189 else
1190 done = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001191 break;
1192
Eric Andersen86349772000-12-18 20:25:50 +00001193 case '>': /* redirects */
Erik Andersen161220c2000-03-16 08:12:48 +00001194 case '<':
Eric Andersen86349772000-12-18 20:25:50 +00001195 i = prog->num_redirects++;
1196 prog->redirects = xrealloc(prog->redirects,
1197 sizeof(*prog->redirects) *
Matt Kraaib8907522000-09-13 02:08:21 +00001198 (i + 1));
Erik Andersen161220c2000-03-16 08:12:48 +00001199
Eric Andersen86349772000-12-18 20:25:50 +00001200 prog->redirects[i].fd = -1;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001201 if (buf != prog->argv[argc_l]) {
Erik Andersen161220c2000-03-16 08:12:48 +00001202 /* the stuff before this character may be the file number
1203 being redirected */
Eric Andersen86349772000-12-18 20:25:50 +00001204 prog->redirects[i].fd =
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001205 strtol(prog->argv[argc_l], &chptr, 10);
Erik Andersen161220c2000-03-16 08:12:48 +00001206
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001207 if (*chptr && *prog->argv[argc_l]) {
1208 buf++, argc_l++;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001209 prog->argv[argc_l] = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001210 }
1211 }
1212
Eric Andersen86349772000-12-18 20:25:50 +00001213 if (prog->redirects[i].fd == -1) {
Erik Andersen161220c2000-03-16 08:12:48 +00001214 if (*src == '>')
Eric Andersen86349772000-12-18 20:25:50 +00001215 prog->redirects[i].fd = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001216 else
Eric Andersen86349772000-12-18 20:25:50 +00001217 prog->redirects[i].fd = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001218 }
1219
1220 if (*src++ == '>') {
1221 if (*src == '>')
Eric Andersen86349772000-12-18 20:25:50 +00001222 prog->redirects[i].type =
Erik Andersen161220c2000-03-16 08:12:48 +00001223 REDIRECT_APPEND, src++;
1224 else
Eric Andersen86349772000-12-18 20:25:50 +00001225 prog->redirects[i].type = REDIRECT_OVERWRITE;
Erik Andersen161220c2000-03-16 08:12:48 +00001226 } else {
Eric Andersen86349772000-12-18 20:25:50 +00001227 prog->redirects[i].type = REDIRECT_INPUT;
Erik Andersen161220c2000-03-16 08:12:48 +00001228 }
1229
1230 /* This isn't POSIX sh compliant. Oh well. */
1231 chptr = src;
1232 while (isspace(*chptr))
1233 chptr++;
1234
1235 if (!*chptr) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001236 error_msg("file name expected after %c", *src);
Eric Andersen86349772000-12-18 20:25:50 +00001237 free_job(job);
1238 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001239 return 1;
1240 }
1241
Eric Andersen86349772000-12-18 20:25:50 +00001242 prog->redirects[i].filename = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001243 while (*chptr && !isspace(*chptr))
1244 *buf++ = *chptr++;
1245
1246 src = chptr - 1; /* we src++ later */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001247 prog->argv[argc_l] = ++buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001248 break;
1249
1250 case '|': /* pipe */
1251 /* finish this command */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001252 if (*prog->argv[argc_l])
1253 argc_l++;
1254 if (!argc_l) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001255 error_msg("empty command in pipe");
Eric Andersen86349772000-12-18 20:25:50 +00001256 free_job(job);
1257 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001258 return 1;
1259 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001260 prog->argv[argc_l] = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001261
1262 /* and start the next */
Eric Andersen86349772000-12-18 20:25:50 +00001263 job->num_progs++;
Matt Kraaib8907522000-09-13 02:08:21 +00001264 job->progs = xrealloc(job->progs,
Eric Andersen86349772000-12-18 20:25:50 +00001265 sizeof(*job->progs) * job->num_progs);
1266 prog = job->progs + (job->num_progs - 1);
1267 prog->num_redirects = 0;
1268 prog->redirects = NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001269 prog->is_stopped = 0;
1270 prog->family = job;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001271 argc_l = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001272
Eric Andersen86349772000-12-18 20:25:50 +00001273 argv_alloced = 5;
1274 prog->argv = xmalloc(sizeof(*prog->argv) * argv_alloced);
Erik Andersen161220c2000-03-16 08:12:48 +00001275 prog->argv[0] = ++buf;
1276
1277 src++;
1278 while (*src && isspace(*src))
1279 src++;
1280
1281 if (!*src) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001282 error_msg("empty command in pipe");
Eric Andersen86349772000-12-18 20:25:50 +00001283 free_job(job);
1284 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001285 return 1;
1286 }
1287 src--; /* we'll ++ it at the end of the loop */
1288
1289 break;
1290
1291 case '&': /* background */
Eric Andersen86349772000-12-18 20:25:50 +00001292 *inbg = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001293 case ';': /* multiple commands */
1294 done = 1;
Eric Andersen86349772000-12-18 20:25:50 +00001295 return_command = *command_ptr + (src - *command_ptr) + 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001296 break;
1297
Eric Andersena1d187a2000-07-17 19:14:41 +00001298#ifdef BB_FEATURE_SH_BACKTICKS
Eric Andersenec10b9d2000-07-14 01:13:11 +00001299 case '`':
1300 /* Exec a backtick-ed command */
Eric Andersen8ea28be2001-01-05 20:58:22 +00001301 /* Besides any previous brokenness, I have not
1302 * updated backtick handling for close_me support.
1303 * I don't know if it needs it or not. -- LRD */
Eric Andersenec10b9d2000-07-14 01:13:11 +00001304 {
Eric Andersena1d187a2000-07-17 19:14:41 +00001305 char* charptr1=NULL, *charptr2;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001306 char* ptr=NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001307 struct job *newjob;
1308 struct jobset njob_list = { NULL, NULL };
Eric Andersena1d187a2000-07-17 19:14:41 +00001309 int pipefd[2];
1310 int size;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001311
1312 ptr=strchr(++src, '`');
1313 if (ptr==NULL) {
1314 fprintf(stderr, "Unmatched '`' in command\n");
Eric Andersen86349772000-12-18 20:25:50 +00001315 free_job(job);
Eric Andersenec10b9d2000-07-14 01:13:11 +00001316 return 1;
1317 }
1318
Eric Andersena1d187a2000-07-17 19:14:41 +00001319 /* Make some space to hold just the backticked command */
Eric Andersen6efc48c2000-07-18 08:16:39 +00001320 charptr1 = charptr2 = xmalloc(1+ptr-src);
Matt Kraai0b2da462000-09-19 06:46:44 +00001321 memcpy(charptr1, src, ptr-src);
1322 charptr1[ptr-src] = '\0';
Eric Andersen86349772000-12-18 20:25:50 +00001323 newjob = xmalloc(sizeof(struct job));
1324 newjob->job_list = &njob_list;
Eric Andersena1d187a2000-07-17 19:14:41 +00001325 /* Now parse and run the backticked command */
Eric Andersen86349772000-12-18 20:25:50 +00001326 if (!parse_command(&charptr1, newjob, inbg)
1327 && newjob->num_progs) {
Eric Andersena1d187a2000-07-17 19:14:41 +00001328 pipe(pipefd);
Eric Andersen86349772000-12-18 20:25:50 +00001329 run_command(newjob, 0, pipefd);
Eric Andersenec10b9d2000-07-14 01:13:11 +00001330 }
Eric Andersen86349772000-12-18 20:25:50 +00001331 checkjobs(job->job_list);
1332 free_job(newjob); /* doesn't actually free newjob,
1333 looks like a memory leak */
Eric Andersen6efc48c2000-07-18 08:16:39 +00001334 free(charptr2);
1335
1336 /* Make a copy of any stuff left over in the command
1337 * line after the second backtick */
1338 charptr2 = xmalloc(strlen(ptr)+1);
1339 memcpy(charptr2, ptr+1, strlen(ptr));
1340
Eric Andersenec10b9d2000-07-14 01:13:11 +00001341
Eric Andersena1d187a2000-07-17 19:14:41 +00001342 /* Copy the output from the backtick-ed command into the
1343 * command line, making extra room as needed */
1344 --src;
1345 charptr1 = xmalloc(BUFSIZ);
Mark Whitleyf57c9442000-12-07 19:56:48 +00001346 while ( (size=full_read(pipefd[0], charptr1, BUFSIZ-1)) >0) {
Eric Andersen86349772000-12-18 20:25:50 +00001347 int newsize=src - *command_ptr + size + 1 + strlen(charptr2);
1348 if (newsize > BUFSIZ) {
1349 *command_ptr=xrealloc(*command_ptr, newsize);
Eric Andersena1d187a2000-07-17 19:14:41 +00001350 }
1351 memcpy(src, charptr1, size);
1352 src+=size;
1353 }
1354 free(charptr1);
1355 close(pipefd[0]);
1356 if (*(src-1)=='\n')
1357 --src;
1358
Eric Andersen86349772000-12-18 20:25:50 +00001359 /* Now paste into the *command_ptr all the stuff
Eric Andersena1d187a2000-07-17 19:14:41 +00001360 * leftover after the second backtick */
Matt Kraaicbbe4d62000-09-14 00:26:50 +00001361 memcpy(src, charptr2, strlen(charptr2)+1);
Eric Andersena1d187a2000-07-17 19:14:41 +00001362 free(charptr2);
1363
Eric Andersen86349772000-12-18 20:25:50 +00001364 /* Now recursively call parse_command to deal with the new
Eric Andersena1d187a2000-07-17 19:14:41 +00001365 * and improved version of the command line with the backtick
1366 * results expanded in place... */
Eric Andersen86349772000-12-18 20:25:50 +00001367 {
1368 struct jobset *jl=job->job_list;
1369 free_job(job);
1370 job->job_list = jl;
1371 }
1372 return(parse_command(command_ptr, job, inbg));
Eric Andersenec10b9d2000-07-14 01:13:11 +00001373 }
1374 break;
Eric Andersena1d187a2000-07-17 19:14:41 +00001375#endif // BB_FEATURE_SH_BACKTICKS
Matt Kraai131241f2000-09-14 00:43:20 +00001376
1377 case '\\':
1378 src++;
1379 if (!*src) {
Eric Andersen86349772000-12-18 20:25:50 +00001380/* This is currently a little broken... */
1381#ifdef HANDLE_CONTINUATION_CHARS
1382 /* They fed us a continuation char, so continue reading stuff
1383 * on the next line, then tack that onto the end of the current
1384 * command */
1385 char *command;
1386 int newsize;
1387 printf("erik: found a continue char at EOL...\n");
1388 command = (char *) xcalloc(BUFSIZ, sizeof(char));
1389 if (get_command(input, command)) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001390 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001391 free(command);
1392 free_job(job);
1393 return 1;
1394 }
1395 newsize = strlen(*command_ptr) + strlen(command) + 2;
1396 if (newsize > BUFSIZ) {
1397 printf("erik: doing realloc\n");
1398 *command_ptr=xrealloc(*command_ptr, newsize);
1399 }
1400 printf("erik: A: *command_ptr='%s'\n", *command_ptr);
1401 memcpy(--src, command, strlen(command));
1402 printf("erik: B: *command_ptr='%s'\n", *command_ptr);
1403 free(command);
1404 break;
1405#else
Matt Kraaidd19c692001-01-31 19:00:21 +00001406 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001407 free(command);
1408 free_job(job);
Matt Kraai131241f2000-09-14 00:43:20 +00001409 return 1;
Eric Andersen86349772000-12-18 20:25:50 +00001410#endif
Matt Kraai131241f2000-09-14 00:43:20 +00001411 }
1412 if (*src == '*' || *src == '[' || *src == ']'
1413 || *src == '?') *buf++ = '\\';
1414 /* fallthrough */
Erik Andersen161220c2000-03-16 08:12:48 +00001415 default:
1416 *buf++ = *src;
1417 }
1418
Erik Andersend75af992000-03-16 08:09:09 +00001419 src++;
Erik Andersen161220c2000-03-16 08:12:48 +00001420 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001421
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001422 if (*prog->argv[argc_l]) {
1423 argc_l++;
Erik Andersen161220c2000-03-16 08:12:48 +00001424 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001425 if (!argc_l) {
Eric Andersen86349772000-12-18 20:25:50 +00001426 free_job(job);
Erik Andersen161220c2000-03-16 08:12:48 +00001427 return 0;
1428 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001429 prog->argv[argc_l] = NULL;
Erik Andersen3522eb12000-03-12 23:49:18 +00001430
Eric Andersen86349772000-12-18 20:25:50 +00001431 if (!return_command) {
1432 job->text = xmalloc(strlen(*command_ptr) + 1);
1433 strcpy(job->text, *command_ptr);
Erik Andersen161220c2000-03-16 08:12:48 +00001434 } else {
1435 /* This leaves any trailing spaces, which is a bit sloppy */
Eric Andersen86349772000-12-18 20:25:50 +00001436 count = return_command - *command_ptr;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001437 job->text = xmalloc(count + 1);
Eric Andersen86349772000-12-18 20:25:50 +00001438 strncpy(job->text, *command_ptr, count);
Erik Andersen161220c2000-03-16 08:12:48 +00001439 job->text[count] = '\0';
1440 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001441
Eric Andersen86349772000-12-18 20:25:50 +00001442 *command_ptr = return_command;
Eric Andersen46f0beb2000-11-14 21:59:22 +00001443
Erik Andersend75af992000-03-16 08:09:09 +00001444 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001445}
1446
Eric Andersen86349772000-12-18 20:25:50 +00001447/* Run the child_prog, no matter what kind of command it uses.
1448 */
1449static int pseudo_exec(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +00001450{
Eric Andersen86349772000-12-18 20:25:50 +00001451 struct built_in_command *x;
Eric Andersenb54833c2000-07-03 23:56:26 +00001452#ifdef BB_FEATURE_SH_STANDALONE_SHELL
Eric Andersenaf4ac772001-02-01 22:43:49 +00001453 char *name;
Erik Andersenbcd61772000-05-13 06:33:19 +00001454#endif
Erik Andersen3522eb12000-03-12 23:49:18 +00001455
Eric Andersene9f07fb2000-12-21 18:31:36 +00001456 /* Check if the command matches any of the non-forking builtins.
1457 * Depending on context, this might be redundant. But it's
1458 * easier to waste a few CPU cycles than it is to figure out
1459 * if this is one of those cases.
Eric Andersen86349772000-12-18 20:25:50 +00001460 */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001461 for (x = bltins; x->cmd; x++) {
1462 if (strcmp(child->argv[0], x->cmd) == 0 ) {
1463 exit(x->function(child));
1464 }
1465 }
1466
1467 /* Check if the command matches any of the forking builtins. */
Eric Andersen86349772000-12-18 20:25:50 +00001468 for (x = bltins_forking; x->cmd; x++) {
1469 if (strcmp(child->argv[0], x->cmd) == 0) {
1470 applet_name=x->cmd;
1471 exit (x->function(child));
1472 }
1473 }
1474#ifdef BB_FEATURE_SH_STANDALONE_SHELL
1475 /* Check if the command matches any busybox internal
1476 * commands ("applets") here. Following discussions from
1477 * November 2000 on busybox@opensource.lineo.com, don't use
1478 * get_last_path_component(). This way explicit (with
1479 * slashes) filenames will never be interpreted as an
1480 * applet, just like with builtins. This way the user can
1481 * override an applet with an explicit filename reference.
1482 * The only downside to this change is that an explicit
1483 * /bin/foo invocation will fork and exec /bin/foo, even if
1484 * /bin/foo is a symlink to busybox.
1485 */
Matt Kraaif2cc2762001-02-01 19:21:20 +00001486 name = child->argv[0];
Eric Andersen86349772000-12-18 20:25:50 +00001487
1488#ifdef BB_FEATURE_SH_APPLETS_ALWAYS_WIN
1489 /* If you enable BB_FEATURE_SH_APPLETS_ALWAYS_WIN, then
1490 * if you run /bin/cat, it will use BusyBox cat even if
1491 * /bin/cat exists on the filesystem and is _not_ busybox.
1492 * Some systems want this, others do not. Choose wisely. :-)
1493 */
Matt Kraaif2cc2762001-02-01 19:21:20 +00001494 name = get_last_path_component(name);
Eric Andersen86349772000-12-18 20:25:50 +00001495#endif
1496
Eric Andersen67991cf2001-02-14 21:23:06 +00001497 {
1498 char** argv=child->argv;
1499 int argc_l;
1500 for(argc_l=0;*argv!=NULL; argv++, argc_l++);
1501 optind = 1;
1502 run_applet_by_name(name, argc_l, child->argv);
Eric Andersen86349772000-12-18 20:25:50 +00001503 }
1504#endif
1505
1506 execvp(child->argv[0], child->argv);
Eric Andersen8ea28be2001-01-05 20:58:22 +00001507 perror_msg_and_die("%s", child->argv[0]);
Eric Andersen86349772000-12-18 20:25:50 +00001508}
1509
1510static void insert_job(struct job *newjob, int inbg)
1511{
1512 struct job *thejob;
1513 struct jobset *job_list=newjob->job_list;
1514
1515 /* find the ID for thejob to use */
1516 newjob->jobid = 1;
1517 for (thejob = job_list->head; thejob; thejob = thejob->next)
1518 if (thejob->jobid >= newjob->jobid)
1519 newjob->jobid = thejob->jobid + 1;
1520
1521 /* add thejob to the list of running jobs */
1522 if (!job_list->head) {
1523 thejob = job_list->head = xmalloc(sizeof(*thejob));
1524 } else {
1525 for (thejob = job_list->head; thejob->next; thejob = thejob->next) /* nothing */;
1526 thejob->next = xmalloc(sizeof(*thejob));
1527 thejob = thejob->next;
1528 }
1529
1530 *thejob = *newjob; /* physically copy the struct job */
1531 thejob->next = NULL;
1532 thejob->running_progs = thejob->num_progs;
1533 thejob->stopped_progs = 0;
1534
1535 if (inbg) {
1536 /* we don't wait for background thejobs to return -- append it
1537 to the list of backgrounded thejobs and leave it alone */
1538 printf("[%d] %d\n", thejob->jobid,
1539 newjob->progs[newjob->num_progs - 1].pid);
1540#ifdef BB_FEATURE_SH_ENVIRONMENT
1541 last_bg_pid=newjob->progs[newjob->num_progs - 1].pid;
1542#endif
1543 } else {
1544 newjob->job_list->fg = thejob;
1545
1546 /* move the new process group into the foreground */
1547 /* suppress messages when run from /linuxrc mag@sysgo.de */
1548 if (tcsetpgrp(0, newjob->pgrp) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +00001549 perror_msg("tcsetpgrp");
Eric Andersen86349772000-12-18 20:25:50 +00001550 }
1551}
1552
1553static int run_command(struct job *newjob, int inbg, int outpipe[2])
1554{
1555 /* struct job *thejob; */
1556 int i;
1557 int nextin, nextout;
1558 int pipefds[2]; /* pipefd[0] is for reading */
1559 struct built_in_command *x;
1560 struct child_prog *child;
1561
Eric Andersen6efc48c2000-07-18 08:16:39 +00001562 nextin = 0, nextout = 1;
Eric Andersen86349772000-12-18 20:25:50 +00001563 for (i = 0; i < newjob->num_progs; i++) {
1564 child = & (newjob->progs[i]);
1565
1566 if ((i + 1) < newjob->num_progs) {
1567 if (pipe(pipefds)<0) perror_msg_and_die("pipe");
Erik Andersen161220c2000-03-16 08:12:48 +00001568 nextout = pipefds[1];
1569 } else {
Eric Andersen86349772000-12-18 20:25:50 +00001570 if (outpipe[1]!=-1) {
1571 nextout = outpipe[1];
Eric Andersen6efc48c2000-07-18 08:16:39 +00001572 } else {
1573 nextout = 1;
1574 }
Erik Andersen161220c2000-03-16 08:12:48 +00001575 }
1576
Eric Andersen501c88b2000-07-28 15:14:45 +00001577#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen86349772000-12-18 20:25:50 +00001578 if (show_x_trace==TRUE) {
Eric Andersen501c88b2000-07-28 15:14:45 +00001579 int j;
Eric Andersen86349772000-12-18 20:25:50 +00001580 fputc('+', stderr);
1581 for (j = 0; child->argv[j]; j++) {
1582 fputc(' ', stderr);
1583 fputs(child->argv[j], stderr);
1584 }
1585 fputc('\n', stderr);
Eric Andersen501c88b2000-07-28 15:14:45 +00001586 }
1587#endif
1588
Eric Andersene9f07fb2000-12-21 18:31:36 +00001589 /* Check if the command matches any non-forking builtins,
1590 * but only if this is a simple command.
1591 * Non-forking builtins within pipes have to fork anyway,
1592 * and are handled in pseudo_exec. "echo foo | read bar"
1593 * is doomed to failure, and doesn't work on bash, either.
Eric Andersen86349772000-12-18 20:25:50 +00001594 */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001595 if (newjob->num_progs == 1) {
1596 for (x = bltins; x->cmd; x++) {
1597 if (strcmp(child->argv[0], x->cmd) == 0 ) {
1598 int squirrel[] = {-1, -1, -1};
1599 int rcode;
1600 setup_redirects(child, squirrel);
1601 rcode = x->function(child);
1602 restore_redirects(squirrel);
1603 return rcode;
1604 }
Erik Andersen330fd2b2000-05-19 05:35:19 +00001605 }
1606 }
1607
Eric Andersen86349772000-12-18 20:25:50 +00001608 if (!(child->pid = fork())) {
Erik Andersen161220c2000-03-16 08:12:48 +00001609 signal(SIGTTOU, SIG_DFL);
1610
Eric Andersen8ea28be2001-01-05 20:58:22 +00001611 close_all();
1612
Eric Andersen86349772000-12-18 20:25:50 +00001613 if (outpipe[1]!=-1) {
1614 close(outpipe[0]);
Eric Andersen6efc48c2000-07-18 08:16:39 +00001615 }
1616 if (nextin != 0) {
1617 dup2(nextin, 0);
1618 close(nextin);
1619 }
1620
1621 if (nextout != 1) {
Erik Andersen161220c2000-03-16 08:12:48 +00001622 dup2(nextout, 1);
Eric Andersen86349772000-12-18 20:25:50 +00001623 dup2(nextout, 2); /* Really? */
Erik Andersen161220c2000-03-16 08:12:48 +00001624 close(nextout);
Eric Andersen501c88b2000-07-28 15:14:45 +00001625 close(pipefds[0]);
Erik Andersen161220c2000-03-16 08:12:48 +00001626 }
1627
Eric Andersen86349772000-12-18 20:25:50 +00001628 /* explicit redirects override pipes */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001629 setup_redirects(child,NULL);
Erik Andersen161220c2000-03-16 08:12:48 +00001630
Eric Andersen86349772000-12-18 20:25:50 +00001631 pseudo_exec(child);
Erik Andersen161220c2000-03-16 08:12:48 +00001632 }
Eric Andersen86349772000-12-18 20:25:50 +00001633 if (outpipe[1]!=-1) {
1634 close(outpipe[1]);
Eric Andersena1d187a2000-07-17 19:14:41 +00001635 }
Erik Andersen161220c2000-03-16 08:12:48 +00001636
1637 /* put our child in the process group whose leader is the
1638 first process in this pipe */
Eric Andersen86349772000-12-18 20:25:50 +00001639 setpgid(child->pid, newjob->progs[0].pid);
Erik Andersen161220c2000-03-16 08:12:48 +00001640 if (nextin != 0)
1641 close(nextin);
Eric Andersen6efc48c2000-07-18 08:16:39 +00001642 if (nextout != 1)
Erik Andersen161220c2000-03-16 08:12:48 +00001643 close(nextout);
1644
1645 /* If there isn't another process, nextin is garbage
1646 but it doesn't matter */
1647 nextin = pipefds[0];
1648 }
1649
Eric Andersen86349772000-12-18 20:25:50 +00001650 newjob->pgrp = newjob->progs[0].pid;
Erik Andersen161220c2000-03-16 08:12:48 +00001651
Eric Andersen86349772000-12-18 20:25:50 +00001652 insert_job(newjob, inbg);
Erik Andersen3522eb12000-03-12 23:49:18 +00001653
Erik Andersen161220c2000-03-16 08:12:48 +00001654 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001655}
1656
Erik Andersend75af992000-03-16 08:09:09 +00001657static int busy_loop(FILE * input)
Erik Andersen3522eb12000-03-12 23:49:18 +00001658{
Erik Andersen161220c2000-03-16 08:12:48 +00001659 char *command;
Eric Andersen86349772000-12-18 20:25:50 +00001660 char *next_command = NULL;
1661 struct job newjob;
Eric Andersen1c314ad2000-06-28 16:56:25 +00001662 pid_t parent_pgrp;
Erik Andersen161220c2000-03-16 08:12:48 +00001663 int i;
Eric Andersen86349772000-12-18 20:25:50 +00001664 int inbg;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001665 int status;
Eric Andersen86349772000-12-18 20:25:50 +00001666 newjob.job_list = &job_list;
1667 newjob.job_context = DEFAULT_CONTEXT;
Erik Andersen3522eb12000-03-12 23:49:18 +00001668
Eric Andersen1c314ad2000-06-28 16:56:25 +00001669 /* save current owner of TTY so we can restore it on exit */
1670 parent_pgrp = tcgetpgrp(0);
1671
Matt Kraaib8907522000-09-13 02:08:21 +00001672 command = (char *) xcalloc(BUFSIZ, sizeof(char));
Erik Andersend75af992000-03-16 08:09:09 +00001673
Erik Andersen161220c2000-03-16 08:12:48 +00001674 /* don't pay any attention to this signal; it just confuses
1675 things and isn't really meant for shells anyway */
1676 signal(SIGTTOU, SIG_IGN);
Erik Andersend75af992000-03-16 08:09:09 +00001677
Erik Andersen161220c2000-03-16 08:12:48 +00001678 while (1) {
Eric Andersen86349772000-12-18 20:25:50 +00001679 if (!job_list.fg) {
Erik Andersend75af992000-03-16 08:09:09 +00001680 /* no job is in the foreground */
Erik Andersen3522eb12000-03-12 23:49:18 +00001681
Erik Andersend75af992000-03-16 08:09:09 +00001682 /* see if any background processes have exited */
Eric Andersen86349772000-12-18 20:25:50 +00001683 checkjobs(&job_list);
Erik Andersen3522eb12000-03-12 23:49:18 +00001684
Eric Andersen86349772000-12-18 20:25:50 +00001685 if (!next_command) {
1686 if (get_command(input, command))
Erik Andersen161220c2000-03-16 08:12:48 +00001687 break;
Eric Andersen86349772000-12-18 20:25:50 +00001688 next_command = command;
Erik Andersend75af992000-03-16 08:09:09 +00001689 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001690
Eric Andersenca604592001-03-08 17:17:13 +00001691 if (expand_arguments(next_command) == FALSE) {
1692 free(command);
1693 command = (char *) xcalloc(BUFSIZ, sizeof(char));
1694 next_command = NULL;
1695 continue;
1696 }
1697
Eric Andersen86349772000-12-18 20:25:50 +00001698 if (!parse_command(&next_command, &newjob, &inbg) &&
1699 newjob.num_progs) {
Eric Andersena1d187a2000-07-17 19:14:41 +00001700 int pipefds[2] = {-1,-1};
Eric Andersen86349772000-12-18 20:25:50 +00001701 debug_printf( "job=%p being fed to run_command by busy_loop()'\n", &newjob);
1702 run_command(&newjob, inbg, pipefds);
Eric Andersenfad9c112000-07-25 18:06:52 +00001703 }
1704 else {
Eric Andersena1d187a2000-07-17 19:14:41 +00001705 free(command);
Matt Kraaib8907522000-09-13 02:08:21 +00001706 command = (char *) xcalloc(BUFSIZ, sizeof(char));
Eric Andersen86349772000-12-18 20:25:50 +00001707 next_command = NULL;
Erik Andersend75af992000-03-16 08:09:09 +00001708 }
1709 } else {
1710 /* a job is running in the foreground; wait for it */
1711 i = 0;
Eric Andersen86349772000-12-18 20:25:50 +00001712 while (!job_list.fg->progs[i].pid ||
1713 job_list.fg->progs[i].is_stopped == 1) i++;
Erik Andersen3522eb12000-03-12 23:49:18 +00001714
Eric Andersen8ea28be2001-01-05 20:58:22 +00001715 if (waitpid(job_list.fg->progs[i].pid, &status, WUNTRACED)<0)
1716 perror_msg_and_die("waitpid(%d)",job_list.fg->progs[i].pid);
Erik Andersen3522eb12000-03-12 23:49:18 +00001717
Erik Andersend75af992000-03-16 08:09:09 +00001718 if (WIFEXITED(status) || WIFSIGNALED(status)) {
Erik Andersen161220c2000-03-16 08:12:48 +00001719 /* the child exited */
Eric Andersen86349772000-12-18 20:25:50 +00001720 job_list.fg->running_progs--;
1721 job_list.fg->progs[i].pid = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001722
Eric Andersen501c88b2000-07-28 15:14:45 +00001723#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen86349772000-12-18 20:25:50 +00001724 last_return_code=WEXITSTATUS(status);
Eric Andersen501c88b2000-07-28 15:14:45 +00001725#endif
Eric Andersen86349772000-12-18 20:25:50 +00001726 debug_printf("'%s' exited -- return code %d\n",
1727 job_list.fg->text, last_return_code);
1728 if (!job_list.fg->running_progs) {
Erik Andersen161220c2000-03-16 08:12:48 +00001729 /* child exited */
Eric Andersen86349772000-12-18 20:25:50 +00001730 remove_job(&job_list, job_list.fg);
1731 job_list.fg = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001732 }
Erik Andersend75af992000-03-16 08:09:09 +00001733 } else {
Erik Andersen161220c2000-03-16 08:12:48 +00001734 /* the child was stopped */
Eric Andersen86349772000-12-18 20:25:50 +00001735 job_list.fg->stopped_progs++;
1736 job_list.fg->progs[i].is_stopped = 1;
Erik Andersen3522eb12000-03-12 23:49:18 +00001737
Eric Andersen86349772000-12-18 20:25:50 +00001738 if (job_list.fg->stopped_progs == job_list.fg->running_progs) {
1739 printf("\n" JOB_STATUS_FORMAT, job_list.fg->jobid,
1740 "Stopped", job_list.fg->text);
1741 job_list.fg = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001742 }
Erik Andersend75af992000-03-16 08:09:09 +00001743 }
1744
Eric Andersen86349772000-12-18 20:25:50 +00001745 if (!job_list.fg) {
Erik Andersen161220c2000-03-16 08:12:48 +00001746 /* move the shell to the foreground */
Eric Andersen1c314ad2000-06-28 16:56:25 +00001747 /* suppress messages when run from /linuxrc mag@sysgo.de */
1748 if (tcsetpgrp(0, getpid()) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +00001749 perror_msg("tcsetpgrp");
Erik Andersend75af992000-03-16 08:09:09 +00001750 }
1751 }
1752 }
Erik Andersen161220c2000-03-16 08:12:48 +00001753 free(command);
Erik Andersen3522eb12000-03-12 23:49:18 +00001754
Eric Andersen1c314ad2000-06-28 16:56:25 +00001755 /* return controlling TTY back to parent process group before exiting */
1756 if (tcsetpgrp(0, parent_pgrp))
Matt Kraaia9819b22000-12-22 01:48:07 +00001757 perror_msg("tcsetpgrp");
Eric Andersenb54833c2000-07-03 23:56:26 +00001758
1759 /* return exit status if called with "-c" */
1760 if (input == NULL && WIFEXITED(status))
1761 return WEXITSTATUS(status);
1762
Erik Andersen161220c2000-03-16 08:12:48 +00001763 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001764}
1765
1766
Eric Andersenfad9c112000-07-25 18:06:52 +00001767#ifdef BB_FEATURE_CLEAN_UP
1768void free_memory(void)
1769{
Eric Andersenfad9c112000-07-25 18:06:52 +00001770 if (cwd)
1771 free(cwd);
1772 if (local_pending_command)
1773 free(local_pending_command);
1774
Eric Andersen86349772000-12-18 20:25:50 +00001775 if (job_list.fg && !job_list.fg->running_progs) {
1776 remove_job(&job_list, job_list.fg);
Eric Andersenfad9c112000-07-25 18:06:52 +00001777 }
1778}
1779#endif
1780
Eric Andersen6efc48c2000-07-18 08:16:39 +00001781
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001782int shell_main(int argc_l, char **argv_l)
Erik Andersen3522eb12000-03-12 23:49:18 +00001783{
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001784 int opt, interactive=FALSE;
Erik Andersen161220c2000-03-16 08:12:48 +00001785 FILE *input = stdin;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001786 argc = argc_l;
1787 argv = argv_l;
Erik Andersen3522eb12000-03-12 23:49:18 +00001788
Eric Andersen702ec592001-03-06 22:17:29 +00001789 /* These variables need re-initializing when recursing */
Eric Andersenb0970d42001-01-05 19:34:52 +00001790 shell_context = 0;
1791 cwd=NULL;
Eric Andersenb0970d42001-01-05 19:34:52 +00001792 local_pending_command = NULL;
Eric Andersen702ec592001-03-06 22:17:29 +00001793 close_me_head = NULL;
Eric Andersenb0970d42001-01-05 19:34:52 +00001794 job_list.head = NULL;
1795 job_list.fg = NULL;
1796#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +00001797 last_bg_pid=1;
1798 last_return_code=1;
Eric Andersenb0970d42001-01-05 19:34:52 +00001799 show_x_trace=FALSE;
1800#endif
Eric Andersen501c88b2000-07-28 15:14:45 +00001801
Eric Andersenb558e762000-11-30 22:43:16 +00001802 if (argv[0] && argv[0][0] == '-') {
Eric Andersen8ea28be2001-01-05 20:58:22 +00001803 FILE *prof_input;
1804 prof_input = fopen("/etc/profile", "r");
1805 if (!prof_input) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001806 printf( "Couldn't open file '/etc/profile'\n");
Eric Andersen8ea28be2001-01-05 20:58:22 +00001807 } else {
1808 int tmp_fd = fileno(prof_input);
1809 mark_open(tmp_fd);
1810 /* Now run the file */
1811 busy_loop(prof_input);
1812 fclose(prof_input);
1813 mark_closed(tmp_fd);
1814 }
Eric Andersenb558e762000-11-30 22:43:16 +00001815 }
Eric Andersen501c88b2000-07-28 15:14:45 +00001816
Eric Andersenf21aa842000-12-08 20:50:30 +00001817 while ((opt = getopt(argc_l, argv_l, "cxi")) > 0) {
Eric Andersen501c88b2000-07-28 15:14:45 +00001818 switch (opt) {
1819 case 'c':
1820 input = NULL;
Matt Kraai6085c722000-09-06 01:46:18 +00001821 if (local_pending_command != 0)
Matt Kraaidd19c692001-01-31 19:00:21 +00001822 error_msg_and_die("multiple -c arguments");
Matt Kraai6085c722000-09-06 01:46:18 +00001823 local_pending_command = xstrdup(argv[optind]);
1824 optind++;
1825 argv = argv+optind;
Eric Andersen501c88b2000-07-28 15:14:45 +00001826 break;
Eric Andersen1428c4f2000-07-28 15:19:30 +00001827#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen501c88b2000-07-28 15:14:45 +00001828 case 'x':
Eric Andersen86349772000-12-18 20:25:50 +00001829 show_x_trace = TRUE;
Eric Andersen501c88b2000-07-28 15:14:45 +00001830 break;
Eric Andersen1428c4f2000-07-28 15:19:30 +00001831#endif
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001832 case 'i':
1833 interactive = TRUE;
1834 break;
Eric Andersen501c88b2000-07-28 15:14:45 +00001835 default:
Eric Andersen67991cf2001-02-14 21:23:06 +00001836 show_usage();
Eric Andersen501c88b2000-07-28 15:14:45 +00001837 }
1838 }
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001839 /* A shell is interactive if the `-i' flag was given, or if all of
1840 * the following conditions are met:
1841 * no -c command
1842 * no arguments remaining or the -s flag given
1843 * standard input is a terminal
1844 * standard output is a terminal
1845 * Refer to Posix.2, the description of the `sh' utility. */
Eric Andersen86349772000-12-18 20:25:50 +00001846 if (argv[optind]==NULL && input==stdin &&
1847 isatty(fileno(stdin)) && isatty(fileno(stdout))) {
1848 interactive=TRUE;
1849 }
1850 if (interactive==TRUE) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001851 //printf( "optind=%d argv[optind]='%s'\n", optind, argv[optind]);
Eric Andersen501c88b2000-07-28 15:14:45 +00001852 /* Looks like they want an interactive shell */
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001853 printf( "\n\nBusyBox v%s (%s) Built-in shell (lash)\n", BB_VER, BB_BT);
1854 printf( "Enter 'help' for a list of built-in commands.\n\n");
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001855 } else if (local_pending_command==NULL) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001856 //printf( "optind=%d argv[optind]='%s'\n", optind, argv[optind]);
Matt Kraaibbaef662000-09-27 02:43:35 +00001857 input = xfopen(argv[optind], "r");
Eric Andersen8ea28be2001-01-05 20:58:22 +00001858 mark_open(fileno(input)); /* be lazy, never mark this closed */
Eric Andersen501c88b2000-07-28 15:14:45 +00001859 }
1860
Eric Andersen6efc48c2000-07-18 08:16:39 +00001861 /* initialize the cwd -- this is never freed...*/
1862 cwd=(char*)xmalloc(sizeof(char)*MAX_LINE+1);
1863 getcwd(cwd, sizeof(char)*MAX_LINE);
Erik Andersen3522eb12000-03-12 23:49:18 +00001864
Eric Andersenfad9c112000-07-25 18:06:52 +00001865#ifdef BB_FEATURE_CLEAN_UP
1866 atexit(free_memory);
1867#endif
1868
Erik Andersen161220c2000-03-16 08:12:48 +00001869 return (busy_loop(input));
Erik Andersen3522eb12000-03-12 23:49:18 +00001870}