NetBSD/bin/sh/jobs.c

1254 lines
27 KiB
C
Raw Normal View History

/* $NetBSD: jobs.c,v 1.47 2002/09/27 18:56:53 christos Exp $ */
1995-03-21 12:01:59 +03:00
1993-03-21 12:45:37 +03:00
/*-
1994-05-11 21:09:42 +04:00
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03: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.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 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.
*/
1997-07-05 01:01:48 +04:00
#include <sys/cdefs.h>
1993-03-21 12:45:37 +03:00
#ifndef lint
1995-03-21 12:01:59 +03:00
#if 0
static char sccsid[] = "@(#)jobs.c 8.5 (Berkeley) 5/4/95";
1995-03-21 12:01:59 +03:00
#else
__RCSID("$NetBSD: jobs.c,v 1.47 2002/09/27 18:56:53 christos Exp $");
1995-03-21 12:01:59 +03:00
#endif
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#include <fcntl.h>
#include <signal.h>
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
#include <paths.h>
#include <sys/types.h>
#include <sys/param.h>
#ifdef BSD
#include <sys/wait.h>
#include <sys/time.h>
#include <sys/resource.h>
#endif
#include <sys/ioctl.h>
1993-03-21 12:45:37 +03:00
#include "shell.h"
#if JOBS
#if OLD_TTY_DRIVER
1993-03-21 12:45:37 +03:00
#include "sgtty.h"
#else
#include <termios.h>
#endif
1993-03-21 12:45:37 +03:00
#undef CEOF /* syntax.h redefines this */
#endif
#include "redir.h"
#include "show.h"
1993-03-21 12:45:37 +03:00
#include "main.h"
#include "parser.h"
#include "nodes.h"
#include "jobs.h"
#include "options.h"
#include "trap.h"
#include "syntax.h"
#include "input.h"
#include "output.h"
#include "memalloc.h"
#include "error.h"
#include "mystring.h"
struct job *jobtab; /* array of jobs */
int njobs; /* size of array */
MKINIT short backgndpid = -1; /* pid of last background process */
#if JOBS
int initialpgrp; /* pgrp of shell on invocation */
short curjob; /* current job */
#endif
static int ttyfd = -1;
1993-03-21 12:45:37 +03:00
STATIC void restartjob __P((struct job *));
STATIC void freejob __P((struct job *));
STATIC struct job *getjob __P((char *));
STATIC int dowait __P((int, struct job *));
STATIC int onsigchild __P((void));
STATIC int waitproc __P((int, struct job *, int *));
STATIC void cmdtxt __P((union node *));
1999-07-09 07:05:49 +04:00
STATIC void cmdputs __P((const char *));
1993-03-21 12:45:37 +03:00
#ifdef OLD_TTY_DRIVER
static pid_t tcgetpgrp __P((int fd));
static int tcsetpgrp __P((int fd, pid_t pgrp));
static pid_t
tcgetpgrp(fd)
int fd;
{
pid_t pgrp;
if (ioctl(fd, TIOCGPGRP, (char *)&pgrp) == -1)
return -1;
else
return pgrp;
}
static int
tcsetpgrp(fd, pgrp)
int fd;
pid_t pgrp;
{
return ioctl(fd, TIOCSPGRP, (char *)&pgrp);
}
#endif
1994-05-11 21:09:42 +04:00
1993-03-21 12:45:37 +03:00
/*
* Turn job control on and off.
*
* Note: This code assumes that the third arg to ioctl is a character
* pointer, which is true on Berkeley systems but not System V. Since
* System V doesn't have job control yet, this isn't a problem now.
*/
MKINIT int jobctl;
void
setjobctl(on)
int on;
{
1994-05-11 21:09:42 +04:00
#ifdef OLD_TTY_DRIVER
1993-03-21 12:45:37 +03:00
int ldisc;
1994-05-11 21:09:42 +04:00
#endif
1993-03-21 12:45:37 +03:00
if (on == jobctl || rootshell == 0)
return;
if (on) {
#if defined(FIOCLEX) || defined(FD_CLOEXEC)
int err;
if (ttyfd != -1)
close(ttyfd);
2002-04-10 19:52:07 +04:00
if ((ttyfd = open("/dev/tty", O_RDWR)) == -1) {
int i;
for (i = 0; i < 3; i++) {
if (isatty(i) && (ttyfd = dup(i)) != -1)
break;
}
if (i == 3)
goto out;
}
#ifdef FIOCLEX
err = ioctl(ttyfd, FIOCLEX, 0);
#elif FD_CLOEXEC
err = fcntl(ttyfd, FD_CLOEXEC, 1);
#endif
if (err == -1) {
close(ttyfd);
ttyfd = -1;
goto out;
}
1996-09-17 18:44:05 +04:00
#else
out2str("sh: Need FIOCLEX or FD_CLOEXEC to support job control");
goto out;
1996-09-17 18:44:05 +04:00
#endif
do { /* while we are in the background */
if ((initialpgrp = tcgetpgrp(ttyfd)) < 0) {
out:
1994-05-11 21:09:42 +04:00
out2str("sh: can't access tty; job control turned off\n");
mflag = 0;
1993-03-21 12:45:37 +03:00
return;
}
if (initialpgrp == -1)
1994-05-12 20:32:42 +04:00
initialpgrp = getpgrp();
else if (initialpgrp != getpgrp()) {
killpg(0, SIGTTIN);
1993-03-21 12:45:37 +03:00
continue;
}
} while (0);
1994-05-11 21:09:42 +04:00
#ifdef OLD_TTY_DRIVER
if (ioctl(ttyfd, TIOCGETD, (char *)&ldisc) < 0
|| ldisc != NTTYDISC) {
1994-05-11 21:09:42 +04:00
out2str("sh: need new tty driver to run job control; job control turned off\n");
mflag = 0;
1993-03-21 12:45:37 +03:00
return;
}
1994-05-11 21:09:42 +04:00
#endif
setsignal(SIGTSTP, 0);
setsignal(SIGTTOU, 0);
setsignal(SIGTTIN, 0);
if (getpgid(0) != rootpid && setpgid(0, rootpid) == -1)
error("Cannot set process group (%s) at %d",
strerror(errno), __LINE__);
if (tcsetpgrp(ttyfd, rootpid) == -1)
error("Cannot set tty process group (%s) at %d",
strerror(errno), __LINE__);
1993-03-21 12:45:37 +03:00
} else { /* turning job control off */
if (getpgid(0) != initialpgrp && setpgid(0, initialpgrp) == -1)
error("Cannot set process group (%s) at %d",
strerror(errno), __LINE__);
if (tcsetpgrp(ttyfd, initialpgrp) == -1)
error("Cannot set tty process group (%s) at %d",
strerror(errno), __LINE__);
close(ttyfd);
ttyfd = -1;
setsignal(SIGTSTP, 0);
setsignal(SIGTTOU, 0);
setsignal(SIGTTIN, 0);
1993-03-21 12:45:37 +03:00
}
jobctl = on;
}
#ifdef mkinit
INCLUDE <stdlib.h>
1993-03-21 12:45:37 +03:00
SHELLPROC {
backgndpid = -1;
#if JOBS
jobctl = 0;
#endif
}
#endif
#if JOBS
int
fgcmd(argc, argv)
int argc;
char **argv;
{
1993-03-21 12:45:37 +03:00
struct job *jp;
int i;
1993-03-21 12:45:37 +03:00
int status;
jp = getjob(argv[1]);
if (jp->jobctl == 0)
error("job not created under job control");
for (i = 0; i <= jp->nprocs; i++)
if (tcsetpgrp(ttyfd, jp->ps[i].pid) != -1)
break;
if (i > jp->nprocs) {
error("Cannot set tty process group (%s) at %d",
strerror(errno), __LINE__);
}
1993-03-21 12:45:37 +03:00
restartjob(jp);
INTOFF;
status = waitforjob(jp);
INTON;
return status;
}
int
bgcmd(argc, argv)
int argc;
char **argv;
{
1993-03-21 12:45:37 +03:00
struct job *jp;
do {
jp = getjob(*++argv);
if (jp->jobctl == 0)
error("job not created under job control");
restartjob(jp);
} while (--argc > 1);
return 0;
}
STATIC void
restartjob(jp)
struct job *jp;
{
1993-03-21 12:45:37 +03:00
struct procstat *ps;
int i;
if (jp->state == JOBDONE)
return;
INTOFF;
for (i = 0; i <= jp->nprocs; i++)
if (killpg(jp->ps[i].pid, SIGCONT) != -1)
break;
if (i > jp->nprocs)
error("Cannot continue job (%s)", strerror(errno));
1993-03-21 12:45:37 +03:00
for (ps = jp->ps, i = jp->nprocs ; --i >= 0 ; ps++) {
if (WIFSTOPPED(ps->status)) {
1993-03-21 12:45:37 +03:00
ps->status = -1;
jp->state = 0;
}
}
INTON;
}
#endif
int
jobscmd(argc, argv)
int argc;
char **argv;
{
1993-03-21 12:45:37 +03:00
showjobs(0);
return 0;
}
/*
* Print a list of jobs. If "change" is nonzero, only print jobs whose
* statuses have changed since the last call to showjobs.
*
* If the shell is interrupted in the process of creating a job, the
* result may be a job structure containing zero processes. Such structures
* will be freed here.
*/
void
showjobs(change)
int change;
{
1993-03-21 12:45:37 +03:00
int jobno;
int procno;
int i;
struct job *jp;
struct procstat *ps;
int col;
int silent = 0, gotpid;
1993-03-21 12:45:37 +03:00
char s[64];
TRACE(("showjobs(%d) called\n", change));
/* If not even one one job changed, there is nothing to do */
gotpid = dowait(0, NULL);
while (dowait(0, NULL) > 0)
continue;
#ifdef JOBS
/*
* Check if we are not in our foreground group, and if not
* put us in it.
*/
if (gotpid != -1 && tcgetpgrp(ttyfd) != getpid()) {
if (tcsetpgrp(ttyfd, getpid()) == -1)
error("Cannot set tty process group (%s) at %d",
strerror(errno), __LINE__);
TRACE(("repaired tty process group\n"));
silent = 1;
}
#endif
1993-03-21 12:45:37 +03:00
for (jobno = 1, jp = jobtab ; jobno <= njobs ; jobno++, jp++) {
if (! jp->used)
continue;
if (jp->nprocs == 0) {
freejob(jp);
continue;
}
if (change && ! jp->changed)
continue;
if (silent && jp->changed) {
jp->changed = 0;
continue;
}
1993-03-21 12:45:37 +03:00
procno = jp->nprocs;
for (ps = jp->ps ; ; ps++) { /* for each process */
if (ps == jp->ps)
fmtstr(s, 64, "[%d] %ld ", jobno,
(long)ps->pid);
1993-03-21 12:45:37 +03:00
else
fmtstr(s, 64, " %ld ",
(long)ps->pid);
1993-03-21 12:45:37 +03:00
out1str(s);
col = strlen(s);
s[0] = '\0';
if (ps->status == -1) {
/* don't print anything */
} else if (WIFEXITED(ps->status)) {
fmtstr(s, 64, "Exit %d",
WEXITSTATUS(ps->status));
1993-03-21 12:45:37 +03:00
} else {
#if JOBS
if (WIFSTOPPED(ps->status))
i = WSTOPSIG(ps->status);
else /* WIFSIGNALED(ps->status) */
1993-03-21 12:45:37 +03:00
#endif
i = WTERMSIG(ps->status);
if ((i & 0x7F) < NSIG && sys_siglist[i & 0x7F])
scopy(sys_siglist[i & 0x7F], s);
1993-03-21 12:45:37 +03:00
else
fmtstr(s, 64, "Signal %d", i & 0x7F);
if (WCOREDUMP(ps->status))
1993-03-21 12:45:37 +03:00
strcat(s, " (core dumped)");
}
out1str(s);
col += strlen(s);
do {
out1c(' ');
col++;
} while (col < 30);
out1str(ps->cmd);
out1c('\n');
if (--procno <= 0)
break;
}
jp->changed = 0;
if (jp->state == JOBDONE) {
freejob(jp);
}
}
}
/*
* Mark a job structure as unused.
*/
STATIC void
freejob(jp)
struct job *jp;
{
struct procstat *ps;
int i;
INTOFF;
for (i = jp->nprocs, ps = jp->ps ; --i >= 0 ; ps++) {
if (ps->cmd != nullstr)
ckfree(ps->cmd);
}
if (jp->ps != &jp->ps0) {
1993-03-21 12:45:37 +03:00
ckfree(jp->ps);
jp->ps = &jp->ps0;
}
jp->nprocs = 0;
1993-03-21 12:45:37 +03:00
jp->used = 0;
#if JOBS
if (curjob == jp - jobtab + 1)
curjob = 0;
#endif
INTON;
}
int
waitcmd(argc, argv)
int argc;
char **argv;
{
1993-03-21 12:45:37 +03:00
struct job *job;
int status, retval;
1993-03-21 12:45:37 +03:00
struct job *jp;
if (argc > 1) {
job = getjob(argv[1]);
} else {
job = NULL;
}
for (;;) { /* loop until process terminated or stopped */
if (job != NULL) {
if (job->state) {
status = job->ps[job->nprocs - 1].status;
if (WIFEXITED(status))
retval = WEXITSTATUS(status);
1993-03-21 12:45:37 +03:00
#if JOBS
else if (WIFSTOPPED(status))
retval = WSTOPSIG(status) + 128;
1993-03-21 12:45:37 +03:00
#endif
else {
/* XXX: limits number of signals */
retval = WTERMSIG(status) + 128;
}
1993-03-21 12:45:37 +03:00
if (! iflag)
freejob(job);
return retval;
1993-03-21 12:45:37 +03:00
}
} else {
for (jp = jobtab ; ; jp++) {
if (jp >= jobtab + njobs) { /* no running procs */
return 0;
}
if (jp->used && jp->state == 0)
break;
}
}
if (dowait(1, (struct job *)NULL) == -1)
return 128 + SIGINT;
1993-03-21 12:45:37 +03:00
}
}
int
jobidcmd(argc, argv)
int argc;
char **argv;
{
1993-03-21 12:45:37 +03:00
struct job *jp;
int i;
jp = getjob(argv[1]);
for (i = 0 ; i < jp->nprocs ; ) {
out1fmt("%ld", (long)jp->ps[i].pid);
1993-03-21 12:45:37 +03:00
out1c(++i < jp->nprocs? ' ' : '\n');
}
return 0;
}
/*
* Convert a job name to a job structure.
*/
STATIC struct job *
getjob(name)
char *name;
{
int jobno;
1997-01-11 05:04:27 +03:00
struct job *jp;
1993-03-21 12:45:37 +03:00
int pid;
int i;
if (name == NULL) {
#if JOBS
currentjob:
if ((jobno = curjob) == 0 || jobtab[jobno - 1].used == 0)
error("No current job");
return &jobtab[jobno - 1];
#else
error("No current job");
#endif
} else if (name[0] == '%') {
if (is_digit(name[1])) {
jobno = number(name + 1);
if (jobno > 0 && jobno <= njobs
&& jobtab[jobno - 1].used != 0)
return &jobtab[jobno - 1];
#if JOBS
} else if (name[1] == '%' && name[2] == '\0') {
goto currentjob;
#endif
} else {
1997-01-11 05:04:27 +03:00
struct job *found = NULL;
1993-03-21 12:45:37 +03:00
for (jp = jobtab, i = njobs ; --i >= 0 ; jp++) {
if (jp->used && jp->nprocs > 0
&& prefix(name + 1, jp->ps[0].cmd)) {
if (found)
error("%s: ambiguous", name);
found = jp;
}
}
if (found)
return found;
}
} else if (is_number(name)) {
pid = number(name);
for (jp = jobtab, i = njobs ; --i >= 0 ; jp++) {
if (jp->used && jp->nprocs > 0
&& jp->ps[jp->nprocs - 1].pid == pid)
return jp;
}
}
error("No such job: %s", name);
/* NOTREACHED */
1993-03-21 12:45:37 +03:00
}
/*
* Return a new job structure,
*/
struct job *
makejob(node, nprocs)
union node *node;
int nprocs;
{
1993-03-21 12:45:37 +03:00
int i;
struct job *jp;
for (i = njobs, jp = jobtab ; ; jp++) {
if (--i < 0) {
INTOFF;
if (njobs == 0) {
jobtab = ckmalloc(4 * sizeof jobtab[0]);
} else {
jp = ckmalloc((njobs + 4) * sizeof jobtab[0]);
memcpy(jp, jobtab, njobs * sizeof jp[0]);
/* Relocate `ps' pointers */
for (i = 0; i < njobs; i++)
if (jp[i].ps == &jobtab[i].ps0)
jp[i].ps = &jp[i].ps0;
1993-03-21 12:45:37 +03:00
ckfree(jobtab);
jobtab = jp;
}
jp = jobtab + njobs;
for (i = 4 ; --i >= 0 ; jobtab[njobs++].used = 0);
INTON;
break;
}
if (jp->used == 0)
break;
}
INTOFF;
jp->state = 0;
jp->used = 1;
jp->changed = 0;
jp->nprocs = 0;
#if JOBS
jp->jobctl = jobctl;
#endif
if (nprocs > 1) {
jp->ps = ckmalloc(nprocs * sizeof (struct procstat));
} else {
jp->ps = &jp->ps0;
}
INTON;
1994-12-23 16:24:39 +03:00
TRACE(("makejob(0x%lx, %d) returns %%%d\n", (long)node, nprocs,
jp - jobtab + 1));
1993-03-21 12:45:37 +03:00
return jp;
}
1993-03-21 12:45:37 +03:00
/*
2001-06-13 12:48:06 +04:00
* Fork off a subshell. If we are doing job control, give the subshell its
1993-03-21 12:45:37 +03:00
* own process group. Jp is a job structure that the job is to be added to.
* N is the command that will be evaluated by the child. Both jp and n may
* be NULL. The mode parameter can be one of the following:
* FORK_FG - Fork off a foreground process.
* FORK_BG - Fork off a background process.
* FORK_NOJOB - Like FORK_FG, but don't give the process its own
* process group even if job control is on.
*
* When job control is turned off, background processes have their standard
* input redirected to /dev/null (except for the second and later processes
* in a pipeline).
*/
int
forkshell(jp, n, mode)
union node *n;
struct job *jp;
int mode;
{
1993-03-21 12:45:37 +03:00
int pid;
TRACE(("forkshell(%%%d, %p, %d) called\n", jp - jobtab, n, mode));
1993-03-21 12:45:37 +03:00
INTOFF;
switch ((pid = fork())) {
case -1:
TRACE(("Fork failed, errno=%d", errno));
1993-03-21 12:45:37 +03:00
INTON;
error("Cannot fork");
break;
case 0:
forkchild(jp, n, mode, 0);
return 0;
default:
return forkparent(jp, n, mode, pid);
1993-03-21 12:45:37 +03:00
}
}
int
forkparent(jp, n, mode, pid)
union node *n;
struct job *jp;
int mode;
pid_t pid;
{
int pgrp;
1993-03-21 12:45:37 +03:00
1994-05-11 21:09:42 +04:00
if (rootshell && mode != FORK_NOJOB && mflag) {
1993-03-21 12:45:37 +03:00
if (jp == NULL || jp->nprocs == 0)
pgrp = pid;
else
pgrp = jp->ps[0].pid;
#ifdef notdef
if (setpgid(pid, pgrp) == -1)
error("Cannot set process group (%s) at %d",
strerror(errno), __LINE__);
#endif
1993-03-21 12:45:37 +03:00
}
if (mode == FORK_BG)
backgndpid = pid; /* set $! */
if (jp) {
struct procstat *ps = &jp->ps[jp->nprocs++];
ps->pid = pid;
ps->status = -1;
ps->cmd = nullstr;
if (iflag && rootshell && n)
ps->cmd = commandtext(n);
}
INTON;
TRACE(("In parent shell: child = %d\n", pid));
return pid;
}
void
forkchild(jp, n, mode, vforked)
union node *n;
struct job *jp;
int mode;
int vforked;
{
struct job *p;
int wasroot;
int i;
int pgrp;
const char *devnull = _PATH_DEVNULL;
const char *nullerr = "Can't open %s";
TRACE(("Child shell %d\n", getpid()));
wasroot = rootshell;
if (!vforked) {
rootshell = 0;
for (i = njobs, p = jobtab ; --i >= 0 ; p++)
if (p->used)
freejob(p);
}
closescript(vforked);
if (!vforked) {
INTON;
}
clear_traps(vforked);
#if JOBS
if (!vforked)
jobctl = 0; /* do job control only in root shell */
if (wasroot && mode != FORK_NOJOB && mflag) {
if (jp == NULL || jp->nprocs == 0)
pgrp = getpid();
else
pgrp = jp->ps[0].pid;
if (setpgid(0, pgrp) == -1)
error("Cannot set process group (%s) at %d",
strerror(errno), __LINE__);
if (mode == FORK_FG) {
if (tcsetpgrp(ttyfd, pgrp) == -1)
error("Cannot set tty process group (%s) at %d",
strerror(errno), __LINE__);
}
setsignal(SIGTSTP, vforked);
setsignal(SIGTTOU, vforked);
} else if (mode == FORK_BG) {
ignoresig(SIGINT, vforked);
ignoresig(SIGQUIT, vforked);
if ((jp == NULL || jp->nprocs == 0) &&
! fd0_redirected_p ()) {
close(0);
if (open(devnull, O_RDONLY) != 0)
error(nullerr, devnull);
}
}
#else
if (mode == FORK_BG) {
ignoresig(SIGINT, vforked);
ignoresig(SIGQUIT, vforked);
if ((jp == NULL || jp->nprocs == 0) &&
! fd0_redirected_p ()) {
close(0);
if (open(devnull, O_RDONLY) != 0)
error(nullerr, devnull);
}
}
#endif
if (wasroot && iflag) {
setsignal(SIGINT, vforked);
setsignal(SIGQUIT, vforked);
setsignal(SIGTERM, vforked);
}
}
1993-03-21 12:45:37 +03:00
/*
* Wait for job to finish.
*
* Under job control we have the problem that while a child process is
* running interrupts generated by the user are sent to the child but not
* to the shell. This means that an infinite loop started by an inter-
* active user may be hard to kill. With job control turned off, an
* interactive user may place an interactive program inside a loop. If
* the interactive program catches interrupts, the user doesn't want
* these interrupts to also abort the loop. The approach we take here
* is to have the shell ignore interrupt signals while waiting for a
* forground process to terminate, and then send itself an interrupt
* signal if the child process was terminated by an interrupt signal.
* Unfortunately, some programs want to do a bit of cleanup and then
* exit on interrupt; unless these processes terminate themselves by
* sending a signal to themselves (instead of calling exit) they will
* confuse this approach.
*/
int
waitforjob(jp)
1997-01-11 05:04:27 +03:00
struct job *jp;
1993-03-21 12:45:37 +03:00
{
#if JOBS
1994-05-12 20:32:42 +04:00
int mypgrp = getpgrp();
1993-03-21 12:45:37 +03:00
#endif
int status;
int st;
INTOFF;
TRACE(("waitforjob(%%%d) called\n", jp - jobtab + 1));
while (jp->state == 0) {
dowait(1, jp);
}
#if JOBS
if (jp->jobctl) {
if (tcsetpgrp(ttyfd, mypgrp) == -1)
error("Cannot set tty process group (%s) at %d",
strerror(errno), __LINE__);
1993-03-21 12:45:37 +03:00
}
if (jp->state == JOBSTOPPED)
curjob = jp - jobtab + 1;
#endif
status = jp->ps[jp->nprocs - 1].status;
/* convert to 8 bits */
if (WIFEXITED(status))
st = WEXITSTATUS(status);
1993-03-21 12:45:37 +03:00
#if JOBS
else if (WIFSTOPPED(status))
st = WSTOPSIG(status) + 128;
1993-03-21 12:45:37 +03:00
#endif
else
st = WTERMSIG(status) + 128;
#if JOBS
if (jp->jobctl) {
/*
* This is truly gross.
* If we're doing job control, then we did a TIOCSPGRP which
* caused us (the shell) to no longer be in the controlling
* session -- so we wouldn't have seen any ^C/SIGINT. So, we
* intuit from the subprocess exit status whether a SIGINT
2001-09-16 20:34:23 +04:00
* occurred, and if so interrupt ourselves. Yuck. - mycroft
*/
if (WIFSIGNALED(status) && WTERMSIG(status) == SIGINT)
raise(SIGINT);
}
#endif
1993-03-21 12:45:37 +03:00
if (! JOBS || jp->state == JOBDONE)
freejob(jp);
INTON;
return st;
}
/*
* Wait for a process to terminate.
*/
STATIC int
dowait(block, job)
int block;
1993-03-21 12:45:37 +03:00
struct job *job;
{
1993-03-21 12:45:37 +03:00
int pid;
int status;
struct procstat *sp;
struct job *jp;
struct job *thisjob;
int done;
int stopped;
int core;
int sig;
extern volatile char gotsig[];
1993-03-21 12:45:37 +03:00
TRACE(("dowait(%d) called\n", block));
do {
pid = waitproc(block, job, &status);
1993-03-21 12:45:37 +03:00
TRACE(("wait returns %d, status=%d\n", pid, status));
} while (pid == -1 && errno == EINTR && gotsig[SIGINT - 1] == 0);
1993-03-21 12:45:37 +03:00
if (pid <= 0)
return pid;
INTOFF;
thisjob = NULL;
for (jp = jobtab ; jp < jobtab + njobs ; jp++) {
if (jp->used) {
done = 1;
stopped = 1;
for (sp = jp->ps ; sp < jp->ps + jp->nprocs ; sp++) {
if (sp->pid == -1)
continue;
if (sp->pid == pid) {
TRACE(("Changing status of proc %d from 0x%x to 0x%x\n", pid, sp->status, status));
1993-03-21 12:45:37 +03:00
sp->status = status;
thisjob = jp;
}
if (sp->status == -1)
stopped = 0;
else if (WIFSTOPPED(sp->status))
1993-03-21 12:45:37 +03:00
done = 0;
}
if (stopped) { /* stopped or done */
int state = done? JOBDONE : JOBSTOPPED;
if (jp->state != state) {
TRACE(("Job %d: changing state from %d to %d\n", jp - jobtab + 1, jp->state, state));
jp->state = state;
#if JOBS
if (done && curjob == jp - jobtab + 1)
curjob = 0; /* no current job */
#endif
}
}
}
}
if (! rootshell || ! iflag || (job && thisjob == job)) {
core = WCOREDUMP(status);
1993-03-21 12:45:37 +03:00
#if JOBS
if (WIFSTOPPED(status)) sig = WSTOPSIG(status);
else
1993-03-21 12:45:37 +03:00
#endif
if (WIFEXITED(status)) sig = 0;
else sig = WTERMSIG(status);
if (sig != 0 && sig != SIGINT && sig != SIGPIPE) {
1993-03-21 12:45:37 +03:00
if (thisjob != job)
outfmt(out2, "%d: ", pid);
#if JOBS
if (sig == SIGTSTP && rootshell && iflag)
outfmt(out2, "%%%ld ",
(long)(job - jobtab + 1));
1993-03-21 12:45:37 +03:00
#endif
if (sig < NSIG && sys_siglist[sig])
out2str(sys_siglist[sig]);
1993-03-21 12:45:37 +03:00
else
outfmt(out2, "Signal %d", sig);
1993-03-21 12:45:37 +03:00
if (core)
out2str(" - core dumped");
out2c('\n');
flushout(&errout);
} else {
TRACE(("Not printing status: status=%d, sig=%d\n",
status, sig));
1993-03-21 12:45:37 +03:00
}
} else {
TRACE(("Not printing status, rootshell=%d, job=%p\n", rootshell, job));
1993-03-21 12:45:37 +03:00
if (thisjob)
thisjob->changed = 1;
}
INTON;
1993-03-21 12:45:37 +03:00
return pid;
}
/*
* Do a wait system call. If job control is compiled in, we accept
* stopped processes. If block is zero, we return a value of zero
* rather than blocking.
*
* System V doesn't have a non-blocking wait system call. It does
* have a SIGCLD signal that is sent to a process when one of it's
* children dies. The obvious way to use SIGCLD would be to install
* a handler for SIGCLD which simply bumped a counter when a SIGCLD
* was received, and have waitproc bump another counter when it got
* the status of a process. Waitproc would then know that a wait
* system call would not block if the two counters were different.
* This approach doesn't work because if a process has children that
* have not been waited for, System V will send it a SIGCLD when it
* installs a signal handler for SIGCLD. What this means is that when
* a child exits, the shell will be sent SIGCLD signals continuously
* until is runs out of stack space, unless it does a wait call before
* restoring the signal handler. The code below takes advantage of
* this (mis)feature by installing a signal handler for SIGCLD and
* then checking to see whether it was called. If there are any
* children to be waited for, it will be.
*
* If neither SYSV nor BSD is defined, we don't implement nonblocking
* waits at all. In this case, the user will not be informed when
* a background process until the next time she runs a real program
* (as opposed to running a builtin command or just typing return),
* and the jobs command may give out of date information.
*/
#ifdef SYSV
STATIC int gotsigchild;
STATIC int onsigchild() {
gotsigchild = 1;
}
#endif
STATIC int
waitproc(block, jp, status)
int block;
struct job *jp;
1993-03-21 12:45:37 +03:00
int *status;
{
1993-03-21 12:45:37 +03:00
#ifdef BSD
int flags = 0;
1993-03-21 12:45:37 +03:00
#if JOBS
if (jp != NULL && jp->jobctl)
flags |= WUNTRACED;
1993-03-21 12:45:37 +03:00
#endif
if (block == 0)
flags |= WNOHANG;
1994-05-11 21:09:42 +04:00
return wait3(status, flags, (struct rusage *)NULL);
1993-03-21 12:45:37 +03:00
#else
#ifdef SYSV
int (*save)();
if (block == 0) {
gotsigchild = 0;
save = signal(SIGCLD, onsigchild);
signal(SIGCLD, save);
if (gotsigchild == 0)
return 0;
}
return wait(status);
#else
if (block == 0)
return 0;
return wait(status);
#endif
#endif
}
1994-05-11 21:09:42 +04:00
/*
* return 1 if there are stopped jobs, otherwise 0
*/
int job_warning = 0;
int
stoppedjobs()
{
1997-01-11 05:04:27 +03:00
int jobno;
struct job *jp;
1994-05-11 21:09:42 +04:00
if (job_warning)
return (0);
for (jobno = 1, jp = jobtab; jobno <= njobs; jobno++, jp++) {
if (jp->used == 0)
continue;
if (jp->state == JOBSTOPPED) {
out2str("You have stopped jobs.\n");
job_warning = 2;
return (1);
}
}
1993-03-21 12:45:37 +03:00
1994-05-11 21:09:42 +04:00
return (0);
}
1993-03-21 12:45:37 +03:00
/*
* Return a string identifying a command (to be printed by the
* jobs command.
*/
STATIC char *cmdnextc;
STATIC int cmdnleft;
1994-05-11 21:09:42 +04:00
#define MAXCMDTEXT 200
1993-03-21 12:45:37 +03:00
1994-05-11 21:09:42 +04:00
char *
1993-03-21 12:45:37 +03:00
commandtext(n)
union node *n;
{
char *name;
1994-05-11 21:09:42 +04:00
cmdnextc = name = ckmalloc(MAXCMDTEXT);
cmdnleft = MAXCMDTEXT - 4;
1993-03-21 12:45:37 +03:00
cmdtxt(n);
*cmdnextc = '\0';
return name;
}
STATIC void
cmdtxt(n)
union node *n;
{
union node *np;
struct nodelist *lp;
1999-07-09 07:05:49 +04:00
const char *p;
1993-03-21 12:45:37 +03:00
int i;
char s[2];
1994-05-11 21:09:42 +04:00
if (n == NULL)
return;
1993-03-21 12:45:37 +03:00
switch (n->type) {
case NSEMI:
cmdtxt(n->nbinary.ch1);
cmdputs("; ");
cmdtxt(n->nbinary.ch2);
break;
case NAND:
cmdtxt(n->nbinary.ch1);
cmdputs(" && ");
cmdtxt(n->nbinary.ch2);
break;
case NOR:
cmdtxt(n->nbinary.ch1);
cmdputs(" || ");
cmdtxt(n->nbinary.ch2);
break;
case NPIPE:
for (lp = n->npipe.cmdlist ; lp ; lp = lp->next) {
cmdtxt(lp->n);
if (lp->next)
cmdputs(" | ");
}
break;
case NSUBSHELL:
cmdputs("(");
cmdtxt(n->nredir.n);
cmdputs(")");
break;
case NREDIR:
case NBACKGND:
cmdtxt(n->nredir.n);
break;
case NIF:
cmdputs("if ");
cmdtxt(n->nif.test);
cmdputs("; then ");
cmdtxt(n->nif.ifpart);
cmdputs("...");
break;
case NWHILE:
cmdputs("while ");
goto until;
case NUNTIL:
cmdputs("until ");
until:
cmdtxt(n->nbinary.ch1);
cmdputs("; do ");
cmdtxt(n->nbinary.ch2);
cmdputs("; done");
break;
case NFOR:
cmdputs("for ");
cmdputs(n->nfor.var);
cmdputs(" in ...");
break;
case NCASE:
cmdputs("case ");
cmdputs(n->ncase.expr->narg.text);
cmdputs(" in ...");
break;
case NDEFUN:
cmdputs(n->narg.text);
cmdputs("() ...");
break;
case NCMD:
for (np = n->ncmd.args ; np ; np = np->narg.next) {
cmdtxt(np);
if (np->narg.next)
cmdputs(" ");
}
for (np = n->ncmd.redirect ; np ; np = np->nfile.next) {
cmdputs(" ");
cmdtxt(np);
}
break;
case NARG:
cmdputs(n->narg.text);
break;
case NTO:
p = ">"; i = 1; goto redir;
case NCLOBBER:
p = ">|"; i = 1; goto redir;
1993-03-21 12:45:37 +03:00
case NAPPEND:
p = ">>"; i = 1; goto redir;
case NTOFD:
p = ">&"; i = 1; goto redir;
case NFROM:
p = "<"; i = 0; goto redir;
case NFROMFD:
p = "<&"; i = 0; goto redir;
case NFROMTO:
p = "<>"; i = 0; goto redir;
1993-03-21 12:45:37 +03:00
redir:
if (n->nfile.fd != i) {
s[0] = n->nfile.fd + '0';
s[1] = '\0';
cmdputs(s);
}
cmdputs(p);
if (n->type == NTOFD || n->type == NFROMFD) {
s[0] = n->ndup.dupfd + '0';
s[1] = '\0';
cmdputs(s);
} else {
cmdtxt(n->nfile.fname);
}
break;
case NHERE:
case NXHERE:
cmdputs("<<...");
break;
default:
cmdputs("???");
break;
}
}
STATIC void
cmdputs(s)
1999-07-09 07:05:49 +04:00
const char *s;
1993-03-21 12:45:37 +03:00
{
1999-07-09 07:05:49 +04:00
const char *p;
char *q;
1997-01-11 05:04:27 +03:00
char c;
1993-03-21 12:45:37 +03:00
int subtype = 0;
if (cmdnleft <= 0)
return;
p = s;
q = cmdnextc;
while ((c = *p++) != '\0') {
if (c == CTLESC)
*q++ = *p++;
else if (c == CTLVAR) {
*q++ = '$';
if (--cmdnleft > 0)
*q++ = '{';
subtype = *p++;
} else if (c == '=' && subtype != 0) {
*q++ = "}-+?="[(subtype & VSTYPE) - VSNORMAL];
subtype = 0;
} else if (c == CTLENDVAR) {
*q++ = '}';
} else if (c == CTLBACKQ || c == CTLBACKQ+CTLQUOTE)
1993-03-21 12:45:37 +03:00
cmdnleft++; /* ignore it */
else
*q++ = c;
if (--cmdnleft <= 0) {
*q++ = '.';
*q++ = '.';
*q++ = '.';
break;
}
}
cmdnextc = q;
}