blob: 8727e12ae74ecb1be4998f9e0988b3288014ea99 [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
Eric Andersenb3d6e2d2001-03-13 22:57:56 +000042//like any other Bourne shell -- sortof...
Eric Andersene9f07fb2000-12-21 18:31:36 +000043#define BB_FEATURE_SH_IF_EXPRESSIONS
Eric Andersen1e7cea92000-12-06 23:47:38 +000044//
Eric Andersenb3d6e2d2001-03-13 22:57:56 +000045/* This is currently sortof broken, only for the brave... */
46#undef HANDLE_CONTINUATION_CHARS
47//
48/* This would be great -- if wordexp wouldn't strip all quoting
49 * out from the target strings... As is, a parser needs */
50#undef BB_FEATURE_SH_WORDEXP
Eric Andersen86349772000-12-18 20:25:50 +000051//
Eric Andersen1e7cea92000-12-06 23:47:38 +000052//For debugging/development on the shell only...
Eric Andersen501c88b2000-07-28 15:14:45 +000053//#define DEBUG_SHELL
Eric Andersena1d187a2000-07-17 19:14:41 +000054
55
Erik Andersen3522eb12000-03-12 23:49:18 +000056#include <stdio.h>
57#include <stdlib.h>
58#include <ctype.h>
59#include <errno.h>
60#include <fcntl.h>
Erik Andersen3522eb12000-03-12 23:49:18 +000061#include <signal.h>
62#include <string.h>
63#include <sys/ioctl.h>
64#include <sys/wait.h>
65#include <unistd.h>
Eric Andersen501c88b2000-07-28 15:14:45 +000066#include <getopt.h>
Eric Andersen13d1fa12001-03-08 23:59:45 +000067
Eric Andersen34174472001-03-17 00:20:10 +000068//#define BB_FEATURE_SH_WORDEXP
Eric Andersenb180dd92001-03-09 00:42:46 +000069
Eric Andersen34174472001-03-17 00:20:10 +000070#ifdef BB_FEATURE_SH_WORDEXP
Eric Andersen13d1fa12001-03-08 23:59:45 +000071#include <wordexp.h>
72#define expand_t wordexp_t
73#undef BB_FEATURE_SH_BACKTICKS
74#else
75#include <glob.h>
76#define expand_t glob_t
77#endif
Eric Andersencaeeb362001-02-20 06:38:44 +000078#include "busybox.h"
Erik Andersenf0657d32000-04-12 17:49:52 +000079#include "cmdedit.h"
Erik Andersen3522eb12000-03-12 23:49:18 +000080
Eric Andersen13d1fa12001-03-08 23:59:45 +000081
Mark Whitley59ab0252001-01-23 22:30:04 +000082static const int MAX_LINE = 256; /* size of input buffer for cwd data */
83static const int MAX_READ = 128; /* size of input buffer for `read' builtin */
Erik Andersen3522eb12000-03-12 23:49:18 +000084#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
85
Erik Andersend75af992000-03-16 08:09:09 +000086
Eric Andersen86349772000-12-18 20:25:50 +000087enum redir_type { REDIRECT_INPUT, REDIRECT_OVERWRITE,
Erik Andersen161220c2000-03-16 08:12:48 +000088 REDIRECT_APPEND
89};
Erik Andersen3522eb12000-03-12 23:49:18 +000090
Eric Andersen86349772000-12-18 20:25:50 +000091static const unsigned int DEFAULT_CONTEXT=0x1;
Eric Andersen6a99aaf2000-07-27 00:15:20 +000092static const unsigned int IF_TRUE_CONTEXT=0x2;
93static const unsigned int IF_FALSE_CONTEXT=0x4;
94static const unsigned int THEN_EXP_CONTEXT=0x8;
95static const unsigned int ELSE_EXP_CONTEXT=0x10;
Eric Andersenfad9c112000-07-25 18:06:52 +000096
Eric Andersen86349772000-12-18 20:25:50 +000097
98struct jobset {
Erik Andersen161220c2000-03-16 08:12:48 +000099 struct job *head; /* head of list of running jobs */
100 struct job *fg; /* current foreground job */
Erik Andersen3522eb12000-03-12 23:49:18 +0000101};
102
Eric Andersen86349772000-12-18 20:25:50 +0000103struct redir_struct {
104 enum redir_type type; /* type of redirection */
Erik Andersen161220c2000-03-16 08:12:48 +0000105 int fd; /* file descriptor being redirected */
106 char *filename; /* file to redirect fd to */
Erik Andersen3522eb12000-03-12 23:49:18 +0000107};
108
Eric Andersen86349772000-12-18 20:25:50 +0000109struct child_prog {
Erik Andersen161220c2000-03-16 08:12:48 +0000110 pid_t pid; /* 0 if exited */
111 char **argv; /* program name and arguments */
Eric Andersen86349772000-12-18 20:25:50 +0000112 int num_redirects; /* elements in redirection array */
113 struct redir_struct *redirects; /* I/O redirects */
Eric Andersen86349772000-12-18 20:25:50 +0000114 int is_stopped; /* is the program currently running? */
115 struct job *family; /* pointer back to the child's parent job */
Erik Andersen3522eb12000-03-12 23:49:18 +0000116};
117
118struct job {
Eric Andersen86349772000-12-18 20:25:50 +0000119 int jobid; /* job number */
120 int num_progs; /* total number of programs in job */
121 int running_progs; /* number of programs running */
Erik Andersen161220c2000-03-16 08:12:48 +0000122 char *text; /* name of job */
Eric Andersen86349772000-12-18 20:25:50 +0000123 char *cmdbuf; /* buffer various argv's point into */
Erik Andersen161220c2000-03-16 08:12:48 +0000124 pid_t pgrp; /* process group ID for the job */
Eric Andersen86349772000-12-18 20:25:50 +0000125 struct child_prog *progs; /* array of programs in job */
Erik Andersen161220c2000-03-16 08:12:48 +0000126 struct job *next; /* to track background commands */
Eric Andersen86349772000-12-18 20:25:50 +0000127 int stopped_progs; /* number of programs alive, but stopped */
128 unsigned int job_context; /* bitmask defining current context */
129 struct jobset *job_list;
Erik Andersen3522eb12000-03-12 23:49:18 +0000130};
131
Eric Andersen86349772000-12-18 20:25:50 +0000132struct built_in_command {
Erik Andersen161220c2000-03-16 08:12:48 +0000133 char *cmd; /* name */
134 char *descr; /* description */
Eric Andersen86349772000-12-18 20:25:50 +0000135 int (*function) (struct child_prog *); /* function ptr */
Erik Andersen3522eb12000-03-12 23:49:18 +0000136};
137
Eric Andersen8ea28be2001-01-05 20:58:22 +0000138struct close_me {
139 int fd;
140 struct close_me *next;
141};
142
Eric Andersen34e19412000-07-10 18:47:24 +0000143/* function prototypes for builtins */
Eric Andersen86349772000-12-18 20:25:50 +0000144static int builtin_cd(struct child_prog *cmd);
145static int builtin_env(struct child_prog *dummy);
146static int builtin_exec(struct child_prog *cmd);
147static int builtin_exit(struct child_prog *cmd);
148static int builtin_fg_bg(struct child_prog *cmd);
149static int builtin_help(struct child_prog *cmd);
150static int builtin_jobs(struct child_prog *dummy);
151static int builtin_pwd(struct child_prog *dummy);
152static int builtin_export(struct child_prog *cmd);
153static int builtin_source(struct child_prog *cmd);
154static int builtin_unset(struct child_prog *cmd);
155static int builtin_read(struct child_prog *cmd);
Eric Andersenfad9c112000-07-25 18:06:52 +0000156#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
Eric Andersen86349772000-12-18 20:25:50 +0000157static int builtin_if(struct child_prog *cmd);
158static int builtin_then(struct child_prog *cmd);
159static int builtin_else(struct child_prog *cmd);
160static int builtin_fi(struct child_prog *cmd);
Eric Andersen70da6a62000-12-20 22:59:16 +0000161/* function prototypes for shell stuff */
162static int run_command_predicate(char *cmd);
Eric Andersenfad9c112000-07-25 18:06:52 +0000163#endif
Erik Andersen3522eb12000-03-12 23:49:18 +0000164
Eric Andersen34e19412000-07-10 18:47:24 +0000165
166/* function prototypes for shell stuff */
Eric Andersen8ea28be2001-01-05 20:58:22 +0000167static void mark_open(int fd);
168static void mark_closed(int fd);
Eric Andersen36278b92001-03-06 20:47:31 +0000169static void close_all(void);
Eric Andersen86349772000-12-18 20:25:50 +0000170static void checkjobs(struct jobset *job_list);
171static int get_command(FILE * source, char *command);
172static int parse_command(char **command_ptr, struct job *job, int *inbg);
173static int run_command(struct job *newjob, int inbg, int outpipe[2]);
174static int pseudo_exec(struct child_prog *cmd) __attribute__ ((noreturn));
Erik Andersen3522eb12000-03-12 23:49:18 +0000175static int busy_loop(FILE * input);
176
Erik Andersend75af992000-03-16 08:09:09 +0000177
Mark Whitley37653aa2000-07-12 23:36:17 +0000178/* Table of built-in functions (these are non-forking builtins, meaning they
179 * can change global variables in the parent shell process but they will not
180 * work with pipes and redirects; 'unset foo | whatever' will not work) */
Eric Andersen86349772000-12-18 20:25:50 +0000181static struct built_in_command bltins[] = {
Eric Andersenfad9c112000-07-25 18:06:52 +0000182 {"bg", "Resume a job in the background", builtin_fg_bg},
183 {"cd", "Change working directory", builtin_cd},
Eric Andersend2f56772000-09-21 02:48:07 +0000184 {"exec", "Exec command, replacing this shell with the exec'd process", builtin_exec},
Eric Andersenfad9c112000-07-25 18:06:52 +0000185 {"exit", "Exit from shell()", builtin_exit},
186 {"fg", "Bring job into the foreground", builtin_fg_bg},
187 {"jobs", "Lists the active jobs", builtin_jobs},
188 {"export", "Set environment variable", builtin_export},
189 {"unset", "Unset environment variable", builtin_unset},
190 {"read", "Input environment variable", builtin_read},
Matt Kraaidd450a02000-09-13 03:43:36 +0000191 {".", "Source-in and run commands in a file", builtin_source},
Eric Andersen86349772000-12-18 20:25:50 +0000192 /* to do: add ulimit */
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000193#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
194 {"if", NULL, builtin_if},
195 {"then", NULL, builtin_then},
196 {"else", NULL, builtin_else},
197 {"fi", NULL, builtin_fi},
198#endif
Eric Andersenfad9c112000-07-25 18:06:52 +0000199 {NULL, NULL, NULL}
Erik Andersen330fd2b2000-05-19 05:35:19 +0000200};
201
Mark Whitley37653aa2000-07-12 23:36:17 +0000202/* Table of forking built-in functions (things that fork cannot change global
203 * variables in the parent process, such as the current working directory) */
Eric Andersen86349772000-12-18 20:25:50 +0000204static struct built_in_command bltins_forking[] = {
Eric Andersenfad9c112000-07-25 18:06:52 +0000205 {"env", "Print all environment variables", builtin_env},
206 {"pwd", "Print current directory", builtin_pwd},
Eric Andersenfad9c112000-07-25 18:06:52 +0000207 {"help", "List shell built-in commands", builtin_help},
208 {NULL, NULL, NULL}
Erik Andersen3522eb12000-03-12 23:49:18 +0000209};
210
Eric Andersen0bcc8132001-01-05 19:37:32 +0000211
212/* Variables we export */
213unsigned int shell_context; /* Used in cmdedit.c to reset the
214 context when someone hits ^C */
215
216
217/* Globals that are static to this file */
Eric Andersen6efc48c2000-07-18 08:16:39 +0000218static char *cwd;
Eric Andersen744b0642001-01-05 21:23:44 +0000219static char *local_pending_command = NULL;
Eric Andersen86349772000-12-18 20:25:50 +0000220static struct jobset job_list = { NULL, NULL };
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000221static int argc;
222static char **argv;
Eric Andersen702ec592001-03-06 22:17:29 +0000223static struct close_me *close_me_head;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000224#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +0000225static int last_bg_pid;
226static int last_return_code;
227static int show_x_trace;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000228#endif
Eric Andersen86349772000-12-18 20:25:50 +0000229#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
230static char syntax_err[]="syntax error near unexpected token";
231#endif
232
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000233static char *PS1;
234static char *PS2;
235
236
Eric Andersenb558e762000-11-30 22:43:16 +0000237#ifdef DEBUG_SHELL
238static inline void debug_printf(const char *format, ...)
239{
240 va_list args;
241 va_start(args, format);
Eric Andersen86349772000-12-18 20:25:50 +0000242 vfprintf(stderr, format, args);
Eric Andersenb558e762000-11-30 22:43:16 +0000243 va_end(args);
244}
245#else
246static inline void debug_printf(const char *format, ...) { }
247#endif
Erik Andersen3522eb12000-03-12 23:49:18 +0000248
Eric Andersen86349772000-12-18 20:25:50 +0000249/*
250 Most builtins need access to the struct child_prog that has
251 their arguments, previously coded as cmd->progs[0]. That coding
252 can exhibit a bug, if the builtin is not the first command in
253 a pipeline: "echo foo | exec sort" will attempt to exec foo.
254
255builtin previous use notes
256------ ----------------- ---------
257cd cmd->progs[0]
258env 0
259exec cmd->progs[0] squashed bug: didn't look for applets or forking builtins
260exit cmd->progs[0]
261fg_bg cmd->progs[0], job_list->head, job_list->fg
262help 0
263jobs job_list->head
264pwd 0
265export cmd->progs[0] passes cmd, job_list to builtin_env(), which ignores them
266source cmd->progs[0]
267unset cmd->progs[0]
268read cmd->progs[0]
269if cmd->job_context, cmd->text
270then cmd->job_context, cmd->text
271else cmd->job_context, cmd->text
272fi cmd->job_context
273
274The use of cmd->text by if/then/else/fi is hopelessly hacky.
275Would it work to increment cmd->progs[0]->argv and recurse,
276somewhat like builtin_exec does?
277
278I added "struct job *family;" to struct child_prog,
279and switched API to builtin_foo(struct child_prog *child);
280So cmd->text becomes child->family->text
281 cmd->job_context becomes child->family->job_context
282 cmd->progs[0] becomes *child
283 job_list becomes child->family->job_list
284 */
Erik Andersen3522eb12000-03-12 23:49:18 +0000285
Erik Andersend75af992000-03-16 08:09:09 +0000286/* built-in 'cd <path>' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000287static int builtin_cd(struct child_prog *child)
Erik Andersend75af992000-03-16 08:09:09 +0000288{
Erik Andersen161220c2000-03-16 08:12:48 +0000289 char *newdir;
Erik Andersend75af992000-03-16 08:09:09 +0000290
Eric Andersen86349772000-12-18 20:25:50 +0000291 if (child->argv[1] == NULL)
Erik Andersen161220c2000-03-16 08:12:48 +0000292 newdir = getenv("HOME");
293 else
Eric Andersen86349772000-12-18 20:25:50 +0000294 newdir = child->argv[1];
Erik Andersen161220c2000-03-16 08:12:48 +0000295 if (chdir(newdir)) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000296 printf("cd: %s: %m\n", newdir);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000297 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000298 }
Eric Andersen6efc48c2000-07-18 08:16:39 +0000299 getcwd(cwd, sizeof(char)*MAX_LINE);
Erik Andersen161220c2000-03-16 08:12:48 +0000300
Matt Kraai3e856ce2000-12-01 02:55:13 +0000301 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000302}
303
304/* built-in 'env' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000305static int builtin_env(struct child_prog *dummy)
Erik Andersen3522eb12000-03-12 23:49:18 +0000306{
Erik Andersen161220c2000-03-16 08:12:48 +0000307 char **e;
Erik Andersen3522eb12000-03-12 23:49:18 +0000308
Erik Andersen161220c2000-03-16 08:12:48 +0000309 for (e = environ; *e; e++) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000310 printf( "%s\n", *e);
Erik Andersen161220c2000-03-16 08:12:48 +0000311 }
312 return (0);
Erik Andersen3522eb12000-03-12 23:49:18 +0000313}
314
Eric Andersend2f56772000-09-21 02:48:07 +0000315/* built-in 'exec' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000316static int builtin_exec(struct child_prog *child)
Eric Andersend2f56772000-09-21 02:48:07 +0000317{
Eric Andersen86349772000-12-18 20:25:50 +0000318 if (child->argv[1] == NULL)
319 return EXIT_SUCCESS; /* Really? */
320 child->argv++;
Eric Andersen07f2f392001-03-06 20:28:22 +0000321 close_all();
Eric Andersen86349772000-12-18 20:25:50 +0000322 pseudo_exec(child);
323 /* never returns */
Eric Andersend2f56772000-09-21 02:48:07 +0000324}
325
Erik Andersen3522eb12000-03-12 23:49:18 +0000326/* built-in 'exit' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000327static int builtin_exit(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000328{
Eric Andersen86349772000-12-18 20:25:50 +0000329 if (child->argv[1] == NULL)
Matt Kraai3e856ce2000-12-01 02:55:13 +0000330 exit(EXIT_SUCCESS);
Erik Andersen161220c2000-03-16 08:12:48 +0000331
Eric Andersen86349772000-12-18 20:25:50 +0000332 exit (atoi(child->argv[1]));
Erik Andersen3522eb12000-03-12 23:49:18 +0000333}
334
335/* built-in 'fg' and 'bg' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000336static int builtin_fg_bg(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000337{
Erik Andersen161220c2000-03-16 08:12:48 +0000338 int i, jobNum;
Erik Andersen6273f652000-03-17 01:12:41 +0000339 struct job *job=NULL;
Eric Andersen86349772000-12-18 20:25:50 +0000340
Eric Andersene9f07fb2000-12-21 18:31:36 +0000341 if (!child->argv[1] || child->argv[2]) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000342 error_msg("%s: exactly one argument is expected",
Eric Andersene9f07fb2000-12-21 18:31:36 +0000343 child->argv[0]);
344 return EXIT_FAILURE;
345 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000346
Eric Andersene9f07fb2000-12-21 18:31:36 +0000347 if (sscanf(child->argv[1], "%%%d", &jobNum) != 1) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000348 error_msg("%s: bad argument '%s'",
Eric Andersene9f07fb2000-12-21 18:31:36 +0000349 child->argv[0], child->argv[1]);
350 return EXIT_FAILURE;
351 }
352
353 for (job = child->family->job_list->head; job; job = job->next) {
354 if (job->jobid == jobNum) {
355 break;
Erik Andersen161220c2000-03-16 08:12:48 +0000356 }
Eric Andersene9f07fb2000-12-21 18:31:36 +0000357 }
Erik Andersen161220c2000-03-16 08:12:48 +0000358
359 if (!job) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000360 error_msg("%s: unknown job %d",
Eric Andersen86349772000-12-18 20:25:50 +0000361 child->argv[0], jobNum);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000362 return EXIT_FAILURE;
Erik Andersend75af992000-03-16 08:09:09 +0000363 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000364
Eric Andersen86349772000-12-18 20:25:50 +0000365 if (*child->argv[0] == 'f') {
Erik Andersen161220c2000-03-16 08:12:48 +0000366 /* Make this job the foreground job */
Eric Andersen1c314ad2000-06-28 16:56:25 +0000367 /* suppress messages when run from /linuxrc mag@sysgo.de */
368 if (tcsetpgrp(0, job->pgrp) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +0000369 perror_msg("tcsetpgrp");
Eric Andersen86349772000-12-18 20:25:50 +0000370 child->family->job_list->fg = job;
Erik Andersen161220c2000-03-16 08:12:48 +0000371 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000372
Erik Andersen161220c2000-03-16 08:12:48 +0000373 /* Restart the processes in the job */
Eric Andersen86349772000-12-18 20:25:50 +0000374 for (i = 0; i < job->num_progs; i++)
375 job->progs[i].is_stopped = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000376
Erik Andersen161220c2000-03-16 08:12:48 +0000377 kill(-job->pgrp, SIGCONT);
Erik Andersen3522eb12000-03-12 23:49:18 +0000378
Eric Andersen86349772000-12-18 20:25:50 +0000379 job->stopped_progs = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000380
Matt Kraai3e856ce2000-12-01 02:55:13 +0000381 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000382}
383
384/* built-in 'help' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000385static int builtin_help(struct child_prog *dummy)
Erik Andersen3522eb12000-03-12 23:49:18 +0000386{
Eric Andersen86349772000-12-18 20:25:50 +0000387 struct built_in_command *x;
Erik Andersen3522eb12000-03-12 23:49:18 +0000388
Eric Andersen86349772000-12-18 20:25:50 +0000389 printf("\nBuilt-in commands:\n");
390 printf("-------------------\n");
Erik Andersen161220c2000-03-16 08:12:48 +0000391 for (x = bltins; x->cmd; x++) {
Eric Andersenfad9c112000-07-25 18:06:52 +0000392 if (x->descr==NULL)
393 continue;
Eric Andersen86349772000-12-18 20:25:50 +0000394 printf("%s\t%s\n", x->cmd, x->descr);
Erik Andersen161220c2000-03-16 08:12:48 +0000395 }
Erik Andersen330fd2b2000-05-19 05:35:19 +0000396 for (x = bltins_forking; x->cmd; x++) {
Eric Andersenfad9c112000-07-25 18:06:52 +0000397 if (x->descr==NULL)
398 continue;
Eric Andersen86349772000-12-18 20:25:50 +0000399 printf("%s\t%s\n", x->cmd, x->descr);
Erik Andersen330fd2b2000-05-19 05:35:19 +0000400 }
Eric Andersen86349772000-12-18 20:25:50 +0000401 printf("\n\n");
Matt Kraai3e856ce2000-12-01 02:55:13 +0000402 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000403}
404
405/* built-in 'jobs' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000406static int builtin_jobs(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000407{
Erik Andersen161220c2000-03-16 08:12:48 +0000408 struct job *job;
Eric Andersen86349772000-12-18 20:25:50 +0000409 char *status_string;
Erik Andersen3522eb12000-03-12 23:49:18 +0000410
Eric Andersen86349772000-12-18 20:25:50 +0000411 for (job = child->family->job_list->head; job; job = job->next) {
412 if (job->running_progs == job->stopped_progs)
413 status_string = "Stopped";
Erik Andersen161220c2000-03-16 08:12:48 +0000414 else
Eric Andersen86349772000-12-18 20:25:50 +0000415 status_string = "Running";
Erik Andersen161220c2000-03-16 08:12:48 +0000416
Eric Andersen86349772000-12-18 20:25:50 +0000417 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->text);
Erik Andersen161220c2000-03-16 08:12:48 +0000418 }
Matt Kraai3e856ce2000-12-01 02:55:13 +0000419 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000420}
421
422
423/* built-in 'pwd' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000424static int builtin_pwd(struct child_prog *dummy)
Erik Andersen3522eb12000-03-12 23:49:18 +0000425{
Eric Andersen86349772000-12-18 20:25:50 +0000426 getcwd(cwd, MAX_LINE);
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000427 printf( "%s\n", cwd);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000428 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000429}
430
Erik Andersen6273f652000-03-17 01:12:41 +0000431/* built-in 'export VAR=value' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000432static int builtin_export(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000433{
Erik Andersen161220c2000-03-16 08:12:48 +0000434 int res;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000435 char *v = child->argv[1];
Erik Andersen3522eb12000-03-12 23:49:18 +0000436
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000437 if (v == NULL) {
Eric Andersen86349772000-12-18 20:25:50 +0000438 return (builtin_env(child));
Erik Andersen161220c2000-03-16 08:12:48 +0000439 }
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000440 res = putenv(v);
Erik Andersen161220c2000-03-16 08:12:48 +0000441 if (res)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000442 fprintf(stderr, "export: %m\n");
Mark Whitleyf5949862001-03-14 00:29:14 +0000443#ifndef BB_FEATURE_SH_SIMPLE_PROMPT
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000444 if (strncmp(v, "PS1=", 4)==0)
445 PS1 = getenv("PS1");
446 else if (strncmp(v, "PS2=", 4)==0)
447 PS2 = getenv("PS2");
448#endif
Erik Andersen161220c2000-03-16 08:12:48 +0000449 return (res);
Erik Andersen3522eb12000-03-12 23:49:18 +0000450}
451
Eric Andersenb54833c2000-07-03 23:56:26 +0000452/* built-in 'read VAR' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000453static int builtin_read(struct child_prog *child)
Eric Andersenb54833c2000-07-03 23:56:26 +0000454{
455 int res = 0, len, newlen;
456 char *s;
457 char string[MAX_READ];
458
Eric Andersen86349772000-12-18 20:25:50 +0000459 if (child->argv[1]) {
Eric Andersenb54833c2000-07-03 23:56:26 +0000460 /* argument (VAR) given: put "VAR=" into buffer */
Eric Andersen86349772000-12-18 20:25:50 +0000461 strcpy(string, child->argv[1]);
Eric Andersenb54833c2000-07-03 23:56:26 +0000462 len = strlen(string);
463 string[len++] = '=';
464 string[len] = '\0';
465 fgets(&string[len], sizeof(string) - len, stdin); /* read string */
466 newlen = strlen(string);
467 if(newlen > len)
468 string[--newlen] = '\0'; /* chomp trailing newline */
469 /*
470 ** string should now contain "VAR=<value>"
471 ** copy it (putenv() won't do that, so we must make sure
472 ** the string resides in a static buffer!)
473 */
474 res = -1;
475 if((s = strdup(string)))
476 res = putenv(s);
477 if (res)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000478 fprintf(stderr, "read: %m\n");
Eric Andersenb54833c2000-07-03 23:56:26 +0000479 }
480 else
481 fgets(string, sizeof(string), stdin);
482
483 return (res);
484}
485
Eric Andersenfad9c112000-07-25 18:06:52 +0000486#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
487/* Built-in handler for 'if' commands */
Eric Andersen86349772000-12-18 20:25:50 +0000488static int builtin_if(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000489{
Eric Andersen86349772000-12-18 20:25:50 +0000490 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000491 int status;
492 char* charptr1=cmd->text+3; /* skip over the leading 'if ' */
493
494 /* Now run the 'if' command */
Eric Andersen86349772000-12-18 20:25:50 +0000495 debug_printf( "job=%p entering builtin_if ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
496 status = run_command_predicate(charptr1);
497 debug_printf( "if test returned ");
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000498 if (status == 0) {
Eric Andersen86349772000-12-18 20:25:50 +0000499 debug_printf( "TRUE\n");
500 cmd->job_context |= IF_TRUE_CONTEXT;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000501 } else {
Eric Andersen86349772000-12-18 20:25:50 +0000502 debug_printf( "FALSE\n");
503 cmd->job_context |= IF_FALSE_CONTEXT;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000504 }
Eric Andersen86349772000-12-18 20:25:50 +0000505 debug_printf("job=%p builtin_if set job context to %x\n", cmd, cmd->job_context);
506 shell_context++;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000507
508 return status;
Eric Andersenfad9c112000-07-25 18:06:52 +0000509}
510
511/* Built-in handler for 'then' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000512static int builtin_then(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000513{
Eric Andersen86349772000-12-18 20:25:50 +0000514 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000515 char* charptr1=cmd->text+5; /* skip over the leading 'then ' */
516
Eric Andersen86349772000-12-18 20:25:50 +0000517 debug_printf( "job=%p entering builtin_then ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
518 if (! (cmd->job_context & (IF_TRUE_CONTEXT|IF_FALSE_CONTEXT))) {
519 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000520 error_msg("%s `then'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000521 return EXIT_FAILURE;
Eric Andersenfad9c112000-07-25 18:06:52 +0000522 }
Eric Andersen86349772000-12-18 20:25:50 +0000523
524 cmd->job_context |= THEN_EXP_CONTEXT;
525 debug_printf("job=%p builtin_then set job context to %x\n", cmd, cmd->job_context);
526
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000527 /* If the if result was FALSE, skip the 'then' stuff */
Eric Andersen86349772000-12-18 20:25:50 +0000528 if (cmd->job_context & IF_FALSE_CONTEXT) {
Matt Kraai3e856ce2000-12-01 02:55:13 +0000529 return EXIT_SUCCESS;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000530 }
531
Eric Andersen86349772000-12-18 20:25:50 +0000532 /* Seems the if result was TRUE, so run the 'then' command */
533 debug_printf( "'then' now running '%s'\n", charptr1);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000534
Eric Andersen86349772000-12-18 20:25:50 +0000535 return(run_command_predicate(charptr1));
Eric Andersenfad9c112000-07-25 18:06:52 +0000536}
537
538/* Built-in handler for 'else' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000539static int builtin_else(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;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000542 char* charptr1=cmd->text+5; /* skip over the leading 'else ' */
543
Eric Andersen86349772000-12-18 20:25:50 +0000544 debug_printf( "job=%p entering builtin_else ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
545
546 if (! (cmd->job_context & THEN_EXP_CONTEXT)) {
547 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000548 error_msg("%s `else'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000549 return EXIT_FAILURE;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000550 }
551 /* If the if result was TRUE, skip the 'else' stuff */
Eric Andersen86349772000-12-18 20:25:50 +0000552 if (cmd->job_context & IF_TRUE_CONTEXT) {
Matt Kraai3e856ce2000-12-01 02:55:13 +0000553 return EXIT_SUCCESS;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000554 }
555
Eric Andersen86349772000-12-18 20:25:50 +0000556 cmd->job_context |= ELSE_EXP_CONTEXT;
Eric Andersene9f07fb2000-12-21 18:31:36 +0000557 debug_printf("job=%p builtin_else set job context to %x\n", cmd, cmd->job_context);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000558
559 /* Now run the 'else' command */
Eric Andersen86349772000-12-18 20:25:50 +0000560 debug_printf( "'else' now running '%s'\n", charptr1);
561 return(run_command_predicate(charptr1));
Eric Andersenfad9c112000-07-25 18:06:52 +0000562}
563
564/* Built-in handler for 'fi' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000565static int builtin_fi(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000566{
Eric Andersen86349772000-12-18 20:25:50 +0000567 struct job *cmd = child->family;
568 debug_printf( "job=%p entering builtin_fi ('%s')-- context=%d\n", cmd, "", cmd->job_context);
569 if (! (cmd->job_context & (IF_TRUE_CONTEXT|IF_FALSE_CONTEXT))) {
570 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000571 error_msg("%s `fi'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000572 return EXIT_FAILURE;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000573 }
574 /* Clear out the if and then context bits */
Eric Andersen86349772000-12-18 20:25:50 +0000575 cmd->job_context &= ~(IF_TRUE_CONTEXT|IF_FALSE_CONTEXT|THEN_EXP_CONTEXT|ELSE_EXP_CONTEXT);
576 debug_printf("job=%p builtin_fi set job context to %x\n", cmd, cmd->job_context);
577 shell_context--;
Matt Kraai3e856ce2000-12-01 02:55:13 +0000578 return EXIT_SUCCESS;
Eric Andersenfad9c112000-07-25 18:06:52 +0000579}
580#endif
581
Erik Andersen3522eb12000-03-12 23:49:18 +0000582/* Built-in '.' handler (read-in and execute commands from file) */
Eric Andersen86349772000-12-18 20:25:50 +0000583static int builtin_source(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000584{
Erik Andersen161220c2000-03-16 08:12:48 +0000585 FILE *input;
586 int status;
Eric Andersen8ea28be2001-01-05 20:58:22 +0000587 int fd;
Erik Andersen3522eb12000-03-12 23:49:18 +0000588
Eric Andersen86349772000-12-18 20:25:50 +0000589 if (child->argv[1] == NULL)
Matt Kraai3e856ce2000-12-01 02:55:13 +0000590 return EXIT_FAILURE;
Erik Andersen3522eb12000-03-12 23:49:18 +0000591
Eric Andersen86349772000-12-18 20:25:50 +0000592 input = fopen(child->argv[1], "r");
Erik Andersen161220c2000-03-16 08:12:48 +0000593 if (!input) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000594 printf( "Couldn't open file '%s'\n", child->argv[1]);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000595 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000596 }
Erik Andersend75af992000-03-16 08:09:09 +0000597
Eric Andersen8ea28be2001-01-05 20:58:22 +0000598 fd=fileno(input);
599 mark_open(fd);
Erik Andersen161220c2000-03-16 08:12:48 +0000600 /* Now run the file */
601 status = busy_loop(input);
Matt Kraaidd450a02000-09-13 03:43:36 +0000602 fclose(input);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000603 mark_closed(fd);
Erik Andersen161220c2000-03-16 08:12:48 +0000604 return (status);
Erik Andersen3522eb12000-03-12 23:49:18 +0000605}
606
607/* built-in 'unset VAR' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000608static int builtin_unset(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000609{
Eric Andersen86349772000-12-18 20:25:50 +0000610 if (child->argv[1] == NULL) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000611 printf( "unset: parameter required.\n");
Matt Kraai3e856ce2000-12-01 02:55:13 +0000612 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000613 }
Eric Andersen86349772000-12-18 20:25:50 +0000614 unsetenv(child->argv[1]);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000615 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000616}
617
Eric Andersen70da6a62000-12-20 22:59:16 +0000618#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
Eric Andersen86349772000-12-18 20:25:50 +0000619/* currently used by if/then/else.
Eric Andersene9f07fb2000-12-21 18:31:36 +0000620 *
621 * Reparsing the command line for this purpose is gross,
622 * incorrect, and fundamentally unfixable; in particular,
623 * think about what happens with command substitution.
624 * We really need to pull out the run, wait, return status
625 * functionality out of busy_loop so we can child->argv++
626 * and use that, without going back through parse_command.
Eric Andersen86349772000-12-18 20:25:50 +0000627 */
628static int run_command_predicate(char *cmd)
629{
630 int n=strlen(cmd);
631 local_pending_command = xmalloc(n+1);
632 strncpy(local_pending_command, cmd, n);
633 local_pending_command[n]='\0';
634 return( busy_loop(NULL));
635}
Eric Andersen70da6a62000-12-20 22:59:16 +0000636#endif
Eric Andersen86349772000-12-18 20:25:50 +0000637
Eric Andersen8ea28be2001-01-05 20:58:22 +0000638static void mark_open(int fd)
639{
640 struct close_me *new = xmalloc(sizeof(struct close_me));
641 new->fd = fd;
642 new->next = close_me_head;
643 close_me_head = new;
644}
645
646static void mark_closed(int fd)
647{
648 struct close_me *tmp;
649 if (close_me_head == NULL || close_me_head->fd != fd)
650 error_msg_and_die("corrupt close_me");
651 tmp = close_me_head;
652 close_me_head = close_me_head->next;
653 free(tmp);
654}
655
656static void close_all()
657{
Eric Andersen702ec592001-03-06 22:17:29 +0000658 struct close_me *c, *tmp;
659 for (c=close_me_head; c; c=tmp) {
660 close(c->fd);
661 tmp=c->next;
662 free(c);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000663 }
664 close_me_head = NULL;
665}
666
667
Erik Andersen3522eb12000-03-12 23:49:18 +0000668/* free up all memory from a job */
Eric Andersen86349772000-12-18 20:25:50 +0000669static void free_job(struct job *cmd)
Erik Andersen3522eb12000-03-12 23:49:18 +0000670{
Erik Andersen161220c2000-03-16 08:12:48 +0000671 int i;
Mark Whitley44a99142001-03-14 17:26:37 +0000672 struct jobset *keep;
Erik Andersen3522eb12000-03-12 23:49:18 +0000673
Eric Andersen86349772000-12-18 20:25:50 +0000674 for (i = 0; i < cmd->num_progs; i++) {
Erik Andersen161220c2000-03-16 08:12:48 +0000675 free(cmd->progs[i].argv);
Eric Andersen86349772000-12-18 20:25:50 +0000676 if (cmd->progs[i].redirects)
677 free(cmd->progs[i].redirects);
Erik Andersen161220c2000-03-16 08:12:48 +0000678 }
Mark Whitley44a99142001-03-14 17:26:37 +0000679 if (cmd->progs)
680 free(cmd->progs);
Erik Andersen161220c2000-03-16 08:12:48 +0000681 if (cmd->text)
682 free(cmd->text);
Mark Whitley44a99142001-03-14 17:26:37 +0000683 if (cmd->cmdbuf)
684 free(cmd->cmdbuf);
685 keep = cmd->job_list;
Eric Andersenec10b9d2000-07-14 01:13:11 +0000686 memset(cmd, 0, sizeof(struct job));
Mark Whitley44a99142001-03-14 17:26:37 +0000687 cmd->job_list = keep;
Erik Andersen3522eb12000-03-12 23:49:18 +0000688}
689
Eric Andersen86349772000-12-18 20:25:50 +0000690/* remove a job from the job_list */
691static void remove_job(struct jobset *job_list, struct job *job)
Erik Andersen3522eb12000-03-12 23:49:18 +0000692{
Eric Andersen86349772000-12-18 20:25:50 +0000693 struct job *prevjob;
Erik Andersen3522eb12000-03-12 23:49:18 +0000694
Eric Andersen86349772000-12-18 20:25:50 +0000695 free_job(job);
696 if (job == job_list->head) {
697 job_list->head = job->next;
Erik Andersen161220c2000-03-16 08:12:48 +0000698 } else {
Eric Andersen86349772000-12-18 20:25:50 +0000699 prevjob = job_list->head;
700 while (prevjob->next != job)
701 prevjob = prevjob->next;
702 prevjob->next = job->next;
Erik Andersen161220c2000-03-16 08:12:48 +0000703 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000704
Erik Andersen161220c2000-03-16 08:12:48 +0000705 free(job);
Erik Andersen3522eb12000-03-12 23:49:18 +0000706}
707
708/* Checks to see if any background processes have exited -- if they
709 have, figure out why and see if a job has completed */
Eric Andersen86349772000-12-18 20:25:50 +0000710static void checkjobs(struct jobset *job_list)
Erik Andersen3522eb12000-03-12 23:49:18 +0000711{
Erik Andersen161220c2000-03-16 08:12:48 +0000712 struct job *job;
713 pid_t childpid;
714 int status;
Eric Andersen86349772000-12-18 20:25:50 +0000715 int prognum = 0;
Erik Andersend75af992000-03-16 08:09:09 +0000716
Erik Andersen161220c2000-03-16 08:12:48 +0000717 while ((childpid = waitpid(-1, &status, WNOHANG | WUNTRACED)) > 0) {
Eric Andersen86349772000-12-18 20:25:50 +0000718 for (job = job_list->head; job; job = job->next) {
719 prognum = 0;
720 while (prognum < job->num_progs &&
721 job->progs[prognum].pid != childpid) prognum++;
722 if (prognum < job->num_progs)
Erik Andersen161220c2000-03-16 08:12:48 +0000723 break;
724 }
725
Eric Andersena1d187a2000-07-17 19:14:41 +0000726 /* This happens on backticked commands */
727 if(job==NULL)
728 return;
729
Erik Andersen161220c2000-03-16 08:12:48 +0000730 if (WIFEXITED(status) || WIFSIGNALED(status)) {
731 /* child exited */
Eric Andersen86349772000-12-18 20:25:50 +0000732 job->running_progs--;
733 job->progs[prognum].pid = 0;
Erik Andersen161220c2000-03-16 08:12:48 +0000734
Eric Andersen86349772000-12-18 20:25:50 +0000735 if (!job->running_progs) {
736 printf(JOB_STATUS_FORMAT, job->jobid, "Done", job->text);
737 remove_job(job_list, job);
Erik Andersen161220c2000-03-16 08:12:48 +0000738 }
739 } else {
740 /* child stopped */
Eric Andersen86349772000-12-18 20:25:50 +0000741 job->stopped_progs++;
742 job->progs[prognum].is_stopped = 1;
Erik Andersen161220c2000-03-16 08:12:48 +0000743
Eric Andersen86349772000-12-18 20:25:50 +0000744 if (job->stopped_progs == job->num_progs) {
745 printf(JOB_STATUS_FORMAT, job->jobid, "Stopped",
Erik Andersen161220c2000-03-16 08:12:48 +0000746 job->text);
747 }
748 }
Erik Andersend75af992000-03-16 08:09:09 +0000749 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000750
Erik Andersen161220c2000-03-16 08:12:48 +0000751 if (childpid == -1 && errno != ECHILD)
Matt Kraaia9819b22000-12-22 01:48:07 +0000752 perror_msg("waitpid");
Erik Andersen3522eb12000-03-12 23:49:18 +0000753}
754
Eric Andersene9f07fb2000-12-21 18:31:36 +0000755/* squirrel != NULL means we squirrel away copies of stdin, stdout,
756 * and stderr if they are redirected. */
757static int setup_redirects(struct child_prog *prog, int squirrel[])
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000758{
759 int i;
760 int openfd;
761 int mode = O_RDONLY;
Eric Andersen86349772000-12-18 20:25:50 +0000762 struct redir_struct *redir = prog->redirects;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000763
Eric Andersen86349772000-12-18 20:25:50 +0000764 for (i = 0; i < prog->num_redirects; i++, redir++) {
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000765 switch (redir->type) {
766 case REDIRECT_INPUT:
767 mode = O_RDONLY;
768 break;
769 case REDIRECT_OVERWRITE:
Eric Andersen46f0beb2000-11-14 21:59:22 +0000770 mode = O_WRONLY | O_CREAT | O_TRUNC;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000771 break;
772 case REDIRECT_APPEND:
Eric Andersen46f0beb2000-11-14 21:59:22 +0000773 mode = O_WRONLY | O_CREAT | O_APPEND;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000774 break;
775 }
776
777 openfd = open(redir->filename, mode, 0666);
778 if (openfd < 0) {
779 /* this could get lost if stderr has been redirected, but
780 bash and ash both lose it as well (though zsh doesn't!) */
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000781 perror_msg("error opening %s", redir->filename);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000782 return 1;
783 }
784
785 if (openfd != redir->fd) {
Eric Andersene9f07fb2000-12-21 18:31:36 +0000786 if (squirrel && redir->fd < 3) {
787 squirrel[redir->fd] = dup(redir->fd);
788 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000789 dup2(openfd, redir->fd);
790 close(openfd);
791 }
792 }
793
794 return 0;
795}
796
Eric Andersene9f07fb2000-12-21 18:31:36 +0000797static void restore_redirects(int squirrel[])
798{
799 int i, fd;
800 for (i=0; i<3; i++) {
801 fd = squirrel[i];
802 if (fd != -1) {
803 /* No error checking. I sure wouldn't know what
804 * to do with an error if I found one! */
805 dup2(fd, i);
806 close(fd);
807 }
808 }
809}
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000810
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000811static inline void cmdedit_set_initial_prompt(void)
Eric Andersen22332fd2001-01-30 23:40:39 +0000812{
Mark Whitleyf5949862001-03-14 00:29:14 +0000813#ifdef BB_FEATURE_SH_SIMPLE_PROMPT
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000814 PS1 = NULL;
815 PS2 = "> ";
Eric Andersen22332fd2001-01-30 23:40:39 +0000816#else
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000817 PS1 = getenv("PS1");
818 if(PS1==0) {
819 PS1 = "\\w \\$ ";
Eric Andersen09acc062001-01-04 11:10:38 +0000820 }
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000821 PS2 = getenv("PS2");
822 if(PS2==0)
823 PS2 = "> ";
824#endif
Eric Andersen09acc062001-01-04 11:10:38 +0000825}
826
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000827static inline void setup_prompt_string(char **prompt_str)
828{
Mark Whitleyf5949862001-03-14 00:29:14 +0000829#ifdef BB_FEATURE_SH_SIMPLE_PROMPT
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000830 /* Set up the prompt */
831 if (shell_context == 0) {
832 if (PS1)
833 free(PS1);
834 PS1=xmalloc(strlen(cwd)+4);
835 sprintf(PS1, "%s %s", cwd, ( geteuid() != 0 ) ? "$ ":"# ");
836 *prompt_str = PS1;
837 } else {
838 *prompt_str = PS2;
839 }
840#else
841 *prompt_str = (shell_context==0)? PS1 : PS2;
842#endif
843}
Eric Andersen22332fd2001-01-30 23:40:39 +0000844
Eric Andersen09acc062001-01-04 11:10:38 +0000845static int get_command(FILE * source, char *command)
846{
847 char *prompt_str;
Eric Andersen8ea28be2001-01-05 20:58:22 +0000848
Eric Andersen1c314ad2000-06-28 16:56:25 +0000849 if (source == NULL) {
850 if (local_pending_command) {
851 /* a command specified (-c option): return it & mark it done */
852 strcpy(command, local_pending_command);
853 free(local_pending_command);
854 local_pending_command = NULL;
855 return 0;
856 }
857 return 1;
858 }
859
Erik Andersen161220c2000-03-16 08:12:48 +0000860 if (source == stdin) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000861 setup_prompt_string(&prompt_str);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000862
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000863#ifdef BB_FEATURE_COMMAND_EDITING
Eric Andersen501c88b2000-07-28 15:14:45 +0000864 /*
865 ** enable command line editing only while a command line
866 ** is actually being read; otherwise, we'll end up bequeathing
867 ** atexit() handlers and other unwanted stuff to our
868 ** child processes (rob@sysgo.de)
869 */
Eric Andersen86349772000-12-18 20:25:50 +0000870 cmdedit_read_input(prompt_str, command);
Eric Andersen501c88b2000-07-28 15:14:45 +0000871 cmdedit_terminate();
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);
Erik Andersend75af992000-03-16 08:09:09 +0000875#endif
Erik Andersen161220c2000-03-16 08:12:48 +0000876 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000877
Erik Andersen161220c2000-03-16 08:12:48 +0000878 if (!fgets(command, BUFSIZ - 2, source)) {
879 if (source == stdin)
880 printf("\n");
881 return 1;
882 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000883
Erik Andersen161220c2000-03-16 08:12:48 +0000884 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000885}
886
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000887#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000888static char* itoa(register int i)
889{
Eric Andersenb558e762000-11-30 22:43:16 +0000890 static char a[7]; /* Max 7 ints */
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000891 register char *b = a + sizeof(a) - 1;
892 int sign = (i < 0);
893
894 if (sign)
895 i = -i;
896 *b = 0;
897 do
898 {
899 *--b = '0' + (i % 10);
900 i /= 10;
901 }
902 while (i);
903 if (sign)
904 *--b = '-';
905 return b;
906}
Eric Andersenca604592001-03-08 17:17:13 +0000907#endif
908
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000909#if defined BB_FEATURE_SH_ENVIRONMENT && ! defined BB_FEATURE_SH_WORDEXP
910char * strsep_space( char *string, int * index)
911{
912 char *token, *begin;
913
914 begin = string;
915
916 /* Short circuit the trivial case */
917 if ( !string || ! string[*index])
918 return NULL;
919
920 /* Find the end of the token. */
921 while( string && string[*index] && !isspace(string[*index]) ) {
922 (*index)++;
923 }
924
925 /* Find the end of any whitespace trailing behind
926 * the token and let that be part of the token */
927 while( string && string[*index] && isspace(string[*index]) ) {
928 (*index)++;
929 }
930
931 if (! string && *index==0) {
932 /* Nothing useful was found */
933 return NULL;
934 }
935
Eric Andersence4a5862001-03-14 18:57:54 +0000936 token = xmalloc(*index+1);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000937 token[*index] = '\0';
938 strncpy(token, string, *index);
939
940 return token;
941}
942#endif
943
944
Eric Andersenca604592001-03-08 17:17:13 +0000945static int expand_arguments(char *command)
946{
947#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen13d1fa12001-03-08 23:59:45 +0000948 expand_t expand_result;
Eric Andersenca604592001-03-08 17:17:13 +0000949 char *src, *dst, *var;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000950 int index = 0;
Eric Andersenca604592001-03-08 17:17:13 +0000951 int i=0, length, total_length=0, retval;
Eric Andersen195743f2001-03-09 19:21:37 +0000952 const char *out_of_space = "out of space during expansion";
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000953#endif
954
Eric Andersenca604592001-03-08 17:17:13 +0000955 /* get rid of the terminating \n */
956 chomp(command);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000957
958 /* Fix up escape sequences to be the Real Thing(tm) */
959 while( command && command[index]) {
960 if (command[index] == '\\') {
961 char *tmp = command+index+1;
Eric Andersen34174472001-03-17 00:20:10 +0000962 command[index] = process_escape_sequence( &tmp );
963 memmove(command+index + 1, tmp, strlen(tmp)+1);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000964 }
965 index++;
966 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000967
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000968#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +0000969
Eric Andersen13d1fa12001-03-08 23:59:45 +0000970
Eric Andersen34174472001-03-17 00:20:10 +0000971#ifdef BB_FEATURE_SH_WORDEXP
Eric Andersenca604592001-03-08 17:17:13 +0000972 /* This first part uses wordexp() which is a wonderful C lib
973 * function which expands nearly everything. */
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000974 retval = wordexp (command, &expand_result, WRDE_SHOWERR);
Eric Andersenca604592001-03-08 17:17:13 +0000975 if (retval == WRDE_NOSPACE) {
976 /* Mem may have been allocated... */
Eric Andersen13d1fa12001-03-08 23:59:45 +0000977 wordfree (&expand_result);
Eric Andersen195743f2001-03-09 19:21:37 +0000978 error_msg(out_of_space);
Eric Andersenca604592001-03-08 17:17:13 +0000979 return FALSE;
980 }
981 if (retval < 0) {
982 /* Some other error. */
983 error_msg("syntax error");
984 return FALSE;
985 }
986
Eric Andersen1365bb72001-03-10 07:12:12 +0000987 if (expand_result.we_wordc > 0) {
988 /* Convert from char** (one word per string) to a simple char*,
989 * but don't overflow command which is BUFSIZ in length */
990 *command = '\0';
991 while (i < expand_result.we_wordc && total_length < BUFSIZ) {
992 length=strlen(expand_result.we_wordv[i])+1;
993 if (BUFSIZ-total_length-length <= 0) {
994 error_msg(out_of_space);
995 return FALSE;
996 }
997 strcat(command+total_length, expand_result.we_wordv[i++]);
998 strcat(command+total_length, " ");
999 total_length+=length;
Eric Andersenca604592001-03-08 17:17:13 +00001000 }
Eric Andersen1365bb72001-03-10 07:12:12 +00001001 wordfree (&expand_result);
Eric Andersenca604592001-03-08 17:17:13 +00001002 }
Eric Andersen13d1fa12001-03-08 23:59:45 +00001003#else
1004
Eric Andersen195743f2001-03-09 19:21:37 +00001005 /* Ok. They don't have a recent glibc and they don't have uClibc. Chances
1006 * are about 100% they don't have wordexp(). So instead the best we can do
1007 * is use glob and then fixup environment variables and such ourselves.
1008 * This is better then nothing, but certainly not perfect */
Eric Andersen13d1fa12001-03-08 23:59:45 +00001009
Eric Andersen195743f2001-03-09 19:21:37 +00001010 /* It turns out that glob is very stupid. We have to feed it one word at a
1011 * time since it can't cope with a full string. Here we convert command
1012 * (char*) into cmd (char**, one word per string) */
Eric Andersen13d1fa12001-03-08 23:59:45 +00001013 {
1014
Eric Andersen4e7244e2001-03-14 00:49:52 +00001015 int flags = GLOB_NOCHECK
1016#ifdef GLOB_BRACE
1017 | GLOB_BRACE
1018#endif
1019#ifdef GLOB_TILDE
1020 | GLOB_TILDE
1021#endif
1022 ;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001023 char *tmpcmd, *cmd, *cmd_copy;
Eric Andersen13d1fa12001-03-08 23:59:45 +00001024 /* We need a clean copy, so strsep can mess up the copy while
Eric Andersen195743f2001-03-09 19:21:37 +00001025 * we write stuff into the original (in a minute) */
Eric Andersen4987bbf2001-03-12 21:36:49 +00001026 cmd = cmd_copy = strdup(command);
Eric Andersen195743f2001-03-09 19:21:37 +00001027 *command = '\0';
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001028 for (index = 0, tmpcmd = cmd;
1029 (tmpcmd = strsep_space(cmd, &index)) != NULL; cmd += index, index=0) {
Eric Andersen13d1fa12001-03-08 23:59:45 +00001030 if (*tmpcmd == '\0')
1031 break;
1032 retval = glob(tmpcmd, flags, NULL, &expand_result);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001033 free(tmpcmd); /* Free mem allocated by strsep_space */
Eric Andersen13d1fa12001-03-08 23:59:45 +00001034 if (retval == GLOB_NOSPACE) {
1035 /* Mem may have been allocated... */
1036 globfree (&expand_result);
Eric Andersen195743f2001-03-09 19:21:37 +00001037 error_msg(out_of_space);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001038 return FALSE;
Eric Andersen195743f2001-03-09 19:21:37 +00001039 } else if (retval != 0) {
1040 /* Some other error. GLOB_NOMATCH shouldn't
1041 * happen because of the GLOB_NOCHECK flag in
1042 * the glob call. */
Eric Andersen13d1fa12001-03-08 23:59:45 +00001043 error_msg("syntax error");
1044 return FALSE;
Eric Andersen195743f2001-03-09 19:21:37 +00001045 } else {
Eric Andersen13d1fa12001-03-08 23:59:45 +00001046 /* Convert from char** (one word per string) to a simple char*,
1047 * but don't overflow command which is BUFSIZ in length */
Eric Andersen195743f2001-03-09 19:21:37 +00001048 for (i=0; i < expand_result.gl_pathc; i++) {
Eric Andersen1ef92682001-03-14 19:33:45 +00001049 length=strlen(expand_result.gl_pathv[i]);
Eric Andersen4aaefc22001-03-15 23:01:19 +00001050 if (total_length+length+1 >= BUFSIZ) {
Eric Andersen195743f2001-03-09 19:21:37 +00001051 error_msg(out_of_space);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001052 return FALSE;
1053 }
Eric Andersen4aaefc22001-03-15 23:01:19 +00001054 if (i>0) {
1055 strcat(command+total_length, " ");
1056 total_length+=1;
1057 }
Eric Andersen195743f2001-03-09 19:21:37 +00001058 strcat(command+total_length, expand_result.gl_pathv[i]);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001059 total_length+=length;
1060 }
Eric Andersen195743f2001-03-09 19:21:37 +00001061 globfree (&expand_result);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001062 }
1063 }
Eric Andersen4987bbf2001-03-12 21:36:49 +00001064 free(cmd_copy);
Eric Andersen195743f2001-03-09 19:21:37 +00001065 trim(command);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001066 }
Eric Andersenca604592001-03-08 17:17:13 +00001067
Eric Andersen13d1fa12001-03-08 23:59:45 +00001068#endif
Eric Andersen195743f2001-03-09 19:21:37 +00001069
Eric Andersenca604592001-03-08 17:17:13 +00001070 /* Now do the shell variable substitutions which
1071 * wordexp can't do for us, namely $? and $! */
1072 src = command;
Eric Andersencaeeb362001-02-20 06:38:44 +00001073 while((dst = strchr(src,'$')) != NULL){
Eric Andersen195743f2001-03-09 19:21:37 +00001074 var = NULL;
1075 switch(*(dst+1)) {
1076 case '?':
1077 var = itoa(last_return_code);
1078 break;
1079 case '!':
1080 if (last_bg_pid==-1)
1081 *(var)='\0';
1082 else
1083 var = itoa(last_bg_pid);
1084 break;
Eric Andersen32f8c172001-03-08 17:44:37 +00001085 /* Everything else like $$, $#, $[0-9], etc should all be
1086 * expanded by wordexp(), so we can in theory skip that stuff
1087 * here, but just to be on the safe side (i.e. since uClibc
1088 * wordexp doesn't do this stuff yet), lets leave it in for
1089 * now. */
Eric Andersen195743f2001-03-09 19:21:37 +00001090 case '$':
1091 var = itoa(getpid());
1092 break;
1093 case '#':
1094 var = itoa(argc-1);
1095 break;
1096 case '0':case '1':case '2':case '3':case '4':
1097 case '5':case '6':case '7':case '8':case '9':
1098 {
1099 int index=*(dst + 1)-48;
1100 if (index >= argc) {
1101 var='\0';
1102 } else {
1103 var = argv[index];
Eric Andersen32f8c172001-03-08 17:44:37 +00001104 }
Eric Andersen195743f2001-03-09 19:21:37 +00001105 }
1106 break;
Eric Andersen32f8c172001-03-08 17:44:37 +00001107
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001108 }
Eric Andersencaeeb362001-02-20 06:38:44 +00001109 if (var) {
Eric Andersen195743f2001-03-09 19:21:37 +00001110 /* a single character construction was found, and
1111 * already handled in the case statement */
1112 src=dst+2;
Eric Andersen32f8c172001-03-08 17:44:37 +00001113 } else {
Eric Andersen195743f2001-03-09 19:21:37 +00001114 /* Looks like an environment variable */
1115 char delim_hold;
Eric Andersen34174472001-03-17 00:20:10 +00001116 int num_skip_chars=0;
Eric Andersen74e056b2001-03-09 20:34:46 +00001117 int dstlen = strlen(dst);
1118 /* Is this a ${foo} type variable? */
1119 if (dstlen >=2 && *(dst+1) == '{') {
1120 src=strchr(dst+1, '}');
Eric Andersen34174472001-03-17 00:20:10 +00001121 num_skip_chars=1;
Eric Andersen74e056b2001-03-09 20:34:46 +00001122 } else {
Eric Andersen34174472001-03-17 00:20:10 +00001123 src=dst+1;
1124 while(isalnum(*src) || *src=='_') src++;
Eric Andersen74e056b2001-03-09 20:34:46 +00001125 }
Eric Andersen195743f2001-03-09 19:21:37 +00001126 if (src == NULL) {
Eric Andersen74e056b2001-03-09 20:34:46 +00001127 src = dst+dstlen;
Eric Andersen32f8c172001-03-08 17:44:37 +00001128 }
Eric Andersen195743f2001-03-09 19:21:37 +00001129 delim_hold=*src;
1130 *src='\0'; /* temporary */
Eric Andersen34174472001-03-17 00:20:10 +00001131 var = getenv(dst + 1 + num_skip_chars);
Eric Andersen195743f2001-03-09 19:21:37 +00001132 *src=delim_hold;
Eric Andersen34174472001-03-17 00:20:10 +00001133 src += num_skip_chars;
Eric Andersen195743f2001-03-09 19:21:37 +00001134 }
1135 if (var == NULL) {
1136 /* Seems we got an un-expandable variable. So delete it. */
1137 var = "";
1138 }
1139 {
1140 int subst_len = strlen(var);
1141 int trail_len = strlen(src);
1142 if (dst+subst_len+trail_len >= command+BUFSIZ) {
1143 error_msg(out_of_space);
1144 return FALSE;
1145 }
1146 /* Move stuff to the end of the string to accommodate
1147 * filling the created gap with the new stuff */
Eric Andersen34174472001-03-17 00:20:10 +00001148 memmove(dst+subst_len, src, trail_len+1);
Eric Andersen195743f2001-03-09 19:21:37 +00001149 /* Now copy in the new stuff */
1150 memcpy(dst, var, subst_len);
1151 src = dst+subst_len;
Eric Andersencaeeb362001-02-20 06:38:44 +00001152 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001153 }
Eric Andersenca604592001-03-08 17:17:13 +00001154
1155#endif
1156 return TRUE;
Erik Andersen3522eb12000-03-12 23:49:18 +00001157}
1158
Eric Andersen86349772000-12-18 20:25:50 +00001159/* Return cmd->num_progs as 0 if no command is present (e.g. an empty
1160 line). If a valid command is found, command_ptr is set to point to
Erik Andersen3522eb12000-03-12 23:49:18 +00001161 the beginning of the next command (if the original command had more
1162 then one job associated with it) or NULL if no more commands are
1163 present. */
Eric Andersen86349772000-12-18 20:25:50 +00001164static int parse_command(char **command_ptr, struct job *job, int *inbg)
Erik Andersen3522eb12000-03-12 23:49:18 +00001165{
Erik Andersen161220c2000-03-16 08:12:48 +00001166 char *command;
Eric Andersen86349772000-12-18 20:25:50 +00001167 char *return_command = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001168 char *src, *buf, *chptr;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001169 int argc_l = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001170 int done = 0;
Eric Andersen86349772000-12-18 20:25:50 +00001171 int argv_alloced;
Erik Andersen161220c2000-03-16 08:12:48 +00001172 int i;
1173 char quote = '\0';
1174 int count;
Eric Andersen86349772000-12-18 20:25:50 +00001175 struct child_prog *prog;
Erik Andersen3522eb12000-03-12 23:49:18 +00001176
Erik Andersen161220c2000-03-16 08:12:48 +00001177 /* skip leading white space */
Eric Andersen86349772000-12-18 20:25:50 +00001178 while (**command_ptr && isspace(**command_ptr))
1179 (*command_ptr)++;
Erik Andersen3522eb12000-03-12 23:49:18 +00001180
Erik Andersen161220c2000-03-16 08:12:48 +00001181 /* this handles empty lines or leading '#' characters */
Eric Andersen86349772000-12-18 20:25:50 +00001182 if (!**command_ptr || (**command_ptr == '#')) {
1183 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001184 return 0;
1185 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001186
Eric Andersen86349772000-12-18 20:25:50 +00001187 *inbg = 0;
1188 job->num_progs = 1;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001189 job->progs = xmalloc(sizeof(*job->progs));
Erik Andersen3522eb12000-03-12 23:49:18 +00001190
Erik Andersen161220c2000-03-16 08:12:48 +00001191 /* We set the argv elements to point inside of this string. The
Eric Andersen86349772000-12-18 20:25:50 +00001192 memory is freed by free_job(). Allocate twice the original
Eric Andersenb54833c2000-07-03 23:56:26 +00001193 length in case we need to quote every single character.
Erik Andersen3522eb12000-03-12 23:49:18 +00001194
Erik Andersen161220c2000-03-16 08:12:48 +00001195 Getting clean memory relieves us of the task of NULL
1196 terminating things and makes the rest of this look a bit
1197 cleaner (though it is, admittedly, a tad less efficient) */
Eric Andersen86349772000-12-18 20:25:50 +00001198 job->cmdbuf = command = xcalloc(2*strlen(*command_ptr) + 1, sizeof(char));
Erik Andersen161220c2000-03-16 08:12:48 +00001199 job->text = NULL;
Erik Andersen3522eb12000-03-12 23:49:18 +00001200
Erik Andersen161220c2000-03-16 08:12:48 +00001201 prog = job->progs;
Eric Andersen86349772000-12-18 20:25:50 +00001202 prog->num_redirects = 0;
1203 prog->redirects = NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001204 prog->is_stopped = 0;
1205 prog->family = job;
Erik Andersen3522eb12000-03-12 23:49:18 +00001206
Eric Andersen86349772000-12-18 20:25:50 +00001207 argv_alloced = 5;
1208 prog->argv = xmalloc(sizeof(*prog->argv) * argv_alloced);
1209 prog->argv[0] = job->cmdbuf;
Erik Andersen3522eb12000-03-12 23:49:18 +00001210
Erik Andersen161220c2000-03-16 08:12:48 +00001211 buf = command;
Eric Andersen86349772000-12-18 20:25:50 +00001212 src = *command_ptr;
Erik Andersen161220c2000-03-16 08:12:48 +00001213 while (*src && !done) {
1214 if (quote == *src) {
1215 quote = '\0';
1216 } else if (quote) {
1217 if (*src == '\\') {
1218 src++;
1219 if (!*src) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001220 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001221 free_job(job);
Erik Andersen161220c2000-03-16 08:12:48 +00001222 return 1;
1223 }
1224
1225 /* in shell, "\'" should yield \' */
Eric Andersenb2356f62000-12-11 19:14:40 +00001226 if (*src != quote) {
Erik Andersen161220c2000-03-16 08:12:48 +00001227 *buf++ = '\\';
Eric Andersenb2356f62000-12-11 19:14:40 +00001228 *buf++ = '\\';
1229 }
Erik Andersen161220c2000-03-16 08:12:48 +00001230 } else if (*src == '*' || *src == '?' || *src == '[' ||
1231 *src == ']') *buf++ = '\\';
1232 *buf++ = *src;
1233 } else if (isspace(*src)) {
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001234 if (*prog->argv[argc_l]) {
1235 buf++, argc_l++;
Erik Andersen161220c2000-03-16 08:12:48 +00001236 /* +1 here leaves room for the NULL which ends argv */
Eric Andersen86349772000-12-18 20:25:50 +00001237 if ((argc_l + 1) == argv_alloced) {
1238 argv_alloced += 5;
Matt Kraaib8907522000-09-13 02:08:21 +00001239 prog->argv = xrealloc(prog->argv,
1240 sizeof(*prog->argv) *
Eric Andersen86349772000-12-18 20:25:50 +00001241 argv_alloced);
Erik Andersen161220c2000-03-16 08:12:48 +00001242 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001243 prog->argv[argc_l] = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001244 }
1245 } else
1246 switch (*src) {
1247 case '"':
1248 case '\'':
1249 quote = *src;
1250 break;
1251
1252 case '#': /* comment */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001253 if (*(src-1)== '$')
1254 *buf++ = *src;
1255 else
1256 done = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001257 break;
1258
Eric Andersen86349772000-12-18 20:25:50 +00001259 case '>': /* redirects */
Erik Andersen161220c2000-03-16 08:12:48 +00001260 case '<':
Eric Andersen86349772000-12-18 20:25:50 +00001261 i = prog->num_redirects++;
1262 prog->redirects = xrealloc(prog->redirects,
1263 sizeof(*prog->redirects) *
Matt Kraaib8907522000-09-13 02:08:21 +00001264 (i + 1));
Erik Andersen161220c2000-03-16 08:12:48 +00001265
Eric Andersen86349772000-12-18 20:25:50 +00001266 prog->redirects[i].fd = -1;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001267 if (buf != prog->argv[argc_l]) {
Erik Andersen161220c2000-03-16 08:12:48 +00001268 /* the stuff before this character may be the file number
1269 being redirected */
Eric Andersen86349772000-12-18 20:25:50 +00001270 prog->redirects[i].fd =
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001271 strtol(prog->argv[argc_l], &chptr, 10);
Erik Andersen161220c2000-03-16 08:12:48 +00001272
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001273 if (*chptr && *prog->argv[argc_l]) {
1274 buf++, argc_l++;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001275 prog->argv[argc_l] = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001276 }
1277 }
1278
Eric Andersen86349772000-12-18 20:25:50 +00001279 if (prog->redirects[i].fd == -1) {
Erik Andersen161220c2000-03-16 08:12:48 +00001280 if (*src == '>')
Eric Andersen86349772000-12-18 20:25:50 +00001281 prog->redirects[i].fd = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001282 else
Eric Andersen86349772000-12-18 20:25:50 +00001283 prog->redirects[i].fd = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001284 }
1285
1286 if (*src++ == '>') {
1287 if (*src == '>')
Eric Andersen86349772000-12-18 20:25:50 +00001288 prog->redirects[i].type =
Erik Andersen161220c2000-03-16 08:12:48 +00001289 REDIRECT_APPEND, src++;
1290 else
Eric Andersen86349772000-12-18 20:25:50 +00001291 prog->redirects[i].type = REDIRECT_OVERWRITE;
Erik Andersen161220c2000-03-16 08:12:48 +00001292 } else {
Eric Andersen86349772000-12-18 20:25:50 +00001293 prog->redirects[i].type = REDIRECT_INPUT;
Erik Andersen161220c2000-03-16 08:12:48 +00001294 }
1295
1296 /* This isn't POSIX sh compliant. Oh well. */
1297 chptr = src;
1298 while (isspace(*chptr))
1299 chptr++;
1300
1301 if (!*chptr) {
Mark Whitley44a99142001-03-14 17:26:37 +00001302 error_msg("file name expected after %c", *(src-1));
Eric Andersen86349772000-12-18 20:25:50 +00001303 free_job(job);
1304 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001305 return 1;
1306 }
1307
Eric Andersen86349772000-12-18 20:25:50 +00001308 prog->redirects[i].filename = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001309 while (*chptr && !isspace(*chptr))
1310 *buf++ = *chptr++;
1311
1312 src = chptr - 1; /* we src++ later */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001313 prog->argv[argc_l] = ++buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001314 break;
1315
1316 case '|': /* pipe */
1317 /* finish this command */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001318 if (*prog->argv[argc_l])
1319 argc_l++;
1320 if (!argc_l) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001321 error_msg("empty command in pipe");
Eric Andersen86349772000-12-18 20:25:50 +00001322 free_job(job);
1323 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001324 return 1;
1325 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001326 prog->argv[argc_l] = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001327
1328 /* and start the next */
Eric Andersen86349772000-12-18 20:25:50 +00001329 job->num_progs++;
Matt Kraaib8907522000-09-13 02:08:21 +00001330 job->progs = xrealloc(job->progs,
Eric Andersen86349772000-12-18 20:25:50 +00001331 sizeof(*job->progs) * job->num_progs);
1332 prog = job->progs + (job->num_progs - 1);
1333 prog->num_redirects = 0;
1334 prog->redirects = NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001335 prog->is_stopped = 0;
1336 prog->family = job;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001337 argc_l = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001338
Eric Andersen86349772000-12-18 20:25:50 +00001339 argv_alloced = 5;
1340 prog->argv = xmalloc(sizeof(*prog->argv) * argv_alloced);
Erik Andersen161220c2000-03-16 08:12:48 +00001341 prog->argv[0] = ++buf;
1342
1343 src++;
1344 while (*src && isspace(*src))
1345 src++;
1346
1347 if (!*src) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001348 error_msg("empty command in pipe");
Eric Andersen86349772000-12-18 20:25:50 +00001349 free_job(job);
1350 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001351 return 1;
1352 }
1353 src--; /* we'll ++ it at the end of the loop */
1354
1355 break;
1356
1357 case '&': /* background */
Eric Andersen86349772000-12-18 20:25:50 +00001358 *inbg = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001359 case ';': /* multiple commands */
1360 done = 1;
Eric Andersen86349772000-12-18 20:25:50 +00001361 return_command = *command_ptr + (src - *command_ptr) + 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001362 break;
1363
Eric Andersena1d187a2000-07-17 19:14:41 +00001364#ifdef BB_FEATURE_SH_BACKTICKS
Eric Andersenec10b9d2000-07-14 01:13:11 +00001365 case '`':
1366 /* Exec a backtick-ed command */
Eric Andersen8ea28be2001-01-05 20:58:22 +00001367 /* Besides any previous brokenness, I have not
1368 * updated backtick handling for close_me support.
1369 * I don't know if it needs it or not. -- LRD */
Eric Andersenec10b9d2000-07-14 01:13:11 +00001370 {
Eric Andersena1d187a2000-07-17 19:14:41 +00001371 char* charptr1=NULL, *charptr2;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001372 char* ptr=NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001373 struct job *newjob;
1374 struct jobset njob_list = { NULL, NULL };
Eric Andersena1d187a2000-07-17 19:14:41 +00001375 int pipefd[2];
1376 int size;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001377
1378 ptr=strchr(++src, '`');
1379 if (ptr==NULL) {
1380 fprintf(stderr, "Unmatched '`' in command\n");
Eric Andersen86349772000-12-18 20:25:50 +00001381 free_job(job);
Eric Andersenec10b9d2000-07-14 01:13:11 +00001382 return 1;
1383 }
1384
Eric Andersena1d187a2000-07-17 19:14:41 +00001385 /* Make some space to hold just the backticked command */
Eric Andersen6efc48c2000-07-18 08:16:39 +00001386 charptr1 = charptr2 = xmalloc(1+ptr-src);
Matt Kraai0b2da462000-09-19 06:46:44 +00001387 memcpy(charptr1, src, ptr-src);
1388 charptr1[ptr-src] = '\0';
Eric Andersen86349772000-12-18 20:25:50 +00001389 newjob = xmalloc(sizeof(struct job));
1390 newjob->job_list = &njob_list;
Eric Andersena1d187a2000-07-17 19:14:41 +00001391 /* Now parse and run the backticked command */
Eric Andersen86349772000-12-18 20:25:50 +00001392 if (!parse_command(&charptr1, newjob, inbg)
1393 && newjob->num_progs) {
Eric Andersena1d187a2000-07-17 19:14:41 +00001394 pipe(pipefd);
Eric Andersen86349772000-12-18 20:25:50 +00001395 run_command(newjob, 0, pipefd);
Eric Andersenec10b9d2000-07-14 01:13:11 +00001396 }
Eric Andersen86349772000-12-18 20:25:50 +00001397 checkjobs(job->job_list);
1398 free_job(newjob); /* doesn't actually free newjob,
1399 looks like a memory leak */
Eric Andersen6efc48c2000-07-18 08:16:39 +00001400 free(charptr2);
1401
1402 /* Make a copy of any stuff left over in the command
1403 * line after the second backtick */
1404 charptr2 = xmalloc(strlen(ptr)+1);
1405 memcpy(charptr2, ptr+1, strlen(ptr));
1406
Eric Andersenec10b9d2000-07-14 01:13:11 +00001407
Eric Andersena1d187a2000-07-17 19:14:41 +00001408 /* Copy the output from the backtick-ed command into the
1409 * command line, making extra room as needed */
1410 --src;
1411 charptr1 = xmalloc(BUFSIZ);
Mark Whitleyf57c9442000-12-07 19:56:48 +00001412 while ( (size=full_read(pipefd[0], charptr1, BUFSIZ-1)) >0) {
Eric Andersen86349772000-12-18 20:25:50 +00001413 int newsize=src - *command_ptr + size + 1 + strlen(charptr2);
1414 if (newsize > BUFSIZ) {
1415 *command_ptr=xrealloc(*command_ptr, newsize);
Eric Andersena1d187a2000-07-17 19:14:41 +00001416 }
1417 memcpy(src, charptr1, size);
1418 src+=size;
1419 }
1420 free(charptr1);
1421 close(pipefd[0]);
1422 if (*(src-1)=='\n')
1423 --src;
1424
Eric Andersen86349772000-12-18 20:25:50 +00001425 /* Now paste into the *command_ptr all the stuff
Eric Andersena1d187a2000-07-17 19:14:41 +00001426 * leftover after the second backtick */
Matt Kraaicbbe4d62000-09-14 00:26:50 +00001427 memcpy(src, charptr2, strlen(charptr2)+1);
Eric Andersena1d187a2000-07-17 19:14:41 +00001428 free(charptr2);
1429
Eric Andersen86349772000-12-18 20:25:50 +00001430 /* Now recursively call parse_command to deal with the new
Eric Andersena1d187a2000-07-17 19:14:41 +00001431 * and improved version of the command line with the backtick
1432 * results expanded in place... */
Eric Andersen86349772000-12-18 20:25:50 +00001433 {
1434 struct jobset *jl=job->job_list;
1435 free_job(job);
1436 job->job_list = jl;
1437 }
1438 return(parse_command(command_ptr, job, inbg));
Eric Andersenec10b9d2000-07-14 01:13:11 +00001439 }
1440 break;
Eric Andersena1d187a2000-07-17 19:14:41 +00001441#endif // BB_FEATURE_SH_BACKTICKS
Matt Kraai131241f2000-09-14 00:43:20 +00001442
1443 case '\\':
1444 src++;
1445 if (!*src) {
Eric Andersen86349772000-12-18 20:25:50 +00001446/* This is currently a little broken... */
1447#ifdef HANDLE_CONTINUATION_CHARS
1448 /* They fed us a continuation char, so continue reading stuff
1449 * on the next line, then tack that onto the end of the current
1450 * command */
1451 char *command;
1452 int newsize;
1453 printf("erik: found a continue char at EOL...\n");
1454 command = (char *) xcalloc(BUFSIZ, sizeof(char));
1455 if (get_command(input, command)) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001456 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001457 free(command);
1458 free_job(job);
1459 return 1;
1460 }
1461 newsize = strlen(*command_ptr) + strlen(command) + 2;
1462 if (newsize > BUFSIZ) {
1463 printf("erik: doing realloc\n");
1464 *command_ptr=xrealloc(*command_ptr, newsize);
1465 }
1466 printf("erik: A: *command_ptr='%s'\n", *command_ptr);
1467 memcpy(--src, command, strlen(command));
1468 printf("erik: B: *command_ptr='%s'\n", *command_ptr);
1469 free(command);
1470 break;
1471#else
Matt Kraaidd19c692001-01-31 19:00:21 +00001472 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001473 free_job(job);
Matt Kraai131241f2000-09-14 00:43:20 +00001474 return 1;
Eric Andersen86349772000-12-18 20:25:50 +00001475#endif
Matt Kraai131241f2000-09-14 00:43:20 +00001476 }
1477 if (*src == '*' || *src == '[' || *src == ']'
1478 || *src == '?') *buf++ = '\\';
1479 /* fallthrough */
Erik Andersen161220c2000-03-16 08:12:48 +00001480 default:
1481 *buf++ = *src;
1482 }
1483
Erik Andersend75af992000-03-16 08:09:09 +00001484 src++;
Erik Andersen161220c2000-03-16 08:12:48 +00001485 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001486
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001487 if (*prog->argv[argc_l]) {
1488 argc_l++;
Erik Andersen161220c2000-03-16 08:12:48 +00001489 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001490 if (!argc_l) {
Eric Andersen86349772000-12-18 20:25:50 +00001491 free_job(job);
Erik Andersen161220c2000-03-16 08:12:48 +00001492 return 0;
1493 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001494 prog->argv[argc_l] = NULL;
Erik Andersen3522eb12000-03-12 23:49:18 +00001495
Eric Andersen86349772000-12-18 20:25:50 +00001496 if (!return_command) {
1497 job->text = xmalloc(strlen(*command_ptr) + 1);
1498 strcpy(job->text, *command_ptr);
Erik Andersen161220c2000-03-16 08:12:48 +00001499 } else {
1500 /* This leaves any trailing spaces, which is a bit sloppy */
Eric Andersen86349772000-12-18 20:25:50 +00001501 count = return_command - *command_ptr;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001502 job->text = xmalloc(count + 1);
Eric Andersen86349772000-12-18 20:25:50 +00001503 strncpy(job->text, *command_ptr, count);
Erik Andersen161220c2000-03-16 08:12:48 +00001504 job->text[count] = '\0';
1505 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001506
Eric Andersen86349772000-12-18 20:25:50 +00001507 *command_ptr = return_command;
Eric Andersen46f0beb2000-11-14 21:59:22 +00001508
Erik Andersend75af992000-03-16 08:09:09 +00001509 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001510}
1511
Eric Andersen86349772000-12-18 20:25:50 +00001512/* Run the child_prog, no matter what kind of command it uses.
1513 */
1514static int pseudo_exec(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +00001515{
Eric Andersen86349772000-12-18 20:25:50 +00001516 struct built_in_command *x;
Eric Andersenb54833c2000-07-03 23:56:26 +00001517#ifdef BB_FEATURE_SH_STANDALONE_SHELL
Eric Andersenaf4ac772001-02-01 22:43:49 +00001518 char *name;
Erik Andersenbcd61772000-05-13 06:33:19 +00001519#endif
Erik Andersen3522eb12000-03-12 23:49:18 +00001520
Eric Andersene9f07fb2000-12-21 18:31:36 +00001521 /* Check if the command matches any of the non-forking builtins.
1522 * Depending on context, this might be redundant. But it's
1523 * easier to waste a few CPU cycles than it is to figure out
1524 * if this is one of those cases.
Eric Andersen86349772000-12-18 20:25:50 +00001525 */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001526 for (x = bltins; x->cmd; x++) {
1527 if (strcmp(child->argv[0], x->cmd) == 0 ) {
1528 exit(x->function(child));
1529 }
1530 }
1531
1532 /* Check if the command matches any of the forking builtins. */
Eric Andersen86349772000-12-18 20:25:50 +00001533 for (x = bltins_forking; x->cmd; x++) {
1534 if (strcmp(child->argv[0], x->cmd) == 0) {
1535 applet_name=x->cmd;
1536 exit (x->function(child));
1537 }
1538 }
1539#ifdef BB_FEATURE_SH_STANDALONE_SHELL
1540 /* Check if the command matches any busybox internal
1541 * commands ("applets") here. Following discussions from
1542 * November 2000 on busybox@opensource.lineo.com, don't use
1543 * get_last_path_component(). This way explicit (with
1544 * slashes) filenames will never be interpreted as an
1545 * applet, just like with builtins. This way the user can
1546 * override an applet with an explicit filename reference.
1547 * The only downside to this change is that an explicit
1548 * /bin/foo invocation will fork and exec /bin/foo, even if
1549 * /bin/foo is a symlink to busybox.
1550 */
Matt Kraaif2cc2762001-02-01 19:21:20 +00001551 name = child->argv[0];
Eric Andersen86349772000-12-18 20:25:50 +00001552
1553#ifdef BB_FEATURE_SH_APPLETS_ALWAYS_WIN
1554 /* If you enable BB_FEATURE_SH_APPLETS_ALWAYS_WIN, then
1555 * if you run /bin/cat, it will use BusyBox cat even if
1556 * /bin/cat exists on the filesystem and is _not_ busybox.
1557 * Some systems want this, others do not. Choose wisely. :-)
1558 */
Matt Kraaif2cc2762001-02-01 19:21:20 +00001559 name = get_last_path_component(name);
Eric Andersen86349772000-12-18 20:25:50 +00001560#endif
1561
Eric Andersen67991cf2001-02-14 21:23:06 +00001562 {
1563 char** argv=child->argv;
1564 int argc_l;
1565 for(argc_l=0;*argv!=NULL; argv++, argc_l++);
1566 optind = 1;
1567 run_applet_by_name(name, argc_l, child->argv);
Eric Andersen86349772000-12-18 20:25:50 +00001568 }
1569#endif
1570
1571 execvp(child->argv[0], child->argv);
Eric Andersen8ea28be2001-01-05 20:58:22 +00001572 perror_msg_and_die("%s", child->argv[0]);
Eric Andersen86349772000-12-18 20:25:50 +00001573}
1574
1575static void insert_job(struct job *newjob, int inbg)
1576{
1577 struct job *thejob;
1578 struct jobset *job_list=newjob->job_list;
1579
1580 /* find the ID for thejob to use */
1581 newjob->jobid = 1;
1582 for (thejob = job_list->head; thejob; thejob = thejob->next)
1583 if (thejob->jobid >= newjob->jobid)
1584 newjob->jobid = thejob->jobid + 1;
1585
1586 /* add thejob to the list of running jobs */
1587 if (!job_list->head) {
1588 thejob = job_list->head = xmalloc(sizeof(*thejob));
1589 } else {
1590 for (thejob = job_list->head; thejob->next; thejob = thejob->next) /* nothing */;
1591 thejob->next = xmalloc(sizeof(*thejob));
1592 thejob = thejob->next;
1593 }
1594
1595 *thejob = *newjob; /* physically copy the struct job */
1596 thejob->next = NULL;
1597 thejob->running_progs = thejob->num_progs;
1598 thejob->stopped_progs = 0;
1599
1600 if (inbg) {
1601 /* we don't wait for background thejobs to return -- append it
1602 to the list of backgrounded thejobs and leave it alone */
1603 printf("[%d] %d\n", thejob->jobid,
1604 newjob->progs[newjob->num_progs - 1].pid);
1605#ifdef BB_FEATURE_SH_ENVIRONMENT
1606 last_bg_pid=newjob->progs[newjob->num_progs - 1].pid;
1607#endif
1608 } else {
1609 newjob->job_list->fg = thejob;
1610
1611 /* move the new process group into the foreground */
1612 /* suppress messages when run from /linuxrc mag@sysgo.de */
1613 if (tcsetpgrp(0, newjob->pgrp) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +00001614 perror_msg("tcsetpgrp");
Eric Andersen86349772000-12-18 20:25:50 +00001615 }
1616}
1617
1618static int run_command(struct job *newjob, int inbg, int outpipe[2])
1619{
1620 /* struct job *thejob; */
1621 int i;
1622 int nextin, nextout;
1623 int pipefds[2]; /* pipefd[0] is for reading */
1624 struct built_in_command *x;
1625 struct child_prog *child;
1626
Eric Andersen6efc48c2000-07-18 08:16:39 +00001627 nextin = 0, nextout = 1;
Eric Andersen86349772000-12-18 20:25:50 +00001628 for (i = 0; i < newjob->num_progs; i++) {
1629 child = & (newjob->progs[i]);
1630
1631 if ((i + 1) < newjob->num_progs) {
1632 if (pipe(pipefds)<0) perror_msg_and_die("pipe");
Erik Andersen161220c2000-03-16 08:12:48 +00001633 nextout = pipefds[1];
1634 } else {
Eric Andersen86349772000-12-18 20:25:50 +00001635 if (outpipe[1]!=-1) {
1636 nextout = outpipe[1];
Eric Andersen6efc48c2000-07-18 08:16:39 +00001637 } else {
1638 nextout = 1;
1639 }
Erik Andersen161220c2000-03-16 08:12:48 +00001640 }
1641
Eric Andersen501c88b2000-07-28 15:14:45 +00001642#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen86349772000-12-18 20:25:50 +00001643 if (show_x_trace==TRUE) {
Eric Andersen501c88b2000-07-28 15:14:45 +00001644 int j;
Eric Andersen86349772000-12-18 20:25:50 +00001645 fputc('+', stderr);
1646 for (j = 0; child->argv[j]; j++) {
1647 fputc(' ', stderr);
1648 fputs(child->argv[j], stderr);
1649 }
1650 fputc('\n', stderr);
Eric Andersen501c88b2000-07-28 15:14:45 +00001651 }
1652#endif
1653
Eric Andersene9f07fb2000-12-21 18:31:36 +00001654 /* Check if the command matches any non-forking builtins,
1655 * but only if this is a simple command.
1656 * Non-forking builtins within pipes have to fork anyway,
1657 * and are handled in pseudo_exec. "echo foo | read bar"
1658 * is doomed to failure, and doesn't work on bash, either.
Eric Andersen86349772000-12-18 20:25:50 +00001659 */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001660 if (newjob->num_progs == 1) {
1661 for (x = bltins; x->cmd; x++) {
1662 if (strcmp(child->argv[0], x->cmd) == 0 ) {
1663 int squirrel[] = {-1, -1, -1};
1664 int rcode;
1665 setup_redirects(child, squirrel);
1666 rcode = x->function(child);
1667 restore_redirects(squirrel);
1668 return rcode;
1669 }
Erik Andersen330fd2b2000-05-19 05:35:19 +00001670 }
1671 }
1672
Eric Andersen86349772000-12-18 20:25:50 +00001673 if (!(child->pid = fork())) {
Erik Andersen161220c2000-03-16 08:12:48 +00001674 signal(SIGTTOU, SIG_DFL);
1675
Eric Andersen8ea28be2001-01-05 20:58:22 +00001676 close_all();
1677
Eric Andersen86349772000-12-18 20:25:50 +00001678 if (outpipe[1]!=-1) {
1679 close(outpipe[0]);
Eric Andersen6efc48c2000-07-18 08:16:39 +00001680 }
1681 if (nextin != 0) {
1682 dup2(nextin, 0);
1683 close(nextin);
1684 }
1685
1686 if (nextout != 1) {
Erik Andersen161220c2000-03-16 08:12:48 +00001687 dup2(nextout, 1);
Eric Andersen86349772000-12-18 20:25:50 +00001688 dup2(nextout, 2); /* Really? */
Erik Andersen161220c2000-03-16 08:12:48 +00001689 close(nextout);
Eric Andersen501c88b2000-07-28 15:14:45 +00001690 close(pipefds[0]);
Erik Andersen161220c2000-03-16 08:12:48 +00001691 }
1692
Eric Andersen86349772000-12-18 20:25:50 +00001693 /* explicit redirects override pipes */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001694 setup_redirects(child,NULL);
Erik Andersen161220c2000-03-16 08:12:48 +00001695
Eric Andersen86349772000-12-18 20:25:50 +00001696 pseudo_exec(child);
Erik Andersen161220c2000-03-16 08:12:48 +00001697 }
Eric Andersen86349772000-12-18 20:25:50 +00001698 if (outpipe[1]!=-1) {
1699 close(outpipe[1]);
Eric Andersena1d187a2000-07-17 19:14:41 +00001700 }
Erik Andersen161220c2000-03-16 08:12:48 +00001701
1702 /* put our child in the process group whose leader is the
1703 first process in this pipe */
Eric Andersen86349772000-12-18 20:25:50 +00001704 setpgid(child->pid, newjob->progs[0].pid);
Erik Andersen161220c2000-03-16 08:12:48 +00001705 if (nextin != 0)
1706 close(nextin);
Eric Andersen6efc48c2000-07-18 08:16:39 +00001707 if (nextout != 1)
Erik Andersen161220c2000-03-16 08:12:48 +00001708 close(nextout);
1709
1710 /* If there isn't another process, nextin is garbage
1711 but it doesn't matter */
1712 nextin = pipefds[0];
1713 }
1714
Eric Andersen86349772000-12-18 20:25:50 +00001715 newjob->pgrp = newjob->progs[0].pid;
Erik Andersen161220c2000-03-16 08:12:48 +00001716
Eric Andersen86349772000-12-18 20:25:50 +00001717 insert_job(newjob, inbg);
Erik Andersen3522eb12000-03-12 23:49:18 +00001718
Erik Andersen161220c2000-03-16 08:12:48 +00001719 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001720}
1721
Erik Andersend75af992000-03-16 08:09:09 +00001722static int busy_loop(FILE * input)
Erik Andersen3522eb12000-03-12 23:49:18 +00001723{
Erik Andersen161220c2000-03-16 08:12:48 +00001724 char *command;
Eric Andersen86349772000-12-18 20:25:50 +00001725 char *next_command = NULL;
1726 struct job newjob;
Eric Andersen1c314ad2000-06-28 16:56:25 +00001727 pid_t parent_pgrp;
Erik Andersen161220c2000-03-16 08:12:48 +00001728 int i;
Eric Andersen86349772000-12-18 20:25:50 +00001729 int inbg;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001730 int status;
Eric Andersen86349772000-12-18 20:25:50 +00001731 newjob.job_list = &job_list;
1732 newjob.job_context = DEFAULT_CONTEXT;
Erik Andersen3522eb12000-03-12 23:49:18 +00001733
Eric Andersen1c314ad2000-06-28 16:56:25 +00001734 /* save current owner of TTY so we can restore it on exit */
1735 parent_pgrp = tcgetpgrp(0);
1736
Matt Kraaib8907522000-09-13 02:08:21 +00001737 command = (char *) xcalloc(BUFSIZ, sizeof(char));
Erik Andersend75af992000-03-16 08:09:09 +00001738
Erik Andersen161220c2000-03-16 08:12:48 +00001739 /* don't pay any attention to this signal; it just confuses
1740 things and isn't really meant for shells anyway */
1741 signal(SIGTTOU, SIG_IGN);
Erik Andersend75af992000-03-16 08:09:09 +00001742
Erik Andersen161220c2000-03-16 08:12:48 +00001743 while (1) {
Eric Andersen86349772000-12-18 20:25:50 +00001744 if (!job_list.fg) {
Erik Andersend75af992000-03-16 08:09:09 +00001745 /* no job is in the foreground */
Erik Andersen3522eb12000-03-12 23:49:18 +00001746
Erik Andersend75af992000-03-16 08:09:09 +00001747 /* see if any background processes have exited */
Eric Andersen86349772000-12-18 20:25:50 +00001748 checkjobs(&job_list);
Erik Andersen3522eb12000-03-12 23:49:18 +00001749
Eric Andersen86349772000-12-18 20:25:50 +00001750 if (!next_command) {
1751 if (get_command(input, command))
Erik Andersen161220c2000-03-16 08:12:48 +00001752 break;
Eric Andersen86349772000-12-18 20:25:50 +00001753 next_command = command;
Erik Andersend75af992000-03-16 08:09:09 +00001754 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001755
Eric Andersenca604592001-03-08 17:17:13 +00001756 if (expand_arguments(next_command) == FALSE) {
1757 free(command);
1758 command = (char *) xcalloc(BUFSIZ, sizeof(char));
1759 next_command = NULL;
1760 continue;
1761 }
1762
Eric Andersen86349772000-12-18 20:25:50 +00001763 if (!parse_command(&next_command, &newjob, &inbg) &&
1764 newjob.num_progs) {
Eric Andersena1d187a2000-07-17 19:14:41 +00001765 int pipefds[2] = {-1,-1};
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001766 debug_printf( "job=%p fed to run_command by busy_loop()'\n",
1767 &newjob);
Eric Andersen86349772000-12-18 20:25:50 +00001768 run_command(&newjob, inbg, pipefds);
Eric Andersenfad9c112000-07-25 18:06:52 +00001769 }
1770 else {
Eric Andersena1d187a2000-07-17 19:14:41 +00001771 free(command);
Matt Kraaib8907522000-09-13 02:08:21 +00001772 command = (char *) xcalloc(BUFSIZ, sizeof(char));
Eric Andersen86349772000-12-18 20:25:50 +00001773 next_command = NULL;
Erik Andersend75af992000-03-16 08:09:09 +00001774 }
1775 } else {
1776 /* a job is running in the foreground; wait for it */
1777 i = 0;
Eric Andersen86349772000-12-18 20:25:50 +00001778 while (!job_list.fg->progs[i].pid ||
1779 job_list.fg->progs[i].is_stopped == 1) i++;
Erik Andersen3522eb12000-03-12 23:49:18 +00001780
Eric Andersen8ea28be2001-01-05 20:58:22 +00001781 if (waitpid(job_list.fg->progs[i].pid, &status, WUNTRACED)<0)
1782 perror_msg_and_die("waitpid(%d)",job_list.fg->progs[i].pid);
Erik Andersen3522eb12000-03-12 23:49:18 +00001783
Erik Andersend75af992000-03-16 08:09:09 +00001784 if (WIFEXITED(status) || WIFSIGNALED(status)) {
Erik Andersen161220c2000-03-16 08:12:48 +00001785 /* the child exited */
Eric Andersen86349772000-12-18 20:25:50 +00001786 job_list.fg->running_progs--;
1787 job_list.fg->progs[i].pid = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001788
Eric Andersen501c88b2000-07-28 15:14:45 +00001789#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen86349772000-12-18 20:25:50 +00001790 last_return_code=WEXITSTATUS(status);
Eric Andersen86349772000-12-18 20:25:50 +00001791 debug_printf("'%s' exited -- return code %d\n",
1792 job_list.fg->text, last_return_code);
Eric Andersenb180dd92001-03-09 00:42:46 +00001793#endif
Eric Andersen86349772000-12-18 20:25:50 +00001794 if (!job_list.fg->running_progs) {
Erik Andersen161220c2000-03-16 08:12:48 +00001795 /* child exited */
Eric Andersen86349772000-12-18 20:25:50 +00001796 remove_job(&job_list, job_list.fg);
1797 job_list.fg = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001798 }
Erik Andersend75af992000-03-16 08:09:09 +00001799 } else {
Erik Andersen161220c2000-03-16 08:12:48 +00001800 /* the child was stopped */
Eric Andersen86349772000-12-18 20:25:50 +00001801 job_list.fg->stopped_progs++;
1802 job_list.fg->progs[i].is_stopped = 1;
Erik Andersen3522eb12000-03-12 23:49:18 +00001803
Eric Andersen86349772000-12-18 20:25:50 +00001804 if (job_list.fg->stopped_progs == job_list.fg->running_progs) {
1805 printf("\n" JOB_STATUS_FORMAT, job_list.fg->jobid,
1806 "Stopped", job_list.fg->text);
1807 job_list.fg = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001808 }
Erik Andersend75af992000-03-16 08:09:09 +00001809 }
1810
Eric Andersen86349772000-12-18 20:25:50 +00001811 if (!job_list.fg) {
Erik Andersen161220c2000-03-16 08:12:48 +00001812 /* move the shell to the foreground */
Eric Andersen1c314ad2000-06-28 16:56:25 +00001813 /* suppress messages when run from /linuxrc mag@sysgo.de */
1814 if (tcsetpgrp(0, getpid()) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +00001815 perror_msg("tcsetpgrp");
Erik Andersend75af992000-03-16 08:09:09 +00001816 }
1817 }
1818 }
Erik Andersen161220c2000-03-16 08:12:48 +00001819 free(command);
Erik Andersen3522eb12000-03-12 23:49:18 +00001820
Eric Andersen1c314ad2000-06-28 16:56:25 +00001821 /* return controlling TTY back to parent process group before exiting */
1822 if (tcsetpgrp(0, parent_pgrp))
Matt Kraaia9819b22000-12-22 01:48:07 +00001823 perror_msg("tcsetpgrp");
Eric Andersenb54833c2000-07-03 23:56:26 +00001824
1825 /* return exit status if called with "-c" */
1826 if (input == NULL && WIFEXITED(status))
1827 return WEXITSTATUS(status);
1828
Erik Andersen161220c2000-03-16 08:12:48 +00001829 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001830}
1831
1832
Eric Andersenfad9c112000-07-25 18:06:52 +00001833#ifdef BB_FEATURE_CLEAN_UP
1834void free_memory(void)
1835{
Eric Andersenfad9c112000-07-25 18:06:52 +00001836 if (cwd)
1837 free(cwd);
1838 if (local_pending_command)
1839 free(local_pending_command);
1840
Eric Andersen86349772000-12-18 20:25:50 +00001841 if (job_list.fg && !job_list.fg->running_progs) {
1842 remove_job(&job_list, job_list.fg);
Eric Andersenfad9c112000-07-25 18:06:52 +00001843 }
1844}
1845#endif
1846
Eric Andersen6efc48c2000-07-18 08:16:39 +00001847
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001848int shell_main(int argc_l, char **argv_l)
Erik Andersen3522eb12000-03-12 23:49:18 +00001849{
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001850 int opt, interactive=FALSE;
Erik Andersen161220c2000-03-16 08:12:48 +00001851 FILE *input = stdin;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001852 argc = argc_l;
1853 argv = argv_l;
Erik Andersen3522eb12000-03-12 23:49:18 +00001854
Eric Andersen702ec592001-03-06 22:17:29 +00001855 /* These variables need re-initializing when recursing */
Eric Andersenb0970d42001-01-05 19:34:52 +00001856 shell_context = 0;
1857 cwd=NULL;
Eric Andersenb0970d42001-01-05 19:34:52 +00001858 local_pending_command = NULL;
Eric Andersen702ec592001-03-06 22:17:29 +00001859 close_me_head = NULL;
Eric Andersenb0970d42001-01-05 19:34:52 +00001860 job_list.head = NULL;
1861 job_list.fg = NULL;
1862#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +00001863 last_bg_pid=1;
1864 last_return_code=1;
Eric Andersenb0970d42001-01-05 19:34:52 +00001865 show_x_trace=FALSE;
1866#endif
Eric Andersen501c88b2000-07-28 15:14:45 +00001867
Eric Andersenb558e762000-11-30 22:43:16 +00001868 if (argv[0] && argv[0][0] == '-') {
Eric Andersen8ea28be2001-01-05 20:58:22 +00001869 FILE *prof_input;
1870 prof_input = fopen("/etc/profile", "r");
1871 if (!prof_input) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001872 printf( "Couldn't open file '/etc/profile'\n");
Eric Andersen8ea28be2001-01-05 20:58:22 +00001873 } else {
1874 int tmp_fd = fileno(prof_input);
1875 mark_open(tmp_fd);
1876 /* Now run the file */
1877 busy_loop(prof_input);
1878 fclose(prof_input);
1879 mark_closed(tmp_fd);
1880 }
Eric Andersenb558e762000-11-30 22:43:16 +00001881 }
Eric Andersen501c88b2000-07-28 15:14:45 +00001882
Eric Andersenf21aa842000-12-08 20:50:30 +00001883 while ((opt = getopt(argc_l, argv_l, "cxi")) > 0) {
Eric Andersen501c88b2000-07-28 15:14:45 +00001884 switch (opt) {
1885 case 'c':
1886 input = NULL;
Matt Kraai6085c722000-09-06 01:46:18 +00001887 if (local_pending_command != 0)
Matt Kraaidd19c692001-01-31 19:00:21 +00001888 error_msg_and_die("multiple -c arguments");
Matt Kraai6085c722000-09-06 01:46:18 +00001889 local_pending_command = xstrdup(argv[optind]);
1890 optind++;
1891 argv = argv+optind;
Eric Andersen501c88b2000-07-28 15:14:45 +00001892 break;
Eric Andersen1428c4f2000-07-28 15:19:30 +00001893#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen501c88b2000-07-28 15:14:45 +00001894 case 'x':
Eric Andersen86349772000-12-18 20:25:50 +00001895 show_x_trace = TRUE;
Eric Andersen501c88b2000-07-28 15:14:45 +00001896 break;
Eric Andersen1428c4f2000-07-28 15:19:30 +00001897#endif
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001898 case 'i':
1899 interactive = TRUE;
1900 break;
Eric Andersen501c88b2000-07-28 15:14:45 +00001901 default:
Eric Andersen67991cf2001-02-14 21:23:06 +00001902 show_usage();
Eric Andersen501c88b2000-07-28 15:14:45 +00001903 }
1904 }
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001905 /* A shell is interactive if the `-i' flag was given, or if all of
1906 * the following conditions are met:
1907 * no -c command
1908 * no arguments remaining or the -s flag given
1909 * standard input is a terminal
1910 * standard output is a terminal
1911 * Refer to Posix.2, the description of the `sh' utility. */
Eric Andersen86349772000-12-18 20:25:50 +00001912 if (argv[optind]==NULL && input==stdin &&
1913 isatty(fileno(stdin)) && isatty(fileno(stdout))) {
1914 interactive=TRUE;
1915 }
1916 if (interactive==TRUE) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001917 //printf( "optind=%d argv[optind]='%s'\n", optind, argv[optind]);
Eric Andersen501c88b2000-07-28 15:14:45 +00001918 /* Looks like they want an interactive shell */
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001919 printf( "\n\nBusyBox v%s (%s) Built-in shell (lash)\n", BB_VER, BB_BT);
1920 printf( "Enter 'help' for a list of built-in commands.\n\n");
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001921 } else if (local_pending_command==NULL) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001922 //printf( "optind=%d argv[optind]='%s'\n", optind, argv[optind]);
Matt Kraaibbaef662000-09-27 02:43:35 +00001923 input = xfopen(argv[optind], "r");
Eric Andersen8ea28be2001-01-05 20:58:22 +00001924 mark_open(fileno(input)); /* be lazy, never mark this closed */
Eric Andersen501c88b2000-07-28 15:14:45 +00001925 }
1926
Eric Andersen6efc48c2000-07-18 08:16:39 +00001927 /* initialize the cwd -- this is never freed...*/
1928 cwd=(char*)xmalloc(sizeof(char)*MAX_LINE+1);
1929 getcwd(cwd, sizeof(char)*MAX_LINE);
Erik Andersen3522eb12000-03-12 23:49:18 +00001930
Eric Andersenfad9c112000-07-25 18:06:52 +00001931#ifdef BB_FEATURE_CLEAN_UP
1932 atexit(free_memory);
1933#endif
1934
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001935#ifdef BB_FEATURE_COMMAND_EDITING
1936 cmdedit_set_initial_prompt();
1937#else
1938 PS1 = NULL;
1939 PS2 = "> ";
1940#endif
1941
Erik Andersen161220c2000-03-16 08:12:48 +00001942 return (busy_loop(input));
Erik Andersen3522eb12000-03-12 23:49:18 +00001943}
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001944