blob: 6a692d7453b8f67129f45bfc19fb6908dc1fad0f [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
Eric Andersenb180dd92001-03-09 00:42:46 +000064#undef __GLIBC__
65#undef __UCLIBC__
66
Eric Andersen13d1fa12001-03-08 23:59:45 +000067#if ( (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1) ) || defined (__UCLIBC__)
68#include <wordexp.h>
69#define expand_t wordexp_t
70#undef BB_FEATURE_SH_BACKTICKS
71#else
72#include <glob.h>
73#define expand_t glob_t
74#endif
Eric Andersencaeeb362001-02-20 06:38:44 +000075#include "busybox.h"
Erik Andersenf0657d32000-04-12 17:49:52 +000076#include "cmdedit.h"
Erik Andersen3522eb12000-03-12 23:49:18 +000077
Eric Andersen13d1fa12001-03-08 23:59:45 +000078
Mark Whitley59ab0252001-01-23 22:30:04 +000079static const int MAX_LINE = 256; /* size of input buffer for cwd data */
80static const int MAX_READ = 128; /* size of input buffer for `read' builtin */
Erik Andersen3522eb12000-03-12 23:49:18 +000081#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
82
Erik Andersend75af992000-03-16 08:09:09 +000083
Eric Andersen86349772000-12-18 20:25:50 +000084enum redir_type { REDIRECT_INPUT, REDIRECT_OVERWRITE,
Erik Andersen161220c2000-03-16 08:12:48 +000085 REDIRECT_APPEND
86};
Erik Andersen3522eb12000-03-12 23:49:18 +000087
Eric Andersen86349772000-12-18 20:25:50 +000088static const unsigned int DEFAULT_CONTEXT=0x1;
Eric Andersen6a99aaf2000-07-27 00:15:20 +000089static const unsigned int IF_TRUE_CONTEXT=0x2;
90static const unsigned int IF_FALSE_CONTEXT=0x4;
91static const unsigned int THEN_EXP_CONTEXT=0x8;
92static const unsigned int ELSE_EXP_CONTEXT=0x10;
Eric Andersenfad9c112000-07-25 18:06:52 +000093
Eric Andersen86349772000-12-18 20:25:50 +000094
95struct jobset {
Erik Andersen161220c2000-03-16 08:12:48 +000096 struct job *head; /* head of list of running jobs */
97 struct job *fg; /* current foreground job */
Erik Andersen3522eb12000-03-12 23:49:18 +000098};
99
Eric Andersen86349772000-12-18 20:25:50 +0000100struct redir_struct {
101 enum redir_type type; /* type of redirection */
Erik Andersen161220c2000-03-16 08:12:48 +0000102 int fd; /* file descriptor being redirected */
103 char *filename; /* file to redirect fd to */
Erik Andersen3522eb12000-03-12 23:49:18 +0000104};
105
Eric Andersen86349772000-12-18 20:25:50 +0000106struct child_prog {
Erik Andersen161220c2000-03-16 08:12:48 +0000107 pid_t pid; /* 0 if exited */
108 char **argv; /* program name and arguments */
Eric Andersen86349772000-12-18 20:25:50 +0000109 int num_redirects; /* elements in redirection array */
110 struct redir_struct *redirects; /* I/O redirects */
Eric Andersen86349772000-12-18 20:25:50 +0000111 int is_stopped; /* is the program currently running? */
112 struct job *family; /* pointer back to the child's parent job */
Erik Andersen3522eb12000-03-12 23:49:18 +0000113};
114
115struct job {
Eric Andersen86349772000-12-18 20:25:50 +0000116 int jobid; /* job number */
117 int num_progs; /* total number of programs in job */
118 int running_progs; /* number of programs running */
Erik Andersen161220c2000-03-16 08:12:48 +0000119 char *text; /* name of job */
Eric Andersen86349772000-12-18 20:25:50 +0000120 char *cmdbuf; /* buffer various argv's point into */
Erik Andersen161220c2000-03-16 08:12:48 +0000121 pid_t pgrp; /* process group ID for the job */
Eric Andersen86349772000-12-18 20:25:50 +0000122 struct child_prog *progs; /* array of programs in job */
Erik Andersen161220c2000-03-16 08:12:48 +0000123 struct job *next; /* to track background commands */
Eric Andersen86349772000-12-18 20:25:50 +0000124 int stopped_progs; /* number of programs alive, but stopped */
125 unsigned int job_context; /* bitmask defining current context */
126 struct jobset *job_list;
Erik Andersen3522eb12000-03-12 23:49:18 +0000127};
128
Eric Andersen86349772000-12-18 20:25:50 +0000129struct built_in_command {
Erik Andersen161220c2000-03-16 08:12:48 +0000130 char *cmd; /* name */
131 char *descr; /* description */
Eric Andersen86349772000-12-18 20:25:50 +0000132 int (*function) (struct child_prog *); /* function ptr */
Erik Andersen3522eb12000-03-12 23:49:18 +0000133};
134
Eric Andersen8ea28be2001-01-05 20:58:22 +0000135struct close_me {
136 int fd;
137 struct close_me *next;
138};
139
Eric Andersen34e19412000-07-10 18:47:24 +0000140/* function prototypes for builtins */
Eric Andersen86349772000-12-18 20:25:50 +0000141static int builtin_cd(struct child_prog *cmd);
142static int builtin_env(struct child_prog *dummy);
143static int builtin_exec(struct child_prog *cmd);
144static int builtin_exit(struct child_prog *cmd);
145static int builtin_fg_bg(struct child_prog *cmd);
146static int builtin_help(struct child_prog *cmd);
147static int builtin_jobs(struct child_prog *dummy);
148static int builtin_pwd(struct child_prog *dummy);
149static int builtin_export(struct child_prog *cmd);
150static int builtin_source(struct child_prog *cmd);
151static int builtin_unset(struct child_prog *cmd);
152static int builtin_read(struct child_prog *cmd);
Eric Andersenfad9c112000-07-25 18:06:52 +0000153#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
Eric Andersen86349772000-12-18 20:25:50 +0000154static int builtin_if(struct child_prog *cmd);
155static int builtin_then(struct child_prog *cmd);
156static int builtin_else(struct child_prog *cmd);
157static int builtin_fi(struct child_prog *cmd);
Eric Andersen70da6a62000-12-20 22:59:16 +0000158/* function prototypes for shell stuff */
159static int run_command_predicate(char *cmd);
Eric Andersenfad9c112000-07-25 18:06:52 +0000160#endif
Erik Andersen3522eb12000-03-12 23:49:18 +0000161
Eric Andersen34e19412000-07-10 18:47:24 +0000162
163/* function prototypes for shell stuff */
Eric Andersen8ea28be2001-01-05 20:58:22 +0000164static void mark_open(int fd);
165static void mark_closed(int fd);
Eric Andersen36278b92001-03-06 20:47:31 +0000166static void close_all(void);
Eric Andersen86349772000-12-18 20:25:50 +0000167static void checkjobs(struct jobset *job_list);
168static int get_command(FILE * source, char *command);
169static int parse_command(char **command_ptr, struct job *job, int *inbg);
170static int run_command(struct job *newjob, int inbg, int outpipe[2]);
171static int pseudo_exec(struct child_prog *cmd) __attribute__ ((noreturn));
Erik Andersen3522eb12000-03-12 23:49:18 +0000172static int busy_loop(FILE * input);
173
Erik Andersend75af992000-03-16 08:09:09 +0000174
Mark Whitley37653aa2000-07-12 23:36:17 +0000175/* Table of built-in functions (these are non-forking builtins, meaning they
176 * can change global variables in the parent shell process but they will not
177 * work with pipes and redirects; 'unset foo | whatever' will not work) */
Eric Andersen86349772000-12-18 20:25:50 +0000178static struct built_in_command bltins[] = {
Eric Andersenfad9c112000-07-25 18:06:52 +0000179 {"bg", "Resume a job in the background", builtin_fg_bg},
180 {"cd", "Change working directory", builtin_cd},
Eric Andersend2f56772000-09-21 02:48:07 +0000181 {"exec", "Exec command, replacing this shell with the exec'd process", builtin_exec},
Eric Andersenfad9c112000-07-25 18:06:52 +0000182 {"exit", "Exit from shell()", builtin_exit},
183 {"fg", "Bring job into the foreground", builtin_fg_bg},
184 {"jobs", "Lists the active jobs", builtin_jobs},
185 {"export", "Set environment variable", builtin_export},
186 {"unset", "Unset environment variable", builtin_unset},
187 {"read", "Input environment variable", builtin_read},
Matt Kraaidd450a02000-09-13 03:43:36 +0000188 {".", "Source-in and run commands in a file", builtin_source},
Eric Andersen86349772000-12-18 20:25:50 +0000189 /* to do: add ulimit */
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000190#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
191 {"if", NULL, builtin_if},
192 {"then", NULL, builtin_then},
193 {"else", NULL, builtin_else},
194 {"fi", NULL, builtin_fi},
195#endif
Eric Andersenfad9c112000-07-25 18:06:52 +0000196 {NULL, NULL, NULL}
Erik Andersen330fd2b2000-05-19 05:35:19 +0000197};
198
Mark Whitley37653aa2000-07-12 23:36:17 +0000199/* Table of forking built-in functions (things that fork cannot change global
200 * variables in the parent process, such as the current working directory) */
Eric Andersen86349772000-12-18 20:25:50 +0000201static struct built_in_command bltins_forking[] = {
Eric Andersenfad9c112000-07-25 18:06:52 +0000202 {"env", "Print all environment variables", builtin_env},
203 {"pwd", "Print current directory", builtin_pwd},
Eric Andersenfad9c112000-07-25 18:06:52 +0000204 {"help", "List shell built-in commands", builtin_help},
205 {NULL, NULL, NULL}
Erik Andersen3522eb12000-03-12 23:49:18 +0000206};
207
Eric Andersen0bcc8132001-01-05 19:37:32 +0000208
209/* Variables we export */
210unsigned int shell_context; /* Used in cmdedit.c to reset the
211 context when someone hits ^C */
212
213
214/* Globals that are static to this file */
Eric Andersen6efc48c2000-07-18 08:16:39 +0000215static char *cwd;
Eric Andersen744b0642001-01-05 21:23:44 +0000216static char *local_pending_command = NULL;
Eric Andersen86349772000-12-18 20:25:50 +0000217static struct jobset job_list = { NULL, NULL };
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000218static int argc;
219static char **argv;
Eric Andersen702ec592001-03-06 22:17:29 +0000220static struct close_me *close_me_head;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000221#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +0000222static int last_bg_pid;
223static int last_return_code;
224static int show_x_trace;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000225#endif
Eric Andersen86349772000-12-18 20:25:50 +0000226#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
227static char syntax_err[]="syntax error near unexpected token";
228#endif
229
Eric Andersenb558e762000-11-30 22:43:16 +0000230#ifdef DEBUG_SHELL
231static inline void debug_printf(const char *format, ...)
232{
233 va_list args;
234 va_start(args, format);
Eric Andersen86349772000-12-18 20:25:50 +0000235 vfprintf(stderr, format, args);
Eric Andersenb558e762000-11-30 22:43:16 +0000236 va_end(args);
237}
238#else
239static inline void debug_printf(const char *format, ...) { }
240#endif
Erik Andersen3522eb12000-03-12 23:49:18 +0000241
Eric Andersen86349772000-12-18 20:25:50 +0000242/*
243 Most builtins need access to the struct child_prog that has
244 their arguments, previously coded as cmd->progs[0]. That coding
245 can exhibit a bug, if the builtin is not the first command in
246 a pipeline: "echo foo | exec sort" will attempt to exec foo.
247
248builtin previous use notes
249------ ----------------- ---------
250cd cmd->progs[0]
251env 0
252exec cmd->progs[0] squashed bug: didn't look for applets or forking builtins
253exit cmd->progs[0]
254fg_bg cmd->progs[0], job_list->head, job_list->fg
255help 0
256jobs job_list->head
257pwd 0
258export cmd->progs[0] passes cmd, job_list to builtin_env(), which ignores them
259source cmd->progs[0]
260unset cmd->progs[0]
261read cmd->progs[0]
262if cmd->job_context, cmd->text
263then cmd->job_context, cmd->text
264else cmd->job_context, cmd->text
265fi cmd->job_context
266
267The use of cmd->text by if/then/else/fi is hopelessly hacky.
268Would it work to increment cmd->progs[0]->argv and recurse,
269somewhat like builtin_exec does?
270
271I added "struct job *family;" to struct child_prog,
272and switched API to builtin_foo(struct child_prog *child);
273So cmd->text becomes child->family->text
274 cmd->job_context becomes child->family->job_context
275 cmd->progs[0] becomes *child
276 job_list becomes child->family->job_list
277 */
Erik Andersen3522eb12000-03-12 23:49:18 +0000278
Erik Andersend75af992000-03-16 08:09:09 +0000279/* built-in 'cd <path>' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000280static int builtin_cd(struct child_prog *child)
Erik Andersend75af992000-03-16 08:09:09 +0000281{
Erik Andersen161220c2000-03-16 08:12:48 +0000282 char *newdir;
Erik Andersend75af992000-03-16 08:09:09 +0000283
Eric Andersen86349772000-12-18 20:25:50 +0000284 if (child->argv[1] == NULL)
Erik Andersen161220c2000-03-16 08:12:48 +0000285 newdir = getenv("HOME");
286 else
Eric Andersen86349772000-12-18 20:25:50 +0000287 newdir = child->argv[1];
Erik Andersen161220c2000-03-16 08:12:48 +0000288 if (chdir(newdir)) {
289 printf("cd: %s: %s\n", newdir, strerror(errno));
Matt Kraai3e856ce2000-12-01 02:55:13 +0000290 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000291 }
Eric Andersen6efc48c2000-07-18 08:16:39 +0000292 getcwd(cwd, sizeof(char)*MAX_LINE);
Erik Andersen161220c2000-03-16 08:12:48 +0000293
Matt Kraai3e856ce2000-12-01 02:55:13 +0000294 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000295}
296
297/* built-in 'env' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000298static int builtin_env(struct child_prog *dummy)
Erik Andersen3522eb12000-03-12 23:49:18 +0000299{
Erik Andersen161220c2000-03-16 08:12:48 +0000300 char **e;
Erik Andersen3522eb12000-03-12 23:49:18 +0000301
Erik Andersen161220c2000-03-16 08:12:48 +0000302 for (e = environ; *e; e++) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000303 printf( "%s\n", *e);
Erik Andersen161220c2000-03-16 08:12:48 +0000304 }
305 return (0);
Erik Andersen3522eb12000-03-12 23:49:18 +0000306}
307
Eric Andersend2f56772000-09-21 02:48:07 +0000308/* built-in 'exec' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000309static int builtin_exec(struct child_prog *child)
Eric Andersend2f56772000-09-21 02:48:07 +0000310{
Eric Andersen86349772000-12-18 20:25:50 +0000311 if (child->argv[1] == NULL)
312 return EXIT_SUCCESS; /* Really? */
313 child->argv++;
Eric Andersen07f2f392001-03-06 20:28:22 +0000314 close_all();
Eric Andersen86349772000-12-18 20:25:50 +0000315 pseudo_exec(child);
316 /* never returns */
Eric Andersend2f56772000-09-21 02:48:07 +0000317}
318
Erik Andersen3522eb12000-03-12 23:49:18 +0000319/* built-in 'exit' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000320static int builtin_exit(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000321{
Eric Andersen86349772000-12-18 20:25:50 +0000322 if (child->argv[1] == NULL)
Matt Kraai3e856ce2000-12-01 02:55:13 +0000323 exit(EXIT_SUCCESS);
Erik Andersen161220c2000-03-16 08:12:48 +0000324
Eric Andersen86349772000-12-18 20:25:50 +0000325 exit (atoi(child->argv[1]));
Erik Andersen3522eb12000-03-12 23:49:18 +0000326}
327
328/* built-in 'fg' and 'bg' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000329static int builtin_fg_bg(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000330{
Erik Andersen161220c2000-03-16 08:12:48 +0000331 int i, jobNum;
Erik Andersen6273f652000-03-17 01:12:41 +0000332 struct job *job=NULL;
Eric Andersen86349772000-12-18 20:25:50 +0000333
Eric Andersene9f07fb2000-12-21 18:31:36 +0000334 if (!child->argv[1] || child->argv[2]) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000335 error_msg("%s: exactly one argument is expected",
Eric Andersene9f07fb2000-12-21 18:31:36 +0000336 child->argv[0]);
337 return EXIT_FAILURE;
338 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000339
Eric Andersene9f07fb2000-12-21 18:31:36 +0000340 if (sscanf(child->argv[1], "%%%d", &jobNum) != 1) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000341 error_msg("%s: bad argument '%s'",
Eric Andersene9f07fb2000-12-21 18:31:36 +0000342 child->argv[0], child->argv[1]);
343 return EXIT_FAILURE;
344 }
345
346 for (job = child->family->job_list->head; job; job = job->next) {
347 if (job->jobid == jobNum) {
348 break;
Erik Andersen161220c2000-03-16 08:12:48 +0000349 }
Eric Andersene9f07fb2000-12-21 18:31:36 +0000350 }
Erik Andersen161220c2000-03-16 08:12:48 +0000351
352 if (!job) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000353 error_msg("%s: unknown job %d",
Eric Andersen86349772000-12-18 20:25:50 +0000354 child->argv[0], jobNum);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000355 return EXIT_FAILURE;
Erik Andersend75af992000-03-16 08:09:09 +0000356 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000357
Eric Andersen86349772000-12-18 20:25:50 +0000358 if (*child->argv[0] == 'f') {
Erik Andersen161220c2000-03-16 08:12:48 +0000359 /* Make this job the foreground job */
Eric Andersen1c314ad2000-06-28 16:56:25 +0000360 /* suppress messages when run from /linuxrc mag@sysgo.de */
361 if (tcsetpgrp(0, job->pgrp) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +0000362 perror_msg("tcsetpgrp");
Eric Andersen86349772000-12-18 20:25:50 +0000363 child->family->job_list->fg = job;
Erik Andersen161220c2000-03-16 08:12:48 +0000364 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000365
Erik Andersen161220c2000-03-16 08:12:48 +0000366 /* Restart the processes in the job */
Eric Andersen86349772000-12-18 20:25:50 +0000367 for (i = 0; i < job->num_progs; i++)
368 job->progs[i].is_stopped = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000369
Erik Andersen161220c2000-03-16 08:12:48 +0000370 kill(-job->pgrp, SIGCONT);
Erik Andersen3522eb12000-03-12 23:49:18 +0000371
Eric Andersen86349772000-12-18 20:25:50 +0000372 job->stopped_progs = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000373
Matt Kraai3e856ce2000-12-01 02:55:13 +0000374 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000375}
376
377/* built-in 'help' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000378static int builtin_help(struct child_prog *dummy)
Erik Andersen3522eb12000-03-12 23:49:18 +0000379{
Eric Andersen86349772000-12-18 20:25:50 +0000380 struct built_in_command *x;
Erik Andersen3522eb12000-03-12 23:49:18 +0000381
Eric Andersen86349772000-12-18 20:25:50 +0000382 printf("\nBuilt-in commands:\n");
383 printf("-------------------\n");
Erik Andersen161220c2000-03-16 08:12:48 +0000384 for (x = bltins; x->cmd; x++) {
Eric Andersenfad9c112000-07-25 18:06:52 +0000385 if (x->descr==NULL)
386 continue;
Eric Andersen86349772000-12-18 20:25:50 +0000387 printf("%s\t%s\n", x->cmd, x->descr);
Erik Andersen161220c2000-03-16 08:12:48 +0000388 }
Erik Andersen330fd2b2000-05-19 05:35:19 +0000389 for (x = bltins_forking; x->cmd; x++) {
Eric Andersenfad9c112000-07-25 18:06:52 +0000390 if (x->descr==NULL)
391 continue;
Eric Andersen86349772000-12-18 20:25:50 +0000392 printf("%s\t%s\n", x->cmd, x->descr);
Erik Andersen330fd2b2000-05-19 05:35:19 +0000393 }
Eric Andersen86349772000-12-18 20:25:50 +0000394 printf("\n\n");
Matt Kraai3e856ce2000-12-01 02:55:13 +0000395 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000396}
397
398/* built-in 'jobs' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000399static int builtin_jobs(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000400{
Erik Andersen161220c2000-03-16 08:12:48 +0000401 struct job *job;
Eric Andersen86349772000-12-18 20:25:50 +0000402 char *status_string;
Erik Andersen3522eb12000-03-12 23:49:18 +0000403
Eric Andersen86349772000-12-18 20:25:50 +0000404 for (job = child->family->job_list->head; job; job = job->next) {
405 if (job->running_progs == job->stopped_progs)
406 status_string = "Stopped";
Erik Andersen161220c2000-03-16 08:12:48 +0000407 else
Eric Andersen86349772000-12-18 20:25:50 +0000408 status_string = "Running";
Erik Andersen161220c2000-03-16 08:12:48 +0000409
Eric Andersen86349772000-12-18 20:25:50 +0000410 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->text);
Erik Andersen161220c2000-03-16 08:12:48 +0000411 }
Matt Kraai3e856ce2000-12-01 02:55:13 +0000412 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000413}
414
415
416/* built-in 'pwd' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000417static int builtin_pwd(struct child_prog *dummy)
Erik Andersen3522eb12000-03-12 23:49:18 +0000418{
Eric Andersen86349772000-12-18 20:25:50 +0000419 getcwd(cwd, MAX_LINE);
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000420 printf( "%s\n", cwd);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000421 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000422}
423
Erik Andersen6273f652000-03-17 01:12:41 +0000424/* built-in 'export VAR=value' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000425static int builtin_export(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000426{
Erik Andersen161220c2000-03-16 08:12:48 +0000427 int res;
Erik Andersen3522eb12000-03-12 23:49:18 +0000428
Eric Andersen86349772000-12-18 20:25:50 +0000429 if (child->argv[1] == NULL) {
430 return (builtin_env(child));
Erik Andersen161220c2000-03-16 08:12:48 +0000431 }
Eric Andersen86349772000-12-18 20:25:50 +0000432 res = putenv(child->argv[1]);
Erik Andersen161220c2000-03-16 08:12:48 +0000433 if (res)
Eric Andersen86349772000-12-18 20:25:50 +0000434 fprintf(stderr, "export: %s\n", strerror(errno));
Erik Andersen161220c2000-03-16 08:12:48 +0000435 return (res);
Erik Andersen3522eb12000-03-12 23:49:18 +0000436}
437
Eric Andersenb54833c2000-07-03 23:56:26 +0000438/* built-in 'read VAR' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000439static int builtin_read(struct child_prog *child)
Eric Andersenb54833c2000-07-03 23:56:26 +0000440{
441 int res = 0, len, newlen;
442 char *s;
443 char string[MAX_READ];
444
Eric Andersen86349772000-12-18 20:25:50 +0000445 if (child->argv[1]) {
Eric Andersenb54833c2000-07-03 23:56:26 +0000446 /* argument (VAR) given: put "VAR=" into buffer */
Eric Andersen86349772000-12-18 20:25:50 +0000447 strcpy(string, child->argv[1]);
Eric Andersenb54833c2000-07-03 23:56:26 +0000448 len = strlen(string);
449 string[len++] = '=';
450 string[len] = '\0';
451 fgets(&string[len], sizeof(string) - len, stdin); /* read string */
452 newlen = strlen(string);
453 if(newlen > len)
454 string[--newlen] = '\0'; /* chomp trailing newline */
455 /*
456 ** string should now contain "VAR=<value>"
457 ** copy it (putenv() won't do that, so we must make sure
458 ** the string resides in a static buffer!)
459 */
460 res = -1;
461 if((s = strdup(string)))
462 res = putenv(s);
463 if (res)
Eric Andersen86349772000-12-18 20:25:50 +0000464 fprintf(stderr, "read: %s\n", strerror(errno));
Eric Andersenb54833c2000-07-03 23:56:26 +0000465 }
466 else
467 fgets(string, sizeof(string), stdin);
468
469 return (res);
470}
471
Eric Andersenfad9c112000-07-25 18:06:52 +0000472#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
473/* Built-in handler for 'if' commands */
Eric Andersen86349772000-12-18 20:25:50 +0000474static int builtin_if(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000475{
Eric Andersen86349772000-12-18 20:25:50 +0000476 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000477 int status;
478 char* charptr1=cmd->text+3; /* skip over the leading 'if ' */
479
480 /* Now run the 'if' command */
Eric Andersen86349772000-12-18 20:25:50 +0000481 debug_printf( "job=%p entering builtin_if ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
482 status = run_command_predicate(charptr1);
483 debug_printf( "if test returned ");
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000484 if (status == 0) {
Eric Andersen86349772000-12-18 20:25:50 +0000485 debug_printf( "TRUE\n");
486 cmd->job_context |= IF_TRUE_CONTEXT;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000487 } else {
Eric Andersen86349772000-12-18 20:25:50 +0000488 debug_printf( "FALSE\n");
489 cmd->job_context |= IF_FALSE_CONTEXT;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000490 }
Eric Andersen86349772000-12-18 20:25:50 +0000491 debug_printf("job=%p builtin_if set job context to %x\n", cmd, cmd->job_context);
492 shell_context++;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000493
494 return status;
Eric Andersenfad9c112000-07-25 18:06:52 +0000495}
496
497/* Built-in handler for 'then' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000498static int builtin_then(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000499{
Eric Andersen86349772000-12-18 20:25:50 +0000500 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000501 char* charptr1=cmd->text+5; /* skip over the leading 'then ' */
502
Eric Andersen86349772000-12-18 20:25:50 +0000503 debug_printf( "job=%p entering builtin_then ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
504 if (! (cmd->job_context & (IF_TRUE_CONTEXT|IF_FALSE_CONTEXT))) {
505 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000506 error_msg("%s `then'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000507 return EXIT_FAILURE;
Eric Andersenfad9c112000-07-25 18:06:52 +0000508 }
Eric Andersen86349772000-12-18 20:25:50 +0000509
510 cmd->job_context |= THEN_EXP_CONTEXT;
511 debug_printf("job=%p builtin_then set job context to %x\n", cmd, cmd->job_context);
512
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000513 /* If the if result was FALSE, skip the 'then' stuff */
Eric Andersen86349772000-12-18 20:25:50 +0000514 if (cmd->job_context & IF_FALSE_CONTEXT) {
Matt Kraai3e856ce2000-12-01 02:55:13 +0000515 return EXIT_SUCCESS;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000516 }
517
Eric Andersen86349772000-12-18 20:25:50 +0000518 /* Seems the if result was TRUE, so run the 'then' command */
519 debug_printf( "'then' now running '%s'\n", charptr1);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000520
Eric Andersen86349772000-12-18 20:25:50 +0000521 return(run_command_predicate(charptr1));
Eric Andersenfad9c112000-07-25 18:06:52 +0000522}
523
524/* Built-in handler for 'else' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000525static int builtin_else(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000526{
Eric Andersen86349772000-12-18 20:25:50 +0000527 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000528 char* charptr1=cmd->text+5; /* skip over the leading 'else ' */
529
Eric Andersen86349772000-12-18 20:25:50 +0000530 debug_printf( "job=%p entering builtin_else ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
531
532 if (! (cmd->job_context & THEN_EXP_CONTEXT)) {
533 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000534 error_msg("%s `else'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000535 return EXIT_FAILURE;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000536 }
537 /* If the if result was TRUE, skip the 'else' stuff */
Eric Andersen86349772000-12-18 20:25:50 +0000538 if (cmd->job_context & IF_TRUE_CONTEXT) {
Matt Kraai3e856ce2000-12-01 02:55:13 +0000539 return EXIT_SUCCESS;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000540 }
541
Eric Andersen86349772000-12-18 20:25:50 +0000542 cmd->job_context |= ELSE_EXP_CONTEXT;
Eric Andersene9f07fb2000-12-21 18:31:36 +0000543 debug_printf("job=%p builtin_else set job context to %x\n", cmd, cmd->job_context);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000544
545 /* Now run the 'else' command */
Eric Andersen86349772000-12-18 20:25:50 +0000546 debug_printf( "'else' now running '%s'\n", charptr1);
547 return(run_command_predicate(charptr1));
Eric Andersenfad9c112000-07-25 18:06:52 +0000548}
549
550/* Built-in handler for 'fi' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000551static int builtin_fi(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000552{
Eric Andersen86349772000-12-18 20:25:50 +0000553 struct job *cmd = child->family;
554 debug_printf( "job=%p entering builtin_fi ('%s')-- context=%d\n", cmd, "", cmd->job_context);
555 if (! (cmd->job_context & (IF_TRUE_CONTEXT|IF_FALSE_CONTEXT))) {
556 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000557 error_msg("%s `fi'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000558 return EXIT_FAILURE;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000559 }
560 /* Clear out the if and then context bits */
Eric Andersen86349772000-12-18 20:25:50 +0000561 cmd->job_context &= ~(IF_TRUE_CONTEXT|IF_FALSE_CONTEXT|THEN_EXP_CONTEXT|ELSE_EXP_CONTEXT);
562 debug_printf("job=%p builtin_fi set job context to %x\n", cmd, cmd->job_context);
563 shell_context--;
Matt Kraai3e856ce2000-12-01 02:55:13 +0000564 return EXIT_SUCCESS;
Eric Andersenfad9c112000-07-25 18:06:52 +0000565}
566#endif
567
Erik Andersen3522eb12000-03-12 23:49:18 +0000568/* Built-in '.' handler (read-in and execute commands from file) */
Eric Andersen86349772000-12-18 20:25:50 +0000569static int builtin_source(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000570{
Erik Andersen161220c2000-03-16 08:12:48 +0000571 FILE *input;
572 int status;
Eric Andersen8ea28be2001-01-05 20:58:22 +0000573 int fd;
Erik Andersen3522eb12000-03-12 23:49:18 +0000574
Eric Andersen86349772000-12-18 20:25:50 +0000575 if (child->argv[1] == NULL)
Matt Kraai3e856ce2000-12-01 02:55:13 +0000576 return EXIT_FAILURE;
Erik Andersen3522eb12000-03-12 23:49:18 +0000577
Eric Andersen86349772000-12-18 20:25:50 +0000578 input = fopen(child->argv[1], "r");
Erik Andersen161220c2000-03-16 08:12:48 +0000579 if (!input) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000580 printf( "Couldn't open file '%s'\n", child->argv[1]);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000581 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000582 }
Erik Andersend75af992000-03-16 08:09:09 +0000583
Eric Andersen8ea28be2001-01-05 20:58:22 +0000584 fd=fileno(input);
585 mark_open(fd);
Erik Andersen161220c2000-03-16 08:12:48 +0000586 /* Now run the file */
587 status = busy_loop(input);
Matt Kraaidd450a02000-09-13 03:43:36 +0000588 fclose(input);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000589 mark_closed(fd);
Erik Andersen161220c2000-03-16 08:12:48 +0000590 return (status);
Erik Andersen3522eb12000-03-12 23:49:18 +0000591}
592
593/* built-in 'unset VAR' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000594static int builtin_unset(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000595{
Eric Andersen86349772000-12-18 20:25:50 +0000596 if (child->argv[1] == NULL) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000597 printf( "unset: parameter required.\n");
Matt Kraai3e856ce2000-12-01 02:55:13 +0000598 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000599 }
Eric Andersen86349772000-12-18 20:25:50 +0000600 unsetenv(child->argv[1]);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000601 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000602}
603
Eric Andersen70da6a62000-12-20 22:59:16 +0000604#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
Eric Andersen86349772000-12-18 20:25:50 +0000605/* currently used by if/then/else.
Eric Andersene9f07fb2000-12-21 18:31:36 +0000606 *
607 * Reparsing the command line for this purpose is gross,
608 * incorrect, and fundamentally unfixable; in particular,
609 * think about what happens with command substitution.
610 * We really need to pull out the run, wait, return status
611 * functionality out of busy_loop so we can child->argv++
612 * and use that, without going back through parse_command.
Eric Andersen86349772000-12-18 20:25:50 +0000613 */
614static int run_command_predicate(char *cmd)
615{
616 int n=strlen(cmd);
617 local_pending_command = xmalloc(n+1);
618 strncpy(local_pending_command, cmd, n);
619 local_pending_command[n]='\0';
620 return( busy_loop(NULL));
621}
Eric Andersen70da6a62000-12-20 22:59:16 +0000622#endif
Eric Andersen86349772000-12-18 20:25:50 +0000623
Eric Andersen8ea28be2001-01-05 20:58:22 +0000624static void mark_open(int fd)
625{
626 struct close_me *new = xmalloc(sizeof(struct close_me));
627 new->fd = fd;
628 new->next = close_me_head;
629 close_me_head = new;
630}
631
632static void mark_closed(int fd)
633{
634 struct close_me *tmp;
635 if (close_me_head == NULL || close_me_head->fd != fd)
636 error_msg_and_die("corrupt close_me");
637 tmp = close_me_head;
638 close_me_head = close_me_head->next;
639 free(tmp);
640}
641
642static void close_all()
643{
Eric Andersen702ec592001-03-06 22:17:29 +0000644 struct close_me *c, *tmp;
645 for (c=close_me_head; c; c=tmp) {
646 close(c->fd);
647 tmp=c->next;
648 free(c);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000649 }
650 close_me_head = NULL;
651}
652
653
Erik Andersen3522eb12000-03-12 23:49:18 +0000654/* free up all memory from a job */
Eric Andersen86349772000-12-18 20:25:50 +0000655static void free_job(struct job *cmd)
Erik Andersen3522eb12000-03-12 23:49:18 +0000656{
Erik Andersen161220c2000-03-16 08:12:48 +0000657 int i;
Erik Andersen3522eb12000-03-12 23:49:18 +0000658
Eric Andersen86349772000-12-18 20:25:50 +0000659 for (i = 0; i < cmd->num_progs; i++) {
Erik Andersen161220c2000-03-16 08:12:48 +0000660 free(cmd->progs[i].argv);
Eric Andersen86349772000-12-18 20:25:50 +0000661 if (cmd->progs[i].redirects)
662 free(cmd->progs[i].redirects);
Erik Andersen161220c2000-03-16 08:12:48 +0000663 }
664 free(cmd->progs);
665 if (cmd->text)
666 free(cmd->text);
Eric Andersen86349772000-12-18 20:25:50 +0000667 free(cmd->cmdbuf);
Eric Andersenec10b9d2000-07-14 01:13:11 +0000668 memset(cmd, 0, sizeof(struct job));
Erik Andersen3522eb12000-03-12 23:49:18 +0000669}
670
Eric Andersen86349772000-12-18 20:25:50 +0000671/* remove a job from the job_list */
672static void remove_job(struct jobset *job_list, struct job *job)
Erik Andersen3522eb12000-03-12 23:49:18 +0000673{
Eric Andersen86349772000-12-18 20:25:50 +0000674 struct job *prevjob;
Erik Andersen3522eb12000-03-12 23:49:18 +0000675
Eric Andersen86349772000-12-18 20:25:50 +0000676 free_job(job);
677 if (job == job_list->head) {
678 job_list->head = job->next;
Erik Andersen161220c2000-03-16 08:12:48 +0000679 } else {
Eric Andersen86349772000-12-18 20:25:50 +0000680 prevjob = job_list->head;
681 while (prevjob->next != job)
682 prevjob = prevjob->next;
683 prevjob->next = job->next;
Erik Andersen161220c2000-03-16 08:12:48 +0000684 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000685
Erik Andersen161220c2000-03-16 08:12:48 +0000686 free(job);
Erik Andersen3522eb12000-03-12 23:49:18 +0000687}
688
689/* Checks to see if any background processes have exited -- if they
690 have, figure out why and see if a job has completed */
Eric Andersen86349772000-12-18 20:25:50 +0000691static void checkjobs(struct jobset *job_list)
Erik Andersen3522eb12000-03-12 23:49:18 +0000692{
Erik Andersen161220c2000-03-16 08:12:48 +0000693 struct job *job;
694 pid_t childpid;
695 int status;
Eric Andersen86349772000-12-18 20:25:50 +0000696 int prognum = 0;
Erik Andersend75af992000-03-16 08:09:09 +0000697
Erik Andersen161220c2000-03-16 08:12:48 +0000698 while ((childpid = waitpid(-1, &status, WNOHANG | WUNTRACED)) > 0) {
Eric Andersen86349772000-12-18 20:25:50 +0000699 for (job = job_list->head; job; job = job->next) {
700 prognum = 0;
701 while (prognum < job->num_progs &&
702 job->progs[prognum].pid != childpid) prognum++;
703 if (prognum < job->num_progs)
Erik Andersen161220c2000-03-16 08:12:48 +0000704 break;
705 }
706
Eric Andersena1d187a2000-07-17 19:14:41 +0000707 /* This happens on backticked commands */
708 if(job==NULL)
709 return;
710
Erik Andersen161220c2000-03-16 08:12:48 +0000711 if (WIFEXITED(status) || WIFSIGNALED(status)) {
712 /* child exited */
Eric Andersen86349772000-12-18 20:25:50 +0000713 job->running_progs--;
714 job->progs[prognum].pid = 0;
Erik Andersen161220c2000-03-16 08:12:48 +0000715
Eric Andersen86349772000-12-18 20:25:50 +0000716 if (!job->running_progs) {
717 printf(JOB_STATUS_FORMAT, job->jobid, "Done", job->text);
718 remove_job(job_list, job);
Erik Andersen161220c2000-03-16 08:12:48 +0000719 }
720 } else {
721 /* child stopped */
Eric Andersen86349772000-12-18 20:25:50 +0000722 job->stopped_progs++;
723 job->progs[prognum].is_stopped = 1;
Erik Andersen161220c2000-03-16 08:12:48 +0000724
Eric Andersen86349772000-12-18 20:25:50 +0000725 if (job->stopped_progs == job->num_progs) {
726 printf(JOB_STATUS_FORMAT, job->jobid, "Stopped",
Erik Andersen161220c2000-03-16 08:12:48 +0000727 job->text);
728 }
729 }
Erik Andersend75af992000-03-16 08:09:09 +0000730 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000731
Erik Andersen161220c2000-03-16 08:12:48 +0000732 if (childpid == -1 && errno != ECHILD)
Matt Kraaia9819b22000-12-22 01:48:07 +0000733 perror_msg("waitpid");
Erik Andersen3522eb12000-03-12 23:49:18 +0000734}
735
Eric Andersene9f07fb2000-12-21 18:31:36 +0000736/* squirrel != NULL means we squirrel away copies of stdin, stdout,
737 * and stderr if they are redirected. */
738static int setup_redirects(struct child_prog *prog, int squirrel[])
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000739{
740 int i;
741 int openfd;
742 int mode = O_RDONLY;
Eric Andersen86349772000-12-18 20:25:50 +0000743 struct redir_struct *redir = prog->redirects;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000744
Eric Andersen86349772000-12-18 20:25:50 +0000745 for (i = 0; i < prog->num_redirects; i++, redir++) {
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000746 switch (redir->type) {
747 case REDIRECT_INPUT:
748 mode = O_RDONLY;
749 break;
750 case REDIRECT_OVERWRITE:
Eric Andersen46f0beb2000-11-14 21:59:22 +0000751 mode = O_WRONLY | O_CREAT | O_TRUNC;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000752 break;
753 case REDIRECT_APPEND:
Eric Andersen46f0beb2000-11-14 21:59:22 +0000754 mode = O_WRONLY | O_CREAT | O_APPEND;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000755 break;
756 }
757
758 openfd = open(redir->filename, mode, 0666);
759 if (openfd < 0) {
760 /* this could get lost if stderr has been redirected, but
761 bash and ash both lose it as well (though zsh doesn't!) */
Matt Kraaidd19c692001-01-31 19:00:21 +0000762 error_msg("error opening %s: %s", redir->filename,
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000763 strerror(errno));
764 return 1;
765 }
766
767 if (openfd != redir->fd) {
Eric Andersene9f07fb2000-12-21 18:31:36 +0000768 if (squirrel && redir->fd < 3) {
769 squirrel[redir->fd] = dup(redir->fd);
770 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000771 dup2(openfd, redir->fd);
772 close(openfd);
773 }
774 }
775
776 return 0;
777}
778
Eric Andersene9f07fb2000-12-21 18:31:36 +0000779static void restore_redirects(int squirrel[])
780{
781 int i, fd;
782 for (i=0; i<3; i++) {
783 fd = squirrel[i];
784 if (fd != -1) {
785 /* No error checking. I sure wouldn't know what
786 * to do with an error if I found one! */
787 dup2(fd, i);
788 close(fd);
789 }
790 }
791}
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000792
Eric Andersen22332fd2001-01-30 23:40:39 +0000793#if defined(BB_FEATURE_SH_SIMPLE_PROMPT)
794static char* setup_prompt_string(int state)
795{
796 char prompt_str[BUFSIZ];
797
798 /* Set up the prompt */
799 if (state == 0) {
800 /* simple prompt */
801 sprintf(prompt_str, "%s %s", cwd, ( geteuid() != 0 ) ? "$ ":"# ");
802 } else {
803 strcpy(prompt_str,"> ");
804 }
805
806 return(strdup(prompt_str)); /* Must free this memory */
807}
808
809#else
810
Eric Andersen09acc062001-01-04 11:10:38 +0000811static char* setup_prompt_string(int state)
Erik Andersen3522eb12000-03-12 23:49:18 +0000812{
Eric Andersenf361ac22000-12-12 23:45:36 +0000813 char user[9],buf[255],*s;
Eric Andersen09acc062001-01-04 11:10:38 +0000814 char prompt[3];
815 char prompt_str[BUFSIZ];
816
817 /* Set up the prompt */
818 if (state == 0) {
819 /* get User Name and setup prompt */
820 strcpy(prompt,( geteuid() != 0 ) ? "$ ":"# ");
821 my_getpwuid(user, geteuid());
822
823 /* get HostName */
824 gethostname(buf, 255);
825 s = strchr(buf, '.');
826 if (s) {
827 *s = 0;
828 }
829 } else {
830 strcpy(prompt,"> ");
831 }
832
833 if (state == 0) {
834 snprintf(prompt_str, BUFSIZ-1, "[%s@%s %s]%s", user, buf,
835 get_last_path_component(cwd), prompt);
836 } else {
837 sprintf(prompt_str, "%s", prompt);
838 }
839 return(strdup(prompt_str)); /* Must free this memory */
840}
841
Eric Andersen22332fd2001-01-30 23:40:39 +0000842#endif
843
Eric Andersen09acc062001-01-04 11:10:38 +0000844static int get_command(FILE * source, char *command)
845{
846 char *prompt_str;
Eric Andersen8ea28be2001-01-05 20:58:22 +0000847
Eric Andersen1c314ad2000-06-28 16:56:25 +0000848 if (source == NULL) {
849 if (local_pending_command) {
850 /* a command specified (-c option): return it & mark it done */
851 strcpy(command, local_pending_command);
852 free(local_pending_command);
853 local_pending_command = NULL;
854 return 0;
855 }
856 return 1;
857 }
858
Erik Andersen161220c2000-03-16 08:12:48 +0000859 if (source == stdin) {
Matt Kraaidefcd5e2001-01-05 02:53:11 +0000860 prompt_str = setup_prompt_string(shell_context);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000861
Erik Andersend75af992000-03-16 08:09:09 +0000862#ifdef BB_FEATURE_SH_COMMAND_EDITING
Eric Andersen501c88b2000-07-28 15:14:45 +0000863 /*
864 ** enable command line editing only while a command line
865 ** is actually being read; otherwise, we'll end up bequeathing
866 ** atexit() handlers and other unwanted stuff to our
867 ** child processes (rob@sysgo.de)
868 */
Eric Andersen86349772000-12-18 20:25:50 +0000869 cmdedit_read_input(prompt_str, command);
Eric Andersen501c88b2000-07-28 15:14:45 +0000870 cmdedit_terminate();
Eric Andersen6faae7d2001-02-16 20:09:17 +0000871 free(prompt_str);
Erik Andersen161220c2000-03-16 08:12:48 +0000872 return 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +0000873#else
Eric Andersen8ea28be2001-01-05 20:58:22 +0000874 fputs(prompt_str, stdout);
875 free(prompt_str);
Erik Andersend75af992000-03-16 08:09:09 +0000876#endif
Erik Andersen161220c2000-03-16 08:12:48 +0000877 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000878
Erik Andersen161220c2000-03-16 08:12:48 +0000879 if (!fgets(command, BUFSIZ - 2, source)) {
880 if (source == stdin)
881 printf("\n");
882 return 1;
883 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000884
Erik Andersen161220c2000-03-16 08:12:48 +0000885 /* remove trailing newline */
Eric Andersenca604592001-03-08 17:17:13 +0000886 chomp(command);
Erik Andersen3522eb12000-03-12 23:49:18 +0000887
Erik Andersen161220c2000-03-16 08:12:48 +0000888 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000889}
890
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000891#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000892static char* itoa(register int i)
893{
Eric Andersenb558e762000-11-30 22:43:16 +0000894 static char a[7]; /* Max 7 ints */
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000895 register char *b = a + sizeof(a) - 1;
896 int sign = (i < 0);
897
898 if (sign)
899 i = -i;
900 *b = 0;
901 do
902 {
903 *--b = '0' + (i % 10);
904 i /= 10;
905 }
906 while (i);
907 if (sign)
908 *--b = '-';
909 return b;
910}
Eric Andersenca604592001-03-08 17:17:13 +0000911#endif
912
913static int expand_arguments(char *command)
914{
915#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen13d1fa12001-03-08 23:59:45 +0000916 expand_t expand_result;
Eric Andersenca604592001-03-08 17:17:13 +0000917 char *src, *dst, *var;
918 int i=0, length, total_length=0, retval;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000919#endif
920
Eric Andersenca604592001-03-08 17:17:13 +0000921 /* get rid of the terminating \n */
922 chomp(command);
Erik Andersen3522eb12000-03-12 23:49:18 +0000923
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000924#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +0000925
Eric Andersen13d1fa12001-03-08 23:59:45 +0000926
927#if ( (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1) ) || defined (__UCLIBC__)
Eric Andersenca604592001-03-08 17:17:13 +0000928 /* This first part uses wordexp() which is a wonderful C lib
929 * function which expands nearly everything. */
Eric Andersen13d1fa12001-03-08 23:59:45 +0000930 retval = wordexp (command, &expand_result, 0);
Eric Andersenca604592001-03-08 17:17:13 +0000931 if (retval == WRDE_NOSPACE) {
932 /* Mem may have been allocated... */
Eric Andersen13d1fa12001-03-08 23:59:45 +0000933 wordfree (&expand_result);
Eric Andersenca604592001-03-08 17:17:13 +0000934 error_msg("out of space during expansion");
935 return FALSE;
936 }
937 if (retval < 0) {
938 /* Some other error. */
939 error_msg("syntax error");
940 return FALSE;
941 }
942
943 /* Convert from char** (one word per string) to a simple char*,
944 * but don't overflow command which is BUFSIZ in length */
945 *command = '\0';
Eric Andersen13d1fa12001-03-08 23:59:45 +0000946 while (i < expand_result.we_wordc && total_length < BUFSIZ) {
947 length=strlen(expand_result.we_wordv[i])+1;
Eric Andersenca604592001-03-08 17:17:13 +0000948 if (BUFSIZ-total_length-length <= 0) {
949 error_msg("out of space during expansion");
950 return FALSE;
951 }
Eric Andersen13d1fa12001-03-08 23:59:45 +0000952 strcat(command+total_length, expand_result.we_wordv[i++]);
Eric Andersenca604592001-03-08 17:17:13 +0000953 strcat(command+total_length, " ");
954 total_length+=length;
955 }
Eric Andersen13d1fa12001-03-08 23:59:45 +0000956 wordfree (&expand_result);
957#else
958
959 /* Ok. They don't have glibc and they don't have uClibc. Chances are
960 * about 100% they don't have wordexp(), so instead, the best we can do is
961 * use glob, which is better then nothing, but certainly not perfect */
962
963 /* It turns out that glob is very stupid. We have to feed it
964 * one word at a time since it can't cope with a full string.
965 * Here we convert command (char*) into cmd (char**, one word
966 * per string) */
967 {
968
969 int flags = GLOB_NOCHECK|GLOB_BRACE|GLOB_TILDE;
970 char * tmpcmd;
971 /* We need a clean copy, so strsep can mess up the copy while
972 * we write stuff into the original in a minute */
973 char * cmd = strdup(command);
974 for (tmpcmd = cmd; (tmpcmd = strsep(&cmd, " \t")) != NULL;) {
975 if (*tmpcmd == '\0')
976 break;
977 retval = glob(tmpcmd, flags, NULL, &expand_result);
978 /* We can't haveGLOB_APPEND on the first glob call,
979 * so put it there now */
980 if (! (flags & GLOB_APPEND) )
981 flags |= GLOB_APPEND;
982
983 if (retval == GLOB_NOSPACE) {
984 /* Mem may have been allocated... */
985 globfree (&expand_result);
986 error_msg("out of space during expansion");
987 return FALSE;
988 }
Eric Andersenb180dd92001-03-09 00:42:46 +0000989 if (retval != 0 && retval != GLOB_NOMATCH) {
Eric Andersen13d1fa12001-03-08 23:59:45 +0000990 /* Some other error. */
991 error_msg("syntax error");
992 return FALSE;
993 }
994
995 /* Convert from char** (one word per string) to a simple char*,
996 * but don't overflow command which is BUFSIZ in length */
997 *command = '\0';
998 if ( expand_result.gl_pathc > 1) {
999 while (i < expand_result.gl_pathc && total_length < BUFSIZ) {
1000 length=strlen(expand_result.gl_pathv[i])+1;
1001 if (BUFSIZ-total_length-length <= 0) {
1002 error_msg("out of space during expansion");
1003 return FALSE;
1004 }
1005 strcat(command+total_length, expand_result.gl_pathv[i++]);
1006 strcat(command+total_length, " ");
1007 total_length+=length;
1008 }
1009 }
1010 }
1011
1012 free(cmd);
1013 globfree (&expand_result);
1014 }
Eric Andersenca604592001-03-08 17:17:13 +00001015
Eric Andersen13d1fa12001-03-08 23:59:45 +00001016#endif
1017
1018 /* FIXME -- this routine (which is only used when folks
1019 * don't have a C library with wordexp) needs a bit of help
1020 * to handle things like 'echo $PATH$0' */
Eric Andersenca604592001-03-08 17:17:13 +00001021
1022 /* Now do the shell variable substitutions which
1023 * wordexp can't do for us, namely $? and $! */
1024 src = command;
Eric Andersencaeeb362001-02-20 06:38:44 +00001025 while((dst = strchr(src,'$')) != NULL){
Eric Andersen13d1fa12001-03-08 23:59:45 +00001026 /* Ok -- got a $ -- now clean up any trailing mess */
1027 trim(dst);
Eric Andersencaeeb362001-02-20 06:38:44 +00001028 if (!(var = getenv(dst + 1))) {
1029 switch(*(dst+1)) {
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001030 case '?':
Eric Andersencaeeb362001-02-20 06:38:44 +00001031 var = itoa(last_return_code);
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001032 break;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001033 case '!':
Eric Andersen86349772000-12-18 20:25:50 +00001034 if (last_bg_pid==-1)
Eric Andersencaeeb362001-02-20 06:38:44 +00001035 *(var)='\0';
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001036 else
Eric Andersencaeeb362001-02-20 06:38:44 +00001037 var = itoa(last_bg_pid);
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001038 break;
Eric Andersen32f8c172001-03-08 17:44:37 +00001039 /* Everything else like $$, $#, $[0-9], etc should all be
1040 * expanded by wordexp(), so we can in theory skip that stuff
1041 * here, but just to be on the safe side (i.e. since uClibc
1042 * wordexp doesn't do this stuff yet), lets leave it in for
1043 * now. */
Eric Andersenca604592001-03-08 17:17:13 +00001044 case '$':
Eric Andersen32f8c172001-03-08 17:44:37 +00001045 var = itoa(getpid());
1046 break;
Eric Andersenca604592001-03-08 17:17:13 +00001047 case '#':
Eric Andersen32f8c172001-03-08 17:44:37 +00001048 var = itoa(argc-1);
1049 break;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001050 case '0':case '1':case '2':case '3':case '4':
1051 case '5':case '6':case '7':case '8':case '9':
Eric Andersen32f8c172001-03-08 17:44:37 +00001052 {
1053 int index=*(dst + 1)-48;
1054 if (index >= argc) {
1055 var='\0';
1056 } else {
1057 var = argv[index];
1058 }
1059 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001060 break;
Eric Andersen32f8c172001-03-08 17:44:37 +00001061
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001062 }
1063 }
Eric Andersencaeeb362001-02-20 06:38:44 +00001064 if (var) {
Eric Andersenca604592001-03-08 17:17:13 +00001065 int subst_len = strlen(var);
1066 char *next_dst;
1067 if ((next_dst=strpbrk(dst+1, " \t~`!$^&*()=|\\{}[];\"'<>?")) == NULL) {
1068 next_dst = dst;
Eric Andersencaeeb362001-02-20 06:38:44 +00001069 }
Eric Andersenca604592001-03-08 17:17:13 +00001070 src = (char*)xrealloc(src, strlen(src) - strlen(next_dst)+strlen(var)+1);
1071 /* Move stuff to the end of the string to accommodate filling
1072 * the created gap with the new stuff */
1073 memmove(dst+subst_len, next_dst+1, subst_len);
1074 /* Now copy in the new stuff */
Eric Andersen13d1fa12001-03-08 23:59:45 +00001075 strncpy(dst, var, subst_len+1);
Eric Andersen32f8c172001-03-08 17:44:37 +00001076 src = dst;
1077 src++;
1078 } else {
1079 /* Seems we got an un-expandable variable. So delete it. */
1080 char *next_dst;
1081 if ((next_dst=strpbrk(dst+1, " \t~`!$^&*()=|\\{}[];\"'<>?")) != NULL) {
1082 /* Move stuff to the end of the string to accommodate filling
1083 * the created gap with the new stuff */
1084 memmove(dst, next_dst, next_dst-dst);
1085 }
Eric Andersencaeeb362001-02-20 06:38:44 +00001086 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001087 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001088
Eric Andersenca604592001-03-08 17:17:13 +00001089
1090
1091
1092#endif
1093 return TRUE;
Erik Andersen3522eb12000-03-12 23:49:18 +00001094}
1095
Eric Andersen86349772000-12-18 20:25:50 +00001096/* Return cmd->num_progs as 0 if no command is present (e.g. an empty
1097 line). If a valid command is found, command_ptr is set to point to
Erik Andersen3522eb12000-03-12 23:49:18 +00001098 the beginning of the next command (if the original command had more
1099 then one job associated with it) or NULL if no more commands are
1100 present. */
Eric Andersen86349772000-12-18 20:25:50 +00001101static int parse_command(char **command_ptr, struct job *job, int *inbg)
Erik Andersen3522eb12000-03-12 23:49:18 +00001102{
Erik Andersen161220c2000-03-16 08:12:48 +00001103 char *command;
Eric Andersen86349772000-12-18 20:25:50 +00001104 char *return_command = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001105 char *src, *buf, *chptr;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001106 int argc_l = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001107 int done = 0;
Eric Andersen86349772000-12-18 20:25:50 +00001108 int argv_alloced;
Erik Andersen161220c2000-03-16 08:12:48 +00001109 int i;
1110 char quote = '\0';
1111 int count;
Eric Andersen86349772000-12-18 20:25:50 +00001112 struct child_prog *prog;
Erik Andersen3522eb12000-03-12 23:49:18 +00001113
Erik Andersen161220c2000-03-16 08:12:48 +00001114 /* skip leading white space */
Eric Andersen86349772000-12-18 20:25:50 +00001115 while (**command_ptr && isspace(**command_ptr))
1116 (*command_ptr)++;
Erik Andersen3522eb12000-03-12 23:49:18 +00001117
Erik Andersen161220c2000-03-16 08:12:48 +00001118 /* this handles empty lines or leading '#' characters */
Eric Andersen86349772000-12-18 20:25:50 +00001119 if (!**command_ptr || (**command_ptr == '#')) {
1120 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001121 return 0;
1122 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001123
Eric Andersen86349772000-12-18 20:25:50 +00001124 *inbg = 0;
1125 job->num_progs = 1;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001126 job->progs = xmalloc(sizeof(*job->progs));
Erik Andersen3522eb12000-03-12 23:49:18 +00001127
Erik Andersen161220c2000-03-16 08:12:48 +00001128 /* We set the argv elements to point inside of this string. The
Eric Andersen86349772000-12-18 20:25:50 +00001129 memory is freed by free_job(). Allocate twice the original
Eric Andersenb54833c2000-07-03 23:56:26 +00001130 length in case we need to quote every single character.
Erik Andersen3522eb12000-03-12 23:49:18 +00001131
Erik Andersen161220c2000-03-16 08:12:48 +00001132 Getting clean memory relieves us of the task of NULL
1133 terminating things and makes the rest of this look a bit
1134 cleaner (though it is, admittedly, a tad less efficient) */
Eric Andersen86349772000-12-18 20:25:50 +00001135 job->cmdbuf = command = xcalloc(2*strlen(*command_ptr) + 1, sizeof(char));
Erik Andersen161220c2000-03-16 08:12:48 +00001136 job->text = NULL;
Erik Andersen3522eb12000-03-12 23:49:18 +00001137
Erik Andersen161220c2000-03-16 08:12:48 +00001138 prog = job->progs;
Eric Andersen86349772000-12-18 20:25:50 +00001139 prog->num_redirects = 0;
1140 prog->redirects = NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001141 prog->is_stopped = 0;
1142 prog->family = job;
Erik Andersen3522eb12000-03-12 23:49:18 +00001143
Eric Andersen86349772000-12-18 20:25:50 +00001144 argv_alloced = 5;
1145 prog->argv = xmalloc(sizeof(*prog->argv) * argv_alloced);
1146 prog->argv[0] = job->cmdbuf;
Erik Andersen3522eb12000-03-12 23:49:18 +00001147
Erik Andersen161220c2000-03-16 08:12:48 +00001148 buf = command;
Eric Andersen86349772000-12-18 20:25:50 +00001149 src = *command_ptr;
Erik Andersen161220c2000-03-16 08:12:48 +00001150 while (*src && !done) {
1151 if (quote == *src) {
1152 quote = '\0';
1153 } else if (quote) {
1154 if (*src == '\\') {
1155 src++;
1156 if (!*src) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001157 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001158 free_job(job);
Erik Andersen161220c2000-03-16 08:12:48 +00001159 return 1;
1160 }
1161
1162 /* in shell, "\'" should yield \' */
Eric Andersenb2356f62000-12-11 19:14:40 +00001163 if (*src != quote) {
Erik Andersen161220c2000-03-16 08:12:48 +00001164 *buf++ = '\\';
Eric Andersenb2356f62000-12-11 19:14:40 +00001165 *buf++ = '\\';
1166 }
Erik Andersen161220c2000-03-16 08:12:48 +00001167 } else if (*src == '*' || *src == '?' || *src == '[' ||
1168 *src == ']') *buf++ = '\\';
1169 *buf++ = *src;
1170 } else if (isspace(*src)) {
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001171 if (*prog->argv[argc_l]) {
1172 buf++, argc_l++;
Erik Andersen161220c2000-03-16 08:12:48 +00001173 /* +1 here leaves room for the NULL which ends argv */
Eric Andersen86349772000-12-18 20:25:50 +00001174 if ((argc_l + 1) == argv_alloced) {
1175 argv_alloced += 5;
Matt Kraaib8907522000-09-13 02:08:21 +00001176 prog->argv = xrealloc(prog->argv,
1177 sizeof(*prog->argv) *
Eric Andersen86349772000-12-18 20:25:50 +00001178 argv_alloced);
Erik Andersen161220c2000-03-16 08:12:48 +00001179 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001180 prog->argv[argc_l] = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001181 }
1182 } else
1183 switch (*src) {
1184 case '"':
1185 case '\'':
1186 quote = *src;
1187 break;
1188
1189 case '#': /* comment */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001190 if (*(src-1)== '$')
1191 *buf++ = *src;
1192 else
1193 done = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001194 break;
1195
Eric Andersen86349772000-12-18 20:25:50 +00001196 case '>': /* redirects */
Erik Andersen161220c2000-03-16 08:12:48 +00001197 case '<':
Eric Andersen86349772000-12-18 20:25:50 +00001198 i = prog->num_redirects++;
1199 prog->redirects = xrealloc(prog->redirects,
1200 sizeof(*prog->redirects) *
Matt Kraaib8907522000-09-13 02:08:21 +00001201 (i + 1));
Erik Andersen161220c2000-03-16 08:12:48 +00001202
Eric Andersen86349772000-12-18 20:25:50 +00001203 prog->redirects[i].fd = -1;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001204 if (buf != prog->argv[argc_l]) {
Erik Andersen161220c2000-03-16 08:12:48 +00001205 /* the stuff before this character may be the file number
1206 being redirected */
Eric Andersen86349772000-12-18 20:25:50 +00001207 prog->redirects[i].fd =
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001208 strtol(prog->argv[argc_l], &chptr, 10);
Erik Andersen161220c2000-03-16 08:12:48 +00001209
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001210 if (*chptr && *prog->argv[argc_l]) {
1211 buf++, argc_l++;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001212 prog->argv[argc_l] = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001213 }
1214 }
1215
Eric Andersen86349772000-12-18 20:25:50 +00001216 if (prog->redirects[i].fd == -1) {
Erik Andersen161220c2000-03-16 08:12:48 +00001217 if (*src == '>')
Eric Andersen86349772000-12-18 20:25:50 +00001218 prog->redirects[i].fd = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001219 else
Eric Andersen86349772000-12-18 20:25:50 +00001220 prog->redirects[i].fd = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001221 }
1222
1223 if (*src++ == '>') {
1224 if (*src == '>')
Eric Andersen86349772000-12-18 20:25:50 +00001225 prog->redirects[i].type =
Erik Andersen161220c2000-03-16 08:12:48 +00001226 REDIRECT_APPEND, src++;
1227 else
Eric Andersen86349772000-12-18 20:25:50 +00001228 prog->redirects[i].type = REDIRECT_OVERWRITE;
Erik Andersen161220c2000-03-16 08:12:48 +00001229 } else {
Eric Andersen86349772000-12-18 20:25:50 +00001230 prog->redirects[i].type = REDIRECT_INPUT;
Erik Andersen161220c2000-03-16 08:12:48 +00001231 }
1232
1233 /* This isn't POSIX sh compliant. Oh well. */
1234 chptr = src;
1235 while (isspace(*chptr))
1236 chptr++;
1237
1238 if (!*chptr) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001239 error_msg("file name expected after %c", *src);
Eric Andersen86349772000-12-18 20:25:50 +00001240 free_job(job);
1241 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001242 return 1;
1243 }
1244
Eric Andersen86349772000-12-18 20:25:50 +00001245 prog->redirects[i].filename = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001246 while (*chptr && !isspace(*chptr))
1247 *buf++ = *chptr++;
1248
1249 src = chptr - 1; /* we src++ later */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001250 prog->argv[argc_l] = ++buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001251 break;
1252
1253 case '|': /* pipe */
1254 /* finish this command */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001255 if (*prog->argv[argc_l])
1256 argc_l++;
1257 if (!argc_l) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001258 error_msg("empty command in pipe");
Eric Andersen86349772000-12-18 20:25:50 +00001259 free_job(job);
1260 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001261 return 1;
1262 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001263 prog->argv[argc_l] = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001264
1265 /* and start the next */
Eric Andersen86349772000-12-18 20:25:50 +00001266 job->num_progs++;
Matt Kraaib8907522000-09-13 02:08:21 +00001267 job->progs = xrealloc(job->progs,
Eric Andersen86349772000-12-18 20:25:50 +00001268 sizeof(*job->progs) * job->num_progs);
1269 prog = job->progs + (job->num_progs - 1);
1270 prog->num_redirects = 0;
1271 prog->redirects = NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001272 prog->is_stopped = 0;
1273 prog->family = job;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001274 argc_l = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001275
Eric Andersen86349772000-12-18 20:25:50 +00001276 argv_alloced = 5;
1277 prog->argv = xmalloc(sizeof(*prog->argv) * argv_alloced);
Erik Andersen161220c2000-03-16 08:12:48 +00001278 prog->argv[0] = ++buf;
1279
1280 src++;
1281 while (*src && isspace(*src))
1282 src++;
1283
1284 if (!*src) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001285 error_msg("empty command in pipe");
Eric Andersen86349772000-12-18 20:25:50 +00001286 free_job(job);
1287 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001288 return 1;
1289 }
1290 src--; /* we'll ++ it at the end of the loop */
1291
1292 break;
1293
1294 case '&': /* background */
Eric Andersen86349772000-12-18 20:25:50 +00001295 *inbg = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001296 case ';': /* multiple commands */
1297 done = 1;
Eric Andersen86349772000-12-18 20:25:50 +00001298 return_command = *command_ptr + (src - *command_ptr) + 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001299 break;
1300
Eric Andersena1d187a2000-07-17 19:14:41 +00001301#ifdef BB_FEATURE_SH_BACKTICKS
Eric Andersenec10b9d2000-07-14 01:13:11 +00001302 case '`':
1303 /* Exec a backtick-ed command */
Eric Andersen8ea28be2001-01-05 20:58:22 +00001304 /* Besides any previous brokenness, I have not
1305 * updated backtick handling for close_me support.
1306 * I don't know if it needs it or not. -- LRD */
Eric Andersenec10b9d2000-07-14 01:13:11 +00001307 {
Eric Andersena1d187a2000-07-17 19:14:41 +00001308 char* charptr1=NULL, *charptr2;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001309 char* ptr=NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001310 struct job *newjob;
1311 struct jobset njob_list = { NULL, NULL };
Eric Andersena1d187a2000-07-17 19:14:41 +00001312 int pipefd[2];
1313 int size;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001314
1315 ptr=strchr(++src, '`');
1316 if (ptr==NULL) {
1317 fprintf(stderr, "Unmatched '`' in command\n");
Eric Andersen86349772000-12-18 20:25:50 +00001318 free_job(job);
Eric Andersenec10b9d2000-07-14 01:13:11 +00001319 return 1;
1320 }
1321
Eric Andersena1d187a2000-07-17 19:14:41 +00001322 /* Make some space to hold just the backticked command */
Eric Andersen6efc48c2000-07-18 08:16:39 +00001323 charptr1 = charptr2 = xmalloc(1+ptr-src);
Matt Kraai0b2da462000-09-19 06:46:44 +00001324 memcpy(charptr1, src, ptr-src);
1325 charptr1[ptr-src] = '\0';
Eric Andersen86349772000-12-18 20:25:50 +00001326 newjob = xmalloc(sizeof(struct job));
1327 newjob->job_list = &njob_list;
Eric Andersena1d187a2000-07-17 19:14:41 +00001328 /* Now parse and run the backticked command */
Eric Andersen86349772000-12-18 20:25:50 +00001329 if (!parse_command(&charptr1, newjob, inbg)
1330 && newjob->num_progs) {
Eric Andersena1d187a2000-07-17 19:14:41 +00001331 pipe(pipefd);
Eric Andersen86349772000-12-18 20:25:50 +00001332 run_command(newjob, 0, pipefd);
Eric Andersenec10b9d2000-07-14 01:13:11 +00001333 }
Eric Andersen86349772000-12-18 20:25:50 +00001334 checkjobs(job->job_list);
1335 free_job(newjob); /* doesn't actually free newjob,
1336 looks like a memory leak */
Eric Andersen6efc48c2000-07-18 08:16:39 +00001337 free(charptr2);
1338
1339 /* Make a copy of any stuff left over in the command
1340 * line after the second backtick */
1341 charptr2 = xmalloc(strlen(ptr)+1);
1342 memcpy(charptr2, ptr+1, strlen(ptr));
1343
Eric Andersenec10b9d2000-07-14 01:13:11 +00001344
Eric Andersena1d187a2000-07-17 19:14:41 +00001345 /* Copy the output from the backtick-ed command into the
1346 * command line, making extra room as needed */
1347 --src;
1348 charptr1 = xmalloc(BUFSIZ);
Mark Whitleyf57c9442000-12-07 19:56:48 +00001349 while ( (size=full_read(pipefd[0], charptr1, BUFSIZ-1)) >0) {
Eric Andersen86349772000-12-18 20:25:50 +00001350 int newsize=src - *command_ptr + size + 1 + strlen(charptr2);
1351 if (newsize > BUFSIZ) {
1352 *command_ptr=xrealloc(*command_ptr, newsize);
Eric Andersena1d187a2000-07-17 19:14:41 +00001353 }
1354 memcpy(src, charptr1, size);
1355 src+=size;
1356 }
1357 free(charptr1);
1358 close(pipefd[0]);
1359 if (*(src-1)=='\n')
1360 --src;
1361
Eric Andersen86349772000-12-18 20:25:50 +00001362 /* Now paste into the *command_ptr all the stuff
Eric Andersena1d187a2000-07-17 19:14:41 +00001363 * leftover after the second backtick */
Matt Kraaicbbe4d62000-09-14 00:26:50 +00001364 memcpy(src, charptr2, strlen(charptr2)+1);
Eric Andersena1d187a2000-07-17 19:14:41 +00001365 free(charptr2);
1366
Eric Andersen86349772000-12-18 20:25:50 +00001367 /* Now recursively call parse_command to deal with the new
Eric Andersena1d187a2000-07-17 19:14:41 +00001368 * and improved version of the command line with the backtick
1369 * results expanded in place... */
Eric Andersen86349772000-12-18 20:25:50 +00001370 {
1371 struct jobset *jl=job->job_list;
1372 free_job(job);
1373 job->job_list = jl;
1374 }
1375 return(parse_command(command_ptr, job, inbg));
Eric Andersenec10b9d2000-07-14 01:13:11 +00001376 }
1377 break;
Eric Andersena1d187a2000-07-17 19:14:41 +00001378#endif // BB_FEATURE_SH_BACKTICKS
Matt Kraai131241f2000-09-14 00:43:20 +00001379
1380 case '\\':
1381 src++;
1382 if (!*src) {
Eric Andersen86349772000-12-18 20:25:50 +00001383/* This is currently a little broken... */
1384#ifdef HANDLE_CONTINUATION_CHARS
1385 /* They fed us a continuation char, so continue reading stuff
1386 * on the next line, then tack that onto the end of the current
1387 * command */
1388 char *command;
1389 int newsize;
1390 printf("erik: found a continue char at EOL...\n");
1391 command = (char *) xcalloc(BUFSIZ, sizeof(char));
1392 if (get_command(input, command)) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001393 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001394 free(command);
1395 free_job(job);
1396 return 1;
1397 }
1398 newsize = strlen(*command_ptr) + strlen(command) + 2;
1399 if (newsize > BUFSIZ) {
1400 printf("erik: doing realloc\n");
1401 *command_ptr=xrealloc(*command_ptr, newsize);
1402 }
1403 printf("erik: A: *command_ptr='%s'\n", *command_ptr);
1404 memcpy(--src, command, strlen(command));
1405 printf("erik: B: *command_ptr='%s'\n", *command_ptr);
1406 free(command);
1407 break;
1408#else
Matt Kraaidd19c692001-01-31 19:00:21 +00001409 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001410 free(command);
1411 free_job(job);
Matt Kraai131241f2000-09-14 00:43:20 +00001412 return 1;
Eric Andersen86349772000-12-18 20:25:50 +00001413#endif
Matt Kraai131241f2000-09-14 00:43:20 +00001414 }
1415 if (*src == '*' || *src == '[' || *src == ']'
1416 || *src == '?') *buf++ = '\\';
1417 /* fallthrough */
Erik Andersen161220c2000-03-16 08:12:48 +00001418 default:
1419 *buf++ = *src;
1420 }
1421
Erik Andersend75af992000-03-16 08:09:09 +00001422 src++;
Erik Andersen161220c2000-03-16 08:12:48 +00001423 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001424
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001425 if (*prog->argv[argc_l]) {
1426 argc_l++;
Erik Andersen161220c2000-03-16 08:12:48 +00001427 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001428 if (!argc_l) {
Eric Andersen86349772000-12-18 20:25:50 +00001429 free_job(job);
Erik Andersen161220c2000-03-16 08:12:48 +00001430 return 0;
1431 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001432 prog->argv[argc_l] = NULL;
Erik Andersen3522eb12000-03-12 23:49:18 +00001433
Eric Andersen86349772000-12-18 20:25:50 +00001434 if (!return_command) {
1435 job->text = xmalloc(strlen(*command_ptr) + 1);
1436 strcpy(job->text, *command_ptr);
Erik Andersen161220c2000-03-16 08:12:48 +00001437 } else {
1438 /* This leaves any trailing spaces, which is a bit sloppy */
Eric Andersen86349772000-12-18 20:25:50 +00001439 count = return_command - *command_ptr;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001440 job->text = xmalloc(count + 1);
Eric Andersen86349772000-12-18 20:25:50 +00001441 strncpy(job->text, *command_ptr, count);
Erik Andersen161220c2000-03-16 08:12:48 +00001442 job->text[count] = '\0';
1443 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001444
Eric Andersen86349772000-12-18 20:25:50 +00001445 *command_ptr = return_command;
Eric Andersen46f0beb2000-11-14 21:59:22 +00001446
Erik Andersend75af992000-03-16 08:09:09 +00001447 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001448}
1449
Eric Andersen86349772000-12-18 20:25:50 +00001450/* Run the child_prog, no matter what kind of command it uses.
1451 */
1452static int pseudo_exec(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +00001453{
Eric Andersen86349772000-12-18 20:25:50 +00001454 struct built_in_command *x;
Eric Andersenb54833c2000-07-03 23:56:26 +00001455#ifdef BB_FEATURE_SH_STANDALONE_SHELL
Eric Andersenaf4ac772001-02-01 22:43:49 +00001456 char *name;
Erik Andersenbcd61772000-05-13 06:33:19 +00001457#endif
Erik Andersen3522eb12000-03-12 23:49:18 +00001458
Eric Andersene9f07fb2000-12-21 18:31:36 +00001459 /* Check if the command matches any of the non-forking builtins.
1460 * Depending on context, this might be redundant. But it's
1461 * easier to waste a few CPU cycles than it is to figure out
1462 * if this is one of those cases.
Eric Andersen86349772000-12-18 20:25:50 +00001463 */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001464 for (x = bltins; x->cmd; x++) {
1465 if (strcmp(child->argv[0], x->cmd) == 0 ) {
1466 exit(x->function(child));
1467 }
1468 }
1469
1470 /* Check if the command matches any of the forking builtins. */
Eric Andersen86349772000-12-18 20:25:50 +00001471 for (x = bltins_forking; x->cmd; x++) {
1472 if (strcmp(child->argv[0], x->cmd) == 0) {
1473 applet_name=x->cmd;
1474 exit (x->function(child));
1475 }
1476 }
1477#ifdef BB_FEATURE_SH_STANDALONE_SHELL
1478 /* Check if the command matches any busybox internal
1479 * commands ("applets") here. Following discussions from
1480 * November 2000 on busybox@opensource.lineo.com, don't use
1481 * get_last_path_component(). This way explicit (with
1482 * slashes) filenames will never be interpreted as an
1483 * applet, just like with builtins. This way the user can
1484 * override an applet with an explicit filename reference.
1485 * The only downside to this change is that an explicit
1486 * /bin/foo invocation will fork and exec /bin/foo, even if
1487 * /bin/foo is a symlink to busybox.
1488 */
Matt Kraaif2cc2762001-02-01 19:21:20 +00001489 name = child->argv[0];
Eric Andersen86349772000-12-18 20:25:50 +00001490
1491#ifdef BB_FEATURE_SH_APPLETS_ALWAYS_WIN
1492 /* If you enable BB_FEATURE_SH_APPLETS_ALWAYS_WIN, then
1493 * if you run /bin/cat, it will use BusyBox cat even if
1494 * /bin/cat exists on the filesystem and is _not_ busybox.
1495 * Some systems want this, others do not. Choose wisely. :-)
1496 */
Matt Kraaif2cc2762001-02-01 19:21:20 +00001497 name = get_last_path_component(name);
Eric Andersen86349772000-12-18 20:25:50 +00001498#endif
1499
Eric Andersen67991cf2001-02-14 21:23:06 +00001500 {
1501 char** argv=child->argv;
1502 int argc_l;
1503 for(argc_l=0;*argv!=NULL; argv++, argc_l++);
1504 optind = 1;
1505 run_applet_by_name(name, argc_l, child->argv);
Eric Andersen86349772000-12-18 20:25:50 +00001506 }
1507#endif
1508
1509 execvp(child->argv[0], child->argv);
Eric Andersen8ea28be2001-01-05 20:58:22 +00001510 perror_msg_and_die("%s", child->argv[0]);
Eric Andersen86349772000-12-18 20:25:50 +00001511}
1512
1513static void insert_job(struct job *newjob, int inbg)
1514{
1515 struct job *thejob;
1516 struct jobset *job_list=newjob->job_list;
1517
1518 /* find the ID for thejob to use */
1519 newjob->jobid = 1;
1520 for (thejob = job_list->head; thejob; thejob = thejob->next)
1521 if (thejob->jobid >= newjob->jobid)
1522 newjob->jobid = thejob->jobid + 1;
1523
1524 /* add thejob to the list of running jobs */
1525 if (!job_list->head) {
1526 thejob = job_list->head = xmalloc(sizeof(*thejob));
1527 } else {
1528 for (thejob = job_list->head; thejob->next; thejob = thejob->next) /* nothing */;
1529 thejob->next = xmalloc(sizeof(*thejob));
1530 thejob = thejob->next;
1531 }
1532
1533 *thejob = *newjob; /* physically copy the struct job */
1534 thejob->next = NULL;
1535 thejob->running_progs = thejob->num_progs;
1536 thejob->stopped_progs = 0;
1537
1538 if (inbg) {
1539 /* we don't wait for background thejobs to return -- append it
1540 to the list of backgrounded thejobs and leave it alone */
1541 printf("[%d] %d\n", thejob->jobid,
1542 newjob->progs[newjob->num_progs - 1].pid);
1543#ifdef BB_FEATURE_SH_ENVIRONMENT
1544 last_bg_pid=newjob->progs[newjob->num_progs - 1].pid;
1545#endif
1546 } else {
1547 newjob->job_list->fg = thejob;
1548
1549 /* move the new process group into the foreground */
1550 /* suppress messages when run from /linuxrc mag@sysgo.de */
1551 if (tcsetpgrp(0, newjob->pgrp) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +00001552 perror_msg("tcsetpgrp");
Eric Andersen86349772000-12-18 20:25:50 +00001553 }
1554}
1555
1556static int run_command(struct job *newjob, int inbg, int outpipe[2])
1557{
1558 /* struct job *thejob; */
1559 int i;
1560 int nextin, nextout;
1561 int pipefds[2]; /* pipefd[0] is for reading */
1562 struct built_in_command *x;
1563 struct child_prog *child;
1564
Eric Andersen6efc48c2000-07-18 08:16:39 +00001565 nextin = 0, nextout = 1;
Eric Andersen86349772000-12-18 20:25:50 +00001566 for (i = 0; i < newjob->num_progs; i++) {
1567 child = & (newjob->progs[i]);
1568
1569 if ((i + 1) < newjob->num_progs) {
1570 if (pipe(pipefds)<0) perror_msg_and_die("pipe");
Erik Andersen161220c2000-03-16 08:12:48 +00001571 nextout = pipefds[1];
1572 } else {
Eric Andersen86349772000-12-18 20:25:50 +00001573 if (outpipe[1]!=-1) {
1574 nextout = outpipe[1];
Eric Andersen6efc48c2000-07-18 08:16:39 +00001575 } else {
1576 nextout = 1;
1577 }
Erik Andersen161220c2000-03-16 08:12:48 +00001578 }
1579
Eric Andersen501c88b2000-07-28 15:14:45 +00001580#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen86349772000-12-18 20:25:50 +00001581 if (show_x_trace==TRUE) {
Eric Andersen501c88b2000-07-28 15:14:45 +00001582 int j;
Eric Andersen86349772000-12-18 20:25:50 +00001583 fputc('+', stderr);
1584 for (j = 0; child->argv[j]; j++) {
1585 fputc(' ', stderr);
1586 fputs(child->argv[j], stderr);
1587 }
1588 fputc('\n', stderr);
Eric Andersen501c88b2000-07-28 15:14:45 +00001589 }
1590#endif
1591
Eric Andersene9f07fb2000-12-21 18:31:36 +00001592 /* Check if the command matches any non-forking builtins,
1593 * but only if this is a simple command.
1594 * Non-forking builtins within pipes have to fork anyway,
1595 * and are handled in pseudo_exec. "echo foo | read bar"
1596 * is doomed to failure, and doesn't work on bash, either.
Eric Andersen86349772000-12-18 20:25:50 +00001597 */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001598 if (newjob->num_progs == 1) {
1599 for (x = bltins; x->cmd; x++) {
1600 if (strcmp(child->argv[0], x->cmd) == 0 ) {
1601 int squirrel[] = {-1, -1, -1};
1602 int rcode;
1603 setup_redirects(child, squirrel);
1604 rcode = x->function(child);
1605 restore_redirects(squirrel);
1606 return rcode;
1607 }
Erik Andersen330fd2b2000-05-19 05:35:19 +00001608 }
1609 }
1610
Eric Andersen86349772000-12-18 20:25:50 +00001611 if (!(child->pid = fork())) {
Erik Andersen161220c2000-03-16 08:12:48 +00001612 signal(SIGTTOU, SIG_DFL);
1613
Eric Andersen8ea28be2001-01-05 20:58:22 +00001614 close_all();
1615
Eric Andersen86349772000-12-18 20:25:50 +00001616 if (outpipe[1]!=-1) {
1617 close(outpipe[0]);
Eric Andersen6efc48c2000-07-18 08:16:39 +00001618 }
1619 if (nextin != 0) {
1620 dup2(nextin, 0);
1621 close(nextin);
1622 }
1623
1624 if (nextout != 1) {
Erik Andersen161220c2000-03-16 08:12:48 +00001625 dup2(nextout, 1);
Eric Andersen86349772000-12-18 20:25:50 +00001626 dup2(nextout, 2); /* Really? */
Erik Andersen161220c2000-03-16 08:12:48 +00001627 close(nextout);
Eric Andersen501c88b2000-07-28 15:14:45 +00001628 close(pipefds[0]);
Erik Andersen161220c2000-03-16 08:12:48 +00001629 }
1630
Eric Andersen86349772000-12-18 20:25:50 +00001631 /* explicit redirects override pipes */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001632 setup_redirects(child,NULL);
Erik Andersen161220c2000-03-16 08:12:48 +00001633
Eric Andersen86349772000-12-18 20:25:50 +00001634 pseudo_exec(child);
Erik Andersen161220c2000-03-16 08:12:48 +00001635 }
Eric Andersen86349772000-12-18 20:25:50 +00001636 if (outpipe[1]!=-1) {
1637 close(outpipe[1]);
Eric Andersena1d187a2000-07-17 19:14:41 +00001638 }
Erik Andersen161220c2000-03-16 08:12:48 +00001639
1640 /* put our child in the process group whose leader is the
1641 first process in this pipe */
Eric Andersen86349772000-12-18 20:25:50 +00001642 setpgid(child->pid, newjob->progs[0].pid);
Erik Andersen161220c2000-03-16 08:12:48 +00001643 if (nextin != 0)
1644 close(nextin);
Eric Andersen6efc48c2000-07-18 08:16:39 +00001645 if (nextout != 1)
Erik Andersen161220c2000-03-16 08:12:48 +00001646 close(nextout);
1647
1648 /* If there isn't another process, nextin is garbage
1649 but it doesn't matter */
1650 nextin = pipefds[0];
1651 }
1652
Eric Andersen86349772000-12-18 20:25:50 +00001653 newjob->pgrp = newjob->progs[0].pid;
Erik Andersen161220c2000-03-16 08:12:48 +00001654
Eric Andersen86349772000-12-18 20:25:50 +00001655 insert_job(newjob, inbg);
Erik Andersen3522eb12000-03-12 23:49:18 +00001656
Erik Andersen161220c2000-03-16 08:12:48 +00001657 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001658}
1659
Erik Andersend75af992000-03-16 08:09:09 +00001660static int busy_loop(FILE * input)
Erik Andersen3522eb12000-03-12 23:49:18 +00001661{
Erik Andersen161220c2000-03-16 08:12:48 +00001662 char *command;
Eric Andersen86349772000-12-18 20:25:50 +00001663 char *next_command = NULL;
1664 struct job newjob;
Eric Andersen1c314ad2000-06-28 16:56:25 +00001665 pid_t parent_pgrp;
Erik Andersen161220c2000-03-16 08:12:48 +00001666 int i;
Eric Andersen86349772000-12-18 20:25:50 +00001667 int inbg;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001668 int status;
Eric Andersen86349772000-12-18 20:25:50 +00001669 newjob.job_list = &job_list;
1670 newjob.job_context = DEFAULT_CONTEXT;
Erik Andersen3522eb12000-03-12 23:49:18 +00001671
Eric Andersen1c314ad2000-06-28 16:56:25 +00001672 /* save current owner of TTY so we can restore it on exit */
1673 parent_pgrp = tcgetpgrp(0);
1674
Matt Kraaib8907522000-09-13 02:08:21 +00001675 command = (char *) xcalloc(BUFSIZ, sizeof(char));
Erik Andersend75af992000-03-16 08:09:09 +00001676
Erik Andersen161220c2000-03-16 08:12:48 +00001677 /* don't pay any attention to this signal; it just confuses
1678 things and isn't really meant for shells anyway */
1679 signal(SIGTTOU, SIG_IGN);
Erik Andersend75af992000-03-16 08:09:09 +00001680
Erik Andersen161220c2000-03-16 08:12:48 +00001681 while (1) {
Eric Andersen86349772000-12-18 20:25:50 +00001682 if (!job_list.fg) {
Erik Andersend75af992000-03-16 08:09:09 +00001683 /* no job is in the foreground */
Erik Andersen3522eb12000-03-12 23:49:18 +00001684
Erik Andersend75af992000-03-16 08:09:09 +00001685 /* see if any background processes have exited */
Eric Andersen86349772000-12-18 20:25:50 +00001686 checkjobs(&job_list);
Erik Andersen3522eb12000-03-12 23:49:18 +00001687
Eric Andersen86349772000-12-18 20:25:50 +00001688 if (!next_command) {
1689 if (get_command(input, command))
Erik Andersen161220c2000-03-16 08:12:48 +00001690 break;
Eric Andersen86349772000-12-18 20:25:50 +00001691 next_command = command;
Erik Andersend75af992000-03-16 08:09:09 +00001692 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001693
Eric Andersenca604592001-03-08 17:17:13 +00001694 if (expand_arguments(next_command) == FALSE) {
1695 free(command);
1696 command = (char *) xcalloc(BUFSIZ, sizeof(char));
1697 next_command = NULL;
1698 continue;
1699 }
1700
Eric Andersen86349772000-12-18 20:25:50 +00001701 if (!parse_command(&next_command, &newjob, &inbg) &&
1702 newjob.num_progs) {
Eric Andersena1d187a2000-07-17 19:14:41 +00001703 int pipefds[2] = {-1,-1};
Eric Andersen86349772000-12-18 20:25:50 +00001704 debug_printf( "job=%p being fed to run_command by busy_loop()'\n", &newjob);
1705 run_command(&newjob, inbg, pipefds);
Eric Andersenfad9c112000-07-25 18:06:52 +00001706 }
1707 else {
Eric Andersena1d187a2000-07-17 19:14:41 +00001708 free(command);
Matt Kraaib8907522000-09-13 02:08:21 +00001709 command = (char *) xcalloc(BUFSIZ, sizeof(char));
Eric Andersen86349772000-12-18 20:25:50 +00001710 next_command = NULL;
Erik Andersend75af992000-03-16 08:09:09 +00001711 }
1712 } else {
1713 /* a job is running in the foreground; wait for it */
1714 i = 0;
Eric Andersen86349772000-12-18 20:25:50 +00001715 while (!job_list.fg->progs[i].pid ||
1716 job_list.fg->progs[i].is_stopped == 1) i++;
Erik Andersen3522eb12000-03-12 23:49:18 +00001717
Eric Andersen8ea28be2001-01-05 20:58:22 +00001718 if (waitpid(job_list.fg->progs[i].pid, &status, WUNTRACED)<0)
1719 perror_msg_and_die("waitpid(%d)",job_list.fg->progs[i].pid);
Erik Andersen3522eb12000-03-12 23:49:18 +00001720
Erik Andersend75af992000-03-16 08:09:09 +00001721 if (WIFEXITED(status) || WIFSIGNALED(status)) {
Erik Andersen161220c2000-03-16 08:12:48 +00001722 /* the child exited */
Eric Andersen86349772000-12-18 20:25:50 +00001723 job_list.fg->running_progs--;
1724 job_list.fg->progs[i].pid = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001725
Eric Andersen501c88b2000-07-28 15:14:45 +00001726#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen86349772000-12-18 20:25:50 +00001727 last_return_code=WEXITSTATUS(status);
Eric Andersen86349772000-12-18 20:25:50 +00001728 debug_printf("'%s' exited -- return code %d\n",
1729 job_list.fg->text, last_return_code);
Eric Andersenb180dd92001-03-09 00:42:46 +00001730#endif
Eric Andersen86349772000-12-18 20:25:50 +00001731 if (!job_list.fg->running_progs) {
Erik Andersen161220c2000-03-16 08:12:48 +00001732 /* child exited */
Eric Andersen86349772000-12-18 20:25:50 +00001733 remove_job(&job_list, job_list.fg);
1734 job_list.fg = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001735 }
Erik Andersend75af992000-03-16 08:09:09 +00001736 } else {
Erik Andersen161220c2000-03-16 08:12:48 +00001737 /* the child was stopped */
Eric Andersen86349772000-12-18 20:25:50 +00001738 job_list.fg->stopped_progs++;
1739 job_list.fg->progs[i].is_stopped = 1;
Erik Andersen3522eb12000-03-12 23:49:18 +00001740
Eric Andersen86349772000-12-18 20:25:50 +00001741 if (job_list.fg->stopped_progs == job_list.fg->running_progs) {
1742 printf("\n" JOB_STATUS_FORMAT, job_list.fg->jobid,
1743 "Stopped", job_list.fg->text);
1744 job_list.fg = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001745 }
Erik Andersend75af992000-03-16 08:09:09 +00001746 }
1747
Eric Andersen86349772000-12-18 20:25:50 +00001748 if (!job_list.fg) {
Erik Andersen161220c2000-03-16 08:12:48 +00001749 /* move the shell to the foreground */
Eric Andersen1c314ad2000-06-28 16:56:25 +00001750 /* suppress messages when run from /linuxrc mag@sysgo.de */
1751 if (tcsetpgrp(0, getpid()) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +00001752 perror_msg("tcsetpgrp");
Erik Andersend75af992000-03-16 08:09:09 +00001753 }
1754 }
1755 }
Erik Andersen161220c2000-03-16 08:12:48 +00001756 free(command);
Erik Andersen3522eb12000-03-12 23:49:18 +00001757
Eric Andersen1c314ad2000-06-28 16:56:25 +00001758 /* return controlling TTY back to parent process group before exiting */
1759 if (tcsetpgrp(0, parent_pgrp))
Matt Kraaia9819b22000-12-22 01:48:07 +00001760 perror_msg("tcsetpgrp");
Eric Andersenb54833c2000-07-03 23:56:26 +00001761
1762 /* return exit status if called with "-c" */
1763 if (input == NULL && WIFEXITED(status))
1764 return WEXITSTATUS(status);
1765
Erik Andersen161220c2000-03-16 08:12:48 +00001766 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001767}
1768
1769
Eric Andersenfad9c112000-07-25 18:06:52 +00001770#ifdef BB_FEATURE_CLEAN_UP
1771void free_memory(void)
1772{
Eric Andersenfad9c112000-07-25 18:06:52 +00001773 if (cwd)
1774 free(cwd);
1775 if (local_pending_command)
1776 free(local_pending_command);
1777
Eric Andersen86349772000-12-18 20:25:50 +00001778 if (job_list.fg && !job_list.fg->running_progs) {
1779 remove_job(&job_list, job_list.fg);
Eric Andersenfad9c112000-07-25 18:06:52 +00001780 }
1781}
1782#endif
1783
Eric Andersen6efc48c2000-07-18 08:16:39 +00001784
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001785int shell_main(int argc_l, char **argv_l)
Erik Andersen3522eb12000-03-12 23:49:18 +00001786{
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001787 int opt, interactive=FALSE;
Erik Andersen161220c2000-03-16 08:12:48 +00001788 FILE *input = stdin;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001789 argc = argc_l;
1790 argv = argv_l;
Erik Andersen3522eb12000-03-12 23:49:18 +00001791
Eric Andersen702ec592001-03-06 22:17:29 +00001792 /* These variables need re-initializing when recursing */
Eric Andersenb0970d42001-01-05 19:34:52 +00001793 shell_context = 0;
1794 cwd=NULL;
Eric Andersenb0970d42001-01-05 19:34:52 +00001795 local_pending_command = NULL;
Eric Andersen702ec592001-03-06 22:17:29 +00001796 close_me_head = NULL;
Eric Andersenb0970d42001-01-05 19:34:52 +00001797 job_list.head = NULL;
1798 job_list.fg = NULL;
1799#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +00001800 last_bg_pid=1;
1801 last_return_code=1;
Eric Andersenb0970d42001-01-05 19:34:52 +00001802 show_x_trace=FALSE;
1803#endif
Eric Andersen501c88b2000-07-28 15:14:45 +00001804
Eric Andersenb558e762000-11-30 22:43:16 +00001805 if (argv[0] && argv[0][0] == '-') {
Eric Andersen8ea28be2001-01-05 20:58:22 +00001806 FILE *prof_input;
1807 prof_input = fopen("/etc/profile", "r");
1808 if (!prof_input) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001809 printf( "Couldn't open file '/etc/profile'\n");
Eric Andersen8ea28be2001-01-05 20:58:22 +00001810 } else {
1811 int tmp_fd = fileno(prof_input);
1812 mark_open(tmp_fd);
1813 /* Now run the file */
1814 busy_loop(prof_input);
1815 fclose(prof_input);
1816 mark_closed(tmp_fd);
1817 }
Eric Andersenb558e762000-11-30 22:43:16 +00001818 }
Eric Andersen501c88b2000-07-28 15:14:45 +00001819
Eric Andersenf21aa842000-12-08 20:50:30 +00001820 while ((opt = getopt(argc_l, argv_l, "cxi")) > 0) {
Eric Andersen501c88b2000-07-28 15:14:45 +00001821 switch (opt) {
1822 case 'c':
1823 input = NULL;
Matt Kraai6085c722000-09-06 01:46:18 +00001824 if (local_pending_command != 0)
Matt Kraaidd19c692001-01-31 19:00:21 +00001825 error_msg_and_die("multiple -c arguments");
Matt Kraai6085c722000-09-06 01:46:18 +00001826 local_pending_command = xstrdup(argv[optind]);
1827 optind++;
1828 argv = argv+optind;
Eric Andersen501c88b2000-07-28 15:14:45 +00001829 break;
Eric Andersen1428c4f2000-07-28 15:19:30 +00001830#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen501c88b2000-07-28 15:14:45 +00001831 case 'x':
Eric Andersen86349772000-12-18 20:25:50 +00001832 show_x_trace = TRUE;
Eric Andersen501c88b2000-07-28 15:14:45 +00001833 break;
Eric Andersen1428c4f2000-07-28 15:19:30 +00001834#endif
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001835 case 'i':
1836 interactive = TRUE;
1837 break;
Eric Andersen501c88b2000-07-28 15:14:45 +00001838 default:
Eric Andersen67991cf2001-02-14 21:23:06 +00001839 show_usage();
Eric Andersen501c88b2000-07-28 15:14:45 +00001840 }
1841 }
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001842 /* A shell is interactive if the `-i' flag was given, or if all of
1843 * the following conditions are met:
1844 * no -c command
1845 * no arguments remaining or the -s flag given
1846 * standard input is a terminal
1847 * standard output is a terminal
1848 * Refer to Posix.2, the description of the `sh' utility. */
Eric Andersen86349772000-12-18 20:25:50 +00001849 if (argv[optind]==NULL && input==stdin &&
1850 isatty(fileno(stdin)) && isatty(fileno(stdout))) {
1851 interactive=TRUE;
1852 }
1853 if (interactive==TRUE) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001854 //printf( "optind=%d argv[optind]='%s'\n", optind, argv[optind]);
Eric Andersen501c88b2000-07-28 15:14:45 +00001855 /* Looks like they want an interactive shell */
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001856 printf( "\n\nBusyBox v%s (%s) Built-in shell (lash)\n", BB_VER, BB_BT);
1857 printf( "Enter 'help' for a list of built-in commands.\n\n");
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001858 } else if (local_pending_command==NULL) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001859 //printf( "optind=%d argv[optind]='%s'\n", optind, argv[optind]);
Matt Kraaibbaef662000-09-27 02:43:35 +00001860 input = xfopen(argv[optind], "r");
Eric Andersen8ea28be2001-01-05 20:58:22 +00001861 mark_open(fileno(input)); /* be lazy, never mark this closed */
Eric Andersen501c88b2000-07-28 15:14:45 +00001862 }
1863
Eric Andersen6efc48c2000-07-18 08:16:39 +00001864 /* initialize the cwd -- this is never freed...*/
1865 cwd=(char*)xmalloc(sizeof(char)*MAX_LINE+1);
1866 getcwd(cwd, sizeof(char)*MAX_LINE);
Erik Andersen3522eb12000-03-12 23:49:18 +00001867
Eric Andersenfad9c112000-07-25 18:06:52 +00001868#ifdef BB_FEATURE_CLEAN_UP
1869 atexit(free_memory);
1870#endif
1871
Erik Andersen161220c2000-03-16 08:12:48 +00001872 return (busy_loop(input));
Erik Andersen3522eb12000-03-12 23:49:18 +00001873}