2005-04-21 16:53:53 +02:00
|
|
|
/*-
|
2006-05-23 14:59:34 +02:00
|
|
|
* Copyright (c) 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
2005-04-21 16:53:53 +02:00
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Kenneth Almquist.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
2006-05-23 14:59:34 +02:00
|
|
|
static char const copyright[] =
|
|
|
|
"@(#) Copyright (c) 1991, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n";
|
2005-04-21 16:53:53 +02:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
2006-05-23 14:59:34 +02:00
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)main.c 8.6 (Berkeley) 5/28/95";
|
|
|
|
#endif
|
2005-04-21 16:53:53 +02:00
|
|
|
#endif /* not lint */
|
2006-05-23 14:59:34 +02:00
|
|
|
/*
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD: src/bin/sh/main.c,v 1.26 2004/04/06 20:06:51 markm Exp $");
|
|
|
|
*/
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2006-05-23 14:59:34 +02:00
|
|
|
#include <stdio.h>
|
2005-04-21 16:53:53 +02:00
|
|
|
#include <signal.h>
|
2006-05-23 14:59:34 +02:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
2005-04-21 16:53:53 +02:00
|
|
|
#include <fcntl.h>
|
2006-05-23 14:59:34 +02:00
|
|
|
#include <locale.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
#include "shell.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "mail.h"
|
|
|
|
#include "options.h"
|
|
|
|
#include "output.h"
|
|
|
|
#include "parser.h"
|
|
|
|
#include "nodes.h"
|
2006-05-23 14:59:34 +02:00
|
|
|
#include "expand.h"
|
2005-04-21 16:53:53 +02:00
|
|
|
#include "eval.h"
|
|
|
|
#include "jobs.h"
|
|
|
|
#include "input.h"
|
|
|
|
#include "trap.h"
|
|
|
|
#include "var.h"
|
2006-05-23 14:59:34 +02:00
|
|
|
#include "show.h"
|
2005-04-21 16:53:53 +02:00
|
|
|
#include "memalloc.h"
|
|
|
|
#include "error.h"
|
|
|
|
#include "init.h"
|
|
|
|
#include "mystring.h"
|
2006-05-23 14:59:34 +02:00
|
|
|
#include "exec.h"
|
|
|
|
#include "cd.h"
|
|
|
|
#include "builtins.h"
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
int rootpid;
|
|
|
|
int rootshell;
|
|
|
|
|
|
|
|
STATIC void read_profile(char *);
|
2006-05-23 14:59:34 +02:00
|
|
|
STATIC char *find_dot_file(char *);
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Main routine. We initialize things, parse the arguments, execute
|
|
|
|
* profiles if we're a login shell, and then call cmdloop to execute
|
|
|
|
* commands. The setjmp call sets up the location to jump to when an
|
|
|
|
* exception occurs. When an exception occurs the variable "state"
|
|
|
|
* is used to figure out how far we had gotten.
|
|
|
|
*/
|
|
|
|
|
2006-05-23 14:59:34 +02:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2005-04-21 16:53:53 +02:00
|
|
|
struct jmploc jmploc;
|
|
|
|
struct stackmark smark;
|
|
|
|
volatile int state;
|
2006-05-23 14:59:34 +02:00
|
|
|
char *shinit;
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2006-05-23 14:59:34 +02:00
|
|
|
(void) setlocale(LC_ALL, "");
|
2005-04-21 16:53:53 +02:00
|
|
|
state = 0;
|
|
|
|
if (setjmp(jmploc.loc)) {
|
|
|
|
/*
|
|
|
|
* When a shell procedure is executed, we raise the
|
|
|
|
* exception EXSHELLPROC to clean up before executing
|
|
|
|
* the shell procedure.
|
|
|
|
*/
|
2006-05-23 14:59:34 +02:00
|
|
|
switch (exception) {
|
|
|
|
case EXSHELLPROC:
|
2005-04-21 16:53:53 +02:00
|
|
|
rootpid = getpid();
|
|
|
|
rootshell = 1;
|
|
|
|
minusc = NULL;
|
|
|
|
state = 3;
|
2006-05-23 14:59:34 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EXEXEC:
|
|
|
|
exitstatus = exerrno;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EXERROR:
|
|
|
|
exitstatus = 2;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (exception != EXSHELLPROC) {
|
|
|
|
if (state == 0 || iflag == 0 || ! rootshell)
|
|
|
|
exitshell(exitstatus);
|
|
|
|
}
|
2005-04-21 16:53:53 +02:00
|
|
|
reset();
|
2006-05-23 14:59:34 +02:00
|
|
|
if (exception == EXINT) {
|
2005-04-21 16:53:53 +02:00
|
|
|
out2c('\n');
|
|
|
|
flushout(&errout);
|
|
|
|
}
|
|
|
|
popstackmark(&smark);
|
|
|
|
FORCEINTON; /* enable interrupts */
|
|
|
|
if (state == 1)
|
|
|
|
goto state1;
|
|
|
|
else if (state == 2)
|
|
|
|
goto state2;
|
|
|
|
else if (state == 3)
|
|
|
|
goto state3;
|
|
|
|
else
|
|
|
|
goto state4;
|
|
|
|
}
|
|
|
|
handler = &jmploc;
|
|
|
|
#if DEBUG
|
|
|
|
opentrace();
|
|
|
|
trputs("Shell args: "); trargs(argv);
|
|
|
|
#endif
|
|
|
|
rootpid = getpid();
|
|
|
|
rootshell = 1;
|
|
|
|
init();
|
|
|
|
setstackmark(&smark);
|
|
|
|
procargs(argc, argv);
|
2006-05-23 14:59:34 +02:00
|
|
|
if (getpwd() == NULL && iflag)
|
|
|
|
out2str("sh: cannot determine working directory\n");
|
2005-04-21 16:53:53 +02:00
|
|
|
if (argv[0] && argv[0][0] == '-') {
|
|
|
|
state = 1;
|
|
|
|
read_profile("/etc/profile");
|
|
|
|
state1:
|
|
|
|
state = 2;
|
2006-05-23 14:59:34 +02:00
|
|
|
if (privileged == 0)
|
2005-04-21 16:53:53 +02:00
|
|
|
read_profile(".profile");
|
2006-05-23 14:59:34 +02:00
|
|
|
else
|
|
|
|
read_profile("/etc/suid_profile");
|
2005-04-21 16:53:53 +02:00
|
|
|
}
|
|
|
|
state2:
|
|
|
|
state = 3;
|
2006-05-23 14:59:34 +02:00
|
|
|
if (!privileged && iflag) {
|
|
|
|
if ((shinit = lookupvar("ENV")) != NULL && *shinit != '\0') {
|
|
|
|
state = 3;
|
|
|
|
read_profile(shinit);
|
2005-04-21 16:53:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
state3:
|
|
|
|
state = 4;
|
|
|
|
if (minusc) {
|
|
|
|
evalstring(minusc);
|
|
|
|
}
|
|
|
|
if (sflag || minusc == NULL) {
|
2006-05-23 14:59:34 +02:00
|
|
|
state4: /* XXX ??? - why isn't this before the "if" statement */
|
2005-04-21 16:53:53 +02:00
|
|
|
cmdloop(1);
|
|
|
|
}
|
|
|
|
exitshell(exitstatus);
|
2006-05-23 14:59:34 +02:00
|
|
|
/*NOTREACHED*/
|
|
|
|
return 0;
|
2005-04-21 16:53:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read and execute commands. "Top" is nonzero for the top level command
|
|
|
|
* loop; it turns on prompting if the shell is interactive.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
2006-05-23 14:59:34 +02:00
|
|
|
cmdloop(int top)
|
|
|
|
{
|
2005-04-21 16:53:53 +02:00
|
|
|
union node *n;
|
|
|
|
struct stackmark smark;
|
|
|
|
int inter;
|
2006-05-23 14:59:34 +02:00
|
|
|
int numeof = 0;
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
TRACE(("cmdloop(%d) called\n", top));
|
|
|
|
setstackmark(&smark);
|
|
|
|
for (;;) {
|
|
|
|
if (pendingsigs)
|
|
|
|
dotrap();
|
|
|
|
inter = 0;
|
|
|
|
if (iflag && top) {
|
|
|
|
inter++;
|
2006-05-23 14:59:34 +02:00
|
|
|
showjobs(1, 0, 0);
|
2005-04-21 16:53:53 +02:00
|
|
|
chkmail(0);
|
|
|
|
flushout(&output);
|
|
|
|
}
|
|
|
|
n = parsecmd(inter);
|
2006-05-23 14:59:34 +02:00
|
|
|
/* showtree(n); DEBUG */
|
2005-04-21 16:53:53 +02:00
|
|
|
if (n == NEOF) {
|
2006-05-23 14:59:34 +02:00
|
|
|
if (!top || numeof >= 50)
|
2005-04-21 16:53:53 +02:00
|
|
|
break;
|
2006-05-23 14:59:34 +02:00
|
|
|
if (!stoppedjobs()) {
|
|
|
|
if (!Iflag)
|
|
|
|
break;
|
|
|
|
out2str("\nUse \"exit\" to leave shell.\n");
|
|
|
|
}
|
2005-04-21 16:53:53 +02:00
|
|
|
numeof++;
|
|
|
|
} else if (n != NULL && nflag == 0) {
|
2006-05-23 14:59:34 +02:00
|
|
|
job_warning = (job_warning == 2) ? 1 : 0;
|
|
|
|
numeof = 0;
|
2005-04-21 16:53:53 +02:00
|
|
|
evaltree(n, 0);
|
|
|
|
}
|
|
|
|
popstackmark(&smark);
|
2006-05-23 14:59:34 +02:00
|
|
|
setstackmark(&smark);
|
|
|
|
if (evalskip == SKIPFILE) {
|
|
|
|
evalskip = 0;
|
|
|
|
break;
|
|
|
|
}
|
2005-04-21 16:53:53 +02:00
|
|
|
}
|
2006-05-23 14:59:34 +02:00
|
|
|
popstackmark(&smark);
|
2005-04-21 16:53:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read /etc/profile or .profile. Return on error.
|
|
|
|
*/
|
|
|
|
|
|
|
|
STATIC void
|
2006-05-23 14:59:34 +02:00
|
|
|
read_profile(char *name)
|
|
|
|
{
|
2005-04-21 16:53:53 +02:00
|
|
|
int fd;
|
|
|
|
|
|
|
|
INTOFF;
|
|
|
|
if ((fd = open(name, O_RDONLY)) >= 0)
|
|
|
|
setinputfd(fd, 1);
|
|
|
|
INTON;
|
|
|
|
if (fd < 0)
|
|
|
|
return;
|
|
|
|
cmdloop(0);
|
|
|
|
popfile();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read a file containing shell functions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
2006-05-23 14:59:34 +02:00
|
|
|
readcmdfile(char *name)
|
|
|
|
{
|
2005-04-21 16:53:53 +02:00
|
|
|
int fd;
|
|
|
|
|
|
|
|
INTOFF;
|
|
|
|
if ((fd = open(name, O_RDONLY)) >= 0)
|
|
|
|
setinputfd(fd, 1);
|
|
|
|
else
|
2006-05-23 14:59:34 +02:00
|
|
|
error("Can't open %s: %s", name, strerror(errno));
|
2005-04-21 16:53:53 +02:00
|
|
|
INTON;
|
|
|
|
cmdloop(0);
|
|
|
|
popfile();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-05-23 14:59:34 +02:00
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
/*
|
2006-05-23 14:59:34 +02:00
|
|
|
* Take commands from a file. To be compatible we should do a path
|
|
|
|
* search for the file, which is necessary to find sub-commands.
|
2005-04-21 16:53:53 +02:00
|
|
|
*/
|
|
|
|
|
2006-05-23 14:59:34 +02:00
|
|
|
|
|
|
|
STATIC char *
|
|
|
|
find_dot_file(char *basename)
|
|
|
|
{
|
|
|
|
static char localname[FILENAME_MAX+1];
|
|
|
|
char *fullname;
|
|
|
|
char *path = pathval();
|
|
|
|
struct stat statb;
|
|
|
|
|
|
|
|
/* don't try this for absolute or relative paths */
|
|
|
|
if( strchr(basename, '/'))
|
|
|
|
return basename;
|
|
|
|
|
|
|
|
while ((fullname = padvance(&path, basename)) != NULL) {
|
|
|
|
strcpy(localname, fullname);
|
|
|
|
stunalloc(fullname);
|
|
|
|
if ((stat(fullname, &statb) == 0) && S_ISREG(statb.st_mode))
|
|
|
|
return localname;
|
|
|
|
}
|
|
|
|
return basename;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
dotcmd(int argc, char **argv)
|
|
|
|
{
|
|
|
|
struct strlist *sp;
|
2005-04-21 16:53:53 +02:00
|
|
|
exitstatus = 0;
|
2006-05-23 14:59:34 +02:00
|
|
|
|
|
|
|
for (sp = cmdenviron; sp ; sp = sp->next)
|
|
|
|
setvareq(savestr(sp->text), VSTRFIXED|VTEXTFIXED);
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
if (argc >= 2) { /* That's what SVR2 does */
|
2006-05-23 14:59:34 +02:00
|
|
|
char *fullname = find_dot_file(argv[1]);
|
|
|
|
|
|
|
|
setinputfile(fullname, 1);
|
|
|
|
commandname = fullname;
|
2005-04-21 16:53:53 +02:00
|
|
|
cmdloop(0);
|
|
|
|
popfile();
|
|
|
|
}
|
|
|
|
return exitstatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-05-23 14:59:34 +02:00
|
|
|
int
|
|
|
|
exitcmd(int argc, char **argv)
|
|
|
|
{
|
2006-03-17 18:33:20 +01:00
|
|
|
extern int oexitstatus;
|
2006-05-23 14:59:34 +02:00
|
|
|
|
|
|
|
if (stoppedjobs())
|
|
|
|
return 0;
|
2005-04-21 16:53:53 +02:00
|
|
|
if (argc > 1)
|
|
|
|
exitstatus = number(argv[1]);
|
2006-03-17 18:33:20 +01:00
|
|
|
else
|
|
|
|
exitstatus = oexitstatus;
|
2005-04-21 16:53:53 +02:00
|
|
|
exitshell(exitstatus);
|
2006-05-23 14:59:34 +02:00
|
|
|
/*NOTREACHED*/
|
|
|
|
return 0;
|
2005-04-21 16:53:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2006-05-23 14:59:34 +02:00
|
|
|
* $PchId: main.c,v 1.5 2006/05/22 12:03:02 philip Exp $
|
2005-04-21 16:53:53 +02:00
|
|
|
*/
|