#include "sh.h"
RCSID("$tcsh: sh.proc.c,v 3.104 2006/09/27 16:59:04 mitr Exp $")
#include "ed.h"
#include "tc.h"
#include "tc.wait.h"
#ifdef WINNT_NATIVE
#undef POSIX
#define POSIX
#endif
#ifdef aiws
# undef HZ
# define HZ 16
#endif
#if defined(_BSD) || (defined(IRIS4D) && __STDC__) || defined(__lucid) || defined(linux) || defined(__GNU__) || defined(__GLIBC__)
# define BSDWAIT
#endif
#ifndef WTERMSIG
# define WTERMSIG(w) (((union wait *) &(w))->w_termsig)
# ifndef BSDWAIT
# define BSDWAIT
# endif
#endif
#ifndef WEXITSTATUS
# define WEXITSTATUS(w) (((union wait *) &(w))->w_retcode)
#endif
#ifndef WSTOPSIG
# define WSTOPSIG(w) (((union wait *) &(w))->w_stopsig)
#endif
#ifdef __osf__
# ifndef WCOREDUMP
# define WCOREDUMP(x) (_W_INT(x) & WCOREFLAG)
# endif
#endif
#ifndef WCOREDUMP
# ifdef BSDWAIT
# define WCOREDUMP(w) (((union wait *) &(w))->w_coredump)
# else
# define WCOREDUMP(w) ((w) & 0200)
# endif
#endif
#ifndef JOBDEBUG
# define jobdebug_xprintf(x) (void)0
# define jobdebug_flush() (void)0
#else
# define jobdebug_xprintf(s) xprintf s
# define jobdebug_flush() flush()
#endif
#define BIGINDEX 9
#ifdef BSDTIMES
# ifdef convex
static struct cvxrusage zru = {{0L, 0L}, {0L, 0L}, 0L, 0L, 0L, 0L,
0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L,
{0L, 0L}, 0LL, 0LL, 0LL, 0LL, 0L, 0L, 0L,
0LL, 0LL, {0L, 0L, 0L, 0L, 0L}};
# else
static struct rusage zru;
# endif
#else
# ifdef _SEQUENT_
static struct process_stats zru = {{0L, 0L}, {0L, 0L}, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
# else
# ifdef _SX
static struct tms zru = {0, 0, 0, 0}, lru = {0, 0, 0, 0};
# else
static struct tms zru = {0L, 0L, 0L, 0L}, lru = {0L, 0L, 0L, 0L};
# endif
# endif
#endif
#ifndef BSDTIMES
static int timesdone;
#endif
#ifndef RUSAGE_CHILDREN
# define RUSAGE_CHILDREN -1
#endif
static void pflushall (void);
static void pflush (struct process *);
static void pfree (struct process *);
static void pclrcurr (struct process *);
static void padd (struct command *);
static int pprint (struct process *, int);
static void ptprint (struct process *);
static void pads (Char *);
static void pkill (Char **, int);
static struct process *pgetcurr (struct process *);
static void okpcntl (void);
static void setttypgrp (int);
void
pchild(void)
{
struct process *pp;
struct process *fp;
pid_t pid;
#ifdef BSDWAIT
union wait w;
#else
int w;
#endif
int jobflags;
#ifdef BSDTIMES
struct sysrusage ru;
#else
# ifdef _SEQUENT_
struct process_stats ru;
struct process_stats cpst1, cpst2;
timeval_t tv;
# else
struct tms proctimes;
if (!timesdone) {
timesdone++;
(void) times(&shtimes);
}
# endif
#endif
jobdebug_xprintf(("pchild()\n"));
loop:
jobdebug_xprintf(("Waiting...\n"));
jobdebug_flush();
errno = 0;
#ifndef WINNT_NATIVE
# ifdef BSDJOBS
# ifdef BSDTIMES
# ifdef convex
pid = cvxwait(&w,
(setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru);
# else
# if !defined(BSDWAIT) || defined(NeXT) || defined(MACH) || defined(linux) || defined(__GNU__) || defined(__GLIBC__) || (defined(IRIS4D) && SYSVREL <= 3) || defined(__lucid) || defined(__osf__)
pid = wait3(&w,
(setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru);
# else
pid = wait3(&w.w_status,
(setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru);
# endif
# endif
# else
# ifdef _SEQUENT_
(void) get_process_stats(&tv, PS_SELF, 0, &cpst1);
pid = waitpid(-1, &w,
(setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG));
(void) get_process_stats(&tv, PS_SELF, 0, &cpst2);
pr_stat_sub(&cpst2, &cpst1, &ru);
# else
# ifndef POSIX
pid = wait3(&w.w_status,
(setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), 0);
# else
pid = waitpid(-1, &w,
(setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG));
# endif
# endif
# endif
# else
# ifdef BSDTIMES
# define HAVEwait3
# ifdef hpux
pid = wait3(&w.w_status, WNOHANG, 0);
# else
pid = wait3(&w.w_status, WNOHANG, &ru);
# endif
# else
# ifdef ODT
# define HAVEwait3
pid = waitpid(-1, &w,
(setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG));
# endif
# if defined(aiws) || defined(uts)
# define HAVEwait3
pid = wait3(&w.w_status,
(setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), 0);
# endif
# ifndef HAVEwait3
# ifndef BSDWAIT
pid = wait(&w);
# else
pid = wait(&w.w_status);
# endif
# endif
# endif
# endif
#else
pid = waitpid(-1, &w,
(setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG));
#endif
jobdebug_xprintf(("parent %d pid %d, retval %x termsig %x retcode %x\n",
(int)getpid(), (int)pid, w, WTERMSIG(w),
WEXITSTATUS(w)));
jobdebug_flush();
if ((pid == 0) || (pid == -1)) {
handle_pending_signals();
jobdebug_xprintf(("errno == %d\n", errno));
if (errno == EINTR)
goto loop;
goto end;
}
for (pp = proclist.p_next; pp != NULL; pp = pp->p_next)
if (pid == pp->p_procid)
goto found;
#if !defined(BSDJOBS) && !defined(WINNT_NATIVE)
stderror(ERR_SYNC, pid);
xexit(0);
#else
goto loop;
#endif
found:
pp->p_flags &= ~(PRUNNING | PSTOPPED | PREPORTED);
if (WIFSTOPPED(w)) {
pp->p_flags |= PSTOPPED;
pp->p_reason = WSTOPSIG(w);
}
else {
if (pp->p_flags & (PTIME | PPTIME) || adrof(STRtime))
#ifndef BSDTIMES
# ifdef _SEQUENT_
(void) get_process_stats(&pp->p_etime, PS_SELF, NULL, NULL);
# else
pp->p_etime = times(&proctimes);
# endif
#else
(void) gettimeofday(&pp->p_etime, NULL);
#endif
#if defined(BSDTIMES) || defined(_SEQUENT_)
pp->p_rusage = ru;
#else
(void) times(&proctimes);
pp->p_utime = proctimes.tms_cutime - shtimes.tms_cutime;
pp->p_stime = proctimes.tms_cstime - shtimes.tms_cstime;
shtimes = proctimes;
#endif
if (WIFSIGNALED(w)) {
if (WTERMSIG(w) == SIGINT)
pp->p_flags |= PINTERRUPTED;
else
pp->p_flags |= PSIGNALED;
if (WCOREDUMP(w))
pp->p_flags |= PDUMPED;
pp->p_reason = WTERMSIG(w);
}
else {
pp->p_reason = WEXITSTATUS(w);
if (pp->p_reason != 0)
pp->p_flags |= PAEXITED;
else
pp->p_flags |= PNEXITED;
}
}
jobflags = 0;
fp = pp;
do {
if ((fp->p_flags & (PPTIME | PRUNNING | PSTOPPED)) == 0 &&
!child && adrof(STRtime) &&
#ifdef BSDTIMES
fp->p_rusage.ru_utime.tv_sec + fp->p_rusage.ru_stime.tv_sec
#else
# ifdef _SEQUENT_
fp->p_rusage.ps_utime.tv_sec + fp->p_rusage.ps_stime.tv_sec
# else
# ifndef POSIX
(fp->p_utime + fp->p_stime) / HZ
# else
(fp->p_utime + fp->p_stime) / clk_tck
# endif
# endif
#endif
>= atoi(short2str(varval(STRtime))))
fp->p_flags |= PTIME;
jobflags |= fp->p_flags;
} while ((fp = fp->p_friends) != pp);
pp->p_flags &= ~PFOREGND;
if (pp == pp->p_friends && (pp->p_flags & PPTIME)) {
pp->p_flags &= ~PPTIME;
pp->p_flags |= PTIME;
}
if ((jobflags & (PRUNNING | PREPORTED)) == 0) {
fp = pp;
do {
if (fp->p_flags & PSTOPPED)
fp->p_flags |= PREPORTED;
} while ((fp = fp->p_friends) != pp);
while (fp->p_procid != fp->p_jobid)
fp = fp->p_friends;
if (jobflags & PSTOPPED) {
if (pcurrent && pcurrent != fp)
pprevious = pcurrent;
pcurrent = fp;
}
else
pclrcurr(fp);
if (jobflags & PFOREGND) {
if (!(jobflags & (PSIGNALED | PSTOPPED | PPTIME) ||
#ifdef notdef
jobflags & PAEXITED ||
#endif
!eq(dcwd->di_name, fp->p_cwd->di_name))) {
if (jobflags & PINTERRUPTED) {
xputchar('\r' | QUOTE);
xputchar('\n');
}
#ifdef notdef
else if ((jobflags & (PTIME|PSTOPPED)) == PTIME)
ptprint(fp);
#endif
}
}
else {
if (jobflags & PNOTIFY || adrof(STRnotify)) {
xputchar('\r' | QUOTE);
xputchar('\n');
(void) pprint(pp, NUMBER | NAME | REASON);
if ((jobflags & PSTOPPED) == 0)
pflush(pp);
if (GettingInput) {
errno = 0;
(void) Rawmode();
#ifdef notdef
ClearLines();
#endif
ClearDisp();
Refresh();
}
}
else {
fp->p_flags |= PNEEDNOTE;
neednote = 1;
}
}
}
#if defined(BSDJOBS) || defined(HAVEwait3) ||defined(WINNT_NATIVE)
goto loop;
#endif
end:
;
}
void
pnote(void)
{
struct process *pp;
int flags;
neednote = 0;
for (pp = proclist.p_next; pp != NULL; pp = pp->p_next) {
if (pp->p_flags & PNEEDNOTE) {
pchild_disabled++;
cleanup_push(&pchild_disabled, disabled_cleanup);
pp->p_flags &= ~PNEEDNOTE;
flags = pprint(pp, NUMBER | NAME | REASON);
if ((flags & (PRUNNING | PSTOPPED)) == 0)
pflush(pp);
cleanup_until(&pchild_disabled);
}
}
}
static void
pfree(struct process *pp)
{
xfree(pp->p_command);
if (pp->p_cwd && --pp->p_cwd->di_count == 0)
if (pp->p_cwd->di_next == 0)
dfree(pp->p_cwd);
xfree(pp);
}
void
pwait(void)
{
struct process *fp, *pp;
for (pp = (fp = &proclist)->p_next; pp != NULL; pp = (fp = pp)->p_next)
if (pp->p_procid == 0) {
fp->p_next = pp->p_next;
pfree(pp);
pp = fp;
}
pjwait(pcurrjob);
}
void
pjwait(struct process *pp)
{
struct process *fp;
int jobflags, reason;
sigset_t oset, set, pause_mask;
Char *reason_str;
while (pp->p_procid != pp->p_jobid)
pp = pp->p_friends;
fp = pp;
do {
if ((fp->p_flags & (PFOREGND | PRUNNING)) == PRUNNING)
xprintf(CGETS(17, 1, "BUG: waiting for background job!\n"));
} while ((fp = fp->p_friends) != pp);
fp = pp;
sigemptyset(&set);
sigaddset(&set, SIGINT);
sigaddset(&set, SIGCHLD);
(void)sigprocmask(SIG_BLOCK, &set, &oset);
cleanup_push(&oset, sigprocmask_cleanup);
pause_mask = oset;
sigdelset(&pause_mask, SIGCHLD);
for (;;) {
handle_pending_signals();
jobflags = 0;
do
jobflags |= fp->p_flags;
while ((fp = (fp->p_friends)) != pp);
if ((jobflags & PRUNNING) == 0)
break;
jobdebug_xprintf(("%d starting to sigsuspend for SIGCHLD on %d\n",
getpid(), fp->p_procid));
sigsuspend(&pause_mask);
}
cleanup_until(&oset);
jobdebug_xprintf(("%d returned from sigsuspend loop\n", getpid()));
#ifdef BSDJOBS
if (tpgrp > 0) {
signal(SIGTTOU, SIG_IGN);
(void) tcsetpgrp(FSHTTY, tpgrp);
}
#endif
if ((jobflags & (PSIGNALED | PSTOPPED | PTIME)) ||
!eq(dcwd->di_name, fp->p_cwd->di_name)) {
if (jobflags & PSTOPPED) {
xputchar('\n');
if (adrof(STRlistjobs)) {
Char *jobcommand[3];
jobcommand[0] = STRjobs;
if (eq(varval(STRlistjobs), STRlong))
jobcommand[1] = STRml;
else
jobcommand[1] = NULL;
jobcommand[2] = NULL;
dojobs(jobcommand, NULL);
(void) pprint(pp, SHELLDIR);
}
else
(void) pprint(pp, AREASON | SHELLDIR);
}
else
(void) pprint(pp, AREASON | SHELLDIR);
}
if ((jobflags & (PINTERRUPTED | PSTOPPED)) && setintr &&
(!gointr || !eq(gointr, STRminus))) {
if ((jobflags & PSTOPPED) == 0)
pflush(pp);
pintr1(0);
}
reason = 0;
fp = pp;
do {
if (fp->p_reason)
reason = fp->p_flags & (PSIGNALED | PINTERRUPTED) ?
fp->p_reason | META : fp->p_reason;
} while ((fp = fp->p_friends) != pp);
if ((reason != 0) && (adrof(STRprintexitvalue)) &&
(pp->p_flags & PBACKQ) == 0)
xprintf(CGETS(17, 2, "Exit %d\n"), reason);
reason_str = putn(reason);
cleanup_push(reason_str, xfree);
setv(STRstatus, reason_str, VAR_READWRITE);
cleanup_ignore(reason_str);
cleanup_until(reason_str);
if (reason && exiterr)
exitstat();
pflush(pp);
}
void
dowait(Char **v, struct command *c)
{
struct process *pp;
sigset_t pause_mask;
USE(c);
USE(v);
pjobs++;
sigprocmask(SIG_BLOCK, NULL, &pause_mask);
sigdelset(&pause_mask, SIGCHLD);
if (setintr)
sigdelset(&pause_mask, SIGINT);
loop:
for (pp = proclist.p_next; pp; pp = pp->p_next)
if (pp->p_procid &&
pp->p_flags & PRUNNING) {
handle_pending_signals();
sigsuspend(&pause_mask);
handle_pending_signals();
goto loop;
}
pjobs = 0;
}
static void
pflushall(void)
{
struct process *pp;
for (pp = proclist.p_next; pp != NULL; pp = pp->p_next)
if (pp->p_procid)
pflush(pp);
}
static void
pflush(struct process *pp)
{
struct process *np;
int idx;
if (pp->p_procid == 0) {
xprintf(CGETS(17, 3, "BUG: process flushed twice"));
return;
}
while (pp->p_procid != pp->p_jobid)
pp = pp->p_friends;
pclrcurr(pp);
if (pp == pcurrjob)
pcurrjob = 0;
idx = pp->p_index;
np = pp;
do {
np->p_index = np->p_procid = 0;
np->p_flags &= ~PNEEDNOTE;
} while ((np = np->p_friends) != pp);
if (idx == pmaxindex) {
for (np = proclist.p_next, idx = 0; np; np = np->p_next)
if (np->p_index > idx)
idx = np->p_index;
pmaxindex = idx;
}
}
static void
pclrcurr(struct process *pp)
{
if (pp == pcurrent) {
if (pprevious != NULL) {
pcurrent = pprevious;
pprevious = pgetcurr(pp);
}
else {
pcurrent = pgetcurr(pp);
pprevious = pgetcurr(pp);
}
}
else if (pp == pprevious)
pprevious = pgetcurr(pp);
}
static Char command[PMAXLEN + 4];
static size_t cmdlen;
static Char *cmdp;
Char *
unparse(struct command *t)
{
cmdp = command;
cmdlen = 0;
padd(t);
*cmdp++ = '\0';
return Strsave(command);
}
void
palloc(pid_t pid, struct command *t)
{
struct process *pp;
int i;
pp = xcalloc(1, sizeof(struct process));
pp->p_procid = pid;
pp->p_flags = ((t->t_dflg & F_AMPERSAND) ? 0 : PFOREGND) | PRUNNING;
if (t->t_dflg & F_TIME)
pp->p_flags |= PPTIME;
if (t->t_dflg & F_BACKQ)
pp->p_flags |= PBACKQ;
if (t->t_dflg & F_HUP)
pp->p_flags |= PHUP;
cmdp = command;
cmdlen = 0;
padd(t);
*cmdp++ = 0;
if (t->t_dflg & F_PIPEOUT) {
pp->p_flags |= PPOU;
if (t->t_dflg & F_STDERR)
pp->p_flags |= PDIAG;
}
pp->p_command = Strsave(command);
if (pcurrjob) {
struct process *fp;
pp->p_cwd = 0;
pp->p_index = pcurrjob->p_index;
pp->p_friends = pcurrjob;
pp->p_jobid = pcurrjob->p_procid;
for (fp = pcurrjob; fp->p_friends != pcurrjob; fp = fp->p_friends)
continue;
fp->p_friends = pp;
}
else {
pcurrjob = pp;
pp->p_jobid = pid;
pp->p_friends = pp;
pp->p_cwd = dcwd;
dcwd->di_count++;
if (pmaxindex < BIGINDEX)
pp->p_index = ++pmaxindex;
else {
struct process *np;
for (i = 1;; i++) {
for (np = proclist.p_next; np; np = np->p_next)
if (np->p_index == i)
goto tryagain;
pp->p_index = i;
if (i > pmaxindex)
pmaxindex = i;
break;
tryagain:;
}
}
if (pcurrent == NULL)
pcurrent = pp;
else if (pprevious == NULL)
pprevious = pp;
}
pp->p_next = proclist.p_next;
proclist.p_next = pp;
#ifdef BSDTIMES
(void) gettimeofday(&pp->p_btime, NULL);
#else
# ifdef _SEQUENT_
(void) get_process_stats(&pp->p_btime, PS_SELF, NULL, NULL);
# else
{
struct tms tmptimes;
pp->p_btime = times(&tmptimes);
}
# endif
#endif
}
static void
padd(struct command *t)
{
Char **argp;
if (t == 0)
return;
switch (t->t_dtyp) {
case NODE_PAREN:
pads(STRLparensp);
padd(t->t_dspr);
pads(STRspRparen);
break;
case NODE_COMMAND:
for (argp = t->t_dcom; *argp; argp++) {
pads(*argp);
if (argp[1])
pads(STRspace);
}
break;
case NODE_OR:
case NODE_AND:
case NODE_PIPE:
case NODE_LIST:
padd(t->t_dcar);
switch (t->t_dtyp) {
case NODE_OR:
pads(STRspor2sp);
break;
case NODE_AND:
pads(STRspand2sp);
break;
case NODE_PIPE:
pads(STRsporsp);
break;
case NODE_LIST:
pads(STRsemisp);
break;
default:
break;
}
padd(t->t_dcdr);
return;
default:
break;
}
if ((t->t_dflg & F_PIPEIN) == 0 && t->t_dlef) {
pads((t->t_dflg & F_READ) ? STRspLarrow2sp : STRspLarrowsp);
pads(t->t_dlef);
}
if ((t->t_dflg & F_PIPEOUT) == 0 && t->t_drit) {
pads((t->t_dflg & F_APPEND) ? STRspRarrow2 : STRspRarrow);
if (t->t_dflg & F_STDERR)
pads(STRand);
pads(STRspace);
pads(t->t_drit);
}
}
static void
pads(Char *cp)
{
size_t i;
if (cp[0] == STRQNULL[0])
cp++;
i = Strlen(cp);
if (cmdlen >= PMAXLEN)
return;
if (cmdlen + i >= PMAXLEN) {
(void) Strcpy(cmdp, STRsp3dots);
cmdlen = PMAXLEN;
cmdp += 4;
return;
}
(void) Strcpy(cmdp, cp);
cmdp += i;
cmdlen += i;
}
void
psavejob(void)
{
pholdjob = pcurrjob;
pcurrjob = NULL;
}
void
psavejob_cleanup(void *dummy)
{
USE(dummy);
pcurrjob = pholdjob;
pholdjob = NULL;
}
void
pendjob(void)
{
struct process *pp, *tp;
if (pcurrjob && (pcurrjob->p_flags & (PFOREGND | PSTOPPED)) == 0) {
pp = pcurrjob;
while (pp->p_procid != pp->p_jobid)
pp = pp->p_friends;
xprintf("[%d]", pp->p_index);
tp = pp;
do {
xprintf(" %d", pp->p_procid);
pp = pp->p_friends;
} while (pp != tp);
xputchar('\n');
}
pholdjob = pcurrjob = 0;
}
static int
pprint(struct process *pp, int flag)
{
int status, reason;
struct process *tp;
int jobflags, pstatus, pcond;
const char *format;
#ifdef BACKPIPE
struct process *pipehead = NULL, *pipetail = NULL, *pmarker = NULL;
int inpipe = 0;
#endif
while (pp->p_procid != pp->p_jobid)
pp = pp->p_friends;
if (pp == pp->p_friends && (pp->p_flags & PPTIME)) {
pp->p_flags &= ~PPTIME;
pp->p_flags |= PTIME;
}
tp = pp;
status = reason = -1;
jobflags = 0;
do {
#ifdef BACKPIPE
if ((pp->p_friends->p_flags & PPOU) && !inpipe && (flag & NAME)) {
inpipe = 1;
pipetail = pp;
do
pp = pp->p_friends;
while (pp->p_friends->p_flags & PPOU);
pipehead = pp;
pmarker = pp;
}
pcond = (tp != pp || (inpipe && tp == pp));
#else
pcond = (tp != pp);
#endif
jobflags |= pp->p_flags;
pstatus = (int) (pp->p_flags & PALLSTATES);
if (pcond && linp != linbuf && !(flag & FANCY) &&
((pstatus == status && pp->p_reason == reason) ||
!(flag & REASON)))
xputchar(' ');
else {
if (pcond && linp != linbuf)
xputchar('\n');
if (flag & NUMBER) {
#ifdef BACKPIPE
pcond = ((pp == tp && !inpipe) ||
(inpipe && pipetail == tp && pp == pipehead));
#else
pcond = (pp == tp);
#endif
if (pcond)
xprintf("[%d]%s %c ", pp->p_index,
pp->p_index < 10 ? " " : "",
pp == pcurrent ? '+' :
(pp == pprevious ? '-' : ' '));
else
xprintf(" ");
}
if (flag & FANCY) {
xprintf("%5d ", pp->p_procid);
#ifdef TCF
xprintf("%11s ", sitename(pp->p_procid));
#endif
}
if (flag & (REASON | AREASON)) {
if (flag & NAME)
format = "%-30s";
else
format = "%s";
if (pstatus == status) {
if (pp->p_reason == reason) {
xprintf(format, "");
goto prcomd;
}
else
reason = (int) pp->p_reason;
}
else {
status = pstatus;
reason = (int) pp->p_reason;
}
switch (status) {
case PRUNNING:
xprintf(format, CGETS(17, 4, "Running "));
break;
case PINTERRUPTED:
case PSTOPPED:
case PSIGNALED:
if ((flag & REASON)
|| ((flag & AREASON)
&& reason != SIGINT
&& (reason != SIGPIPE
|| (pp->p_flags & PPOU) == 0))) {
char *ptr;
int free_ptr;
free_ptr = 0;
ptr = (char *)(intptr_t)mesg[pp->p_reason & 0177].pname;
if (ptr == NULL) {
ptr = xasprintf("%s %d", CGETS(17, 5, "Signal"),
pp->p_reason & 0177);
cleanup_push(ptr, xfree);
free_ptr = 1;
}
xprintf(format, ptr);
if (free_ptr != 0)
cleanup_until(ptr);
}
else
reason = -1;
break;
case PNEXITED:
case PAEXITED:
if (flag & REASON) {
if (pp->p_reason)
xprintf(CGETS(17, 6, "Exit %-25d"), pp->p_reason);
else
xprintf(format, CGETS(17, 7, "Done"));
}
break;
default:
xprintf(CGETS(17, 8, "BUG: status=%-9o"),
status);
}
}
}
prcomd:
if (flag & NAME) {
xprintf("%S", pp->p_command);
if (pp->p_flags & PPOU)
xprintf(" |");
if (pp->p_flags & PDIAG)
xprintf("&");
}
if (flag & (REASON | AREASON) && pp->p_flags & PDUMPED)
xprintf(CGETS(17, 9, " (core dumped)"));
if (tp == pp->p_friends) {
if (flag & AMPERSAND)
xprintf(" &");
if (flag & JOBDIR &&
!eq(tp->p_cwd->di_name, dcwd->di_name)) {
xprintf(CGETS(17, 10, " (wd: "));
dtildepr(tp->p_cwd->di_name);
xprintf(")");
}
}
if (pp->p_flags & PPTIME && !(status & (PSTOPPED | PRUNNING))) {
if (linp != linbuf)
xprintf("\n\t");
#if defined(BSDTIMES) || defined(_SEQUENT_)
prusage(&zru, &pp->p_rusage, &pp->p_etime,
&pp->p_btime);
#else
lru.tms_utime = pp->p_utime;
lru.tms_stime = pp->p_stime;
lru.tms_cutime = 0;
lru.tms_cstime = 0;
prusage(&zru, &lru, pp->p_etime,
pp->p_btime);
#endif
}
#ifdef BACKPIPE
pcond = ((tp == pp->p_friends && !inpipe) ||
(inpipe && pipehead->p_friends == tp && pp == pipetail));
#else
pcond = (tp == pp->p_friends);
#endif
if (pcond) {
if (linp != linbuf)
xputchar('\n');
if (flag & SHELLDIR && !eq(tp->p_cwd->di_name, dcwd->di_name)) {
xprintf(CGETS(17, 11, "(wd now: "));
dtildepr(dcwd->di_name);
xprintf(")\n");
}
}
#ifdef BACKPIPE
if (inpipe) {
if (pmarker == pipetail) {
inpipe = 0;
pp = pipehead;
}
else {
do
pp = pp->p_friends;
while (pp->p_friends->p_friends != pmarker);
pmarker = pp->p_friends;
}
}
pcond = ((pp = pp->p_friends) != tp || inpipe);
#else
pcond = ((pp = pp->p_friends) != tp);
#endif
} while (pcond);
if (jobflags & PTIME && (jobflags & (PSTOPPED | PRUNNING)) == 0) {
if (jobflags & NUMBER)
xprintf(" ");
ptprint(tp);
}
return (jobflags);
}
# undef timercmp
# define timercmp(tvp, uvp, cmp) \
(((tvp)->tv_sec == (uvp)->tv_sec) ? \
((tvp)->tv_usec cmp (uvp)->tv_usec) : \
((tvp)->tv_sec cmp (uvp)->tv_sec))
static void
ptprint(struct process *tp)
{
#ifdef BSDTIMES
struct timeval tetime, diff;
static struct timeval ztime;
struct sysrusage ru;
struct process *pp = tp;
ru = zru;
tetime = ztime;
do {
ruadd(&ru, &pp->p_rusage);
tvsub(&diff, &pp->p_etime, &pp->p_btime);
if (timercmp(&diff, &tetime, >))
tetime = diff;
} while ((pp = pp->p_friends) != tp);
prusage(&zru, &ru, &tetime, &ztime);
#else
# ifdef _SEQUENT_
timeval_t tetime, diff;
static timeval_t ztime;
struct process_stats ru;
struct process *pp = tp;
ru = zru;
tetime = ztime;
do {
ruadd(&ru, &pp->p_rusage);
tvsub(&diff, &pp->p_etime, &pp->p_btime);
if (timercmp(&diff, &tetime, >))
tetime = diff;
} while ((pp = pp->p_friends) != tp);
prusage(&zru, &ru, &tetime, &ztime);
# else
# ifndef POSIX
static time_t ztime = 0;
static time_t zu_time = 0;
static time_t zs_time = 0;
time_t tetime, diff;
time_t u_time, s_time;
# else
static clock_t ztime = 0;
static clock_t zu_time = 0;
static clock_t zs_time = 0;
clock_t tetime, diff;
clock_t u_time, s_time;
# endif
struct tms zts, rts;
struct process *pp = tp;
u_time = zu_time;
s_time = zs_time;
tetime = ztime;
do {
u_time += pp->p_utime;
s_time += pp->p_stime;
diff = pp->p_etime - pp->p_btime;
if (diff > tetime)
tetime = diff;
} while ((pp = pp->p_friends) != tp);
zts.tms_utime = zu_time;
zts.tms_stime = zs_time;
zts.tms_cutime = 0;
zts.tms_cstime = 0;
rts.tms_utime = u_time;
rts.tms_stime = s_time;
rts.tms_cutime = 0;
rts.tms_cstime = 0;
prusage(&zts, &rts, tetime, ztime);
# endif
#endif
}
void
dojobs(Char **v, struct command *c)
{
struct process *pp;
int flag = NUMBER | NAME | REASON;
int i;
USE(c);
if (chkstop)
chkstop = 2;
if (*++v) {
if (v[1] || !eq(*v, STRml))
stderror(ERR_JOBS);
flag |= FANCY | JOBDIR;
}
for (i = 1; i <= pmaxindex; i++)
for (pp = proclist.p_next; pp; pp = pp->p_next)
if (pp->p_index == i && pp->p_procid == pp->p_jobid) {
pp->p_flags &= ~PNEEDNOTE;
if (!(pprint(pp, flag) & (PRUNNING | PSTOPPED)))
pflush(pp);
break;
}
}
void
dofg(Char **v, struct command *c)
{
struct process *pp;
USE(c);
okpcntl();
++v;
do {
pp = pfind(*v);
if (!pstart(pp, 1)) {
pp->p_procid = 0;
stderror(ERR_NAME|ERR_BADJOB, pp->p_command, strerror(errno));
continue;
}
pjwait(pp);
} while (*v && *++v);
}
void
dofg1(Char **v, struct command *c)
{
struct process *pp;
USE(c);
okpcntl();
pp = pfind(v[0]);
if (!pstart(pp, 1)) {
pp->p_procid = 0;
stderror(ERR_NAME|ERR_BADJOB, pp->p_command, strerror(errno));
return;
}
pjwait(pp);
}
void
dobg(Char **v, struct command *c)
{
struct process *pp;
USE(c);
okpcntl();
++v;
do {
pp = pfind(*v);
if (!pstart(pp, 0)) {
pp->p_procid = 0;
stderror(ERR_NAME|ERR_BADJOB, pp->p_command, strerror(errno));
}
} while (*v && *++v);
}
void
dobg1(Char **v, struct command *c)
{
struct process *pp;
USE(c);
pp = pfind(v[0]);
if (!pstart(pp, 0)) {
pp->p_procid = 0;
stderror(ERR_NAME|ERR_BADJOB, pp->p_command, strerror(errno));
}
}
void
dostop(Char **v, struct command *c)
{
USE(c);
#ifdef BSDJOBS
pkill(++v, SIGSTOP);
#endif
}
void
dokill(Char **v, struct command *c)
{
int signum, len = 0;
const char *name;
Char *sigptr;
USE(c);
v++;
if (v[0] && v[0][0] == '-') {
if (v[0][1] == 'l') {
for (signum = 0; signum <= nsig; signum++) {
if ((name = mesg[signum].iname) != NULL) {
len += strlen(name) + 1;
if (len >= TermH - 1) {
xputchar('\n');
len = strlen(name) + 1;
}
xprintf("%s ", name);
}
}
xputchar('\n');
return;
}
sigptr = &v[0][1];
if (v[0][1] == 's') {
if (v[1]) {
v++;
sigptr = &v[0][0];
} else {
stderror(ERR_NAME | ERR_TOOFEW);
}
}
if (Isdigit(*sigptr)) {
char *ep;
signum = strtoul(short2str(sigptr), &ep, 0);
if (*ep || signum < 0 || signum > (MAXSIG-1))
stderror(ERR_NAME | ERR_BADSIG);
}
else {
for (signum = 0; signum <= nsig; signum++)
if (mesg[signum].iname &&
eq(sigptr, str2short(mesg[signum].iname)))
goto gotsig;
setname(short2str(sigptr));
stderror(ERR_NAME | ERR_UNKSIG);
}
gotsig:
v++;
}
else
signum = SIGTERM;
pkill(v, signum);
}
static void
pkill(Char **v, int signum)
{
struct process *pp, *np;
int jobflags = 0, err1 = 0;
pid_t pid;
Char *cp, **vp, **globbed;
pchild_disabled++;
cleanup_push(&pchild_disabled, disabled_cleanup);
if (setintr) {
pintr_disabled++;
cleanup_push(&pintr_disabled, disabled_cleanup);
}
for (vp = v; vp && *vp; vp++)
if (**vp == '%')
(void) quote(*vp);
v = glob_all_or_error(v);
globbed = v;
cleanup_push(globbed, blk_cleanup);
while (v && (cp = *v)) {
if (*cp == '%') {
np = pp = pfind(cp);
do
jobflags |= np->p_flags;
while ((np = np->p_friends) != pp);
#ifdef BSDJOBS
switch (signum) {
case SIGSTOP:
case SIGTSTP:
case SIGTTIN:
case SIGTTOU:
if ((jobflags & PRUNNING) == 0) {
# ifdef SUSPENDED
xprintf(CGETS(17, 12, "%S: Already suspended\n"), cp);
# else
xprintf(CGETS(17, 13, "%S: Already stopped\n"), cp);
# endif
err1++;
goto cont;
}
break;
case SIGCONT:
if (!pstart(pp, 0)) {
pp->p_procid = 0;
stderror(ERR_NAME|ERR_BADJOB, pp->p_command,
strerror(errno));
}
goto cont;
default:
break;
}
#endif
if (killpg(pp->p_jobid, signum) < 0) {
xprintf("%S: %s\n", cp, strerror(errno));
err1++;
}
#ifdef BSDJOBS
if (signum == SIGTERM || signum == SIGHUP)
(void) killpg(pp->p_jobid, SIGCONT);
#endif
}
else if (!(Isdigit(*cp) || *cp == '-'))
stderror(ERR_NAME | ERR_JOBARGS);
else {
char *ep;
#ifndef WINNT_NATIVE
pid = strtol(short2str(cp), &ep, 10);
#else
pid = strtoul(short2str(cp), &ep, 0);
#endif
if (*ep)
stderror(ERR_NAME | ERR_JOBARGS);
else if (kill(pid, signum) < 0) {
xprintf("%d: %s\n", pid, strerror(errno));
err1++;
goto cont;
}
#ifdef BSDJOBS
if (signum == SIGTERM || signum == SIGHUP)
(void) kill(pid, SIGCONT);
#endif
}
cont:
v++;
}
cleanup_until(&pchild_disabled);
if (err1)
stderror(ERR_SILENT);
}
int
pstart(struct process *pp, int foregnd)
{
int rv = 0;
struct process *np;
pchild_disabled++;
cleanup_push(&pchild_disabled, disabled_cleanup);
np = pp;
do {
if (np->p_flags & (PRUNNING | PSTOPPED)) {
np->p_flags |= PRUNNING;
np->p_flags &= ~PSTOPPED;
if (foregnd)
np->p_flags |= PFOREGND;
else
np->p_flags &= ~PFOREGND;
}
} while ((np = np->p_friends) != pp);
if (!foregnd)
pclrcurr(pp);
(void) pprint(pp, foregnd ? NAME | JOBDIR : NUMBER | NAME | AMPERSAND);
if (foregnd) {
job_cmd(pp->p_command);
}
#ifdef BSDJOBS
if (foregnd) {
rv = tcsetpgrp(FSHTTY, pp->p_jobid);
}
if (rv != -1)
rv = killpg(pp->p_jobid, SIGCONT);
#endif
cleanup_until(&pchild_disabled);
return rv != -1;
}
void
panystop(int neednl)
{
struct process *pp;
chkstop = 2;
for (pp = proclist.p_next; pp; pp = pp->p_next)
if (pp->p_flags & PSTOPPED)
stderror(ERR_STOPPED, neednl ? "\n" : "");
}
struct process *
pfind(Char *cp)
{
struct process *pp, *np;
if (cp == 0 || cp[1] == 0 || eq(cp, STRcent2) || eq(cp, STRcentplus)) {
if (pcurrent == NULL)
stderror(ERR_NAME | ERR_JOBCUR);
return (pcurrent);
}
if (eq(cp, STRcentminus) || eq(cp, STRcenthash)) {
if (pprevious == NULL)
stderror(ERR_NAME | ERR_JOBPREV);
return (pprevious);
}
if (Isdigit(cp[1])) {
int idx = atoi(short2str(cp + 1));
for (pp = proclist.p_next; pp; pp = pp->p_next)
if (pp->p_index == idx && pp->p_procid == pp->p_jobid)
return (pp);
stderror(ERR_NAME | ERR_NOSUCHJOB);
}
np = NULL;
for (pp = proclist.p_next; pp; pp = pp->p_next)
if (pp->p_procid == pp->p_jobid) {
if (cp[1] == '?') {
Char *dp;
for (dp = pp->p_command; *dp; dp++) {
if (*dp != cp[2])
continue;
if (prefix(cp + 2, dp))
goto match;
}
}
else if (prefix(cp + 1, pp->p_command)) {
match:
if (np)
stderror(ERR_NAME | ERR_AMBIG);
np = pp;
}
}
if (np)
return (np);
stderror(ERR_NAME | (cp[1] == '?' ? ERR_JOBPAT : ERR_NOSUCHJOB));
return (0);
}
static struct process *
pgetcurr(struct process *pp)
{
struct process *np;
struct process *xp = NULL;
for (np = proclist.p_next; np; np = np->p_next)
if (np != pcurrent && np != pp && np->p_procid &&
np->p_procid == np->p_jobid) {
if (np->p_flags & PSTOPPED)
return (np);
if (xp == NULL)
xp = np;
}
return (xp);
}
void
donotify(Char **v, struct command *c)
{
struct process *pp;
USE(c);
pp = pfind(*++v);
pp->p_flags |= PNOTIFY;
}
#ifdef SIGSYNCH
static void
synch_handler(int sno)
{
USE(sno);
}
#endif
pid_t
pfork(struct command *t, int wanttty)
{
pid_t pid;
int ignint = 0;
pid_t pgrp;
#ifdef SIGSYNCH
struct sigaction osa, nsa;
#endif
if (setintr)
ignint = (tpgrp == -1 && (t->t_dflg & F_NOINTERRUPT))
|| (gointr && eq(gointr, STRminus));
if (child == 16)
stderror(ERR_NESTING, 16);
#ifdef SIGSYNCH
nsa.sa_handler = synch_handler;
sigfillset(&nsa.sa_mask);
nsa.sa_flags = SA_RESTART;
if (sigaction(SIGSYNCH, &nsa, &osa))
stderror(ERR_SYSTEM, "pfork: sigaction set", strerror(errno));
#endif
if (wanttty < 0) {
pchild_disabled++;
cleanup_push(&pchild_disabled, disabled_cleanup);
}
while ((pid = fork()) == -1)
if (setintr == 0)
(void) sleep(FORKSLEEP);
else
stderror(ERR_NOPROC);
if (pid == 0) {
(void)cleanup_push_mark();
pchild_disabled = 0;
settimes();
pgrp = pcurrjob ? pcurrjob->p_jobid : getpid();
pflushall();
pcurrjob = NULL;
#if !defined(BSDTIMES) && !defined(_SEQUENT_)
timesdone = 0;
#endif
child++;
if (setintr) {
setintr = 0;
(void) signal(SIGINT, ignint ? SIG_IGN : SIG_DFL);
(void) signal(SIGQUIT, ignint ? SIG_IGN : SIG_DFL);
#ifdef BSDJOBS
if (wanttty >= 0) {
(void) signal(SIGTSTP, SIG_DFL);
(void) signal(SIGTTIN, SIG_DFL);
(void) signal(SIGTTOU, SIG_DFL);
}
#endif
sigaction(SIGTERM, &parterm, NULL);
}
else if (tpgrp == -1 && (t->t_dflg & F_NOINTERRUPT)) {
(void) signal(SIGINT, SIG_IGN);
(void) signal(SIGQUIT, SIG_IGN);
}
#ifdef OREO
signal(SIGIO, SIG_IGN);
#endif
pgetty(wanttty, pgrp);
if (t->t_dflg & F_NOHUP)
(void) signal(SIGHUP, SIG_IGN);
if (t->t_dflg & F_NICE) {
int nval = SIGN_EXTEND_CHAR(t->t_nice);
#ifdef HAVE_SETPRIORITY
if (setpriority(PRIO_PROCESS, 0, nval) == -1 && errno)
stderror(ERR_SYSTEM, "setpriority", strerror(errno));
#else
(void) nice(nval);
#endif
}
#ifdef F_VER
if (t->t_dflg & F_VER) {
tsetenv(STRSYSTYPE, t->t_systype ? STRbsd43 : STRsys53);
dohash(NULL, NULL);
}
#endif
#ifdef SIGSYNCH
if (kill(getppid(), SIGSYNCH))
stderror(ERR_SYSTEM, "pfork child: kill", strerror(errno));
#endif
}
else {
#ifdef POSIXJOBS
if (wanttty >= 0) {
pgrp = pcurrjob ? pcurrjob->p_jobid : pid;
if (setpgid(pid, pgrp) == -1 && errno == EPERM) {
pcurrjob = NULL;
(void) setpgid(pid, pgrp = pid);
}
}
#endif
palloc(pid, t);
#ifdef SIGSYNCH
{
sigset_t pause_mask;
sigprocmask(SIG_BLOCK, NULL, &pause);
sigdelset(&pause_mask, SIGCHLD);
sigdelset(&pause_mask, SIGSYNCH);
sigsuspend(&pause_mask);
handle_pending_signals();
if (sigaction(SIGSYNCH, &osa, NULL))
stderror(ERR_SYSTEM, "pfork parent: sigaction restore",
strerror(errno));
}
#endif
if (wanttty < 0)
cleanup_until(&pchild_disabled);
}
return (pid);
}
static void
okpcntl(void)
{
if (tpgrp == -1)
stderror(ERR_JOBCONTROL);
if (tpgrp == 0)
stderror(ERR_JOBCTRLSUB);
}
static void
setttypgrp(int pgrp)
{
if (tcgetpgrp(FSHTTY) != pgrp) {
#ifdef POSIXJOBS
struct sigaction old;
sigaction(SIGTTOU, NULL, &old);
signal(SIGTTOU, SIG_IGN);
#endif
(void) tcsetpgrp(FSHTTY, pgrp);
# ifdef POSIXJOBS
sigaction(SIGTTOU, &old, NULL);
# endif
}
}
void
pgetty(int wanttty, pid_t pgrp)
{
#ifdef BSDJOBS
# ifdef POSIXJOBS
sigset_t oset, set;
# endif
jobdebug_xprintf(("wanttty %d pid %d opgrp%d pgrp %d tpgrp %d\n",
wanttty, (int)getpid(), (int)pgrp, (int)mygetpgrp(),
(int)tcgetpgrp(FSHTTY)));
# ifdef POSIXJOBS
if (wanttty > 0) {
sigemptyset(&set);
sigaddset(&set, SIGTSTP);
sigaddset(&set, SIGTTIN);
(void)sigprocmask(SIG_BLOCK, &set, &oset);
cleanup_push(&oset, sigprocmask_cleanup);
}
# endif
# ifndef POSIXJOBS
if (wanttty > 0)
setttypgrp(pgrp);
# endif
if (wanttty >= 0) {
if (setpgid(0, pgrp) == -1) {
# ifdef POSIXJOBS
if (setpgid(0, pgrp = getpid()) == -1) {
# endif
stderror(ERR_SYSTEM, "setpgid child:\n", strerror(errno));
xexit(0);
# ifdef POSIXJOBS
}
wanttty = pgrp;
# endif
}
}
# ifdef POSIXJOBS
if (wanttty > 0) {
setttypgrp(pgrp);
cleanup_until(&oset);
}
# endif
jobdebug_xprintf(("wanttty %d pid %d pgrp %d tpgrp %d\n",
wanttty, getpid(), mygetpgrp(), tcgetpgrp(FSHTTY)));
if (tpgrp > 0)
tpgrp = 0;
#endif
}