Home | History | Annotate | Line # | Download | only in csh
proc.c revision 1.1
      1  1.1  cgd /*-
      2  1.1  cgd  * Copyright (c) 1980, 1991 The Regents of the University of California.
      3  1.1  cgd  * All rights reserved.
      4  1.1  cgd  *
      5  1.1  cgd  * Redistribution and use in source and binary forms, with or without
      6  1.1  cgd  * modification, are permitted provided that the following conditions
      7  1.1  cgd  * are met:
      8  1.1  cgd  * 1. Redistributions of source code must retain the above copyright
      9  1.1  cgd  *    notice, this list of conditions and the following disclaimer.
     10  1.1  cgd  * 2. Redistributions in binary form must reproduce the above copyright
     11  1.1  cgd  *    notice, this list of conditions and the following disclaimer in the
     12  1.1  cgd  *    documentation and/or other materials provided with the distribution.
     13  1.1  cgd  * 3. All advertising materials mentioning features or use of this software
     14  1.1  cgd  *    must display the following acknowledgement:
     15  1.1  cgd  *	This product includes software developed by the University of
     16  1.1  cgd  *	California, Berkeley and its contributors.
     17  1.1  cgd  * 4. Neither the name of the University nor the names of its contributors
     18  1.1  cgd  *    may be used to endorse or promote products derived from this software
     19  1.1  cgd  *    without specific prior written permission.
     20  1.1  cgd  *
     21  1.1  cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     22  1.1  cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     23  1.1  cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24  1.1  cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     25  1.1  cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     26  1.1  cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     27  1.1  cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     28  1.1  cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     29  1.1  cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     30  1.1  cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     31  1.1  cgd  * SUCH DAMAGE.
     32  1.1  cgd  */
     33  1.1  cgd 
     34  1.1  cgd #ifndef lint
     35  1.1  cgd static char sccsid[] = "@(#)proc.c	5.22 (Berkeley) 6/14/91";
     36  1.1  cgd #endif /* not lint */
     37  1.1  cgd 
     38  1.1  cgd #include <sys/types.h>
     39  1.1  cgd #include <sys/wait.h>
     40  1.1  cgd #include <errno.h>
     41  1.1  cgd #include <unistd.h>
     42  1.1  cgd #include <stdlib.h>
     43  1.1  cgd #include <string.h>
     44  1.1  cgd #if __STDC__
     45  1.1  cgd # include <stdarg.h>
     46  1.1  cgd #else
     47  1.1  cgd # include <varargs.h>
     48  1.1  cgd #endif
     49  1.1  cgd 
     50  1.1  cgd #include "csh.h"
     51  1.1  cgd #include "dir.h"
     52  1.1  cgd #include "proc.h"
     53  1.1  cgd #include "extern.h"
     54  1.1  cgd 
     55  1.1  cgd #define BIGINDEX	9	/* largest desirable job index */
     56  1.1  cgd 
     57  1.1  cgd static struct rusage zru;
     58  1.1  cgd 
     59  1.1  cgd static void	 pflushall __P((void));
     60  1.1  cgd static void	 pflush __P((struct process *));
     61  1.1  cgd static void	 pclrcurr __P((struct process *));
     62  1.1  cgd static void	 padd __P((struct command *));
     63  1.1  cgd static int	 pprint __P((struct process *, int));
     64  1.1  cgd static void	 ptprint __P((struct process *));
     65  1.1  cgd static void	 pads __P((Char *));
     66  1.1  cgd static void	 pkill __P((Char **v, int));
     67  1.1  cgd static struct	process
     68  1.1  cgd 		*pgetcurr __P((struct process *));
     69  1.1  cgd static void	 okpcntl __P((void));
     70  1.1  cgd 
     71  1.1  cgd /*
     72  1.1  cgd  * pchild - called at interrupt level by the SIGCHLD signal
     73  1.1  cgd  *	indicating that at least one child has terminated or stopped
     74  1.1  cgd  *	thus at least one wait system call will definitely return a
     75  1.1  cgd  *	childs status.  Top level routines (like pwait) must be sure
     76  1.1  cgd  *	to mask interrupts when playing with the proclist data structures!
     77  1.1  cgd  */
     78  1.1  cgd /* ARGUSED */
     79  1.1  cgd void
     80  1.1  cgd pchild(notused)
     81  1.1  cgd 	int notused;
     82  1.1  cgd {
     83  1.1  cgd     register struct process *pp;
     84  1.1  cgd     register struct process *fp;
     85  1.1  cgd     register int pid;
     86  1.1  cgd     extern int insource;
     87  1.1  cgd     union wait w;
     88  1.1  cgd     int     jobflags;
     89  1.1  cgd     struct rusage ru;
     90  1.1  cgd 
     91  1.1  cgd loop:
     92  1.1  cgd     errno = 0;			/* reset, just in case */
     93  1.1  cgd     pid = wait3(&w.w_status,
     94  1.1  cgd        (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru);
     95  1.1  cgd 
     96  1.1  cgd     if (pid <= 0) {
     97  1.1  cgd 	if (errno == EINTR) {
     98  1.1  cgd 	    errno = 0;
     99  1.1  cgd 	    goto loop;
    100  1.1  cgd 	}
    101  1.1  cgd 	pnoprocesses = pid == -1;
    102  1.1  cgd 	return;
    103  1.1  cgd     }
    104  1.1  cgd     for (pp = proclist.p_next; pp != NULL; pp = pp->p_next)
    105  1.1  cgd 	if (pid == pp->p_pid)
    106  1.1  cgd 	    goto found;
    107  1.1  cgd     goto loop;
    108  1.1  cgd found:
    109  1.1  cgd     if (pid == atoi(short2str(value(STRchild))))
    110  1.1  cgd 	unsetv(STRchild);
    111  1.1  cgd     pp->p_flags &= ~(PRUNNING | PSTOPPED | PREPORTED);
    112  1.1  cgd     if (WIFSTOPPED(w)) {
    113  1.1  cgd 	pp->p_flags |= PSTOPPED;
    114  1.1  cgd 	pp->p_reason = w.w_stopsig;
    115  1.1  cgd     }
    116  1.1  cgd     else {
    117  1.1  cgd 	if (pp->p_flags & (PTIME | PPTIME) || adrof(STRtime))
    118  1.1  cgd 	    (void) gettimeofday(&pp->p_etime, NULL);
    119  1.1  cgd 
    120  1.1  cgd 	pp->p_rusage = ru;
    121  1.1  cgd 	if (WIFSIGNALED(w)) {
    122  1.1  cgd 	    if (w.w_termsig == SIGINT)
    123  1.1  cgd 		pp->p_flags |= PINTERRUPTED;
    124  1.1  cgd 	    else
    125  1.1  cgd 		pp->p_flags |= PSIGNALED;
    126  1.1  cgd 	    if (w.w_coredump)
    127  1.1  cgd 		pp->p_flags |= PDUMPED;
    128  1.1  cgd 	    pp->p_reason = w.w_termsig;
    129  1.1  cgd 	}
    130  1.1  cgd 	else {
    131  1.1  cgd 	    pp->p_reason = w.w_retcode;
    132  1.1  cgd 	    if (pp->p_reason != 0)
    133  1.1  cgd 		pp->p_flags |= PAEXITED;
    134  1.1  cgd 	    else
    135  1.1  cgd 		pp->p_flags |= PNEXITED;
    136  1.1  cgd 	}
    137  1.1  cgd     }
    138  1.1  cgd     jobflags = 0;
    139  1.1  cgd     fp = pp;
    140  1.1  cgd     do {
    141  1.1  cgd 	if ((fp->p_flags & (PPTIME | PRUNNING | PSTOPPED)) == 0 &&
    142  1.1  cgd 	    !child && adrof(STRtime) &&
    143  1.1  cgd 	    fp->p_rusage.ru_utime.tv_sec + fp->p_rusage.ru_stime.tv_sec
    144  1.1  cgd 	    >= atoi(short2str(value(STRtime))))
    145  1.1  cgd 	    fp->p_flags |= PTIME;
    146  1.1  cgd 	jobflags |= fp->p_flags;
    147  1.1  cgd     } while ((fp = fp->p_friends) != pp);
    148  1.1  cgd     pp->p_flags &= ~PFOREGND;
    149  1.1  cgd     if (pp == pp->p_friends && (pp->p_flags & PPTIME)) {
    150  1.1  cgd 	pp->p_flags &= ~PPTIME;
    151  1.1  cgd 	pp->p_flags |= PTIME;
    152  1.1  cgd     }
    153  1.1  cgd     if ((jobflags & (PRUNNING | PREPORTED)) == 0) {
    154  1.1  cgd 	fp = pp;
    155  1.1  cgd 	do {
    156  1.1  cgd 	    if (fp->p_flags & PSTOPPED)
    157  1.1  cgd 		fp->p_flags |= PREPORTED;
    158  1.1  cgd 	} while ((fp = fp->p_friends) != pp);
    159  1.1  cgd 	while (fp->p_pid != fp->p_jobid)
    160  1.1  cgd 	    fp = fp->p_friends;
    161  1.1  cgd 	if (jobflags & PSTOPPED) {
    162  1.1  cgd 	    if (pcurrent && pcurrent != fp)
    163  1.1  cgd 		pprevious = pcurrent;
    164  1.1  cgd 	    pcurrent = fp;
    165  1.1  cgd 	}
    166  1.1  cgd 	else
    167  1.1  cgd 	    pclrcurr(fp);
    168  1.1  cgd 	if (jobflags & PFOREGND) {
    169  1.1  cgd 	    if (jobflags & (PSIGNALED | PSTOPPED | PPTIME) ||
    170  1.1  cgd #ifdef IIASA
    171  1.1  cgd 		jobflags & PAEXITED ||
    172  1.1  cgd #endif
    173  1.1  cgd 		!eq(dcwd->di_name, fp->p_cwd->di_name)) {
    174  1.1  cgd 		;		/* print in pjwait */
    175  1.1  cgd 	    }
    176  1.1  cgd 	    /* PWP: print a newline after ^C */
    177  1.1  cgd 	    else if (jobflags & PINTERRUPTED)
    178  1.1  cgd 		xputchar('\r' | QUOTE), xputchar('\n');
    179  1.1  cgd 	}
    180  1.1  cgd 	else {
    181  1.1  cgd 	    if (jobflags & PNOTIFY || adrof(STRnotify)) {
    182  1.1  cgd 		xputchar('\r' | QUOTE), xputchar('\n');
    183  1.1  cgd 		(void) pprint(pp, NUMBER | NAME | REASON);
    184  1.1  cgd 		if ((jobflags & PSTOPPED) == 0)
    185  1.1  cgd 		    pflush(pp);
    186  1.1  cgd 	    }
    187  1.1  cgd 	    else {
    188  1.1  cgd 		fp->p_flags |= PNEEDNOTE;
    189  1.1  cgd 		neednote++;
    190  1.1  cgd 	    }
    191  1.1  cgd 	}
    192  1.1  cgd     }
    193  1.1  cgd     goto loop;
    194  1.1  cgd }
    195  1.1  cgd 
    196  1.1  cgd void
    197  1.1  cgd pnote()
    198  1.1  cgd {
    199  1.1  cgd     register struct process *pp;
    200  1.1  cgd     int     flags;
    201  1.1  cgd     sigset_t omask;
    202  1.1  cgd 
    203  1.1  cgd     neednote = 0;
    204  1.1  cgd     for (pp = proclist.p_next; pp != NULL; pp = pp->p_next) {
    205  1.1  cgd 	if (pp->p_flags & PNEEDNOTE) {
    206  1.1  cgd 	    omask = sigblock(sigmask(SIGCHLD));
    207  1.1  cgd 	    pp->p_flags &= ~PNEEDNOTE;
    208  1.1  cgd 	    flags = pprint(pp, NUMBER | NAME | REASON);
    209  1.1  cgd 	    if ((flags & (PRUNNING | PSTOPPED)) == 0)
    210  1.1  cgd 		pflush(pp);
    211  1.1  cgd 	    (void) sigsetmask(omask);
    212  1.1  cgd 	}
    213  1.1  cgd     }
    214  1.1  cgd }
    215  1.1  cgd 
    216  1.1  cgd /*
    217  1.1  cgd  * pwait - wait for current job to terminate, maintaining integrity
    218  1.1  cgd  *	of current and previous job indicators.
    219  1.1  cgd  */
    220  1.1  cgd void
    221  1.1  cgd pwait()
    222  1.1  cgd {
    223  1.1  cgd     register struct process *fp, *pp;
    224  1.1  cgd     sigset_t omask;
    225  1.1  cgd 
    226  1.1  cgd     /*
    227  1.1  cgd      * Here's where dead procs get flushed.
    228  1.1  cgd      */
    229  1.1  cgd     omask = sigblock(sigmask(SIGCHLD));
    230  1.1  cgd     for (pp = (fp = &proclist)->p_next; pp != NULL; pp = (fp = pp)->p_next)
    231  1.1  cgd 	if (pp->p_pid == 0) {
    232  1.1  cgd 	    fp->p_next = pp->p_next;
    233  1.1  cgd 	    xfree((ptr_t) pp->p_command);
    234  1.1  cgd 	    if (pp->p_cwd && --pp->p_cwd->di_count == 0)
    235  1.1  cgd 		if (pp->p_cwd->di_next == 0)
    236  1.1  cgd 		    dfree(pp->p_cwd);
    237  1.1  cgd 	    xfree((ptr_t) pp);
    238  1.1  cgd 	    pp = fp;
    239  1.1  cgd 	}
    240  1.1  cgd     (void) sigsetmask(omask);
    241  1.1  cgd     pjwait(pcurrjob);
    242  1.1  cgd }
    243  1.1  cgd 
    244  1.1  cgd 
    245  1.1  cgd /*
    246  1.1  cgd  * pjwait - wait for a job to finish or become stopped
    247  1.1  cgd  *	It is assumed to be in the foreground state (PFOREGND)
    248  1.1  cgd  */
    249  1.1  cgd void
    250  1.1  cgd pjwait(pp)
    251  1.1  cgd     register struct process *pp;
    252  1.1  cgd {
    253  1.1  cgd     register struct process *fp;
    254  1.1  cgd     int     jobflags, reason;
    255  1.1  cgd     sigset_t omask;
    256  1.1  cgd 
    257  1.1  cgd     while (pp->p_pid != pp->p_jobid)
    258  1.1  cgd 	pp = pp->p_friends;
    259  1.1  cgd     fp = pp;
    260  1.1  cgd 
    261  1.1  cgd     do {
    262  1.1  cgd 	if ((fp->p_flags & (PFOREGND | PRUNNING)) == PRUNNING)
    263  1.1  cgd 	    xprintf("BUG: waiting for background job!\n");
    264  1.1  cgd     } while ((fp = fp->p_friends) != pp);
    265  1.1  cgd     /*
    266  1.1  cgd      * Now keep pausing as long as we are not interrupted (SIGINT), and the
    267  1.1  cgd      * target process, or any of its friends, are running
    268  1.1  cgd      */
    269  1.1  cgd     fp = pp;
    270  1.1  cgd     omask = sigblock(sigmask(SIGCHLD));
    271  1.1  cgd     for (;;) {
    272  1.1  cgd 	(void) sigblock(sigmask(SIGCHLD));
    273  1.1  cgd 	jobflags = 0;
    274  1.1  cgd 	do
    275  1.1  cgd 	    jobflags |= fp->p_flags;
    276  1.1  cgd 	while ((fp = (fp->p_friends)) != pp);
    277  1.1  cgd 	if ((jobflags & PRUNNING) == 0)
    278  1.1  cgd 	    break;
    279  1.1  cgd #ifdef JOBDEBUG
    280  1.1  cgd 	xprintf("starting to sigpause for  SIGCHLD on %d\n", fp->p_pid);
    281  1.1  cgd #endif				/* JOBDEBUG */
    282  1.1  cgd 	(void) sigpause(omask & ~sigmask(SIGCHLD));
    283  1.1  cgd     }
    284  1.1  cgd     (void) sigsetmask(omask);
    285  1.1  cgd     if (tpgrp > 0)		/* get tty back */
    286  1.1  cgd 	(void) tcsetpgrp(FSHTTY, tpgrp);
    287  1.1  cgd     if ((jobflags & (PSIGNALED | PSTOPPED | PTIME)) ||
    288  1.1  cgd 	!eq(dcwd->di_name, fp->p_cwd->di_name)) {
    289  1.1  cgd 	if (jobflags & PSTOPPED) {
    290  1.1  cgd 	    xprintf("\n");
    291  1.1  cgd 	    if (adrof(STRlistjobs)) {
    292  1.1  cgd 		Char   *jobcommand[3];
    293  1.1  cgd 
    294  1.1  cgd 		jobcommand[0] = STRjobs;
    295  1.1  cgd 		if (eq(value(STRlistjobs), STRlong))
    296  1.1  cgd 		    jobcommand[1] = STRml;
    297  1.1  cgd 		else
    298  1.1  cgd 		    jobcommand[1] = NULL;
    299  1.1  cgd 		jobcommand[2] = NULL;
    300  1.1  cgd 
    301  1.1  cgd 		dojobs(jobcommand);
    302  1.1  cgd 		(void) pprint(pp, SHELLDIR);
    303  1.1  cgd 	    }
    304  1.1  cgd 	    else
    305  1.1  cgd 		(void) pprint(pp, AREASON | SHELLDIR);
    306  1.1  cgd 	}
    307  1.1  cgd 	else
    308  1.1  cgd 	    (void) pprint(pp, AREASON | SHELLDIR);
    309  1.1  cgd     }
    310  1.1  cgd     if ((jobflags & (PINTERRUPTED | PSTOPPED)) && setintr &&
    311  1.1  cgd 	(!gointr || !eq(gointr, STRminus))) {
    312  1.1  cgd 	if ((jobflags & PSTOPPED) == 0)
    313  1.1  cgd 	    pflush(pp);
    314  1.1  cgd 	pintr1(0);
    315  1.1  cgd 	/* NOTREACHED */
    316  1.1  cgd     }
    317  1.1  cgd     reason = 0;
    318  1.1  cgd     fp = pp;
    319  1.1  cgd     do {
    320  1.1  cgd 	if (fp->p_reason)
    321  1.1  cgd 	    reason = fp->p_flags & (PSIGNALED | PINTERRUPTED) ?
    322  1.1  cgd 		fp->p_reason | META : fp->p_reason;
    323  1.1  cgd     } while ((fp = fp->p_friends) != pp);
    324  1.1  cgd     if ((reason != 0) && (adrof(STRprintexitvalue)))
    325  1.1  cgd 	xprintf("Exit %d\n", reason);
    326  1.1  cgd     set(STRstatus, putn(reason));
    327  1.1  cgd     if (reason && exiterr)
    328  1.1  cgd 	exitstat();
    329  1.1  cgd     pflush(pp);
    330  1.1  cgd }
    331  1.1  cgd 
    332  1.1  cgd /*
    333  1.1  cgd  * dowait - wait for all processes to finish
    334  1.1  cgd  */
    335  1.1  cgd void
    336  1.1  cgd dowait()
    337  1.1  cgd {
    338  1.1  cgd     register struct process *pp;
    339  1.1  cgd     sigset_t omask;
    340  1.1  cgd 
    341  1.1  cgd     pjobs++;
    342  1.1  cgd     omask = sigblock(sigmask(SIGCHLD));
    343  1.1  cgd loop:
    344  1.1  cgd     for (pp = proclist.p_next; pp; pp = pp->p_next)
    345  1.1  cgd 	if (pp->p_pid &&	/* pp->p_pid == pp->p_jobid && */
    346  1.1  cgd 	    pp->p_flags & PRUNNING) {
    347  1.1  cgd 	    (void) sigpause((sigset_t) 0);
    348  1.1  cgd 	    goto loop;
    349  1.1  cgd 	}
    350  1.1  cgd     (void) sigsetmask(omask);
    351  1.1  cgd     pjobs = 0;
    352  1.1  cgd }
    353  1.1  cgd 
    354  1.1  cgd /*
    355  1.1  cgd  * pflushall - flush all jobs from list (e.g. at fork())
    356  1.1  cgd  */
    357  1.1  cgd static void
    358  1.1  cgd pflushall()
    359  1.1  cgd {
    360  1.1  cgd     register struct process *pp;
    361  1.1  cgd 
    362  1.1  cgd     for (pp = proclist.p_next; pp != NULL; pp = pp->p_next)
    363  1.1  cgd 	if (pp->p_pid)
    364  1.1  cgd 	    pflush(pp);
    365  1.1  cgd }
    366  1.1  cgd 
    367  1.1  cgd /*
    368  1.1  cgd  * pflush - flag all process structures in the same job as the
    369  1.1  cgd  *	the argument process for deletion.  The actual free of the
    370  1.1  cgd  *	space is not done here since pflush is called at interrupt level.
    371  1.1  cgd  */
    372  1.1  cgd static void
    373  1.1  cgd pflush(pp)
    374  1.1  cgd     register struct process *pp;
    375  1.1  cgd {
    376  1.1  cgd     register struct process *np;
    377  1.1  cgd     register int idx;
    378  1.1  cgd 
    379  1.1  cgd     if (pp->p_pid == 0) {
    380  1.1  cgd 	xprintf("BUG: process flushed twice");
    381  1.1  cgd 	return;
    382  1.1  cgd     }
    383  1.1  cgd     while (pp->p_pid != pp->p_jobid)
    384  1.1  cgd 	pp = pp->p_friends;
    385  1.1  cgd     pclrcurr(pp);
    386  1.1  cgd     if (pp == pcurrjob)
    387  1.1  cgd 	pcurrjob = 0;
    388  1.1  cgd     idx = pp->p_index;
    389  1.1  cgd     np = pp;
    390  1.1  cgd     do {
    391  1.1  cgd 	np->p_index = np->p_pid = 0;
    392  1.1  cgd 	np->p_flags &= ~PNEEDNOTE;
    393  1.1  cgd     } while ((np = np->p_friends) != pp);
    394  1.1  cgd     if (idx == pmaxindex) {
    395  1.1  cgd 	for (np = proclist.p_next, idx = 0; np; np = np->p_next)
    396  1.1  cgd 	    if (np->p_index > idx)
    397  1.1  cgd 		idx = np->p_index;
    398  1.1  cgd 	pmaxindex = idx;
    399  1.1  cgd     }
    400  1.1  cgd }
    401  1.1  cgd 
    402  1.1  cgd /*
    403  1.1  cgd  * pclrcurr - make sure the given job is not the current or previous job;
    404  1.1  cgd  *	pp MUST be the job leader
    405  1.1  cgd  */
    406  1.1  cgd static void
    407  1.1  cgd pclrcurr(pp)
    408  1.1  cgd     register struct process *pp;
    409  1.1  cgd {
    410  1.1  cgd 
    411  1.1  cgd     if (pp == pcurrent)
    412  1.1  cgd 	if (pprevious != NULL) {
    413  1.1  cgd 	    pcurrent = pprevious;
    414  1.1  cgd 	    pprevious = pgetcurr(pp);
    415  1.1  cgd 	}
    416  1.1  cgd 	else {
    417  1.1  cgd 	    pcurrent = pgetcurr(pp);
    418  1.1  cgd 	    pprevious = pgetcurr(pp);
    419  1.1  cgd 	}
    420  1.1  cgd     else if (pp == pprevious)
    421  1.1  cgd 	pprevious = pgetcurr(pp);
    422  1.1  cgd }
    423  1.1  cgd 
    424  1.1  cgd /* +4 here is 1 for '\0', 1 ea for << >& >> */
    425  1.1  cgd static Char command[PMAXLEN + 4];
    426  1.1  cgd static int cmdlen;
    427  1.1  cgd static Char *cmdp;
    428  1.1  cgd 
    429  1.1  cgd /*
    430  1.1  cgd  * palloc - allocate a process structure and fill it up.
    431  1.1  cgd  *	an important assumption is made that the process is running.
    432  1.1  cgd  */
    433  1.1  cgd void
    434  1.1  cgd palloc(pid, t)
    435  1.1  cgd     int     pid;
    436  1.1  cgd     register struct command *t;
    437  1.1  cgd {
    438  1.1  cgd     register struct process *pp;
    439  1.1  cgd     int     i;
    440  1.1  cgd 
    441  1.1  cgd     pp = (struct process *) xcalloc(1, (size_t) sizeof(struct process));
    442  1.1  cgd     pp->p_pid = pid;
    443  1.1  cgd     pp->p_flags = t->t_dflg & F_AMPERSAND ? PRUNNING : PRUNNING | PFOREGND;
    444  1.1  cgd     if (t->t_dflg & F_TIME)
    445  1.1  cgd 	pp->p_flags |= PPTIME;
    446  1.1  cgd     cmdp = command;
    447  1.1  cgd     cmdlen = 0;
    448  1.1  cgd     padd(t);
    449  1.1  cgd     *cmdp++ = 0;
    450  1.1  cgd     if (t->t_dflg & F_PIPEOUT) {
    451  1.1  cgd 	pp->p_flags |= PPOU;
    452  1.1  cgd 	if (t->t_dflg & F_STDERR)
    453  1.1  cgd 	    pp->p_flags |= PDIAG;
    454  1.1  cgd     }
    455  1.1  cgd     pp->p_command = Strsave(command);
    456  1.1  cgd     if (pcurrjob) {
    457  1.1  cgd 	struct process *fp;
    458  1.1  cgd 
    459  1.1  cgd 	/* careful here with interrupt level */
    460  1.1  cgd 	pp->p_cwd = 0;
    461  1.1  cgd 	pp->p_index = pcurrjob->p_index;
    462  1.1  cgd 	pp->p_friends = pcurrjob;
    463  1.1  cgd 	pp->p_jobid = pcurrjob->p_pid;
    464  1.1  cgd 	for (fp = pcurrjob; fp->p_friends != pcurrjob; fp = fp->p_friends);
    465  1.1  cgd 	fp->p_friends = pp;
    466  1.1  cgd     }
    467  1.1  cgd     else {
    468  1.1  cgd 	pcurrjob = pp;
    469  1.1  cgd 	pp->p_jobid = pid;
    470  1.1  cgd 	pp->p_friends = pp;
    471  1.1  cgd 	pp->p_cwd = dcwd;
    472  1.1  cgd 	dcwd->di_count++;
    473  1.1  cgd 	if (pmaxindex < BIGINDEX)
    474  1.1  cgd 	    pp->p_index = ++pmaxindex;
    475  1.1  cgd 	else {
    476  1.1  cgd 	    struct process *np;
    477  1.1  cgd 
    478  1.1  cgd 	    for (i = 1;; i++) {
    479  1.1  cgd 		for (np = proclist.p_next; np; np = np->p_next)
    480  1.1  cgd 		    if (np->p_index == i)
    481  1.1  cgd 			goto tryagain;
    482  1.1  cgd 		pp->p_index = i;
    483  1.1  cgd 		if (i > pmaxindex)
    484  1.1  cgd 		    pmaxindex = i;
    485  1.1  cgd 		break;
    486  1.1  cgd 	tryagain:;
    487  1.1  cgd 	    }
    488  1.1  cgd 	}
    489  1.1  cgd 	if (pcurrent == NULL)
    490  1.1  cgd 	    pcurrent = pp;
    491  1.1  cgd 	else if (pprevious == NULL)
    492  1.1  cgd 	    pprevious = pp;
    493  1.1  cgd     }
    494  1.1  cgd     pp->p_next = proclist.p_next;
    495  1.1  cgd     proclist.p_next = pp;
    496  1.1  cgd     (void) gettimeofday(&pp->p_btime, NULL);
    497  1.1  cgd }
    498  1.1  cgd 
    499  1.1  cgd static void
    500  1.1  cgd padd(t)
    501  1.1  cgd     register struct command *t;
    502  1.1  cgd {
    503  1.1  cgd     Char  **argp;
    504  1.1  cgd 
    505  1.1  cgd     if (t == 0)
    506  1.1  cgd 	return;
    507  1.1  cgd     switch (t->t_dtyp) {
    508  1.1  cgd 
    509  1.1  cgd     case NODE_PAREN:
    510  1.1  cgd 	pads(STRLparensp);
    511  1.1  cgd 	padd(t->t_dspr);
    512  1.1  cgd 	pads(STRspRparen);
    513  1.1  cgd 	break;
    514  1.1  cgd 
    515  1.1  cgd     case NODE_COMMAND:
    516  1.1  cgd 	for (argp = t->t_dcom; *argp; argp++) {
    517  1.1  cgd 	    pads(*argp);
    518  1.1  cgd 	    if (argp[1])
    519  1.1  cgd 		pads(STRspace);
    520  1.1  cgd 	}
    521  1.1  cgd 	break;
    522  1.1  cgd 
    523  1.1  cgd     case NODE_OR:
    524  1.1  cgd     case NODE_AND:
    525  1.1  cgd     case NODE_PIPE:
    526  1.1  cgd     case NODE_LIST:
    527  1.1  cgd 	padd(t->t_dcar);
    528  1.1  cgd 	switch (t->t_dtyp) {
    529  1.1  cgd 	case NODE_OR:
    530  1.1  cgd 	    pads(STRspor2sp);
    531  1.1  cgd 	    break;
    532  1.1  cgd 	case NODE_AND:
    533  1.1  cgd 	    pads(STRspand2sp);
    534  1.1  cgd 	    break;
    535  1.1  cgd 	case NODE_PIPE:
    536  1.1  cgd 	    pads(STRsporsp);
    537  1.1  cgd 	    break;
    538  1.1  cgd 	case NODE_LIST:
    539  1.1  cgd 	    pads(STRsemisp);
    540  1.1  cgd 	    break;
    541  1.1  cgd 	}
    542  1.1  cgd 	padd(t->t_dcdr);
    543  1.1  cgd 	return;
    544  1.1  cgd     }
    545  1.1  cgd     if ((t->t_dflg & F_PIPEIN) == 0 && t->t_dlef) {
    546  1.1  cgd 	pads((t->t_dflg & F_READ) ? STRspLarrow2sp : STRspLarrowsp);
    547  1.1  cgd 	pads(t->t_dlef);
    548  1.1  cgd     }
    549  1.1  cgd     if ((t->t_dflg & F_PIPEOUT) == 0 && t->t_drit) {
    550  1.1  cgd 	pads((t->t_dflg & F_APPEND) ? STRspRarrow2 : STRspRarrow);
    551  1.1  cgd 	if (t->t_dflg & F_STDERR)
    552  1.1  cgd 	    pads(STRand);
    553  1.1  cgd 	pads(STRspace);
    554  1.1  cgd 	pads(t->t_drit);
    555  1.1  cgd     }
    556  1.1  cgd }
    557  1.1  cgd 
    558  1.1  cgd static void
    559  1.1  cgd pads(cp)
    560  1.1  cgd     Char   *cp;
    561  1.1  cgd {
    562  1.1  cgd     register int i;
    563  1.1  cgd 
    564  1.1  cgd     /*
    565  1.1  cgd      * Avoid the Quoted Space alias hack! Reported by:
    566  1.1  cgd      * sam (at) john-bigboote.ICS.UCI.EDU (Sam Horrocks)
    567  1.1  cgd      */
    568  1.1  cgd     if (cp[0] == STRQNULL[0])
    569  1.1  cgd 	cp++;
    570  1.1  cgd 
    571  1.1  cgd     i = Strlen(cp);
    572  1.1  cgd 
    573  1.1  cgd     if (cmdlen >= PMAXLEN)
    574  1.1  cgd 	return;
    575  1.1  cgd     if (cmdlen + i >= PMAXLEN) {
    576  1.1  cgd 	(void) Strcpy(cmdp, STRsp3dots);
    577  1.1  cgd 	cmdlen = PMAXLEN;
    578  1.1  cgd 	cmdp += 4;
    579  1.1  cgd 	return;
    580  1.1  cgd     }
    581  1.1  cgd     (void) Strcpy(cmdp, cp);
    582  1.1  cgd     cmdp += i;
    583  1.1  cgd     cmdlen += i;
    584  1.1  cgd }
    585  1.1  cgd 
    586  1.1  cgd /*
    587  1.1  cgd  * psavejob - temporarily save the current job on a one level stack
    588  1.1  cgd  *	so another job can be created.  Used for { } in exp6
    589  1.1  cgd  *	and `` in globbing.
    590  1.1  cgd  */
    591  1.1  cgd void
    592  1.1  cgd psavejob()
    593  1.1  cgd {
    594  1.1  cgd 
    595  1.1  cgd     pholdjob = pcurrjob;
    596  1.1  cgd     pcurrjob = NULL;
    597  1.1  cgd }
    598  1.1  cgd 
    599  1.1  cgd /*
    600  1.1  cgd  * prestjob - opposite of psavejob.  This may be missed if we are interrupted
    601  1.1  cgd  *	somewhere, but pendjob cleans up anyway.
    602  1.1  cgd  */
    603  1.1  cgd void
    604  1.1  cgd prestjob()
    605  1.1  cgd {
    606  1.1  cgd 
    607  1.1  cgd     pcurrjob = pholdjob;
    608  1.1  cgd     pholdjob = NULL;
    609  1.1  cgd }
    610  1.1  cgd 
    611  1.1  cgd /*
    612  1.1  cgd  * pendjob - indicate that a job (set of commands) has been completed
    613  1.1  cgd  *	or is about to begin.
    614  1.1  cgd  */
    615  1.1  cgd void
    616  1.1  cgd pendjob()
    617  1.1  cgd {
    618  1.1  cgd     register struct process *pp, *tp;
    619  1.1  cgd 
    620  1.1  cgd     if (pcurrjob && (pcurrjob->p_flags & (PFOREGND | PSTOPPED)) == 0) {
    621  1.1  cgd 	pp = pcurrjob;
    622  1.1  cgd 	while (pp->p_pid != pp->p_jobid)
    623  1.1  cgd 	    pp = pp->p_friends;
    624  1.1  cgd 	xprintf("[%d]", pp->p_index);
    625  1.1  cgd 	tp = pp;
    626  1.1  cgd 	do {
    627  1.1  cgd 	    xprintf(" %d", pp->p_pid);
    628  1.1  cgd 	    pp = pp->p_friends;
    629  1.1  cgd 	} while (pp != tp);
    630  1.1  cgd 	xprintf("\n");
    631  1.1  cgd     }
    632  1.1  cgd     pholdjob = pcurrjob = 0;
    633  1.1  cgd }
    634  1.1  cgd 
    635  1.1  cgd /*
    636  1.1  cgd  * pprint - print a job
    637  1.1  cgd  */
    638  1.1  cgd static int
    639  1.1  cgd pprint(pp, flag)
    640  1.1  cgd     register struct process *pp;
    641  1.1  cgd     bool    flag;
    642  1.1  cgd {
    643  1.1  cgd     register status, reason;
    644  1.1  cgd     struct process *tp;
    645  1.1  cgd     extern char *linp, linbuf[];
    646  1.1  cgd     int     jobflags, pstatus;
    647  1.1  cgd     char   *format;
    648  1.1  cgd 
    649  1.1  cgd     while (pp->p_pid != pp->p_jobid)
    650  1.1  cgd 	pp = pp->p_friends;
    651  1.1  cgd     if (pp == pp->p_friends && (pp->p_flags & PPTIME)) {
    652  1.1  cgd 	pp->p_flags &= ~PPTIME;
    653  1.1  cgd 	pp->p_flags |= PTIME;
    654  1.1  cgd     }
    655  1.1  cgd     tp = pp;
    656  1.1  cgd     status = reason = -1;
    657  1.1  cgd     jobflags = 0;
    658  1.1  cgd     do {
    659  1.1  cgd 	jobflags |= pp->p_flags;
    660  1.1  cgd 	pstatus = pp->p_flags & PALLSTATES;
    661  1.1  cgd 	if (tp != pp && linp != linbuf && !(flag & FANCY) &&
    662  1.1  cgd 	    (pstatus == status && pp->p_reason == reason ||
    663  1.1  cgd 	     !(flag & REASON)))
    664  1.1  cgd 	    xprintf(" ");
    665  1.1  cgd 	else {
    666  1.1  cgd 	    if (tp != pp && linp != linbuf)
    667  1.1  cgd 		xprintf("\n");
    668  1.1  cgd 	    if (flag & NUMBER)
    669  1.1  cgd 		if (pp == tp)
    670  1.1  cgd 		    xprintf("[%d]%s %c ", pp->p_index,
    671  1.1  cgd 			    pp->p_index < 10 ? " " : "",
    672  1.1  cgd 			    pp == pcurrent ? '+' :
    673  1.1  cgd 			    (pp == pprevious ? '-' : ' '));
    674  1.1  cgd 		else
    675  1.1  cgd 		    xprintf("       ");
    676  1.1  cgd 	    if (flag & FANCY) {
    677  1.1  cgd 		xprintf("%5d ", pp->p_pid);
    678  1.1  cgd 	    }
    679  1.1  cgd 	    if (flag & (REASON | AREASON)) {
    680  1.1  cgd 		if (flag & NAME)
    681  1.1  cgd 		    format = "%-23s";
    682  1.1  cgd 		else
    683  1.1  cgd 		    format = "%s";
    684  1.1  cgd 		if (pstatus == status)
    685  1.1  cgd 		    if (pp->p_reason == reason) {
    686  1.1  cgd 			xprintf(format, "");
    687  1.1  cgd 			goto prcomd;
    688  1.1  cgd 		    }
    689  1.1  cgd 		    else
    690  1.1  cgd 			reason = pp->p_reason;
    691  1.1  cgd 		else {
    692  1.1  cgd 		    status = pstatus;
    693  1.1  cgd 		    reason = pp->p_reason;
    694  1.1  cgd 		}
    695  1.1  cgd 		switch (status) {
    696  1.1  cgd 
    697  1.1  cgd 		case PRUNNING:
    698  1.1  cgd 		    xprintf(format, "Running ");
    699  1.1  cgd 		    break;
    700  1.1  cgd 
    701  1.1  cgd 		case PINTERRUPTED:
    702  1.1  cgd 		case PSTOPPED:
    703  1.1  cgd 		case PSIGNALED:
    704  1.1  cgd 		    if ((flag & REASON) ||
    705  1.1  cgd 			((flag & AREASON) && reason != SIGINT
    706  1.1  cgd 			 && reason != SIGPIPE))
    707  1.1  cgd 			xprintf(format, mesg[pp->p_reason].pname);
    708  1.1  cgd 		    break;
    709  1.1  cgd 
    710  1.1  cgd 		case PNEXITED:
    711  1.1  cgd 		case PAEXITED:
    712  1.1  cgd 		    if (flag & REASON)
    713  1.1  cgd 			if (pp->p_reason)
    714  1.1  cgd 			    xprintf("Exit %-18d", pp->p_reason);
    715  1.1  cgd 			else
    716  1.1  cgd 			    xprintf(format, "Done");
    717  1.1  cgd 		    break;
    718  1.1  cgd 
    719  1.1  cgd 		default:
    720  1.1  cgd 		    xprintf("BUG: status=%-9o", status);
    721  1.1  cgd 		}
    722  1.1  cgd 	    }
    723  1.1  cgd 	}
    724  1.1  cgd prcomd:
    725  1.1  cgd 	if (flag & NAME) {
    726  1.1  cgd 	    xprintf("%s", short2str(pp->p_command));
    727  1.1  cgd 	    if (pp->p_flags & PPOU)
    728  1.1  cgd 		xprintf(" |");
    729  1.1  cgd 	    if (pp->p_flags & PDIAG)
    730  1.1  cgd 		xprintf("&");
    731  1.1  cgd 	}
    732  1.1  cgd 	if (flag & (REASON | AREASON) && pp->p_flags & PDUMPED)
    733  1.1  cgd 	    xprintf(" (core dumped)");
    734  1.1  cgd 	if (tp == pp->p_friends) {
    735  1.1  cgd 	    if (flag & AMPERSAND)
    736  1.1  cgd 		xprintf(" &");
    737  1.1  cgd 	    if (flag & JOBDIR &&
    738  1.1  cgd 		!eq(tp->p_cwd->di_name, dcwd->di_name)) {
    739  1.1  cgd 		xprintf(" (wd: ");
    740  1.1  cgd 		dtildepr(value(STRhome), tp->p_cwd->di_name);
    741  1.1  cgd 		xprintf(")");
    742  1.1  cgd 	    }
    743  1.1  cgd 	}
    744  1.1  cgd 	if (pp->p_flags & PPTIME && !(status & (PSTOPPED | PRUNNING))) {
    745  1.1  cgd 	    if (linp != linbuf)
    746  1.1  cgd 		xprintf("\n\t");
    747  1.1  cgd 	    prusage(&zru, &pp->p_rusage, &pp->p_etime,
    748  1.1  cgd 		    &pp->p_btime);
    749  1.1  cgd 	}
    750  1.1  cgd 	if (tp == pp->p_friends) {
    751  1.1  cgd 	    if (linp != linbuf)
    752  1.1  cgd 		xprintf("\n");
    753  1.1  cgd 	    if (flag & SHELLDIR && !eq(tp->p_cwd->di_name, dcwd->di_name)) {
    754  1.1  cgd 		xprintf("(wd now: ");
    755  1.1  cgd 		dtildepr(value(STRhome), dcwd->di_name);
    756  1.1  cgd 		xprintf(")\n");
    757  1.1  cgd 	    }
    758  1.1  cgd 	}
    759  1.1  cgd     } while ((pp = pp->p_friends) != tp);
    760  1.1  cgd     if (jobflags & PTIME && (jobflags & (PSTOPPED | PRUNNING)) == 0) {
    761  1.1  cgd 	if (jobflags & NUMBER)
    762  1.1  cgd 	    xprintf("       ");
    763  1.1  cgd 	ptprint(tp);
    764  1.1  cgd     }
    765  1.1  cgd     return (jobflags);
    766  1.1  cgd }
    767  1.1  cgd 
    768  1.1  cgd static void
    769  1.1  cgd ptprint(tp)
    770  1.1  cgd     register struct process *tp;
    771  1.1  cgd {
    772  1.1  cgd     struct timeval tetime, diff;
    773  1.1  cgd     static struct timeval ztime;
    774  1.1  cgd     struct rusage ru;
    775  1.1  cgd     static struct rusage zru;
    776  1.1  cgd     register struct process *pp = tp;
    777  1.1  cgd 
    778  1.1  cgd     ru = zru;
    779  1.1  cgd     tetime = ztime;
    780  1.1  cgd     do {
    781  1.1  cgd 	ruadd(&ru, &pp->p_rusage);
    782  1.1  cgd 	tvsub(&diff, &pp->p_etime, &pp->p_btime);
    783  1.1  cgd 	if (timercmp(&diff, &tetime, >))
    784  1.1  cgd 	    tetime = diff;
    785  1.1  cgd     } while ((pp = pp->p_friends) != tp);
    786  1.1  cgd     prusage(&zru, &ru, &tetime, &ztime);
    787  1.1  cgd }
    788  1.1  cgd 
    789  1.1  cgd /*
    790  1.1  cgd  * dojobs - print all jobs
    791  1.1  cgd  */
    792  1.1  cgd void
    793  1.1  cgd dojobs(v)
    794  1.1  cgd     Char  **v;
    795  1.1  cgd {
    796  1.1  cgd     register struct process *pp;
    797  1.1  cgd     register int flag = NUMBER | NAME | REASON;
    798  1.1  cgd     int     i;
    799  1.1  cgd 
    800  1.1  cgd     if (chkstop)
    801  1.1  cgd 	chkstop = 2;
    802  1.1  cgd     if (*++v) {
    803  1.1  cgd 	if (v[1] || !eq(*v, STRml))
    804  1.1  cgd 	    stderror(ERR_JOBS);
    805  1.1  cgd 	flag |= FANCY | JOBDIR;
    806  1.1  cgd     }
    807  1.1  cgd     for (i = 1; i <= pmaxindex; i++)
    808  1.1  cgd 	for (pp = proclist.p_next; pp; pp = pp->p_next)
    809  1.1  cgd 	    if (pp->p_index == i && pp->p_pid == pp->p_jobid) {
    810  1.1  cgd 		pp->p_flags &= ~PNEEDNOTE;
    811  1.1  cgd 		if (!(pprint(pp, flag) & (PRUNNING | PSTOPPED)))
    812  1.1  cgd 		    pflush(pp);
    813  1.1  cgd 		break;
    814  1.1  cgd 	    }
    815  1.1  cgd }
    816  1.1  cgd 
    817  1.1  cgd /*
    818  1.1  cgd  * dofg - builtin - put the job into the foreground
    819  1.1  cgd  */
    820  1.1  cgd void
    821  1.1  cgd dofg(v)
    822  1.1  cgd     Char  **v;
    823  1.1  cgd {
    824  1.1  cgd     register struct process *pp;
    825  1.1  cgd 
    826  1.1  cgd     okpcntl();
    827  1.1  cgd     ++v;
    828  1.1  cgd     do {
    829  1.1  cgd 	pp = pfind(*v);
    830  1.1  cgd 	pstart(pp, 1);
    831  1.1  cgd 	pjwait(pp);
    832  1.1  cgd     } while (*v && *++v);
    833  1.1  cgd }
    834  1.1  cgd 
    835  1.1  cgd /*
    836  1.1  cgd  * %... - builtin - put the job into the foreground
    837  1.1  cgd  */
    838  1.1  cgd void
    839  1.1  cgd dofg1(v)
    840  1.1  cgd     Char  **v;
    841  1.1  cgd {
    842  1.1  cgd     register struct process *pp;
    843  1.1  cgd 
    844  1.1  cgd     okpcntl();
    845  1.1  cgd     pp = pfind(v[0]);
    846  1.1  cgd     pstart(pp, 1);
    847  1.1  cgd     pjwait(pp);
    848  1.1  cgd }
    849  1.1  cgd 
    850  1.1  cgd /*
    851  1.1  cgd  * dobg - builtin - put the job into the background
    852  1.1  cgd  */
    853  1.1  cgd void
    854  1.1  cgd dobg(v)
    855  1.1  cgd     Char  **v;
    856  1.1  cgd {
    857  1.1  cgd     register struct process *pp;
    858  1.1  cgd 
    859  1.1  cgd     okpcntl();
    860  1.1  cgd     ++v;
    861  1.1  cgd     do {
    862  1.1  cgd 	pp = pfind(*v);
    863  1.1  cgd 	pstart(pp, 0);
    864  1.1  cgd     } while (*v && *++v);
    865  1.1  cgd }
    866  1.1  cgd 
    867  1.1  cgd /*
    868  1.1  cgd  * %... & - builtin - put the job into the background
    869  1.1  cgd  */
    870  1.1  cgd void
    871  1.1  cgd dobg1(v)
    872  1.1  cgd     Char  **v;
    873  1.1  cgd {
    874  1.1  cgd     register struct process *pp;
    875  1.1  cgd 
    876  1.1  cgd     pp = pfind(v[0]);
    877  1.1  cgd     pstart(pp, 0);
    878  1.1  cgd }
    879  1.1  cgd 
    880  1.1  cgd /*
    881  1.1  cgd  * dostop - builtin - stop the job
    882  1.1  cgd  */
    883  1.1  cgd void
    884  1.1  cgd dostop(v)
    885  1.1  cgd     Char  **v;
    886  1.1  cgd {
    887  1.1  cgd     pkill(++v, SIGSTOP);
    888  1.1  cgd }
    889  1.1  cgd 
    890  1.1  cgd /*
    891  1.1  cgd  * dokill - builtin - superset of kill (1)
    892  1.1  cgd  */
    893  1.1  cgd void
    894  1.1  cgd dokill(v)
    895  1.1  cgd     Char  **v;
    896  1.1  cgd {
    897  1.1  cgd     register int signum, len = 0;
    898  1.1  cgd     register char *name;
    899  1.1  cgd 
    900  1.1  cgd     v++;
    901  1.1  cgd     if (v[0] && v[0][0] == '-') {
    902  1.1  cgd 	if (v[0][1] == 'l') {
    903  1.1  cgd 	    for (signum = 1; signum <= NSIG; signum++) {
    904  1.1  cgd 		if ((name = mesg[signum].iname) != NULL) {
    905  1.1  cgd 		    len += strlen(name) + 1;
    906  1.1  cgd 		    if (len >= 80 - 1) {
    907  1.1  cgd 			xprintf("\n");
    908  1.1  cgd 			len = strlen(name) + 1;
    909  1.1  cgd 		    }
    910  1.1  cgd 		    xprintf("%s ", name);
    911  1.1  cgd 		}
    912  1.1  cgd 	    }
    913  1.1  cgd 	    xprintf("\n");
    914  1.1  cgd 	    return;
    915  1.1  cgd 	}
    916  1.1  cgd 	if (Isdigit(v[0][1])) {
    917  1.1  cgd 	    signum = atoi(short2str(v[0] + 1));
    918  1.1  cgd 	    if (signum < 0 || signum > NSIG)
    919  1.1  cgd 		stderror(ERR_NAME | ERR_BADSIG);
    920  1.1  cgd 	}
    921  1.1  cgd 	else {
    922  1.1  cgd 	    for (signum = 1; signum <= NSIG; signum++)
    923  1.1  cgd 		if (mesg[signum].iname &&
    924  1.1  cgd 		    eq(&v[0][1], str2short(mesg[signum].iname)))
    925  1.1  cgd 		    goto gotsig;
    926  1.1  cgd 	    setname(short2str(&v[0][1]));
    927  1.1  cgd 	    stderror(ERR_NAME | ERR_UNKSIG);
    928  1.1  cgd 	}
    929  1.1  cgd gotsig:
    930  1.1  cgd 	v++;
    931  1.1  cgd     }
    932  1.1  cgd     else
    933  1.1  cgd 	signum = SIGTERM;
    934  1.1  cgd     pkill(v, signum);
    935  1.1  cgd }
    936  1.1  cgd 
    937  1.1  cgd static void
    938  1.1  cgd pkill(v, signum)
    939  1.1  cgd     Char  **v;
    940  1.1  cgd     int     signum;
    941  1.1  cgd {
    942  1.1  cgd     register struct process *pp, *np;
    943  1.1  cgd     register int jobflags = 0;
    944  1.1  cgd     int     pid, err1 = 0;
    945  1.1  cgd     sigset_t omask;
    946  1.1  cgd     Char   *cp;
    947  1.1  cgd 
    948  1.1  cgd     omask = sigmask(SIGCHLD);
    949  1.1  cgd     if (setintr)
    950  1.1  cgd 	omask |= sigmask(SIGINT);
    951  1.1  cgd     omask = sigblock(omask) & ~omask;
    952  1.1  cgd     gflag = 0, tglob(v);
    953  1.1  cgd     if (gflag) {
    954  1.1  cgd 	v = globall(v);
    955  1.1  cgd 	if (v == 0)
    956  1.1  cgd 	    stderror(ERR_NAME | ERR_NOMATCH);
    957  1.1  cgd     }
    958  1.1  cgd     else {
    959  1.1  cgd 	v = gargv = saveblk(v);
    960  1.1  cgd 	trim(v);
    961  1.1  cgd     }
    962  1.1  cgd 
    963  1.1  cgd     while (v && (cp = *v)) {
    964  1.1  cgd 	if (*cp == '%') {
    965  1.1  cgd 	    np = pp = pfind(cp);
    966  1.1  cgd 	    do
    967  1.1  cgd 		jobflags |= np->p_flags;
    968  1.1  cgd 	    while ((np = np->p_friends) != pp);
    969  1.1  cgd 	    switch (signum) {
    970  1.1  cgd 
    971  1.1  cgd 	    case SIGSTOP:
    972  1.1  cgd 	    case SIGTSTP:
    973  1.1  cgd 	    case SIGTTIN:
    974  1.1  cgd 	    case SIGTTOU:
    975  1.1  cgd 		if ((jobflags & PRUNNING) == 0) {
    976  1.1  cgd 		    xprintf("%s: Already suspended\n", short2str(cp));
    977  1.1  cgd 		    err1++;
    978  1.1  cgd 		    goto cont;
    979  1.1  cgd 		}
    980  1.1  cgd 		break;
    981  1.1  cgd 		/*
    982  1.1  cgd 		 * suspend a process, kill -CONT %, then type jobs; the shell
    983  1.1  cgd 		 * says it is suspended, but it is running; thanks jaap..
    984  1.1  cgd 		 */
    985  1.1  cgd 	    case SIGCONT:
    986  1.1  cgd 		pstart(pp, 0);
    987  1.1  cgd 		goto cont;
    988  1.1  cgd 	    }
    989  1.1  cgd 	    if (killpg((pid_t) pp->p_jobid, signum) < 0) {
    990  1.1  cgd 		xprintf("%s: %s\n", short2str(cp), strerror(errno));
    991  1.1  cgd 		err1++;
    992  1.1  cgd 	    }
    993  1.1  cgd 	    if (signum == SIGTERM || signum == SIGHUP)
    994  1.1  cgd 		(void) killpg((pid_t) pp->p_jobid, SIGCONT);
    995  1.1  cgd 	}
    996  1.1  cgd 	else if (!(Isdigit(*cp) || *cp == '-'))
    997  1.1  cgd 	    stderror(ERR_NAME | ERR_JOBARGS);
    998  1.1  cgd 	else {
    999  1.1  cgd 	    pid = atoi(short2str(cp));
   1000  1.1  cgd 	    if (kill((pid_t) pid, signum) < 0) {
   1001  1.1  cgd 		xprintf("%d: %s\n", pid, strerror(errno));
   1002  1.1  cgd 		err1++;
   1003  1.1  cgd 		goto cont;
   1004  1.1  cgd 	    }
   1005  1.1  cgd 	    if (signum == SIGTERM || signum == SIGHUP)
   1006  1.1  cgd 		(void) kill((pid_t) pid, SIGCONT);
   1007  1.1  cgd 	}
   1008  1.1  cgd cont:
   1009  1.1  cgd 	v++;
   1010  1.1  cgd     }
   1011  1.1  cgd     if (gargv)
   1012  1.1  cgd 	blkfree(gargv), gargv = 0;
   1013  1.1  cgd     (void) sigsetmask(omask);
   1014  1.1  cgd     if (err1)
   1015  1.1  cgd 	stderror(ERR_SILENT);
   1016  1.1  cgd }
   1017  1.1  cgd 
   1018  1.1  cgd /*
   1019  1.1  cgd  * pstart - start the job in foreground/background
   1020  1.1  cgd  */
   1021  1.1  cgd void
   1022  1.1  cgd pstart(pp, foregnd)
   1023  1.1  cgd     register struct process *pp;
   1024  1.1  cgd     int     foregnd;
   1025  1.1  cgd {
   1026  1.1  cgd     register struct process *np;
   1027  1.1  cgd     sigset_t omask;
   1028  1.1  cgd     long    jobflags = 0;
   1029  1.1  cgd 
   1030  1.1  cgd     omask = sigblock(sigmask(SIGCHLD));
   1031  1.1  cgd     np = pp;
   1032  1.1  cgd     do {
   1033  1.1  cgd 	jobflags |= np->p_flags;
   1034  1.1  cgd 	if (np->p_flags & (PRUNNING | PSTOPPED)) {
   1035  1.1  cgd 	    np->p_flags |= PRUNNING;
   1036  1.1  cgd 	    np->p_flags &= ~PSTOPPED;
   1037  1.1  cgd 	    if (foregnd)
   1038  1.1  cgd 		np->p_flags |= PFOREGND;
   1039  1.1  cgd 	    else
   1040  1.1  cgd 		np->p_flags &= ~PFOREGND;
   1041  1.1  cgd 	}
   1042  1.1  cgd     } while ((np = np->p_friends) != pp);
   1043  1.1  cgd     if (!foregnd)
   1044  1.1  cgd 	pclrcurr(pp);
   1045  1.1  cgd     (void) pprint(pp, foregnd ? NAME | JOBDIR : NUMBER | NAME | AMPERSAND);
   1046  1.1  cgd     if (foregnd)
   1047  1.1  cgd 	(void) tcsetpgrp(FSHTTY, pp->p_jobid);
   1048  1.1  cgd     if (jobflags & PSTOPPED)
   1049  1.1  cgd 	(void) killpg((pid_t) pp->p_jobid, SIGCONT);
   1050  1.1  cgd     (void) sigsetmask(omask);
   1051  1.1  cgd }
   1052  1.1  cgd 
   1053  1.1  cgd void
   1054  1.1  cgd panystop(neednl)
   1055  1.1  cgd     bool    neednl;
   1056  1.1  cgd {
   1057  1.1  cgd     register struct process *pp;
   1058  1.1  cgd 
   1059  1.1  cgd     chkstop = 2;
   1060  1.1  cgd     for (pp = proclist.p_next; pp; pp = pp->p_next)
   1061  1.1  cgd 	if (pp->p_flags & PSTOPPED)
   1062  1.1  cgd 	    stderror(ERR_STOPPED, neednl ? "\n" : "");
   1063  1.1  cgd }
   1064  1.1  cgd 
   1065  1.1  cgd struct process *
   1066  1.1  cgd pfind(cp)
   1067  1.1  cgd     Char   *cp;
   1068  1.1  cgd {
   1069  1.1  cgd     register struct process *pp, *np;
   1070  1.1  cgd 
   1071  1.1  cgd     if (cp == 0 || cp[1] == 0 || eq(cp, STRcent2) || eq(cp, STRcentplus)) {
   1072  1.1  cgd 	if (pcurrent == NULL)
   1073  1.1  cgd 	    stderror(ERR_NAME | ERR_JOBCUR);
   1074  1.1  cgd 	return (pcurrent);
   1075  1.1  cgd     }
   1076  1.1  cgd     if (eq(cp, STRcentminus) || eq(cp, STRcenthash)) {
   1077  1.1  cgd 	if (pprevious == NULL)
   1078  1.1  cgd 	    stderror(ERR_NAME | ERR_JOBPREV);
   1079  1.1  cgd 	return (pprevious);
   1080  1.1  cgd     }
   1081  1.1  cgd     if (Isdigit(cp[1])) {
   1082  1.1  cgd 	int     idx = atoi(short2str(cp + 1));
   1083  1.1  cgd 
   1084  1.1  cgd 	for (pp = proclist.p_next; pp; pp = pp->p_next)
   1085  1.1  cgd 	    if (pp->p_index == idx && pp->p_pid == pp->p_jobid)
   1086  1.1  cgd 		return (pp);
   1087  1.1  cgd 	stderror(ERR_NAME | ERR_NOSUCHJOB);
   1088  1.1  cgd     }
   1089  1.1  cgd     np = NULL;
   1090  1.1  cgd     for (pp = proclist.p_next; pp; pp = pp->p_next)
   1091  1.1  cgd 	if (pp->p_pid == pp->p_jobid) {
   1092  1.1  cgd 	    if (cp[1] == '?') {
   1093  1.1  cgd 		register Char *dp;
   1094  1.1  cgd 
   1095  1.1  cgd 		for (dp = pp->p_command; *dp; dp++) {
   1096  1.1  cgd 		    if (*dp != cp[2])
   1097  1.1  cgd 			continue;
   1098  1.1  cgd 		    if (prefix(cp + 2, dp))
   1099  1.1  cgd 			goto match;
   1100  1.1  cgd 		}
   1101  1.1  cgd 	    }
   1102  1.1  cgd 	    else if (prefix(cp + 1, pp->p_command)) {
   1103  1.1  cgd 	match:
   1104  1.1  cgd 		if (np)
   1105  1.1  cgd 		    stderror(ERR_NAME | ERR_AMBIG);
   1106  1.1  cgd 		np = pp;
   1107  1.1  cgd 	    }
   1108  1.1  cgd 	}
   1109  1.1  cgd     if (np)
   1110  1.1  cgd 	return (np);
   1111  1.1  cgd     stderror(ERR_NAME | cp[1] == '?' ? ERR_JOBPAT : ERR_NOSUCHJOB);
   1112  1.1  cgd     /* NOTREACHED */
   1113  1.1  cgd     return (0);
   1114  1.1  cgd }
   1115  1.1  cgd 
   1116  1.1  cgd 
   1117  1.1  cgd /*
   1118  1.1  cgd  * pgetcurr - find most recent job that is not pp, preferably stopped
   1119  1.1  cgd  */
   1120  1.1  cgd static struct process *
   1121  1.1  cgd pgetcurr(pp)
   1122  1.1  cgd     register struct process *pp;
   1123  1.1  cgd {
   1124  1.1  cgd     register struct process *np;
   1125  1.1  cgd     register struct process *xp = NULL;
   1126  1.1  cgd 
   1127  1.1  cgd     for (np = proclist.p_next; np; np = np->p_next)
   1128  1.1  cgd 	if (np != pcurrent && np != pp && np->p_pid &&
   1129  1.1  cgd 	    np->p_pid == np->p_jobid) {
   1130  1.1  cgd 	    if (np->p_flags & PSTOPPED)
   1131  1.1  cgd 		return (np);
   1132  1.1  cgd 	    if (xp == NULL)
   1133  1.1  cgd 		xp = np;
   1134  1.1  cgd 	}
   1135  1.1  cgd     return (xp);
   1136  1.1  cgd }
   1137  1.1  cgd 
   1138  1.1  cgd /*
   1139  1.1  cgd  * donotify - flag the job so as to report termination asynchronously
   1140  1.1  cgd  */
   1141  1.1  cgd void
   1142  1.1  cgd donotify(v)
   1143  1.1  cgd     Char  **v;
   1144  1.1  cgd {
   1145  1.1  cgd     register struct process *pp;
   1146  1.1  cgd 
   1147  1.1  cgd     pp = pfind(*++v);
   1148  1.1  cgd     pp->p_flags |= PNOTIFY;
   1149  1.1  cgd }
   1150  1.1  cgd 
   1151  1.1  cgd /*
   1152  1.1  cgd  * Do the fork and whatever should be done in the child side that
   1153  1.1  cgd  * should not be done if we are not forking at all (like for simple builtin's)
   1154  1.1  cgd  * Also do everything that needs any signals fiddled with in the parent side
   1155  1.1  cgd  *
   1156  1.1  cgd  * Wanttty tells whether process and/or tty pgrps are to be manipulated:
   1157  1.1  cgd  *	-1:	leave tty alone; inherit pgrp from parent
   1158  1.1  cgd  *	 0:	already have tty; manipulate process pgrps only
   1159  1.1  cgd  *	 1:	want to claim tty; manipulate process and tty pgrps
   1160  1.1  cgd  * It is usually just the value of tpgrp.
   1161  1.1  cgd  */
   1162  1.1  cgd 
   1163  1.1  cgd int
   1164  1.1  cgd pfork(t, wanttty)
   1165  1.1  cgd     struct command *t;		/* command we are forking for */
   1166  1.1  cgd     int     wanttty;
   1167  1.1  cgd {
   1168  1.1  cgd     register int pid;
   1169  1.1  cgd     bool    ignint = 0;
   1170  1.1  cgd     int     pgrp;
   1171  1.1  cgd     sigset_t omask;
   1172  1.1  cgd 
   1173  1.1  cgd     /*
   1174  1.1  cgd      * A child will be uninterruptible only under very special conditions.
   1175  1.1  cgd      * Remember that the semantics of '&' is implemented by disconnecting the
   1176  1.1  cgd      * process from the tty so signals do not need to ignored just for '&'.
   1177  1.1  cgd      * Thus signals are set to default action for children unless: we have had
   1178  1.1  cgd      * an "onintr -" (then specifically ignored) we are not playing with
   1179  1.1  cgd      * signals (inherit action)
   1180  1.1  cgd      */
   1181  1.1  cgd     if (setintr)
   1182  1.1  cgd 	ignint = (tpgrp == -1 && (t->t_dflg & F_NOINTERRUPT))
   1183  1.1  cgd 	    || (gointr && eq(gointr, STRminus));
   1184  1.1  cgd     /*
   1185  1.1  cgd      * Check for maximum nesting of 16 processes to avoid Forking loops
   1186  1.1  cgd      */
   1187  1.1  cgd     if (child == 16)
   1188  1.1  cgd 	stderror(ERR_NESTING, 16);
   1189  1.1  cgd     /*
   1190  1.1  cgd      * Hold SIGCHLD until we have the process installed in our table.
   1191  1.1  cgd      */
   1192  1.1  cgd     omask = sigblock(sigmask(SIGCHLD));
   1193  1.1  cgd     while ((pid = fork()) < 0)
   1194  1.1  cgd 	if (setintr == 0)
   1195  1.1  cgd 	    (void) sleep(FORKSLEEP);
   1196  1.1  cgd 	else {
   1197  1.1  cgd 	    (void) sigsetmask(omask);
   1198  1.1  cgd 	    stderror(ERR_NOPROC);
   1199  1.1  cgd 	}
   1200  1.1  cgd     if (pid == 0) {
   1201  1.1  cgd 	settimes();
   1202  1.1  cgd 	pgrp = pcurrjob ? pcurrjob->p_jobid : getpid();
   1203  1.1  cgd 	pflushall();
   1204  1.1  cgd 	pcurrjob = NULL;
   1205  1.1  cgd 	child++;
   1206  1.1  cgd 	if (setintr) {
   1207  1.1  cgd 	    setintr = 0;	/* until I think otherwise */
   1208  1.1  cgd 	    /*
   1209  1.1  cgd 	     * Children just get blown away on SIGINT, SIGQUIT unless "onintr
   1210  1.1  cgd 	     * -" seen.
   1211  1.1  cgd 	     */
   1212  1.1  cgd 	    (void) signal(SIGINT, ignint ? SIG_IGN : SIG_DFL);
   1213  1.1  cgd 	    (void) signal(SIGQUIT, ignint ? SIG_IGN : SIG_DFL);
   1214  1.1  cgd 	    if (wanttty >= 0) {
   1215  1.1  cgd 		/* make stoppable */
   1216  1.1  cgd 		(void) signal(SIGTSTP, SIG_DFL);
   1217  1.1  cgd 		(void) signal(SIGTTIN, SIG_DFL);
   1218  1.1  cgd 		(void) signal(SIGTTOU, SIG_DFL);
   1219  1.1  cgd 	    }
   1220  1.1  cgd 	    (void) signal(SIGTERM, parterm);
   1221  1.1  cgd 	}
   1222  1.1  cgd 	else if (tpgrp == -1 && (t->t_dflg & F_NOINTERRUPT)) {
   1223  1.1  cgd 	    (void) signal(SIGINT, SIG_IGN);
   1224  1.1  cgd 	    (void) signal(SIGQUIT, SIG_IGN);
   1225  1.1  cgd 	}
   1226  1.1  cgd 	pgetty(wanttty, pgrp);
   1227  1.1  cgd 	/*
   1228  1.1  cgd 	 * Nohup and nice apply only to NODE_COMMAND's but it would be nice
   1229  1.1  cgd 	 * (?!?) if you could say "nohup (foo;bar)" Then the parser would have
   1230  1.1  cgd 	 * to know about nice/nohup/time
   1231  1.1  cgd 	 */
   1232  1.1  cgd 	if (t->t_dflg & F_NOHUP)
   1233  1.1  cgd 	    (void) signal(SIGHUP, SIG_IGN);
   1234  1.1  cgd 	if (t->t_dflg & F_NICE)
   1235  1.1  cgd 	    (void) setpriority(PRIO_PROCESS, 0, t->t_nice);
   1236  1.1  cgd     }
   1237  1.1  cgd     else {
   1238  1.1  cgd 	if (wanttty >= 0)
   1239  1.1  cgd 	    (void) setpgid(pid, pcurrjob ? pcurrjob->p_jobid : pid);
   1240  1.1  cgd 	palloc(pid, t);
   1241  1.1  cgd 	(void) sigsetmask(omask);
   1242  1.1  cgd     }
   1243  1.1  cgd 
   1244  1.1  cgd     return (pid);
   1245  1.1  cgd }
   1246  1.1  cgd 
   1247  1.1  cgd static void
   1248  1.1  cgd okpcntl()
   1249  1.1  cgd {
   1250  1.1  cgd     if (tpgrp == -1)
   1251  1.1  cgd 	stderror(ERR_JOBCONTROL);
   1252  1.1  cgd     if (tpgrp == 0)
   1253  1.1  cgd 	stderror(ERR_JOBCTRLSUB);
   1254  1.1  cgd }
   1255  1.1  cgd 
   1256  1.1  cgd /*
   1257  1.1  cgd  * if we don't have vfork(), things can still go in the wrong order
   1258  1.1  cgd  * resulting in the famous 'Stopped (tty output)'. But some systems
   1259  1.1  cgd  * don't permit the setpgid() call, (these are more recent secure
   1260  1.1  cgd  * systems such as ibm's aix). Then we'd rather print an error message
   1261  1.1  cgd  * than hang the shell!
   1262  1.1  cgd  * I am open to suggestions how to fix that.
   1263  1.1  cgd  */
   1264  1.1  cgd void
   1265  1.1  cgd pgetty(wanttty, pgrp)
   1266  1.1  cgd     int     wanttty, pgrp;
   1267  1.1  cgd {
   1268  1.1  cgd     sigset_t omask = 0;
   1269  1.1  cgd 
   1270  1.1  cgd     /*
   1271  1.1  cgd      * christos: I am blocking the tty signals till I've set things
   1272  1.1  cgd      * correctly....
   1273  1.1  cgd      */
   1274  1.1  cgd     if (wanttty > 0)
   1275  1.1  cgd 	omask = sigblock(sigmask(SIGTSTP)|sigmask(SIGTTIN)|sigmask(SIGTTOU));
   1276  1.1  cgd     /*
   1277  1.1  cgd      * From: Michael Schroeder <mlschroe (at) immd4.informatik.uni-erlangen.de>
   1278  1.1  cgd      * Don't check for tpgrp >= 0 so even non-interactive shells give
   1279  1.1  cgd      * background jobs process groups Same for the comparison in the other part
   1280  1.1  cgd      * of the #ifdef
   1281  1.1  cgd      */
   1282  1.1  cgd     if (wanttty >= 0)
   1283  1.1  cgd 	if (setpgid(0, pgrp) == -1) {
   1284  1.1  cgd 	    xprintf("csh: setpgid error.\n");
   1285  1.1  cgd 	    xexit(0);
   1286  1.1  cgd 	}
   1287  1.1  cgd 
   1288  1.1  cgd     if (wanttty > 0) {
   1289  1.1  cgd 	(void) tcsetpgrp(FSHTTY, pgrp);
   1290  1.1  cgd 	(void) sigsetmask(omask);
   1291  1.1  cgd     }
   1292  1.1  cgd 
   1293  1.1  cgd     if (tpgrp > 0)
   1294  1.1  cgd 	tpgrp = 0;		/* gave tty away */
   1295  1.1  cgd }
   1296