blob: 65a0a25d242f7aa371992d7e9a5901a1de232840 [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>
Eric Andersenca604592001-03-08 17:17:13 +000057#include <wordexp.h>
Erik Andersen3522eb12000-03-12 23:49:18 +000058#include <signal.h>
59#include <string.h>
60#include <sys/ioctl.h>
61#include <sys/wait.h>
62#include <unistd.h>
Eric Andersen501c88b2000-07-28 15:14:45 +000063#include <getopt.h>
Eric Andersencaeeb362001-02-20 06:38:44 +000064#include "busybox.h"
Erik Andersenf0657d32000-04-12 17:49:52 +000065#include "cmdedit.h"
Erik Andersen3522eb12000-03-12 23:49:18 +000066
Mark Whitley59ab0252001-01-23 22:30:04 +000067static const int MAX_LINE = 256; /* size of input buffer for cwd data */
68static const int MAX_READ = 128; /* size of input buffer for `read' builtin */
Erik Andersen3522eb12000-03-12 23:49:18 +000069#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
70
Erik Andersend75af992000-03-16 08:09:09 +000071
Eric Andersen86349772000-12-18 20:25:50 +000072enum redir_type { REDIRECT_INPUT, REDIRECT_OVERWRITE,
Erik Andersen161220c2000-03-16 08:12:48 +000073 REDIRECT_APPEND
74};
Erik Andersen3522eb12000-03-12 23:49:18 +000075
Eric Andersen86349772000-12-18 20:25:50 +000076static const unsigned int DEFAULT_CONTEXT=0x1;
Eric Andersen6a99aaf2000-07-27 00:15:20 +000077static const unsigned int IF_TRUE_CONTEXT=0x2;
78static const unsigned int IF_FALSE_CONTEXT=0x4;
79static const unsigned int THEN_EXP_CONTEXT=0x8;
80static const unsigned int ELSE_EXP_CONTEXT=0x10;
Eric Andersenfad9c112000-07-25 18:06:52 +000081
Eric Andersen86349772000-12-18 20:25:50 +000082
83struct jobset {
Erik Andersen161220c2000-03-16 08:12:48 +000084 struct job *head; /* head of list of running jobs */
85 struct job *fg; /* current foreground job */
Erik Andersen3522eb12000-03-12 23:49:18 +000086};
87
Eric Andersen86349772000-12-18 20:25:50 +000088struct redir_struct {
89 enum redir_type type; /* type of redirection */
Erik Andersen161220c2000-03-16 08:12:48 +000090 int fd; /* file descriptor being redirected */
91 char *filename; /* file to redirect fd to */
Erik Andersen3522eb12000-03-12 23:49:18 +000092};
93
Eric Andersen86349772000-12-18 20:25:50 +000094struct child_prog {
Erik Andersen161220c2000-03-16 08:12:48 +000095 pid_t pid; /* 0 if exited */
96 char **argv; /* program name and arguments */
Eric Andersen86349772000-12-18 20:25:50 +000097 int num_redirects; /* elements in redirection array */
98 struct redir_struct *redirects; /* I/O redirects */
Eric Andersen86349772000-12-18 20:25:50 +000099 int is_stopped; /* is the program currently running? */
100 struct job *family; /* pointer back to the child's parent job */
Erik Andersen3522eb12000-03-12 23:49:18 +0000101};
102
103struct job {
Eric Andersen86349772000-12-18 20:25:50 +0000104 int jobid; /* job number */
105 int num_progs; /* total number of programs in job */
106 int running_progs; /* number of programs running */
Erik Andersen161220c2000-03-16 08:12:48 +0000107 char *text; /* name of job */
Eric Andersen86349772000-12-18 20:25:50 +0000108 char *cmdbuf; /* buffer various argv's point into */
Erik Andersen161220c2000-03-16 08:12:48 +0000109 pid_t pgrp; /* process group ID for the job */
Eric Andersen86349772000-12-18 20:25:50 +0000110 struct child_prog *progs; /* array of programs in job */
Erik Andersen161220c2000-03-16 08:12:48 +0000111 struct job *next; /* to track background commands */
Eric Andersen86349772000-12-18 20:25:50 +0000112 int stopped_progs; /* number of programs alive, but stopped */
113 unsigned int job_context; /* bitmask defining current context */
114 struct jobset *job_list;
Erik Andersen3522eb12000-03-12 23:49:18 +0000115};
116
Eric Andersen86349772000-12-18 20:25:50 +0000117struct built_in_command {
Erik Andersen161220c2000-03-16 08:12:48 +0000118 char *cmd; /* name */
119 char *descr; /* description */
Eric Andersen86349772000-12-18 20:25:50 +0000120 int (*function) (struct child_prog *); /* function ptr */
Erik Andersen3522eb12000-03-12 23:49:18 +0000121};
122
Eric Andersen8ea28be2001-01-05 20:58:22 +0000123struct close_me {
124 int fd;
125 struct close_me *next;
126};
127
Eric Andersen34e19412000-07-10 18:47:24 +0000128/* function prototypes for builtins */
Eric Andersen86349772000-12-18 20:25:50 +0000129static int builtin_cd(struct child_prog *cmd);
130static int builtin_env(struct child_prog *dummy);
131static int builtin_exec(struct child_prog *cmd);
132static int builtin_exit(struct child_prog *cmd);
133static int builtin_fg_bg(struct child_prog *cmd);
134static int builtin_help(struct child_prog *cmd);
135static int builtin_jobs(struct child_prog *dummy);
136static int builtin_pwd(struct child_prog *dummy);
137static int builtin_export(struct child_prog *cmd);
138static int builtin_source(struct child_prog *cmd);
139static int builtin_unset(struct child_prog *cmd);
140static int builtin_read(struct child_prog *cmd);
Eric Andersenfad9c112000-07-25 18:06:52 +0000141#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
Eric Andersen86349772000-12-18 20:25:50 +0000142static int builtin_if(struct child_prog *cmd);
143static int builtin_then(struct child_prog *cmd);
144static int builtin_else(struct child_prog *cmd);
145static int builtin_fi(struct child_prog *cmd);
Eric Andersen70da6a62000-12-20 22:59:16 +0000146/* function prototypes for shell stuff */
147static int run_command_predicate(char *cmd);
Eric Andersenfad9c112000-07-25 18:06:52 +0000148#endif
Erik Andersen3522eb12000-03-12 23:49:18 +0000149
Eric Andersen34e19412000-07-10 18:47:24 +0000150
151/* function prototypes for shell stuff */
Eric Andersen8ea28be2001-01-05 20:58:22 +0000152static void mark_open(int fd);
153static void mark_closed(int fd);
Eric Andersen36278b92001-03-06 20:47:31 +0000154static void close_all(void);
Eric Andersen86349772000-12-18 20:25:50 +0000155static void checkjobs(struct jobset *job_list);
156static int get_command(FILE * source, char *command);
157static int parse_command(char **command_ptr, struct job *job, int *inbg);
158static int run_command(struct job *newjob, int inbg, int outpipe[2]);
159static int pseudo_exec(struct child_prog *cmd) __attribute__ ((noreturn));
Erik Andersen3522eb12000-03-12 23:49:18 +0000160static int busy_loop(FILE * input);
161
Erik Andersend75af992000-03-16 08:09:09 +0000162
Mark Whitley37653aa2000-07-12 23:36:17 +0000163/* Table of built-in functions (these are non-forking builtins, meaning they
164 * can change global variables in the parent shell process but they will not
165 * work with pipes and redirects; 'unset foo | whatever' will not work) */
Eric Andersen86349772000-12-18 20:25:50 +0000166static struct built_in_command bltins[] = {
Eric Andersenfad9c112000-07-25 18:06:52 +0000167 {"bg", "Resume a job in the background", builtin_fg_bg},
168 {"cd", "Change working directory", builtin_cd},
Eric Andersend2f56772000-09-21 02:48:07 +0000169 {"exec", "Exec command, replacing this shell with the exec'd process", builtin_exec},
Eric Andersenfad9c112000-07-25 18:06:52 +0000170 {"exit", "Exit from shell()", builtin_exit},
171 {"fg", "Bring job into the foreground", builtin_fg_bg},
172 {"jobs", "Lists the active jobs", builtin_jobs},
173 {"export", "Set environment variable", builtin_export},
174 {"unset", "Unset environment variable", builtin_unset},
175 {"read", "Input environment variable", builtin_read},
Matt Kraaidd450a02000-09-13 03:43:36 +0000176 {".", "Source-in and run commands in a file", builtin_source},
Eric Andersen86349772000-12-18 20:25:50 +0000177 /* to do: add ulimit */
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000178#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
179 {"if", NULL, builtin_if},
180 {"then", NULL, builtin_then},
181 {"else", NULL, builtin_else},
182 {"fi", NULL, builtin_fi},
183#endif
Eric Andersenfad9c112000-07-25 18:06:52 +0000184 {NULL, NULL, NULL}
Erik Andersen330fd2b2000-05-19 05:35:19 +0000185};
186
Mark Whitley37653aa2000-07-12 23:36:17 +0000187/* Table of forking built-in functions (things that fork cannot change global
188 * variables in the parent process, such as the current working directory) */
Eric Andersen86349772000-12-18 20:25:50 +0000189static struct built_in_command bltins_forking[] = {
Eric Andersenfad9c112000-07-25 18:06:52 +0000190 {"env", "Print all environment variables", builtin_env},
191 {"pwd", "Print current directory", builtin_pwd},
Eric Andersenfad9c112000-07-25 18:06:52 +0000192 {"help", "List shell built-in commands", builtin_help},
193 {NULL, NULL, NULL}
Erik Andersen3522eb12000-03-12 23:49:18 +0000194};
195
Eric Andersen0bcc8132001-01-05 19:37:32 +0000196
197/* Variables we export */
198unsigned int shell_context; /* Used in cmdedit.c to reset the
199 context when someone hits ^C */
200
201
202/* Globals that are static to this file */
Eric Andersen6efc48c2000-07-18 08:16:39 +0000203static char *cwd;
Eric Andersen744b0642001-01-05 21:23:44 +0000204static char *local_pending_command = NULL;
Eric Andersen86349772000-12-18 20:25:50 +0000205static struct jobset job_list = { NULL, NULL };
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000206static int argc;
207static char **argv;
Eric Andersen702ec592001-03-06 22:17:29 +0000208static struct close_me *close_me_head;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000209#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +0000210static int last_bg_pid;
211static int last_return_code;
212static int show_x_trace;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000213#endif
Eric Andersen86349772000-12-18 20:25:50 +0000214#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
215static char syntax_err[]="syntax error near unexpected token";
216#endif
217
Eric Andersenb558e762000-11-30 22:43:16 +0000218#ifdef DEBUG_SHELL
219static inline void debug_printf(const char *format, ...)
220{
221 va_list args;
222 va_start(args, format);
Eric Andersen86349772000-12-18 20:25:50 +0000223 vfprintf(stderr, format, args);
Eric Andersenb558e762000-11-30 22:43:16 +0000224 va_end(args);
225}
226#else
227static inline void debug_printf(const char *format, ...) { }
228#endif
Erik Andersen3522eb12000-03-12 23:49:18 +0000229
Eric Andersen86349772000-12-18 20:25:50 +0000230/*
231 Most builtins need access to the struct child_prog that has
232 their arguments, previously coded as cmd->progs[0]. That coding
233 can exhibit a bug, if the builtin is not the first command in
234 a pipeline: "echo foo | exec sort" will attempt to exec foo.
235
236builtin previous use notes
237------ ----------------- ---------
238cd cmd->progs[0]
239env 0
240exec cmd->progs[0] squashed bug: didn't look for applets or forking builtins
241exit cmd->progs[0]
242fg_bg cmd->progs[0], job_list->head, job_list->fg
243help 0
244jobs job_list->head
245pwd 0
246export cmd->progs[0] passes cmd, job_list to builtin_env(), which ignores them
247source cmd->progs[0]
248unset cmd->progs[0]
249read cmd->progs[0]
250if cmd->job_context, cmd->text
251then cmd->job_context, cmd->text
252else cmd->job_context, cmd->text
253fi cmd->job_context
254
255The use of cmd->text by if/then/else/fi is hopelessly hacky.
256Would it work to increment cmd->progs[0]->argv and recurse,
257somewhat like builtin_exec does?
258
259I added "struct job *family;" to struct child_prog,
260and switched API to builtin_foo(struct child_prog *child);
261So cmd->text becomes child->family->text
262 cmd->job_context becomes child->family->job_context
263 cmd->progs[0] becomes *child
264 job_list becomes child->family->job_list
265 */
Erik Andersen3522eb12000-03-12 23:49:18 +0000266
Erik Andersend75af992000-03-16 08:09:09 +0000267/* built-in 'cd <path>' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000268static int builtin_cd(struct child_prog *child)
Erik Andersend75af992000-03-16 08:09:09 +0000269{
Erik Andersen161220c2000-03-16 08:12:48 +0000270 char *newdir;
Erik Andersend75af992000-03-16 08:09:09 +0000271
Eric Andersen86349772000-12-18 20:25:50 +0000272 if (child->argv[1] == NULL)
Erik Andersen161220c2000-03-16 08:12:48 +0000273 newdir = getenv("HOME");
274 else
Eric Andersen86349772000-12-18 20:25:50 +0000275 newdir = child->argv[1];
Erik Andersen161220c2000-03-16 08:12:48 +0000276 if (chdir(newdir)) {
277 printf("cd: %s: %s\n", newdir, strerror(errno));
Matt Kraai3e856ce2000-12-01 02:55:13 +0000278 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000279 }
Eric Andersen6efc48c2000-07-18 08:16:39 +0000280 getcwd(cwd, sizeof(char)*MAX_LINE);
Erik Andersen161220c2000-03-16 08:12:48 +0000281
Matt Kraai3e856ce2000-12-01 02:55:13 +0000282 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000283}
284
285/* built-in 'env' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000286static int builtin_env(struct child_prog *dummy)
Erik Andersen3522eb12000-03-12 23:49:18 +0000287{
Erik Andersen161220c2000-03-16 08:12:48 +0000288 char **e;
Erik Andersen3522eb12000-03-12 23:49:18 +0000289
Erik Andersen161220c2000-03-16 08:12:48 +0000290 for (e = environ; *e; e++) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000291 printf( "%s\n", *e);
Erik Andersen161220c2000-03-16 08:12:48 +0000292 }
293 return (0);
Erik Andersen3522eb12000-03-12 23:49:18 +0000294}
295
Eric Andersend2f56772000-09-21 02:48:07 +0000296/* built-in 'exec' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000297static int builtin_exec(struct child_prog *child)
Eric Andersend2f56772000-09-21 02:48:07 +0000298{
Eric Andersen86349772000-12-18 20:25:50 +0000299 if (child->argv[1] == NULL)
300 return EXIT_SUCCESS; /* Really? */
301 child->argv++;
Eric Andersen07f2f392001-03-06 20:28:22 +0000302 close_all();
Eric Andersen86349772000-12-18 20:25:50 +0000303 pseudo_exec(child);
304 /* never returns */
Eric Andersend2f56772000-09-21 02:48:07 +0000305}
306
Erik Andersen3522eb12000-03-12 23:49:18 +0000307/* built-in 'exit' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000308static int builtin_exit(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000309{
Eric Andersen86349772000-12-18 20:25:50 +0000310 if (child->argv[1] == NULL)
Matt Kraai3e856ce2000-12-01 02:55:13 +0000311 exit(EXIT_SUCCESS);
Erik Andersen161220c2000-03-16 08:12:48 +0000312
Eric Andersen86349772000-12-18 20:25:50 +0000313 exit (atoi(child->argv[1]));
Erik Andersen3522eb12000-03-12 23:49:18 +0000314}
315
316/* built-in 'fg' and 'bg' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000317static int builtin_fg_bg(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000318{
Erik Andersen161220c2000-03-16 08:12:48 +0000319 int i, jobNum;
Erik Andersen6273f652000-03-17 01:12:41 +0000320 struct job *job=NULL;
Eric Andersen86349772000-12-18 20:25:50 +0000321
Eric Andersene9f07fb2000-12-21 18:31:36 +0000322 if (!child->argv[1] || child->argv[2]) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000323 error_msg("%s: exactly one argument is expected",
Eric Andersene9f07fb2000-12-21 18:31:36 +0000324 child->argv[0]);
325 return EXIT_FAILURE;
326 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000327
Eric Andersene9f07fb2000-12-21 18:31:36 +0000328 if (sscanf(child->argv[1], "%%%d", &jobNum) != 1) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000329 error_msg("%s: bad argument '%s'",
Eric Andersene9f07fb2000-12-21 18:31:36 +0000330 child->argv[0], child->argv[1]);
331 return EXIT_FAILURE;
332 }
333
334 for (job = child->family->job_list->head; job; job = job->next) {
335 if (job->jobid == jobNum) {
336 break;
Erik Andersen161220c2000-03-16 08:12:48 +0000337 }
Eric Andersene9f07fb2000-12-21 18:31:36 +0000338 }
Erik Andersen161220c2000-03-16 08:12:48 +0000339
340 if (!job) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000341 error_msg("%s: unknown job %d",
Eric Andersen86349772000-12-18 20:25:50 +0000342 child->argv[0], jobNum);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000343 return EXIT_FAILURE;
Erik Andersend75af992000-03-16 08:09:09 +0000344 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000345
Eric Andersen86349772000-12-18 20:25:50 +0000346 if (*child->argv[0] == 'f') {
Erik Andersen161220c2000-03-16 08:12:48 +0000347 /* Make this job the foreground job */
Eric Andersen1c314ad2000-06-28 16:56:25 +0000348 /* suppress messages when run from /linuxrc mag@sysgo.de */
349 if (tcsetpgrp(0, job->pgrp) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +0000350 perror_msg("tcsetpgrp");
Eric Andersen86349772000-12-18 20:25:50 +0000351 child->family->job_list->fg = job;
Erik Andersen161220c2000-03-16 08:12:48 +0000352 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000353
Erik Andersen161220c2000-03-16 08:12:48 +0000354 /* Restart the processes in the job */
Eric Andersen86349772000-12-18 20:25:50 +0000355 for (i = 0; i < job->num_progs; i++)
356 job->progs[i].is_stopped = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000357
Erik Andersen161220c2000-03-16 08:12:48 +0000358 kill(-job->pgrp, SIGCONT);
Erik Andersen3522eb12000-03-12 23:49:18 +0000359
Eric Andersen86349772000-12-18 20:25:50 +0000360 job->stopped_progs = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000361
Matt Kraai3e856ce2000-12-01 02:55:13 +0000362 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000363}
364
365/* built-in 'help' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000366static int builtin_help(struct child_prog *dummy)
Erik Andersen3522eb12000-03-12 23:49:18 +0000367{
Eric Andersen86349772000-12-18 20:25:50 +0000368 struct built_in_command *x;
Erik Andersen3522eb12000-03-12 23:49:18 +0000369
Eric Andersen86349772000-12-18 20:25:50 +0000370 printf("\nBuilt-in commands:\n");
371 printf("-------------------\n");
Erik Andersen161220c2000-03-16 08:12:48 +0000372 for (x = bltins; x->cmd; x++) {
Eric Andersenfad9c112000-07-25 18:06:52 +0000373 if (x->descr==NULL)
374 continue;
Eric Andersen86349772000-12-18 20:25:50 +0000375 printf("%s\t%s\n", x->cmd, x->descr);
Erik Andersen161220c2000-03-16 08:12:48 +0000376 }
Erik Andersen330fd2b2000-05-19 05:35:19 +0000377 for (x = bltins_forking; x->cmd; x++) {
Eric Andersenfad9c112000-07-25 18:06:52 +0000378 if (x->descr==NULL)
379 continue;
Eric Andersen86349772000-12-18 20:25:50 +0000380 printf("%s\t%s\n", x->cmd, x->descr);
Erik Andersen330fd2b2000-05-19 05:35:19 +0000381 }
Eric Andersen86349772000-12-18 20:25:50 +0000382 printf("\n\n");
Matt Kraai3e856ce2000-12-01 02:55:13 +0000383 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000384}
385
386/* built-in 'jobs' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000387static int builtin_jobs(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000388{
Erik Andersen161220c2000-03-16 08:12:48 +0000389 struct job *job;
Eric Andersen86349772000-12-18 20:25:50 +0000390 char *status_string;
Erik Andersen3522eb12000-03-12 23:49:18 +0000391
Eric Andersen86349772000-12-18 20:25:50 +0000392 for (job = child->family->job_list->head; job; job = job->next) {
393 if (job->running_progs == job->stopped_progs)
394 status_string = "Stopped";
Erik Andersen161220c2000-03-16 08:12:48 +0000395 else
Eric Andersen86349772000-12-18 20:25:50 +0000396 status_string = "Running";
Erik Andersen161220c2000-03-16 08:12:48 +0000397
Eric Andersen86349772000-12-18 20:25:50 +0000398 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->text);
Erik Andersen161220c2000-03-16 08:12:48 +0000399 }
Matt Kraai3e856ce2000-12-01 02:55:13 +0000400 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000401}
402
403
404/* built-in 'pwd' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000405static int builtin_pwd(struct child_prog *dummy)
Erik Andersen3522eb12000-03-12 23:49:18 +0000406{
Eric Andersen86349772000-12-18 20:25:50 +0000407 getcwd(cwd, MAX_LINE);
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000408 printf( "%s\n", cwd);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000409 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000410}
411
Erik Andersen6273f652000-03-17 01:12:41 +0000412/* built-in 'export VAR=value' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000413static int builtin_export(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000414{
Erik Andersen161220c2000-03-16 08:12:48 +0000415 int res;
Erik Andersen3522eb12000-03-12 23:49:18 +0000416
Eric Andersen86349772000-12-18 20:25:50 +0000417 if (child->argv[1] == NULL) {
418 return (builtin_env(child));
Erik Andersen161220c2000-03-16 08:12:48 +0000419 }
Eric Andersen86349772000-12-18 20:25:50 +0000420 res = putenv(child->argv[1]);
Erik Andersen161220c2000-03-16 08:12:48 +0000421 if (res)
Eric Andersen86349772000-12-18 20:25:50 +0000422 fprintf(stderr, "export: %s\n", strerror(errno));
Erik Andersen161220c2000-03-16 08:12:48 +0000423 return (res);
Erik Andersen3522eb12000-03-12 23:49:18 +0000424}
425
Eric Andersenb54833c2000-07-03 23:56:26 +0000426/* built-in 'read VAR' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000427static int builtin_read(struct child_prog *child)
Eric Andersenb54833c2000-07-03 23:56:26 +0000428{
429 int res = 0, len, newlen;
430 char *s;
431 char string[MAX_READ];
432
Eric Andersen86349772000-12-18 20:25:50 +0000433 if (child->argv[1]) {
Eric Andersenb54833c2000-07-03 23:56:26 +0000434 /* argument (VAR) given: put "VAR=" into buffer */
Eric Andersen86349772000-12-18 20:25:50 +0000435 strcpy(string, child->argv[1]);
Eric Andersenb54833c2000-07-03 23:56:26 +0000436 len = strlen(string);
437 string[len++] = '=';
438 string[len] = '\0';
439 fgets(&string[len], sizeof(string) - len, stdin); /* read string */
440 newlen = strlen(string);
441 if(newlen > len)
442 string[--newlen] = '\0'; /* chomp trailing newline */
443 /*
444 ** string should now contain "VAR=<value>"
445 ** copy it (putenv() won't do that, so we must make sure
446 ** the string resides in a static buffer!)
447 */
448 res = -1;
449 if((s = strdup(string)))
450 res = putenv(s);
451 if (res)
Eric Andersen86349772000-12-18 20:25:50 +0000452 fprintf(stderr, "read: %s\n", strerror(errno));
Eric Andersenb54833c2000-07-03 23:56:26 +0000453 }
454 else
455 fgets(string, sizeof(string), stdin);
456
457 return (res);
458}
459
Eric Andersenfad9c112000-07-25 18:06:52 +0000460#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
461/* Built-in handler for 'if' commands */
Eric Andersen86349772000-12-18 20:25:50 +0000462static int builtin_if(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000463{
Eric Andersen86349772000-12-18 20:25:50 +0000464 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000465 int status;
466 char* charptr1=cmd->text+3; /* skip over the leading 'if ' */
467
468 /* Now run the 'if' command */
Eric Andersen86349772000-12-18 20:25:50 +0000469 debug_printf( "job=%p entering builtin_if ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
470 status = run_command_predicate(charptr1);
471 debug_printf( "if test returned ");
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000472 if (status == 0) {
Eric Andersen86349772000-12-18 20:25:50 +0000473 debug_printf( "TRUE\n");
474 cmd->job_context |= IF_TRUE_CONTEXT;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000475 } else {
Eric Andersen86349772000-12-18 20:25:50 +0000476 debug_printf( "FALSE\n");
477 cmd->job_context |= IF_FALSE_CONTEXT;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000478 }
Eric Andersen86349772000-12-18 20:25:50 +0000479 debug_printf("job=%p builtin_if set job context to %x\n", cmd, cmd->job_context);
480 shell_context++;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000481
482 return status;
Eric Andersenfad9c112000-07-25 18:06:52 +0000483}
484
485/* Built-in handler for 'then' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000486static int builtin_then(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000487{
Eric Andersen86349772000-12-18 20:25:50 +0000488 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000489 char* charptr1=cmd->text+5; /* skip over the leading 'then ' */
490
Eric Andersen86349772000-12-18 20:25:50 +0000491 debug_printf( "job=%p entering builtin_then ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
492 if (! (cmd->job_context & (IF_TRUE_CONTEXT|IF_FALSE_CONTEXT))) {
493 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000494 error_msg("%s `then'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000495 return EXIT_FAILURE;
Eric Andersenfad9c112000-07-25 18:06:52 +0000496 }
Eric Andersen86349772000-12-18 20:25:50 +0000497
498 cmd->job_context |= THEN_EXP_CONTEXT;
499 debug_printf("job=%p builtin_then set job context to %x\n", cmd, cmd->job_context);
500
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000501 /* If the if result was FALSE, skip the 'then' stuff */
Eric Andersen86349772000-12-18 20:25:50 +0000502 if (cmd->job_context & IF_FALSE_CONTEXT) {
Matt Kraai3e856ce2000-12-01 02:55:13 +0000503 return EXIT_SUCCESS;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000504 }
505
Eric Andersen86349772000-12-18 20:25:50 +0000506 /* Seems the if result was TRUE, so run the 'then' command */
507 debug_printf( "'then' now running '%s'\n", charptr1);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000508
Eric Andersen86349772000-12-18 20:25:50 +0000509 return(run_command_predicate(charptr1));
Eric Andersenfad9c112000-07-25 18:06:52 +0000510}
511
512/* Built-in handler for 'else' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000513static int builtin_else(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000514{
Eric Andersen86349772000-12-18 20:25:50 +0000515 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000516 char* charptr1=cmd->text+5; /* skip over the leading 'else ' */
517
Eric Andersen86349772000-12-18 20:25:50 +0000518 debug_printf( "job=%p entering builtin_else ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
519
520 if (! (cmd->job_context & THEN_EXP_CONTEXT)) {
521 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000522 error_msg("%s `else'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000523 return EXIT_FAILURE;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000524 }
525 /* If the if result was TRUE, skip the 'else' stuff */
Eric Andersen86349772000-12-18 20:25:50 +0000526 if (cmd->job_context & IF_TRUE_CONTEXT) {
Matt Kraai3e856ce2000-12-01 02:55:13 +0000527 return EXIT_SUCCESS;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000528 }
529
Eric Andersen86349772000-12-18 20:25:50 +0000530 cmd->job_context |= ELSE_EXP_CONTEXT;
Eric Andersene9f07fb2000-12-21 18:31:36 +0000531 debug_printf("job=%p builtin_else set job context to %x\n", cmd, cmd->job_context);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000532
533 /* Now run the 'else' command */
Eric Andersen86349772000-12-18 20:25:50 +0000534 debug_printf( "'else' now running '%s'\n", charptr1);
535 return(run_command_predicate(charptr1));
Eric Andersenfad9c112000-07-25 18:06:52 +0000536}
537
538/* Built-in handler for 'fi' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000539static int builtin_fi(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000540{
Eric Andersen86349772000-12-18 20:25:50 +0000541 struct job *cmd = child->family;
542 debug_printf( "job=%p entering builtin_fi ('%s')-- context=%d\n", cmd, "", cmd->job_context);
543 if (! (cmd->job_context & (IF_TRUE_CONTEXT|IF_FALSE_CONTEXT))) {
544 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000545 error_msg("%s `fi'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000546 return EXIT_FAILURE;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000547 }
548 /* Clear out the if and then context bits */
Eric Andersen86349772000-12-18 20:25:50 +0000549 cmd->job_context &= ~(IF_TRUE_CONTEXT|IF_FALSE_CONTEXT|THEN_EXP_CONTEXT|ELSE_EXP_CONTEXT);
550 debug_printf("job=%p builtin_fi set job context to %x\n", cmd, cmd->job_context);
551 shell_context--;
Matt Kraai3e856ce2000-12-01 02:55:13 +0000552 return EXIT_SUCCESS;
Eric Andersenfad9c112000-07-25 18:06:52 +0000553}
554#endif
555
Erik Andersen3522eb12000-03-12 23:49:18 +0000556/* Built-in '.' handler (read-in and execute commands from file) */
Eric Andersen86349772000-12-18 20:25:50 +0000557static int builtin_source(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000558{
Erik Andersen161220c2000-03-16 08:12:48 +0000559 FILE *input;
560 int status;
Eric Andersen8ea28be2001-01-05 20:58:22 +0000561 int fd;
Erik Andersen3522eb12000-03-12 23:49:18 +0000562
Eric Andersen86349772000-12-18 20:25:50 +0000563 if (child->argv[1] == NULL)
Matt Kraai3e856ce2000-12-01 02:55:13 +0000564 return EXIT_FAILURE;
Erik Andersen3522eb12000-03-12 23:49:18 +0000565
Eric Andersen86349772000-12-18 20:25:50 +0000566 input = fopen(child->argv[1], "r");
Erik Andersen161220c2000-03-16 08:12:48 +0000567 if (!input) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000568 printf( "Couldn't open file '%s'\n", child->argv[1]);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000569 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000570 }
Erik Andersend75af992000-03-16 08:09:09 +0000571
Eric Andersen8ea28be2001-01-05 20:58:22 +0000572 fd=fileno(input);
573 mark_open(fd);
Erik Andersen161220c2000-03-16 08:12:48 +0000574 /* Now run the file */
575 status = busy_loop(input);
Matt Kraaidd450a02000-09-13 03:43:36 +0000576 fclose(input);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000577 mark_closed(fd);
Erik Andersen161220c2000-03-16 08:12:48 +0000578 return (status);
Erik Andersen3522eb12000-03-12 23:49:18 +0000579}
580
581/* built-in 'unset VAR' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000582static int builtin_unset(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000583{
Eric Andersen86349772000-12-18 20:25:50 +0000584 if (child->argv[1] == NULL) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000585 printf( "unset: parameter required.\n");
Matt Kraai3e856ce2000-12-01 02:55:13 +0000586 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000587 }
Eric Andersen86349772000-12-18 20:25:50 +0000588 unsetenv(child->argv[1]);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000589 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000590}
591
Eric Andersen70da6a62000-12-20 22:59:16 +0000592#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
Eric Andersen86349772000-12-18 20:25:50 +0000593/* currently used by if/then/else.
Eric Andersene9f07fb2000-12-21 18:31:36 +0000594 *
595 * Reparsing the command line for this purpose is gross,
596 * incorrect, and fundamentally unfixable; in particular,
597 * think about what happens with command substitution.
598 * We really need to pull out the run, wait, return status
599 * functionality out of busy_loop so we can child->argv++
600 * and use that, without going back through parse_command.
Eric Andersen86349772000-12-18 20:25:50 +0000601 */
602static int run_command_predicate(char *cmd)
603{
604 int n=strlen(cmd);
605 local_pending_command = xmalloc(n+1);
606 strncpy(local_pending_command, cmd, n);
607 local_pending_command[n]='\0';
608 return( busy_loop(NULL));
609}
Eric Andersen70da6a62000-12-20 22:59:16 +0000610#endif
Eric Andersen86349772000-12-18 20:25:50 +0000611
Eric Andersen8ea28be2001-01-05 20:58:22 +0000612static void mark_open(int fd)
613{
614 struct close_me *new = xmalloc(sizeof(struct close_me));
615 new->fd = fd;
616 new->next = close_me_head;
617 close_me_head = new;
618}
619
620static void mark_closed(int fd)
621{
622 struct close_me *tmp;
623 if (close_me_head == NULL || close_me_head->fd != fd)
624 error_msg_and_die("corrupt close_me");
625 tmp = close_me_head;
626 close_me_head = close_me_head->next;
627 free(tmp);
628}
629
630static void close_all()
631{
Eric Andersen702ec592001-03-06 22:17:29 +0000632 struct close_me *c, *tmp;
633 for (c=close_me_head; c; c=tmp) {
634 close(c->fd);
635 tmp=c->next;
636 free(c);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000637 }
638 close_me_head = NULL;
639}
640
641
Erik Andersen3522eb12000-03-12 23:49:18 +0000642/* free up all memory from a job */
Eric Andersen86349772000-12-18 20:25:50 +0000643static void free_job(struct job *cmd)
Erik Andersen3522eb12000-03-12 23:49:18 +0000644{
Erik Andersen161220c2000-03-16 08:12:48 +0000645 int i;
Erik Andersen3522eb12000-03-12 23:49:18 +0000646
Eric Andersen86349772000-12-18 20:25:50 +0000647 for (i = 0; i < cmd->num_progs; i++) {
Erik Andersen161220c2000-03-16 08:12:48 +0000648 free(cmd->progs[i].argv);
Eric Andersen86349772000-12-18 20:25:50 +0000649 if (cmd->progs[i].redirects)
650 free(cmd->progs[i].redirects);
Erik Andersen161220c2000-03-16 08:12:48 +0000651 }
652 free(cmd->progs);
653 if (cmd->text)
654 free(cmd->text);
Eric Andersen86349772000-12-18 20:25:50 +0000655 free(cmd->cmdbuf);
Eric Andersenec10b9d2000-07-14 01:13:11 +0000656 memset(cmd, 0, sizeof(struct job));
Erik Andersen3522eb12000-03-12 23:49:18 +0000657}
658
Eric Andersen86349772000-12-18 20:25:50 +0000659/* remove a job from the job_list */
660static void remove_job(struct jobset *job_list, struct job *job)
Erik Andersen3522eb12000-03-12 23:49:18 +0000661{
Eric Andersen86349772000-12-18 20:25:50 +0000662 struct job *prevjob;
Erik Andersen3522eb12000-03-12 23:49:18 +0000663
Eric Andersen86349772000-12-18 20:25:50 +0000664 free_job(job);
665 if (job == job_list->head) {
666 job_list->head = job->next;
Erik Andersen161220c2000-03-16 08:12:48 +0000667 } else {
Eric Andersen86349772000-12-18 20:25:50 +0000668 prevjob = job_list->head;
669 while (prevjob->next != job)
670 prevjob = prevjob->next;
671 prevjob->next = job->next;
Erik Andersen161220c2000-03-16 08:12:48 +0000672 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000673
Erik Andersen161220c2000-03-16 08:12:48 +0000674 free(job);
Erik Andersen3522eb12000-03-12 23:49:18 +0000675}
676
677/* Checks to see if any background processes have exited -- if they
678 have, figure out why and see if a job has completed */
Eric Andersen86349772000-12-18 20:25:50 +0000679static void checkjobs(struct jobset *job_list)
Erik Andersen3522eb12000-03-12 23:49:18 +0000680{
Erik Andersen161220c2000-03-16 08:12:48 +0000681 struct job *job;
682 pid_t childpid;
683 int status;
Eric Andersen86349772000-12-18 20:25:50 +0000684 int prognum = 0;
Erik Andersend75af992000-03-16 08:09:09 +0000685
Erik Andersen161220c2000-03-16 08:12:48 +0000686 while ((childpid = waitpid(-1, &status, WNOHANG | WUNTRACED)) > 0) {
Eric Andersen86349772000-12-18 20:25:50 +0000687 for (job = job_list->head; job; job = job->next) {
688 prognum = 0;
689 while (prognum < job->num_progs &&
690 job->progs[prognum].pid != childpid) prognum++;
691 if (prognum < job->num_progs)
Erik Andersen161220c2000-03-16 08:12:48 +0000692 break;
693 }
694
Eric Andersena1d187a2000-07-17 19:14:41 +0000695 /* This happens on backticked commands */
696 if(job==NULL)
697 return;
698
Erik Andersen161220c2000-03-16 08:12:48 +0000699 if (WIFEXITED(status) || WIFSIGNALED(status)) {
700 /* child exited */
Eric Andersen86349772000-12-18 20:25:50 +0000701 job->running_progs--;
702 job->progs[prognum].pid = 0;
Erik Andersen161220c2000-03-16 08:12:48 +0000703
Eric Andersen86349772000-12-18 20:25:50 +0000704 if (!job->running_progs) {
705 printf(JOB_STATUS_FORMAT, job->jobid, "Done", job->text);
706 remove_job(job_list, job);
Erik Andersen161220c2000-03-16 08:12:48 +0000707 }
708 } else {
709 /* child stopped */
Eric Andersen86349772000-12-18 20:25:50 +0000710 job->stopped_progs++;
711 job->progs[prognum].is_stopped = 1;
Erik Andersen161220c2000-03-16 08:12:48 +0000712
Eric Andersen86349772000-12-18 20:25:50 +0000713 if (job->stopped_progs == job->num_progs) {
714 printf(JOB_STATUS_FORMAT, job->jobid, "Stopped",
Erik Andersen161220c2000-03-16 08:12:48 +0000715 job->text);
716 }
717 }
Erik Andersend75af992000-03-16 08:09:09 +0000718 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000719
Erik Andersen161220c2000-03-16 08:12:48 +0000720 if (childpid == -1 && errno != ECHILD)
Matt Kraaia9819b22000-12-22 01:48:07 +0000721 perror_msg("waitpid");
Erik Andersen3522eb12000-03-12 23:49:18 +0000722}
723
Eric Andersene9f07fb2000-12-21 18:31:36 +0000724/* squirrel != NULL means we squirrel away copies of stdin, stdout,
725 * and stderr if they are redirected. */
726static int setup_redirects(struct child_prog *prog, int squirrel[])
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000727{
728 int i;
729 int openfd;
730 int mode = O_RDONLY;
Eric Andersen86349772000-12-18 20:25:50 +0000731 struct redir_struct *redir = prog->redirects;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000732
Eric Andersen86349772000-12-18 20:25:50 +0000733 for (i = 0; i < prog->num_redirects; i++, redir++) {
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000734 switch (redir->type) {
735 case REDIRECT_INPUT:
736 mode = O_RDONLY;
737 break;
738 case REDIRECT_OVERWRITE:
Eric Andersen46f0beb2000-11-14 21:59:22 +0000739 mode = O_WRONLY | O_CREAT | O_TRUNC;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000740 break;
741 case REDIRECT_APPEND:
Eric Andersen46f0beb2000-11-14 21:59:22 +0000742 mode = O_WRONLY | O_CREAT | O_APPEND;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000743 break;
744 }
745
746 openfd = open(redir->filename, mode, 0666);
747 if (openfd < 0) {
748 /* this could get lost if stderr has been redirected, but
749 bash and ash both lose it as well (though zsh doesn't!) */
Matt Kraaidd19c692001-01-31 19:00:21 +0000750 error_msg("error opening %s: %s", redir->filename,
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000751 strerror(errno));
752 return 1;
753 }
754
755 if (openfd != redir->fd) {
Eric Andersene9f07fb2000-12-21 18:31:36 +0000756 if (squirrel && redir->fd < 3) {
757 squirrel[redir->fd] = dup(redir->fd);
758 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000759 dup2(openfd, redir->fd);
760 close(openfd);
761 }
762 }
763
764 return 0;
765}
766
Eric Andersene9f07fb2000-12-21 18:31:36 +0000767static void restore_redirects(int squirrel[])
768{
769 int i, fd;
770 for (i=0; i<3; i++) {
771 fd = squirrel[i];
772 if (fd != -1) {
773 /* No error checking. I sure wouldn't know what
774 * to do with an error if I found one! */
775 dup2(fd, i);
776 close(fd);
777 }
778 }
779}
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000780
Eric Andersen22332fd2001-01-30 23:40:39 +0000781#if defined(BB_FEATURE_SH_SIMPLE_PROMPT)
782static char* setup_prompt_string(int state)
783{
784 char prompt_str[BUFSIZ];
785
786 /* Set up the prompt */
787 if (state == 0) {
788 /* simple prompt */
789 sprintf(prompt_str, "%s %s", cwd, ( geteuid() != 0 ) ? "$ ":"# ");
790 } else {
791 strcpy(prompt_str,"> ");
792 }
793
794 return(strdup(prompt_str)); /* Must free this memory */
795}
796
797#else
798
Eric Andersen09acc062001-01-04 11:10:38 +0000799static char* setup_prompt_string(int state)
Erik Andersen3522eb12000-03-12 23:49:18 +0000800{
Eric Andersenf361ac22000-12-12 23:45:36 +0000801 char user[9],buf[255],*s;
Eric Andersen09acc062001-01-04 11:10:38 +0000802 char prompt[3];
803 char prompt_str[BUFSIZ];
804
805 /* Set up the prompt */
806 if (state == 0) {
807 /* get User Name and setup prompt */
808 strcpy(prompt,( geteuid() != 0 ) ? "$ ":"# ");
809 my_getpwuid(user, geteuid());
810
811 /* get HostName */
812 gethostname(buf, 255);
813 s = strchr(buf, '.');
814 if (s) {
815 *s = 0;
816 }
817 } else {
818 strcpy(prompt,"> ");
819 }
820
821 if (state == 0) {
822 snprintf(prompt_str, BUFSIZ-1, "[%s@%s %s]%s", user, buf,
823 get_last_path_component(cwd), prompt);
824 } else {
825 sprintf(prompt_str, "%s", prompt);
826 }
827 return(strdup(prompt_str)); /* Must free this memory */
828}
829
Eric Andersen22332fd2001-01-30 23:40:39 +0000830#endif
831
Eric Andersen09acc062001-01-04 11:10:38 +0000832static int get_command(FILE * source, char *command)
833{
834 char *prompt_str;
Eric Andersen8ea28be2001-01-05 20:58:22 +0000835
Eric Andersen1c314ad2000-06-28 16:56:25 +0000836 if (source == NULL) {
837 if (local_pending_command) {
838 /* a command specified (-c option): return it & mark it done */
839 strcpy(command, local_pending_command);
840 free(local_pending_command);
841 local_pending_command = NULL;
842 return 0;
843 }
844 return 1;
845 }
846
Erik Andersen161220c2000-03-16 08:12:48 +0000847 if (source == stdin) {
Matt Kraaidefcd5e2001-01-05 02:53:11 +0000848 prompt_str = setup_prompt_string(shell_context);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000849
Erik Andersend75af992000-03-16 08:09:09 +0000850#ifdef BB_FEATURE_SH_COMMAND_EDITING
Eric Andersen501c88b2000-07-28 15:14:45 +0000851 /*
852 ** enable command line editing only while a command line
853 ** is actually being read; otherwise, we'll end up bequeathing
854 ** atexit() handlers and other unwanted stuff to our
855 ** child processes (rob@sysgo.de)
856 */
Eric Andersen86349772000-12-18 20:25:50 +0000857 cmdedit_read_input(prompt_str, command);
Eric Andersen501c88b2000-07-28 15:14:45 +0000858 cmdedit_terminate();
Eric Andersen6faae7d2001-02-16 20:09:17 +0000859 free(prompt_str);
Erik Andersen161220c2000-03-16 08:12:48 +0000860 return 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +0000861#else
Eric Andersen8ea28be2001-01-05 20:58:22 +0000862 fputs(prompt_str, stdout);
863 free(prompt_str);
Erik Andersend75af992000-03-16 08:09:09 +0000864#endif
Erik Andersen161220c2000-03-16 08:12:48 +0000865 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000866
Erik Andersen161220c2000-03-16 08:12:48 +0000867 if (!fgets(command, BUFSIZ - 2, source)) {
868 if (source == stdin)
869 printf("\n");
870 return 1;
871 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000872
Erik Andersen161220c2000-03-16 08:12:48 +0000873 /* remove trailing newline */
Eric Andersenca604592001-03-08 17:17:13 +0000874 chomp(command);
Erik Andersen3522eb12000-03-12 23:49:18 +0000875
Erik Andersen161220c2000-03-16 08:12:48 +0000876 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000877}
878
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000879#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000880static char* itoa(register int i)
881{
Eric Andersenb558e762000-11-30 22:43:16 +0000882 static char a[7]; /* Max 7 ints */
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000883 register char *b = a + sizeof(a) - 1;
884 int sign = (i < 0);
885
886 if (sign)
887 i = -i;
888 *b = 0;
889 do
890 {
891 *--b = '0' + (i % 10);
892 i /= 10;
893 }
894 while (i);
895 if (sign)
896 *--b = '-';
897 return b;
898}
Eric Andersenca604592001-03-08 17:17:13 +0000899#endif
900
901static int expand_arguments(char *command)
902{
903#ifdef BB_FEATURE_SH_ENVIRONMENT
904 wordexp_t wrdexp;
905 char *src, *dst, *var;
906 int i=0, length, total_length=0, retval;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000907#endif
908
Eric Andersenca604592001-03-08 17:17:13 +0000909 /* get rid of the terminating \n */
910 chomp(command);
Erik Andersen3522eb12000-03-12 23:49:18 +0000911
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000912#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +0000913
914 /* This first part uses wordexp() which is a wonderful C lib
915 * function which expands nearly everything. */
916
917 retval = wordexp (command, &wrdexp, 0);
918
919 if (retval == WRDE_NOSPACE) {
920 /* Mem may have been allocated... */
921 wordfree (&wrdexp);
922 error_msg("out of space during expansion");
923 return FALSE;
924 }
925 if (retval < 0) {
926 /* Some other error. */
927 error_msg("syntax error");
928 return FALSE;
929 }
930
931 /* Convert from char** (one word per string) to a simple char*,
932 * but don't overflow command which is BUFSIZ in length */
933 *command = '\0';
934 while (i < wrdexp.we_wordc && total_length < BUFSIZ) {
935 length=strlen(wrdexp.we_wordv[i])+1;
936 if (BUFSIZ-total_length-length <= 0) {
937 error_msg("out of space during expansion");
938 return FALSE;
939 }
940 strcat(command+total_length, wrdexp.we_wordv[i++]);
941 strcat(command+total_length, " ");
942 total_length+=length;
943 }
944 wordfree (&wrdexp);
945
946
947 /* Now do the shell variable substitutions which
948 * wordexp can't do for us, namely $? and $! */
949 src = command;
Eric Andersencaeeb362001-02-20 06:38:44 +0000950 while((dst = strchr(src,'$')) != NULL){
951 if (!(var = getenv(dst + 1))) {
952 switch(*(dst+1)) {
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000953 case '?':
Eric Andersencaeeb362001-02-20 06:38:44 +0000954 var = itoa(last_return_code);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000955 break;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000956 case '!':
Eric Andersen86349772000-12-18 20:25:50 +0000957 if (last_bg_pid==-1)
Eric Andersencaeeb362001-02-20 06:38:44 +0000958 *(var)='\0';
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000959 else
Eric Andersencaeeb362001-02-20 06:38:44 +0000960 var = itoa(last_bg_pid);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000961 break;
Eric Andersen32f8c172001-03-08 17:44:37 +0000962 /* Everything else like $$, $#, $[0-9], etc should all be
963 * expanded by wordexp(), so we can in theory skip that stuff
964 * here, but just to be on the safe side (i.e. since uClibc
965 * wordexp doesn't do this stuff yet), lets leave it in for
966 * now. */
Eric Andersenca604592001-03-08 17:17:13 +0000967 case '$':
Eric Andersen32f8c172001-03-08 17:44:37 +0000968 var = itoa(getpid());
969 break;
Eric Andersenca604592001-03-08 17:17:13 +0000970 case '#':
Eric Andersen32f8c172001-03-08 17:44:37 +0000971 var = itoa(argc-1);
972 break;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000973 case '0':case '1':case '2':case '3':case '4':
974 case '5':case '6':case '7':case '8':case '9':
Eric Andersen32f8c172001-03-08 17:44:37 +0000975 {
976 int index=*(dst + 1)-48;
977 if (index >= argc) {
978 var='\0';
979 } else {
980 var = argv[index];
981 }
982 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000983 break;
Eric Andersen32f8c172001-03-08 17:44:37 +0000984
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000985 }
986 }
Eric Andersencaeeb362001-02-20 06:38:44 +0000987 if (var) {
Eric Andersenca604592001-03-08 17:17:13 +0000988 int subst_len = strlen(var);
989 char *next_dst;
990 if ((next_dst=strpbrk(dst+1, " \t~`!$^&*()=|\\{}[];\"'<>?")) == NULL) {
991 next_dst = dst;
Eric Andersencaeeb362001-02-20 06:38:44 +0000992 }
Eric Andersenca604592001-03-08 17:17:13 +0000993 src = (char*)xrealloc(src, strlen(src) - strlen(next_dst)+strlen(var)+1);
994 /* Move stuff to the end of the string to accommodate filling
995 * the created gap with the new stuff */
996 memmove(dst+subst_len, next_dst+1, subst_len);
997 /* Now copy in the new stuff */
998 strncpy(dst, var, subst_len);
Eric Andersen32f8c172001-03-08 17:44:37 +0000999 src = dst;
1000 src++;
1001 } else {
1002 /* Seems we got an un-expandable variable. So delete it. */
1003 char *next_dst;
1004 if ((next_dst=strpbrk(dst+1, " \t~`!$^&*()=|\\{}[];\"'<>?")) != NULL) {
1005 /* Move stuff to the end of the string to accommodate filling
1006 * the created gap with the new stuff */
1007 memmove(dst, next_dst, next_dst-dst);
1008 }
Eric Andersencaeeb362001-02-20 06:38:44 +00001009 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001010 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001011
Eric Andersenca604592001-03-08 17:17:13 +00001012
1013
1014
1015#endif
1016 return TRUE;
Erik Andersen3522eb12000-03-12 23:49:18 +00001017}
1018
Eric Andersen86349772000-12-18 20:25:50 +00001019/* Return cmd->num_progs as 0 if no command is present (e.g. an empty
1020 line). If a valid command is found, command_ptr is set to point to
Erik Andersen3522eb12000-03-12 23:49:18 +00001021 the beginning of the next command (if the original command had more
1022 then one job associated with it) or NULL if no more commands are
1023 present. */
Eric Andersen86349772000-12-18 20:25:50 +00001024static int parse_command(char **command_ptr, struct job *job, int *inbg)
Erik Andersen3522eb12000-03-12 23:49:18 +00001025{
Erik Andersen161220c2000-03-16 08:12:48 +00001026 char *command;
Eric Andersen86349772000-12-18 20:25:50 +00001027 char *return_command = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001028 char *src, *buf, *chptr;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001029 int argc_l = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001030 int done = 0;
Eric Andersen86349772000-12-18 20:25:50 +00001031 int argv_alloced;
Erik Andersen161220c2000-03-16 08:12:48 +00001032 int i;
1033 char quote = '\0';
1034 int count;
Eric Andersen86349772000-12-18 20:25:50 +00001035 struct child_prog *prog;
Erik Andersen3522eb12000-03-12 23:49:18 +00001036
Erik Andersen161220c2000-03-16 08:12:48 +00001037 /* skip leading white space */
Eric Andersen86349772000-12-18 20:25:50 +00001038 while (**command_ptr && isspace(**command_ptr))
1039 (*command_ptr)++;
Erik Andersen3522eb12000-03-12 23:49:18 +00001040
Erik Andersen161220c2000-03-16 08:12:48 +00001041 /* this handles empty lines or leading '#' characters */
Eric Andersen86349772000-12-18 20:25:50 +00001042 if (!**command_ptr || (**command_ptr == '#')) {
1043 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001044 return 0;
1045 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001046
Eric Andersen86349772000-12-18 20:25:50 +00001047 *inbg = 0;
1048 job->num_progs = 1;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001049 job->progs = xmalloc(sizeof(*job->progs));
Erik Andersen3522eb12000-03-12 23:49:18 +00001050
Erik Andersen161220c2000-03-16 08:12:48 +00001051 /* We set the argv elements to point inside of this string. The
Eric Andersen86349772000-12-18 20:25:50 +00001052 memory is freed by free_job(). Allocate twice the original
Eric Andersenb54833c2000-07-03 23:56:26 +00001053 length in case we need to quote every single character.
Erik Andersen3522eb12000-03-12 23:49:18 +00001054
Erik Andersen161220c2000-03-16 08:12:48 +00001055 Getting clean memory relieves us of the task of NULL
1056 terminating things and makes the rest of this look a bit
1057 cleaner (though it is, admittedly, a tad less efficient) */
Eric Andersen86349772000-12-18 20:25:50 +00001058 job->cmdbuf = command = xcalloc(2*strlen(*command_ptr) + 1, sizeof(char));
Erik Andersen161220c2000-03-16 08:12:48 +00001059 job->text = NULL;
Erik Andersen3522eb12000-03-12 23:49:18 +00001060
Erik Andersen161220c2000-03-16 08:12:48 +00001061 prog = job->progs;
Eric Andersen86349772000-12-18 20:25:50 +00001062 prog->num_redirects = 0;
1063 prog->redirects = NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001064 prog->is_stopped = 0;
1065 prog->family = job;
Erik Andersen3522eb12000-03-12 23:49:18 +00001066
Eric Andersen86349772000-12-18 20:25:50 +00001067 argv_alloced = 5;
1068 prog->argv = xmalloc(sizeof(*prog->argv) * argv_alloced);
1069 prog->argv[0] = job->cmdbuf;
Erik Andersen3522eb12000-03-12 23:49:18 +00001070
Erik Andersen161220c2000-03-16 08:12:48 +00001071 buf = command;
Eric Andersen86349772000-12-18 20:25:50 +00001072 src = *command_ptr;
Erik Andersen161220c2000-03-16 08:12:48 +00001073 while (*src && !done) {
1074 if (quote == *src) {
1075 quote = '\0';
1076 } else if (quote) {
1077 if (*src == '\\') {
1078 src++;
1079 if (!*src) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001080 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001081 free_job(job);
Erik Andersen161220c2000-03-16 08:12:48 +00001082 return 1;
1083 }
1084
1085 /* in shell, "\'" should yield \' */
Eric Andersenb2356f62000-12-11 19:14:40 +00001086 if (*src != quote) {
Erik Andersen161220c2000-03-16 08:12:48 +00001087 *buf++ = '\\';
Eric Andersenb2356f62000-12-11 19:14:40 +00001088 *buf++ = '\\';
1089 }
Erik Andersen161220c2000-03-16 08:12:48 +00001090 } else if (*src == '*' || *src == '?' || *src == '[' ||
1091 *src == ']') *buf++ = '\\';
1092 *buf++ = *src;
1093 } else if (isspace(*src)) {
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001094 if (*prog->argv[argc_l]) {
1095 buf++, argc_l++;
Erik Andersen161220c2000-03-16 08:12:48 +00001096 /* +1 here leaves room for the NULL which ends argv */
Eric Andersen86349772000-12-18 20:25:50 +00001097 if ((argc_l + 1) == argv_alloced) {
1098 argv_alloced += 5;
Matt Kraaib8907522000-09-13 02:08:21 +00001099 prog->argv = xrealloc(prog->argv,
1100 sizeof(*prog->argv) *
Eric Andersen86349772000-12-18 20:25:50 +00001101 argv_alloced);
Erik Andersen161220c2000-03-16 08:12:48 +00001102 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001103 prog->argv[argc_l] = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001104 }
1105 } else
1106 switch (*src) {
1107 case '"':
1108 case '\'':
1109 quote = *src;
1110 break;
1111
1112 case '#': /* comment */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001113 if (*(src-1)== '$')
1114 *buf++ = *src;
1115 else
1116 done = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001117 break;
1118
Eric Andersen86349772000-12-18 20:25:50 +00001119 case '>': /* redirects */
Erik Andersen161220c2000-03-16 08:12:48 +00001120 case '<':
Eric Andersen86349772000-12-18 20:25:50 +00001121 i = prog->num_redirects++;
1122 prog->redirects = xrealloc(prog->redirects,
1123 sizeof(*prog->redirects) *
Matt Kraaib8907522000-09-13 02:08:21 +00001124 (i + 1));
Erik Andersen161220c2000-03-16 08:12:48 +00001125
Eric Andersen86349772000-12-18 20:25:50 +00001126 prog->redirects[i].fd = -1;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001127 if (buf != prog->argv[argc_l]) {
Erik Andersen161220c2000-03-16 08:12:48 +00001128 /* the stuff before this character may be the file number
1129 being redirected */
Eric Andersen86349772000-12-18 20:25:50 +00001130 prog->redirects[i].fd =
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001131 strtol(prog->argv[argc_l], &chptr, 10);
Erik Andersen161220c2000-03-16 08:12:48 +00001132
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001133 if (*chptr && *prog->argv[argc_l]) {
1134 buf++, argc_l++;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001135 prog->argv[argc_l] = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001136 }
1137 }
1138
Eric Andersen86349772000-12-18 20:25:50 +00001139 if (prog->redirects[i].fd == -1) {
Erik Andersen161220c2000-03-16 08:12:48 +00001140 if (*src == '>')
Eric Andersen86349772000-12-18 20:25:50 +00001141 prog->redirects[i].fd = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001142 else
Eric Andersen86349772000-12-18 20:25:50 +00001143 prog->redirects[i].fd = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001144 }
1145
1146 if (*src++ == '>') {
1147 if (*src == '>')
Eric Andersen86349772000-12-18 20:25:50 +00001148 prog->redirects[i].type =
Erik Andersen161220c2000-03-16 08:12:48 +00001149 REDIRECT_APPEND, src++;
1150 else
Eric Andersen86349772000-12-18 20:25:50 +00001151 prog->redirects[i].type = REDIRECT_OVERWRITE;
Erik Andersen161220c2000-03-16 08:12:48 +00001152 } else {
Eric Andersen86349772000-12-18 20:25:50 +00001153 prog->redirects[i].type = REDIRECT_INPUT;
Erik Andersen161220c2000-03-16 08:12:48 +00001154 }
1155
1156 /* This isn't POSIX sh compliant. Oh well. */
1157 chptr = src;
1158 while (isspace(*chptr))
1159 chptr++;
1160
1161 if (!*chptr) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001162 error_msg("file name expected after %c", *src);
Eric Andersen86349772000-12-18 20:25:50 +00001163 free_job(job);
1164 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001165 return 1;
1166 }
1167
Eric Andersen86349772000-12-18 20:25:50 +00001168 prog->redirects[i].filename = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001169 while (*chptr && !isspace(*chptr))
1170 *buf++ = *chptr++;
1171
1172 src = chptr - 1; /* we src++ later */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001173 prog->argv[argc_l] = ++buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001174 break;
1175
1176 case '|': /* pipe */
1177 /* finish this command */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001178 if (*prog->argv[argc_l])
1179 argc_l++;
1180 if (!argc_l) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001181 error_msg("empty command in pipe");
Eric Andersen86349772000-12-18 20:25:50 +00001182 free_job(job);
1183 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001184 return 1;
1185 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001186 prog->argv[argc_l] = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001187
1188 /* and start the next */
Eric Andersen86349772000-12-18 20:25:50 +00001189 job->num_progs++;
Matt Kraaib8907522000-09-13 02:08:21 +00001190 job->progs = xrealloc(job->progs,
Eric Andersen86349772000-12-18 20:25:50 +00001191 sizeof(*job->progs) * job->num_progs);
1192 prog = job->progs + (job->num_progs - 1);
1193 prog->num_redirects = 0;
1194 prog->redirects = NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001195 prog->is_stopped = 0;
1196 prog->family = job;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001197 argc_l = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001198
Eric Andersen86349772000-12-18 20:25:50 +00001199 argv_alloced = 5;
1200 prog->argv = xmalloc(sizeof(*prog->argv) * argv_alloced);
Erik Andersen161220c2000-03-16 08:12:48 +00001201 prog->argv[0] = ++buf;
1202
1203 src++;
1204 while (*src && isspace(*src))
1205 src++;
1206
1207 if (!*src) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001208 error_msg("empty command in pipe");
Eric Andersen86349772000-12-18 20:25:50 +00001209 free_job(job);
1210 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001211 return 1;
1212 }
1213 src--; /* we'll ++ it at the end of the loop */
1214
1215 break;
1216
1217 case '&': /* background */
Eric Andersen86349772000-12-18 20:25:50 +00001218 *inbg = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001219 case ';': /* multiple commands */
1220 done = 1;
Eric Andersen86349772000-12-18 20:25:50 +00001221 return_command = *command_ptr + (src - *command_ptr) + 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001222 break;
1223
Eric Andersena1d187a2000-07-17 19:14:41 +00001224#ifdef BB_FEATURE_SH_BACKTICKS
Eric Andersenec10b9d2000-07-14 01:13:11 +00001225 case '`':
1226 /* Exec a backtick-ed command */
Eric Andersen8ea28be2001-01-05 20:58:22 +00001227 /* Besides any previous brokenness, I have not
1228 * updated backtick handling for close_me support.
1229 * I don't know if it needs it or not. -- LRD */
Eric Andersenec10b9d2000-07-14 01:13:11 +00001230 {
Eric Andersena1d187a2000-07-17 19:14:41 +00001231 char* charptr1=NULL, *charptr2;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001232 char* ptr=NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001233 struct job *newjob;
1234 struct jobset njob_list = { NULL, NULL };
Eric Andersena1d187a2000-07-17 19:14:41 +00001235 int pipefd[2];
1236 int size;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001237
1238 ptr=strchr(++src, '`');
1239 if (ptr==NULL) {
1240 fprintf(stderr, "Unmatched '`' in command\n");
Eric Andersen86349772000-12-18 20:25:50 +00001241 free_job(job);
Eric Andersenec10b9d2000-07-14 01:13:11 +00001242 return 1;
1243 }
1244
Eric Andersena1d187a2000-07-17 19:14:41 +00001245 /* Make some space to hold just the backticked command */
Eric Andersen6efc48c2000-07-18 08:16:39 +00001246 charptr1 = charptr2 = xmalloc(1+ptr-src);
Matt Kraai0b2da462000-09-19 06:46:44 +00001247 memcpy(charptr1, src, ptr-src);
1248 charptr1[ptr-src] = '\0';
Eric Andersen86349772000-12-18 20:25:50 +00001249 newjob = xmalloc(sizeof(struct job));
1250 newjob->job_list = &njob_list;
Eric Andersena1d187a2000-07-17 19:14:41 +00001251 /* Now parse and run the backticked command */
Eric Andersen86349772000-12-18 20:25:50 +00001252 if (!parse_command(&charptr1, newjob, inbg)
1253 && newjob->num_progs) {
Eric Andersena1d187a2000-07-17 19:14:41 +00001254 pipe(pipefd);
Eric Andersen86349772000-12-18 20:25:50 +00001255 run_command(newjob, 0, pipefd);
Eric Andersenec10b9d2000-07-14 01:13:11 +00001256 }
Eric Andersen86349772000-12-18 20:25:50 +00001257 checkjobs(job->job_list);
1258 free_job(newjob); /* doesn't actually free newjob,
1259 looks like a memory leak */
Eric Andersen6efc48c2000-07-18 08:16:39 +00001260 free(charptr2);
1261
1262 /* Make a copy of any stuff left over in the command
1263 * line after the second backtick */
1264 charptr2 = xmalloc(strlen(ptr)+1);
1265 memcpy(charptr2, ptr+1, strlen(ptr));
1266
Eric Andersenec10b9d2000-07-14 01:13:11 +00001267
Eric Andersena1d187a2000-07-17 19:14:41 +00001268 /* Copy the output from the backtick-ed command into the
1269 * command line, making extra room as needed */
1270 --src;
1271 charptr1 = xmalloc(BUFSIZ);
Mark Whitleyf57c9442000-12-07 19:56:48 +00001272 while ( (size=full_read(pipefd[0], charptr1, BUFSIZ-1)) >0) {
Eric Andersen86349772000-12-18 20:25:50 +00001273 int newsize=src - *command_ptr + size + 1 + strlen(charptr2);
1274 if (newsize > BUFSIZ) {
1275 *command_ptr=xrealloc(*command_ptr, newsize);
Eric Andersena1d187a2000-07-17 19:14:41 +00001276 }
1277 memcpy(src, charptr1, size);
1278 src+=size;
1279 }
1280 free(charptr1);
1281 close(pipefd[0]);
1282 if (*(src-1)=='\n')
1283 --src;
1284
Eric Andersen86349772000-12-18 20:25:50 +00001285 /* Now paste into the *command_ptr all the stuff
Eric Andersena1d187a2000-07-17 19:14:41 +00001286 * leftover after the second backtick */
Matt Kraaicbbe4d62000-09-14 00:26:50 +00001287 memcpy(src, charptr2, strlen(charptr2)+1);
Eric Andersena1d187a2000-07-17 19:14:41 +00001288 free(charptr2);
1289
Eric Andersen86349772000-12-18 20:25:50 +00001290 /* Now recursively call parse_command to deal with the new
Eric Andersena1d187a2000-07-17 19:14:41 +00001291 * and improved version of the command line with the backtick
1292 * results expanded in place... */
Eric Andersen86349772000-12-18 20:25:50 +00001293 {
1294 struct jobset *jl=job->job_list;
1295 free_job(job);
1296 job->job_list = jl;
1297 }
1298 return(parse_command(command_ptr, job, inbg));
Eric Andersenec10b9d2000-07-14 01:13:11 +00001299 }
1300 break;
Eric Andersena1d187a2000-07-17 19:14:41 +00001301#endif // BB_FEATURE_SH_BACKTICKS
Matt Kraai131241f2000-09-14 00:43:20 +00001302
1303 case '\\':
1304 src++;
1305 if (!*src) {
Eric Andersen86349772000-12-18 20:25:50 +00001306/* This is currently a little broken... */
1307#ifdef HANDLE_CONTINUATION_CHARS
1308 /* They fed us a continuation char, so continue reading stuff
1309 * on the next line, then tack that onto the end of the current
1310 * command */
1311 char *command;
1312 int newsize;
1313 printf("erik: found a continue char at EOL...\n");
1314 command = (char *) xcalloc(BUFSIZ, sizeof(char));
1315 if (get_command(input, command)) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001316 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001317 free(command);
1318 free_job(job);
1319 return 1;
1320 }
1321 newsize = strlen(*command_ptr) + strlen(command) + 2;
1322 if (newsize > BUFSIZ) {
1323 printf("erik: doing realloc\n");
1324 *command_ptr=xrealloc(*command_ptr, newsize);
1325 }
1326 printf("erik: A: *command_ptr='%s'\n", *command_ptr);
1327 memcpy(--src, command, strlen(command));
1328 printf("erik: B: *command_ptr='%s'\n", *command_ptr);
1329 free(command);
1330 break;
1331#else
Matt Kraaidd19c692001-01-31 19:00:21 +00001332 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001333 free(command);
1334 free_job(job);
Matt Kraai131241f2000-09-14 00:43:20 +00001335 return 1;
Eric Andersen86349772000-12-18 20:25:50 +00001336#endif
Matt Kraai131241f2000-09-14 00:43:20 +00001337 }
1338 if (*src == '*' || *src == '[' || *src == ']'
1339 || *src == '?') *buf++ = '\\';
1340 /* fallthrough */
Erik Andersen161220c2000-03-16 08:12:48 +00001341 default:
1342 *buf++ = *src;
1343 }
1344
Erik Andersend75af992000-03-16 08:09:09 +00001345 src++;
Erik Andersen161220c2000-03-16 08:12:48 +00001346 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001347
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001348 if (*prog->argv[argc_l]) {
1349 argc_l++;
Erik Andersen161220c2000-03-16 08:12:48 +00001350 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001351 if (!argc_l) {
Eric Andersen86349772000-12-18 20:25:50 +00001352 free_job(job);
Erik Andersen161220c2000-03-16 08:12:48 +00001353 return 0;
1354 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001355 prog->argv[argc_l] = NULL;
Erik Andersen3522eb12000-03-12 23:49:18 +00001356
Eric Andersen86349772000-12-18 20:25:50 +00001357 if (!return_command) {
1358 job->text = xmalloc(strlen(*command_ptr) + 1);
1359 strcpy(job->text, *command_ptr);
Erik Andersen161220c2000-03-16 08:12:48 +00001360 } else {
1361 /* This leaves any trailing spaces, which is a bit sloppy */
Eric Andersen86349772000-12-18 20:25:50 +00001362 count = return_command - *command_ptr;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001363 job->text = xmalloc(count + 1);
Eric Andersen86349772000-12-18 20:25:50 +00001364 strncpy(job->text, *command_ptr, count);
Erik Andersen161220c2000-03-16 08:12:48 +00001365 job->text[count] = '\0';
1366 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001367
Eric Andersen86349772000-12-18 20:25:50 +00001368 *command_ptr = return_command;
Eric Andersen46f0beb2000-11-14 21:59:22 +00001369
Erik Andersend75af992000-03-16 08:09:09 +00001370 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001371}
1372
Eric Andersen86349772000-12-18 20:25:50 +00001373/* Run the child_prog, no matter what kind of command it uses.
1374 */
1375static int pseudo_exec(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +00001376{
Eric Andersen86349772000-12-18 20:25:50 +00001377 struct built_in_command *x;
Eric Andersenb54833c2000-07-03 23:56:26 +00001378#ifdef BB_FEATURE_SH_STANDALONE_SHELL
Eric Andersenaf4ac772001-02-01 22:43:49 +00001379 char *name;
Erik Andersenbcd61772000-05-13 06:33:19 +00001380#endif
Erik Andersen3522eb12000-03-12 23:49:18 +00001381
Eric Andersene9f07fb2000-12-21 18:31:36 +00001382 /* Check if the command matches any of the non-forking builtins.
1383 * Depending on context, this might be redundant. But it's
1384 * easier to waste a few CPU cycles than it is to figure out
1385 * if this is one of those cases.
Eric Andersen86349772000-12-18 20:25:50 +00001386 */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001387 for (x = bltins; x->cmd; x++) {
1388 if (strcmp(child->argv[0], x->cmd) == 0 ) {
1389 exit(x->function(child));
1390 }
1391 }
1392
1393 /* Check if the command matches any of the forking builtins. */
Eric Andersen86349772000-12-18 20:25:50 +00001394 for (x = bltins_forking; x->cmd; x++) {
1395 if (strcmp(child->argv[0], x->cmd) == 0) {
1396 applet_name=x->cmd;
1397 exit (x->function(child));
1398 }
1399 }
1400#ifdef BB_FEATURE_SH_STANDALONE_SHELL
1401 /* Check if the command matches any busybox internal
1402 * commands ("applets") here. Following discussions from
1403 * November 2000 on busybox@opensource.lineo.com, don't use
1404 * get_last_path_component(). This way explicit (with
1405 * slashes) filenames will never be interpreted as an
1406 * applet, just like with builtins. This way the user can
1407 * override an applet with an explicit filename reference.
1408 * The only downside to this change is that an explicit
1409 * /bin/foo invocation will fork and exec /bin/foo, even if
1410 * /bin/foo is a symlink to busybox.
1411 */
Matt Kraaif2cc2762001-02-01 19:21:20 +00001412 name = child->argv[0];
Eric Andersen86349772000-12-18 20:25:50 +00001413
1414#ifdef BB_FEATURE_SH_APPLETS_ALWAYS_WIN
1415 /* If you enable BB_FEATURE_SH_APPLETS_ALWAYS_WIN, then
1416 * if you run /bin/cat, it will use BusyBox cat even if
1417 * /bin/cat exists on the filesystem and is _not_ busybox.
1418 * Some systems want this, others do not. Choose wisely. :-)
1419 */
Matt Kraaif2cc2762001-02-01 19:21:20 +00001420 name = get_last_path_component(name);
Eric Andersen86349772000-12-18 20:25:50 +00001421#endif
1422
Eric Andersen67991cf2001-02-14 21:23:06 +00001423 {
1424 char** argv=child->argv;
1425 int argc_l;
1426 for(argc_l=0;*argv!=NULL; argv++, argc_l++);
1427 optind = 1;
1428 run_applet_by_name(name, argc_l, child->argv);
Eric Andersen86349772000-12-18 20:25:50 +00001429 }
1430#endif
1431
1432 execvp(child->argv[0], child->argv);
Eric Andersen8ea28be2001-01-05 20:58:22 +00001433 perror_msg_and_die("%s", child->argv[0]);
Eric Andersen86349772000-12-18 20:25:50 +00001434}
1435
1436static void insert_job(struct job *newjob, int inbg)
1437{
1438 struct job *thejob;
1439 struct jobset *job_list=newjob->job_list;
1440
1441 /* find the ID for thejob to use */
1442 newjob->jobid = 1;
1443 for (thejob = job_list->head; thejob; thejob = thejob->next)
1444 if (thejob->jobid >= newjob->jobid)
1445 newjob->jobid = thejob->jobid + 1;
1446
1447 /* add thejob to the list of running jobs */
1448 if (!job_list->head) {
1449 thejob = job_list->head = xmalloc(sizeof(*thejob));
1450 } else {
1451 for (thejob = job_list->head; thejob->next; thejob = thejob->next) /* nothing */;
1452 thejob->next = xmalloc(sizeof(*thejob));
1453 thejob = thejob->next;
1454 }
1455
1456 *thejob = *newjob; /* physically copy the struct job */
1457 thejob->next = NULL;
1458 thejob->running_progs = thejob->num_progs;
1459 thejob->stopped_progs = 0;
1460
1461 if (inbg) {
1462 /* we don't wait for background thejobs to return -- append it
1463 to the list of backgrounded thejobs and leave it alone */
1464 printf("[%d] %d\n", thejob->jobid,
1465 newjob->progs[newjob->num_progs - 1].pid);
1466#ifdef BB_FEATURE_SH_ENVIRONMENT
1467 last_bg_pid=newjob->progs[newjob->num_progs - 1].pid;
1468#endif
1469 } else {
1470 newjob->job_list->fg = thejob;
1471
1472 /* move the new process group into the foreground */
1473 /* suppress messages when run from /linuxrc mag@sysgo.de */
1474 if (tcsetpgrp(0, newjob->pgrp) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +00001475 perror_msg("tcsetpgrp");
Eric Andersen86349772000-12-18 20:25:50 +00001476 }
1477}
1478
1479static int run_command(struct job *newjob, int inbg, int outpipe[2])
1480{
1481 /* struct job *thejob; */
1482 int i;
1483 int nextin, nextout;
1484 int pipefds[2]; /* pipefd[0] is for reading */
1485 struct built_in_command *x;
1486 struct child_prog *child;
1487
Eric Andersen6efc48c2000-07-18 08:16:39 +00001488 nextin = 0, nextout = 1;
Eric Andersen86349772000-12-18 20:25:50 +00001489 for (i = 0; i < newjob->num_progs; i++) {
1490 child = & (newjob->progs[i]);
1491
1492 if ((i + 1) < newjob->num_progs) {
1493 if (pipe(pipefds)<0) perror_msg_and_die("pipe");
Erik Andersen161220c2000-03-16 08:12:48 +00001494 nextout = pipefds[1];
1495 } else {
Eric Andersen86349772000-12-18 20:25:50 +00001496 if (outpipe[1]!=-1) {
1497 nextout = outpipe[1];
Eric Andersen6efc48c2000-07-18 08:16:39 +00001498 } else {
1499 nextout = 1;
1500 }
Erik Andersen161220c2000-03-16 08:12:48 +00001501 }
1502
Eric Andersen501c88b2000-07-28 15:14:45 +00001503#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen86349772000-12-18 20:25:50 +00001504 if (show_x_trace==TRUE) {
Eric Andersen501c88b2000-07-28 15:14:45 +00001505 int j;
Eric Andersen86349772000-12-18 20:25:50 +00001506 fputc('+', stderr);
1507 for (j = 0; child->argv[j]; j++) {
1508 fputc(' ', stderr);
1509 fputs(child->argv[j], stderr);
1510 }
1511 fputc('\n', stderr);
Eric Andersen501c88b2000-07-28 15:14:45 +00001512 }
1513#endif
1514
Eric Andersene9f07fb2000-12-21 18:31:36 +00001515 /* Check if the command matches any non-forking builtins,
1516 * but only if this is a simple command.
1517 * Non-forking builtins within pipes have to fork anyway,
1518 * and are handled in pseudo_exec. "echo foo | read bar"
1519 * is doomed to failure, and doesn't work on bash, either.
Eric Andersen86349772000-12-18 20:25:50 +00001520 */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001521 if (newjob->num_progs == 1) {
1522 for (x = bltins; x->cmd; x++) {
1523 if (strcmp(child->argv[0], x->cmd) == 0 ) {
1524 int squirrel[] = {-1, -1, -1};
1525 int rcode;
1526 setup_redirects(child, squirrel);
1527 rcode = x->function(child);
1528 restore_redirects(squirrel);
1529 return rcode;
1530 }
Erik Andersen330fd2b2000-05-19 05:35:19 +00001531 }
1532 }
1533
Eric Andersen86349772000-12-18 20:25:50 +00001534 if (!(child->pid = fork())) {
Erik Andersen161220c2000-03-16 08:12:48 +00001535 signal(SIGTTOU, SIG_DFL);
1536
Eric Andersen8ea28be2001-01-05 20:58:22 +00001537 close_all();
1538
Eric Andersen86349772000-12-18 20:25:50 +00001539 if (outpipe[1]!=-1) {
1540 close(outpipe[0]);
Eric Andersen6efc48c2000-07-18 08:16:39 +00001541 }
1542 if (nextin != 0) {
1543 dup2(nextin, 0);
1544 close(nextin);
1545 }
1546
1547 if (nextout != 1) {
Erik Andersen161220c2000-03-16 08:12:48 +00001548 dup2(nextout, 1);
Eric Andersen86349772000-12-18 20:25:50 +00001549 dup2(nextout, 2); /* Really? */
Erik Andersen161220c2000-03-16 08:12:48 +00001550 close(nextout);
Eric Andersen501c88b2000-07-28 15:14:45 +00001551 close(pipefds[0]);
Erik Andersen161220c2000-03-16 08:12:48 +00001552 }
1553
Eric Andersen86349772000-12-18 20:25:50 +00001554 /* explicit redirects override pipes */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001555 setup_redirects(child,NULL);
Erik Andersen161220c2000-03-16 08:12:48 +00001556
Eric Andersen86349772000-12-18 20:25:50 +00001557 pseudo_exec(child);
Erik Andersen161220c2000-03-16 08:12:48 +00001558 }
Eric Andersen86349772000-12-18 20:25:50 +00001559 if (outpipe[1]!=-1) {
1560 close(outpipe[1]);
Eric Andersena1d187a2000-07-17 19:14:41 +00001561 }
Erik Andersen161220c2000-03-16 08:12:48 +00001562
1563 /* put our child in the process group whose leader is the
1564 first process in this pipe */
Eric Andersen86349772000-12-18 20:25:50 +00001565 setpgid(child->pid, newjob->progs[0].pid);
Erik Andersen161220c2000-03-16 08:12:48 +00001566 if (nextin != 0)
1567 close(nextin);
Eric Andersen6efc48c2000-07-18 08:16:39 +00001568 if (nextout != 1)
Erik Andersen161220c2000-03-16 08:12:48 +00001569 close(nextout);
1570
1571 /* If there isn't another process, nextin is garbage
1572 but it doesn't matter */
1573 nextin = pipefds[0];
1574 }
1575
Eric Andersen86349772000-12-18 20:25:50 +00001576 newjob->pgrp = newjob->progs[0].pid;
Erik Andersen161220c2000-03-16 08:12:48 +00001577
Eric Andersen86349772000-12-18 20:25:50 +00001578 insert_job(newjob, inbg);
Erik Andersen3522eb12000-03-12 23:49:18 +00001579
Erik Andersen161220c2000-03-16 08:12:48 +00001580 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001581}
1582
Erik Andersend75af992000-03-16 08:09:09 +00001583static int busy_loop(FILE * input)
Erik Andersen3522eb12000-03-12 23:49:18 +00001584{
Erik Andersen161220c2000-03-16 08:12:48 +00001585 char *command;
Eric Andersen86349772000-12-18 20:25:50 +00001586 char *next_command = NULL;
1587 struct job newjob;
Eric Andersen1c314ad2000-06-28 16:56:25 +00001588 pid_t parent_pgrp;
Erik Andersen161220c2000-03-16 08:12:48 +00001589 int i;
Eric Andersen86349772000-12-18 20:25:50 +00001590 int inbg;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001591 int status;
Eric Andersen86349772000-12-18 20:25:50 +00001592 newjob.job_list = &job_list;
1593 newjob.job_context = DEFAULT_CONTEXT;
Erik Andersen3522eb12000-03-12 23:49:18 +00001594
Eric Andersen1c314ad2000-06-28 16:56:25 +00001595 /* save current owner of TTY so we can restore it on exit */
1596 parent_pgrp = tcgetpgrp(0);
1597
Matt Kraaib8907522000-09-13 02:08:21 +00001598 command = (char *) xcalloc(BUFSIZ, sizeof(char));
Erik Andersend75af992000-03-16 08:09:09 +00001599
Erik Andersen161220c2000-03-16 08:12:48 +00001600 /* don't pay any attention to this signal; it just confuses
1601 things and isn't really meant for shells anyway */
1602 signal(SIGTTOU, SIG_IGN);
Erik Andersend75af992000-03-16 08:09:09 +00001603
Erik Andersen161220c2000-03-16 08:12:48 +00001604 while (1) {
Eric Andersen86349772000-12-18 20:25:50 +00001605 if (!job_list.fg) {
Erik Andersend75af992000-03-16 08:09:09 +00001606 /* no job is in the foreground */
Erik Andersen3522eb12000-03-12 23:49:18 +00001607
Erik Andersend75af992000-03-16 08:09:09 +00001608 /* see if any background processes have exited */
Eric Andersen86349772000-12-18 20:25:50 +00001609 checkjobs(&job_list);
Erik Andersen3522eb12000-03-12 23:49:18 +00001610
Eric Andersen86349772000-12-18 20:25:50 +00001611 if (!next_command) {
1612 if (get_command(input, command))
Erik Andersen161220c2000-03-16 08:12:48 +00001613 break;
Eric Andersen86349772000-12-18 20:25:50 +00001614 next_command = command;
Erik Andersend75af992000-03-16 08:09:09 +00001615 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001616
Eric Andersenca604592001-03-08 17:17:13 +00001617 if (expand_arguments(next_command) == FALSE) {
1618 free(command);
1619 command = (char *) xcalloc(BUFSIZ, sizeof(char));
1620 next_command = NULL;
1621 continue;
1622 }
1623
Eric Andersen86349772000-12-18 20:25:50 +00001624 if (!parse_command(&next_command, &newjob, &inbg) &&
1625 newjob.num_progs) {
Eric Andersena1d187a2000-07-17 19:14:41 +00001626 int pipefds[2] = {-1,-1};
Eric Andersen86349772000-12-18 20:25:50 +00001627 debug_printf( "job=%p being fed to run_command by busy_loop()'\n", &newjob);
1628 run_command(&newjob, inbg, pipefds);
Eric Andersenfad9c112000-07-25 18:06:52 +00001629 }
1630 else {
Eric Andersena1d187a2000-07-17 19:14:41 +00001631 free(command);
Matt Kraaib8907522000-09-13 02:08:21 +00001632 command = (char *) xcalloc(BUFSIZ, sizeof(char));
Eric Andersen86349772000-12-18 20:25:50 +00001633 next_command = NULL;
Erik Andersend75af992000-03-16 08:09:09 +00001634 }
1635 } else {
1636 /* a job is running in the foreground; wait for it */
1637 i = 0;
Eric Andersen86349772000-12-18 20:25:50 +00001638 while (!job_list.fg->progs[i].pid ||
1639 job_list.fg->progs[i].is_stopped == 1) i++;
Erik Andersen3522eb12000-03-12 23:49:18 +00001640
Eric Andersen8ea28be2001-01-05 20:58:22 +00001641 if (waitpid(job_list.fg->progs[i].pid, &status, WUNTRACED)<0)
1642 perror_msg_and_die("waitpid(%d)",job_list.fg->progs[i].pid);
Erik Andersen3522eb12000-03-12 23:49:18 +00001643
Erik Andersend75af992000-03-16 08:09:09 +00001644 if (WIFEXITED(status) || WIFSIGNALED(status)) {
Erik Andersen161220c2000-03-16 08:12:48 +00001645 /* the child exited */
Eric Andersen86349772000-12-18 20:25:50 +00001646 job_list.fg->running_progs--;
1647 job_list.fg->progs[i].pid = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001648
Eric Andersen501c88b2000-07-28 15:14:45 +00001649#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen86349772000-12-18 20:25:50 +00001650 last_return_code=WEXITSTATUS(status);
Eric Andersen501c88b2000-07-28 15:14:45 +00001651#endif
Eric Andersen86349772000-12-18 20:25:50 +00001652 debug_printf("'%s' exited -- return code %d\n",
1653 job_list.fg->text, last_return_code);
1654 if (!job_list.fg->running_progs) {
Erik Andersen161220c2000-03-16 08:12:48 +00001655 /* child exited */
Eric Andersen86349772000-12-18 20:25:50 +00001656 remove_job(&job_list, job_list.fg);
1657 job_list.fg = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001658 }
Erik Andersend75af992000-03-16 08:09:09 +00001659 } else {
Erik Andersen161220c2000-03-16 08:12:48 +00001660 /* the child was stopped */
Eric Andersen86349772000-12-18 20:25:50 +00001661 job_list.fg->stopped_progs++;
1662 job_list.fg->progs[i].is_stopped = 1;
Erik Andersen3522eb12000-03-12 23:49:18 +00001663
Eric Andersen86349772000-12-18 20:25:50 +00001664 if (job_list.fg->stopped_progs == job_list.fg->running_progs) {
1665 printf("\n" JOB_STATUS_FORMAT, job_list.fg->jobid,
1666 "Stopped", job_list.fg->text);
1667 job_list.fg = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001668 }
Erik Andersend75af992000-03-16 08:09:09 +00001669 }
1670
Eric Andersen86349772000-12-18 20:25:50 +00001671 if (!job_list.fg) {
Erik Andersen161220c2000-03-16 08:12:48 +00001672 /* move the shell to the foreground */
Eric Andersen1c314ad2000-06-28 16:56:25 +00001673 /* suppress messages when run from /linuxrc mag@sysgo.de */
1674 if (tcsetpgrp(0, getpid()) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +00001675 perror_msg("tcsetpgrp");
Erik Andersend75af992000-03-16 08:09:09 +00001676 }
1677 }
1678 }
Erik Andersen161220c2000-03-16 08:12:48 +00001679 free(command);
Erik Andersen3522eb12000-03-12 23:49:18 +00001680
Eric Andersen1c314ad2000-06-28 16:56:25 +00001681 /* return controlling TTY back to parent process group before exiting */
1682 if (tcsetpgrp(0, parent_pgrp))
Matt Kraaia9819b22000-12-22 01:48:07 +00001683 perror_msg("tcsetpgrp");
Eric Andersenb54833c2000-07-03 23:56:26 +00001684
1685 /* return exit status if called with "-c" */
1686 if (input == NULL && WIFEXITED(status))
1687 return WEXITSTATUS(status);
1688
Erik Andersen161220c2000-03-16 08:12:48 +00001689 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001690}
1691
1692
Eric Andersenfad9c112000-07-25 18:06:52 +00001693#ifdef BB_FEATURE_CLEAN_UP
1694void free_memory(void)
1695{
Eric Andersenfad9c112000-07-25 18:06:52 +00001696 if (cwd)
1697 free(cwd);
1698 if (local_pending_command)
1699 free(local_pending_command);
1700
Eric Andersen86349772000-12-18 20:25:50 +00001701 if (job_list.fg && !job_list.fg->running_progs) {
1702 remove_job(&job_list, job_list.fg);
Eric Andersenfad9c112000-07-25 18:06:52 +00001703 }
1704}
1705#endif
1706
Eric Andersen6efc48c2000-07-18 08:16:39 +00001707
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001708int shell_main(int argc_l, char **argv_l)
Erik Andersen3522eb12000-03-12 23:49:18 +00001709{
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001710 int opt, interactive=FALSE;
Erik Andersen161220c2000-03-16 08:12:48 +00001711 FILE *input = stdin;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001712 argc = argc_l;
1713 argv = argv_l;
Erik Andersen3522eb12000-03-12 23:49:18 +00001714
Eric Andersen702ec592001-03-06 22:17:29 +00001715 /* These variables need re-initializing when recursing */
Eric Andersenb0970d42001-01-05 19:34:52 +00001716 shell_context = 0;
1717 cwd=NULL;
Eric Andersenb0970d42001-01-05 19:34:52 +00001718 local_pending_command = NULL;
Eric Andersen702ec592001-03-06 22:17:29 +00001719 close_me_head = NULL;
Eric Andersenb0970d42001-01-05 19:34:52 +00001720 job_list.head = NULL;
1721 job_list.fg = NULL;
1722#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +00001723 last_bg_pid=1;
1724 last_return_code=1;
Eric Andersenb0970d42001-01-05 19:34:52 +00001725 show_x_trace=FALSE;
1726#endif
Eric Andersen501c88b2000-07-28 15:14:45 +00001727
Eric Andersenb558e762000-11-30 22:43:16 +00001728 if (argv[0] && argv[0][0] == '-') {
Eric Andersen8ea28be2001-01-05 20:58:22 +00001729 FILE *prof_input;
1730 prof_input = fopen("/etc/profile", "r");
1731 if (!prof_input) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001732 printf( "Couldn't open file '/etc/profile'\n");
Eric Andersen8ea28be2001-01-05 20:58:22 +00001733 } else {
1734 int tmp_fd = fileno(prof_input);
1735 mark_open(tmp_fd);
1736 /* Now run the file */
1737 busy_loop(prof_input);
1738 fclose(prof_input);
1739 mark_closed(tmp_fd);
1740 }
Eric Andersenb558e762000-11-30 22:43:16 +00001741 }
Eric Andersen501c88b2000-07-28 15:14:45 +00001742
Eric Andersenf21aa842000-12-08 20:50:30 +00001743 while ((opt = getopt(argc_l, argv_l, "cxi")) > 0) {
Eric Andersen501c88b2000-07-28 15:14:45 +00001744 switch (opt) {
1745 case 'c':
1746 input = NULL;
Matt Kraai6085c722000-09-06 01:46:18 +00001747 if (local_pending_command != 0)
Matt Kraaidd19c692001-01-31 19:00:21 +00001748 error_msg_and_die("multiple -c arguments");
Matt Kraai6085c722000-09-06 01:46:18 +00001749 local_pending_command = xstrdup(argv[optind]);
1750 optind++;
1751 argv = argv+optind;
Eric Andersen501c88b2000-07-28 15:14:45 +00001752 break;
Eric Andersen1428c4f2000-07-28 15:19:30 +00001753#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen501c88b2000-07-28 15:14:45 +00001754 case 'x':
Eric Andersen86349772000-12-18 20:25:50 +00001755 show_x_trace = TRUE;
Eric Andersen501c88b2000-07-28 15:14:45 +00001756 break;
Eric Andersen1428c4f2000-07-28 15:19:30 +00001757#endif
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001758 case 'i':
1759 interactive = TRUE;
1760 break;
Eric Andersen501c88b2000-07-28 15:14:45 +00001761 default:
Eric Andersen67991cf2001-02-14 21:23:06 +00001762 show_usage();
Eric Andersen501c88b2000-07-28 15:14:45 +00001763 }
1764 }
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001765 /* A shell is interactive if the `-i' flag was given, or if all of
1766 * the following conditions are met:
1767 * no -c command
1768 * no arguments remaining or the -s flag given
1769 * standard input is a terminal
1770 * standard output is a terminal
1771 * Refer to Posix.2, the description of the `sh' utility. */
Eric Andersen86349772000-12-18 20:25:50 +00001772 if (argv[optind]==NULL && input==stdin &&
1773 isatty(fileno(stdin)) && isatty(fileno(stdout))) {
1774 interactive=TRUE;
1775 }
1776 if (interactive==TRUE) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001777 //printf( "optind=%d argv[optind]='%s'\n", optind, argv[optind]);
Eric Andersen501c88b2000-07-28 15:14:45 +00001778 /* Looks like they want an interactive shell */
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001779 printf( "\n\nBusyBox v%s (%s) Built-in shell (lash)\n", BB_VER, BB_BT);
1780 printf( "Enter 'help' for a list of built-in commands.\n\n");
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001781 } else if (local_pending_command==NULL) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001782 //printf( "optind=%d argv[optind]='%s'\n", optind, argv[optind]);
Matt Kraaibbaef662000-09-27 02:43:35 +00001783 input = xfopen(argv[optind], "r");
Eric Andersen8ea28be2001-01-05 20:58:22 +00001784 mark_open(fileno(input)); /* be lazy, never mark this closed */
Eric Andersen501c88b2000-07-28 15:14:45 +00001785 }
1786
Eric Andersen6efc48c2000-07-18 08:16:39 +00001787 /* initialize the cwd -- this is never freed...*/
1788 cwd=(char*)xmalloc(sizeof(char)*MAX_LINE+1);
1789 getcwd(cwd, sizeof(char)*MAX_LINE);
Erik Andersen3522eb12000-03-12 23:49:18 +00001790
Eric Andersenfad9c112000-07-25 18:06:52 +00001791#ifdef BB_FEATURE_CLEAN_UP
1792 atexit(free_memory);
1793#endif
1794
Erik Andersen161220c2000-03-16 08:12:48 +00001795 return (busy_loop(input));
Erik Andersen3522eb12000-03-12 23:49:18 +00001796}