blob: 22c56d444ca2e342d713a525ca7bb41b7fdb4035 [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>
Mark Whitley1c6581a2001-03-27 16:35:16 +000067#include <locale.h>
Eric Andersen13d1fa12001-03-08 23:59:45 +000068
Eric Andersen34174472001-03-17 00:20:10 +000069//#define BB_FEATURE_SH_WORDEXP
Eric Andersenb180dd92001-03-09 00:42:46 +000070
Eric Andersen34174472001-03-17 00:20:10 +000071#ifdef BB_FEATURE_SH_WORDEXP
Eric Andersen13d1fa12001-03-08 23:59:45 +000072#include <wordexp.h>
73#define expand_t wordexp_t
74#undef BB_FEATURE_SH_BACKTICKS
75#else
76#include <glob.h>
77#define expand_t glob_t
78#endif
Eric Andersencaeeb362001-02-20 06:38:44 +000079#include "busybox.h"
Erik Andersenf0657d32000-04-12 17:49:52 +000080#include "cmdedit.h"
Erik Andersen3522eb12000-03-12 23:49:18 +000081
Eric Andersen13d1fa12001-03-08 23:59:45 +000082
Mark Whitley59ab0252001-01-23 22:30:04 +000083static const int MAX_LINE = 256; /* size of input buffer for cwd data */
84static const int MAX_READ = 128; /* size of input buffer for `read' builtin */
Erik Andersen3522eb12000-03-12 23:49:18 +000085#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
86
Erik Andersend75af992000-03-16 08:09:09 +000087
Eric Andersen86349772000-12-18 20:25:50 +000088enum redir_type { REDIRECT_INPUT, REDIRECT_OVERWRITE,
Erik Andersen161220c2000-03-16 08:12:48 +000089 REDIRECT_APPEND
90};
Erik Andersen3522eb12000-03-12 23:49:18 +000091
Eric Andersen86349772000-12-18 20:25:50 +000092static const unsigned int DEFAULT_CONTEXT=0x1;
Eric Andersen6a99aaf2000-07-27 00:15:20 +000093static const unsigned int IF_TRUE_CONTEXT=0x2;
94static const unsigned int IF_FALSE_CONTEXT=0x4;
95static const unsigned int THEN_EXP_CONTEXT=0x8;
96static const unsigned int ELSE_EXP_CONTEXT=0x10;
Eric Andersenfad9c112000-07-25 18:06:52 +000097
Eric Andersen86349772000-12-18 20:25:50 +000098
99struct jobset {
Erik Andersen161220c2000-03-16 08:12:48 +0000100 struct job *head; /* head of list of running jobs */
101 struct job *fg; /* current foreground job */
Erik Andersen3522eb12000-03-12 23:49:18 +0000102};
103
Eric Andersen86349772000-12-18 20:25:50 +0000104struct redir_struct {
105 enum redir_type type; /* type of redirection */
Erik Andersen161220c2000-03-16 08:12:48 +0000106 int fd; /* file descriptor being redirected */
107 char *filename; /* file to redirect fd to */
Erik Andersen3522eb12000-03-12 23:49:18 +0000108};
109
Eric Andersen86349772000-12-18 20:25:50 +0000110struct child_prog {
Erik Andersen161220c2000-03-16 08:12:48 +0000111 pid_t pid; /* 0 if exited */
112 char **argv; /* program name and arguments */
Eric Andersen86349772000-12-18 20:25:50 +0000113 int num_redirects; /* elements in redirection array */
114 struct redir_struct *redirects; /* I/O redirects */
Eric Andersen86349772000-12-18 20:25:50 +0000115 int is_stopped; /* is the program currently running? */
116 struct job *family; /* pointer back to the child's parent job */
Erik Andersen3522eb12000-03-12 23:49:18 +0000117};
118
119struct job {
Eric Andersen86349772000-12-18 20:25:50 +0000120 int jobid; /* job number */
121 int num_progs; /* total number of programs in job */
122 int running_progs; /* number of programs running */
Erik Andersen161220c2000-03-16 08:12:48 +0000123 char *text; /* name of job */
Eric Andersen86349772000-12-18 20:25:50 +0000124 char *cmdbuf; /* buffer various argv's point into */
Erik Andersen161220c2000-03-16 08:12:48 +0000125 pid_t pgrp; /* process group ID for the job */
Eric Andersen86349772000-12-18 20:25:50 +0000126 struct child_prog *progs; /* array of programs in job */
Erik Andersen161220c2000-03-16 08:12:48 +0000127 struct job *next; /* to track background commands */
Eric Andersen86349772000-12-18 20:25:50 +0000128 int stopped_progs; /* number of programs alive, but stopped */
129 unsigned int job_context; /* bitmask defining current context */
130 struct jobset *job_list;
Erik Andersen3522eb12000-03-12 23:49:18 +0000131};
132
Eric Andersen86349772000-12-18 20:25:50 +0000133struct built_in_command {
Erik Andersen161220c2000-03-16 08:12:48 +0000134 char *cmd; /* name */
135 char *descr; /* description */
Eric Andersen86349772000-12-18 20:25:50 +0000136 int (*function) (struct child_prog *); /* function ptr */
Erik Andersen3522eb12000-03-12 23:49:18 +0000137};
138
Eric Andersen8ea28be2001-01-05 20:58:22 +0000139struct close_me {
140 int fd;
141 struct close_me *next;
142};
143
Eric Andersen34e19412000-07-10 18:47:24 +0000144/* function prototypes for builtins */
Eric Andersen86349772000-12-18 20:25:50 +0000145static int builtin_cd(struct child_prog *cmd);
146static int builtin_env(struct child_prog *dummy);
147static int builtin_exec(struct child_prog *cmd);
148static int builtin_exit(struct child_prog *cmd);
149static int builtin_fg_bg(struct child_prog *cmd);
150static int builtin_help(struct child_prog *cmd);
151static int builtin_jobs(struct child_prog *dummy);
152static int builtin_pwd(struct child_prog *dummy);
153static int builtin_export(struct child_prog *cmd);
154static int builtin_source(struct child_prog *cmd);
155static int builtin_unset(struct child_prog *cmd);
156static int builtin_read(struct child_prog *cmd);
Eric Andersenfad9c112000-07-25 18:06:52 +0000157#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
Eric Andersen86349772000-12-18 20:25:50 +0000158static int builtin_if(struct child_prog *cmd);
159static int builtin_then(struct child_prog *cmd);
160static int builtin_else(struct child_prog *cmd);
161static int builtin_fi(struct child_prog *cmd);
Eric Andersen70da6a62000-12-20 22:59:16 +0000162/* function prototypes for shell stuff */
163static int run_command_predicate(char *cmd);
Eric Andersenfad9c112000-07-25 18:06:52 +0000164#endif
Erik Andersen3522eb12000-03-12 23:49:18 +0000165
Eric Andersen34e19412000-07-10 18:47:24 +0000166
167/* function prototypes for shell stuff */
Eric Andersen8ea28be2001-01-05 20:58:22 +0000168static void mark_open(int fd);
169static void mark_closed(int fd);
Eric Andersen36278b92001-03-06 20:47:31 +0000170static void close_all(void);
Eric Andersen86349772000-12-18 20:25:50 +0000171static void checkjobs(struct jobset *job_list);
172static int get_command(FILE * source, char *command);
173static int parse_command(char **command_ptr, struct job *job, int *inbg);
174static int run_command(struct job *newjob, int inbg, int outpipe[2]);
175static int pseudo_exec(struct child_prog *cmd) __attribute__ ((noreturn));
Erik Andersen3522eb12000-03-12 23:49:18 +0000176static int busy_loop(FILE * input);
177
Erik Andersend75af992000-03-16 08:09:09 +0000178
Mark Whitley37653aa2000-07-12 23:36:17 +0000179/* Table of built-in functions (these are non-forking builtins, meaning they
180 * can change global variables in the parent shell process but they will not
181 * work with pipes and redirects; 'unset foo | whatever' will not work) */
Eric Andersen86349772000-12-18 20:25:50 +0000182static struct built_in_command bltins[] = {
Eric Andersenfad9c112000-07-25 18:06:52 +0000183 {"bg", "Resume a job in the background", builtin_fg_bg},
184 {"cd", "Change working directory", builtin_cd},
Eric Andersend2f56772000-09-21 02:48:07 +0000185 {"exec", "Exec command, replacing this shell with the exec'd process", builtin_exec},
Eric Andersenfad9c112000-07-25 18:06:52 +0000186 {"exit", "Exit from shell()", builtin_exit},
187 {"fg", "Bring job into the foreground", builtin_fg_bg},
188 {"jobs", "Lists the active jobs", builtin_jobs},
189 {"export", "Set environment variable", builtin_export},
190 {"unset", "Unset environment variable", builtin_unset},
191 {"read", "Input environment variable", builtin_read},
Matt Kraaidd450a02000-09-13 03:43:36 +0000192 {".", "Source-in and run commands in a file", builtin_source},
Eric Andersen86349772000-12-18 20:25:50 +0000193 /* to do: add ulimit */
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000194#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
195 {"if", NULL, builtin_if},
196 {"then", NULL, builtin_then},
197 {"else", NULL, builtin_else},
198 {"fi", NULL, builtin_fi},
199#endif
Eric Andersenfad9c112000-07-25 18:06:52 +0000200 {NULL, NULL, NULL}
Erik Andersen330fd2b2000-05-19 05:35:19 +0000201};
202
Mark Whitley37653aa2000-07-12 23:36:17 +0000203/* Table of forking built-in functions (things that fork cannot change global
204 * variables in the parent process, such as the current working directory) */
Eric Andersen86349772000-12-18 20:25:50 +0000205static struct built_in_command bltins_forking[] = {
Eric Andersenfad9c112000-07-25 18:06:52 +0000206 {"env", "Print all environment variables", builtin_env},
207 {"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;
235static char *PS2;
236
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]
259env 0
260exec cmd->progs[0] squashed bug: didn't look for applets or forking builtins
261exit cmd->progs[0]
262fg_bg cmd->progs[0], job_list->head, job_list->fg
263help 0
264jobs job_list->head
265pwd 0
266export cmd->progs[0] passes cmd, job_list to builtin_env(), which ignores them
267source cmd->progs[0]
268unset cmd->progs[0]
269read cmd->progs[0]
270if cmd->job_context, cmd->text
271then cmd->job_context, cmd->text
272else cmd->job_context, cmd->text
273fi cmd->job_context
274
275The use of cmd->text by if/then/else/fi is hopelessly hacky.
276Would it work to increment cmd->progs[0]->argv and recurse,
277somewhat like builtin_exec does?
278
279I added "struct job *family;" to struct child_prog,
280and switched API to builtin_foo(struct child_prog *child);
281So cmd->text becomes child->family->text
282 cmd->job_context becomes child->family->job_context
283 cmd->progs[0] becomes *child
284 job_list becomes child->family->job_list
285 */
Erik Andersen3522eb12000-03-12 23:49:18 +0000286
Erik Andersend75af992000-03-16 08:09:09 +0000287/* built-in 'cd <path>' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000288static int builtin_cd(struct child_prog *child)
Erik Andersend75af992000-03-16 08:09:09 +0000289{
Erik Andersen161220c2000-03-16 08:12:48 +0000290 char *newdir;
Erik Andersend75af992000-03-16 08:09:09 +0000291
Eric Andersen86349772000-12-18 20:25:50 +0000292 if (child->argv[1] == NULL)
Erik Andersen161220c2000-03-16 08:12:48 +0000293 newdir = getenv("HOME");
294 else
Eric Andersen86349772000-12-18 20:25:50 +0000295 newdir = child->argv[1];
Erik Andersen161220c2000-03-16 08:12:48 +0000296 if (chdir(newdir)) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000297 printf("cd: %s: %m\n", newdir);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000298 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000299 }
Eric Andersen6efc48c2000-07-18 08:16:39 +0000300 getcwd(cwd, sizeof(char)*MAX_LINE);
Erik Andersen161220c2000-03-16 08:12:48 +0000301
Matt Kraai3e856ce2000-12-01 02:55:13 +0000302 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000303}
304
305/* built-in 'env' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000306static int builtin_env(struct child_prog *dummy)
Erik Andersen3522eb12000-03-12 23:49:18 +0000307{
Erik Andersen161220c2000-03-16 08:12:48 +0000308 char **e;
Erik Andersen3522eb12000-03-12 23:49:18 +0000309
Erik Andersen161220c2000-03-16 08:12:48 +0000310 for (e = environ; *e; e++) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000311 printf( "%s\n", *e);
Erik Andersen161220c2000-03-16 08:12:48 +0000312 }
313 return (0);
Erik Andersen3522eb12000-03-12 23:49:18 +0000314}
315
Eric Andersend2f56772000-09-21 02:48:07 +0000316/* built-in 'exec' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000317static int builtin_exec(struct child_prog *child)
Eric Andersend2f56772000-09-21 02:48:07 +0000318{
Eric Andersen86349772000-12-18 20:25:50 +0000319 if (child->argv[1] == NULL)
320 return EXIT_SUCCESS; /* Really? */
321 child->argv++;
Eric Andersen07f2f392001-03-06 20:28:22 +0000322 close_all();
Eric Andersen86349772000-12-18 20:25:50 +0000323 pseudo_exec(child);
324 /* never returns */
Eric Andersend2f56772000-09-21 02:48:07 +0000325}
326
Erik Andersen3522eb12000-03-12 23:49:18 +0000327/* built-in 'exit' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000328static int builtin_exit(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000329{
Eric Andersen86349772000-12-18 20:25:50 +0000330 if (child->argv[1] == NULL)
Matt Kraai3e856ce2000-12-01 02:55:13 +0000331 exit(EXIT_SUCCESS);
Erik Andersen161220c2000-03-16 08:12:48 +0000332
Eric Andersen86349772000-12-18 20:25:50 +0000333 exit (atoi(child->argv[1]));
Erik Andersen3522eb12000-03-12 23:49:18 +0000334}
335
336/* built-in 'fg' and 'bg' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000337static int builtin_fg_bg(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000338{
Erik Andersen161220c2000-03-16 08:12:48 +0000339 int i, jobNum;
Erik Andersen6273f652000-03-17 01:12:41 +0000340 struct job *job=NULL;
Eric Andersen86349772000-12-18 20:25:50 +0000341
Eric Andersene9f07fb2000-12-21 18:31:36 +0000342 if (!child->argv[1] || child->argv[2]) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000343 error_msg("%s: exactly one argument is expected",
Eric Andersene9f07fb2000-12-21 18:31:36 +0000344 child->argv[0]);
345 return EXIT_FAILURE;
346 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000347
Eric Andersene9f07fb2000-12-21 18:31:36 +0000348 if (sscanf(child->argv[1], "%%%d", &jobNum) != 1) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000349 error_msg("%s: bad argument '%s'",
Eric Andersene9f07fb2000-12-21 18:31:36 +0000350 child->argv[0], child->argv[1]);
351 return EXIT_FAILURE;
352 }
353
354 for (job = child->family->job_list->head; job; job = job->next) {
355 if (job->jobid == jobNum) {
356 break;
Erik Andersen161220c2000-03-16 08:12:48 +0000357 }
Eric Andersene9f07fb2000-12-21 18:31:36 +0000358 }
Erik Andersen161220c2000-03-16 08:12:48 +0000359
360 if (!job) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000361 error_msg("%s: unknown job %d",
Eric Andersen86349772000-12-18 20:25:50 +0000362 child->argv[0], jobNum);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000363 return EXIT_FAILURE;
Erik Andersend75af992000-03-16 08:09:09 +0000364 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000365
Eric Andersen86349772000-12-18 20:25:50 +0000366 if (*child->argv[0] == 'f') {
Erik Andersen161220c2000-03-16 08:12:48 +0000367 /* Make this job the foreground job */
Eric Andersen1c314ad2000-06-28 16:56:25 +0000368 /* suppress messages when run from /linuxrc mag@sysgo.de */
369 if (tcsetpgrp(0, job->pgrp) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +0000370 perror_msg("tcsetpgrp");
Eric Andersen86349772000-12-18 20:25:50 +0000371 child->family->job_list->fg = job;
Erik Andersen161220c2000-03-16 08:12:48 +0000372 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000373
Erik Andersen161220c2000-03-16 08:12:48 +0000374 /* Restart the processes in the job */
Eric Andersen86349772000-12-18 20:25:50 +0000375 for (i = 0; i < job->num_progs; i++)
376 job->progs[i].is_stopped = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000377
Erik Andersen161220c2000-03-16 08:12:48 +0000378 kill(-job->pgrp, SIGCONT);
Erik Andersen3522eb12000-03-12 23:49:18 +0000379
Eric Andersen86349772000-12-18 20:25:50 +0000380 job->stopped_progs = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000381
Matt Kraai3e856ce2000-12-01 02:55:13 +0000382 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000383}
384
385/* built-in 'help' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000386static int builtin_help(struct child_prog *dummy)
Erik Andersen3522eb12000-03-12 23:49:18 +0000387{
Eric Andersen86349772000-12-18 20:25:50 +0000388 struct built_in_command *x;
Erik Andersen3522eb12000-03-12 23:49:18 +0000389
Eric Andersen86349772000-12-18 20:25:50 +0000390 printf("\nBuilt-in commands:\n");
391 printf("-------------------\n");
Erik Andersen161220c2000-03-16 08:12:48 +0000392 for (x = bltins; x->cmd; x++) {
Eric Andersenfad9c112000-07-25 18:06:52 +0000393 if (x->descr==NULL)
394 continue;
Eric Andersen86349772000-12-18 20:25:50 +0000395 printf("%s\t%s\n", x->cmd, x->descr);
Erik Andersen161220c2000-03-16 08:12:48 +0000396 }
Erik Andersen330fd2b2000-05-19 05:35:19 +0000397 for (x = bltins_forking; x->cmd; x++) {
Eric Andersenfad9c112000-07-25 18:06:52 +0000398 if (x->descr==NULL)
399 continue;
Eric Andersen86349772000-12-18 20:25:50 +0000400 printf("%s\t%s\n", x->cmd, x->descr);
Erik Andersen330fd2b2000-05-19 05:35:19 +0000401 }
Eric Andersen86349772000-12-18 20:25:50 +0000402 printf("\n\n");
Matt Kraai3e856ce2000-12-01 02:55:13 +0000403 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000404}
405
406/* built-in 'jobs' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000407static int builtin_jobs(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000408{
Erik Andersen161220c2000-03-16 08:12:48 +0000409 struct job *job;
Eric Andersen86349772000-12-18 20:25:50 +0000410 char *status_string;
Erik Andersen3522eb12000-03-12 23:49:18 +0000411
Eric Andersen86349772000-12-18 20:25:50 +0000412 for (job = child->family->job_list->head; job; job = job->next) {
413 if (job->running_progs == job->stopped_progs)
414 status_string = "Stopped";
Erik Andersen161220c2000-03-16 08:12:48 +0000415 else
Eric Andersen86349772000-12-18 20:25:50 +0000416 status_string = "Running";
Erik Andersen161220c2000-03-16 08:12:48 +0000417
Eric Andersen86349772000-12-18 20:25:50 +0000418 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->text);
Erik Andersen161220c2000-03-16 08:12:48 +0000419 }
Matt Kraai3e856ce2000-12-01 02:55:13 +0000420 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000421}
422
423
424/* built-in 'pwd' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000425static int builtin_pwd(struct child_prog *dummy)
Erik Andersen3522eb12000-03-12 23:49:18 +0000426{
Eric Andersen86349772000-12-18 20:25:50 +0000427 getcwd(cwd, MAX_LINE);
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000428 printf( "%s\n", cwd);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000429 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000430}
431
Erik Andersen6273f652000-03-17 01:12:41 +0000432/* built-in 'export VAR=value' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000433static int builtin_export(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000434{
Erik Andersen161220c2000-03-16 08:12:48 +0000435 int res;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000436 char *v = child->argv[1];
Erik Andersen3522eb12000-03-12 23:49:18 +0000437
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000438 if (v == NULL) {
Eric Andersen86349772000-12-18 20:25:50 +0000439 return (builtin_env(child));
Erik Andersen161220c2000-03-16 08:12:48 +0000440 }
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000441 res = putenv(v);
Erik Andersen161220c2000-03-16 08:12:48 +0000442 if (res)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000443 fprintf(stderr, "export: %m\n");
Mark Whitleyf5949862001-03-14 00:29:14 +0000444#ifndef BB_FEATURE_SH_SIMPLE_PROMPT
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000445 if (strncmp(v, "PS1=", 4)==0)
446 PS1 = getenv("PS1");
447 else if (strncmp(v, "PS2=", 4)==0)
448 PS2 = getenv("PS2");
449#endif
Mark Whitley1c6581a2001-03-27 16:35:16 +0000450 if(strncmp(v, "LC_ALL=", 7)==0)
451 setlocale(LC_ALL, getenv("LC_ALL"));
Mark Whitleya82a0032001-03-27 17:07:15 +0000452 if(strncmp(v, "LC_CTYPE=", 9)==0)
Mark Whitley1c6581a2001-03-27 16:35:16 +0000453 setlocale(LC_CTYPE, getenv("LC_CTYPE"));
454
Erik Andersen161220c2000-03-16 08:12:48 +0000455 return (res);
Erik Andersen3522eb12000-03-12 23:49:18 +0000456}
457
Eric Andersenb54833c2000-07-03 23:56:26 +0000458/* built-in 'read VAR' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000459static int builtin_read(struct child_prog *child)
Eric Andersenb54833c2000-07-03 23:56:26 +0000460{
461 int res = 0, len, newlen;
462 char *s;
463 char string[MAX_READ];
464
Eric Andersen86349772000-12-18 20:25:50 +0000465 if (child->argv[1]) {
Eric Andersenb54833c2000-07-03 23:56:26 +0000466 /* argument (VAR) given: put "VAR=" into buffer */
Eric Andersen86349772000-12-18 20:25:50 +0000467 strcpy(string, child->argv[1]);
Eric Andersenb54833c2000-07-03 23:56:26 +0000468 len = strlen(string);
469 string[len++] = '=';
470 string[len] = '\0';
471 fgets(&string[len], sizeof(string) - len, stdin); /* read string */
472 newlen = strlen(string);
473 if(newlen > len)
474 string[--newlen] = '\0'; /* chomp trailing newline */
475 /*
476 ** string should now contain "VAR=<value>"
477 ** copy it (putenv() won't do that, so we must make sure
478 ** the string resides in a static buffer!)
479 */
480 res = -1;
481 if((s = strdup(string)))
482 res = putenv(s);
483 if (res)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000484 fprintf(stderr, "read: %m\n");
Eric Andersenb54833c2000-07-03 23:56:26 +0000485 }
486 else
487 fgets(string, sizeof(string), stdin);
488
489 return (res);
490}
491
Eric Andersenfad9c112000-07-25 18:06:52 +0000492#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
493/* Built-in handler for 'if' commands */
Eric Andersen86349772000-12-18 20:25:50 +0000494static int builtin_if(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000495{
Eric Andersen86349772000-12-18 20:25:50 +0000496 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000497 int status;
498 char* charptr1=cmd->text+3; /* skip over the leading 'if ' */
499
500 /* Now run the 'if' command */
Eric Andersen86349772000-12-18 20:25:50 +0000501 debug_printf( "job=%p entering builtin_if ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
502 status = run_command_predicate(charptr1);
503 debug_printf( "if test returned ");
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000504 if (status == 0) {
Eric Andersen86349772000-12-18 20:25:50 +0000505 debug_printf( "TRUE\n");
506 cmd->job_context |= IF_TRUE_CONTEXT;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000507 } else {
Eric Andersen86349772000-12-18 20:25:50 +0000508 debug_printf( "FALSE\n");
509 cmd->job_context |= IF_FALSE_CONTEXT;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000510 }
Eric Andersen86349772000-12-18 20:25:50 +0000511 debug_printf("job=%p builtin_if set job context to %x\n", cmd, cmd->job_context);
512 shell_context++;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000513
514 return status;
Eric Andersenfad9c112000-07-25 18:06:52 +0000515}
516
517/* Built-in handler for 'then' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000518static int builtin_then(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000519{
Eric Andersen86349772000-12-18 20:25:50 +0000520 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000521 char* charptr1=cmd->text+5; /* skip over the leading 'then ' */
522
Eric Andersen86349772000-12-18 20:25:50 +0000523 debug_printf( "job=%p entering builtin_then ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
524 if (! (cmd->job_context & (IF_TRUE_CONTEXT|IF_FALSE_CONTEXT))) {
525 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000526 error_msg("%s `then'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000527 return EXIT_FAILURE;
Eric Andersenfad9c112000-07-25 18:06:52 +0000528 }
Eric Andersen86349772000-12-18 20:25:50 +0000529
530 cmd->job_context |= THEN_EXP_CONTEXT;
531 debug_printf("job=%p builtin_then set job context to %x\n", cmd, cmd->job_context);
532
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000533 /* If the if result was FALSE, skip the 'then' stuff */
Eric Andersen86349772000-12-18 20:25:50 +0000534 if (cmd->job_context & IF_FALSE_CONTEXT) {
Matt Kraai3e856ce2000-12-01 02:55:13 +0000535 return EXIT_SUCCESS;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000536 }
537
Eric Andersen86349772000-12-18 20:25:50 +0000538 /* Seems the if result was TRUE, so run the 'then' command */
539 debug_printf( "'then' now running '%s'\n", charptr1);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000540
Eric Andersen86349772000-12-18 20:25:50 +0000541 return(run_command_predicate(charptr1));
Eric Andersenfad9c112000-07-25 18:06:52 +0000542}
543
544/* Built-in handler for 'else' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000545static int builtin_else(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000546{
Eric Andersen86349772000-12-18 20:25:50 +0000547 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000548 char* charptr1=cmd->text+5; /* skip over the leading 'else ' */
549
Eric Andersen86349772000-12-18 20:25:50 +0000550 debug_printf( "job=%p entering builtin_else ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
551
552 if (! (cmd->job_context & THEN_EXP_CONTEXT)) {
553 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000554 error_msg("%s `else'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000555 return EXIT_FAILURE;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000556 }
557 /* If the if result was TRUE, skip the 'else' stuff */
Eric Andersen86349772000-12-18 20:25:50 +0000558 if (cmd->job_context & IF_TRUE_CONTEXT) {
Matt Kraai3e856ce2000-12-01 02:55:13 +0000559 return EXIT_SUCCESS;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000560 }
561
Eric Andersen86349772000-12-18 20:25:50 +0000562 cmd->job_context |= ELSE_EXP_CONTEXT;
Eric Andersene9f07fb2000-12-21 18:31:36 +0000563 debug_printf("job=%p builtin_else set job context to %x\n", cmd, cmd->job_context);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000564
565 /* Now run the 'else' command */
Eric Andersen86349772000-12-18 20:25:50 +0000566 debug_printf( "'else' now running '%s'\n", charptr1);
567 return(run_command_predicate(charptr1));
Eric Andersenfad9c112000-07-25 18:06:52 +0000568}
569
570/* Built-in handler for 'fi' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000571static int builtin_fi(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000572{
Eric Andersen86349772000-12-18 20:25:50 +0000573 struct job *cmd = child->family;
574 debug_printf( "job=%p entering builtin_fi ('%s')-- context=%d\n", cmd, "", cmd->job_context);
575 if (! (cmd->job_context & (IF_TRUE_CONTEXT|IF_FALSE_CONTEXT))) {
576 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000577 error_msg("%s `fi'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000578 return EXIT_FAILURE;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000579 }
580 /* Clear out the if and then context bits */
Eric Andersen86349772000-12-18 20:25:50 +0000581 cmd->job_context &= ~(IF_TRUE_CONTEXT|IF_FALSE_CONTEXT|THEN_EXP_CONTEXT|ELSE_EXP_CONTEXT);
582 debug_printf("job=%p builtin_fi set job context to %x\n", cmd, cmd->job_context);
583 shell_context--;
Matt Kraai3e856ce2000-12-01 02:55:13 +0000584 return EXIT_SUCCESS;
Eric Andersenfad9c112000-07-25 18:06:52 +0000585}
586#endif
587
Erik Andersen3522eb12000-03-12 23:49:18 +0000588/* Built-in '.' handler (read-in and execute commands from file) */
Eric Andersen86349772000-12-18 20:25:50 +0000589static int builtin_source(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000590{
Erik Andersen161220c2000-03-16 08:12:48 +0000591 FILE *input;
592 int status;
Eric Andersen8ea28be2001-01-05 20:58:22 +0000593 int fd;
Erik Andersen3522eb12000-03-12 23:49:18 +0000594
Eric Andersen86349772000-12-18 20:25:50 +0000595 if (child->argv[1] == NULL)
Matt Kraai3e856ce2000-12-01 02:55:13 +0000596 return EXIT_FAILURE;
Erik Andersen3522eb12000-03-12 23:49:18 +0000597
Eric Andersen86349772000-12-18 20:25:50 +0000598 input = fopen(child->argv[1], "r");
Erik Andersen161220c2000-03-16 08:12:48 +0000599 if (!input) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000600 printf( "Couldn't open file '%s'\n", child->argv[1]);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000601 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000602 }
Erik Andersend75af992000-03-16 08:09:09 +0000603
Eric Andersen8ea28be2001-01-05 20:58:22 +0000604 fd=fileno(input);
605 mark_open(fd);
Erik Andersen161220c2000-03-16 08:12:48 +0000606 /* Now run the file */
607 status = busy_loop(input);
Matt Kraaidd450a02000-09-13 03:43:36 +0000608 fclose(input);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000609 mark_closed(fd);
Erik Andersen161220c2000-03-16 08:12:48 +0000610 return (status);
Erik Andersen3522eb12000-03-12 23:49:18 +0000611}
612
613/* built-in 'unset VAR' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000614static int builtin_unset(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000615{
Eric Andersen86349772000-12-18 20:25:50 +0000616 if (child->argv[1] == NULL) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000617 printf( "unset: parameter required.\n");
Matt Kraai3e856ce2000-12-01 02:55:13 +0000618 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000619 }
Eric Andersen86349772000-12-18 20:25:50 +0000620 unsetenv(child->argv[1]);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000621 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000622}
623
Eric Andersen70da6a62000-12-20 22:59:16 +0000624#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
Eric Andersen86349772000-12-18 20:25:50 +0000625/* currently used by if/then/else.
Eric Andersene9f07fb2000-12-21 18:31:36 +0000626 *
627 * Reparsing the command line for this purpose is gross,
628 * incorrect, and fundamentally unfixable; in particular,
629 * think about what happens with command substitution.
630 * We really need to pull out the run, wait, return status
631 * functionality out of busy_loop so we can child->argv++
632 * and use that, without going back through parse_command.
Eric Andersen86349772000-12-18 20:25:50 +0000633 */
634static int run_command_predicate(char *cmd)
635{
636 int n=strlen(cmd);
637 local_pending_command = xmalloc(n+1);
638 strncpy(local_pending_command, cmd, n);
639 local_pending_command[n]='\0';
640 return( busy_loop(NULL));
641}
Eric Andersen70da6a62000-12-20 22:59:16 +0000642#endif
Eric Andersen86349772000-12-18 20:25:50 +0000643
Eric Andersen8ea28be2001-01-05 20:58:22 +0000644static void mark_open(int fd)
645{
646 struct close_me *new = xmalloc(sizeof(struct close_me));
647 new->fd = fd;
648 new->next = close_me_head;
649 close_me_head = new;
650}
651
652static void mark_closed(int fd)
653{
654 struct close_me *tmp;
655 if (close_me_head == NULL || close_me_head->fd != fd)
656 error_msg_and_die("corrupt close_me");
657 tmp = close_me_head;
658 close_me_head = close_me_head->next;
659 free(tmp);
660}
661
662static void close_all()
663{
Eric Andersen702ec592001-03-06 22:17:29 +0000664 struct close_me *c, *tmp;
665 for (c=close_me_head; c; c=tmp) {
666 close(c->fd);
667 tmp=c->next;
668 free(c);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000669 }
670 close_me_head = NULL;
671}
672
673
Erik Andersen3522eb12000-03-12 23:49:18 +0000674/* free up all memory from a job */
Eric Andersen86349772000-12-18 20:25:50 +0000675static void free_job(struct job *cmd)
Erik Andersen3522eb12000-03-12 23:49:18 +0000676{
Erik Andersen161220c2000-03-16 08:12:48 +0000677 int i;
Mark Whitley44a99142001-03-14 17:26:37 +0000678 struct jobset *keep;
Erik Andersen3522eb12000-03-12 23:49:18 +0000679
Eric Andersen86349772000-12-18 20:25:50 +0000680 for (i = 0; i < cmd->num_progs; i++) {
Erik Andersen161220c2000-03-16 08:12:48 +0000681 free(cmd->progs[i].argv);
Eric Andersen86349772000-12-18 20:25:50 +0000682 if (cmd->progs[i].redirects)
683 free(cmd->progs[i].redirects);
Erik Andersen161220c2000-03-16 08:12:48 +0000684 }
Mark Whitley44a99142001-03-14 17:26:37 +0000685 if (cmd->progs)
686 free(cmd->progs);
Erik Andersen161220c2000-03-16 08:12:48 +0000687 if (cmd->text)
688 free(cmd->text);
Mark Whitley44a99142001-03-14 17:26:37 +0000689 if (cmd->cmdbuf)
690 free(cmd->cmdbuf);
691 keep = cmd->job_list;
Eric Andersenec10b9d2000-07-14 01:13:11 +0000692 memset(cmd, 0, sizeof(struct job));
Mark Whitley44a99142001-03-14 17:26:37 +0000693 cmd->job_list = keep;
Erik Andersen3522eb12000-03-12 23:49:18 +0000694}
695
Eric Andersen1ca20a72001-03-21 07:34:27 +0000696/* remove a job from a jobset */
697static void remove_job(struct jobset *j_list, struct job *job)
Erik Andersen3522eb12000-03-12 23:49:18 +0000698{
Eric Andersen86349772000-12-18 20:25:50 +0000699 struct job *prevjob;
Erik Andersen3522eb12000-03-12 23:49:18 +0000700
Eric Andersen86349772000-12-18 20:25:50 +0000701 free_job(job);
Eric Andersen1ca20a72001-03-21 07:34:27 +0000702 if (job == j_list->head) {
703 j_list->head = job->next;
Erik Andersen161220c2000-03-16 08:12:48 +0000704 } else {
Eric Andersen1ca20a72001-03-21 07:34:27 +0000705 prevjob = j_list->head;
Eric Andersen86349772000-12-18 20:25:50 +0000706 while (prevjob->next != job)
707 prevjob = prevjob->next;
708 prevjob->next = job->next;
Erik Andersen161220c2000-03-16 08:12:48 +0000709 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000710
Erik Andersen161220c2000-03-16 08:12:48 +0000711 free(job);
Erik Andersen3522eb12000-03-12 23:49:18 +0000712}
713
714/* Checks to see if any background processes have exited -- if they
715 have, figure out why and see if a job has completed */
Eric Andersen1ca20a72001-03-21 07:34:27 +0000716static void checkjobs(struct jobset *j_list)
Erik Andersen3522eb12000-03-12 23:49:18 +0000717{
Erik Andersen161220c2000-03-16 08:12:48 +0000718 struct job *job;
719 pid_t childpid;
720 int status;
Eric Andersen86349772000-12-18 20:25:50 +0000721 int prognum = 0;
Erik Andersend75af992000-03-16 08:09:09 +0000722
Erik Andersen161220c2000-03-16 08:12:48 +0000723 while ((childpid = waitpid(-1, &status, WNOHANG | WUNTRACED)) > 0) {
Eric Andersen1ca20a72001-03-21 07:34:27 +0000724 for (job = j_list->head; job; job = job->next) {
Eric Andersen86349772000-12-18 20:25:50 +0000725 prognum = 0;
726 while (prognum < job->num_progs &&
727 job->progs[prognum].pid != childpid) prognum++;
728 if (prognum < job->num_progs)
Erik Andersen161220c2000-03-16 08:12:48 +0000729 break;
730 }
731
Eric Andersena1d187a2000-07-17 19:14:41 +0000732 /* This happens on backticked commands */
733 if(job==NULL)
734 return;
735
Erik Andersen161220c2000-03-16 08:12:48 +0000736 if (WIFEXITED(status) || WIFSIGNALED(status)) {
737 /* child exited */
Eric Andersen86349772000-12-18 20:25:50 +0000738 job->running_progs--;
739 job->progs[prognum].pid = 0;
Erik Andersen161220c2000-03-16 08:12:48 +0000740
Eric Andersen86349772000-12-18 20:25:50 +0000741 if (!job->running_progs) {
742 printf(JOB_STATUS_FORMAT, job->jobid, "Done", job->text);
Eric Andersen1ca20a72001-03-21 07:34:27 +0000743 remove_job(j_list, job);
Erik Andersen161220c2000-03-16 08:12:48 +0000744 }
745 } else {
746 /* child stopped */
Eric Andersen86349772000-12-18 20:25:50 +0000747 job->stopped_progs++;
748 job->progs[prognum].is_stopped = 1;
Erik Andersen161220c2000-03-16 08:12:48 +0000749
Eric Andersen86349772000-12-18 20:25:50 +0000750 if (job->stopped_progs == job->num_progs) {
751 printf(JOB_STATUS_FORMAT, job->jobid, "Stopped",
Erik Andersen161220c2000-03-16 08:12:48 +0000752 job->text);
753 }
754 }
Erik Andersend75af992000-03-16 08:09:09 +0000755 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000756
Erik Andersen161220c2000-03-16 08:12:48 +0000757 if (childpid == -1 && errno != ECHILD)
Matt Kraaia9819b22000-12-22 01:48:07 +0000758 perror_msg("waitpid");
Erik Andersen3522eb12000-03-12 23:49:18 +0000759}
760
Eric Andersene9f07fb2000-12-21 18:31:36 +0000761/* squirrel != NULL means we squirrel away copies of stdin, stdout,
762 * and stderr if they are redirected. */
763static int setup_redirects(struct child_prog *prog, int squirrel[])
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000764{
765 int i;
766 int openfd;
767 int mode = O_RDONLY;
Eric Andersen86349772000-12-18 20:25:50 +0000768 struct redir_struct *redir = prog->redirects;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000769
Eric Andersen86349772000-12-18 20:25:50 +0000770 for (i = 0; i < prog->num_redirects; i++, redir++) {
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000771 switch (redir->type) {
772 case REDIRECT_INPUT:
773 mode = O_RDONLY;
774 break;
775 case REDIRECT_OVERWRITE:
Eric Andersen46f0beb2000-11-14 21:59:22 +0000776 mode = O_WRONLY | O_CREAT | O_TRUNC;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000777 break;
778 case REDIRECT_APPEND:
Eric Andersen46f0beb2000-11-14 21:59:22 +0000779 mode = O_WRONLY | O_CREAT | O_APPEND;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000780 break;
781 }
782
783 openfd = open(redir->filename, mode, 0666);
784 if (openfd < 0) {
785 /* this could get lost if stderr has been redirected, but
786 bash and ash both lose it as well (though zsh doesn't!) */
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000787 perror_msg("error opening %s", redir->filename);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000788 return 1;
789 }
790
791 if (openfd != redir->fd) {
Eric Andersene9f07fb2000-12-21 18:31:36 +0000792 if (squirrel && redir->fd < 3) {
793 squirrel[redir->fd] = dup(redir->fd);
794 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000795 dup2(openfd, redir->fd);
796 close(openfd);
797 }
798 }
799
800 return 0;
801}
802
Eric Andersene9f07fb2000-12-21 18:31:36 +0000803static void restore_redirects(int squirrel[])
804{
805 int i, fd;
806 for (i=0; i<3; i++) {
807 fd = squirrel[i];
808 if (fd != -1) {
809 /* No error checking. I sure wouldn't know what
810 * to do with an error if I found one! */
811 dup2(fd, i);
812 close(fd);
813 }
814 }
815}
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000816
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000817static inline void cmdedit_set_initial_prompt(void)
Eric Andersen22332fd2001-01-30 23:40:39 +0000818{
Mark Whitleyf5949862001-03-14 00:29:14 +0000819#ifdef BB_FEATURE_SH_SIMPLE_PROMPT
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000820 PS1 = NULL;
821 PS2 = "> ";
Eric Andersen22332fd2001-01-30 23:40:39 +0000822#else
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000823 PS1 = getenv("PS1");
824 if(PS1==0) {
825 PS1 = "\\w \\$ ";
Eric Andersen09acc062001-01-04 11:10:38 +0000826 }
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000827 PS2 = getenv("PS2");
828 if(PS2==0)
829 PS2 = "> ";
830#endif
Eric Andersen09acc062001-01-04 11:10:38 +0000831}
832
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000833static inline void setup_prompt_string(char **prompt_str)
834{
Mark Whitleyf5949862001-03-14 00:29:14 +0000835#ifdef BB_FEATURE_SH_SIMPLE_PROMPT
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000836 /* Set up the prompt */
837 if (shell_context == 0) {
838 if (PS1)
839 free(PS1);
840 PS1=xmalloc(strlen(cwd)+4);
841 sprintf(PS1, "%s %s", cwd, ( geteuid() != 0 ) ? "$ ":"# ");
842 *prompt_str = PS1;
843 } else {
844 *prompt_str = PS2;
845 }
846#else
847 *prompt_str = (shell_context==0)? PS1 : PS2;
848#endif
849}
Eric Andersen22332fd2001-01-30 23:40:39 +0000850
Eric Andersen09acc062001-01-04 11:10:38 +0000851static int get_command(FILE * source, char *command)
852{
853 char *prompt_str;
Eric Andersen8ea28be2001-01-05 20:58:22 +0000854
Eric Andersen1c314ad2000-06-28 16:56:25 +0000855 if (source == NULL) {
856 if (local_pending_command) {
857 /* a command specified (-c option): return it & mark it done */
858 strcpy(command, local_pending_command);
859 free(local_pending_command);
860 local_pending_command = NULL;
861 return 0;
862 }
863 return 1;
864 }
865
Erik Andersen161220c2000-03-16 08:12:48 +0000866 if (source == stdin) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000867 setup_prompt_string(&prompt_str);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000868
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000869#ifdef BB_FEATURE_COMMAND_EDITING
Eric Andersen501c88b2000-07-28 15:14:45 +0000870 /*
871 ** enable command line editing only while a command line
872 ** is actually being read; otherwise, we'll end up bequeathing
873 ** atexit() handlers and other unwanted stuff to our
874 ** child processes (rob@sysgo.de)
875 */
Eric Andersen86349772000-12-18 20:25:50 +0000876 cmdedit_read_input(prompt_str, command);
Eric Andersen501c88b2000-07-28 15:14:45 +0000877 cmdedit_terminate();
Erik Andersen161220c2000-03-16 08:12:48 +0000878 return 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +0000879#else
Eric Andersen8ea28be2001-01-05 20:58:22 +0000880 fputs(prompt_str, stdout);
Erik Andersend75af992000-03-16 08:09:09 +0000881#endif
Erik Andersen161220c2000-03-16 08:12:48 +0000882 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000883
Erik Andersen161220c2000-03-16 08:12:48 +0000884 if (!fgets(command, BUFSIZ - 2, source)) {
885 if (source == stdin)
886 printf("\n");
887 return 1;
888 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000889
Erik Andersen161220c2000-03-16 08:12:48 +0000890 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000891}
892
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000893#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000894static char* itoa(register int i)
895{
Eric Andersenb558e762000-11-30 22:43:16 +0000896 static char a[7]; /* Max 7 ints */
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000897 register char *b = a + sizeof(a) - 1;
898 int sign = (i < 0);
899
900 if (sign)
901 i = -i;
902 *b = 0;
903 do
904 {
905 *--b = '0' + (i % 10);
906 i /= 10;
907 }
908 while (i);
909 if (sign)
910 *--b = '-';
911 return b;
912}
Eric Andersenca604592001-03-08 17:17:13 +0000913#endif
914
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000915#if defined BB_FEATURE_SH_ENVIRONMENT && ! defined BB_FEATURE_SH_WORDEXP
Eric Andersen1ca20a72001-03-21 07:34:27 +0000916char * strsep_space( char *string, int * ix)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000917{
918 char *token, *begin;
919
920 begin = string;
921
922 /* Short circuit the trivial case */
Eric Andersen1ca20a72001-03-21 07:34:27 +0000923 if ( !string || ! string[*ix])
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000924 return NULL;
925
926 /* Find the end of the token. */
Eric Andersen1ca20a72001-03-21 07:34:27 +0000927 while( string && string[*ix] && !isspace(string[*ix]) ) {
928 (*ix)++;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000929 }
930
931 /* Find the end of any whitespace trailing behind
932 * the token and let that be part of the token */
Eric Andersen1ca20a72001-03-21 07:34:27 +0000933 while( string && string[*ix] && isspace(string[*ix]) ) {
934 (*ix)++;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000935 }
936
Eric Andersen1ca20a72001-03-21 07:34:27 +0000937 if (! string && *ix==0) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000938 /* Nothing useful was found */
939 return NULL;
940 }
941
Eric Andersen1ca20a72001-03-21 07:34:27 +0000942 token = xmalloc(*ix+1);
943 token[*ix] = '\0';
944 strncpy(token, string, *ix);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000945
946 return token;
947}
948#endif
949
950
Eric Andersenca604592001-03-08 17:17:13 +0000951static int expand_arguments(char *command)
952{
953#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen13d1fa12001-03-08 23:59:45 +0000954 expand_t expand_result;
Eric Andersenca604592001-03-08 17:17:13 +0000955 char *src, *dst, *var;
Eric Andersen1ca20a72001-03-21 07:34:27 +0000956 int ix = 0;
Eric Andersenca604592001-03-08 17:17:13 +0000957 int i=0, length, total_length=0, retval;
Eric Andersen195743f2001-03-09 19:21:37 +0000958 const char *out_of_space = "out of space during expansion";
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000959#endif
960
Eric Andersenca604592001-03-08 17:17:13 +0000961 /* get rid of the terminating \n */
962 chomp(command);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000963
964 /* Fix up escape sequences to be the Real Thing(tm) */
Eric Andersen1ca20a72001-03-21 07:34:27 +0000965 while( command && command[ix]) {
966 if (command[ix] == '\\') {
967 char *tmp = command+ix+1;
968 command[ix] = process_escape_sequence( &tmp );
969 memmove(command+ix + 1, tmp, strlen(tmp)+1);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000970 }
Eric Andersen1ca20a72001-03-21 07:34:27 +0000971 ix++;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000972 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000973
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000974#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +0000975
Eric Andersen13d1fa12001-03-08 23:59:45 +0000976
Eric Andersen34174472001-03-17 00:20:10 +0000977#ifdef BB_FEATURE_SH_WORDEXP
Eric Andersenca604592001-03-08 17:17:13 +0000978 /* This first part uses wordexp() which is a wonderful C lib
979 * function which expands nearly everything. */
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000980 retval = wordexp (command, &expand_result, WRDE_SHOWERR);
Eric Andersenca604592001-03-08 17:17:13 +0000981 if (retval == WRDE_NOSPACE) {
982 /* Mem may have been allocated... */
Eric Andersen13d1fa12001-03-08 23:59:45 +0000983 wordfree (&expand_result);
Eric Andersen195743f2001-03-09 19:21:37 +0000984 error_msg(out_of_space);
Eric Andersenca604592001-03-08 17:17:13 +0000985 return FALSE;
986 }
987 if (retval < 0) {
988 /* Some other error. */
989 error_msg("syntax error");
990 return FALSE;
991 }
992
Eric Andersen1365bb72001-03-10 07:12:12 +0000993 if (expand_result.we_wordc > 0) {
994 /* Convert from char** (one word per string) to a simple char*,
995 * but don't overflow command which is BUFSIZ in length */
996 *command = '\0';
997 while (i < expand_result.we_wordc && total_length < BUFSIZ) {
998 length=strlen(expand_result.we_wordv[i])+1;
999 if (BUFSIZ-total_length-length <= 0) {
1000 error_msg(out_of_space);
1001 return FALSE;
1002 }
1003 strcat(command+total_length, expand_result.we_wordv[i++]);
1004 strcat(command+total_length, " ");
1005 total_length+=length;
Eric Andersenca604592001-03-08 17:17:13 +00001006 }
Eric Andersen1365bb72001-03-10 07:12:12 +00001007 wordfree (&expand_result);
Eric Andersenca604592001-03-08 17:17:13 +00001008 }
Eric Andersen13d1fa12001-03-08 23:59:45 +00001009#else
1010
Eric Andersen195743f2001-03-09 19:21:37 +00001011 /* Ok. They don't have a recent glibc and they don't have uClibc. Chances
1012 * are about 100% they don't have wordexp(). So instead the best we can do
1013 * is use glob and then fixup environment variables and such ourselves.
1014 * This is better then nothing, but certainly not perfect */
Eric Andersen13d1fa12001-03-08 23:59:45 +00001015
Eric Andersen195743f2001-03-09 19:21:37 +00001016 /* It turns out that glob is very stupid. We have to feed it one word at a
1017 * time since it can't cope with a full string. Here we convert command
1018 * (char*) into cmd (char**, one word per string) */
Eric Andersen13d1fa12001-03-08 23:59:45 +00001019 {
1020
Eric Andersen4e7244e2001-03-14 00:49:52 +00001021 int flags = GLOB_NOCHECK
1022#ifdef GLOB_BRACE
1023 | GLOB_BRACE
1024#endif
1025#ifdef GLOB_TILDE
1026 | GLOB_TILDE
1027#endif
1028 ;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001029 char *tmpcmd, *cmd, *cmd_copy;
Eric Andersen13d1fa12001-03-08 23:59:45 +00001030 /* We need a clean copy, so strsep can mess up the copy while
Eric Andersen195743f2001-03-09 19:21:37 +00001031 * we write stuff into the original (in a minute) */
Eric Andersen4987bbf2001-03-12 21:36:49 +00001032 cmd = cmd_copy = strdup(command);
Eric Andersen195743f2001-03-09 19:21:37 +00001033 *command = '\0';
Eric Andersen1ca20a72001-03-21 07:34:27 +00001034 for (ix = 0, tmpcmd = cmd;
1035 (tmpcmd = strsep_space(cmd, &ix)) != NULL; cmd += ix, ix=0) {
Eric Andersen13d1fa12001-03-08 23:59:45 +00001036 if (*tmpcmd == '\0')
1037 break;
1038 retval = glob(tmpcmd, flags, NULL, &expand_result);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001039 free(tmpcmd); /* Free mem allocated by strsep_space */
Eric Andersen13d1fa12001-03-08 23:59:45 +00001040 if (retval == GLOB_NOSPACE) {
1041 /* Mem may have been allocated... */
1042 globfree (&expand_result);
Eric Andersen195743f2001-03-09 19:21:37 +00001043 error_msg(out_of_space);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001044 return FALSE;
Eric Andersen195743f2001-03-09 19:21:37 +00001045 } else if (retval != 0) {
1046 /* Some other error. GLOB_NOMATCH shouldn't
1047 * happen because of the GLOB_NOCHECK flag in
1048 * the glob call. */
Eric Andersen13d1fa12001-03-08 23:59:45 +00001049 error_msg("syntax error");
1050 return FALSE;
Eric Andersen195743f2001-03-09 19:21:37 +00001051 } else {
Eric Andersen13d1fa12001-03-08 23:59:45 +00001052 /* Convert from char** (one word per string) to a simple char*,
1053 * but don't overflow command which is BUFSIZ in length */
Eric Andersen195743f2001-03-09 19:21:37 +00001054 for (i=0; i < expand_result.gl_pathc; i++) {
Eric Andersen1ef92682001-03-14 19:33:45 +00001055 length=strlen(expand_result.gl_pathv[i]);
Eric Andersen4aaefc22001-03-15 23:01:19 +00001056 if (total_length+length+1 >= BUFSIZ) {
Eric Andersen195743f2001-03-09 19:21:37 +00001057 error_msg(out_of_space);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001058 return FALSE;
1059 }
Eric Andersen4aaefc22001-03-15 23:01:19 +00001060 if (i>0) {
1061 strcat(command+total_length, " ");
1062 total_length+=1;
1063 }
Eric Andersen195743f2001-03-09 19:21:37 +00001064 strcat(command+total_length, expand_result.gl_pathv[i]);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001065 total_length+=length;
1066 }
Eric Andersen195743f2001-03-09 19:21:37 +00001067 globfree (&expand_result);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001068 }
1069 }
Eric Andersen4987bbf2001-03-12 21:36:49 +00001070 free(cmd_copy);
Eric Andersen195743f2001-03-09 19:21:37 +00001071 trim(command);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001072 }
Eric Andersenca604592001-03-08 17:17:13 +00001073
Eric Andersen13d1fa12001-03-08 23:59:45 +00001074#endif
Eric Andersen195743f2001-03-09 19:21:37 +00001075
Eric Andersenca604592001-03-08 17:17:13 +00001076 /* Now do the shell variable substitutions which
1077 * wordexp can't do for us, namely $? and $! */
1078 src = command;
Eric Andersencaeeb362001-02-20 06:38:44 +00001079 while((dst = strchr(src,'$')) != NULL){
Eric Andersen195743f2001-03-09 19:21:37 +00001080 var = NULL;
1081 switch(*(dst+1)) {
1082 case '?':
1083 var = itoa(last_return_code);
1084 break;
1085 case '!':
1086 if (last_bg_pid==-1)
1087 *(var)='\0';
1088 else
1089 var = itoa(last_bg_pid);
1090 break;
Eric Andersen32f8c172001-03-08 17:44:37 +00001091 /* Everything else like $$, $#, $[0-9], etc should all be
1092 * expanded by wordexp(), so we can in theory skip that stuff
1093 * here, but just to be on the safe side (i.e. since uClibc
1094 * wordexp doesn't do this stuff yet), lets leave it in for
1095 * now. */
Eric Andersen195743f2001-03-09 19:21:37 +00001096 case '$':
1097 var = itoa(getpid());
1098 break;
1099 case '#':
1100 var = itoa(argc-1);
1101 break;
1102 case '0':case '1':case '2':case '3':case '4':
1103 case '5':case '6':case '7':case '8':case '9':
1104 {
Eric Andersen1ca20a72001-03-21 07:34:27 +00001105 int ixx=*(dst + 1)-48;
1106 if (ixx >= argc) {
Eric Andersen195743f2001-03-09 19:21:37 +00001107 var='\0';
1108 } else {
Eric Andersen1ca20a72001-03-21 07:34:27 +00001109 var = argv[ixx];
Eric Andersen32f8c172001-03-08 17:44:37 +00001110 }
Eric Andersen195743f2001-03-09 19:21:37 +00001111 }
1112 break;
Eric Andersen32f8c172001-03-08 17:44:37 +00001113
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001114 }
Eric Andersencaeeb362001-02-20 06:38:44 +00001115 if (var) {
Eric Andersen195743f2001-03-09 19:21:37 +00001116 /* a single character construction was found, and
1117 * already handled in the case statement */
1118 src=dst+2;
Eric Andersen32f8c172001-03-08 17:44:37 +00001119 } else {
Eric Andersen195743f2001-03-09 19:21:37 +00001120 /* Looks like an environment variable */
1121 char delim_hold;
Eric Andersen34174472001-03-17 00:20:10 +00001122 int num_skip_chars=0;
Eric Andersen74e056b2001-03-09 20:34:46 +00001123 int dstlen = strlen(dst);
1124 /* Is this a ${foo} type variable? */
1125 if (dstlen >=2 && *(dst+1) == '{') {
1126 src=strchr(dst+1, '}');
Eric Andersen34174472001-03-17 00:20:10 +00001127 num_skip_chars=1;
Eric Andersen74e056b2001-03-09 20:34:46 +00001128 } else {
Eric Andersen34174472001-03-17 00:20:10 +00001129 src=dst+1;
1130 while(isalnum(*src) || *src=='_') src++;
Eric Andersen74e056b2001-03-09 20:34:46 +00001131 }
Eric Andersen195743f2001-03-09 19:21:37 +00001132 if (src == NULL) {
Eric Andersen74e056b2001-03-09 20:34:46 +00001133 src = dst+dstlen;
Eric Andersen32f8c172001-03-08 17:44:37 +00001134 }
Eric Andersen195743f2001-03-09 19:21:37 +00001135 delim_hold=*src;
1136 *src='\0'; /* temporary */
Eric Andersen34174472001-03-17 00:20:10 +00001137 var = getenv(dst + 1 + num_skip_chars);
Eric Andersen195743f2001-03-09 19:21:37 +00001138 *src=delim_hold;
Eric Andersen34174472001-03-17 00:20:10 +00001139 src += num_skip_chars;
Eric Andersen195743f2001-03-09 19:21:37 +00001140 }
1141 if (var == NULL) {
1142 /* Seems we got an un-expandable variable. So delete it. */
1143 var = "";
1144 }
1145 {
1146 int subst_len = strlen(var);
1147 int trail_len = strlen(src);
1148 if (dst+subst_len+trail_len >= command+BUFSIZ) {
1149 error_msg(out_of_space);
1150 return FALSE;
1151 }
1152 /* Move stuff to the end of the string to accommodate
1153 * filling the created gap with the new stuff */
Eric Andersen34174472001-03-17 00:20:10 +00001154 memmove(dst+subst_len, src, trail_len+1);
Eric Andersen195743f2001-03-09 19:21:37 +00001155 /* Now copy in the new stuff */
1156 memcpy(dst, var, subst_len);
1157 src = dst+subst_len;
Eric Andersencaeeb362001-02-20 06:38:44 +00001158 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001159 }
Eric Andersenca604592001-03-08 17:17:13 +00001160
1161#endif
1162 return TRUE;
Erik Andersen3522eb12000-03-12 23:49:18 +00001163}
1164
Eric Andersen86349772000-12-18 20:25:50 +00001165/* Return cmd->num_progs as 0 if no command is present (e.g. an empty
1166 line). If a valid command is found, command_ptr is set to point to
Erik Andersen3522eb12000-03-12 23:49:18 +00001167 the beginning of the next command (if the original command had more
1168 then one job associated with it) or NULL if no more commands are
1169 present. */
Eric Andersen86349772000-12-18 20:25:50 +00001170static int parse_command(char **command_ptr, struct job *job, int *inbg)
Erik Andersen3522eb12000-03-12 23:49:18 +00001171{
Erik Andersen161220c2000-03-16 08:12:48 +00001172 char *command;
Eric Andersen86349772000-12-18 20:25:50 +00001173 char *return_command = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001174 char *src, *buf, *chptr;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001175 int argc_l = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001176 int done = 0;
Eric Andersen86349772000-12-18 20:25:50 +00001177 int argv_alloced;
Erik Andersen161220c2000-03-16 08:12:48 +00001178 int i;
1179 char quote = '\0';
1180 int count;
Eric Andersen86349772000-12-18 20:25:50 +00001181 struct child_prog *prog;
Erik Andersen3522eb12000-03-12 23:49:18 +00001182
Erik Andersen161220c2000-03-16 08:12:48 +00001183 /* skip leading white space */
Eric Andersen86349772000-12-18 20:25:50 +00001184 while (**command_ptr && isspace(**command_ptr))
1185 (*command_ptr)++;
Erik Andersen3522eb12000-03-12 23:49:18 +00001186
Erik Andersen161220c2000-03-16 08:12:48 +00001187 /* this handles empty lines or leading '#' characters */
Eric Andersen86349772000-12-18 20:25:50 +00001188 if (!**command_ptr || (**command_ptr == '#')) {
1189 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001190 return 0;
1191 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001192
Eric Andersen86349772000-12-18 20:25:50 +00001193 *inbg = 0;
1194 job->num_progs = 1;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001195 job->progs = xmalloc(sizeof(*job->progs));
Erik Andersen3522eb12000-03-12 23:49:18 +00001196
Erik Andersen161220c2000-03-16 08:12:48 +00001197 /* We set the argv elements to point inside of this string. The
Eric Andersen86349772000-12-18 20:25:50 +00001198 memory is freed by free_job(). Allocate twice the original
Eric Andersenb54833c2000-07-03 23:56:26 +00001199 length in case we need to quote every single character.
Erik Andersen3522eb12000-03-12 23:49:18 +00001200
Erik Andersen161220c2000-03-16 08:12:48 +00001201 Getting clean memory relieves us of the task of NULL
1202 terminating things and makes the rest of this look a bit
1203 cleaner (though it is, admittedly, a tad less efficient) */
Eric Andersen86349772000-12-18 20:25:50 +00001204 job->cmdbuf = command = xcalloc(2*strlen(*command_ptr) + 1, sizeof(char));
Erik Andersen161220c2000-03-16 08:12:48 +00001205 job->text = NULL;
Erik Andersen3522eb12000-03-12 23:49:18 +00001206
Erik Andersen161220c2000-03-16 08:12:48 +00001207 prog = job->progs;
Eric Andersen86349772000-12-18 20:25:50 +00001208 prog->num_redirects = 0;
1209 prog->redirects = NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001210 prog->is_stopped = 0;
1211 prog->family = job;
Erik Andersen3522eb12000-03-12 23:49:18 +00001212
Eric Andersen86349772000-12-18 20:25:50 +00001213 argv_alloced = 5;
1214 prog->argv = xmalloc(sizeof(*prog->argv) * argv_alloced);
1215 prog->argv[0] = job->cmdbuf;
Erik Andersen3522eb12000-03-12 23:49:18 +00001216
Erik Andersen161220c2000-03-16 08:12:48 +00001217 buf = command;
Eric Andersen86349772000-12-18 20:25:50 +00001218 src = *command_ptr;
Erik Andersen161220c2000-03-16 08:12:48 +00001219 while (*src && !done) {
1220 if (quote == *src) {
1221 quote = '\0';
1222 } else if (quote) {
1223 if (*src == '\\') {
1224 src++;
1225 if (!*src) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001226 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001227 free_job(job);
Erik Andersen161220c2000-03-16 08:12:48 +00001228 return 1;
1229 }
1230
1231 /* in shell, "\'" should yield \' */
Eric Andersenb2356f62000-12-11 19:14:40 +00001232 if (*src != quote) {
Erik Andersen161220c2000-03-16 08:12:48 +00001233 *buf++ = '\\';
Eric Andersenb2356f62000-12-11 19:14:40 +00001234 *buf++ = '\\';
1235 }
Erik Andersen161220c2000-03-16 08:12:48 +00001236 } else if (*src == '*' || *src == '?' || *src == '[' ||
1237 *src == ']') *buf++ = '\\';
1238 *buf++ = *src;
1239 } else if (isspace(*src)) {
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001240 if (*prog->argv[argc_l]) {
1241 buf++, argc_l++;
Erik Andersen161220c2000-03-16 08:12:48 +00001242 /* +1 here leaves room for the NULL which ends argv */
Eric Andersen86349772000-12-18 20:25:50 +00001243 if ((argc_l + 1) == argv_alloced) {
1244 argv_alloced += 5;
Matt Kraaib8907522000-09-13 02:08:21 +00001245 prog->argv = xrealloc(prog->argv,
1246 sizeof(*prog->argv) *
Eric Andersen86349772000-12-18 20:25:50 +00001247 argv_alloced);
Erik Andersen161220c2000-03-16 08:12:48 +00001248 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001249 prog->argv[argc_l] = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001250 }
1251 } else
1252 switch (*src) {
1253 case '"':
1254 case '\'':
1255 quote = *src;
1256 break;
1257
1258 case '#': /* comment */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001259 if (*(src-1)== '$')
1260 *buf++ = *src;
1261 else
1262 done = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001263 break;
1264
Eric Andersen86349772000-12-18 20:25:50 +00001265 case '>': /* redirects */
Erik Andersen161220c2000-03-16 08:12:48 +00001266 case '<':
Eric Andersen86349772000-12-18 20:25:50 +00001267 i = prog->num_redirects++;
1268 prog->redirects = xrealloc(prog->redirects,
1269 sizeof(*prog->redirects) *
Matt Kraaib8907522000-09-13 02:08:21 +00001270 (i + 1));
Erik Andersen161220c2000-03-16 08:12:48 +00001271
Eric Andersen86349772000-12-18 20:25:50 +00001272 prog->redirects[i].fd = -1;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001273 if (buf != prog->argv[argc_l]) {
Erik Andersen161220c2000-03-16 08:12:48 +00001274 /* the stuff before this character may be the file number
1275 being redirected */
Eric Andersen86349772000-12-18 20:25:50 +00001276 prog->redirects[i].fd =
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001277 strtol(prog->argv[argc_l], &chptr, 10);
Erik Andersen161220c2000-03-16 08:12:48 +00001278
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001279 if (*chptr && *prog->argv[argc_l]) {
1280 buf++, argc_l++;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001281 prog->argv[argc_l] = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001282 }
1283 }
1284
Eric Andersen86349772000-12-18 20:25:50 +00001285 if (prog->redirects[i].fd == -1) {
Erik Andersen161220c2000-03-16 08:12:48 +00001286 if (*src == '>')
Eric Andersen86349772000-12-18 20:25:50 +00001287 prog->redirects[i].fd = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001288 else
Eric Andersen86349772000-12-18 20:25:50 +00001289 prog->redirects[i].fd = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001290 }
1291
1292 if (*src++ == '>') {
1293 if (*src == '>')
Eric Andersen86349772000-12-18 20:25:50 +00001294 prog->redirects[i].type =
Erik Andersen161220c2000-03-16 08:12:48 +00001295 REDIRECT_APPEND, src++;
1296 else
Eric Andersen86349772000-12-18 20:25:50 +00001297 prog->redirects[i].type = REDIRECT_OVERWRITE;
Erik Andersen161220c2000-03-16 08:12:48 +00001298 } else {
Eric Andersen86349772000-12-18 20:25:50 +00001299 prog->redirects[i].type = REDIRECT_INPUT;
Erik Andersen161220c2000-03-16 08:12:48 +00001300 }
1301
1302 /* This isn't POSIX sh compliant. Oh well. */
1303 chptr = src;
1304 while (isspace(*chptr))
1305 chptr++;
1306
1307 if (!*chptr) {
Mark Whitley44a99142001-03-14 17:26:37 +00001308 error_msg("file name expected after %c", *(src-1));
Eric Andersen86349772000-12-18 20:25:50 +00001309 free_job(job);
1310 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001311 return 1;
1312 }
1313
Eric Andersen86349772000-12-18 20:25:50 +00001314 prog->redirects[i].filename = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001315 while (*chptr && !isspace(*chptr))
1316 *buf++ = *chptr++;
1317
1318 src = chptr - 1; /* we src++ later */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001319 prog->argv[argc_l] = ++buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001320 break;
1321
1322 case '|': /* pipe */
1323 /* finish this command */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001324 if (*prog->argv[argc_l])
1325 argc_l++;
1326 if (!argc_l) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001327 error_msg("empty command in pipe");
Eric Andersen86349772000-12-18 20:25:50 +00001328 free_job(job);
1329 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001330 return 1;
1331 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001332 prog->argv[argc_l] = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001333
1334 /* and start the next */
Eric Andersen86349772000-12-18 20:25:50 +00001335 job->num_progs++;
Matt Kraaib8907522000-09-13 02:08:21 +00001336 job->progs = xrealloc(job->progs,
Eric Andersen86349772000-12-18 20:25:50 +00001337 sizeof(*job->progs) * job->num_progs);
1338 prog = job->progs + (job->num_progs - 1);
1339 prog->num_redirects = 0;
1340 prog->redirects = NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001341 prog->is_stopped = 0;
1342 prog->family = job;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001343 argc_l = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001344
Eric Andersen86349772000-12-18 20:25:50 +00001345 argv_alloced = 5;
1346 prog->argv = xmalloc(sizeof(*prog->argv) * argv_alloced);
Erik Andersen161220c2000-03-16 08:12:48 +00001347 prog->argv[0] = ++buf;
1348
1349 src++;
1350 while (*src && isspace(*src))
1351 src++;
1352
1353 if (!*src) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001354 error_msg("empty command in pipe");
Eric Andersen86349772000-12-18 20:25:50 +00001355 free_job(job);
1356 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001357 return 1;
1358 }
1359 src--; /* we'll ++ it at the end of the loop */
1360
1361 break;
1362
1363 case '&': /* background */
Eric Andersen86349772000-12-18 20:25:50 +00001364 *inbg = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001365 case ';': /* multiple commands */
1366 done = 1;
Eric Andersen86349772000-12-18 20:25:50 +00001367 return_command = *command_ptr + (src - *command_ptr) + 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001368 break;
1369
Eric Andersena1d187a2000-07-17 19:14:41 +00001370#ifdef BB_FEATURE_SH_BACKTICKS
Eric Andersenec10b9d2000-07-14 01:13:11 +00001371 case '`':
1372 /* Exec a backtick-ed command */
Eric Andersen8ea28be2001-01-05 20:58:22 +00001373 /* Besides any previous brokenness, I have not
1374 * updated backtick handling for close_me support.
1375 * I don't know if it needs it or not. -- LRD */
Eric Andersenec10b9d2000-07-14 01:13:11 +00001376 {
Eric Andersena1d187a2000-07-17 19:14:41 +00001377 char* charptr1=NULL, *charptr2;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001378 char* ptr=NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001379 struct job *newjob;
1380 struct jobset njob_list = { NULL, NULL };
Eric Andersena1d187a2000-07-17 19:14:41 +00001381 int pipefd[2];
1382 int size;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001383
1384 ptr=strchr(++src, '`');
1385 if (ptr==NULL) {
1386 fprintf(stderr, "Unmatched '`' in command\n");
Eric Andersen86349772000-12-18 20:25:50 +00001387 free_job(job);
Eric Andersenec10b9d2000-07-14 01:13:11 +00001388 return 1;
1389 }
1390
Eric Andersena1d187a2000-07-17 19:14:41 +00001391 /* Make some space to hold just the backticked command */
Eric Andersen6efc48c2000-07-18 08:16:39 +00001392 charptr1 = charptr2 = xmalloc(1+ptr-src);
Matt Kraai0b2da462000-09-19 06:46:44 +00001393 memcpy(charptr1, src, ptr-src);
1394 charptr1[ptr-src] = '\0';
Eric Andersen86349772000-12-18 20:25:50 +00001395 newjob = xmalloc(sizeof(struct job));
1396 newjob->job_list = &njob_list;
Eric Andersena1d187a2000-07-17 19:14:41 +00001397 /* Now parse and run the backticked command */
Eric Andersen86349772000-12-18 20:25:50 +00001398 if (!parse_command(&charptr1, newjob, inbg)
1399 && newjob->num_progs) {
Eric Andersena1d187a2000-07-17 19:14:41 +00001400 pipe(pipefd);
Eric Andersen86349772000-12-18 20:25:50 +00001401 run_command(newjob, 0, pipefd);
Eric Andersenec10b9d2000-07-14 01:13:11 +00001402 }
Eric Andersen86349772000-12-18 20:25:50 +00001403 checkjobs(job->job_list);
1404 free_job(newjob); /* doesn't actually free newjob,
1405 looks like a memory leak */
Eric Andersen6efc48c2000-07-18 08:16:39 +00001406 free(charptr2);
1407
1408 /* Make a copy of any stuff left over in the command
1409 * line after the second backtick */
1410 charptr2 = xmalloc(strlen(ptr)+1);
1411 memcpy(charptr2, ptr+1, strlen(ptr));
1412
Eric Andersenec10b9d2000-07-14 01:13:11 +00001413
Eric Andersena1d187a2000-07-17 19:14:41 +00001414 /* Copy the output from the backtick-ed command into the
1415 * command line, making extra room as needed */
1416 --src;
1417 charptr1 = xmalloc(BUFSIZ);
Mark Whitleyf57c9442000-12-07 19:56:48 +00001418 while ( (size=full_read(pipefd[0], charptr1, BUFSIZ-1)) >0) {
Eric Andersen86349772000-12-18 20:25:50 +00001419 int newsize=src - *command_ptr + size + 1 + strlen(charptr2);
1420 if (newsize > BUFSIZ) {
1421 *command_ptr=xrealloc(*command_ptr, newsize);
Eric Andersena1d187a2000-07-17 19:14:41 +00001422 }
1423 memcpy(src, charptr1, size);
1424 src+=size;
1425 }
1426 free(charptr1);
1427 close(pipefd[0]);
1428 if (*(src-1)=='\n')
1429 --src;
1430
Eric Andersen86349772000-12-18 20:25:50 +00001431 /* Now paste into the *command_ptr all the stuff
Eric Andersena1d187a2000-07-17 19:14:41 +00001432 * leftover after the second backtick */
Matt Kraaicbbe4d62000-09-14 00:26:50 +00001433 memcpy(src, charptr2, strlen(charptr2)+1);
Eric Andersena1d187a2000-07-17 19:14:41 +00001434 free(charptr2);
1435
Eric Andersen86349772000-12-18 20:25:50 +00001436 /* Now recursively call parse_command to deal with the new
Eric Andersena1d187a2000-07-17 19:14:41 +00001437 * and improved version of the command line with the backtick
1438 * results expanded in place... */
Eric Andersen86349772000-12-18 20:25:50 +00001439 {
1440 struct jobset *jl=job->job_list;
1441 free_job(job);
1442 job->job_list = jl;
1443 }
1444 return(parse_command(command_ptr, job, inbg));
Eric Andersenec10b9d2000-07-14 01:13:11 +00001445 }
1446 break;
Eric Andersena1d187a2000-07-17 19:14:41 +00001447#endif // BB_FEATURE_SH_BACKTICKS
Matt Kraai131241f2000-09-14 00:43:20 +00001448
1449 case '\\':
1450 src++;
1451 if (!*src) {
Eric Andersen86349772000-12-18 20:25:50 +00001452/* This is currently a little broken... */
1453#ifdef HANDLE_CONTINUATION_CHARS
1454 /* They fed us a continuation char, so continue reading stuff
1455 * on the next line, then tack that onto the end of the current
1456 * command */
1457 char *command;
1458 int newsize;
1459 printf("erik: found a continue char at EOL...\n");
1460 command = (char *) xcalloc(BUFSIZ, sizeof(char));
1461 if (get_command(input, command)) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001462 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001463 free(command);
1464 free_job(job);
1465 return 1;
1466 }
1467 newsize = strlen(*command_ptr) + strlen(command) + 2;
1468 if (newsize > BUFSIZ) {
1469 printf("erik: doing realloc\n");
1470 *command_ptr=xrealloc(*command_ptr, newsize);
1471 }
1472 printf("erik: A: *command_ptr='%s'\n", *command_ptr);
1473 memcpy(--src, command, strlen(command));
1474 printf("erik: B: *command_ptr='%s'\n", *command_ptr);
1475 free(command);
1476 break;
1477#else
Matt Kraaidd19c692001-01-31 19:00:21 +00001478 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001479 free_job(job);
Matt Kraai131241f2000-09-14 00:43:20 +00001480 return 1;
Eric Andersen86349772000-12-18 20:25:50 +00001481#endif
Matt Kraai131241f2000-09-14 00:43:20 +00001482 }
1483 if (*src == '*' || *src == '[' || *src == ']'
1484 || *src == '?') *buf++ = '\\';
1485 /* fallthrough */
Erik Andersen161220c2000-03-16 08:12:48 +00001486 default:
1487 *buf++ = *src;
1488 }
1489
Erik Andersend75af992000-03-16 08:09:09 +00001490 src++;
Erik Andersen161220c2000-03-16 08:12:48 +00001491 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001492
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001493 if (*prog->argv[argc_l]) {
1494 argc_l++;
Erik Andersen161220c2000-03-16 08:12:48 +00001495 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001496 if (!argc_l) {
Eric Andersen86349772000-12-18 20:25:50 +00001497 free_job(job);
Erik Andersen161220c2000-03-16 08:12:48 +00001498 return 0;
1499 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001500 prog->argv[argc_l] = NULL;
Erik Andersen3522eb12000-03-12 23:49:18 +00001501
Eric Andersen86349772000-12-18 20:25:50 +00001502 if (!return_command) {
1503 job->text = xmalloc(strlen(*command_ptr) + 1);
1504 strcpy(job->text, *command_ptr);
Erik Andersen161220c2000-03-16 08:12:48 +00001505 } else {
1506 /* This leaves any trailing spaces, which is a bit sloppy */
Eric Andersen86349772000-12-18 20:25:50 +00001507 count = return_command - *command_ptr;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001508 job->text = xmalloc(count + 1);
Eric Andersen86349772000-12-18 20:25:50 +00001509 strncpy(job->text, *command_ptr, count);
Erik Andersen161220c2000-03-16 08:12:48 +00001510 job->text[count] = '\0';
1511 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001512
Eric Andersen86349772000-12-18 20:25:50 +00001513 *command_ptr = return_command;
Eric Andersen46f0beb2000-11-14 21:59:22 +00001514
Erik Andersend75af992000-03-16 08:09:09 +00001515 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001516}
1517
Eric Andersen86349772000-12-18 20:25:50 +00001518/* Run the child_prog, no matter what kind of command it uses.
1519 */
1520static int pseudo_exec(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +00001521{
Eric Andersen86349772000-12-18 20:25:50 +00001522 struct built_in_command *x;
Eric Andersenb54833c2000-07-03 23:56:26 +00001523#ifdef BB_FEATURE_SH_STANDALONE_SHELL
Eric Andersenaf4ac772001-02-01 22:43:49 +00001524 char *name;
Erik Andersenbcd61772000-05-13 06:33:19 +00001525#endif
Erik Andersen3522eb12000-03-12 23:49:18 +00001526
Eric Andersene9f07fb2000-12-21 18:31:36 +00001527 /* Check if the command matches any of the non-forking builtins.
1528 * Depending on context, this might be redundant. But it's
1529 * easier to waste a few CPU cycles than it is to figure out
1530 * if this is one of those cases.
Eric Andersen86349772000-12-18 20:25:50 +00001531 */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001532 for (x = bltins; x->cmd; x++) {
1533 if (strcmp(child->argv[0], x->cmd) == 0 ) {
1534 exit(x->function(child));
1535 }
1536 }
1537
1538 /* Check if the command matches any of the forking builtins. */
Eric Andersen86349772000-12-18 20:25:50 +00001539 for (x = bltins_forking; x->cmd; x++) {
1540 if (strcmp(child->argv[0], x->cmd) == 0) {
1541 applet_name=x->cmd;
1542 exit (x->function(child));
1543 }
1544 }
1545#ifdef BB_FEATURE_SH_STANDALONE_SHELL
1546 /* Check if the command matches any busybox internal
1547 * commands ("applets") here. Following discussions from
1548 * November 2000 on busybox@opensource.lineo.com, don't use
1549 * get_last_path_component(). This way explicit (with
1550 * slashes) filenames will never be interpreted as an
1551 * applet, just like with builtins. This way the user can
1552 * override an applet with an explicit filename reference.
1553 * The only downside to this change is that an explicit
1554 * /bin/foo invocation will fork and exec /bin/foo, even if
1555 * /bin/foo is a symlink to busybox.
1556 */
Matt Kraaif2cc2762001-02-01 19:21:20 +00001557 name = child->argv[0];
Eric Andersen86349772000-12-18 20:25:50 +00001558
1559#ifdef BB_FEATURE_SH_APPLETS_ALWAYS_WIN
1560 /* If you enable BB_FEATURE_SH_APPLETS_ALWAYS_WIN, then
1561 * if you run /bin/cat, it will use BusyBox cat even if
1562 * /bin/cat exists on the filesystem and is _not_ busybox.
1563 * Some systems want this, others do not. Choose wisely. :-)
1564 */
Matt Kraaif2cc2762001-02-01 19:21:20 +00001565 name = get_last_path_component(name);
Eric Andersen86349772000-12-18 20:25:50 +00001566#endif
1567
Eric Andersen67991cf2001-02-14 21:23:06 +00001568 {
Eric Andersen82ab8da2001-03-23 17:06:01 +00001569 char** argv_l=child->argv;
Eric Andersen67991cf2001-02-14 21:23:06 +00001570 int argc_l;
Eric Andersen82ab8da2001-03-23 17:06:01 +00001571 for(argc_l=0;*argv_l!=NULL; argv_l++, argc_l++);
Eric Andersen67991cf2001-02-14 21:23:06 +00001572 optind = 1;
1573 run_applet_by_name(name, argc_l, child->argv);
Eric Andersen86349772000-12-18 20:25:50 +00001574 }
1575#endif
1576
1577 execvp(child->argv[0], child->argv);
Eric Andersen8ea28be2001-01-05 20:58:22 +00001578 perror_msg_and_die("%s", child->argv[0]);
Eric Andersen86349772000-12-18 20:25:50 +00001579}
1580
1581static void insert_job(struct job *newjob, int inbg)
1582{
1583 struct job *thejob;
Eric Andersen1ca20a72001-03-21 07:34:27 +00001584 struct jobset *j_list=newjob->job_list;
Eric Andersen86349772000-12-18 20:25:50 +00001585
1586 /* find the ID for thejob to use */
1587 newjob->jobid = 1;
Eric Andersen1ca20a72001-03-21 07:34:27 +00001588 for (thejob = j_list->head; thejob; thejob = thejob->next)
Eric Andersen86349772000-12-18 20:25:50 +00001589 if (thejob->jobid >= newjob->jobid)
1590 newjob->jobid = thejob->jobid + 1;
1591
1592 /* add thejob to the list of running jobs */
Eric Andersen1ca20a72001-03-21 07:34:27 +00001593 if (!j_list->head) {
1594 thejob = j_list->head = xmalloc(sizeof(*thejob));
Eric Andersen86349772000-12-18 20:25:50 +00001595 } else {
Eric Andersen1ca20a72001-03-21 07:34:27 +00001596 for (thejob = j_list->head; thejob->next; thejob = thejob->next) /* nothing */;
Eric Andersen86349772000-12-18 20:25:50 +00001597 thejob->next = xmalloc(sizeof(*thejob));
1598 thejob = thejob->next;
1599 }
1600
1601 *thejob = *newjob; /* physically copy the struct job */
1602 thejob->next = NULL;
1603 thejob->running_progs = thejob->num_progs;
1604 thejob->stopped_progs = 0;
1605
1606 if (inbg) {
1607 /* we don't wait for background thejobs to return -- append it
1608 to the list of backgrounded thejobs and leave it alone */
1609 printf("[%d] %d\n", thejob->jobid,
1610 newjob->progs[newjob->num_progs - 1].pid);
1611#ifdef BB_FEATURE_SH_ENVIRONMENT
1612 last_bg_pid=newjob->progs[newjob->num_progs - 1].pid;
1613#endif
1614 } else {
1615 newjob->job_list->fg = thejob;
1616
1617 /* move the new process group into the foreground */
1618 /* suppress messages when run from /linuxrc mag@sysgo.de */
1619 if (tcsetpgrp(0, newjob->pgrp) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +00001620 perror_msg("tcsetpgrp");
Eric Andersen86349772000-12-18 20:25:50 +00001621 }
1622}
1623
1624static int run_command(struct job *newjob, int inbg, int outpipe[2])
1625{
1626 /* struct job *thejob; */
1627 int i;
1628 int nextin, nextout;
1629 int pipefds[2]; /* pipefd[0] is for reading */
1630 struct built_in_command *x;
1631 struct child_prog *child;
1632
Eric Andersen6efc48c2000-07-18 08:16:39 +00001633 nextin = 0, nextout = 1;
Eric Andersen86349772000-12-18 20:25:50 +00001634 for (i = 0; i < newjob->num_progs; i++) {
1635 child = & (newjob->progs[i]);
1636
1637 if ((i + 1) < newjob->num_progs) {
1638 if (pipe(pipefds)<0) perror_msg_and_die("pipe");
Erik Andersen161220c2000-03-16 08:12:48 +00001639 nextout = pipefds[1];
1640 } else {
Eric Andersen86349772000-12-18 20:25:50 +00001641 if (outpipe[1]!=-1) {
1642 nextout = outpipe[1];
Eric Andersen6efc48c2000-07-18 08:16:39 +00001643 } else {
1644 nextout = 1;
1645 }
Erik Andersen161220c2000-03-16 08:12:48 +00001646 }
1647
Eric Andersen501c88b2000-07-28 15:14:45 +00001648#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen86349772000-12-18 20:25:50 +00001649 if (show_x_trace==TRUE) {
Eric Andersen501c88b2000-07-28 15:14:45 +00001650 int j;
Eric Andersen86349772000-12-18 20:25:50 +00001651 fputc('+', stderr);
1652 for (j = 0; child->argv[j]; j++) {
1653 fputc(' ', stderr);
1654 fputs(child->argv[j], stderr);
1655 }
1656 fputc('\n', stderr);
Eric Andersen501c88b2000-07-28 15:14:45 +00001657 }
1658#endif
1659
Eric Andersene9f07fb2000-12-21 18:31:36 +00001660 /* Check if the command matches any non-forking builtins,
1661 * but only if this is a simple command.
1662 * Non-forking builtins within pipes have to fork anyway,
1663 * and are handled in pseudo_exec. "echo foo | read bar"
1664 * is doomed to failure, and doesn't work on bash, either.
Eric Andersen86349772000-12-18 20:25:50 +00001665 */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001666 if (newjob->num_progs == 1) {
1667 for (x = bltins; x->cmd; x++) {
1668 if (strcmp(child->argv[0], x->cmd) == 0 ) {
1669 int squirrel[] = {-1, -1, -1};
1670 int rcode;
1671 setup_redirects(child, squirrel);
1672 rcode = x->function(child);
1673 restore_redirects(squirrel);
1674 return rcode;
1675 }
Erik Andersen330fd2b2000-05-19 05:35:19 +00001676 }
1677 }
1678
Eric Andersen86349772000-12-18 20:25:50 +00001679 if (!(child->pid = fork())) {
Erik Andersen161220c2000-03-16 08:12:48 +00001680 signal(SIGTTOU, SIG_DFL);
1681
Eric Andersen8ea28be2001-01-05 20:58:22 +00001682 close_all();
1683
Eric Andersen86349772000-12-18 20:25:50 +00001684 if (outpipe[1]!=-1) {
1685 close(outpipe[0]);
Eric Andersen6efc48c2000-07-18 08:16:39 +00001686 }
1687 if (nextin != 0) {
1688 dup2(nextin, 0);
1689 close(nextin);
1690 }
1691
1692 if (nextout != 1) {
Erik Andersen161220c2000-03-16 08:12:48 +00001693 dup2(nextout, 1);
Eric Andersen86349772000-12-18 20:25:50 +00001694 dup2(nextout, 2); /* Really? */
Erik Andersen161220c2000-03-16 08:12:48 +00001695 close(nextout);
Eric Andersen501c88b2000-07-28 15:14:45 +00001696 close(pipefds[0]);
Erik Andersen161220c2000-03-16 08:12:48 +00001697 }
1698
Eric Andersen86349772000-12-18 20:25:50 +00001699 /* explicit redirects override pipes */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001700 setup_redirects(child,NULL);
Erik Andersen161220c2000-03-16 08:12:48 +00001701
Eric Andersen86349772000-12-18 20:25:50 +00001702 pseudo_exec(child);
Erik Andersen161220c2000-03-16 08:12:48 +00001703 }
Eric Andersen86349772000-12-18 20:25:50 +00001704 if (outpipe[1]!=-1) {
1705 close(outpipe[1]);
Eric Andersena1d187a2000-07-17 19:14:41 +00001706 }
Erik Andersen161220c2000-03-16 08:12:48 +00001707
1708 /* put our child in the process group whose leader is the
1709 first process in this pipe */
Eric Andersen86349772000-12-18 20:25:50 +00001710 setpgid(child->pid, newjob->progs[0].pid);
Erik Andersen161220c2000-03-16 08:12:48 +00001711 if (nextin != 0)
1712 close(nextin);
Eric Andersen6efc48c2000-07-18 08:16:39 +00001713 if (nextout != 1)
Erik Andersen161220c2000-03-16 08:12:48 +00001714 close(nextout);
1715
1716 /* If there isn't another process, nextin is garbage
1717 but it doesn't matter */
1718 nextin = pipefds[0];
1719 }
1720
Eric Andersen86349772000-12-18 20:25:50 +00001721 newjob->pgrp = newjob->progs[0].pid;
Erik Andersen161220c2000-03-16 08:12:48 +00001722
Eric Andersen86349772000-12-18 20:25:50 +00001723 insert_job(newjob, inbg);
Erik Andersen3522eb12000-03-12 23:49:18 +00001724
Erik Andersen161220c2000-03-16 08:12:48 +00001725 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001726}
1727
Erik Andersend75af992000-03-16 08:09:09 +00001728static int busy_loop(FILE * input)
Erik Andersen3522eb12000-03-12 23:49:18 +00001729{
Erik Andersen161220c2000-03-16 08:12:48 +00001730 char *command;
Eric Andersen86349772000-12-18 20:25:50 +00001731 char *next_command = NULL;
1732 struct job newjob;
Eric Andersen1c314ad2000-06-28 16:56:25 +00001733 pid_t parent_pgrp;
Erik Andersen161220c2000-03-16 08:12:48 +00001734 int i;
Eric Andersen86349772000-12-18 20:25:50 +00001735 int inbg;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001736 int status;
Eric Andersen86349772000-12-18 20:25:50 +00001737 newjob.job_list = &job_list;
1738 newjob.job_context = DEFAULT_CONTEXT;
Erik Andersen3522eb12000-03-12 23:49:18 +00001739
Eric Andersen1c314ad2000-06-28 16:56:25 +00001740 /* save current owner of TTY so we can restore it on exit */
1741 parent_pgrp = tcgetpgrp(0);
1742
Matt Kraaib8907522000-09-13 02:08:21 +00001743 command = (char *) xcalloc(BUFSIZ, sizeof(char));
Erik Andersend75af992000-03-16 08:09:09 +00001744
Erik Andersen161220c2000-03-16 08:12:48 +00001745 /* don't pay any attention to this signal; it just confuses
1746 things and isn't really meant for shells anyway */
1747 signal(SIGTTOU, SIG_IGN);
Erik Andersend75af992000-03-16 08:09:09 +00001748
Erik Andersen161220c2000-03-16 08:12:48 +00001749 while (1) {
Eric Andersen86349772000-12-18 20:25:50 +00001750 if (!job_list.fg) {
Erik Andersend75af992000-03-16 08:09:09 +00001751 /* no job is in the foreground */
Erik Andersen3522eb12000-03-12 23:49:18 +00001752
Erik Andersend75af992000-03-16 08:09:09 +00001753 /* see if any background processes have exited */
Eric Andersen86349772000-12-18 20:25:50 +00001754 checkjobs(&job_list);
Erik Andersen3522eb12000-03-12 23:49:18 +00001755
Eric Andersen86349772000-12-18 20:25:50 +00001756 if (!next_command) {
1757 if (get_command(input, command))
Erik Andersen161220c2000-03-16 08:12:48 +00001758 break;
Eric Andersen86349772000-12-18 20:25:50 +00001759 next_command = command;
Erik Andersend75af992000-03-16 08:09:09 +00001760 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001761
Eric Andersenca604592001-03-08 17:17:13 +00001762 if (expand_arguments(next_command) == FALSE) {
1763 free(command);
1764 command = (char *) xcalloc(BUFSIZ, sizeof(char));
1765 next_command = NULL;
1766 continue;
1767 }
1768
Eric Andersen86349772000-12-18 20:25:50 +00001769 if (!parse_command(&next_command, &newjob, &inbg) &&
1770 newjob.num_progs) {
Eric Andersena1d187a2000-07-17 19:14:41 +00001771 int pipefds[2] = {-1,-1};
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001772 debug_printf( "job=%p fed to run_command by busy_loop()'\n",
1773 &newjob);
Eric Andersen86349772000-12-18 20:25:50 +00001774 run_command(&newjob, inbg, pipefds);
Eric Andersenfad9c112000-07-25 18:06:52 +00001775 }
1776 else {
Eric Andersena1d187a2000-07-17 19:14:41 +00001777 free(command);
Matt Kraaib8907522000-09-13 02:08:21 +00001778 command = (char *) xcalloc(BUFSIZ, sizeof(char));
Eric Andersen86349772000-12-18 20:25:50 +00001779 next_command = NULL;
Erik Andersend75af992000-03-16 08:09:09 +00001780 }
1781 } else {
1782 /* a job is running in the foreground; wait for it */
1783 i = 0;
Eric Andersen86349772000-12-18 20:25:50 +00001784 while (!job_list.fg->progs[i].pid ||
1785 job_list.fg->progs[i].is_stopped == 1) i++;
Erik Andersen3522eb12000-03-12 23:49:18 +00001786
Eric Andersen8ea28be2001-01-05 20:58:22 +00001787 if (waitpid(job_list.fg->progs[i].pid, &status, WUNTRACED)<0)
1788 perror_msg_and_die("waitpid(%d)",job_list.fg->progs[i].pid);
Erik Andersen3522eb12000-03-12 23:49:18 +00001789
Erik Andersend75af992000-03-16 08:09:09 +00001790 if (WIFEXITED(status) || WIFSIGNALED(status)) {
Erik Andersen161220c2000-03-16 08:12:48 +00001791 /* the child exited */
Eric Andersen86349772000-12-18 20:25:50 +00001792 job_list.fg->running_progs--;
1793 job_list.fg->progs[i].pid = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001794
Eric Andersen501c88b2000-07-28 15:14:45 +00001795#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen86349772000-12-18 20:25:50 +00001796 last_return_code=WEXITSTATUS(status);
Eric Andersen86349772000-12-18 20:25:50 +00001797 debug_printf("'%s' exited -- return code %d\n",
1798 job_list.fg->text, last_return_code);
Eric Andersenb180dd92001-03-09 00:42:46 +00001799#endif
Eric Andersen86349772000-12-18 20:25:50 +00001800 if (!job_list.fg->running_progs) {
Erik Andersen161220c2000-03-16 08:12:48 +00001801 /* child exited */
Eric Andersen86349772000-12-18 20:25:50 +00001802 remove_job(&job_list, job_list.fg);
1803 job_list.fg = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001804 }
Erik Andersend75af992000-03-16 08:09:09 +00001805 } else {
Erik Andersen161220c2000-03-16 08:12:48 +00001806 /* the child was stopped */
Eric Andersen86349772000-12-18 20:25:50 +00001807 job_list.fg->stopped_progs++;
1808 job_list.fg->progs[i].is_stopped = 1;
Erik Andersen3522eb12000-03-12 23:49:18 +00001809
Eric Andersen86349772000-12-18 20:25:50 +00001810 if (job_list.fg->stopped_progs == job_list.fg->running_progs) {
1811 printf("\n" JOB_STATUS_FORMAT, job_list.fg->jobid,
1812 "Stopped", job_list.fg->text);
1813 job_list.fg = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001814 }
Erik Andersend75af992000-03-16 08:09:09 +00001815 }
1816
Eric Andersen86349772000-12-18 20:25:50 +00001817 if (!job_list.fg) {
Erik Andersen161220c2000-03-16 08:12:48 +00001818 /* move the shell to the foreground */
Eric Andersen1c314ad2000-06-28 16:56:25 +00001819 /* suppress messages when run from /linuxrc mag@sysgo.de */
1820 if (tcsetpgrp(0, getpid()) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +00001821 perror_msg("tcsetpgrp");
Erik Andersend75af992000-03-16 08:09:09 +00001822 }
1823 }
1824 }
Erik Andersen161220c2000-03-16 08:12:48 +00001825 free(command);
Erik Andersen3522eb12000-03-12 23:49:18 +00001826
Eric Andersen1c314ad2000-06-28 16:56:25 +00001827 /* return controlling TTY back to parent process group before exiting */
1828 if (tcsetpgrp(0, parent_pgrp))
Matt Kraaia9819b22000-12-22 01:48:07 +00001829 perror_msg("tcsetpgrp");
Eric Andersenb54833c2000-07-03 23:56:26 +00001830
1831 /* return exit status if called with "-c" */
1832 if (input == NULL && WIFEXITED(status))
1833 return WEXITSTATUS(status);
1834
Erik Andersen161220c2000-03-16 08:12:48 +00001835 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001836}
1837
1838
Eric Andersenfad9c112000-07-25 18:06:52 +00001839#ifdef BB_FEATURE_CLEAN_UP
1840void free_memory(void)
1841{
Eric Andersenfad9c112000-07-25 18:06:52 +00001842 if (cwd)
1843 free(cwd);
1844 if (local_pending_command)
1845 free(local_pending_command);
1846
Eric Andersen86349772000-12-18 20:25:50 +00001847 if (job_list.fg && !job_list.fg->running_progs) {
1848 remove_job(&job_list, job_list.fg);
Eric Andersenfad9c112000-07-25 18:06:52 +00001849 }
1850}
1851#endif
1852
Eric Andersen6efc48c2000-07-18 08:16:39 +00001853
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001854int shell_main(int argc_l, char **argv_l)
Erik Andersen3522eb12000-03-12 23:49:18 +00001855{
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001856 int opt, interactive=FALSE;
Erik Andersen161220c2000-03-16 08:12:48 +00001857 FILE *input = stdin;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001858 argc = argc_l;
1859 argv = argv_l;
Erik Andersen3522eb12000-03-12 23:49:18 +00001860
Eric Andersen702ec592001-03-06 22:17:29 +00001861 /* These variables need re-initializing when recursing */
Eric Andersenb0970d42001-01-05 19:34:52 +00001862 shell_context = 0;
1863 cwd=NULL;
Eric Andersenb0970d42001-01-05 19:34:52 +00001864 local_pending_command = NULL;
Eric Andersen702ec592001-03-06 22:17:29 +00001865 close_me_head = NULL;
Eric Andersenb0970d42001-01-05 19:34:52 +00001866 job_list.head = NULL;
1867 job_list.fg = NULL;
1868#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +00001869 last_bg_pid=1;
1870 last_return_code=1;
Eric Andersenb0970d42001-01-05 19:34:52 +00001871 show_x_trace=FALSE;
1872#endif
Eric Andersen501c88b2000-07-28 15:14:45 +00001873
Eric Andersenb558e762000-11-30 22:43:16 +00001874 if (argv[0] && argv[0][0] == '-') {
Eric Andersen8ea28be2001-01-05 20:58:22 +00001875 FILE *prof_input;
1876 prof_input = fopen("/etc/profile", "r");
1877 if (!prof_input) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001878 printf( "Couldn't open file '/etc/profile'\n");
Eric Andersen8ea28be2001-01-05 20:58:22 +00001879 } else {
1880 int tmp_fd = fileno(prof_input);
1881 mark_open(tmp_fd);
1882 /* Now run the file */
1883 busy_loop(prof_input);
1884 fclose(prof_input);
1885 mark_closed(tmp_fd);
1886 }
Eric Andersenb558e762000-11-30 22:43:16 +00001887 }
Eric Andersen501c88b2000-07-28 15:14:45 +00001888
Eric Andersenf21aa842000-12-08 20:50:30 +00001889 while ((opt = getopt(argc_l, argv_l, "cxi")) > 0) {
Eric Andersen501c88b2000-07-28 15:14:45 +00001890 switch (opt) {
1891 case 'c':
1892 input = NULL;
Matt Kraai6085c722000-09-06 01:46:18 +00001893 if (local_pending_command != 0)
Matt Kraaidd19c692001-01-31 19:00:21 +00001894 error_msg_and_die("multiple -c arguments");
Matt Kraai6085c722000-09-06 01:46:18 +00001895 local_pending_command = xstrdup(argv[optind]);
1896 optind++;
1897 argv = argv+optind;
Eric Andersen501c88b2000-07-28 15:14:45 +00001898 break;
Eric Andersen1428c4f2000-07-28 15:19:30 +00001899#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen501c88b2000-07-28 15:14:45 +00001900 case 'x':
Eric Andersen86349772000-12-18 20:25:50 +00001901 show_x_trace = TRUE;
Eric Andersen501c88b2000-07-28 15:14:45 +00001902 break;
Eric Andersen1428c4f2000-07-28 15:19:30 +00001903#endif
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001904 case 'i':
1905 interactive = TRUE;
1906 break;
Eric Andersen501c88b2000-07-28 15:14:45 +00001907 default:
Eric Andersen67991cf2001-02-14 21:23:06 +00001908 show_usage();
Eric Andersen501c88b2000-07-28 15:14:45 +00001909 }
1910 }
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001911 /* A shell is interactive if the `-i' flag was given, or if all of
1912 * the following conditions are met:
1913 * no -c command
1914 * no arguments remaining or the -s flag given
1915 * standard input is a terminal
1916 * standard output is a terminal
1917 * Refer to Posix.2, the description of the `sh' utility. */
Eric Andersen86349772000-12-18 20:25:50 +00001918 if (argv[optind]==NULL && input==stdin &&
1919 isatty(fileno(stdin)) && isatty(fileno(stdout))) {
1920 interactive=TRUE;
1921 }
1922 if (interactive==TRUE) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001923 //printf( "optind=%d argv[optind]='%s'\n", optind, argv[optind]);
Eric Andersen501c88b2000-07-28 15:14:45 +00001924 /* Looks like they want an interactive shell */
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001925 printf( "\n\nBusyBox v%s (%s) Built-in shell (lash)\n", BB_VER, BB_BT);
1926 printf( "Enter 'help' for a list of built-in commands.\n\n");
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001927 } else if (local_pending_command==NULL) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001928 //printf( "optind=%d argv[optind]='%s'\n", optind, argv[optind]);
Matt Kraaibbaef662000-09-27 02:43:35 +00001929 input = xfopen(argv[optind], "r");
Eric Andersen8ea28be2001-01-05 20:58:22 +00001930 mark_open(fileno(input)); /* be lazy, never mark this closed */
Eric Andersen501c88b2000-07-28 15:14:45 +00001931 }
1932
Eric Andersen6efc48c2000-07-18 08:16:39 +00001933 /* initialize the cwd -- this is never freed...*/
1934 cwd=(char*)xmalloc(sizeof(char)*MAX_LINE+1);
1935 getcwd(cwd, sizeof(char)*MAX_LINE);
Erik Andersen3522eb12000-03-12 23:49:18 +00001936
Eric Andersenfad9c112000-07-25 18:06:52 +00001937#ifdef BB_FEATURE_CLEAN_UP
1938 atexit(free_memory);
1939#endif
1940
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001941#ifdef BB_FEATURE_COMMAND_EDITING
1942 cmdedit_set_initial_prompt();
1943#else
1944 PS1 = NULL;
1945 PS2 = "> ";
1946#endif
1947
Erik Andersen161220c2000-03-16 08:12:48 +00001948 return (busy_loop(input));
Erik Andersen3522eb12000-03-12 23:49:18 +00001949}
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001950