blob: ee45b1a0dbe895437e97663c1e9536d03da64f4f [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 Andersene5dfced2001-04-09 22:48:12 +000067
68#ifdef BB_LOCALE_SUPPORT
Mark Whitley1c6581a2001-03-27 16:35:16 +000069#include <locale.h>
Eric Andersene5dfced2001-04-09 22:48:12 +000070#endif
Eric Andersen13d1fa12001-03-08 23:59:45 +000071
Eric Andersen34174472001-03-17 00:20:10 +000072//#define BB_FEATURE_SH_WORDEXP
Eric Andersenb180dd92001-03-09 00:42:46 +000073
Eric Andersen34174472001-03-17 00:20:10 +000074#ifdef BB_FEATURE_SH_WORDEXP
Eric Andersen13d1fa12001-03-08 23:59:45 +000075#include <wordexp.h>
76#define expand_t wordexp_t
77#undef BB_FEATURE_SH_BACKTICKS
78#else
79#include <glob.h>
80#define expand_t glob_t
81#endif
Eric Andersencaeeb362001-02-20 06:38:44 +000082#include "busybox.h"
Erik Andersenf0657d32000-04-12 17:49:52 +000083#include "cmdedit.h"
Erik Andersen3522eb12000-03-12 23:49:18 +000084
Eric Andersen13d1fa12001-03-08 23:59:45 +000085
Mark Whitley59ab0252001-01-23 22:30:04 +000086static const int MAX_READ = 128; /* size of input buffer for `read' builtin */
Erik Andersen3522eb12000-03-12 23:49:18 +000087#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
88
Erik Andersend75af992000-03-16 08:09:09 +000089
Eric Andersen86349772000-12-18 20:25:50 +000090enum redir_type { REDIRECT_INPUT, REDIRECT_OVERWRITE,
Erik Andersen161220c2000-03-16 08:12:48 +000091 REDIRECT_APPEND
92};
Erik Andersen3522eb12000-03-12 23:49:18 +000093
Eric Andersen86349772000-12-18 20:25:50 +000094static const unsigned int DEFAULT_CONTEXT=0x1;
Eric Andersen6a99aaf2000-07-27 00:15:20 +000095static const unsigned int IF_TRUE_CONTEXT=0x2;
96static const unsigned int IF_FALSE_CONTEXT=0x4;
97static const unsigned int THEN_EXP_CONTEXT=0x8;
98static const unsigned int ELSE_EXP_CONTEXT=0x10;
Eric Andersenfad9c112000-07-25 18:06:52 +000099
Eric Andersen86349772000-12-18 20:25:50 +0000100
101struct jobset {
Erik Andersen161220c2000-03-16 08:12:48 +0000102 struct job *head; /* head of list of running jobs */
103 struct job *fg; /* current foreground job */
Erik Andersen3522eb12000-03-12 23:49:18 +0000104};
105
Eric Andersen86349772000-12-18 20:25:50 +0000106struct redir_struct {
107 enum redir_type type; /* type of redirection */
Erik Andersen161220c2000-03-16 08:12:48 +0000108 int fd; /* file descriptor being redirected */
109 char *filename; /* file to redirect fd to */
Erik Andersen3522eb12000-03-12 23:49:18 +0000110};
111
Eric Andersen86349772000-12-18 20:25:50 +0000112struct child_prog {
Erik Andersen161220c2000-03-16 08:12:48 +0000113 pid_t pid; /* 0 if exited */
114 char **argv; /* program name and arguments */
Eric Andersen86349772000-12-18 20:25:50 +0000115 int num_redirects; /* elements in redirection array */
116 struct redir_struct *redirects; /* I/O redirects */
Eric Andersen86349772000-12-18 20:25:50 +0000117 int is_stopped; /* is the program currently running? */
118 struct job *family; /* pointer back to the child's parent job */
Erik Andersen3522eb12000-03-12 23:49:18 +0000119};
120
121struct job {
Eric Andersen86349772000-12-18 20:25:50 +0000122 int jobid; /* job number */
123 int num_progs; /* total number of programs in job */
124 int running_progs; /* number of programs running */
Erik Andersen161220c2000-03-16 08:12:48 +0000125 char *text; /* name of job */
Eric Andersen86349772000-12-18 20:25:50 +0000126 char *cmdbuf; /* buffer various argv's point into */
Erik Andersen161220c2000-03-16 08:12:48 +0000127 pid_t pgrp; /* process group ID for the job */
Eric Andersen86349772000-12-18 20:25:50 +0000128 struct child_prog *progs; /* array of programs in job */
Erik Andersen161220c2000-03-16 08:12:48 +0000129 struct job *next; /* to track background commands */
Eric Andersen86349772000-12-18 20:25:50 +0000130 int stopped_progs; /* number of programs alive, but stopped */
131 unsigned int job_context; /* bitmask defining current context */
132 struct jobset *job_list;
Erik Andersen3522eb12000-03-12 23:49:18 +0000133};
134
Eric Andersen86349772000-12-18 20:25:50 +0000135struct built_in_command {
Erik Andersen161220c2000-03-16 08:12:48 +0000136 char *cmd; /* name */
137 char *descr; /* description */
Eric Andersen86349772000-12-18 20:25:50 +0000138 int (*function) (struct child_prog *); /* function ptr */
Erik Andersen3522eb12000-03-12 23:49:18 +0000139};
140
Eric Andersen8ea28be2001-01-05 20:58:22 +0000141struct close_me {
142 int fd;
143 struct close_me *next;
144};
145
Eric Andersen34e19412000-07-10 18:47:24 +0000146/* function prototypes for builtins */
Eric Andersen86349772000-12-18 20:25:50 +0000147static int builtin_cd(struct child_prog *cmd);
Eric Andersen86349772000-12-18 20:25:50 +0000148static int builtin_exec(struct child_prog *cmd);
149static int builtin_exit(struct child_prog *cmd);
150static int builtin_fg_bg(struct child_prog *cmd);
151static int builtin_help(struct child_prog *cmd);
152static int builtin_jobs(struct child_prog *dummy);
153static int builtin_pwd(struct child_prog *dummy);
154static int builtin_export(struct child_prog *cmd);
155static int builtin_source(struct child_prog *cmd);
156static int builtin_unset(struct child_prog *cmd);
157static int builtin_read(struct child_prog *cmd);
Eric Andersenfad9c112000-07-25 18:06:52 +0000158#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
Eric Andersen86349772000-12-18 20:25:50 +0000159static int builtin_if(struct child_prog *cmd);
160static int builtin_then(struct child_prog *cmd);
161static int builtin_else(struct child_prog *cmd);
162static int builtin_fi(struct child_prog *cmd);
Eric Andersen70da6a62000-12-20 22:59:16 +0000163/* function prototypes for shell stuff */
164static int run_command_predicate(char *cmd);
Eric Andersenfad9c112000-07-25 18:06:52 +0000165#endif
Erik Andersen3522eb12000-03-12 23:49:18 +0000166
Eric Andersen34e19412000-07-10 18:47:24 +0000167
168/* function prototypes for shell stuff */
Eric Andersen8ea28be2001-01-05 20:58:22 +0000169static void mark_open(int fd);
170static void mark_closed(int fd);
Eric Andersen36278b92001-03-06 20:47:31 +0000171static void close_all(void);
Eric Andersen86349772000-12-18 20:25:50 +0000172static void checkjobs(struct jobset *job_list);
173static int get_command(FILE * source, char *command);
174static int parse_command(char **command_ptr, struct job *job, int *inbg);
175static int run_command(struct job *newjob, int inbg, int outpipe[2]);
176static int pseudo_exec(struct child_prog *cmd) __attribute__ ((noreturn));
Erik Andersen3522eb12000-03-12 23:49:18 +0000177static int busy_loop(FILE * input);
178
Erik Andersend75af992000-03-16 08:09:09 +0000179
Mark Whitley37653aa2000-07-12 23:36:17 +0000180/* Table of built-in functions (these are non-forking builtins, meaning they
181 * can change global variables in the parent shell process but they will not
182 * work with pipes and redirects; 'unset foo | whatever' will not work) */
Eric Andersen86349772000-12-18 20:25:50 +0000183static struct built_in_command bltins[] = {
Eric Andersenfad9c112000-07-25 18:06:52 +0000184 {"bg", "Resume a job in the background", builtin_fg_bg},
185 {"cd", "Change working directory", builtin_cd},
Eric Andersend2f56772000-09-21 02:48:07 +0000186 {"exec", "Exec command, replacing this shell with the exec'd process", builtin_exec},
Eric Andersenfad9c112000-07-25 18:06:52 +0000187 {"exit", "Exit from shell()", builtin_exit},
188 {"fg", "Bring job into the foreground", builtin_fg_bg},
189 {"jobs", "Lists the active jobs", builtin_jobs},
190 {"export", "Set environment variable", builtin_export},
191 {"unset", "Unset environment variable", builtin_unset},
192 {"read", "Input environment variable", builtin_read},
Matt Kraaidd450a02000-09-13 03:43:36 +0000193 {".", "Source-in and run commands in a file", builtin_source},
Eric Andersen86349772000-12-18 20:25:50 +0000194 /* to do: add ulimit */
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000195#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
196 {"if", NULL, builtin_if},
197 {"then", NULL, builtin_then},
198 {"else", NULL, builtin_else},
199 {"fi", NULL, builtin_fi},
200#endif
Eric Andersenfad9c112000-07-25 18:06:52 +0000201 {NULL, NULL, NULL}
Erik Andersen330fd2b2000-05-19 05:35:19 +0000202};
203
Mark Whitley37653aa2000-07-12 23:36:17 +0000204/* Table of forking built-in functions (things that fork cannot change global
205 * variables in the parent process, such as the current working directory) */
Eric Andersen86349772000-12-18 20:25:50 +0000206static struct built_in_command bltins_forking[] = {
Eric Andersenfad9c112000-07-25 18:06:52 +0000207 {"pwd", "Print current directory", builtin_pwd},
Eric Andersenfad9c112000-07-25 18:06:52 +0000208 {"help", "List shell built-in commands", builtin_help},
209 {NULL, NULL, NULL}
Erik Andersen3522eb12000-03-12 23:49:18 +0000210};
211
Eric Andersen0bcc8132001-01-05 19:37:32 +0000212
213/* Variables we export */
214unsigned int shell_context; /* Used in cmdedit.c to reset the
215 context when someone hits ^C */
216
217
218/* Globals that are static to this file */
Eric Andersen6efc48c2000-07-18 08:16:39 +0000219static char *cwd;
Eric Andersen744b0642001-01-05 21:23:44 +0000220static char *local_pending_command = NULL;
Eric Andersen86349772000-12-18 20:25:50 +0000221static struct jobset job_list = { NULL, NULL };
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000222static int argc;
223static char **argv;
Eric Andersen702ec592001-03-06 22:17:29 +0000224static struct close_me *close_me_head;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000225#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +0000226static int last_bg_pid;
227static int last_return_code;
228static int show_x_trace;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000229#endif
Eric Andersen86349772000-12-18 20:25:50 +0000230#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
231static char syntax_err[]="syntax error near unexpected token";
232#endif
233
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000234static char *PS1;
Eric Andersene5dfced2001-04-09 22:48:12 +0000235static char *PS2 = "> ";
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000236
237
Eric Andersenb558e762000-11-30 22:43:16 +0000238#ifdef DEBUG_SHELL
239static inline void debug_printf(const char *format, ...)
240{
241 va_list args;
242 va_start(args, format);
Eric Andersen86349772000-12-18 20:25:50 +0000243 vfprintf(stderr, format, args);
Eric Andersenb558e762000-11-30 22:43:16 +0000244 va_end(args);
245}
246#else
247static inline void debug_printf(const char *format, ...) { }
248#endif
Erik Andersen3522eb12000-03-12 23:49:18 +0000249
Eric Andersen86349772000-12-18 20:25:50 +0000250/*
251 Most builtins need access to the struct child_prog that has
252 their arguments, previously coded as cmd->progs[0]. That coding
253 can exhibit a bug, if the builtin is not the first command in
254 a pipeline: "echo foo | exec sort" will attempt to exec foo.
255
256builtin previous use notes
257------ ----------------- ---------
258cd cmd->progs[0]
Eric Andersen86349772000-12-18 20:25:50 +0000259exec 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
Eric Andersen84e229c2001-03-29 22:48:33 +0000265export cmd->progs[0]
Eric Andersen86349772000-12-18 20:25:50 +0000266source 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 Andersene5dfced2001-04-09 22:48:12 +0000299 cwd = xgetcwd(cwd);
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
Eric Andersend2f56772000-09-21 02:48:07 +0000304/* built-in 'exec' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000305static int builtin_exec(struct child_prog *child)
Eric Andersend2f56772000-09-21 02:48:07 +0000306{
Eric Andersen86349772000-12-18 20:25:50 +0000307 if (child->argv[1] == NULL)
308 return EXIT_SUCCESS; /* Really? */
309 child->argv++;
Eric Andersen07f2f392001-03-06 20:28:22 +0000310 close_all();
Eric Andersen86349772000-12-18 20:25:50 +0000311 pseudo_exec(child);
312 /* never returns */
Eric Andersend2f56772000-09-21 02:48:07 +0000313}
314
Erik Andersen3522eb12000-03-12 23:49:18 +0000315/* built-in 'exit' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000316static int builtin_exit(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000317{
Eric Andersen86349772000-12-18 20:25:50 +0000318 if (child->argv[1] == NULL)
Matt Kraai3e856ce2000-12-01 02:55:13 +0000319 exit(EXIT_SUCCESS);
Erik Andersen161220c2000-03-16 08:12:48 +0000320
Eric Andersen86349772000-12-18 20:25:50 +0000321 exit (atoi(child->argv[1]));
Erik Andersen3522eb12000-03-12 23:49:18 +0000322}
323
324/* built-in 'fg' and 'bg' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000325static int builtin_fg_bg(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000326{
Erik Andersen161220c2000-03-16 08:12:48 +0000327 int i, jobNum;
Erik Andersen6273f652000-03-17 01:12:41 +0000328 struct job *job=NULL;
Eric Andersen86349772000-12-18 20:25:50 +0000329
Eric Andersene9f07fb2000-12-21 18:31:36 +0000330 if (!child->argv[1] || child->argv[2]) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000331 error_msg("%s: exactly one argument is expected",
Eric Andersene9f07fb2000-12-21 18:31:36 +0000332 child->argv[0]);
333 return EXIT_FAILURE;
334 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000335
Eric Andersene9f07fb2000-12-21 18:31:36 +0000336 if (sscanf(child->argv[1], "%%%d", &jobNum) != 1) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000337 error_msg("%s: bad argument '%s'",
Eric Andersene9f07fb2000-12-21 18:31:36 +0000338 child->argv[0], child->argv[1]);
339 return EXIT_FAILURE;
340 }
341
342 for (job = child->family->job_list->head; job; job = job->next) {
343 if (job->jobid == jobNum) {
344 break;
Erik Andersen161220c2000-03-16 08:12:48 +0000345 }
Eric Andersene9f07fb2000-12-21 18:31:36 +0000346 }
Erik Andersen161220c2000-03-16 08:12:48 +0000347
348 if (!job) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000349 error_msg("%s: unknown job %d",
Eric Andersen86349772000-12-18 20:25:50 +0000350 child->argv[0], jobNum);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000351 return EXIT_FAILURE;
Erik Andersend75af992000-03-16 08:09:09 +0000352 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000353
Eric Andersen86349772000-12-18 20:25:50 +0000354 if (*child->argv[0] == 'f') {
Erik Andersen161220c2000-03-16 08:12:48 +0000355 /* Make this job the foreground job */
Eric Andersen1c314ad2000-06-28 16:56:25 +0000356 /* suppress messages when run from /linuxrc mag@sysgo.de */
357 if (tcsetpgrp(0, job->pgrp) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +0000358 perror_msg("tcsetpgrp");
Eric Andersen86349772000-12-18 20:25:50 +0000359 child->family->job_list->fg = job;
Erik Andersen161220c2000-03-16 08:12:48 +0000360 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000361
Erik Andersen161220c2000-03-16 08:12:48 +0000362 /* Restart the processes in the job */
Eric Andersen86349772000-12-18 20:25:50 +0000363 for (i = 0; i < job->num_progs; i++)
364 job->progs[i].is_stopped = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000365
Erik Andersen161220c2000-03-16 08:12:48 +0000366 kill(-job->pgrp, SIGCONT);
Erik Andersen3522eb12000-03-12 23:49:18 +0000367
Eric Andersen86349772000-12-18 20:25:50 +0000368 job->stopped_progs = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000369
Matt Kraai3e856ce2000-12-01 02:55:13 +0000370 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000371}
372
373/* built-in 'help' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000374static int builtin_help(struct child_prog *dummy)
Erik Andersen3522eb12000-03-12 23:49:18 +0000375{
Eric Andersen86349772000-12-18 20:25:50 +0000376 struct built_in_command *x;
Erik Andersen3522eb12000-03-12 23:49:18 +0000377
Eric Andersen86349772000-12-18 20:25:50 +0000378 printf("\nBuilt-in commands:\n");
379 printf("-------------------\n");
Erik Andersen161220c2000-03-16 08:12:48 +0000380 for (x = bltins; x->cmd; x++) {
Eric Andersenfad9c112000-07-25 18:06:52 +0000381 if (x->descr==NULL)
382 continue;
Eric Andersen86349772000-12-18 20:25:50 +0000383 printf("%s\t%s\n", x->cmd, x->descr);
Erik Andersen161220c2000-03-16 08:12:48 +0000384 }
Erik Andersen330fd2b2000-05-19 05:35:19 +0000385 for (x = bltins_forking; x->cmd; x++) {
Eric Andersenfad9c112000-07-25 18:06:52 +0000386 if (x->descr==NULL)
387 continue;
Eric Andersen86349772000-12-18 20:25:50 +0000388 printf("%s\t%s\n", x->cmd, x->descr);
Erik Andersen330fd2b2000-05-19 05:35:19 +0000389 }
Eric Andersen86349772000-12-18 20:25:50 +0000390 printf("\n\n");
Matt Kraai3e856ce2000-12-01 02:55:13 +0000391 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000392}
393
394/* built-in 'jobs' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000395static int builtin_jobs(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000396{
Erik Andersen161220c2000-03-16 08:12:48 +0000397 struct job *job;
Eric Andersen86349772000-12-18 20:25:50 +0000398 char *status_string;
Erik Andersen3522eb12000-03-12 23:49:18 +0000399
Eric Andersen86349772000-12-18 20:25:50 +0000400 for (job = child->family->job_list->head; job; job = job->next) {
401 if (job->running_progs == job->stopped_progs)
402 status_string = "Stopped";
Erik Andersen161220c2000-03-16 08:12:48 +0000403 else
Eric Andersen86349772000-12-18 20:25:50 +0000404 status_string = "Running";
Erik Andersen161220c2000-03-16 08:12:48 +0000405
Eric Andersen86349772000-12-18 20:25:50 +0000406 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->text);
Erik Andersen161220c2000-03-16 08:12:48 +0000407 }
Matt Kraai3e856ce2000-12-01 02:55:13 +0000408 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000409}
410
411
412/* built-in 'pwd' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000413static int builtin_pwd(struct child_prog *dummy)
Erik Andersen3522eb12000-03-12 23:49:18 +0000414{
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000415 printf( "%s\n", cwd);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000416 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000417}
418
Erik Andersen6273f652000-03-17 01:12:41 +0000419/* built-in 'export VAR=value' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000420static int builtin_export(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000421{
Erik Andersen161220c2000-03-16 08:12:48 +0000422 int res;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000423 char *v = child->argv[1];
Erik Andersen3522eb12000-03-12 23:49:18 +0000424
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000425 if (v == NULL) {
Eric Andersen84e229c2001-03-29 22:48:33 +0000426 char **e;
427 for (e = environ; *e; e++) {
428 printf( "%s\n", *e);
429 }
Matt Kraai2129f972001-04-04 17:50:04 +0000430 return 0;
Erik Andersen161220c2000-03-16 08:12:48 +0000431 }
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000432 res = putenv(v);
Erik Andersen161220c2000-03-16 08:12:48 +0000433 if (res)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000434 fprintf(stderr, "export: %m\n");
Mark Whitleyf5949862001-03-14 00:29:14 +0000435#ifndef BB_FEATURE_SH_SIMPLE_PROMPT
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000436 if (strncmp(v, "PS1=", 4)==0)
437 PS1 = getenv("PS1");
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000438#endif
Eric Andersene5dfced2001-04-09 22:48:12 +0000439
440#ifdef BB_LOCALE_SUPPORT
Mark Whitley1c6581a2001-03-27 16:35:16 +0000441 if(strncmp(v, "LC_ALL=", 7)==0)
442 setlocale(LC_ALL, getenv("LC_ALL"));
Mark Whitleya82a0032001-03-27 17:07:15 +0000443 if(strncmp(v, "LC_CTYPE=", 9)==0)
Mark Whitley1c6581a2001-03-27 16:35:16 +0000444 setlocale(LC_CTYPE, getenv("LC_CTYPE"));
Eric Andersene5dfced2001-04-09 22:48:12 +0000445#endif
Mark Whitley1c6581a2001-03-27 16:35:16 +0000446
Erik Andersen161220c2000-03-16 08:12:48 +0000447 return (res);
Erik Andersen3522eb12000-03-12 23:49:18 +0000448}
449
Eric Andersenb54833c2000-07-03 23:56:26 +0000450/* built-in 'read VAR' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000451static int builtin_read(struct child_prog *child)
Eric Andersenb54833c2000-07-03 23:56:26 +0000452{
453 int res = 0, len, newlen;
454 char *s;
455 char string[MAX_READ];
456
Eric Andersen86349772000-12-18 20:25:50 +0000457 if (child->argv[1]) {
Eric Andersenb54833c2000-07-03 23:56:26 +0000458 /* argument (VAR) given: put "VAR=" into buffer */
Eric Andersen86349772000-12-18 20:25:50 +0000459 strcpy(string, child->argv[1]);
Eric Andersenb54833c2000-07-03 23:56:26 +0000460 len = strlen(string);
461 string[len++] = '=';
462 string[len] = '\0';
463 fgets(&string[len], sizeof(string) - len, stdin); /* read string */
464 newlen = strlen(string);
465 if(newlen > len)
466 string[--newlen] = '\0'; /* chomp trailing newline */
467 /*
468 ** string should now contain "VAR=<value>"
469 ** copy it (putenv() won't do that, so we must make sure
470 ** the string resides in a static buffer!)
471 */
472 res = -1;
473 if((s = strdup(string)))
474 res = putenv(s);
475 if (res)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000476 fprintf(stderr, "read: %m\n");
Eric Andersenb54833c2000-07-03 23:56:26 +0000477 }
478 else
479 fgets(string, sizeof(string), stdin);
480
481 return (res);
482}
483
Eric Andersenfad9c112000-07-25 18:06:52 +0000484#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
485/* Built-in handler for 'if' commands */
Eric Andersen86349772000-12-18 20:25:50 +0000486static int builtin_if(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000487{
Eric Andersen86349772000-12-18 20:25:50 +0000488 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000489 int status;
490 char* charptr1=cmd->text+3; /* skip over the leading 'if ' */
491
492 /* Now run the 'if' command */
Eric Andersen86349772000-12-18 20:25:50 +0000493 debug_printf( "job=%p entering builtin_if ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
494 status = run_command_predicate(charptr1);
495 debug_printf( "if test returned ");
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000496 if (status == 0) {
Eric Andersen86349772000-12-18 20:25:50 +0000497 debug_printf( "TRUE\n");
498 cmd->job_context |= IF_TRUE_CONTEXT;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000499 } else {
Eric Andersen86349772000-12-18 20:25:50 +0000500 debug_printf( "FALSE\n");
501 cmd->job_context |= IF_FALSE_CONTEXT;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000502 }
Eric Andersen86349772000-12-18 20:25:50 +0000503 debug_printf("job=%p builtin_if set job context to %x\n", cmd, cmd->job_context);
504 shell_context++;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000505
506 return status;
Eric Andersenfad9c112000-07-25 18:06:52 +0000507}
508
509/* Built-in handler for 'then' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000510static int builtin_then(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000511{
Eric Andersen86349772000-12-18 20:25:50 +0000512 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000513 char* charptr1=cmd->text+5; /* skip over the leading 'then ' */
514
Eric Andersen86349772000-12-18 20:25:50 +0000515 debug_printf( "job=%p entering builtin_then ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
516 if (! (cmd->job_context & (IF_TRUE_CONTEXT|IF_FALSE_CONTEXT))) {
517 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000518 error_msg("%s `then'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000519 return EXIT_FAILURE;
Eric Andersenfad9c112000-07-25 18:06:52 +0000520 }
Eric Andersen86349772000-12-18 20:25:50 +0000521
522 cmd->job_context |= THEN_EXP_CONTEXT;
523 debug_printf("job=%p builtin_then set job context to %x\n", cmd, cmd->job_context);
524
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000525 /* If the if result was FALSE, skip the 'then' stuff */
Eric Andersen86349772000-12-18 20:25:50 +0000526 if (cmd->job_context & IF_FALSE_CONTEXT) {
Matt Kraai3e856ce2000-12-01 02:55:13 +0000527 return EXIT_SUCCESS;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000528 }
529
Eric Andersen86349772000-12-18 20:25:50 +0000530 /* Seems the if result was TRUE, so run the 'then' command */
531 debug_printf( "'then' now running '%s'\n", charptr1);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000532
Eric Andersen86349772000-12-18 20:25:50 +0000533 return(run_command_predicate(charptr1));
Eric Andersenfad9c112000-07-25 18:06:52 +0000534}
535
536/* Built-in handler for 'else' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000537static int builtin_else(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000538{
Eric Andersen86349772000-12-18 20:25:50 +0000539 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000540 char* charptr1=cmd->text+5; /* skip over the leading 'else ' */
541
Eric Andersen86349772000-12-18 20:25:50 +0000542 debug_printf( "job=%p entering builtin_else ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
543
544 if (! (cmd->job_context & THEN_EXP_CONTEXT)) {
545 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000546 error_msg("%s `else'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000547 return EXIT_FAILURE;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000548 }
549 /* If the if result was TRUE, skip the 'else' stuff */
Eric Andersen86349772000-12-18 20:25:50 +0000550 if (cmd->job_context & IF_TRUE_CONTEXT) {
Matt Kraai3e856ce2000-12-01 02:55:13 +0000551 return EXIT_SUCCESS;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000552 }
553
Eric Andersen86349772000-12-18 20:25:50 +0000554 cmd->job_context |= ELSE_EXP_CONTEXT;
Eric Andersene9f07fb2000-12-21 18:31:36 +0000555 debug_printf("job=%p builtin_else set job context to %x\n", cmd, cmd->job_context);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000556
557 /* Now run the 'else' command */
Eric Andersen86349772000-12-18 20:25:50 +0000558 debug_printf( "'else' now running '%s'\n", charptr1);
559 return(run_command_predicate(charptr1));
Eric Andersenfad9c112000-07-25 18:06:52 +0000560}
561
562/* Built-in handler for 'fi' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000563static int builtin_fi(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000564{
Eric Andersen86349772000-12-18 20:25:50 +0000565 struct job *cmd = child->family;
566 debug_printf( "job=%p entering builtin_fi ('%s')-- context=%d\n", cmd, "", cmd->job_context);
567 if (! (cmd->job_context & (IF_TRUE_CONTEXT|IF_FALSE_CONTEXT))) {
568 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000569 error_msg("%s `fi'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000570 return EXIT_FAILURE;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000571 }
572 /* Clear out the if and then context bits */
Eric Andersen86349772000-12-18 20:25:50 +0000573 cmd->job_context &= ~(IF_TRUE_CONTEXT|IF_FALSE_CONTEXT|THEN_EXP_CONTEXT|ELSE_EXP_CONTEXT);
574 debug_printf("job=%p builtin_fi set job context to %x\n", cmd, cmd->job_context);
575 shell_context--;
Matt Kraai3e856ce2000-12-01 02:55:13 +0000576 return EXIT_SUCCESS;
Eric Andersenfad9c112000-07-25 18:06:52 +0000577}
578#endif
579
Erik Andersen3522eb12000-03-12 23:49:18 +0000580/* Built-in '.' handler (read-in and execute commands from file) */
Eric Andersen86349772000-12-18 20:25:50 +0000581static int builtin_source(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000582{
Erik Andersen161220c2000-03-16 08:12:48 +0000583 FILE *input;
584 int status;
Eric Andersen8ea28be2001-01-05 20:58:22 +0000585 int fd;
Erik Andersen3522eb12000-03-12 23:49:18 +0000586
Eric Andersen86349772000-12-18 20:25:50 +0000587 if (child->argv[1] == NULL)
Matt Kraai3e856ce2000-12-01 02:55:13 +0000588 return EXIT_FAILURE;
Erik Andersen3522eb12000-03-12 23:49:18 +0000589
Eric Andersen86349772000-12-18 20:25:50 +0000590 input = fopen(child->argv[1], "r");
Erik Andersen161220c2000-03-16 08:12:48 +0000591 if (!input) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000592 printf( "Couldn't open file '%s'\n", child->argv[1]);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000593 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000594 }
Erik Andersend75af992000-03-16 08:09:09 +0000595
Eric Andersen8ea28be2001-01-05 20:58:22 +0000596 fd=fileno(input);
597 mark_open(fd);
Erik Andersen161220c2000-03-16 08:12:48 +0000598 /* Now run the file */
599 status = busy_loop(input);
Matt Kraaidd450a02000-09-13 03:43:36 +0000600 fclose(input);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000601 mark_closed(fd);
Erik Andersen161220c2000-03-16 08:12:48 +0000602 return (status);
Erik Andersen3522eb12000-03-12 23:49:18 +0000603}
604
605/* built-in 'unset VAR' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000606static int builtin_unset(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000607{
Eric Andersen86349772000-12-18 20:25:50 +0000608 if (child->argv[1] == NULL) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000609 printf( "unset: parameter required.\n");
Matt Kraai3e856ce2000-12-01 02:55:13 +0000610 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000611 }
Eric Andersen86349772000-12-18 20:25:50 +0000612 unsetenv(child->argv[1]);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000613 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000614}
615
Eric Andersen70da6a62000-12-20 22:59:16 +0000616#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
Eric Andersen86349772000-12-18 20:25:50 +0000617/* currently used by if/then/else.
Eric Andersene9f07fb2000-12-21 18:31:36 +0000618 *
619 * Reparsing the command line for this purpose is gross,
620 * incorrect, and fundamentally unfixable; in particular,
621 * think about what happens with command substitution.
622 * We really need to pull out the run, wait, return status
623 * functionality out of busy_loop so we can child->argv++
624 * and use that, without going back through parse_command.
Eric Andersen86349772000-12-18 20:25:50 +0000625 */
626static int run_command_predicate(char *cmd)
627{
Eric Andersene5dfced2001-04-09 22:48:12 +0000628 local_pending_command = xstrdup(cmd);
Eric Andersen86349772000-12-18 20:25:50 +0000629 return( busy_loop(NULL));
630}
Eric Andersen70da6a62000-12-20 22:59:16 +0000631#endif
Eric Andersen86349772000-12-18 20:25:50 +0000632
Eric Andersen8ea28be2001-01-05 20:58:22 +0000633static void mark_open(int fd)
634{
635 struct close_me *new = xmalloc(sizeof(struct close_me));
636 new->fd = fd;
637 new->next = close_me_head;
638 close_me_head = new;
639}
640
641static void mark_closed(int fd)
642{
643 struct close_me *tmp;
644 if (close_me_head == NULL || close_me_head->fd != fd)
645 error_msg_and_die("corrupt close_me");
646 tmp = close_me_head;
647 close_me_head = close_me_head->next;
648 free(tmp);
649}
650
651static void close_all()
652{
Eric Andersen702ec592001-03-06 22:17:29 +0000653 struct close_me *c, *tmp;
654 for (c=close_me_head; c; c=tmp) {
655 close(c->fd);
656 tmp=c->next;
657 free(c);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000658 }
659 close_me_head = NULL;
660}
661
662
Erik Andersen3522eb12000-03-12 23:49:18 +0000663/* free up all memory from a job */
Eric Andersen86349772000-12-18 20:25:50 +0000664static void free_job(struct job *cmd)
Erik Andersen3522eb12000-03-12 23:49:18 +0000665{
Erik Andersen161220c2000-03-16 08:12:48 +0000666 int i;
Mark Whitley44a99142001-03-14 17:26:37 +0000667 struct jobset *keep;
Erik Andersen3522eb12000-03-12 23:49:18 +0000668
Eric Andersen86349772000-12-18 20:25:50 +0000669 for (i = 0; i < cmd->num_progs; i++) {
Erik Andersen161220c2000-03-16 08:12:48 +0000670 free(cmd->progs[i].argv);
Eric Andersen86349772000-12-18 20:25:50 +0000671 if (cmd->progs[i].redirects)
672 free(cmd->progs[i].redirects);
Erik Andersen161220c2000-03-16 08:12:48 +0000673 }
Mark Whitley44a99142001-03-14 17:26:37 +0000674 if (cmd->progs)
675 free(cmd->progs);
Erik Andersen161220c2000-03-16 08:12:48 +0000676 if (cmd->text)
677 free(cmd->text);
Mark Whitley44a99142001-03-14 17:26:37 +0000678 if (cmd->cmdbuf)
679 free(cmd->cmdbuf);
680 keep = cmd->job_list;
Eric Andersenec10b9d2000-07-14 01:13:11 +0000681 memset(cmd, 0, sizeof(struct job));
Mark Whitley44a99142001-03-14 17:26:37 +0000682 cmd->job_list = keep;
Erik Andersen3522eb12000-03-12 23:49:18 +0000683}
684
Eric Andersen1ca20a72001-03-21 07:34:27 +0000685/* remove a job from a jobset */
686static void remove_job(struct jobset *j_list, struct job *job)
Erik Andersen3522eb12000-03-12 23:49:18 +0000687{
Eric Andersen86349772000-12-18 20:25:50 +0000688 struct job *prevjob;
Erik Andersen3522eb12000-03-12 23:49:18 +0000689
Eric Andersen86349772000-12-18 20:25:50 +0000690 free_job(job);
Eric Andersen1ca20a72001-03-21 07:34:27 +0000691 if (job == j_list->head) {
692 j_list->head = job->next;
Erik Andersen161220c2000-03-16 08:12:48 +0000693 } else {
Eric Andersen1ca20a72001-03-21 07:34:27 +0000694 prevjob = j_list->head;
Eric Andersen86349772000-12-18 20:25:50 +0000695 while (prevjob->next != job)
696 prevjob = prevjob->next;
697 prevjob->next = job->next;
Erik Andersen161220c2000-03-16 08:12:48 +0000698 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000699
Erik Andersen161220c2000-03-16 08:12:48 +0000700 free(job);
Erik Andersen3522eb12000-03-12 23:49:18 +0000701}
702
703/* Checks to see if any background processes have exited -- if they
704 have, figure out why and see if a job has completed */
Eric Andersen1ca20a72001-03-21 07:34:27 +0000705static void checkjobs(struct jobset *j_list)
Erik Andersen3522eb12000-03-12 23:49:18 +0000706{
Erik Andersen161220c2000-03-16 08:12:48 +0000707 struct job *job;
708 pid_t childpid;
709 int status;
Eric Andersen86349772000-12-18 20:25:50 +0000710 int prognum = 0;
Erik Andersend75af992000-03-16 08:09:09 +0000711
Erik Andersen161220c2000-03-16 08:12:48 +0000712 while ((childpid = waitpid(-1, &status, WNOHANG | WUNTRACED)) > 0) {
Eric Andersen1ca20a72001-03-21 07:34:27 +0000713 for (job = j_list->head; job; job = job->next) {
Eric Andersen86349772000-12-18 20:25:50 +0000714 prognum = 0;
715 while (prognum < job->num_progs &&
716 job->progs[prognum].pid != childpid) prognum++;
717 if (prognum < job->num_progs)
Erik Andersen161220c2000-03-16 08:12:48 +0000718 break;
719 }
720
Eric Andersena1d187a2000-07-17 19:14:41 +0000721 /* This happens on backticked commands */
722 if(job==NULL)
723 return;
724
Erik Andersen161220c2000-03-16 08:12:48 +0000725 if (WIFEXITED(status) || WIFSIGNALED(status)) {
726 /* child exited */
Eric Andersen86349772000-12-18 20:25:50 +0000727 job->running_progs--;
728 job->progs[prognum].pid = 0;
Erik Andersen161220c2000-03-16 08:12:48 +0000729
Eric Andersen86349772000-12-18 20:25:50 +0000730 if (!job->running_progs) {
731 printf(JOB_STATUS_FORMAT, job->jobid, "Done", job->text);
Eric Andersen1ca20a72001-03-21 07:34:27 +0000732 remove_job(j_list, job);
Erik Andersen161220c2000-03-16 08:12:48 +0000733 }
734 } else {
735 /* child stopped */
Eric Andersen86349772000-12-18 20:25:50 +0000736 job->stopped_progs++;
737 job->progs[prognum].is_stopped = 1;
Erik Andersen161220c2000-03-16 08:12:48 +0000738
Eric Andersen86349772000-12-18 20:25:50 +0000739 if (job->stopped_progs == job->num_progs) {
740 printf(JOB_STATUS_FORMAT, job->jobid, "Stopped",
Erik Andersen161220c2000-03-16 08:12:48 +0000741 job->text);
742 }
743 }
Erik Andersend75af992000-03-16 08:09:09 +0000744 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000745
Erik Andersen161220c2000-03-16 08:12:48 +0000746 if (childpid == -1 && errno != ECHILD)
Matt Kraaia9819b22000-12-22 01:48:07 +0000747 perror_msg("waitpid");
Erik Andersen3522eb12000-03-12 23:49:18 +0000748}
749
Eric Andersene9f07fb2000-12-21 18:31:36 +0000750/* squirrel != NULL means we squirrel away copies of stdin, stdout,
751 * and stderr if they are redirected. */
752static int setup_redirects(struct child_prog *prog, int squirrel[])
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000753{
754 int i;
755 int openfd;
756 int mode = O_RDONLY;
Eric Andersen86349772000-12-18 20:25:50 +0000757 struct redir_struct *redir = prog->redirects;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000758
Eric Andersen86349772000-12-18 20:25:50 +0000759 for (i = 0; i < prog->num_redirects; i++, redir++) {
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000760 switch (redir->type) {
761 case REDIRECT_INPUT:
762 mode = O_RDONLY;
763 break;
764 case REDIRECT_OVERWRITE:
Eric Andersen46f0beb2000-11-14 21:59:22 +0000765 mode = O_WRONLY | O_CREAT | O_TRUNC;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000766 break;
767 case REDIRECT_APPEND:
Eric Andersen46f0beb2000-11-14 21:59:22 +0000768 mode = O_WRONLY | O_CREAT | O_APPEND;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000769 break;
770 }
771
772 openfd = open(redir->filename, mode, 0666);
773 if (openfd < 0) {
774 /* this could get lost if stderr has been redirected, but
775 bash and ash both lose it as well (though zsh doesn't!) */
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000776 perror_msg("error opening %s", redir->filename);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000777 return 1;
778 }
779
780 if (openfd != redir->fd) {
Eric Andersene9f07fb2000-12-21 18:31:36 +0000781 if (squirrel && redir->fd < 3) {
782 squirrel[redir->fd] = dup(redir->fd);
783 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000784 dup2(openfd, redir->fd);
785 close(openfd);
786 }
787 }
788
789 return 0;
790}
791
Eric Andersene9f07fb2000-12-21 18:31:36 +0000792static void restore_redirects(int squirrel[])
793{
794 int i, fd;
795 for (i=0; i<3; i++) {
796 fd = squirrel[i];
797 if (fd != -1) {
798 /* No error checking. I sure wouldn't know what
799 * to do with an error if I found one! */
800 dup2(fd, i);
801 close(fd);
802 }
803 }
804}
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000805
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000806static inline void cmdedit_set_initial_prompt(void)
Eric Andersen22332fd2001-01-30 23:40:39 +0000807{
Mark Whitleyf5949862001-03-14 00:29:14 +0000808#ifdef BB_FEATURE_SH_SIMPLE_PROMPT
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000809 PS1 = NULL;
Eric Andersen22332fd2001-01-30 23:40:39 +0000810#else
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000811 PS1 = getenv("PS1");
Eric Andersene5dfced2001-04-09 22:48:12 +0000812 if(PS1==0)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000813 PS1 = "\\w \\$ ";
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000814#endif
Eric Andersen09acc062001-01-04 11:10:38 +0000815}
816
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000817static inline void setup_prompt_string(char **prompt_str)
818{
Mark Whitleyf5949862001-03-14 00:29:14 +0000819#ifdef BB_FEATURE_SH_SIMPLE_PROMPT
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000820 /* Set up the prompt */
821 if (shell_context == 0) {
822 if (PS1)
823 free(PS1);
824 PS1=xmalloc(strlen(cwd)+4);
825 sprintf(PS1, "%s %s", cwd, ( geteuid() != 0 ) ? "$ ":"# ");
826 *prompt_str = PS1;
827 } else {
828 *prompt_str = PS2;
829 }
830#else
831 *prompt_str = (shell_context==0)? PS1 : PS2;
832#endif
833}
Eric Andersen22332fd2001-01-30 23:40:39 +0000834
Eric Andersen09acc062001-01-04 11:10:38 +0000835static int get_command(FILE * source, char *command)
836{
837 char *prompt_str;
Eric Andersen8ea28be2001-01-05 20:58:22 +0000838
Eric Andersen1c314ad2000-06-28 16:56:25 +0000839 if (source == NULL) {
840 if (local_pending_command) {
841 /* a command specified (-c option): return it & mark it done */
842 strcpy(command, local_pending_command);
843 free(local_pending_command);
844 local_pending_command = NULL;
845 return 0;
846 }
847 return 1;
848 }
849
Erik Andersen161220c2000-03-16 08:12:48 +0000850 if (source == stdin) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000851 setup_prompt_string(&prompt_str);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000852
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000853#ifdef BB_FEATURE_COMMAND_EDITING
Eric Andersen501c88b2000-07-28 15:14:45 +0000854 /*
855 ** enable command line editing only while a command line
856 ** is actually being read; otherwise, we'll end up bequeathing
857 ** atexit() handlers and other unwanted stuff to our
858 ** child processes (rob@sysgo.de)
859 */
Eric Andersen86349772000-12-18 20:25:50 +0000860 cmdedit_read_input(prompt_str, command);
Eric Andersen501c88b2000-07-28 15:14:45 +0000861 cmdedit_terminate();
Erik Andersen161220c2000-03-16 08:12:48 +0000862 return 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +0000863#else
Eric Andersen8ea28be2001-01-05 20:58:22 +0000864 fputs(prompt_str, stdout);
Erik Andersend75af992000-03-16 08:09:09 +0000865#endif
Erik Andersen161220c2000-03-16 08:12:48 +0000866 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000867
Erik Andersen161220c2000-03-16 08:12:48 +0000868 if (!fgets(command, BUFSIZ - 2, source)) {
869 if (source == stdin)
870 printf("\n");
871 return 1;
872 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000873
Erik Andersen161220c2000-03-16 08:12:48 +0000874 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000875}
876
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000877#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000878static char* itoa(register int i)
879{
Eric Andersenb558e762000-11-30 22:43:16 +0000880 static char a[7]; /* Max 7 ints */
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000881 register char *b = a + sizeof(a) - 1;
882 int sign = (i < 0);
883
884 if (sign)
885 i = -i;
886 *b = 0;
887 do
888 {
889 *--b = '0' + (i % 10);
890 i /= 10;
891 }
892 while (i);
893 if (sign)
894 *--b = '-';
895 return b;
896}
Eric Andersenca604592001-03-08 17:17:13 +0000897#endif
898
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000899#if defined BB_FEATURE_SH_ENVIRONMENT && ! defined BB_FEATURE_SH_WORDEXP
Eric Andersen1ca20a72001-03-21 07:34:27 +0000900char * strsep_space( char *string, int * ix)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000901{
902 char *token, *begin;
903
904 begin = string;
905
906 /* Short circuit the trivial case */
Eric Andersen1ca20a72001-03-21 07:34:27 +0000907 if ( !string || ! string[*ix])
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000908 return NULL;
909
910 /* Find the end of the token. */
Eric Andersen1ca20a72001-03-21 07:34:27 +0000911 while( string && string[*ix] && !isspace(string[*ix]) ) {
912 (*ix)++;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000913 }
914
915 /* Find the end of any whitespace trailing behind
916 * the token and let that be part of the token */
Eric Andersen1ca20a72001-03-21 07:34:27 +0000917 while( string && string[*ix] && isspace(string[*ix]) ) {
918 (*ix)++;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000919 }
920
Eric Andersen1ca20a72001-03-21 07:34:27 +0000921 if (! string && *ix==0) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000922 /* Nothing useful was found */
923 return NULL;
924 }
925
Eric Andersen1ca20a72001-03-21 07:34:27 +0000926 token = xmalloc(*ix+1);
927 token[*ix] = '\0';
928 strncpy(token, string, *ix);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000929
930 return token;
931}
932#endif
933
934
Eric Andersenca604592001-03-08 17:17:13 +0000935static int expand_arguments(char *command)
936{
937#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen13d1fa12001-03-08 23:59:45 +0000938 expand_t expand_result;
Eric Andersenca604592001-03-08 17:17:13 +0000939 char *src, *dst, *var;
Eric Andersen1ca20a72001-03-21 07:34:27 +0000940 int ix = 0;
Eric Andersenca604592001-03-08 17:17:13 +0000941 int i=0, length, total_length=0, retval;
Eric Andersen195743f2001-03-09 19:21:37 +0000942 const char *out_of_space = "out of space during expansion";
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000943#endif
944
Eric Andersenca604592001-03-08 17:17:13 +0000945 /* get rid of the terminating \n */
946 chomp(command);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000947
948 /* Fix up escape sequences to be the Real Thing(tm) */
Eric Andersen1ca20a72001-03-21 07:34:27 +0000949 while( command && command[ix]) {
950 if (command[ix] == '\\') {
Eric Andersene5dfced2001-04-09 22:48:12 +0000951 const char *tmp = command+ix+1;
Eric Andersen1ca20a72001-03-21 07:34:27 +0000952 command[ix] = process_escape_sequence( &tmp );
953 memmove(command+ix + 1, tmp, strlen(tmp)+1);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000954 }
Eric Andersen1ca20a72001-03-21 07:34:27 +0000955 ix++;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000956 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000957
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000958#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +0000959
Eric Andersen13d1fa12001-03-08 23:59:45 +0000960
Eric Andersen34174472001-03-17 00:20:10 +0000961#ifdef BB_FEATURE_SH_WORDEXP
Eric Andersenca604592001-03-08 17:17:13 +0000962 /* This first part uses wordexp() which is a wonderful C lib
963 * function which expands nearly everything. */
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000964 retval = wordexp (command, &expand_result, WRDE_SHOWERR);
Eric Andersenca604592001-03-08 17:17:13 +0000965 if (retval == WRDE_NOSPACE) {
966 /* Mem may have been allocated... */
Eric Andersen13d1fa12001-03-08 23:59:45 +0000967 wordfree (&expand_result);
Eric Andersen195743f2001-03-09 19:21:37 +0000968 error_msg(out_of_space);
Eric Andersenca604592001-03-08 17:17:13 +0000969 return FALSE;
970 }
971 if (retval < 0) {
972 /* Some other error. */
973 error_msg("syntax error");
974 return FALSE;
975 }
976
Eric Andersen1365bb72001-03-10 07:12:12 +0000977 if (expand_result.we_wordc > 0) {
978 /* Convert from char** (one word per string) to a simple char*,
979 * but don't overflow command which is BUFSIZ in length */
980 *command = '\0';
981 while (i < expand_result.we_wordc && total_length < BUFSIZ) {
982 length=strlen(expand_result.we_wordv[i])+1;
983 if (BUFSIZ-total_length-length <= 0) {
984 error_msg(out_of_space);
985 return FALSE;
986 }
987 strcat(command+total_length, expand_result.we_wordv[i++]);
988 strcat(command+total_length, " ");
989 total_length+=length;
Eric Andersenca604592001-03-08 17:17:13 +0000990 }
Eric Andersen1365bb72001-03-10 07:12:12 +0000991 wordfree (&expand_result);
Eric Andersenca604592001-03-08 17:17:13 +0000992 }
Eric Andersen13d1fa12001-03-08 23:59:45 +0000993#else
994
Eric Andersen195743f2001-03-09 19:21:37 +0000995 /* Ok. They don't have a recent glibc and they don't have uClibc. Chances
996 * are about 100% they don't have wordexp(). So instead the best we can do
997 * is use glob and then fixup environment variables and such ourselves.
998 * This is better then nothing, but certainly not perfect */
Eric Andersen13d1fa12001-03-08 23:59:45 +0000999
Eric Andersen195743f2001-03-09 19:21:37 +00001000 /* It turns out that glob is very stupid. We have to feed it one word at a
1001 * time since it can't cope with a full string. Here we convert command
1002 * (char*) into cmd (char**, one word per string) */
Eric Andersen13d1fa12001-03-08 23:59:45 +00001003 {
1004
Eric Andersen4e7244e2001-03-14 00:49:52 +00001005 int flags = GLOB_NOCHECK
1006#ifdef GLOB_BRACE
1007 | GLOB_BRACE
1008#endif
1009#ifdef GLOB_TILDE
1010 | GLOB_TILDE
1011#endif
1012 ;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001013 char *tmpcmd, *cmd, *cmd_copy;
Eric Andersen13d1fa12001-03-08 23:59:45 +00001014 /* We need a clean copy, so strsep can mess up the copy while
Eric Andersen195743f2001-03-09 19:21:37 +00001015 * we write stuff into the original (in a minute) */
Eric Andersen4987bbf2001-03-12 21:36:49 +00001016 cmd = cmd_copy = strdup(command);
Eric Andersen195743f2001-03-09 19:21:37 +00001017 *command = '\0';
Eric Andersen1ca20a72001-03-21 07:34:27 +00001018 for (ix = 0, tmpcmd = cmd;
1019 (tmpcmd = strsep_space(cmd, &ix)) != NULL; cmd += ix, ix=0) {
Eric Andersen13d1fa12001-03-08 23:59:45 +00001020 if (*tmpcmd == '\0')
1021 break;
1022 retval = glob(tmpcmd, flags, NULL, &expand_result);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001023 free(tmpcmd); /* Free mem allocated by strsep_space */
Eric Andersen13d1fa12001-03-08 23:59:45 +00001024 if (retval == GLOB_NOSPACE) {
1025 /* Mem may have been allocated... */
1026 globfree (&expand_result);
Eric Andersen195743f2001-03-09 19:21:37 +00001027 error_msg(out_of_space);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001028 return FALSE;
Eric Andersen195743f2001-03-09 19:21:37 +00001029 } else if (retval != 0) {
1030 /* Some other error. GLOB_NOMATCH shouldn't
1031 * happen because of the GLOB_NOCHECK flag in
1032 * the glob call. */
Eric Andersen13d1fa12001-03-08 23:59:45 +00001033 error_msg("syntax error");
1034 return FALSE;
Eric Andersen195743f2001-03-09 19:21:37 +00001035 } else {
Eric Andersen13d1fa12001-03-08 23:59:45 +00001036 /* Convert from char** (one word per string) to a simple char*,
1037 * but don't overflow command which is BUFSIZ in length */
Eric Andersen195743f2001-03-09 19:21:37 +00001038 for (i=0; i < expand_result.gl_pathc; i++) {
Eric Andersen1ef92682001-03-14 19:33:45 +00001039 length=strlen(expand_result.gl_pathv[i]);
Eric Andersen4aaefc22001-03-15 23:01:19 +00001040 if (total_length+length+1 >= BUFSIZ) {
Eric Andersen195743f2001-03-09 19:21:37 +00001041 error_msg(out_of_space);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001042 return FALSE;
1043 }
Eric Andersen4aaefc22001-03-15 23:01:19 +00001044 if (i>0) {
1045 strcat(command+total_length, " ");
1046 total_length+=1;
1047 }
Eric Andersen195743f2001-03-09 19:21:37 +00001048 strcat(command+total_length, expand_result.gl_pathv[i]);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001049 total_length+=length;
1050 }
Eric Andersen195743f2001-03-09 19:21:37 +00001051 globfree (&expand_result);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001052 }
1053 }
Eric Andersen4987bbf2001-03-12 21:36:49 +00001054 free(cmd_copy);
Eric Andersen195743f2001-03-09 19:21:37 +00001055 trim(command);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001056 }
Eric Andersenca604592001-03-08 17:17:13 +00001057
Eric Andersen13d1fa12001-03-08 23:59:45 +00001058#endif
Eric Andersen195743f2001-03-09 19:21:37 +00001059
Eric Andersenca604592001-03-08 17:17:13 +00001060 /* Now do the shell variable substitutions which
1061 * wordexp can't do for us, namely $? and $! */
1062 src = command;
Eric Andersencaeeb362001-02-20 06:38:44 +00001063 while((dst = strchr(src,'$')) != NULL){
Eric Andersen195743f2001-03-09 19:21:37 +00001064 var = NULL;
1065 switch(*(dst+1)) {
1066 case '?':
1067 var = itoa(last_return_code);
1068 break;
1069 case '!':
1070 if (last_bg_pid==-1)
1071 *(var)='\0';
1072 else
1073 var = itoa(last_bg_pid);
1074 break;
Eric Andersen32f8c172001-03-08 17:44:37 +00001075 /* Everything else like $$, $#, $[0-9], etc should all be
1076 * expanded by wordexp(), so we can in theory skip that stuff
1077 * here, but just to be on the safe side (i.e. since uClibc
1078 * wordexp doesn't do this stuff yet), lets leave it in for
1079 * now. */
Eric Andersen195743f2001-03-09 19:21:37 +00001080 case '$':
1081 var = itoa(getpid());
1082 break;
1083 case '#':
1084 var = itoa(argc-1);
1085 break;
1086 case '0':case '1':case '2':case '3':case '4':
1087 case '5':case '6':case '7':case '8':case '9':
1088 {
Eric Andersen1ca20a72001-03-21 07:34:27 +00001089 int ixx=*(dst + 1)-48;
1090 if (ixx >= argc) {
Eric Andersen195743f2001-03-09 19:21:37 +00001091 var='\0';
1092 } else {
Eric Andersen1ca20a72001-03-21 07:34:27 +00001093 var = argv[ixx];
Eric Andersen32f8c172001-03-08 17:44:37 +00001094 }
Eric Andersen195743f2001-03-09 19:21:37 +00001095 }
1096 break;
Eric Andersen32f8c172001-03-08 17:44:37 +00001097
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001098 }
Eric Andersencaeeb362001-02-20 06:38:44 +00001099 if (var) {
Eric Andersen195743f2001-03-09 19:21:37 +00001100 /* a single character construction was found, and
1101 * already handled in the case statement */
1102 src=dst+2;
Eric Andersen32f8c172001-03-08 17:44:37 +00001103 } else {
Eric Andersen195743f2001-03-09 19:21:37 +00001104 /* Looks like an environment variable */
1105 char delim_hold;
Eric Andersen34174472001-03-17 00:20:10 +00001106 int num_skip_chars=0;
Eric Andersen74e056b2001-03-09 20:34:46 +00001107 int dstlen = strlen(dst);
1108 /* Is this a ${foo} type variable? */
1109 if (dstlen >=2 && *(dst+1) == '{') {
1110 src=strchr(dst+1, '}');
Eric Andersen34174472001-03-17 00:20:10 +00001111 num_skip_chars=1;
Eric Andersen74e056b2001-03-09 20:34:46 +00001112 } else {
Eric Andersen34174472001-03-17 00:20:10 +00001113 src=dst+1;
1114 while(isalnum(*src) || *src=='_') src++;
Eric Andersen74e056b2001-03-09 20:34:46 +00001115 }
Eric Andersen195743f2001-03-09 19:21:37 +00001116 if (src == NULL) {
Eric Andersen74e056b2001-03-09 20:34:46 +00001117 src = dst+dstlen;
Eric Andersen32f8c172001-03-08 17:44:37 +00001118 }
Eric Andersen195743f2001-03-09 19:21:37 +00001119 delim_hold=*src;
1120 *src='\0'; /* temporary */
Eric Andersen34174472001-03-17 00:20:10 +00001121 var = getenv(dst + 1 + num_skip_chars);
Eric Andersen195743f2001-03-09 19:21:37 +00001122 *src=delim_hold;
Eric Andersen34174472001-03-17 00:20:10 +00001123 src += num_skip_chars;
Eric Andersen195743f2001-03-09 19:21:37 +00001124 }
1125 if (var == NULL) {
1126 /* Seems we got an un-expandable variable. So delete it. */
1127 var = "";
1128 }
1129 {
1130 int subst_len = strlen(var);
1131 int trail_len = strlen(src);
1132 if (dst+subst_len+trail_len >= command+BUFSIZ) {
1133 error_msg(out_of_space);
1134 return FALSE;
1135 }
1136 /* Move stuff to the end of the string to accommodate
1137 * filling the created gap with the new stuff */
Eric Andersen34174472001-03-17 00:20:10 +00001138 memmove(dst+subst_len, src, trail_len+1);
Eric Andersen195743f2001-03-09 19:21:37 +00001139 /* Now copy in the new stuff */
1140 memcpy(dst, var, subst_len);
1141 src = dst+subst_len;
Eric Andersencaeeb362001-02-20 06:38:44 +00001142 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001143 }
Eric Andersenca604592001-03-08 17:17:13 +00001144
1145#endif
1146 return TRUE;
Erik Andersen3522eb12000-03-12 23:49:18 +00001147}
1148
Eric Andersen86349772000-12-18 20:25:50 +00001149/* Return cmd->num_progs as 0 if no command is present (e.g. an empty
1150 line). If a valid command is found, command_ptr is set to point to
Erik Andersen3522eb12000-03-12 23:49:18 +00001151 the beginning of the next command (if the original command had more
1152 then one job associated with it) or NULL if no more commands are
1153 present. */
Eric Andersen86349772000-12-18 20:25:50 +00001154static int parse_command(char **command_ptr, struct job *job, int *inbg)
Erik Andersen3522eb12000-03-12 23:49:18 +00001155{
Erik Andersen161220c2000-03-16 08:12:48 +00001156 char *command;
Eric Andersen86349772000-12-18 20:25:50 +00001157 char *return_command = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001158 char *src, *buf, *chptr;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001159 int argc_l = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001160 int done = 0;
Eric Andersen86349772000-12-18 20:25:50 +00001161 int argv_alloced;
Erik Andersen161220c2000-03-16 08:12:48 +00001162 int i;
1163 char quote = '\0';
1164 int count;
Eric Andersen86349772000-12-18 20:25:50 +00001165 struct child_prog *prog;
Erik Andersen3522eb12000-03-12 23:49:18 +00001166
Erik Andersen161220c2000-03-16 08:12:48 +00001167 /* skip leading white space */
Eric Andersen86349772000-12-18 20:25:50 +00001168 while (**command_ptr && isspace(**command_ptr))
1169 (*command_ptr)++;
Erik Andersen3522eb12000-03-12 23:49:18 +00001170
Erik Andersen161220c2000-03-16 08:12:48 +00001171 /* this handles empty lines or leading '#' characters */
Eric Andersen86349772000-12-18 20:25:50 +00001172 if (!**command_ptr || (**command_ptr == '#')) {
1173 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001174 return 0;
1175 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001176
Eric Andersen86349772000-12-18 20:25:50 +00001177 *inbg = 0;
1178 job->num_progs = 1;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001179 job->progs = xmalloc(sizeof(*job->progs));
Erik Andersen3522eb12000-03-12 23:49:18 +00001180
Erik Andersen161220c2000-03-16 08:12:48 +00001181 /* We set the argv elements to point inside of this string. The
Eric Andersen86349772000-12-18 20:25:50 +00001182 memory is freed by free_job(). Allocate twice the original
Eric Andersenb54833c2000-07-03 23:56:26 +00001183 length in case we need to quote every single character.
Erik Andersen3522eb12000-03-12 23:49:18 +00001184
Erik Andersen161220c2000-03-16 08:12:48 +00001185 Getting clean memory relieves us of the task of NULL
1186 terminating things and makes the rest of this look a bit
1187 cleaner (though it is, admittedly, a tad less efficient) */
Eric Andersen86349772000-12-18 20:25:50 +00001188 job->cmdbuf = command = xcalloc(2*strlen(*command_ptr) + 1, sizeof(char));
Erik Andersen161220c2000-03-16 08:12:48 +00001189 job->text = NULL;
Erik Andersen3522eb12000-03-12 23:49:18 +00001190
Erik Andersen161220c2000-03-16 08:12:48 +00001191 prog = job->progs;
Eric Andersen86349772000-12-18 20:25:50 +00001192 prog->num_redirects = 0;
1193 prog->redirects = NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001194 prog->is_stopped = 0;
1195 prog->family = job;
Erik Andersen3522eb12000-03-12 23:49:18 +00001196
Eric Andersen86349772000-12-18 20:25:50 +00001197 argv_alloced = 5;
1198 prog->argv = xmalloc(sizeof(*prog->argv) * argv_alloced);
1199 prog->argv[0] = job->cmdbuf;
Erik Andersen3522eb12000-03-12 23:49:18 +00001200
Erik Andersen161220c2000-03-16 08:12:48 +00001201 buf = command;
Eric Andersen86349772000-12-18 20:25:50 +00001202 src = *command_ptr;
Erik Andersen161220c2000-03-16 08:12:48 +00001203 while (*src && !done) {
1204 if (quote == *src) {
1205 quote = '\0';
1206 } else if (quote) {
1207 if (*src == '\\') {
1208 src++;
1209 if (!*src) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001210 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001211 free_job(job);
Erik Andersen161220c2000-03-16 08:12:48 +00001212 return 1;
1213 }
1214
1215 /* in shell, "\'" should yield \' */
Eric Andersenb2356f62000-12-11 19:14:40 +00001216 if (*src != quote) {
Erik Andersen161220c2000-03-16 08:12:48 +00001217 *buf++ = '\\';
Eric Andersenb2356f62000-12-11 19:14:40 +00001218 *buf++ = '\\';
1219 }
Erik Andersen161220c2000-03-16 08:12:48 +00001220 } else if (*src == '*' || *src == '?' || *src == '[' ||
1221 *src == ']') *buf++ = '\\';
1222 *buf++ = *src;
1223 } else if (isspace(*src)) {
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001224 if (*prog->argv[argc_l]) {
1225 buf++, argc_l++;
Erik Andersen161220c2000-03-16 08:12:48 +00001226 /* +1 here leaves room for the NULL which ends argv */
Eric Andersen86349772000-12-18 20:25:50 +00001227 if ((argc_l + 1) == argv_alloced) {
1228 argv_alloced += 5;
Matt Kraaib8907522000-09-13 02:08:21 +00001229 prog->argv = xrealloc(prog->argv,
1230 sizeof(*prog->argv) *
Eric Andersen86349772000-12-18 20:25:50 +00001231 argv_alloced);
Erik Andersen161220c2000-03-16 08:12:48 +00001232 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001233 prog->argv[argc_l] = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001234 }
1235 } else
1236 switch (*src) {
1237 case '"':
1238 case '\'':
1239 quote = *src;
1240 break;
1241
1242 case '#': /* comment */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001243 if (*(src-1)== '$')
1244 *buf++ = *src;
1245 else
1246 done = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001247 break;
1248
Eric Andersen86349772000-12-18 20:25:50 +00001249 case '>': /* redirects */
Erik Andersen161220c2000-03-16 08:12:48 +00001250 case '<':
Eric Andersen86349772000-12-18 20:25:50 +00001251 i = prog->num_redirects++;
1252 prog->redirects = xrealloc(prog->redirects,
1253 sizeof(*prog->redirects) *
Matt Kraaib8907522000-09-13 02:08:21 +00001254 (i + 1));
Erik Andersen161220c2000-03-16 08:12:48 +00001255
Eric Andersen86349772000-12-18 20:25:50 +00001256 prog->redirects[i].fd = -1;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001257 if (buf != prog->argv[argc_l]) {
Erik Andersen161220c2000-03-16 08:12:48 +00001258 /* the stuff before this character may be the file number
1259 being redirected */
Eric Andersen86349772000-12-18 20:25:50 +00001260 prog->redirects[i].fd =
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001261 strtol(prog->argv[argc_l], &chptr, 10);
Erik Andersen161220c2000-03-16 08:12:48 +00001262
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001263 if (*chptr && *prog->argv[argc_l]) {
1264 buf++, argc_l++;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001265 prog->argv[argc_l] = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001266 }
1267 }
1268
Eric Andersen86349772000-12-18 20:25:50 +00001269 if (prog->redirects[i].fd == -1) {
Erik Andersen161220c2000-03-16 08:12:48 +00001270 if (*src == '>')
Eric Andersen86349772000-12-18 20:25:50 +00001271 prog->redirects[i].fd = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001272 else
Eric Andersen86349772000-12-18 20:25:50 +00001273 prog->redirects[i].fd = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001274 }
1275
1276 if (*src++ == '>') {
1277 if (*src == '>')
Eric Andersen86349772000-12-18 20:25:50 +00001278 prog->redirects[i].type =
Erik Andersen161220c2000-03-16 08:12:48 +00001279 REDIRECT_APPEND, src++;
1280 else
Eric Andersen86349772000-12-18 20:25:50 +00001281 prog->redirects[i].type = REDIRECT_OVERWRITE;
Erik Andersen161220c2000-03-16 08:12:48 +00001282 } else {
Eric Andersen86349772000-12-18 20:25:50 +00001283 prog->redirects[i].type = REDIRECT_INPUT;
Erik Andersen161220c2000-03-16 08:12:48 +00001284 }
1285
1286 /* This isn't POSIX sh compliant. Oh well. */
1287 chptr = src;
1288 while (isspace(*chptr))
1289 chptr++;
1290
1291 if (!*chptr) {
Mark Whitley44a99142001-03-14 17:26:37 +00001292 error_msg("file name expected after %c", *(src-1));
Eric Andersen86349772000-12-18 20:25:50 +00001293 free_job(job);
1294 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001295 return 1;
1296 }
1297
Eric Andersen86349772000-12-18 20:25:50 +00001298 prog->redirects[i].filename = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001299 while (*chptr && !isspace(*chptr))
1300 *buf++ = *chptr++;
1301
1302 src = chptr - 1; /* we src++ later */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001303 prog->argv[argc_l] = ++buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001304 break;
1305
1306 case '|': /* pipe */
1307 /* finish this command */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001308 if (*prog->argv[argc_l])
1309 argc_l++;
1310 if (!argc_l) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001311 error_msg("empty command in pipe");
Eric Andersen86349772000-12-18 20:25:50 +00001312 free_job(job);
1313 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001314 return 1;
1315 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001316 prog->argv[argc_l] = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001317
1318 /* and start the next */
Eric Andersen86349772000-12-18 20:25:50 +00001319 job->num_progs++;
Matt Kraaib8907522000-09-13 02:08:21 +00001320 job->progs = xrealloc(job->progs,
Eric Andersen86349772000-12-18 20:25:50 +00001321 sizeof(*job->progs) * job->num_progs);
1322 prog = job->progs + (job->num_progs - 1);
1323 prog->num_redirects = 0;
1324 prog->redirects = NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001325 prog->is_stopped = 0;
1326 prog->family = job;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001327 argc_l = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001328
Eric Andersen86349772000-12-18 20:25:50 +00001329 argv_alloced = 5;
1330 prog->argv = xmalloc(sizeof(*prog->argv) * argv_alloced);
Erik Andersen161220c2000-03-16 08:12:48 +00001331 prog->argv[0] = ++buf;
1332
1333 src++;
1334 while (*src && isspace(*src))
1335 src++;
1336
1337 if (!*src) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001338 error_msg("empty command in pipe");
Eric Andersen86349772000-12-18 20:25:50 +00001339 free_job(job);
1340 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001341 return 1;
1342 }
1343 src--; /* we'll ++ it at the end of the loop */
1344
1345 break;
1346
1347 case '&': /* background */
Eric Andersen86349772000-12-18 20:25:50 +00001348 *inbg = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001349 case ';': /* multiple commands */
1350 done = 1;
Eric Andersen86349772000-12-18 20:25:50 +00001351 return_command = *command_ptr + (src - *command_ptr) + 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001352 break;
1353
Eric Andersena1d187a2000-07-17 19:14:41 +00001354#ifdef BB_FEATURE_SH_BACKTICKS
Eric Andersenec10b9d2000-07-14 01:13:11 +00001355 case '`':
1356 /* Exec a backtick-ed command */
Eric Andersen8ea28be2001-01-05 20:58:22 +00001357 /* Besides any previous brokenness, I have not
1358 * updated backtick handling for close_me support.
1359 * I don't know if it needs it or not. -- LRD */
Eric Andersenec10b9d2000-07-14 01:13:11 +00001360 {
Eric Andersena1d187a2000-07-17 19:14:41 +00001361 char* charptr1=NULL, *charptr2;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001362 char* ptr=NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001363 struct job *newjob;
1364 struct jobset njob_list = { NULL, NULL };
Eric Andersena1d187a2000-07-17 19:14:41 +00001365 int pipefd[2];
1366 int size;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001367
1368 ptr=strchr(++src, '`');
1369 if (ptr==NULL) {
1370 fprintf(stderr, "Unmatched '`' in command\n");
Eric Andersen86349772000-12-18 20:25:50 +00001371 free_job(job);
Eric Andersenec10b9d2000-07-14 01:13:11 +00001372 return 1;
1373 }
1374
Eric Andersena1d187a2000-07-17 19:14:41 +00001375 /* Make some space to hold just the backticked command */
Eric Andersen6efc48c2000-07-18 08:16:39 +00001376 charptr1 = charptr2 = xmalloc(1+ptr-src);
Matt Kraai0b2da462000-09-19 06:46:44 +00001377 memcpy(charptr1, src, ptr-src);
1378 charptr1[ptr-src] = '\0';
Eric Andersen86349772000-12-18 20:25:50 +00001379 newjob = xmalloc(sizeof(struct job));
1380 newjob->job_list = &njob_list;
Eric Andersena1d187a2000-07-17 19:14:41 +00001381 /* Now parse and run the backticked command */
Eric Andersen86349772000-12-18 20:25:50 +00001382 if (!parse_command(&charptr1, newjob, inbg)
1383 && newjob->num_progs) {
Eric Andersena1d187a2000-07-17 19:14:41 +00001384 pipe(pipefd);
Eric Andersen86349772000-12-18 20:25:50 +00001385 run_command(newjob, 0, pipefd);
Eric Andersenec10b9d2000-07-14 01:13:11 +00001386 }
Eric Andersen86349772000-12-18 20:25:50 +00001387 checkjobs(job->job_list);
1388 free_job(newjob); /* doesn't actually free newjob,
1389 looks like a memory leak */
Eric Andersen6efc48c2000-07-18 08:16:39 +00001390 free(charptr2);
1391
1392 /* Make a copy of any stuff left over in the command
1393 * line after the second backtick */
1394 charptr2 = xmalloc(strlen(ptr)+1);
1395 memcpy(charptr2, ptr+1, strlen(ptr));
1396
Eric Andersenec10b9d2000-07-14 01:13:11 +00001397
Eric Andersena1d187a2000-07-17 19:14:41 +00001398 /* Copy the output from the backtick-ed command into the
1399 * command line, making extra room as needed */
1400 --src;
1401 charptr1 = xmalloc(BUFSIZ);
Mark Whitleyf57c9442000-12-07 19:56:48 +00001402 while ( (size=full_read(pipefd[0], charptr1, BUFSIZ-1)) >0) {
Eric Andersen86349772000-12-18 20:25:50 +00001403 int newsize=src - *command_ptr + size + 1 + strlen(charptr2);
1404 if (newsize > BUFSIZ) {
1405 *command_ptr=xrealloc(*command_ptr, newsize);
Eric Andersena1d187a2000-07-17 19:14:41 +00001406 }
1407 memcpy(src, charptr1, size);
1408 src+=size;
1409 }
1410 free(charptr1);
1411 close(pipefd[0]);
1412 if (*(src-1)=='\n')
1413 --src;
1414
Eric Andersen86349772000-12-18 20:25:50 +00001415 /* Now paste into the *command_ptr all the stuff
Eric Andersena1d187a2000-07-17 19:14:41 +00001416 * leftover after the second backtick */
Matt Kraaicbbe4d62000-09-14 00:26:50 +00001417 memcpy(src, charptr2, strlen(charptr2)+1);
Eric Andersena1d187a2000-07-17 19:14:41 +00001418 free(charptr2);
1419
Eric Andersen86349772000-12-18 20:25:50 +00001420 /* Now recursively call parse_command to deal with the new
Eric Andersena1d187a2000-07-17 19:14:41 +00001421 * and improved version of the command line with the backtick
1422 * results expanded in place... */
Eric Andersen86349772000-12-18 20:25:50 +00001423 {
1424 struct jobset *jl=job->job_list;
1425 free_job(job);
1426 job->job_list = jl;
1427 }
1428 return(parse_command(command_ptr, job, inbg));
Eric Andersenec10b9d2000-07-14 01:13:11 +00001429 }
1430 break;
Eric Andersena1d187a2000-07-17 19:14:41 +00001431#endif // BB_FEATURE_SH_BACKTICKS
Matt Kraai131241f2000-09-14 00:43:20 +00001432
1433 case '\\':
1434 src++;
1435 if (!*src) {
Eric Andersen86349772000-12-18 20:25:50 +00001436/* This is currently a little broken... */
1437#ifdef HANDLE_CONTINUATION_CHARS
1438 /* They fed us a continuation char, so continue reading stuff
1439 * on the next line, then tack that onto the end of the current
1440 * command */
1441 char *command;
1442 int newsize;
1443 printf("erik: found a continue char at EOL...\n");
1444 command = (char *) xcalloc(BUFSIZ, sizeof(char));
1445 if (get_command(input, command)) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001446 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001447 free(command);
1448 free_job(job);
1449 return 1;
1450 }
1451 newsize = strlen(*command_ptr) + strlen(command) + 2;
1452 if (newsize > BUFSIZ) {
1453 printf("erik: doing realloc\n");
1454 *command_ptr=xrealloc(*command_ptr, newsize);
1455 }
1456 printf("erik: A: *command_ptr='%s'\n", *command_ptr);
1457 memcpy(--src, command, strlen(command));
1458 printf("erik: B: *command_ptr='%s'\n", *command_ptr);
1459 free(command);
1460 break;
1461#else
Matt Kraaidd19c692001-01-31 19:00:21 +00001462 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001463 free_job(job);
Matt Kraai131241f2000-09-14 00:43:20 +00001464 return 1;
Eric Andersen86349772000-12-18 20:25:50 +00001465#endif
Matt Kraai131241f2000-09-14 00:43:20 +00001466 }
1467 if (*src == '*' || *src == '[' || *src == ']'
1468 || *src == '?') *buf++ = '\\';
1469 /* fallthrough */
Erik Andersen161220c2000-03-16 08:12:48 +00001470 default:
1471 *buf++ = *src;
1472 }
1473
Erik Andersend75af992000-03-16 08:09:09 +00001474 src++;
Erik Andersen161220c2000-03-16 08:12:48 +00001475 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001476
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001477 if (*prog->argv[argc_l]) {
1478 argc_l++;
Erik Andersen161220c2000-03-16 08:12:48 +00001479 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001480 if (!argc_l) {
Eric Andersen86349772000-12-18 20:25:50 +00001481 free_job(job);
Erik Andersen161220c2000-03-16 08:12:48 +00001482 return 0;
1483 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001484 prog->argv[argc_l] = NULL;
Erik Andersen3522eb12000-03-12 23:49:18 +00001485
Eric Andersen86349772000-12-18 20:25:50 +00001486 if (!return_command) {
1487 job->text = xmalloc(strlen(*command_ptr) + 1);
1488 strcpy(job->text, *command_ptr);
Erik Andersen161220c2000-03-16 08:12:48 +00001489 } else {
1490 /* This leaves any trailing spaces, which is a bit sloppy */
Eric Andersen86349772000-12-18 20:25:50 +00001491 count = return_command - *command_ptr;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001492 job->text = xmalloc(count + 1);
Eric Andersen86349772000-12-18 20:25:50 +00001493 strncpy(job->text, *command_ptr, count);
Erik Andersen161220c2000-03-16 08:12:48 +00001494 job->text[count] = '\0';
1495 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001496
Eric Andersen86349772000-12-18 20:25:50 +00001497 *command_ptr = return_command;
Eric Andersen46f0beb2000-11-14 21:59:22 +00001498
Erik Andersend75af992000-03-16 08:09:09 +00001499 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001500}
1501
Eric Andersen86349772000-12-18 20:25:50 +00001502/* Run the child_prog, no matter what kind of command it uses.
1503 */
1504static int pseudo_exec(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +00001505{
Eric Andersen86349772000-12-18 20:25:50 +00001506 struct built_in_command *x;
Eric Andersenb54833c2000-07-03 23:56:26 +00001507#ifdef BB_FEATURE_SH_STANDALONE_SHELL
Eric Andersenaf4ac772001-02-01 22:43:49 +00001508 char *name;
Erik Andersenbcd61772000-05-13 06:33:19 +00001509#endif
Erik Andersen3522eb12000-03-12 23:49:18 +00001510
Eric Andersene9f07fb2000-12-21 18:31:36 +00001511 /* Check if the command matches any of the non-forking builtins.
1512 * Depending on context, this might be redundant. But it's
1513 * easier to waste a few CPU cycles than it is to figure out
1514 * if this is one of those cases.
Eric Andersen86349772000-12-18 20:25:50 +00001515 */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001516 for (x = bltins; x->cmd; x++) {
1517 if (strcmp(child->argv[0], x->cmd) == 0 ) {
1518 exit(x->function(child));
1519 }
1520 }
1521
1522 /* Check if the command matches any of the forking builtins. */
Eric Andersen86349772000-12-18 20:25:50 +00001523 for (x = bltins_forking; x->cmd; x++) {
1524 if (strcmp(child->argv[0], x->cmd) == 0) {
1525 applet_name=x->cmd;
1526 exit (x->function(child));
1527 }
1528 }
1529#ifdef BB_FEATURE_SH_STANDALONE_SHELL
1530 /* Check if the command matches any busybox internal
1531 * commands ("applets") here. Following discussions from
1532 * November 2000 on busybox@opensource.lineo.com, don't use
1533 * get_last_path_component(). This way explicit (with
1534 * slashes) filenames will never be interpreted as an
1535 * applet, just like with builtins. This way the user can
1536 * override an applet with an explicit filename reference.
1537 * The only downside to this change is that an explicit
1538 * /bin/foo invocation will fork and exec /bin/foo, even if
1539 * /bin/foo is a symlink to busybox.
1540 */
Matt Kraaif2cc2762001-02-01 19:21:20 +00001541 name = child->argv[0];
Eric Andersen86349772000-12-18 20:25:50 +00001542
1543#ifdef BB_FEATURE_SH_APPLETS_ALWAYS_WIN
1544 /* If you enable BB_FEATURE_SH_APPLETS_ALWAYS_WIN, then
1545 * if you run /bin/cat, it will use BusyBox cat even if
1546 * /bin/cat exists on the filesystem and is _not_ busybox.
1547 * Some systems want this, others do not. Choose wisely. :-)
1548 */
Matt Kraaif2cc2762001-02-01 19:21:20 +00001549 name = get_last_path_component(name);
Eric Andersen86349772000-12-18 20:25:50 +00001550#endif
1551
Eric Andersen67991cf2001-02-14 21:23:06 +00001552 {
Eric Andersen82ab8da2001-03-23 17:06:01 +00001553 char** argv_l=child->argv;
Eric Andersen67991cf2001-02-14 21:23:06 +00001554 int argc_l;
Eric Andersen82ab8da2001-03-23 17:06:01 +00001555 for(argc_l=0;*argv_l!=NULL; argv_l++, argc_l++);
Eric Andersen67991cf2001-02-14 21:23:06 +00001556 optind = 1;
1557 run_applet_by_name(name, argc_l, child->argv);
Eric Andersen86349772000-12-18 20:25:50 +00001558 }
1559#endif
1560
1561 execvp(child->argv[0], child->argv);
Eric Andersen8ea28be2001-01-05 20:58:22 +00001562 perror_msg_and_die("%s", child->argv[0]);
Eric Andersen86349772000-12-18 20:25:50 +00001563}
1564
1565static void insert_job(struct job *newjob, int inbg)
1566{
1567 struct job *thejob;
Eric Andersen1ca20a72001-03-21 07:34:27 +00001568 struct jobset *j_list=newjob->job_list;
Eric Andersen86349772000-12-18 20:25:50 +00001569
1570 /* find the ID for thejob to use */
1571 newjob->jobid = 1;
Eric Andersen1ca20a72001-03-21 07:34:27 +00001572 for (thejob = j_list->head; thejob; thejob = thejob->next)
Eric Andersen86349772000-12-18 20:25:50 +00001573 if (thejob->jobid >= newjob->jobid)
1574 newjob->jobid = thejob->jobid + 1;
1575
1576 /* add thejob to the list of running jobs */
Eric Andersen1ca20a72001-03-21 07:34:27 +00001577 if (!j_list->head) {
1578 thejob = j_list->head = xmalloc(sizeof(*thejob));
Eric Andersen86349772000-12-18 20:25:50 +00001579 } else {
Eric Andersen1ca20a72001-03-21 07:34:27 +00001580 for (thejob = j_list->head; thejob->next; thejob = thejob->next) /* nothing */;
Eric Andersen86349772000-12-18 20:25:50 +00001581 thejob->next = xmalloc(sizeof(*thejob));
1582 thejob = thejob->next;
1583 }
1584
1585 *thejob = *newjob; /* physically copy the struct job */
1586 thejob->next = NULL;
1587 thejob->running_progs = thejob->num_progs;
1588 thejob->stopped_progs = 0;
1589
1590 if (inbg) {
1591 /* we don't wait for background thejobs to return -- append it
1592 to the list of backgrounded thejobs and leave it alone */
1593 printf("[%d] %d\n", thejob->jobid,
1594 newjob->progs[newjob->num_progs - 1].pid);
1595#ifdef BB_FEATURE_SH_ENVIRONMENT
1596 last_bg_pid=newjob->progs[newjob->num_progs - 1].pid;
1597#endif
1598 } else {
1599 newjob->job_list->fg = thejob;
1600
1601 /* move the new process group into the foreground */
1602 /* suppress messages when run from /linuxrc mag@sysgo.de */
1603 if (tcsetpgrp(0, newjob->pgrp) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +00001604 perror_msg("tcsetpgrp");
Eric Andersen86349772000-12-18 20:25:50 +00001605 }
1606}
1607
1608static int run_command(struct job *newjob, int inbg, int outpipe[2])
1609{
1610 /* struct job *thejob; */
1611 int i;
1612 int nextin, nextout;
1613 int pipefds[2]; /* pipefd[0] is for reading */
1614 struct built_in_command *x;
1615 struct child_prog *child;
1616
Eric Andersen6efc48c2000-07-18 08:16:39 +00001617 nextin = 0, nextout = 1;
Eric Andersen86349772000-12-18 20:25:50 +00001618 for (i = 0; i < newjob->num_progs; i++) {
1619 child = & (newjob->progs[i]);
1620
1621 if ((i + 1) < newjob->num_progs) {
1622 if (pipe(pipefds)<0) perror_msg_and_die("pipe");
Erik Andersen161220c2000-03-16 08:12:48 +00001623 nextout = pipefds[1];
1624 } else {
Eric Andersen86349772000-12-18 20:25:50 +00001625 if (outpipe[1]!=-1) {
1626 nextout = outpipe[1];
Eric Andersen6efc48c2000-07-18 08:16:39 +00001627 } else {
1628 nextout = 1;
1629 }
Erik Andersen161220c2000-03-16 08:12:48 +00001630 }
1631
Eric Andersen501c88b2000-07-28 15:14:45 +00001632#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen86349772000-12-18 20:25:50 +00001633 if (show_x_trace==TRUE) {
Eric Andersen501c88b2000-07-28 15:14:45 +00001634 int j;
Eric Andersen86349772000-12-18 20:25:50 +00001635 fputc('+', stderr);
1636 for (j = 0; child->argv[j]; j++) {
1637 fputc(' ', stderr);
1638 fputs(child->argv[j], stderr);
1639 }
1640 fputc('\n', stderr);
Eric Andersen501c88b2000-07-28 15:14:45 +00001641 }
1642#endif
1643
Eric Andersene9f07fb2000-12-21 18:31:36 +00001644 /* Check if the command matches any non-forking builtins,
1645 * but only if this is a simple command.
1646 * Non-forking builtins within pipes have to fork anyway,
1647 * and are handled in pseudo_exec. "echo foo | read bar"
1648 * is doomed to failure, and doesn't work on bash, either.
Eric Andersen86349772000-12-18 20:25:50 +00001649 */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001650 if (newjob->num_progs == 1) {
1651 for (x = bltins; x->cmd; x++) {
1652 if (strcmp(child->argv[0], x->cmd) == 0 ) {
1653 int squirrel[] = {-1, -1, -1};
1654 int rcode;
1655 setup_redirects(child, squirrel);
1656 rcode = x->function(child);
1657 restore_redirects(squirrel);
1658 return rcode;
1659 }
Erik Andersen330fd2b2000-05-19 05:35:19 +00001660 }
1661 }
1662
Eric Andersen86349772000-12-18 20:25:50 +00001663 if (!(child->pid = fork())) {
Erik Andersen161220c2000-03-16 08:12:48 +00001664 signal(SIGTTOU, SIG_DFL);
1665
Eric Andersen8ea28be2001-01-05 20:58:22 +00001666 close_all();
1667
Eric Andersen86349772000-12-18 20:25:50 +00001668 if (outpipe[1]!=-1) {
1669 close(outpipe[0]);
Eric Andersen6efc48c2000-07-18 08:16:39 +00001670 }
1671 if (nextin != 0) {
1672 dup2(nextin, 0);
1673 close(nextin);
1674 }
1675
1676 if (nextout != 1) {
Erik Andersen161220c2000-03-16 08:12:48 +00001677 dup2(nextout, 1);
Eric Andersen86349772000-12-18 20:25:50 +00001678 dup2(nextout, 2); /* Really? */
Erik Andersen161220c2000-03-16 08:12:48 +00001679 close(nextout);
Eric Andersen501c88b2000-07-28 15:14:45 +00001680 close(pipefds[0]);
Erik Andersen161220c2000-03-16 08:12:48 +00001681 }
1682
Eric Andersen86349772000-12-18 20:25:50 +00001683 /* explicit redirects override pipes */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001684 setup_redirects(child,NULL);
Erik Andersen161220c2000-03-16 08:12:48 +00001685
Eric Andersen86349772000-12-18 20:25:50 +00001686 pseudo_exec(child);
Erik Andersen161220c2000-03-16 08:12:48 +00001687 }
Eric Andersen86349772000-12-18 20:25:50 +00001688 if (outpipe[1]!=-1) {
1689 close(outpipe[1]);
Eric Andersena1d187a2000-07-17 19:14:41 +00001690 }
Erik Andersen161220c2000-03-16 08:12:48 +00001691
1692 /* put our child in the process group whose leader is the
1693 first process in this pipe */
Eric Andersen86349772000-12-18 20:25:50 +00001694 setpgid(child->pid, newjob->progs[0].pid);
Erik Andersen161220c2000-03-16 08:12:48 +00001695 if (nextin != 0)
1696 close(nextin);
Eric Andersen6efc48c2000-07-18 08:16:39 +00001697 if (nextout != 1)
Erik Andersen161220c2000-03-16 08:12:48 +00001698 close(nextout);
1699
1700 /* If there isn't another process, nextin is garbage
1701 but it doesn't matter */
1702 nextin = pipefds[0];
1703 }
1704
Eric Andersen86349772000-12-18 20:25:50 +00001705 newjob->pgrp = newjob->progs[0].pid;
Erik Andersen161220c2000-03-16 08:12:48 +00001706
Eric Andersen86349772000-12-18 20:25:50 +00001707 insert_job(newjob, inbg);
Erik Andersen3522eb12000-03-12 23:49:18 +00001708
Erik Andersen161220c2000-03-16 08:12:48 +00001709 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001710}
1711
Erik Andersend75af992000-03-16 08:09:09 +00001712static int busy_loop(FILE * input)
Erik Andersen3522eb12000-03-12 23:49:18 +00001713{
Erik Andersen161220c2000-03-16 08:12:48 +00001714 char *command;
Eric Andersen86349772000-12-18 20:25:50 +00001715 char *next_command = NULL;
1716 struct job newjob;
Eric Andersen1c314ad2000-06-28 16:56:25 +00001717 pid_t parent_pgrp;
Erik Andersen161220c2000-03-16 08:12:48 +00001718 int i;
Eric Andersen86349772000-12-18 20:25:50 +00001719 int inbg;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001720 int status;
Eric Andersen86349772000-12-18 20:25:50 +00001721 newjob.job_list = &job_list;
1722 newjob.job_context = DEFAULT_CONTEXT;
Erik Andersen3522eb12000-03-12 23:49:18 +00001723
Eric Andersen1c314ad2000-06-28 16:56:25 +00001724 /* save current owner of TTY so we can restore it on exit */
1725 parent_pgrp = tcgetpgrp(0);
1726
Matt Kraaib8907522000-09-13 02:08:21 +00001727 command = (char *) xcalloc(BUFSIZ, sizeof(char));
Erik Andersend75af992000-03-16 08:09:09 +00001728
Erik Andersen161220c2000-03-16 08:12:48 +00001729 /* don't pay any attention to this signal; it just confuses
1730 things and isn't really meant for shells anyway */
1731 signal(SIGTTOU, SIG_IGN);
Erik Andersend75af992000-03-16 08:09:09 +00001732
Erik Andersen161220c2000-03-16 08:12:48 +00001733 while (1) {
Eric Andersen86349772000-12-18 20:25:50 +00001734 if (!job_list.fg) {
Erik Andersend75af992000-03-16 08:09:09 +00001735 /* no job is in the foreground */
Erik Andersen3522eb12000-03-12 23:49:18 +00001736
Erik Andersend75af992000-03-16 08:09:09 +00001737 /* see if any background processes have exited */
Eric Andersen86349772000-12-18 20:25:50 +00001738 checkjobs(&job_list);
Erik Andersen3522eb12000-03-12 23:49:18 +00001739
Eric Andersen86349772000-12-18 20:25:50 +00001740 if (!next_command) {
1741 if (get_command(input, command))
Erik Andersen161220c2000-03-16 08:12:48 +00001742 break;
Eric Andersen86349772000-12-18 20:25:50 +00001743 next_command = command;
Erik Andersend75af992000-03-16 08:09:09 +00001744 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001745
Eric Andersenca604592001-03-08 17:17:13 +00001746 if (expand_arguments(next_command) == FALSE) {
1747 free(command);
1748 command = (char *) xcalloc(BUFSIZ, sizeof(char));
1749 next_command = NULL;
1750 continue;
1751 }
1752
Eric Andersen86349772000-12-18 20:25:50 +00001753 if (!parse_command(&next_command, &newjob, &inbg) &&
1754 newjob.num_progs) {
Eric Andersena1d187a2000-07-17 19:14:41 +00001755 int pipefds[2] = {-1,-1};
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001756 debug_printf( "job=%p fed to run_command by busy_loop()'\n",
1757 &newjob);
Eric Andersen86349772000-12-18 20:25:50 +00001758 run_command(&newjob, inbg, pipefds);
Eric Andersenfad9c112000-07-25 18:06:52 +00001759 }
1760 else {
Eric Andersena1d187a2000-07-17 19:14:41 +00001761 free(command);
Matt Kraaib8907522000-09-13 02:08:21 +00001762 command = (char *) xcalloc(BUFSIZ, sizeof(char));
Eric Andersen86349772000-12-18 20:25:50 +00001763 next_command = NULL;
Erik Andersend75af992000-03-16 08:09:09 +00001764 }
1765 } else {
1766 /* a job is running in the foreground; wait for it */
1767 i = 0;
Eric Andersen86349772000-12-18 20:25:50 +00001768 while (!job_list.fg->progs[i].pid ||
1769 job_list.fg->progs[i].is_stopped == 1) i++;
Erik Andersen3522eb12000-03-12 23:49:18 +00001770
Eric Andersen8ea28be2001-01-05 20:58:22 +00001771 if (waitpid(job_list.fg->progs[i].pid, &status, WUNTRACED)<0)
1772 perror_msg_and_die("waitpid(%d)",job_list.fg->progs[i].pid);
Erik Andersen3522eb12000-03-12 23:49:18 +00001773
Erik Andersend75af992000-03-16 08:09:09 +00001774 if (WIFEXITED(status) || WIFSIGNALED(status)) {
Erik Andersen161220c2000-03-16 08:12:48 +00001775 /* the child exited */
Eric Andersen86349772000-12-18 20:25:50 +00001776 job_list.fg->running_progs--;
1777 job_list.fg->progs[i].pid = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001778
Eric Andersen501c88b2000-07-28 15:14:45 +00001779#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen86349772000-12-18 20:25:50 +00001780 last_return_code=WEXITSTATUS(status);
Eric Andersen86349772000-12-18 20:25:50 +00001781 debug_printf("'%s' exited -- return code %d\n",
1782 job_list.fg->text, last_return_code);
Eric Andersenb180dd92001-03-09 00:42:46 +00001783#endif
Eric Andersen86349772000-12-18 20:25:50 +00001784 if (!job_list.fg->running_progs) {
Erik Andersen161220c2000-03-16 08:12:48 +00001785 /* child exited */
Eric Andersen86349772000-12-18 20:25:50 +00001786 remove_job(&job_list, job_list.fg);
1787 job_list.fg = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001788 }
Erik Andersend75af992000-03-16 08:09:09 +00001789 } else {
Erik Andersen161220c2000-03-16 08:12:48 +00001790 /* the child was stopped */
Eric Andersen86349772000-12-18 20:25:50 +00001791 job_list.fg->stopped_progs++;
1792 job_list.fg->progs[i].is_stopped = 1;
Erik Andersen3522eb12000-03-12 23:49:18 +00001793
Eric Andersen86349772000-12-18 20:25:50 +00001794 if (job_list.fg->stopped_progs == job_list.fg->running_progs) {
1795 printf("\n" JOB_STATUS_FORMAT, job_list.fg->jobid,
1796 "Stopped", job_list.fg->text);
1797 job_list.fg = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001798 }
Erik Andersend75af992000-03-16 08:09:09 +00001799 }
1800
Eric Andersen86349772000-12-18 20:25:50 +00001801 if (!job_list.fg) {
Erik Andersen161220c2000-03-16 08:12:48 +00001802 /* move the shell to the foreground */
Eric Andersen1c314ad2000-06-28 16:56:25 +00001803 /* suppress messages when run from /linuxrc mag@sysgo.de */
1804 if (tcsetpgrp(0, getpid()) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +00001805 perror_msg("tcsetpgrp");
Erik Andersend75af992000-03-16 08:09:09 +00001806 }
1807 }
1808 }
Erik Andersen161220c2000-03-16 08:12:48 +00001809 free(command);
Erik Andersen3522eb12000-03-12 23:49:18 +00001810
Eric Andersen1c314ad2000-06-28 16:56:25 +00001811 /* return controlling TTY back to parent process group before exiting */
1812 if (tcsetpgrp(0, parent_pgrp))
Matt Kraaia9819b22000-12-22 01:48:07 +00001813 perror_msg("tcsetpgrp");
Eric Andersenb54833c2000-07-03 23:56:26 +00001814
1815 /* return exit status if called with "-c" */
1816 if (input == NULL && WIFEXITED(status))
1817 return WEXITSTATUS(status);
1818
Erik Andersen161220c2000-03-16 08:12:48 +00001819 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001820}
1821
1822
Eric Andersenfad9c112000-07-25 18:06:52 +00001823#ifdef BB_FEATURE_CLEAN_UP
1824void free_memory(void)
1825{
Eric Andersene5dfced2001-04-09 22:48:12 +00001826 if (cwd) {
Eric Andersenfad9c112000-07-25 18:06:52 +00001827 free(cwd);
Eric Andersene5dfced2001-04-09 22:48:12 +00001828 cwd = NULL;
1829 }
Eric Andersenfad9c112000-07-25 18:06:52 +00001830 if (local_pending_command)
1831 free(local_pending_command);
1832
Eric Andersen86349772000-12-18 20:25:50 +00001833 if (job_list.fg && !job_list.fg->running_progs) {
1834 remove_job(&job_list, job_list.fg);
Eric Andersenfad9c112000-07-25 18:06:52 +00001835 }
1836}
1837#endif
1838
Eric Andersen6efc48c2000-07-18 08:16:39 +00001839
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001840int shell_main(int argc_l, char **argv_l)
Erik Andersen3522eb12000-03-12 23:49:18 +00001841{
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001842 int opt, interactive=FALSE;
Erik Andersen161220c2000-03-16 08:12:48 +00001843 FILE *input = stdin;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001844 argc = argc_l;
1845 argv = argv_l;
Erik Andersen3522eb12000-03-12 23:49:18 +00001846
Eric Andersen702ec592001-03-06 22:17:29 +00001847 /* These variables need re-initializing when recursing */
Eric Andersenb0970d42001-01-05 19:34:52 +00001848 shell_context = 0;
Eric Andersenb0970d42001-01-05 19:34:52 +00001849 local_pending_command = NULL;
Eric Andersen702ec592001-03-06 22:17:29 +00001850 close_me_head = NULL;
Eric Andersenb0970d42001-01-05 19:34:52 +00001851 job_list.head = NULL;
1852 job_list.fg = NULL;
1853#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +00001854 last_bg_pid=1;
1855 last_return_code=1;
Eric Andersenb0970d42001-01-05 19:34:52 +00001856 show_x_trace=FALSE;
1857#endif
Eric Andersen501c88b2000-07-28 15:14:45 +00001858
Eric Andersenb558e762000-11-30 22:43:16 +00001859 if (argv[0] && argv[0][0] == '-') {
Eric Andersen8ea28be2001-01-05 20:58:22 +00001860 FILE *prof_input;
1861 prof_input = fopen("/etc/profile", "r");
1862 if (!prof_input) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001863 printf( "Couldn't open file '/etc/profile'\n");
Eric Andersen8ea28be2001-01-05 20:58:22 +00001864 } else {
1865 int tmp_fd = fileno(prof_input);
1866 mark_open(tmp_fd);
1867 /* Now run the file */
1868 busy_loop(prof_input);
1869 fclose(prof_input);
1870 mark_closed(tmp_fd);
1871 }
Eric Andersenb558e762000-11-30 22:43:16 +00001872 }
Eric Andersen501c88b2000-07-28 15:14:45 +00001873
Eric Andersenf21aa842000-12-08 20:50:30 +00001874 while ((opt = getopt(argc_l, argv_l, "cxi")) > 0) {
Eric Andersen501c88b2000-07-28 15:14:45 +00001875 switch (opt) {
1876 case 'c':
1877 input = NULL;
Matt Kraai6085c722000-09-06 01:46:18 +00001878 if (local_pending_command != 0)
Matt Kraaidd19c692001-01-31 19:00:21 +00001879 error_msg_and_die("multiple -c arguments");
Matt Kraai6085c722000-09-06 01:46:18 +00001880 local_pending_command = xstrdup(argv[optind]);
1881 optind++;
1882 argv = argv+optind;
Eric Andersen501c88b2000-07-28 15:14:45 +00001883 break;
Eric Andersen1428c4f2000-07-28 15:19:30 +00001884#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen501c88b2000-07-28 15:14:45 +00001885 case 'x':
Eric Andersen86349772000-12-18 20:25:50 +00001886 show_x_trace = TRUE;
Eric Andersen501c88b2000-07-28 15:14:45 +00001887 break;
Eric Andersen1428c4f2000-07-28 15:19:30 +00001888#endif
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001889 case 'i':
1890 interactive = TRUE;
1891 break;
Eric Andersen501c88b2000-07-28 15:14:45 +00001892 default:
Eric Andersen67991cf2001-02-14 21:23:06 +00001893 show_usage();
Eric Andersen501c88b2000-07-28 15:14:45 +00001894 }
1895 }
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001896 /* A shell is interactive if the `-i' flag was given, or if all of
1897 * the following conditions are met:
1898 * no -c command
1899 * no arguments remaining or the -s flag given
1900 * standard input is a terminal
1901 * standard output is a terminal
1902 * Refer to Posix.2, the description of the `sh' utility. */
Eric Andersen86349772000-12-18 20:25:50 +00001903 if (argv[optind]==NULL && input==stdin &&
1904 isatty(fileno(stdin)) && isatty(fileno(stdout))) {
1905 interactive=TRUE;
1906 }
1907 if (interactive==TRUE) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001908 //printf( "optind=%d argv[optind]='%s'\n", optind, argv[optind]);
Eric Andersen501c88b2000-07-28 15:14:45 +00001909 /* Looks like they want an interactive shell */
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001910 printf( "\n\nBusyBox v%s (%s) Built-in shell (lash)\n", BB_VER, BB_BT);
1911 printf( "Enter 'help' for a list of built-in commands.\n\n");
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001912 } else if (local_pending_command==NULL) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001913 //printf( "optind=%d argv[optind]='%s'\n", optind, argv[optind]);
Matt Kraaibbaef662000-09-27 02:43:35 +00001914 input = xfopen(argv[optind], "r");
Eric Andersen8ea28be2001-01-05 20:58:22 +00001915 mark_open(fileno(input)); /* be lazy, never mark this closed */
Eric Andersen501c88b2000-07-28 15:14:45 +00001916 }
1917
Eric Andersen6efc48c2000-07-18 08:16:39 +00001918 /* initialize the cwd -- this is never freed...*/
Eric Andersene5dfced2001-04-09 22:48:12 +00001919 cwd = xgetcwd(0);
Erik Andersen3522eb12000-03-12 23:49:18 +00001920
Eric Andersenfad9c112000-07-25 18:06:52 +00001921#ifdef BB_FEATURE_CLEAN_UP
1922 atexit(free_memory);
1923#endif
1924
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001925#ifdef BB_FEATURE_COMMAND_EDITING
1926 cmdedit_set_initial_prompt();
1927#else
1928 PS1 = NULL;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001929#endif
1930
Erik Andersen161220c2000-03-16 08:12:48 +00001931 return (busy_loop(input));
Erik Andersen3522eb12000-03-12 23:49:18 +00001932}
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001933