blob: 3a421b3725fd4ab5badb491f9ca26654cc01c834 [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 Whitley4b541a82001-04-25 17:10:30 +000067#include "busybox.h"
68#include "cmdedit.h"
Eric Andersene5dfced2001-04-09 22:48:12 +000069
70#ifdef BB_LOCALE_SUPPORT
Mark Whitley1c6581a2001-03-27 16:35:16 +000071#include <locale.h>
Eric Andersene5dfced2001-04-09 22:48:12 +000072#endif
Eric Andersen13d1fa12001-03-08 23:59:45 +000073
Eric Andersen34174472001-03-17 00:20:10 +000074//#define BB_FEATURE_SH_WORDEXP
Eric Andersenb180dd92001-03-09 00:42:46 +000075
Eric Andersen34174472001-03-17 00:20:10 +000076#ifdef BB_FEATURE_SH_WORDEXP
Eric Andersen13d1fa12001-03-08 23:59:45 +000077#include <wordexp.h>
78#define expand_t wordexp_t
79#undef BB_FEATURE_SH_BACKTICKS
80#else
81#include <glob.h>
82#define expand_t glob_t
83#endif
Erik Andersen3522eb12000-03-12 23:49:18 +000084
Eric Andersen13d1fa12001-03-08 23:59:45 +000085
Mark Whitley59ab0252001-01-23 22:30:04 +000086static const int MAX_READ = 128; /* size of input buffer for `read' builtin */
Erik Andersen3522eb12000-03-12 23:49:18 +000087#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
88
Erik Andersend75af992000-03-16 08:09:09 +000089
Eric Andersen86349772000-12-18 20:25:50 +000090enum redir_type { REDIRECT_INPUT, REDIRECT_OVERWRITE,
Erik Andersen161220c2000-03-16 08:12:48 +000091 REDIRECT_APPEND
92};
Erik Andersen3522eb12000-03-12 23:49:18 +000093
Eric Andersen86349772000-12-18 20:25:50 +000094static const unsigned int DEFAULT_CONTEXT=0x1;
Eric Andersen6a99aaf2000-07-27 00:15:20 +000095static const unsigned int IF_TRUE_CONTEXT=0x2;
96static const unsigned int IF_FALSE_CONTEXT=0x4;
97static const unsigned int THEN_EXP_CONTEXT=0x8;
98static const unsigned int ELSE_EXP_CONTEXT=0x10;
Eric Andersenfad9c112000-07-25 18:06:52 +000099
Eric Andersen86349772000-12-18 20:25:50 +0000100
101struct jobset {
Erik Andersen161220c2000-03-16 08:12:48 +0000102 struct job *head; /* head of list of running jobs */
103 struct job *fg; /* current foreground job */
Erik Andersen3522eb12000-03-12 23:49:18 +0000104};
105
Eric Andersen86349772000-12-18 20:25:50 +0000106struct redir_struct {
107 enum redir_type type; /* type of redirection */
Erik Andersen161220c2000-03-16 08:12:48 +0000108 int fd; /* file descriptor being redirected */
109 char *filename; /* file to redirect fd to */
Erik Andersen3522eb12000-03-12 23:49:18 +0000110};
111
Eric Andersen86349772000-12-18 20:25:50 +0000112struct child_prog {
Erik Andersen161220c2000-03-16 08:12:48 +0000113 pid_t pid; /* 0 if exited */
114 char **argv; /* program name and arguments */
Eric Andersen86349772000-12-18 20:25:50 +0000115 int num_redirects; /* elements in redirection array */
116 struct redir_struct *redirects; /* I/O redirects */
Eric Andersen86349772000-12-18 20:25:50 +0000117 int is_stopped; /* is the program currently running? */
118 struct job *family; /* pointer back to the child's parent job */
Erik Andersen3522eb12000-03-12 23:49:18 +0000119};
120
121struct job {
Eric Andersen86349772000-12-18 20:25:50 +0000122 int jobid; /* job number */
123 int num_progs; /* total number of programs in job */
124 int running_progs; /* number of programs running */
Erik Andersen161220c2000-03-16 08:12:48 +0000125 char *text; /* name of job */
Eric Andersen86349772000-12-18 20:25:50 +0000126 char *cmdbuf; /* buffer various argv's point into */
Erik Andersen161220c2000-03-16 08:12:48 +0000127 pid_t pgrp; /* process group ID for the job */
Eric Andersen86349772000-12-18 20:25:50 +0000128 struct child_prog *progs; /* array of programs in job */
Erik Andersen161220c2000-03-16 08:12:48 +0000129 struct job *next; /* to track background commands */
Eric Andersen86349772000-12-18 20:25:50 +0000130 int stopped_progs; /* number of programs alive, but stopped */
131 unsigned int job_context; /* bitmask defining current context */
132 struct jobset *job_list;
Erik Andersen3522eb12000-03-12 23:49:18 +0000133};
134
Eric Andersen86349772000-12-18 20:25:50 +0000135struct built_in_command {
Erik Andersen161220c2000-03-16 08:12:48 +0000136 char *cmd; /* name */
137 char *descr; /* description */
Eric Andersen86349772000-12-18 20:25:50 +0000138 int (*function) (struct child_prog *); /* function ptr */
Erik Andersen3522eb12000-03-12 23:49:18 +0000139};
140
Eric Andersen8ea28be2001-01-05 20:58:22 +0000141struct close_me {
142 int fd;
143 struct close_me *next;
144};
145
Eric Andersen34e19412000-07-10 18:47:24 +0000146/* function prototypes for builtins */
Eric Andersen86349772000-12-18 20:25:50 +0000147static int builtin_cd(struct child_prog *cmd);
Eric Andersen86349772000-12-18 20:25:50 +0000148static int builtin_exec(struct child_prog *cmd);
149static int builtin_exit(struct child_prog *cmd);
150static int builtin_fg_bg(struct child_prog *cmd);
151static int builtin_help(struct child_prog *cmd);
152static int builtin_jobs(struct child_prog *dummy);
153static int builtin_pwd(struct child_prog *dummy);
154static int builtin_export(struct child_prog *cmd);
155static int builtin_source(struct child_prog *cmd);
156static int builtin_unset(struct child_prog *cmd);
157static int builtin_read(struct child_prog *cmd);
Eric Andersenfad9c112000-07-25 18:06:52 +0000158#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
Eric Andersen86349772000-12-18 20:25:50 +0000159static int builtin_if(struct child_prog *cmd);
160static int builtin_then(struct child_prog *cmd);
161static int builtin_else(struct child_prog *cmd);
162static int builtin_fi(struct child_prog *cmd);
Eric Andersen70da6a62000-12-20 22:59:16 +0000163/* function prototypes for shell stuff */
164static int run_command_predicate(char *cmd);
Eric Andersenfad9c112000-07-25 18:06:52 +0000165#endif
Erik Andersen3522eb12000-03-12 23:49:18 +0000166
Eric Andersen34e19412000-07-10 18:47:24 +0000167
168/* function prototypes for shell stuff */
Eric Andersen8ea28be2001-01-05 20:58:22 +0000169static void mark_open(int fd);
170static void mark_closed(int fd);
Eric Andersen36278b92001-03-06 20:47:31 +0000171static void close_all(void);
Eric Andersen86349772000-12-18 20:25:50 +0000172static void checkjobs(struct jobset *job_list);
173static int get_command(FILE * source, char *command);
174static int parse_command(char **command_ptr, struct job *job, int *inbg);
175static int run_command(struct job *newjob, int inbg, int outpipe[2]);
176static int pseudo_exec(struct child_prog *cmd) __attribute__ ((noreturn));
Erik Andersen3522eb12000-03-12 23:49:18 +0000177static int busy_loop(FILE * input);
178
Erik Andersend75af992000-03-16 08:09:09 +0000179
Mark Whitley37653aa2000-07-12 23:36:17 +0000180/* Table of built-in functions (these are non-forking builtins, meaning they
181 * can change global variables in the parent shell process but they will not
182 * work with pipes and redirects; 'unset foo | whatever' will not work) */
Eric Andersen86349772000-12-18 20:25:50 +0000183static struct built_in_command bltins[] = {
Eric Andersenfad9c112000-07-25 18:06:52 +0000184 {"bg", "Resume a job in the background", builtin_fg_bg},
185 {"cd", "Change working directory", builtin_cd},
Eric Andersend2f56772000-09-21 02:48:07 +0000186 {"exec", "Exec command, replacing this shell with the exec'd process", builtin_exec},
Eric Andersenfad9c112000-07-25 18:06:52 +0000187 {"exit", "Exit from shell()", builtin_exit},
188 {"fg", "Bring job into the foreground", builtin_fg_bg},
189 {"jobs", "Lists the active jobs", builtin_jobs},
190 {"export", "Set environment variable", builtin_export},
191 {"unset", "Unset environment variable", builtin_unset},
192 {"read", "Input environment variable", builtin_read},
Matt Kraaidd450a02000-09-13 03:43:36 +0000193 {".", "Source-in and run commands in a file", builtin_source},
Eric Andersen86349772000-12-18 20:25:50 +0000194 /* to do: add ulimit */
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000195#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
196 {"if", NULL, builtin_if},
197 {"then", NULL, builtin_then},
198 {"else", NULL, builtin_else},
199 {"fi", NULL, builtin_fi},
200#endif
Eric Andersenfad9c112000-07-25 18:06:52 +0000201 {NULL, NULL, NULL}
Erik Andersen330fd2b2000-05-19 05:35:19 +0000202};
203
Mark Whitley37653aa2000-07-12 23:36:17 +0000204/* Table of forking built-in functions (things that fork cannot change global
205 * variables in the parent process, such as the current working directory) */
Eric Andersen86349772000-12-18 20:25:50 +0000206static struct built_in_command bltins_forking[] = {
Eric Andersenfad9c112000-07-25 18:06:52 +0000207 {"pwd", "Print current directory", builtin_pwd},
Eric Andersenfad9c112000-07-25 18:06:52 +0000208 {"help", "List shell built-in commands", builtin_help},
209 {NULL, NULL, NULL}
Erik Andersen3522eb12000-03-12 23:49:18 +0000210};
211
Eric Andersen0bcc8132001-01-05 19:37:32 +0000212
213/* Variables we export */
214unsigned int shell_context; /* Used in cmdedit.c to reset the
215 context when someone hits ^C */
216
217
218/* Globals that are static to this file */
Eric Andersencfa88ec2001-05-11 18:08:16 +0000219static const char *cwd;
Eric Andersen744b0642001-01-05 21:23:44 +0000220static char *local_pending_command = NULL;
Eric Andersen86349772000-12-18 20:25:50 +0000221static struct jobset job_list = { NULL, NULL };
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000222static int argc;
223static char **argv;
Eric Andersen702ec592001-03-06 22:17:29 +0000224static struct close_me *close_me_head;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000225#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +0000226static int last_bg_pid;
227static int last_return_code;
228static int show_x_trace;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000229#endif
Eric Andersen86349772000-12-18 20:25:50 +0000230#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
231static char syntax_err[]="syntax error near unexpected token";
232#endif
233
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000234static char *PS1;
Eric Andersene5dfced2001-04-09 22:48:12 +0000235static char *PS2 = "> ";
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000236
237
Eric Andersenb558e762000-11-30 22:43:16 +0000238#ifdef DEBUG_SHELL
239static inline void debug_printf(const char *format, ...)
240{
241 va_list args;
242 va_start(args, format);
Eric Andersen86349772000-12-18 20:25:50 +0000243 vfprintf(stderr, format, args);
Eric Andersenb558e762000-11-30 22:43:16 +0000244 va_end(args);
245}
246#else
247static inline void debug_printf(const char *format, ...) { }
248#endif
Erik Andersen3522eb12000-03-12 23:49:18 +0000249
Eric Andersen86349772000-12-18 20:25:50 +0000250/*
251 Most builtins need access to the struct child_prog that has
252 their arguments, previously coded as cmd->progs[0]. That coding
253 can exhibit a bug, if the builtin is not the first command in
254 a pipeline: "echo foo | exec sort" will attempt to exec foo.
255
256builtin previous use notes
257------ ----------------- ---------
258cd cmd->progs[0]
Eric Andersen86349772000-12-18 20:25:50 +0000259exec cmd->progs[0] squashed bug: didn't look for applets or forking builtins
260exit cmd->progs[0]
261fg_bg cmd->progs[0], job_list->head, job_list->fg
262help 0
263jobs job_list->head
264pwd 0
Eric Andersen84e229c2001-03-29 22:48:33 +0000265export cmd->progs[0]
Eric Andersen86349772000-12-18 20:25:50 +0000266source cmd->progs[0]
267unset cmd->progs[0]
268read cmd->progs[0]
269if cmd->job_context, cmd->text
270then cmd->job_context, cmd->text
271else cmd->job_context, cmd->text
272fi cmd->job_context
273
274The use of cmd->text by if/then/else/fi is hopelessly hacky.
275Would it work to increment cmd->progs[0]->argv and recurse,
276somewhat like builtin_exec does?
277
278I added "struct job *family;" to struct child_prog,
279and switched API to builtin_foo(struct child_prog *child);
280So cmd->text becomes child->family->text
281 cmd->job_context becomes child->family->job_context
282 cmd->progs[0] becomes *child
283 job_list becomes child->family->job_list
284 */
Erik Andersen3522eb12000-03-12 23:49:18 +0000285
Erik Andersend75af992000-03-16 08:09:09 +0000286/* built-in 'cd <path>' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000287static int builtin_cd(struct child_prog *child)
Erik Andersend75af992000-03-16 08:09:09 +0000288{
Erik Andersen161220c2000-03-16 08:12:48 +0000289 char *newdir;
Erik Andersend75af992000-03-16 08:09:09 +0000290
Eric Andersen86349772000-12-18 20:25:50 +0000291 if (child->argv[1] == NULL)
Erik Andersen161220c2000-03-16 08:12:48 +0000292 newdir = getenv("HOME");
293 else
Eric Andersen86349772000-12-18 20:25:50 +0000294 newdir = child->argv[1];
Erik Andersen161220c2000-03-16 08:12:48 +0000295 if (chdir(newdir)) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000296 printf("cd: %s: %m\n", newdir);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000297 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000298 }
Eric Andersencfa88ec2001-05-11 18:08:16 +0000299 cwd = xgetcwd((char *)cwd);
Eric Andersen5f265b72001-05-11 16:58:46 +0000300 if (!cwd)
301 cwd = unknown;
Matt Kraai3e856ce2000-12-01 02:55:13 +0000302 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000303}
304
Eric Andersend2f56772000-09-21 02:48:07 +0000305/* built-in 'exec' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000306static int builtin_exec(struct child_prog *child)
Eric Andersend2f56772000-09-21 02:48:07 +0000307{
Eric Andersen86349772000-12-18 20:25:50 +0000308 if (child->argv[1] == NULL)
309 return EXIT_SUCCESS; /* Really? */
310 child->argv++;
Eric Andersen07f2f392001-03-06 20:28:22 +0000311 close_all();
Eric Andersen86349772000-12-18 20:25:50 +0000312 pseudo_exec(child);
313 /* never returns */
Eric Andersend2f56772000-09-21 02:48:07 +0000314}
315
Erik Andersen3522eb12000-03-12 23:49:18 +0000316/* built-in 'exit' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000317static int builtin_exit(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000318{
Eric Andersen86349772000-12-18 20:25:50 +0000319 if (child->argv[1] == NULL)
Matt Kraai3e856ce2000-12-01 02:55:13 +0000320 exit(EXIT_SUCCESS);
Erik Andersen161220c2000-03-16 08:12:48 +0000321
Eric Andersen86349772000-12-18 20:25:50 +0000322 exit (atoi(child->argv[1]));
Erik Andersen3522eb12000-03-12 23:49:18 +0000323}
324
325/* built-in 'fg' and 'bg' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000326static int builtin_fg_bg(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000327{
Erik Andersen161220c2000-03-16 08:12:48 +0000328 int i, jobNum;
Erik Andersen6273f652000-03-17 01:12:41 +0000329 struct job *job=NULL;
Eric Andersen86349772000-12-18 20:25:50 +0000330
Eric Andersene9f07fb2000-12-21 18:31:36 +0000331 if (!child->argv[1] || child->argv[2]) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000332 error_msg("%s: exactly one argument is expected",
Eric Andersene9f07fb2000-12-21 18:31:36 +0000333 child->argv[0]);
334 return EXIT_FAILURE;
335 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000336
Eric Andersene9f07fb2000-12-21 18:31:36 +0000337 if (sscanf(child->argv[1], "%%%d", &jobNum) != 1) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000338 error_msg("%s: bad argument '%s'",
Eric Andersene9f07fb2000-12-21 18:31:36 +0000339 child->argv[0], child->argv[1]);
340 return EXIT_FAILURE;
341 }
342
343 for (job = child->family->job_list->head; job; job = job->next) {
344 if (job->jobid == jobNum) {
345 break;
Erik Andersen161220c2000-03-16 08:12:48 +0000346 }
Eric Andersene9f07fb2000-12-21 18:31:36 +0000347 }
Erik Andersen161220c2000-03-16 08:12:48 +0000348
349 if (!job) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000350 error_msg("%s: unknown job %d",
Eric Andersen86349772000-12-18 20:25:50 +0000351 child->argv[0], jobNum);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000352 return EXIT_FAILURE;
Erik Andersend75af992000-03-16 08:09:09 +0000353 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000354
Eric Andersen86349772000-12-18 20:25:50 +0000355 if (*child->argv[0] == 'f') {
Erik Andersen161220c2000-03-16 08:12:48 +0000356 /* Make this job the foreground job */
Eric Andersen1c314ad2000-06-28 16:56:25 +0000357 /* suppress messages when run from /linuxrc mag@sysgo.de */
358 if (tcsetpgrp(0, job->pgrp) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +0000359 perror_msg("tcsetpgrp");
Eric Andersen86349772000-12-18 20:25:50 +0000360 child->family->job_list->fg = job;
Erik Andersen161220c2000-03-16 08:12:48 +0000361 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000362
Erik Andersen161220c2000-03-16 08:12:48 +0000363 /* Restart the processes in the job */
Eric Andersen86349772000-12-18 20:25:50 +0000364 for (i = 0; i < job->num_progs; i++)
365 job->progs[i].is_stopped = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000366
Erik Andersen161220c2000-03-16 08:12:48 +0000367 kill(-job->pgrp, SIGCONT);
Erik Andersen3522eb12000-03-12 23:49:18 +0000368
Eric Andersen86349772000-12-18 20:25:50 +0000369 job->stopped_progs = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000370
Matt Kraai3e856ce2000-12-01 02:55:13 +0000371 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000372}
373
374/* built-in 'help' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000375static int builtin_help(struct child_prog *dummy)
Erik Andersen3522eb12000-03-12 23:49:18 +0000376{
Eric Andersen86349772000-12-18 20:25:50 +0000377 struct built_in_command *x;
Erik Andersen3522eb12000-03-12 23:49:18 +0000378
Eric Andersen86349772000-12-18 20:25:50 +0000379 printf("\nBuilt-in commands:\n");
380 printf("-------------------\n");
Erik Andersen161220c2000-03-16 08:12:48 +0000381 for (x = bltins; x->cmd; x++) {
Eric Andersenfad9c112000-07-25 18:06:52 +0000382 if (x->descr==NULL)
383 continue;
Eric Andersen86349772000-12-18 20:25:50 +0000384 printf("%s\t%s\n", x->cmd, x->descr);
Erik Andersen161220c2000-03-16 08:12:48 +0000385 }
Erik Andersen330fd2b2000-05-19 05:35:19 +0000386 for (x = bltins_forking; x->cmd; x++) {
Eric Andersenfad9c112000-07-25 18:06:52 +0000387 if (x->descr==NULL)
388 continue;
Eric Andersen86349772000-12-18 20:25:50 +0000389 printf("%s\t%s\n", x->cmd, x->descr);
Erik Andersen330fd2b2000-05-19 05:35:19 +0000390 }
Eric Andersen86349772000-12-18 20:25:50 +0000391 printf("\n\n");
Matt Kraai3e856ce2000-12-01 02:55:13 +0000392 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000393}
394
395/* built-in 'jobs' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000396static int builtin_jobs(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000397{
Erik Andersen161220c2000-03-16 08:12:48 +0000398 struct job *job;
Eric Andersen86349772000-12-18 20:25:50 +0000399 char *status_string;
Erik Andersen3522eb12000-03-12 23:49:18 +0000400
Eric Andersen86349772000-12-18 20:25:50 +0000401 for (job = child->family->job_list->head; job; job = job->next) {
402 if (job->running_progs == job->stopped_progs)
403 status_string = "Stopped";
Erik Andersen161220c2000-03-16 08:12:48 +0000404 else
Eric Andersen86349772000-12-18 20:25:50 +0000405 status_string = "Running";
Erik Andersen161220c2000-03-16 08:12:48 +0000406
Eric Andersen86349772000-12-18 20:25:50 +0000407 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->text);
Erik Andersen161220c2000-03-16 08:12:48 +0000408 }
Matt Kraai3e856ce2000-12-01 02:55:13 +0000409 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000410}
411
412
413/* built-in 'pwd' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000414static int builtin_pwd(struct child_prog *dummy)
Erik Andersen3522eb12000-03-12 23:49:18 +0000415{
Eric Andersencfa88ec2001-05-11 18:08:16 +0000416 cwd = xgetcwd((char *)cwd);
Eric Andersen5f265b72001-05-11 16:58:46 +0000417 if (!cwd)
418 cwd = unknown;
Matt Kraai59df6f72001-05-16 14:21:09 +0000419 puts(cwd);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000420 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000421}
422
Erik Andersen6273f652000-03-17 01:12:41 +0000423/* built-in 'export VAR=value' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000424static int builtin_export(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000425{
Erik Andersen161220c2000-03-16 08:12:48 +0000426 int res;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000427 char *v = child->argv[1];
Erik Andersen3522eb12000-03-12 23:49:18 +0000428
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000429 if (v == NULL) {
Eric Andersen84e229c2001-03-29 22:48:33 +0000430 char **e;
431 for (e = environ; *e; e++) {
Matt Kraai59df6f72001-05-16 14:21:09 +0000432 puts(*e);
Eric Andersen84e229c2001-03-29 22:48:33 +0000433 }
Matt Kraai2129f972001-04-04 17:50:04 +0000434 return 0;
Erik Andersen161220c2000-03-16 08:12:48 +0000435 }
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000436 res = putenv(v);
Erik Andersen161220c2000-03-16 08:12:48 +0000437 if (res)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000438 fprintf(stderr, "export: %m\n");
Eric Andersen004015e2001-05-21 20:30:51 +0000439#ifdef BB_FEATURE_SH_FANCY_PROMPT
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000440 if (strncmp(v, "PS1=", 4)==0)
441 PS1 = getenv("PS1");
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000442#endif
Eric Andersene5dfced2001-04-09 22:48:12 +0000443
444#ifdef BB_LOCALE_SUPPORT
Mark Whitley1c6581a2001-03-27 16:35:16 +0000445 if(strncmp(v, "LC_ALL=", 7)==0)
446 setlocale(LC_ALL, getenv("LC_ALL"));
Mark Whitleya82a0032001-03-27 17:07:15 +0000447 if(strncmp(v, "LC_CTYPE=", 9)==0)
Mark Whitley1c6581a2001-03-27 16:35:16 +0000448 setlocale(LC_CTYPE, getenv("LC_CTYPE"));
Eric Andersene5dfced2001-04-09 22:48:12 +0000449#endif
Mark Whitley1c6581a2001-03-27 16:35:16 +0000450
Erik Andersen161220c2000-03-16 08:12:48 +0000451 return (res);
Erik Andersen3522eb12000-03-12 23:49:18 +0000452}
453
Eric Andersenb54833c2000-07-03 23:56:26 +0000454/* built-in 'read VAR' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000455static int builtin_read(struct child_prog *child)
Eric Andersenb54833c2000-07-03 23:56:26 +0000456{
457 int res = 0, len, newlen;
458 char *s;
459 char string[MAX_READ];
460
Eric Andersen86349772000-12-18 20:25:50 +0000461 if (child->argv[1]) {
Eric Andersenb54833c2000-07-03 23:56:26 +0000462 /* argument (VAR) given: put "VAR=" into buffer */
Eric Andersen86349772000-12-18 20:25:50 +0000463 strcpy(string, child->argv[1]);
Eric Andersenb54833c2000-07-03 23:56:26 +0000464 len = strlen(string);
465 string[len++] = '=';
466 string[len] = '\0';
467 fgets(&string[len], sizeof(string) - len, stdin); /* read string */
468 newlen = strlen(string);
469 if(newlen > len)
470 string[--newlen] = '\0'; /* chomp trailing newline */
471 /*
472 ** string should now contain "VAR=<value>"
473 ** copy it (putenv() won't do that, so we must make sure
474 ** the string resides in a static buffer!)
475 */
476 res = -1;
477 if((s = strdup(string)))
478 res = putenv(s);
479 if (res)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000480 fprintf(stderr, "read: %m\n");
Eric Andersenb54833c2000-07-03 23:56:26 +0000481 }
482 else
483 fgets(string, sizeof(string), stdin);
484
485 return (res);
486}
487
Eric Andersenfad9c112000-07-25 18:06:52 +0000488#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
489/* Built-in handler for 'if' commands */
Eric Andersen86349772000-12-18 20:25:50 +0000490static int builtin_if(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000491{
Eric Andersen86349772000-12-18 20:25:50 +0000492 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000493 int status;
494 char* charptr1=cmd->text+3; /* skip over the leading 'if ' */
495
496 /* Now run the 'if' command */
Eric Andersen86349772000-12-18 20:25:50 +0000497 debug_printf( "job=%p entering builtin_if ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
498 status = run_command_predicate(charptr1);
499 debug_printf( "if test returned ");
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000500 if (status == 0) {
Eric Andersen86349772000-12-18 20:25:50 +0000501 debug_printf( "TRUE\n");
502 cmd->job_context |= IF_TRUE_CONTEXT;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000503 } else {
Eric Andersen86349772000-12-18 20:25:50 +0000504 debug_printf( "FALSE\n");
505 cmd->job_context |= IF_FALSE_CONTEXT;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000506 }
Eric Andersen86349772000-12-18 20:25:50 +0000507 debug_printf("job=%p builtin_if set job context to %x\n", cmd, cmd->job_context);
508 shell_context++;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000509
510 return status;
Eric Andersenfad9c112000-07-25 18:06:52 +0000511}
512
513/* Built-in handler for 'then' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000514static int builtin_then(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000515{
Eric Andersen86349772000-12-18 20:25:50 +0000516 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000517 char* charptr1=cmd->text+5; /* skip over the leading 'then ' */
518
Eric Andersen86349772000-12-18 20:25:50 +0000519 debug_printf( "job=%p entering builtin_then ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
520 if (! (cmd->job_context & (IF_TRUE_CONTEXT|IF_FALSE_CONTEXT))) {
521 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000522 error_msg("%s `then'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000523 return EXIT_FAILURE;
Eric Andersenfad9c112000-07-25 18:06:52 +0000524 }
Eric Andersen86349772000-12-18 20:25:50 +0000525
526 cmd->job_context |= THEN_EXP_CONTEXT;
527 debug_printf("job=%p builtin_then set job context to %x\n", cmd, cmd->job_context);
528
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000529 /* If the if result was FALSE, skip the 'then' stuff */
Eric Andersen86349772000-12-18 20:25:50 +0000530 if (cmd->job_context & IF_FALSE_CONTEXT) {
Matt Kraai3e856ce2000-12-01 02:55:13 +0000531 return EXIT_SUCCESS;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000532 }
533
Eric Andersen86349772000-12-18 20:25:50 +0000534 /* Seems the if result was TRUE, so run the 'then' command */
535 debug_printf( "'then' now running '%s'\n", charptr1);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000536
Eric Andersen86349772000-12-18 20:25:50 +0000537 return(run_command_predicate(charptr1));
Eric Andersenfad9c112000-07-25 18:06:52 +0000538}
539
540/* Built-in handler for 'else' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000541static int builtin_else(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000542{
Eric Andersen86349772000-12-18 20:25:50 +0000543 struct job *cmd = child->family;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000544 char* charptr1=cmd->text+5; /* skip over the leading 'else ' */
545
Eric Andersen86349772000-12-18 20:25:50 +0000546 debug_printf( "job=%p entering builtin_else ('%s')-- context=%d\n", cmd, charptr1, cmd->job_context);
547
548 if (! (cmd->job_context & THEN_EXP_CONTEXT)) {
549 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000550 error_msg("%s `else'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000551 return EXIT_FAILURE;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000552 }
553 /* If the if result was TRUE, skip the 'else' stuff */
Eric Andersen86349772000-12-18 20:25:50 +0000554 if (cmd->job_context & IF_TRUE_CONTEXT) {
Matt Kraai3e856ce2000-12-01 02:55:13 +0000555 return EXIT_SUCCESS;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000556 }
557
Eric Andersen86349772000-12-18 20:25:50 +0000558 cmd->job_context |= ELSE_EXP_CONTEXT;
Eric Andersene9f07fb2000-12-21 18:31:36 +0000559 debug_printf("job=%p builtin_else set job context to %x\n", cmd, cmd->job_context);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000560
561 /* Now run the 'else' command */
Eric Andersen86349772000-12-18 20:25:50 +0000562 debug_printf( "'else' now running '%s'\n", charptr1);
563 return(run_command_predicate(charptr1));
Eric Andersenfad9c112000-07-25 18:06:52 +0000564}
565
566/* Built-in handler for 'fi' (part of the 'if' command) */
Eric Andersen86349772000-12-18 20:25:50 +0000567static int builtin_fi(struct child_prog *child)
Eric Andersenfad9c112000-07-25 18:06:52 +0000568{
Eric Andersen86349772000-12-18 20:25:50 +0000569 struct job *cmd = child->family;
570 debug_printf( "job=%p entering builtin_fi ('%s')-- context=%d\n", cmd, "", cmd->job_context);
571 if (! (cmd->job_context & (IF_TRUE_CONTEXT|IF_FALSE_CONTEXT))) {
572 shell_context = 0; /* Reset the shell's context on an error */
Matt Kraaidd19c692001-01-31 19:00:21 +0000573 error_msg("%s `fi'", syntax_err);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000574 return EXIT_FAILURE;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000575 }
576 /* Clear out the if and then context bits */
Eric Andersen86349772000-12-18 20:25:50 +0000577 cmd->job_context &= ~(IF_TRUE_CONTEXT|IF_FALSE_CONTEXT|THEN_EXP_CONTEXT|ELSE_EXP_CONTEXT);
578 debug_printf("job=%p builtin_fi set job context to %x\n", cmd, cmd->job_context);
579 shell_context--;
Matt Kraai3e856ce2000-12-01 02:55:13 +0000580 return EXIT_SUCCESS;
Eric Andersenfad9c112000-07-25 18:06:52 +0000581}
582#endif
583
Erik Andersen3522eb12000-03-12 23:49:18 +0000584/* Built-in '.' handler (read-in and execute commands from file) */
Eric Andersen86349772000-12-18 20:25:50 +0000585static int builtin_source(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000586{
Erik Andersen161220c2000-03-16 08:12:48 +0000587 FILE *input;
588 int status;
Eric Andersen8ea28be2001-01-05 20:58:22 +0000589 int fd;
Erik Andersen3522eb12000-03-12 23:49:18 +0000590
Eric Andersen86349772000-12-18 20:25:50 +0000591 if (child->argv[1] == NULL)
Matt Kraai3e856ce2000-12-01 02:55:13 +0000592 return EXIT_FAILURE;
Erik Andersen3522eb12000-03-12 23:49:18 +0000593
Eric Andersen86349772000-12-18 20:25:50 +0000594 input = fopen(child->argv[1], "r");
Erik Andersen161220c2000-03-16 08:12:48 +0000595 if (!input) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000596 printf( "Couldn't open file '%s'\n", child->argv[1]);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000597 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000598 }
Erik Andersend75af992000-03-16 08:09:09 +0000599
Eric Andersen8ea28be2001-01-05 20:58:22 +0000600 fd=fileno(input);
601 mark_open(fd);
Erik Andersen161220c2000-03-16 08:12:48 +0000602 /* Now run the file */
603 status = busy_loop(input);
Matt Kraaidd450a02000-09-13 03:43:36 +0000604 fclose(input);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000605 mark_closed(fd);
Erik Andersen161220c2000-03-16 08:12:48 +0000606 return (status);
Erik Andersen3522eb12000-03-12 23:49:18 +0000607}
608
609/* built-in 'unset VAR' handler */
Eric Andersen86349772000-12-18 20:25:50 +0000610static int builtin_unset(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +0000611{
Eric Andersen86349772000-12-18 20:25:50 +0000612 if (child->argv[1] == NULL) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +0000613 printf( "unset: parameter required.\n");
Matt Kraai3e856ce2000-12-01 02:55:13 +0000614 return EXIT_FAILURE;
Erik Andersen161220c2000-03-16 08:12:48 +0000615 }
Eric Andersen86349772000-12-18 20:25:50 +0000616 unsetenv(child->argv[1]);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000617 return EXIT_SUCCESS;
Erik Andersen3522eb12000-03-12 23:49:18 +0000618}
619
Eric Andersen70da6a62000-12-20 22:59:16 +0000620#ifdef BB_FEATURE_SH_IF_EXPRESSIONS
Eric Andersen86349772000-12-18 20:25:50 +0000621/* currently used by if/then/else.
Eric Andersene9f07fb2000-12-21 18:31:36 +0000622 *
623 * Reparsing the command line for this purpose is gross,
624 * incorrect, and fundamentally unfixable; in particular,
625 * think about what happens with command substitution.
626 * We really need to pull out the run, wait, return status
627 * functionality out of busy_loop so we can child->argv++
628 * and use that, without going back through parse_command.
Eric Andersen86349772000-12-18 20:25:50 +0000629 */
630static int run_command_predicate(char *cmd)
631{
Eric Andersene5dfced2001-04-09 22:48:12 +0000632 local_pending_command = xstrdup(cmd);
Eric Andersen86349772000-12-18 20:25:50 +0000633 return( busy_loop(NULL));
634}
Eric Andersen70da6a62000-12-20 22:59:16 +0000635#endif
Eric Andersen86349772000-12-18 20:25:50 +0000636
Eric Andersen8ea28be2001-01-05 20:58:22 +0000637static void mark_open(int fd)
638{
639 struct close_me *new = xmalloc(sizeof(struct close_me));
640 new->fd = fd;
641 new->next = close_me_head;
642 close_me_head = new;
643}
644
645static void mark_closed(int fd)
646{
647 struct close_me *tmp;
648 if (close_me_head == NULL || close_me_head->fd != fd)
649 error_msg_and_die("corrupt close_me");
650 tmp = close_me_head;
651 close_me_head = close_me_head->next;
652 free(tmp);
653}
654
655static void close_all()
656{
Eric Andersen702ec592001-03-06 22:17:29 +0000657 struct close_me *c, *tmp;
658 for (c=close_me_head; c; c=tmp) {
659 close(c->fd);
660 tmp=c->next;
661 free(c);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000662 }
663 close_me_head = NULL;
664}
665
666
Erik Andersen3522eb12000-03-12 23:49:18 +0000667/* free up all memory from a job */
Eric Andersen86349772000-12-18 20:25:50 +0000668static void free_job(struct job *cmd)
Erik Andersen3522eb12000-03-12 23:49:18 +0000669{
Erik Andersen161220c2000-03-16 08:12:48 +0000670 int i;
Mark Whitley44a99142001-03-14 17:26:37 +0000671 struct jobset *keep;
Erik Andersen3522eb12000-03-12 23:49:18 +0000672
Eric Andersen86349772000-12-18 20:25:50 +0000673 for (i = 0; i < cmd->num_progs; i++) {
Erik Andersen161220c2000-03-16 08:12:48 +0000674 free(cmd->progs[i].argv);
Eric Andersen86349772000-12-18 20:25:50 +0000675 if (cmd->progs[i].redirects)
676 free(cmd->progs[i].redirects);
Erik Andersen161220c2000-03-16 08:12:48 +0000677 }
Mark Whitley44a99142001-03-14 17:26:37 +0000678 if (cmd->progs)
679 free(cmd->progs);
Erik Andersen161220c2000-03-16 08:12:48 +0000680 if (cmd->text)
681 free(cmd->text);
Mark Whitley44a99142001-03-14 17:26:37 +0000682 if (cmd->cmdbuf)
683 free(cmd->cmdbuf);
684 keep = cmd->job_list;
Eric Andersenec10b9d2000-07-14 01:13:11 +0000685 memset(cmd, 0, sizeof(struct job));
Mark Whitley44a99142001-03-14 17:26:37 +0000686 cmd->job_list = keep;
Erik Andersen3522eb12000-03-12 23:49:18 +0000687}
688
Eric Andersen1ca20a72001-03-21 07:34:27 +0000689/* remove a job from a jobset */
690static void remove_job(struct jobset *j_list, struct job *job)
Erik Andersen3522eb12000-03-12 23:49:18 +0000691{
Eric Andersen86349772000-12-18 20:25:50 +0000692 struct job *prevjob;
Erik Andersen3522eb12000-03-12 23:49:18 +0000693
Eric Andersen86349772000-12-18 20:25:50 +0000694 free_job(job);
Eric Andersen1ca20a72001-03-21 07:34:27 +0000695 if (job == j_list->head) {
696 j_list->head = job->next;
Erik Andersen161220c2000-03-16 08:12:48 +0000697 } else {
Eric Andersen1ca20a72001-03-21 07:34:27 +0000698 prevjob = j_list->head;
Eric Andersen86349772000-12-18 20:25:50 +0000699 while (prevjob->next != job)
700 prevjob = prevjob->next;
701 prevjob->next = job->next;
Erik Andersen161220c2000-03-16 08:12:48 +0000702 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000703
Erik Andersen161220c2000-03-16 08:12:48 +0000704 free(job);
Erik Andersen3522eb12000-03-12 23:49:18 +0000705}
706
707/* Checks to see if any background processes have exited -- if they
708 have, figure out why and see if a job has completed */
Eric Andersen1ca20a72001-03-21 07:34:27 +0000709static void checkjobs(struct jobset *j_list)
Erik Andersen3522eb12000-03-12 23:49:18 +0000710{
Erik Andersen161220c2000-03-16 08:12:48 +0000711 struct job *job;
712 pid_t childpid;
713 int status;
Eric Andersen86349772000-12-18 20:25:50 +0000714 int prognum = 0;
Erik Andersend75af992000-03-16 08:09:09 +0000715
Erik Andersen161220c2000-03-16 08:12:48 +0000716 while ((childpid = waitpid(-1, &status, WNOHANG | WUNTRACED)) > 0) {
Eric Andersen1ca20a72001-03-21 07:34:27 +0000717 for (job = j_list->head; job; job = job->next) {
Eric Andersen86349772000-12-18 20:25:50 +0000718 prognum = 0;
719 while (prognum < job->num_progs &&
720 job->progs[prognum].pid != childpid) prognum++;
721 if (prognum < job->num_progs)
Erik Andersen161220c2000-03-16 08:12:48 +0000722 break;
723 }
724
Eric Andersena1d187a2000-07-17 19:14:41 +0000725 /* This happens on backticked commands */
726 if(job==NULL)
727 return;
728
Erik Andersen161220c2000-03-16 08:12:48 +0000729 if (WIFEXITED(status) || WIFSIGNALED(status)) {
730 /* child exited */
Eric Andersen86349772000-12-18 20:25:50 +0000731 job->running_progs--;
732 job->progs[prognum].pid = 0;
Erik Andersen161220c2000-03-16 08:12:48 +0000733
Eric Andersen86349772000-12-18 20:25:50 +0000734 if (!job->running_progs) {
735 printf(JOB_STATUS_FORMAT, job->jobid, "Done", job->text);
Eric Andersen1ca20a72001-03-21 07:34:27 +0000736 remove_job(j_list, job);
Erik Andersen161220c2000-03-16 08:12:48 +0000737 }
738 } else {
739 /* child stopped */
Eric Andersen86349772000-12-18 20:25:50 +0000740 job->stopped_progs++;
741 job->progs[prognum].is_stopped = 1;
Erik Andersen161220c2000-03-16 08:12:48 +0000742
Eric Andersen86349772000-12-18 20:25:50 +0000743 if (job->stopped_progs == job->num_progs) {
744 printf(JOB_STATUS_FORMAT, job->jobid, "Stopped",
Erik Andersen161220c2000-03-16 08:12:48 +0000745 job->text);
746 }
747 }
Erik Andersend75af992000-03-16 08:09:09 +0000748 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000749
Erik Andersen161220c2000-03-16 08:12:48 +0000750 if (childpid == -1 && errno != ECHILD)
Matt Kraaia9819b22000-12-22 01:48:07 +0000751 perror_msg("waitpid");
Erik Andersen3522eb12000-03-12 23:49:18 +0000752}
753
Eric Andersene9f07fb2000-12-21 18:31:36 +0000754/* squirrel != NULL means we squirrel away copies of stdin, stdout,
755 * and stderr if they are redirected. */
756static int setup_redirects(struct child_prog *prog, int squirrel[])
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000757{
758 int i;
759 int openfd;
760 int mode = O_RDONLY;
Eric Andersen86349772000-12-18 20:25:50 +0000761 struct redir_struct *redir = prog->redirects;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000762
Eric Andersen86349772000-12-18 20:25:50 +0000763 for (i = 0; i < prog->num_redirects; i++, redir++) {
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000764 switch (redir->type) {
765 case REDIRECT_INPUT:
766 mode = O_RDONLY;
767 break;
768 case REDIRECT_OVERWRITE:
Eric Andersen46f0beb2000-11-14 21:59:22 +0000769 mode = O_WRONLY | O_CREAT | O_TRUNC;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000770 break;
771 case REDIRECT_APPEND:
Eric Andersen46f0beb2000-11-14 21:59:22 +0000772 mode = O_WRONLY | O_CREAT | O_APPEND;
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000773 break;
774 }
775
776 openfd = open(redir->filename, mode, 0666);
777 if (openfd < 0) {
778 /* this could get lost if stderr has been redirected, but
779 bash and ash both lose it as well (though zsh doesn't!) */
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000780 perror_msg("error opening %s", redir->filename);
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000781 return 1;
782 }
783
784 if (openfd != redir->fd) {
Eric Andersene9f07fb2000-12-21 18:31:36 +0000785 if (squirrel && redir->fd < 3) {
786 squirrel[redir->fd] = dup(redir->fd);
787 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000788 dup2(openfd, redir->fd);
789 close(openfd);
790 }
791 }
792
793 return 0;
794}
795
Eric Andersene9f07fb2000-12-21 18:31:36 +0000796static void restore_redirects(int squirrel[])
797{
798 int i, fd;
799 for (i=0; i<3; i++) {
800 fd = squirrel[i];
801 if (fd != -1) {
802 /* No error checking. I sure wouldn't know what
803 * to do with an error if I found one! */
804 dup2(fd, i);
805 close(fd);
806 }
807 }
808}
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000809
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000810static inline void cmdedit_set_initial_prompt(void)
Eric Andersen22332fd2001-01-30 23:40:39 +0000811{
Eric Andersen004015e2001-05-21 20:30:51 +0000812#ifndef BB_FEATURE_SH_FANCY_PROMPT
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000813 PS1 = NULL;
Eric Andersen22332fd2001-01-30 23:40:39 +0000814#else
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000815 PS1 = getenv("PS1");
Eric Andersene5dfced2001-04-09 22:48:12 +0000816 if(PS1==0)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000817 PS1 = "\\w \\$ ";
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000818#endif
Eric Andersen09acc062001-01-04 11:10:38 +0000819}
820
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000821static inline void setup_prompt_string(char **prompt_str)
822{
Eric Andersen004015e2001-05-21 20:30:51 +0000823#ifndef BB_FEATURE_SH_FANCY_PROMPT
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000824 /* Set up the prompt */
825 if (shell_context == 0) {
826 if (PS1)
827 free(PS1);
828 PS1=xmalloc(strlen(cwd)+4);
829 sprintf(PS1, "%s %s", cwd, ( geteuid() != 0 ) ? "$ ":"# ");
830 *prompt_str = PS1;
831 } else {
832 *prompt_str = PS2;
833 }
834#else
835 *prompt_str = (shell_context==0)? PS1 : PS2;
836#endif
837}
Eric Andersen22332fd2001-01-30 23:40:39 +0000838
Eric Andersen09acc062001-01-04 11:10:38 +0000839static int get_command(FILE * source, char *command)
840{
841 char *prompt_str;
Eric Andersen8ea28be2001-01-05 20:58:22 +0000842
Eric Andersen1c314ad2000-06-28 16:56:25 +0000843 if (source == NULL) {
844 if (local_pending_command) {
845 /* a command specified (-c option): return it & mark it done */
846 strcpy(command, local_pending_command);
847 free(local_pending_command);
848 local_pending_command = NULL;
849 return 0;
850 }
851 return 1;
852 }
853
Erik Andersen161220c2000-03-16 08:12:48 +0000854 if (source == stdin) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000855 setup_prompt_string(&prompt_str);
Eric Andersen8ea28be2001-01-05 20:58:22 +0000856
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000857#ifdef BB_FEATURE_COMMAND_EDITING
Eric Andersen501c88b2000-07-28 15:14:45 +0000858 /*
859 ** enable command line editing only while a command line
860 ** is actually being read; otherwise, we'll end up bequeathing
861 ** atexit() handlers and other unwanted stuff to our
862 ** child processes (rob@sysgo.de)
863 */
Eric Andersen86349772000-12-18 20:25:50 +0000864 cmdedit_read_input(prompt_str, command);
Eric Andersen501c88b2000-07-28 15:14:45 +0000865 cmdedit_terminate();
Erik Andersen161220c2000-03-16 08:12:48 +0000866 return 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +0000867#else
Eric Andersen8ea28be2001-01-05 20:58:22 +0000868 fputs(prompt_str, stdout);
Erik Andersend75af992000-03-16 08:09:09 +0000869#endif
Erik Andersen161220c2000-03-16 08:12:48 +0000870 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000871
Erik Andersen161220c2000-03-16 08:12:48 +0000872 if (!fgets(command, BUFSIZ - 2, source)) {
873 if (source == stdin)
874 printf("\n");
875 return 1;
876 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000877
Erik Andersen161220c2000-03-16 08:12:48 +0000878 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +0000879}
880
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000881#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000882static char* itoa(register int i)
883{
Eric Andersenb558e762000-11-30 22:43:16 +0000884 static char a[7]; /* Max 7 ints */
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000885 register char *b = a + sizeof(a) - 1;
886 int sign = (i < 0);
887
888 if (sign)
889 i = -i;
890 *b = 0;
891 do
892 {
893 *--b = '0' + (i % 10);
894 i /= 10;
895 }
896 while (i);
897 if (sign)
898 *--b = '-';
899 return b;
900}
Eric Andersenca604592001-03-08 17:17:13 +0000901#endif
902
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000903#if defined BB_FEATURE_SH_ENVIRONMENT && ! defined BB_FEATURE_SH_WORDEXP
Eric Andersen1ca20a72001-03-21 07:34:27 +0000904char * strsep_space( char *string, int * ix)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000905{
906 char *token, *begin;
907
908 begin = string;
909
910 /* Short circuit the trivial case */
Eric Andersen1ca20a72001-03-21 07:34:27 +0000911 if ( !string || ! string[*ix])
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000912 return NULL;
913
914 /* Find the end of the token. */
Eric Andersen1ca20a72001-03-21 07:34:27 +0000915 while( string && string[*ix] && !isspace(string[*ix]) ) {
916 (*ix)++;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000917 }
918
919 /* Find the end of any whitespace trailing behind
920 * the token and let that be part of the token */
Eric Andersen1ca20a72001-03-21 07:34:27 +0000921 while( string && string[*ix] && isspace(string[*ix]) ) {
922 (*ix)++;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000923 }
924
Eric Andersen1ca20a72001-03-21 07:34:27 +0000925 if (! string && *ix==0) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000926 /* Nothing useful was found */
927 return NULL;
928 }
929
Eric Andersen1ca20a72001-03-21 07:34:27 +0000930 token = xmalloc(*ix+1);
931 token[*ix] = '\0';
932 strncpy(token, string, *ix);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000933
934 return token;
935}
936#endif
937
938
Eric Andersenca604592001-03-08 17:17:13 +0000939static int expand_arguments(char *command)
940{
941#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen13d1fa12001-03-08 23:59:45 +0000942 expand_t expand_result;
Eric Andersenca604592001-03-08 17:17:13 +0000943 char *src, *dst, *var;
Eric Andersen1ca20a72001-03-21 07:34:27 +0000944 int ix = 0;
Eric Andersenca604592001-03-08 17:17:13 +0000945 int i=0, length, total_length=0, retval;
Eric Andersen195743f2001-03-09 19:21:37 +0000946 const char *out_of_space = "out of space during expansion";
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000947#endif
948
Eric Andersenca604592001-03-08 17:17:13 +0000949 /* get rid of the terminating \n */
950 chomp(command);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000951
952 /* Fix up escape sequences to be the Real Thing(tm) */
Eric Andersen1ca20a72001-03-21 07:34:27 +0000953 while( command && command[ix]) {
954 if (command[ix] == '\\') {
Eric Andersene5dfced2001-04-09 22:48:12 +0000955 const char *tmp = command+ix+1;
Eric Andersen1ca20a72001-03-21 07:34:27 +0000956 command[ix] = process_escape_sequence( &tmp );
957 memmove(command+ix + 1, tmp, strlen(tmp)+1);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000958 }
Eric Andersen1ca20a72001-03-21 07:34:27 +0000959 ix++;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000960 }
Erik Andersen3522eb12000-03-12 23:49:18 +0000961
Eric Andersen6a99aaf2000-07-27 00:15:20 +0000962#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +0000963
Eric Andersen13d1fa12001-03-08 23:59:45 +0000964
Eric Andersen34174472001-03-17 00:20:10 +0000965#ifdef BB_FEATURE_SH_WORDEXP
Eric Andersenca604592001-03-08 17:17:13 +0000966 /* This first part uses wordexp() which is a wonderful C lib
967 * function which expands nearly everything. */
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000968 retval = wordexp (command, &expand_result, WRDE_SHOWERR);
Eric Andersenca604592001-03-08 17:17:13 +0000969 if (retval == WRDE_NOSPACE) {
970 /* Mem may have been allocated... */
Eric Andersen13d1fa12001-03-08 23:59:45 +0000971 wordfree (&expand_result);
Eric Andersen195743f2001-03-09 19:21:37 +0000972 error_msg(out_of_space);
Eric Andersenca604592001-03-08 17:17:13 +0000973 return FALSE;
974 }
975 if (retval < 0) {
976 /* Some other error. */
977 error_msg("syntax error");
978 return FALSE;
979 }
980
Eric Andersen1365bb72001-03-10 07:12:12 +0000981 if (expand_result.we_wordc > 0) {
982 /* Convert from char** (one word per string) to a simple char*,
983 * but don't overflow command which is BUFSIZ in length */
984 *command = '\0';
985 while (i < expand_result.we_wordc && total_length < BUFSIZ) {
986 length=strlen(expand_result.we_wordv[i])+1;
987 if (BUFSIZ-total_length-length <= 0) {
988 error_msg(out_of_space);
989 return FALSE;
990 }
991 strcat(command+total_length, expand_result.we_wordv[i++]);
992 strcat(command+total_length, " ");
993 total_length+=length;
Eric Andersenca604592001-03-08 17:17:13 +0000994 }
Eric Andersen1365bb72001-03-10 07:12:12 +0000995 wordfree (&expand_result);
Eric Andersenca604592001-03-08 17:17:13 +0000996 }
Eric Andersen13d1fa12001-03-08 23:59:45 +0000997#else
998
Eric Andersen195743f2001-03-09 19:21:37 +0000999 /* Ok. They don't have a recent glibc and they don't have uClibc. Chances
1000 * are about 100% they don't have wordexp(). So instead the best we can do
1001 * is use glob and then fixup environment variables and such ourselves.
1002 * This is better then nothing, but certainly not perfect */
Eric Andersen13d1fa12001-03-08 23:59:45 +00001003
Eric Andersen195743f2001-03-09 19:21:37 +00001004 /* It turns out that glob is very stupid. We have to feed it one word at a
1005 * time since it can't cope with a full string. Here we convert command
1006 * (char*) into cmd (char**, one word per string) */
Eric Andersen13d1fa12001-03-08 23:59:45 +00001007 {
1008
Eric Andersen4e7244e2001-03-14 00:49:52 +00001009 int flags = GLOB_NOCHECK
1010#ifdef GLOB_BRACE
1011 | GLOB_BRACE
1012#endif
1013#ifdef GLOB_TILDE
1014 | GLOB_TILDE
1015#endif
1016 ;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001017 char *tmpcmd, *cmd, *cmd_copy;
Eric Andersen13d1fa12001-03-08 23:59:45 +00001018 /* We need a clean copy, so strsep can mess up the copy while
Eric Andersen195743f2001-03-09 19:21:37 +00001019 * we write stuff into the original (in a minute) */
Eric Andersen4987bbf2001-03-12 21:36:49 +00001020 cmd = cmd_copy = strdup(command);
Eric Andersen195743f2001-03-09 19:21:37 +00001021 *command = '\0';
Eric Andersen1ca20a72001-03-21 07:34:27 +00001022 for (ix = 0, tmpcmd = cmd;
1023 (tmpcmd = strsep_space(cmd, &ix)) != NULL; cmd += ix, ix=0) {
Eric Andersen13d1fa12001-03-08 23:59:45 +00001024 if (*tmpcmd == '\0')
1025 break;
Eric Andersened424db2001-04-23 15:28:28 +00001026 /* we need to trim() the result for glob! */
1027 trim(tmpcmd);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001028 retval = glob(tmpcmd, flags, NULL, &expand_result);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001029 free(tmpcmd); /* Free mem allocated by strsep_space */
Eric Andersen13d1fa12001-03-08 23:59:45 +00001030 if (retval == GLOB_NOSPACE) {
1031 /* Mem may have been allocated... */
1032 globfree (&expand_result);
Eric Andersen195743f2001-03-09 19:21:37 +00001033 error_msg(out_of_space);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001034 return FALSE;
Eric Andersen195743f2001-03-09 19:21:37 +00001035 } else if (retval != 0) {
1036 /* Some other error. GLOB_NOMATCH shouldn't
1037 * happen because of the GLOB_NOCHECK flag in
1038 * the glob call. */
Eric Andersen13d1fa12001-03-08 23:59:45 +00001039 error_msg("syntax error");
1040 return FALSE;
Eric Andersen195743f2001-03-09 19:21:37 +00001041 } else {
Eric Andersen13d1fa12001-03-08 23:59:45 +00001042 /* Convert from char** (one word per string) to a simple char*,
1043 * but don't overflow command which is BUFSIZ in length */
Eric Andersen195743f2001-03-09 19:21:37 +00001044 for (i=0; i < expand_result.gl_pathc; i++) {
Eric Andersen1ef92682001-03-14 19:33:45 +00001045 length=strlen(expand_result.gl_pathv[i]);
Eric Andersen4aaefc22001-03-15 23:01:19 +00001046 if (total_length+length+1 >= BUFSIZ) {
Eric Andersen195743f2001-03-09 19:21:37 +00001047 error_msg(out_of_space);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001048 return FALSE;
1049 }
Eric Andersened424db2001-04-23 15:28:28 +00001050 strcat(command+total_length, " ");
1051 total_length+=1;
Eric Andersen195743f2001-03-09 19:21:37 +00001052 strcat(command+total_length, expand_result.gl_pathv[i]);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001053 total_length+=length;
1054 }
Eric Andersen195743f2001-03-09 19:21:37 +00001055 globfree (&expand_result);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001056 }
1057 }
Eric Andersen4987bbf2001-03-12 21:36:49 +00001058 free(cmd_copy);
Eric Andersen195743f2001-03-09 19:21:37 +00001059 trim(command);
Eric Andersen13d1fa12001-03-08 23:59:45 +00001060 }
Eric Andersenca604592001-03-08 17:17:13 +00001061
Eric Andersen13d1fa12001-03-08 23:59:45 +00001062#endif
Eric Andersen195743f2001-03-09 19:21:37 +00001063
Eric Andersenca604592001-03-08 17:17:13 +00001064 /* Now do the shell variable substitutions which
1065 * wordexp can't do for us, namely $? and $! */
1066 src = command;
Eric Andersencaeeb362001-02-20 06:38:44 +00001067 while((dst = strchr(src,'$')) != NULL){
Eric Andersen195743f2001-03-09 19:21:37 +00001068 var = NULL;
1069 switch(*(dst+1)) {
1070 case '?':
1071 var = itoa(last_return_code);
1072 break;
1073 case '!':
1074 if (last_bg_pid==-1)
1075 *(var)='\0';
1076 else
1077 var = itoa(last_bg_pid);
1078 break;
Eric Andersen77d92682001-05-23 20:32:09 +00001079 /* Everything else like $$, $#, $[0-9], etc. should all be
Eric Andersen32f8c172001-03-08 17:44:37 +00001080 * expanded by wordexp(), so we can in theory skip that stuff
Eric Andersen77d92682001-05-23 20:32:09 +00001081 * here, but just to be on the safe side (i.e., since uClibc
Eric Andersen32f8c172001-03-08 17:44:37 +00001082 * wordexp doesn't do this stuff yet), lets leave it in for
1083 * now. */
Eric Andersen195743f2001-03-09 19:21:37 +00001084 case '$':
1085 var = itoa(getpid());
1086 break;
1087 case '#':
1088 var = itoa(argc-1);
1089 break;
1090 case '0':case '1':case '2':case '3':case '4':
1091 case '5':case '6':case '7':case '8':case '9':
1092 {
Eric Andersen1ca20a72001-03-21 07:34:27 +00001093 int ixx=*(dst + 1)-48;
1094 if (ixx >= argc) {
Eric Andersen195743f2001-03-09 19:21:37 +00001095 var='\0';
1096 } else {
Eric Andersen1ca20a72001-03-21 07:34:27 +00001097 var = argv[ixx];
Eric Andersen32f8c172001-03-08 17:44:37 +00001098 }
Eric Andersen195743f2001-03-09 19:21:37 +00001099 }
1100 break;
Eric Andersen32f8c172001-03-08 17:44:37 +00001101
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001102 }
Eric Andersencaeeb362001-02-20 06:38:44 +00001103 if (var) {
Eric Andersen195743f2001-03-09 19:21:37 +00001104 /* a single character construction was found, and
1105 * already handled in the case statement */
1106 src=dst+2;
Eric Andersen32f8c172001-03-08 17:44:37 +00001107 } else {
Eric Andersen195743f2001-03-09 19:21:37 +00001108 /* Looks like an environment variable */
1109 char delim_hold;
Eric Andersen34174472001-03-17 00:20:10 +00001110 int num_skip_chars=0;
Eric Andersen74e056b2001-03-09 20:34:46 +00001111 int dstlen = strlen(dst);
1112 /* Is this a ${foo} type variable? */
1113 if (dstlen >=2 && *(dst+1) == '{') {
1114 src=strchr(dst+1, '}');
Eric Andersen34174472001-03-17 00:20:10 +00001115 num_skip_chars=1;
Eric Andersen74e056b2001-03-09 20:34:46 +00001116 } else {
Eric Andersen34174472001-03-17 00:20:10 +00001117 src=dst+1;
1118 while(isalnum(*src) || *src=='_') src++;
Eric Andersen74e056b2001-03-09 20:34:46 +00001119 }
Eric Andersen195743f2001-03-09 19:21:37 +00001120 if (src == NULL) {
Eric Andersen74e056b2001-03-09 20:34:46 +00001121 src = dst+dstlen;
Eric Andersen32f8c172001-03-08 17:44:37 +00001122 }
Eric Andersen195743f2001-03-09 19:21:37 +00001123 delim_hold=*src;
1124 *src='\0'; /* temporary */
Eric Andersen34174472001-03-17 00:20:10 +00001125 var = getenv(dst + 1 + num_skip_chars);
Eric Andersen195743f2001-03-09 19:21:37 +00001126 *src=delim_hold;
Eric Andersen34174472001-03-17 00:20:10 +00001127 src += num_skip_chars;
Eric Andersen195743f2001-03-09 19:21:37 +00001128 }
1129 if (var == NULL) {
1130 /* Seems we got an un-expandable variable. So delete it. */
1131 var = "";
1132 }
1133 {
1134 int subst_len = strlen(var);
1135 int trail_len = strlen(src);
1136 if (dst+subst_len+trail_len >= command+BUFSIZ) {
1137 error_msg(out_of_space);
1138 return FALSE;
1139 }
1140 /* Move stuff to the end of the string to accommodate
1141 * filling the created gap with the new stuff */
Eric Andersen34174472001-03-17 00:20:10 +00001142 memmove(dst+subst_len, src, trail_len+1);
Eric Andersen195743f2001-03-09 19:21:37 +00001143 /* Now copy in the new stuff */
1144 memcpy(dst, var, subst_len);
1145 src = dst+subst_len;
Eric Andersencaeeb362001-02-20 06:38:44 +00001146 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001147 }
Eric Andersenca604592001-03-08 17:17:13 +00001148
1149#endif
1150 return TRUE;
Erik Andersen3522eb12000-03-12 23:49:18 +00001151}
1152
Eric Andersen86349772000-12-18 20:25:50 +00001153/* Return cmd->num_progs as 0 if no command is present (e.g. an empty
1154 line). If a valid command is found, command_ptr is set to point to
Erik Andersen3522eb12000-03-12 23:49:18 +00001155 the beginning of the next command (if the original command had more
1156 then one job associated with it) or NULL if no more commands are
1157 present. */
Eric Andersen86349772000-12-18 20:25:50 +00001158static int parse_command(char **command_ptr, struct job *job, int *inbg)
Erik Andersen3522eb12000-03-12 23:49:18 +00001159{
Erik Andersen161220c2000-03-16 08:12:48 +00001160 char *command;
Eric Andersen86349772000-12-18 20:25:50 +00001161 char *return_command = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001162 char *src, *buf, *chptr;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001163 int argc_l = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001164 int done = 0;
Eric Andersen86349772000-12-18 20:25:50 +00001165 int argv_alloced;
Matt Kraaibe66ad32001-04-12 15:42:17 +00001166 int i, saw_quote = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001167 char quote = '\0';
1168 int count;
Eric Andersen86349772000-12-18 20:25:50 +00001169 struct child_prog *prog;
Erik Andersen3522eb12000-03-12 23:49:18 +00001170
Erik Andersen161220c2000-03-16 08:12:48 +00001171 /* skip leading white space */
Eric Andersen86349772000-12-18 20:25:50 +00001172 while (**command_ptr && isspace(**command_ptr))
1173 (*command_ptr)++;
Erik Andersen3522eb12000-03-12 23:49:18 +00001174
Erik Andersen161220c2000-03-16 08:12:48 +00001175 /* this handles empty lines or leading '#' characters */
Eric Andersen86349772000-12-18 20:25:50 +00001176 if (!**command_ptr || (**command_ptr == '#')) {
1177 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001178 return 0;
1179 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001180
Eric Andersen86349772000-12-18 20:25:50 +00001181 *inbg = 0;
1182 job->num_progs = 1;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001183 job->progs = xmalloc(sizeof(*job->progs));
Erik Andersen3522eb12000-03-12 23:49:18 +00001184
Erik Andersen161220c2000-03-16 08:12:48 +00001185 /* We set the argv elements to point inside of this string. The
Eric Andersen86349772000-12-18 20:25:50 +00001186 memory is freed by free_job(). Allocate twice the original
Eric Andersenb54833c2000-07-03 23:56:26 +00001187 length in case we need to quote every single character.
Erik Andersen3522eb12000-03-12 23:49:18 +00001188
Erik Andersen161220c2000-03-16 08:12:48 +00001189 Getting clean memory relieves us of the task of NULL
1190 terminating things and makes the rest of this look a bit
1191 cleaner (though it is, admittedly, a tad less efficient) */
Eric Andersen86349772000-12-18 20:25:50 +00001192 job->cmdbuf = command = xcalloc(2*strlen(*command_ptr) + 1, sizeof(char));
Erik Andersen161220c2000-03-16 08:12:48 +00001193 job->text = NULL;
Erik Andersen3522eb12000-03-12 23:49:18 +00001194
Erik Andersen161220c2000-03-16 08:12:48 +00001195 prog = job->progs;
Eric Andersen86349772000-12-18 20:25:50 +00001196 prog->num_redirects = 0;
1197 prog->redirects = NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001198 prog->is_stopped = 0;
1199 prog->family = job;
Erik Andersen3522eb12000-03-12 23:49:18 +00001200
Eric Andersen86349772000-12-18 20:25:50 +00001201 argv_alloced = 5;
1202 prog->argv = xmalloc(sizeof(*prog->argv) * argv_alloced);
1203 prog->argv[0] = job->cmdbuf;
Erik Andersen3522eb12000-03-12 23:49:18 +00001204
Erik Andersen161220c2000-03-16 08:12:48 +00001205 buf = command;
Eric Andersen86349772000-12-18 20:25:50 +00001206 src = *command_ptr;
Erik Andersen161220c2000-03-16 08:12:48 +00001207 while (*src && !done) {
1208 if (quote == *src) {
1209 quote = '\0';
1210 } else if (quote) {
1211 if (*src == '\\') {
1212 src++;
1213 if (!*src) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001214 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001215 free_job(job);
Erik Andersen161220c2000-03-16 08:12:48 +00001216 return 1;
1217 }
1218
1219 /* in shell, "\'" should yield \' */
Eric Andersenb2356f62000-12-11 19:14:40 +00001220 if (*src != quote) {
Erik Andersen161220c2000-03-16 08:12:48 +00001221 *buf++ = '\\';
Eric Andersenb2356f62000-12-11 19:14:40 +00001222 *buf++ = '\\';
1223 }
Erik Andersen161220c2000-03-16 08:12:48 +00001224 } else if (*src == '*' || *src == '?' || *src == '[' ||
1225 *src == ']') *buf++ = '\\';
1226 *buf++ = *src;
1227 } else if (isspace(*src)) {
Matt Kraaibe66ad32001-04-12 15:42:17 +00001228 if (*prog->argv[argc_l] || saw_quote) {
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001229 buf++, argc_l++;
Erik Andersen161220c2000-03-16 08:12:48 +00001230 /* +1 here leaves room for the NULL which ends argv */
Eric Andersen86349772000-12-18 20:25:50 +00001231 if ((argc_l + 1) == argv_alloced) {
1232 argv_alloced += 5;
Matt Kraaib8907522000-09-13 02:08:21 +00001233 prog->argv = xrealloc(prog->argv,
1234 sizeof(*prog->argv) *
Eric Andersen86349772000-12-18 20:25:50 +00001235 argv_alloced);
Erik Andersen161220c2000-03-16 08:12:48 +00001236 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001237 prog->argv[argc_l] = buf;
Matt Kraaibe66ad32001-04-12 15:42:17 +00001238 saw_quote = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001239 }
1240 } else
1241 switch (*src) {
1242 case '"':
1243 case '\'':
1244 quote = *src;
Matt Kraaibe66ad32001-04-12 15:42:17 +00001245 saw_quote = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001246 break;
1247
1248 case '#': /* comment */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001249 if (*(src-1)== '$')
1250 *buf++ = *src;
1251 else
1252 done = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001253 break;
1254
Eric Andersen86349772000-12-18 20:25:50 +00001255 case '>': /* redirects */
Erik Andersen161220c2000-03-16 08:12:48 +00001256 case '<':
Eric Andersen86349772000-12-18 20:25:50 +00001257 i = prog->num_redirects++;
1258 prog->redirects = xrealloc(prog->redirects,
1259 sizeof(*prog->redirects) *
Matt Kraaib8907522000-09-13 02:08:21 +00001260 (i + 1));
Erik Andersen161220c2000-03-16 08:12:48 +00001261
Eric Andersen86349772000-12-18 20:25:50 +00001262 prog->redirects[i].fd = -1;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001263 if (buf != prog->argv[argc_l]) {
Erik Andersen161220c2000-03-16 08:12:48 +00001264 /* the stuff before this character may be the file number
1265 being redirected */
Eric Andersen86349772000-12-18 20:25:50 +00001266 prog->redirects[i].fd =
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001267 strtol(prog->argv[argc_l], &chptr, 10);
Erik Andersen161220c2000-03-16 08:12:48 +00001268
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001269 if (*chptr && *prog->argv[argc_l]) {
1270 buf++, argc_l++;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001271 prog->argv[argc_l] = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001272 }
1273 }
1274
Eric Andersen86349772000-12-18 20:25:50 +00001275 if (prog->redirects[i].fd == -1) {
Erik Andersen161220c2000-03-16 08:12:48 +00001276 if (*src == '>')
Eric Andersen86349772000-12-18 20:25:50 +00001277 prog->redirects[i].fd = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001278 else
Eric Andersen86349772000-12-18 20:25:50 +00001279 prog->redirects[i].fd = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001280 }
1281
1282 if (*src++ == '>') {
1283 if (*src == '>')
Eric Andersen86349772000-12-18 20:25:50 +00001284 prog->redirects[i].type =
Erik Andersen161220c2000-03-16 08:12:48 +00001285 REDIRECT_APPEND, src++;
1286 else
Eric Andersen86349772000-12-18 20:25:50 +00001287 prog->redirects[i].type = REDIRECT_OVERWRITE;
Erik Andersen161220c2000-03-16 08:12:48 +00001288 } else {
Eric Andersen86349772000-12-18 20:25:50 +00001289 prog->redirects[i].type = REDIRECT_INPUT;
Erik Andersen161220c2000-03-16 08:12:48 +00001290 }
1291
1292 /* This isn't POSIX sh compliant. Oh well. */
1293 chptr = src;
1294 while (isspace(*chptr))
1295 chptr++;
1296
1297 if (!*chptr) {
Mark Whitley44a99142001-03-14 17:26:37 +00001298 error_msg("file name expected after %c", *(src-1));
Eric Andersen86349772000-12-18 20:25:50 +00001299 free_job(job);
1300 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001301 return 1;
1302 }
1303
Eric Andersen86349772000-12-18 20:25:50 +00001304 prog->redirects[i].filename = buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001305 while (*chptr && !isspace(*chptr))
1306 *buf++ = *chptr++;
1307
1308 src = chptr - 1; /* we src++ later */
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001309 prog->argv[argc_l] = ++buf;
Erik Andersen161220c2000-03-16 08:12:48 +00001310 break;
1311
1312 case '|': /* pipe */
1313 /* finish this command */
Matt Kraaibe66ad32001-04-12 15:42:17 +00001314 if (*prog->argv[argc_l] || saw_quote)
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001315 argc_l++;
1316 if (!argc_l) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001317 error_msg("empty command in pipe");
Eric Andersen86349772000-12-18 20:25:50 +00001318 free_job(job);
1319 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001320 return 1;
1321 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001322 prog->argv[argc_l] = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001323
1324 /* and start the next */
Eric Andersen86349772000-12-18 20:25:50 +00001325 job->num_progs++;
Matt Kraaib8907522000-09-13 02:08:21 +00001326 job->progs = xrealloc(job->progs,
Eric Andersen86349772000-12-18 20:25:50 +00001327 sizeof(*job->progs) * job->num_progs);
1328 prog = job->progs + (job->num_progs - 1);
1329 prog->num_redirects = 0;
1330 prog->redirects = NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001331 prog->is_stopped = 0;
1332 prog->family = job;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001333 argc_l = 0;
Erik Andersen161220c2000-03-16 08:12:48 +00001334
Eric Andersen86349772000-12-18 20:25:50 +00001335 argv_alloced = 5;
1336 prog->argv = xmalloc(sizeof(*prog->argv) * argv_alloced);
Erik Andersen161220c2000-03-16 08:12:48 +00001337 prog->argv[0] = ++buf;
1338
1339 src++;
1340 while (*src && isspace(*src))
1341 src++;
1342
1343 if (!*src) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001344 error_msg("empty command in pipe");
Eric Andersen86349772000-12-18 20:25:50 +00001345 free_job(job);
1346 job->num_progs=0;
Erik Andersen161220c2000-03-16 08:12:48 +00001347 return 1;
1348 }
1349 src--; /* we'll ++ it at the end of the loop */
1350
1351 break;
1352
1353 case '&': /* background */
Eric Andersen86349772000-12-18 20:25:50 +00001354 *inbg = 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001355 case ';': /* multiple commands */
1356 done = 1;
Eric Andersen86349772000-12-18 20:25:50 +00001357 return_command = *command_ptr + (src - *command_ptr) + 1;
Erik Andersen161220c2000-03-16 08:12:48 +00001358 break;
1359
Eric Andersena1d187a2000-07-17 19:14:41 +00001360#ifdef BB_FEATURE_SH_BACKTICKS
Eric Andersenec10b9d2000-07-14 01:13:11 +00001361 case '`':
1362 /* Exec a backtick-ed command */
Eric Andersen8ea28be2001-01-05 20:58:22 +00001363 /* Besides any previous brokenness, I have not
1364 * updated backtick handling for close_me support.
1365 * I don't know if it needs it or not. -- LRD */
Eric Andersenec10b9d2000-07-14 01:13:11 +00001366 {
Eric Andersena1d187a2000-07-17 19:14:41 +00001367 char* charptr1=NULL, *charptr2;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001368 char* ptr=NULL;
Eric Andersen86349772000-12-18 20:25:50 +00001369 struct job *newjob;
1370 struct jobset njob_list = { NULL, NULL };
Eric Andersena1d187a2000-07-17 19:14:41 +00001371 int pipefd[2];
1372 int size;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001373
1374 ptr=strchr(++src, '`');
1375 if (ptr==NULL) {
1376 fprintf(stderr, "Unmatched '`' in command\n");
Eric Andersen86349772000-12-18 20:25:50 +00001377 free_job(job);
Eric Andersenec10b9d2000-07-14 01:13:11 +00001378 return 1;
1379 }
1380
Eric Andersena1d187a2000-07-17 19:14:41 +00001381 /* Make some space to hold just the backticked command */
Eric Andersen6efc48c2000-07-18 08:16:39 +00001382 charptr1 = charptr2 = xmalloc(1+ptr-src);
Matt Kraai0b2da462000-09-19 06:46:44 +00001383 memcpy(charptr1, src, ptr-src);
1384 charptr1[ptr-src] = '\0';
Eric Andersen86349772000-12-18 20:25:50 +00001385 newjob = xmalloc(sizeof(struct job));
1386 newjob->job_list = &njob_list;
Eric Andersena1d187a2000-07-17 19:14:41 +00001387 /* Now parse and run the backticked command */
Eric Andersen86349772000-12-18 20:25:50 +00001388 if (!parse_command(&charptr1, newjob, inbg)
1389 && newjob->num_progs) {
Eric Andersena1d187a2000-07-17 19:14:41 +00001390 pipe(pipefd);
Eric Andersen86349772000-12-18 20:25:50 +00001391 run_command(newjob, 0, pipefd);
Eric Andersenec10b9d2000-07-14 01:13:11 +00001392 }
Eric Andersen86349772000-12-18 20:25:50 +00001393 checkjobs(job->job_list);
1394 free_job(newjob); /* doesn't actually free newjob,
1395 looks like a memory leak */
Eric Andersen6efc48c2000-07-18 08:16:39 +00001396 free(charptr2);
1397
1398 /* Make a copy of any stuff left over in the command
1399 * line after the second backtick */
1400 charptr2 = xmalloc(strlen(ptr)+1);
1401 memcpy(charptr2, ptr+1, strlen(ptr));
1402
Eric Andersenec10b9d2000-07-14 01:13:11 +00001403
Eric Andersena1d187a2000-07-17 19:14:41 +00001404 /* Copy the output from the backtick-ed command into the
1405 * command line, making extra room as needed */
1406 --src;
1407 charptr1 = xmalloc(BUFSIZ);
Mark Whitleyf57c9442000-12-07 19:56:48 +00001408 while ( (size=full_read(pipefd[0], charptr1, BUFSIZ-1)) >0) {
Eric Andersen86349772000-12-18 20:25:50 +00001409 int newsize=src - *command_ptr + size + 1 + strlen(charptr2);
1410 if (newsize > BUFSIZ) {
1411 *command_ptr=xrealloc(*command_ptr, newsize);
Eric Andersena1d187a2000-07-17 19:14:41 +00001412 }
1413 memcpy(src, charptr1, size);
1414 src+=size;
1415 }
1416 free(charptr1);
1417 close(pipefd[0]);
1418 if (*(src-1)=='\n')
1419 --src;
1420
Eric Andersen86349772000-12-18 20:25:50 +00001421 /* Now paste into the *command_ptr all the stuff
Eric Andersena1d187a2000-07-17 19:14:41 +00001422 * leftover after the second backtick */
Matt Kraaicbbe4d62000-09-14 00:26:50 +00001423 memcpy(src, charptr2, strlen(charptr2)+1);
Eric Andersena1d187a2000-07-17 19:14:41 +00001424 free(charptr2);
1425
Eric Andersen86349772000-12-18 20:25:50 +00001426 /* Now recursively call parse_command to deal with the new
Eric Andersena1d187a2000-07-17 19:14:41 +00001427 * and improved version of the command line with the backtick
1428 * results expanded in place... */
Eric Andersen86349772000-12-18 20:25:50 +00001429 {
1430 struct jobset *jl=job->job_list;
1431 free_job(job);
1432 job->job_list = jl;
1433 }
1434 return(parse_command(command_ptr, job, inbg));
Eric Andersenec10b9d2000-07-14 01:13:11 +00001435 }
1436 break;
Eric Andersena1d187a2000-07-17 19:14:41 +00001437#endif // BB_FEATURE_SH_BACKTICKS
Matt Kraai131241f2000-09-14 00:43:20 +00001438
1439 case '\\':
1440 src++;
1441 if (!*src) {
Eric Andersen86349772000-12-18 20:25:50 +00001442/* This is currently a little broken... */
1443#ifdef HANDLE_CONTINUATION_CHARS
1444 /* They fed us a continuation char, so continue reading stuff
1445 * on the next line, then tack that onto the end of the current
1446 * command */
1447 char *command;
1448 int newsize;
1449 printf("erik: found a continue char at EOL...\n");
1450 command = (char *) xcalloc(BUFSIZ, sizeof(char));
1451 if (get_command(input, command)) {
Matt Kraaidd19c692001-01-31 19:00:21 +00001452 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001453 free(command);
1454 free_job(job);
1455 return 1;
1456 }
1457 newsize = strlen(*command_ptr) + strlen(command) + 2;
1458 if (newsize > BUFSIZ) {
1459 printf("erik: doing realloc\n");
1460 *command_ptr=xrealloc(*command_ptr, newsize);
1461 }
1462 printf("erik: A: *command_ptr='%s'\n", *command_ptr);
1463 memcpy(--src, command, strlen(command));
1464 printf("erik: B: *command_ptr='%s'\n", *command_ptr);
1465 free(command);
1466 break;
1467#else
Matt Kraaidd19c692001-01-31 19:00:21 +00001468 error_msg("character expected after \\");
Eric Andersen86349772000-12-18 20:25:50 +00001469 free_job(job);
Matt Kraai131241f2000-09-14 00:43:20 +00001470 return 1;
Eric Andersen86349772000-12-18 20:25:50 +00001471#endif
Matt Kraai131241f2000-09-14 00:43:20 +00001472 }
1473 if (*src == '*' || *src == '[' || *src == ']'
1474 || *src == '?') *buf++ = '\\';
1475 /* fallthrough */
Erik Andersen161220c2000-03-16 08:12:48 +00001476 default:
1477 *buf++ = *src;
1478 }
1479
Erik Andersend75af992000-03-16 08:09:09 +00001480 src++;
Erik Andersen161220c2000-03-16 08:12:48 +00001481 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001482
Matt Kraaibe66ad32001-04-12 15:42:17 +00001483 if (*prog->argv[argc_l] || saw_quote) {
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001484 argc_l++;
Erik Andersen161220c2000-03-16 08:12:48 +00001485 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001486 if (!argc_l) {
Eric Andersen86349772000-12-18 20:25:50 +00001487 free_job(job);
Erik Andersen161220c2000-03-16 08:12:48 +00001488 return 0;
1489 }
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001490 prog->argv[argc_l] = NULL;
Erik Andersen3522eb12000-03-12 23:49:18 +00001491
Eric Andersen86349772000-12-18 20:25:50 +00001492 if (!return_command) {
1493 job->text = xmalloc(strlen(*command_ptr) + 1);
1494 strcpy(job->text, *command_ptr);
Erik Andersen161220c2000-03-16 08:12:48 +00001495 } else {
1496 /* This leaves any trailing spaces, which is a bit sloppy */
Eric Andersen86349772000-12-18 20:25:50 +00001497 count = return_command - *command_ptr;
Eric Andersenec10b9d2000-07-14 01:13:11 +00001498 job->text = xmalloc(count + 1);
Eric Andersen86349772000-12-18 20:25:50 +00001499 strncpy(job->text, *command_ptr, count);
Erik Andersen161220c2000-03-16 08:12:48 +00001500 job->text[count] = '\0';
1501 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001502
Eric Andersen86349772000-12-18 20:25:50 +00001503 *command_ptr = return_command;
Eric Andersen46f0beb2000-11-14 21:59:22 +00001504
Erik Andersend75af992000-03-16 08:09:09 +00001505 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001506}
1507
Eric Andersen86349772000-12-18 20:25:50 +00001508/* Run the child_prog, no matter what kind of command it uses.
1509 */
1510static int pseudo_exec(struct child_prog *child)
Erik Andersen3522eb12000-03-12 23:49:18 +00001511{
Eric Andersen86349772000-12-18 20:25:50 +00001512 struct built_in_command *x;
Eric Andersenb54833c2000-07-03 23:56:26 +00001513#ifdef BB_FEATURE_SH_STANDALONE_SHELL
Eric Andersenaf4ac772001-02-01 22:43:49 +00001514 char *name;
Erik Andersenbcd61772000-05-13 06:33:19 +00001515#endif
Erik Andersen3522eb12000-03-12 23:49:18 +00001516
Eric Andersene9f07fb2000-12-21 18:31:36 +00001517 /* Check if the command matches any of the non-forking builtins.
1518 * Depending on context, this might be redundant. But it's
1519 * easier to waste a few CPU cycles than it is to figure out
1520 * if this is one of those cases.
Eric Andersen86349772000-12-18 20:25:50 +00001521 */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001522 for (x = bltins; x->cmd; x++) {
1523 if (strcmp(child->argv[0], x->cmd) == 0 ) {
1524 exit(x->function(child));
1525 }
1526 }
1527
1528 /* Check if the command matches any of the forking builtins. */
Eric Andersen86349772000-12-18 20:25:50 +00001529 for (x = bltins_forking; x->cmd; x++) {
1530 if (strcmp(child->argv[0], x->cmd) == 0) {
1531 applet_name=x->cmd;
1532 exit (x->function(child));
1533 }
1534 }
1535#ifdef BB_FEATURE_SH_STANDALONE_SHELL
1536 /* Check if the command matches any busybox internal
1537 * commands ("applets") here. Following discussions from
1538 * November 2000 on busybox@opensource.lineo.com, don't use
1539 * get_last_path_component(). This way explicit (with
1540 * slashes) filenames will never be interpreted as an
1541 * applet, just like with builtins. This way the user can
1542 * override an applet with an explicit filename reference.
1543 * The only downside to this change is that an explicit
1544 * /bin/foo invocation will fork and exec /bin/foo, even if
1545 * /bin/foo is a symlink to busybox.
1546 */
Matt Kraaif2cc2762001-02-01 19:21:20 +00001547 name = child->argv[0];
Eric Andersen86349772000-12-18 20:25:50 +00001548
1549#ifdef BB_FEATURE_SH_APPLETS_ALWAYS_WIN
1550 /* If you enable BB_FEATURE_SH_APPLETS_ALWAYS_WIN, then
1551 * if you run /bin/cat, it will use BusyBox cat even if
1552 * /bin/cat exists on the filesystem and is _not_ busybox.
1553 * Some systems want this, others do not. Choose wisely. :-)
1554 */
Matt Kraaif2cc2762001-02-01 19:21:20 +00001555 name = get_last_path_component(name);
Eric Andersen86349772000-12-18 20:25:50 +00001556#endif
1557
Eric Andersen67991cf2001-02-14 21:23:06 +00001558 {
Eric Andersen82ab8da2001-03-23 17:06:01 +00001559 char** argv_l=child->argv;
Eric Andersen67991cf2001-02-14 21:23:06 +00001560 int argc_l;
Eric Andersen82ab8da2001-03-23 17:06:01 +00001561 for(argc_l=0;*argv_l!=NULL; argv_l++, argc_l++);
Eric Andersen67991cf2001-02-14 21:23:06 +00001562 optind = 1;
1563 run_applet_by_name(name, argc_l, child->argv);
Eric Andersen86349772000-12-18 20:25:50 +00001564 }
1565#endif
1566
1567 execvp(child->argv[0], child->argv);
Eric Andersen8ea28be2001-01-05 20:58:22 +00001568 perror_msg_and_die("%s", child->argv[0]);
Eric Andersen86349772000-12-18 20:25:50 +00001569}
1570
1571static void insert_job(struct job *newjob, int inbg)
1572{
1573 struct job *thejob;
Eric Andersen1ca20a72001-03-21 07:34:27 +00001574 struct jobset *j_list=newjob->job_list;
Eric Andersen86349772000-12-18 20:25:50 +00001575
1576 /* find the ID for thejob to use */
1577 newjob->jobid = 1;
Eric Andersen1ca20a72001-03-21 07:34:27 +00001578 for (thejob = j_list->head; thejob; thejob = thejob->next)
Eric Andersen86349772000-12-18 20:25:50 +00001579 if (thejob->jobid >= newjob->jobid)
1580 newjob->jobid = thejob->jobid + 1;
1581
1582 /* add thejob to the list of running jobs */
Eric Andersen1ca20a72001-03-21 07:34:27 +00001583 if (!j_list->head) {
1584 thejob = j_list->head = xmalloc(sizeof(*thejob));
Eric Andersen86349772000-12-18 20:25:50 +00001585 } else {
Eric Andersen1ca20a72001-03-21 07:34:27 +00001586 for (thejob = j_list->head; thejob->next; thejob = thejob->next) /* nothing */;
Eric Andersen86349772000-12-18 20:25:50 +00001587 thejob->next = xmalloc(sizeof(*thejob));
1588 thejob = thejob->next;
1589 }
1590
1591 *thejob = *newjob; /* physically copy the struct job */
1592 thejob->next = NULL;
1593 thejob->running_progs = thejob->num_progs;
1594 thejob->stopped_progs = 0;
1595
1596 if (inbg) {
1597 /* we don't wait for background thejobs to return -- append it
1598 to the list of backgrounded thejobs and leave it alone */
1599 printf("[%d] %d\n", thejob->jobid,
1600 newjob->progs[newjob->num_progs - 1].pid);
1601#ifdef BB_FEATURE_SH_ENVIRONMENT
1602 last_bg_pid=newjob->progs[newjob->num_progs - 1].pid;
1603#endif
1604 } else {
1605 newjob->job_list->fg = thejob;
1606
1607 /* move the new process group into the foreground */
1608 /* suppress messages when run from /linuxrc mag@sysgo.de */
1609 if (tcsetpgrp(0, newjob->pgrp) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +00001610 perror_msg("tcsetpgrp");
Eric Andersen86349772000-12-18 20:25:50 +00001611 }
1612}
1613
1614static int run_command(struct job *newjob, int inbg, int outpipe[2])
1615{
1616 /* struct job *thejob; */
1617 int i;
1618 int nextin, nextout;
1619 int pipefds[2]; /* pipefd[0] is for reading */
1620 struct built_in_command *x;
1621 struct child_prog *child;
1622
Eric Andersen6efc48c2000-07-18 08:16:39 +00001623 nextin = 0, nextout = 1;
Eric Andersen86349772000-12-18 20:25:50 +00001624 for (i = 0; i < newjob->num_progs; i++) {
1625 child = & (newjob->progs[i]);
1626
1627 if ((i + 1) < newjob->num_progs) {
1628 if (pipe(pipefds)<0) perror_msg_and_die("pipe");
Erik Andersen161220c2000-03-16 08:12:48 +00001629 nextout = pipefds[1];
1630 } else {
Eric Andersen86349772000-12-18 20:25:50 +00001631 if (outpipe[1]!=-1) {
1632 nextout = outpipe[1];
Eric Andersen6efc48c2000-07-18 08:16:39 +00001633 } else {
1634 nextout = 1;
1635 }
Erik Andersen161220c2000-03-16 08:12:48 +00001636 }
1637
Eric Andersen501c88b2000-07-28 15:14:45 +00001638#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen86349772000-12-18 20:25:50 +00001639 if (show_x_trace==TRUE) {
Eric Andersen501c88b2000-07-28 15:14:45 +00001640 int j;
Eric Andersen86349772000-12-18 20:25:50 +00001641 fputc('+', stderr);
1642 for (j = 0; child->argv[j]; j++) {
1643 fputc(' ', stderr);
1644 fputs(child->argv[j], stderr);
1645 }
1646 fputc('\n', stderr);
Eric Andersen501c88b2000-07-28 15:14:45 +00001647 }
1648#endif
1649
Eric Andersene9f07fb2000-12-21 18:31:36 +00001650 /* Check if the command matches any non-forking builtins,
1651 * but only if this is a simple command.
1652 * Non-forking builtins within pipes have to fork anyway,
1653 * and are handled in pseudo_exec. "echo foo | read bar"
1654 * is doomed to failure, and doesn't work on bash, either.
Eric Andersen86349772000-12-18 20:25:50 +00001655 */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001656 if (newjob->num_progs == 1) {
1657 for (x = bltins; x->cmd; x++) {
1658 if (strcmp(child->argv[0], x->cmd) == 0 ) {
1659 int squirrel[] = {-1, -1, -1};
1660 int rcode;
1661 setup_redirects(child, squirrel);
1662 rcode = x->function(child);
1663 restore_redirects(squirrel);
1664 return rcode;
1665 }
Erik Andersen330fd2b2000-05-19 05:35:19 +00001666 }
1667 }
1668
Eric Andersen86349772000-12-18 20:25:50 +00001669 if (!(child->pid = fork())) {
Erik Andersen161220c2000-03-16 08:12:48 +00001670 signal(SIGTTOU, SIG_DFL);
1671
Eric Andersen8ea28be2001-01-05 20:58:22 +00001672 close_all();
1673
Eric Andersen86349772000-12-18 20:25:50 +00001674 if (outpipe[1]!=-1) {
1675 close(outpipe[0]);
Eric Andersen6efc48c2000-07-18 08:16:39 +00001676 }
1677 if (nextin != 0) {
1678 dup2(nextin, 0);
1679 close(nextin);
1680 }
1681
1682 if (nextout != 1) {
Erik Andersen161220c2000-03-16 08:12:48 +00001683 dup2(nextout, 1);
Eric Andersen86349772000-12-18 20:25:50 +00001684 dup2(nextout, 2); /* Really? */
Erik Andersen161220c2000-03-16 08:12:48 +00001685 close(nextout);
Eric Andersen501c88b2000-07-28 15:14:45 +00001686 close(pipefds[0]);
Erik Andersen161220c2000-03-16 08:12:48 +00001687 }
1688
Eric Andersen86349772000-12-18 20:25:50 +00001689 /* explicit redirects override pipes */
Eric Andersene9f07fb2000-12-21 18:31:36 +00001690 setup_redirects(child,NULL);
Erik Andersen161220c2000-03-16 08:12:48 +00001691
Eric Andersen86349772000-12-18 20:25:50 +00001692 pseudo_exec(child);
Erik Andersen161220c2000-03-16 08:12:48 +00001693 }
Eric Andersen86349772000-12-18 20:25:50 +00001694 if (outpipe[1]!=-1) {
1695 close(outpipe[1]);
Eric Andersena1d187a2000-07-17 19:14:41 +00001696 }
Erik Andersen161220c2000-03-16 08:12:48 +00001697
1698 /* put our child in the process group whose leader is the
1699 first process in this pipe */
Eric Andersen86349772000-12-18 20:25:50 +00001700 setpgid(child->pid, newjob->progs[0].pid);
Erik Andersen161220c2000-03-16 08:12:48 +00001701 if (nextin != 0)
1702 close(nextin);
Eric Andersen6efc48c2000-07-18 08:16:39 +00001703 if (nextout != 1)
Erik Andersen161220c2000-03-16 08:12:48 +00001704 close(nextout);
1705
1706 /* If there isn't another process, nextin is garbage
1707 but it doesn't matter */
1708 nextin = pipefds[0];
1709 }
1710
Eric Andersen86349772000-12-18 20:25:50 +00001711 newjob->pgrp = newjob->progs[0].pid;
Erik Andersen161220c2000-03-16 08:12:48 +00001712
Eric Andersen86349772000-12-18 20:25:50 +00001713 insert_job(newjob, inbg);
Erik Andersen3522eb12000-03-12 23:49:18 +00001714
Erik Andersen161220c2000-03-16 08:12:48 +00001715 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001716}
1717
Erik Andersend75af992000-03-16 08:09:09 +00001718static int busy_loop(FILE * input)
Erik Andersen3522eb12000-03-12 23:49:18 +00001719{
Erik Andersen161220c2000-03-16 08:12:48 +00001720 char *command;
Eric Andersen86349772000-12-18 20:25:50 +00001721 char *next_command = NULL;
1722 struct job newjob;
Eric Andersen1c314ad2000-06-28 16:56:25 +00001723 pid_t parent_pgrp;
Erik Andersen161220c2000-03-16 08:12:48 +00001724 int i;
Eric Andersen86349772000-12-18 20:25:50 +00001725 int inbg;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001726 int status;
Eric Andersen86349772000-12-18 20:25:50 +00001727 newjob.job_list = &job_list;
1728 newjob.job_context = DEFAULT_CONTEXT;
Erik Andersen3522eb12000-03-12 23:49:18 +00001729
Eric Andersen1c314ad2000-06-28 16:56:25 +00001730 /* save current owner of TTY so we can restore it on exit */
1731 parent_pgrp = tcgetpgrp(0);
1732
Matt Kraaib8907522000-09-13 02:08:21 +00001733 command = (char *) xcalloc(BUFSIZ, sizeof(char));
Erik Andersend75af992000-03-16 08:09:09 +00001734
Erik Andersen161220c2000-03-16 08:12:48 +00001735 /* don't pay any attention to this signal; it just confuses
1736 things and isn't really meant for shells anyway */
1737 signal(SIGTTOU, SIG_IGN);
Erik Andersend75af992000-03-16 08:09:09 +00001738
Erik Andersen161220c2000-03-16 08:12:48 +00001739 while (1) {
Eric Andersen86349772000-12-18 20:25:50 +00001740 if (!job_list.fg) {
Erik Andersend75af992000-03-16 08:09:09 +00001741 /* no job is in the foreground */
Erik Andersen3522eb12000-03-12 23:49:18 +00001742
Erik Andersend75af992000-03-16 08:09:09 +00001743 /* see if any background processes have exited */
Eric Andersen86349772000-12-18 20:25:50 +00001744 checkjobs(&job_list);
Erik Andersen3522eb12000-03-12 23:49:18 +00001745
Eric Andersen86349772000-12-18 20:25:50 +00001746 if (!next_command) {
1747 if (get_command(input, command))
Erik Andersen161220c2000-03-16 08:12:48 +00001748 break;
Eric Andersen86349772000-12-18 20:25:50 +00001749 next_command = command;
Erik Andersend75af992000-03-16 08:09:09 +00001750 }
Erik Andersen3522eb12000-03-12 23:49:18 +00001751
Eric Andersenca604592001-03-08 17:17:13 +00001752 if (expand_arguments(next_command) == FALSE) {
1753 free(command);
1754 command = (char *) xcalloc(BUFSIZ, sizeof(char));
1755 next_command = NULL;
1756 continue;
1757 }
1758
Eric Andersen86349772000-12-18 20:25:50 +00001759 if (!parse_command(&next_command, &newjob, &inbg) &&
1760 newjob.num_progs) {
Eric Andersena1d187a2000-07-17 19:14:41 +00001761 int pipefds[2] = {-1,-1};
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001762 debug_printf( "job=%p fed to run_command by busy_loop()'\n",
1763 &newjob);
Eric Andersen86349772000-12-18 20:25:50 +00001764 run_command(&newjob, inbg, pipefds);
Eric Andersenfad9c112000-07-25 18:06:52 +00001765 }
1766 else {
Eric Andersena1d187a2000-07-17 19:14:41 +00001767 free(command);
Matt Kraaib8907522000-09-13 02:08:21 +00001768 command = (char *) xcalloc(BUFSIZ, sizeof(char));
Eric Andersen86349772000-12-18 20:25:50 +00001769 next_command = NULL;
Erik Andersend75af992000-03-16 08:09:09 +00001770 }
1771 } else {
1772 /* a job is running in the foreground; wait for it */
1773 i = 0;
Eric Andersen86349772000-12-18 20:25:50 +00001774 while (!job_list.fg->progs[i].pid ||
1775 job_list.fg->progs[i].is_stopped == 1) i++;
Erik Andersen3522eb12000-03-12 23:49:18 +00001776
Eric Andersen8ea28be2001-01-05 20:58:22 +00001777 if (waitpid(job_list.fg->progs[i].pid, &status, WUNTRACED)<0)
1778 perror_msg_and_die("waitpid(%d)",job_list.fg->progs[i].pid);
Erik Andersen3522eb12000-03-12 23:49:18 +00001779
Erik Andersend75af992000-03-16 08:09:09 +00001780 if (WIFEXITED(status) || WIFSIGNALED(status)) {
Erik Andersen161220c2000-03-16 08:12:48 +00001781 /* the child exited */
Eric Andersen86349772000-12-18 20:25:50 +00001782 job_list.fg->running_progs--;
1783 job_list.fg->progs[i].pid = 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001784
Eric Andersen501c88b2000-07-28 15:14:45 +00001785#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen86349772000-12-18 20:25:50 +00001786 last_return_code=WEXITSTATUS(status);
Eric Andersen86349772000-12-18 20:25:50 +00001787 debug_printf("'%s' exited -- return code %d\n",
1788 job_list.fg->text, last_return_code);
Eric Andersenb180dd92001-03-09 00:42:46 +00001789#endif
Eric Andersen86349772000-12-18 20:25:50 +00001790 if (!job_list.fg->running_progs) {
Erik Andersen161220c2000-03-16 08:12:48 +00001791 /* child exited */
Eric Andersen86349772000-12-18 20:25:50 +00001792 remove_job(&job_list, job_list.fg);
1793 job_list.fg = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001794 }
Erik Andersend75af992000-03-16 08:09:09 +00001795 } else {
Erik Andersen161220c2000-03-16 08:12:48 +00001796 /* the child was stopped */
Eric Andersen86349772000-12-18 20:25:50 +00001797 job_list.fg->stopped_progs++;
1798 job_list.fg->progs[i].is_stopped = 1;
Erik Andersen3522eb12000-03-12 23:49:18 +00001799
Eric Andersen86349772000-12-18 20:25:50 +00001800 if (job_list.fg->stopped_progs == job_list.fg->running_progs) {
1801 printf("\n" JOB_STATUS_FORMAT, job_list.fg->jobid,
1802 "Stopped", job_list.fg->text);
1803 job_list.fg = NULL;
Erik Andersen161220c2000-03-16 08:12:48 +00001804 }
Erik Andersend75af992000-03-16 08:09:09 +00001805 }
1806
Eric Andersen86349772000-12-18 20:25:50 +00001807 if (!job_list.fg) {
Erik Andersen161220c2000-03-16 08:12:48 +00001808 /* move the shell to the foreground */
Eric Andersen1c314ad2000-06-28 16:56:25 +00001809 /* suppress messages when run from /linuxrc mag@sysgo.de */
Eric Andersened424db2001-04-23 15:28:28 +00001810 if (tcsetpgrp(0, getpgrp()) && errno != ENOTTY)
Matt Kraaia9819b22000-12-22 01:48:07 +00001811 perror_msg("tcsetpgrp");
Erik Andersend75af992000-03-16 08:09:09 +00001812 }
1813 }
1814 }
Erik Andersen161220c2000-03-16 08:12:48 +00001815 free(command);
Erik Andersen3522eb12000-03-12 23:49:18 +00001816
Eric Andersen1c314ad2000-06-28 16:56:25 +00001817 /* return controlling TTY back to parent process group before exiting */
1818 if (tcsetpgrp(0, parent_pgrp))
Matt Kraaia9819b22000-12-22 01:48:07 +00001819 perror_msg("tcsetpgrp");
Eric Andersenb54833c2000-07-03 23:56:26 +00001820
1821 /* return exit status if called with "-c" */
1822 if (input == NULL && WIFEXITED(status))
1823 return WEXITSTATUS(status);
1824
Erik Andersen161220c2000-03-16 08:12:48 +00001825 return 0;
Erik Andersen3522eb12000-03-12 23:49:18 +00001826}
1827
1828
Eric Andersenfad9c112000-07-25 18:06:52 +00001829#ifdef BB_FEATURE_CLEAN_UP
1830void free_memory(void)
1831{
Eric Andersene5dfced2001-04-09 22:48:12 +00001832 if (cwd) {
Eric Andersenfad9c112000-07-25 18:06:52 +00001833 free(cwd);
Eric Andersene5dfced2001-04-09 22:48:12 +00001834 }
Eric Andersenfad9c112000-07-25 18:06:52 +00001835 if (local_pending_command)
1836 free(local_pending_command);
1837
Eric Andersen86349772000-12-18 20:25:50 +00001838 if (job_list.fg && !job_list.fg->running_progs) {
1839 remove_job(&job_list, job_list.fg);
Eric Andersenfad9c112000-07-25 18:06:52 +00001840 }
1841}
1842#endif
1843
Eric Andersen6efc48c2000-07-18 08:16:39 +00001844
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001845int shell_main(int argc_l, char **argv_l)
Erik Andersen3522eb12000-03-12 23:49:18 +00001846{
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001847 int opt, interactive=FALSE;
Erik Andersen161220c2000-03-16 08:12:48 +00001848 FILE *input = stdin;
Eric Andersen6a99aaf2000-07-27 00:15:20 +00001849 argc = argc_l;
1850 argv = argv_l;
Erik Andersen3522eb12000-03-12 23:49:18 +00001851
Eric Andersen702ec592001-03-06 22:17:29 +00001852 /* These variables need re-initializing when recursing */
Eric Andersenb0970d42001-01-05 19:34:52 +00001853 shell_context = 0;
Eric Andersenb0970d42001-01-05 19:34:52 +00001854 local_pending_command = NULL;
Eric Andersen702ec592001-03-06 22:17:29 +00001855 close_me_head = NULL;
Eric Andersenb0970d42001-01-05 19:34:52 +00001856 job_list.head = NULL;
1857 job_list.fg = NULL;
1858#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersenca604592001-03-08 17:17:13 +00001859 last_bg_pid=1;
1860 last_return_code=1;
Eric Andersenb0970d42001-01-05 19:34:52 +00001861 show_x_trace=FALSE;
1862#endif
Eric Andersen501c88b2000-07-28 15:14:45 +00001863
Eric Andersenb558e762000-11-30 22:43:16 +00001864 if (argv[0] && argv[0][0] == '-') {
Eric Andersen8ea28be2001-01-05 20:58:22 +00001865 FILE *prof_input;
1866 prof_input = fopen("/etc/profile", "r");
1867 if (!prof_input) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001868 printf( "Couldn't open file '/etc/profile'\n");
Eric Andersen8ea28be2001-01-05 20:58:22 +00001869 } else {
1870 int tmp_fd = fileno(prof_input);
1871 mark_open(tmp_fd);
1872 /* Now run the file */
1873 busy_loop(prof_input);
1874 fclose(prof_input);
1875 mark_closed(tmp_fd);
1876 }
Eric Andersenb558e762000-11-30 22:43:16 +00001877 }
Eric Andersen501c88b2000-07-28 15:14:45 +00001878
Eric Andersenf21aa842000-12-08 20:50:30 +00001879 while ((opt = getopt(argc_l, argv_l, "cxi")) > 0) {
Eric Andersen501c88b2000-07-28 15:14:45 +00001880 switch (opt) {
1881 case 'c':
1882 input = NULL;
Matt Kraai6085c722000-09-06 01:46:18 +00001883 if (local_pending_command != 0)
Matt Kraaidd19c692001-01-31 19:00:21 +00001884 error_msg_and_die("multiple -c arguments");
Matt Kraai6085c722000-09-06 01:46:18 +00001885 local_pending_command = xstrdup(argv[optind]);
1886 optind++;
1887 argv = argv+optind;
Eric Andersen501c88b2000-07-28 15:14:45 +00001888 break;
Eric Andersen1428c4f2000-07-28 15:19:30 +00001889#ifdef BB_FEATURE_SH_ENVIRONMENT
Eric Andersen501c88b2000-07-28 15:14:45 +00001890 case 'x':
Eric Andersen86349772000-12-18 20:25:50 +00001891 show_x_trace = TRUE;
Eric Andersen501c88b2000-07-28 15:14:45 +00001892 break;
Eric Andersen1428c4f2000-07-28 15:19:30 +00001893#endif
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001894 case 'i':
1895 interactive = TRUE;
1896 break;
Eric Andersen501c88b2000-07-28 15:14:45 +00001897 default:
Eric Andersen67991cf2001-02-14 21:23:06 +00001898 show_usage();
Eric Andersen501c88b2000-07-28 15:14:45 +00001899 }
1900 }
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001901 /* A shell is interactive if the `-i' flag was given, or if all of
1902 * the following conditions are met:
1903 * no -c command
1904 * no arguments remaining or the -s flag given
1905 * standard input is a terminal
1906 * standard output is a terminal
1907 * Refer to Posix.2, the description of the `sh' utility. */
Eric Andersen86349772000-12-18 20:25:50 +00001908 if (argv[optind]==NULL && input==stdin &&
1909 isatty(fileno(stdin)) && isatty(fileno(stdout))) {
1910 interactive=TRUE;
1911 }
1912 if (interactive==TRUE) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001913 //printf( "optind=%d argv[optind]='%s'\n", optind, argv[optind]);
Eric Andersen501c88b2000-07-28 15:14:45 +00001914 /* Looks like they want an interactive shell */
Matt Kraai4ef40c02001-04-12 20:44:21 +00001915 printf( "\n\n" BB_BANNER " Built-in shell (lash)\n");
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001916 printf( "Enter 'help' for a list of built-in commands.\n\n");
Eric Andersen6a4c33c2000-07-28 17:08:36 +00001917 } else if (local_pending_command==NULL) {
Eric Andersen6f65a3a2001-01-20 01:10:07 +00001918 //printf( "optind=%d argv[optind]='%s'\n", optind, argv[optind]);
Matt Kraaibbaef662000-09-27 02:43:35 +00001919 input = xfopen(argv[optind], "r");
Eric Andersen8ea28be2001-01-05 20:58:22 +00001920 mark_open(fileno(input)); /* be lazy, never mark this closed */
Eric Andersen501c88b2000-07-28 15:14:45 +00001921 }
1922
Eric Andersen6efc48c2000-07-18 08:16:39 +00001923 /* initialize the cwd -- this is never freed...*/
Eric Andersene5dfced2001-04-09 22:48:12 +00001924 cwd = xgetcwd(0);
Eric Andersen5f265b72001-05-11 16:58:46 +00001925 if (!cwd)
1926 cwd = unknown;
Erik Andersen3522eb12000-03-12 23:49:18 +00001927
Eric Andersenfad9c112000-07-25 18:06:52 +00001928#ifdef BB_FEATURE_CLEAN_UP
1929 atexit(free_memory);
1930#endif
1931
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001932#ifdef BB_FEATURE_COMMAND_EDITING
1933 cmdedit_set_initial_prompt();
1934#else
1935 PS1 = NULL;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001936#endif
1937
Erik Andersen161220c2000-03-16 08:12:48 +00001938 return (busy_loop(input));
Erik Andersen3522eb12000-03-12 23:49:18 +00001939}
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001940