2 * sh.proc.c: Job manipulations
5 * Copyright (c) 1980, 1991 The Regents of the University of California.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 #endif /* WINNT_NATIVE */
46 #if defined(_BSD) || (defined(IRIS4D) && __STDC__) || defined(__lucid)
48 #endif /* _BSD || (IRIS4D && __STDC__) || __lucid */
50 # define WTERMSIG(w) (((union wait *) &(w))->w_termsig)
53 # endif /* !BSDWAIT */
54 #endif /* !WTERMSIG */
56 # define WEXITSTATUS(w) (((union wait *) &(w))->w_retcode)
57 #endif /* !WEXITSTATUS */
59 # define WSTOPSIG(w) (((union wait *) &(w))->w_stopsig)
60 #endif /* !WSTOPSIG */
64 # define WCOREDUMP(x) (_W_INT(x) & WCOREFLAG)
70 # define WCOREDUMP(w) (((union wait *) &(w))->w_coredump)
72 # define WCOREDUMP(w) ((w) & 0200)
73 # endif /* !BSDWAIT */
74 #endif /* !WCOREDUMP */
77 # define jobdebug_xprintf(x) (void)0
78 # define jobdebug_flush() (void)0
80 # define jobdebug_xprintf(s) xprintf s
81 # define jobdebug_flush() flush()
85 * C Shell - functions that manage processes, handling hanging, termination
88 #define BIGINDEX 9 /* largest desirable job index */
92 /* use 'cvxrusage' to get parallel statistics */
93 static struct cvxrusage zru
= {{0L, 0L}, {0L, 0L}, 0L, 0L, 0L, 0L,
94 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L,
95 {0L, 0L}, 0LL, 0LL, 0LL, 0LL, 0L, 0L, 0L,
96 0LL, 0LL, {0L, 0L, 0L, 0L, 0L}};
98 static struct rusage zru
;
100 #else /* !BSDTIMES */
102 static struct process_stats zru
= {{0L, 0L}, {0L, 0L}, 0, 0, 0, 0, 0, 0, 0,
103 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
104 # else /* !_SEQUENT_ */
106 static struct tms zru
= {0, 0, 0, 0}, lru
= {0, 0, 0, 0};
108 static struct tms zru
= {0L, 0L, 0L, 0L}, lru
= {0L, 0L, 0L, 0L};
110 # endif /* !_SEQUENT_ */
111 #endif /* !BSDTIMES */
114 static int timesdone
; /* shtimes buffer full ? */
115 #endif /* BSDTIMES */
117 #ifndef RUSAGE_CHILDREN
118 # define RUSAGE_CHILDREN -1
119 #endif /* RUSAGE_CHILDREN */
121 static void pflushall (void);
122 static void pflush (struct process
*);
123 static void pfree (struct process
*);
124 static void pclrcurr (struct process
*);
125 static void morecommand (size_t);
126 static void padd (struct command
*);
127 static int pprint (struct process
*, int);
128 static void ptprint (struct process
*);
129 static void pads (Char
*);
130 static void pkill (Char
**, int);
131 static struct process
*pgetcurr (struct process
*);
132 static void okpcntl (void);
133 static void setttypgrp (int);
136 * pchild - call queued by the SIGCHLD signal
137 * indicating that at least one child has terminated or stopped
138 * thus at least one wait system call will definitely return a
139 * childs status. Top level routines (like pwait) must be sure
140 * to mask interrupts when playing with the proclist data structures!
152 #endif /* !BSDWAIT */
156 #else /* !BSDTIMES */
158 struct process_stats ru
;
159 struct process_stats cpst1
, cpst2
;
161 # else /* !_SEQUENT_ */
162 struct tms proctimes
;
166 (void) times(&shtimes
);
168 # endif /* !_SEQUENT_ */
169 #endif /* !BSDTIMES */
171 jobdebug_xprintf(("pchild()\n"));
174 jobdebug_xprintf(("Waiting...\n"));
176 errno
= 0; /* reset, just in case */
182 /* use 'cvxwait' to get parallel statistics */
184 (setintr
&& (intty
|| insource
) ? WNOHANG
| WUNTRACED
: WNOHANG
), &ru
);
186 /* both a wait3 and rusage */
187 # if !defined(BSDWAIT) || defined(NeXT) || defined(MACH) || defined(__linux__) || defined(__GNU__) || defined(__GLIBC__) || (defined(IRIS4D) && SYSVREL <= 3) || defined(__lucid) || defined(__osf__)
188 #ifdef __ANDROID__ /* no wait3, only wait4 */
190 (setintr
&& (intty
|| insource
) ? WNOHANG
| WUNTRACED
: WNOHANG
), &ru
);
193 (setintr
&& (intty
|| insource
) ? WNOHANG
| WUNTRACED
: WNOHANG
), &ru
);
194 #endif /* __ANDROID__ */
196 pid
= wait3(&w
.w_status
,
197 (setintr
&& (intty
|| insource
) ? WNOHANG
| WUNTRACED
: WNOHANG
), &ru
);
198 # endif /* BSDWAIT */
200 # else /* !BSDTIMES */
202 (void) get_process_stats(&tv
, PS_SELF
, 0, &cpst1
);
203 pid
= waitpid(-1, &w
,
204 (setintr
&& (intty
|| insource
) ? WNOHANG
| WUNTRACED
: WNOHANG
));
205 (void) get_process_stats(&tv
, PS_SELF
, 0, &cpst2
);
206 pr_stat_sub(&cpst2
, &cpst1
, &ru
);
207 # else /* !_SEQUENT_ */
209 /* we have a wait3, but no rusage stuff */
210 pid
= wait3(&w
.w_status
,
211 (setintr
&& (intty
|| insource
) ? WNOHANG
| WUNTRACED
: WNOHANG
), 0);
213 pid
= waitpid(-1, &w
,
214 (setintr
&& (intty
|| insource
) ? WNOHANG
| WUNTRACED
: WNOHANG
));
216 # endif /* !_SEQUENT_ */
217 # endif /* !BSDTIMES */
218 # else /* !BSDJOBS */
221 /* both a wait3 and rusage */
223 pid
= wait3(&w
.w_status
, WNOHANG
, 0);
226 pid
= wait3(&w
, WNOHANG
, &ru
);
228 pid
= wait3(&w
.w_status
, WNOHANG
, &ru
);
229 # endif /* BSDWAIT */
231 # else /* !BSDTIMES */
232 # ifdef ODT /* For Sco Unix 3.2.0 or ODT 1.0 */
234 pid
= waitpid(-1, &w
,
235 (setintr
&& (intty
|| insource
) ? WNOHANG
| WUNTRACED
: WNOHANG
));
237 # if defined(aiws) || defined(uts)
239 pid
= wait3(&w
.w_status
,
240 (setintr
&& (intty
|| insource
) ? WNOHANG
| WUNTRACED
: WNOHANG
), 0);
241 # endif /* aiws || uts */
244 /* no wait3, therefore no rusage */
245 /* on Sys V, this may hang. I hope it's not going to be a problem */
249 * XXX: for greater than 3 we should use waitpid().
250 * but then again, SVR4 falls into the POSIX/BSDJOBS category.
252 pid
= wait(&w
.w_status
);
253 # endif /* BSDWAIT */
254 # endif /* !HAVEwait3 */
255 # endif /* !BSDTIMES */
256 # endif /* !BSDJOBS */
257 #else /* WINNT_NATIVE */
258 pid
= waitpid(-1, &w
,
259 (setintr
&& (intty
|| insource
) ? WNOHANG
| WUNTRACED
: WNOHANG
));
260 #endif /* WINNT_NATIVE */
262 jobdebug_xprintf(("parent %d pid %d, retval %x termsig %x retcode %x\n",
263 (int)getpid(), (int)pid
, w
, WTERMSIG(w
),
267 if ((pid
== 0) || (pid
== -1)) {
268 (void)handle_pending_signals();
269 jobdebug_xprintf(("errno == %d\n", errno
));
274 for (pp
= proclist
.p_next
; pp
!= NULL
; pp
= pp
->p_next
)
275 if (pid
== pp
->p_procid
)
277 #if !defined(BSDJOBS) && !defined(WINNT_NATIVE)
278 /* this should never have happened */
279 stderror(ERR_SYNC
, pid
);
281 #else /* BSDJOBS || WINNT_NATIVE */
283 #endif /* !BSDJOBS && !WINNT_NATIVE */
285 pp
->p_flags
&= ~(PRUNNING
| PSTOPPED
| PREPORTED
);
287 pp
->p_flags
|= PSTOPPED
;
288 pp
->p_reason
= WSTOPSIG(w
);
291 if (pp
->p_flags
& (PTIME
| PPTIME
) || adrof(STRtime
))
294 (void) get_process_stats(&pp
->p_etime
, PS_SELF
, NULL
, NULL
);
295 # else /* !_SEQUENT_ */
296 pp
->p_etime
= times(&proctimes
);
297 # endif /* !_SEQUENT_ */
299 (void) gettimeofday(&pp
->p_etime
, NULL
);
300 #endif /* BSDTIMES */
303 #if defined(BSDTIMES) || defined(_SEQUENT_)
305 #else /* !BSDTIMES && !_SEQUENT_ */
306 (void) times(&proctimes
);
307 pp
->p_utime
= proctimes
.tms_cutime
- shtimes
.tms_cutime
;
308 pp
->p_stime
= proctimes
.tms_cstime
- shtimes
.tms_cstime
;
310 #endif /* !BSDTIMES && !_SEQUENT_ */
311 if (WIFSIGNALED(w
)) {
312 if (WTERMSIG(w
) == SIGINT
)
313 pp
->p_flags
|= PINTERRUPTED
;
315 pp
->p_flags
|= PSIGNALED
;
317 pp
->p_flags
|= PDUMPED
;
318 pp
->p_reason
= WTERMSIG(w
);
321 pp
->p_reason
= WEXITSTATUS(w
);
322 if (pp
->p_reason
!= 0)
323 pp
->p_flags
|= PAEXITED
;
325 pp
->p_flags
|= PNEXITED
;
331 if ((fp
->p_flags
& (PPTIME
| PRUNNING
| PSTOPPED
)) == 0 &&
332 !child
&& adrof(STRtime
) &&
334 fp
->p_rusage
.ru_utime
.tv_sec
+ fp
->p_rusage
.ru_stime
.tv_sec
335 #else /* !BSDTIMES */
337 fp
->p_rusage
.ps_utime
.tv_sec
+ fp
->p_rusage
.ps_stime
.tv_sec
338 # else /* !_SEQUENT_ */
340 (fp
->p_utime
+ fp
->p_stime
) / HZ
342 (fp
->p_utime
+ fp
->p_stime
) / clk_tck
344 # endif /* !_SEQUENT_ */
345 #endif /* !BSDTIMES */
346 >= atoi(short2str(varval(STRtime
))))
347 fp
->p_flags
|= PTIME
;
348 jobflags
|= fp
->p_flags
;
349 } while ((fp
= fp
->p_friends
) != pp
);
350 pp
->p_flags
&= ~PFOREGND
;
351 if (pp
== pp
->p_friends
&& (pp
->p_flags
& PPTIME
)) {
352 pp
->p_flags
&= ~PPTIME
;
353 pp
->p_flags
|= PTIME
;
355 if ((jobflags
& (PRUNNING
| PREPORTED
)) == 0) {
358 if (fp
->p_flags
& PSTOPPED
)
359 fp
->p_flags
|= PREPORTED
;
360 } while ((fp
= fp
->p_friends
) != pp
);
361 while (fp
->p_procid
!= fp
->p_jobid
)
363 if (jobflags
& PSTOPPED
) {
364 if (pcurrent
&& pcurrent
!= fp
)
365 pprevious
= pcurrent
;
370 if (jobflags
& PFOREGND
) {
371 if (!(jobflags
& (PSIGNALED
| PSTOPPED
| PPTIME
) ||
373 jobflags
& PAEXITED
||
376 !eq(dcwd
->di_name
, fp
->p_cwd
->di_name
))) {
377 /* PWP: print a newline after ^C */
378 if (jobflags
& PINTERRUPTED
) {
379 xputchar('\r' | QUOTE
);
383 else if ((jobflags
& (PTIME
|PSTOPPED
)) == PTIME
)
389 if (jobflags
& PNOTIFY
|| adrof(STRnotify
)) {
390 xputchar('\r' | QUOTE
);
392 (void) pprint(pp
, NUMBER
| NAME
| REASON
);
393 if ((jobflags
& PSTOPPED
) == 0)
400 * don't really want to do that, because it
401 * will erase our message in case of multi-line
411 fp
->p_flags
|= PNEEDNOTE
;
416 #if defined(BSDJOBS) || defined(HAVEwait3) ||defined(WINNT_NATIVE)
418 #endif /* BSDJOBS || HAVEwait3 */
430 for (pp
= proclist
.p_next
; pp
!= NULL
; pp
= pp
->p_next
) {
431 if (pp
->p_flags
& PNEEDNOTE
) {
433 cleanup_push(&pchild_disabled
, disabled_cleanup
);
434 pp
->p_flags
&= ~PNEEDNOTE
;
435 flags
= pprint(pp
, NUMBER
| NAME
| REASON
);
436 if ((flags
& (PRUNNING
| PSTOPPED
)) == 0)
438 cleanup_until(&pchild_disabled
);
445 pfree(struct process
*pp
)
447 xfree(pp
->p_command
);
448 if (pp
->p_cwd
&& --pp
->p_cwd
->di_count
== 0)
449 if (pp
->p_cwd
->di_next
== 0)
456 * pwait - wait for current job to terminate, maintaining integrity
457 * of current and previous job indicators.
462 struct process
*fp
, *pp
;
465 * Here's where dead procs get flushed.
467 for (pp
= (fp
= &proclist
)->p_next
; pp
!= NULL
; pp
= (fp
= pp
)->p_next
)
468 if (pp
->p_procid
== 0) {
469 fp
->p_next
= pp
->p_next
;
478 * pjwait - wait for a job to finish or become stopped
479 * It is assumed to be in the foreground state (PFOREGND)
482 pjwait(struct process
*pp
)
485 int jobflags
, reason
;
486 sigset_t oset
, set
, pause_mask
;
489 while (pp
->p_procid
!= pp
->p_jobid
)
494 if ((fp
->p_flags
& (PFOREGND
| PRUNNING
)) == PRUNNING
)
495 xprintf("%s", CGETS(17, 1, "BUG: waiting for background job!\n"));
496 } while ((fp
= fp
->p_friends
) != pp
);
498 * Now keep pausing as long as we are not interrupted (SIGINT), and the
499 * target process, or any of its friends, are running
503 sigaddset(&set
, SIGINT
);
504 sigaddset(&set
, SIGCHLD
);
505 (void)sigprocmask(SIG_BLOCK
, &set
, &oset
);
506 cleanup_push(&oset
, sigprocmask_cleanup
);
508 sigdelset(&pause_mask
, SIGCHLD
);
509 sigaddset(&pause_mask
, SIGINT
);
511 (void)handle_pending_signals();
514 jobflags
|= fp
->p_flags
;
515 while ((fp
= (fp
->p_friends
)) != pp
);
516 if ((jobflags
& PRUNNING
) == 0)
518 jobdebug_xprintf(("%d starting to sigsuspend for SIGCHLD on %d\n",
519 getpid(), fp
->p_procid
));
520 sigsuspend(&pause_mask
);
522 cleanup_until(&oset
);
523 jobdebug_xprintf(("%d returned from sigsuspend loop\n", getpid()));
525 if (tpgrp
> 0) /* get tty back */
526 (void) tcsetpgrp(FSHTTY
, tpgrp
);
528 if ((jobflags
& (PSIGNALED
| PSTOPPED
| PTIME
)) ||
529 fp
->p_cwd
== NULL
|| !eq(dcwd
->di_name
, fp
->p_cwd
->di_name
)) {
530 if (jobflags
& PSTOPPED
) {
532 if (adrof(STRlistjobs
)) {
535 jobcommand
[0] = STRjobs
;
536 if (eq(varval(STRlistjobs
), STRlong
))
537 jobcommand
[1] = STRml
;
539 jobcommand
[1] = NULL
;
540 jobcommand
[2] = NULL
;
542 dojobs(jobcommand
, NULL
);
543 (void) pprint(pp
, SHELLDIR
);
546 (void) pprint(pp
, AREASON
| SHELLDIR
);
549 (void) pprint(pp
, AREASON
| SHELLDIR
);
551 if ((jobflags
& (PINTERRUPTED
| PSTOPPED
)) && setintr
&&
552 (!gointr
|| !eq(gointr
, STRminus
))) {
553 if ((jobflags
& PSTOPPED
) == 0)
561 /* In case of pipelines only the result of the last
562 * command should be taken in account */
563 if (!anyerror
&& !(fp
->p_flags
& PBRACE
)
564 && ((fp
->p_flags
& PPOU
) || (fp
->p_flags
& PBACKQ
)))
567 reason
= fp
->p_flags
& (PSIGNALED
| PINTERRUPTED
) ?
568 fp
->p_reason
| META
: fp
->p_reason
;
569 } while ((fp
= fp
->p_friends
) != pp
);
571 * Don't report on backquoted jobs, cause it will mess up
574 if ((reason
!= 0) && (adrof(STRprintexitvalue
)) &&
575 (pp
->p_flags
& PBACKQ
) == 0)
576 xprintf(CGETS(17, 2, "Exit %d\n"), reason
);
577 reason_str
= putn((tcsh_number_t
)reason
);
578 cleanup_push(reason_str
, xfree
);
579 setv(STRstatus
, reason_str
, VAR_READWRITE
);
580 cleanup_ignore(reason_str
);
581 cleanup_until(reason_str
);
582 if (reason
&& exiterr
)
588 * dowait - wait for all processes to finish
593 dowait(Char
**v
, struct command
*c
)
597 /* the current block mask to be able to restore */
600 /* block mask for critical section: OLD_MASK U {SIGCHLD} */
603 /* ignore those during blocking sigsuspend:
604 OLD_MASK / {SIGCHLD, possibly(SIGINT)} */
607 int opintr_disabled
, gotsig
;
613 sigprocmask(SIG_BLOCK
, NULL
, &pause_mask
);
614 sigdelset(&pause_mask
, SIGCHLD
);
616 sigdelset(&pause_mask
, SIGINT
);
618 /* critical section, block also SIGCHLD */
619 sigprocmask(SIG_BLOCK
, NULL
, &block_mask
);
620 sigaddset(&block_mask
, SIGCHLD
);
621 sigprocmask(SIG_BLOCK
, &block_mask
, &old_mask
);
623 /* detect older SIGCHLDs and remove PRUNNING flag from proclist */
624 (void)handle_pending_signals();
627 for (pp
= proclist
.p_next
; pp
; pp
= pp
->p_next
)
628 if (pp
->p_procid
&& /* pp->p_procid == pp->p_jobid && */
629 pp
->p_flags
& PRUNNING
) {
630 /* wait for (or pick up alredy blocked) SIGCHLD */
631 sigsuspend(&pause_mask
);
633 /* make the 'wait' interuptable by CTRL-C */
634 opintr_disabled
= pintr_disabled
;
636 gotsig
= handle_pending_signals();
637 pintr_disabled
= opintr_disabled
;
644 sigprocmask(SIG_SETMASK
, &old_mask
, NULL
);
648 * pflushall - flush all jobs from list (e.g. at fork())
655 for (pp
= proclist
.p_next
; pp
!= NULL
; pp
= pp
->p_next
)
661 * pflush - flag all process structures in the same job as the
662 * the argument process for deletion. The actual free of the
663 * space is not done here since pflush is called at interrupt level.
666 pflush(struct process
*pp
)
671 if (pp
->p_procid
== 0) {
672 xprintf("%s", CGETS(17, 3, "BUG: process flushed twice"));
675 while (pp
->p_procid
!= pp
->p_jobid
)
683 np
->p_index
= np
->p_procid
= 0;
684 np
->p_flags
&= ~PNEEDNOTE
;
685 } while ((np
= np
->p_friends
) != pp
);
686 if (idx
== pmaxindex
) {
687 for (np
= proclist
.p_next
, idx
= 0; np
; np
= np
->p_next
)
688 if (np
->p_index
> idx
)
695 * pclrcurr - make sure the given job is not the current or previous job;
696 * pp MUST be the job leader
699 pclrcurr(struct process
*pp
)
701 if (pp
== pcurrent
) {
702 if (pprevious
!= NULL
) {
703 pcurrent
= pprevious
;
704 pprevious
= pgetcurr(pp
);
707 pcurrent
= pgetcurr(pp
);
708 pprevious
= pgetcurr(pp
);
711 else if (pp
== pprevious
)
712 pprevious
= pgetcurr(pp
);
715 /* +4 here is 1 for '\0', 1 ea for << >& >> */
717 static size_t cmdmax
;
718 static size_t cmdlen
;
720 #define CMD_INIT 1024
724 morecommand(size_t s
)
730 ncmdstr
= xrealloc(cmdstr
, cmdmax
* sizeof(*cmdstr
));
731 d
= ncmdstr
- cmdstr
;
737 * unparse - Export padd() functionality
740 unparse(struct command
*t
)
743 morecommand(CMD_INIT
);
748 return Strsave(cmdstr
);
753 * palloc - allocate a process structure and fill it up.
754 * an important assumption is made that the process is running.
757 palloc(pid_t pid
, struct command
*t
)
762 pp
= xcalloc(1, sizeof(struct process
));
764 pp
->p_parentid
= shpgrp
;
765 pp
->p_flags
= ((t
->t_dflg
& F_AMPERSAND
) ? 0 : PFOREGND
) | PRUNNING
;
766 if (t
->t_dflg
& F_TIME
)
767 pp
->p_flags
|= PPTIME
;
768 if (t
->t_dflg
& F_BACKQ
)
769 pp
->p_flags
|= PBACKQ
;
770 if (t
->t_dflg
& F_HUP
)
772 if (t
->t_dcom
&& t
->t_dcom
[0] && (*t
->t_dcom
[0] == '{'))
773 pp
->p_flags
|= PBRACE
;
775 morecommand(CMD_INIT
);
780 if (t
->t_dflg
& F_PIPEOUT
) {
782 if (t
->t_dflg
& F_STDERR
)
783 pp
->p_flags
|= PDIAG
;
785 pp
->p_command
= Strsave(cmdstr
);
789 /* careful here with interrupt level */
791 pp
->p_index
= pcurrjob
->p_index
;
792 pp
->p_friends
= pcurrjob
;
793 pp
->p_jobid
= pcurrjob
->p_procid
;
794 for (fp
= pcurrjob
; fp
->p_friends
!= pcurrjob
; fp
= fp
->p_friends
)
804 if (pmaxindex
< BIGINDEX
)
805 pp
->p_index
= ++pmaxindex
;
810 for (np
= proclist
.p_next
; np
; np
= np
->p_next
)
811 if (np
->p_index
== i
)
820 if (pcurrent
== NULL
)
822 else if (pprevious
== NULL
)
825 pp
->p_next
= proclist
.p_next
;
826 proclist
.p_next
= pp
;
828 (void) gettimeofday(&pp
->p_btime
, NULL
);
829 #else /* !BSDTIMES */
831 (void) get_process_stats(&pp
->p_btime
, PS_SELF
, NULL
, NULL
);
832 # else /* !_SEQUENT_ */
836 pp
->p_btime
= times(&tmptimes
);
838 # endif /* !_SEQUENT_ */
839 #endif /* !BSDTIMES */
843 padd(struct command
*t
)
858 for (argp
= t
->t_dcom
; *argp
; argp
++) {
892 if ((t
->t_dflg
& F_PIPEIN
) == 0 && t
->t_dlef
) {
893 pads((t
->t_dflg
& F_READ
) ? STRspLarrow2sp
: STRspLarrowsp
);
896 if ((t
->t_dflg
& F_PIPEOUT
) == 0 && t
->t_drit
) {
897 pads((t
->t_dflg
& F_APPEND
) ? STRspRarrow2
: STRspRarrow
);
898 if (t
->t_dflg
& F_STDERR
)
911 * Avoid the Quoted Space alias hack! Reported by:
912 * sam@john-bigboote.ICS.UCI.EDU (Sam Horrocks)
914 if (cp
[0] == STRQNULL
[0])
919 len
= cmdlen
+ i
+ CMD_INCR
;
922 (void) Strcpy(cmdp
, cp
);
928 * psavejob - temporarily save the current job on a one level stack
929 * so another job can be created. Used for { } in exp6
930 * and `` in globbing.
940 psavejob_cleanup(void *dummy
)
948 * pendjob - indicate that a job (set of commands) has been completed
949 * or is about to begin.
954 struct process
*pp
, *tp
;
956 if (pcurrjob
&& (pcurrjob
->p_flags
& (PFOREGND
| PSTOPPED
)) == 0) {
959 while (pp
->p_procid
!= pp
->p_jobid
)
961 xprintf("[%d]", pp
->p_index
);
964 xprintf(" %d", pp
->p_procid
);
969 pholdjob
= pcurrjob
= 0;
973 * pprint - print a job
977 * Hacks have been added for SVR4 to deal with pipe's being spawned in
980 * David Dawes (dawes@physics.su.oz.au) Oct 1991
984 pprint(struct process
*pp
, int flag
)
988 int jobflags
, pstatus
, pcond
;
993 struct process
*pipehead
= NULL
, *pipetail
= NULL
, *pmarker
= NULL
;
995 #endif /* BACKPIPE */
997 while (pp
->p_procid
!= pp
->p_jobid
)
999 if (pp
== pp
->p_friends
&& (pp
->p_flags
& PPTIME
)) {
1000 pp
->p_flags
&= ~PPTIME
;
1001 pp
->p_flags
|= PTIME
;
1004 status
= reason
= -1;
1007 /* Print status to stderr, except for jobs built-in */
1008 haderr
= !(flag
& JOBLIST
);
1012 * The pipeline is reversed, so locate the real head of the pipeline
1013 * if pp is at the tail of a pipe (and not already in a pipeline)
1015 if ((pp
->p_friends
->p_flags
& PPOU
) && !inpipe
&& (flag
& NAME
)) {
1020 while (pp
->p_friends
->p_flags
& PPOU
);
1024 * pmarker is used to hold the place of the proc being processed, so
1025 * we can search for the next one downstream later.
1028 pcond
= (tp
!= pp
|| (inpipe
&& tp
== pp
));
1029 #else /* !BACKPIPE */
1031 #endif /* BACKPIPE */
1033 jobflags
|= pp
->p_flags
;
1034 pstatus
= (int) (pp
->p_flags
& PALLSTATES
);
1035 if (pcond
&& linp
!= linbuf
&& !(flag
& FANCY
) &&
1036 ((pstatus
== status
&& pp
->p_reason
== reason
) ||
1040 if (pcond
&& linp
!= linbuf
)
1042 if (flag
& NUMBER
) {
1044 pcond
= ((pp
== tp
&& !inpipe
) ||
1045 (inpipe
&& pipetail
== tp
&& pp
== pipehead
));
1046 #else /* BACKPIPE */
1048 #endif /* BACKPIPE */
1050 xprintf("[%d]%s %c ", pp
->p_index
,
1051 pp
->p_index
< 10 ? " " : "",
1052 pp
== pcurrent
? '+' :
1053 (pp
== pprevious
? '-' : ' '));
1058 xprintf("%5d ", pp
->p_procid
);
1060 xprintf("%11s ", sitename(pp
->p_procid
));
1063 if (flag
& (REASON
| AREASON
)) {
1068 if (pstatus
== status
) {
1069 if (pp
->p_reason
== reason
) {
1070 xprintf(format
, "");
1074 reason
= (int) pp
->p_reason
;
1078 reason
= (int) pp
->p_reason
;
1083 xprintf(format
, CGETS(17, 4, "Running "));
1090 * tell what happened to the background job
1091 * From: Michael Schroeder
1092 * <mlschroe@immd4.informatik.uni-erlangen.de>
1095 || ((flag
& AREASON
)
1097 && (reason
!= SIGPIPE
1098 || (pp
->p_flags
& PPOU
) == 0))) {
1103 ptr
= (char *)(intptr_t)mesg
[pp
->p_reason
& 0177].pname
;
1105 ptr
= xasprintf("%s %d", CGETS(17, 5, "Signal"),
1106 pp
->p_reason
& 0177);
1107 cleanup_push(ptr
, xfree
);
1110 xprintf(format
, ptr
);
1120 if (flag
& REASON
) {
1122 xprintf(CGETS(17, 6, "Exit %-25d"), pp
->p_reason
);
1124 xprintf(format
, CGETS(17, 7, "Done"));
1129 xprintf(CGETS(17, 8, "BUG: status=%-9o"),
1136 xprintf("%S", pp
->p_command
);
1137 if (pp
->p_flags
& PPOU
)
1139 if (pp
->p_flags
& PDIAG
)
1142 if (flag
& (REASON
| AREASON
) && pp
->p_flags
& PDUMPED
)
1143 xprintf("%s", CGETS(17, 9, " (core dumped)"));
1144 if (tp
== pp
->p_friends
) {
1145 if (flag
& AMPERSAND
)
1147 if (flag
& JOBDIR
&&
1148 !eq(tp
->p_cwd
->di_name
, dcwd
->di_name
)) {
1149 xprintf("%s", CGETS(17, 10, " (wd: "));
1150 dtildepr(tp
->p_cwd
->di_name
);
1154 if (pp
->p_flags
& PPTIME
&& !(status
& (PSTOPPED
| PRUNNING
))) {
1157 #if defined(BSDTIMES) || defined(_SEQUENT_)
1158 prusage(&zru
, &pp
->p_rusage
, &pp
->p_etime
,
1160 #else /* !BSDTIMES && !SEQUENT */
1161 lru
.tms_utime
= pp
->p_utime
;
1162 lru
.tms_stime
= pp
->p_stime
;
1165 prusage(&zru
, &lru
, pp
->p_etime
,
1167 #endif /* !BSDTIMES && !SEQUENT */
1171 pcond
= ((tp
== pp
->p_friends
&& !inpipe
) ||
1172 (inpipe
&& pipehead
->p_friends
== tp
&& pp
== pipetail
));
1173 #else /* !BACKPIPE */
1174 pcond
= (tp
== pp
->p_friends
);
1175 #endif /* BACKPIPE */
1179 if (flag
& SHELLDIR
&& !eq(tp
->p_cwd
->di_name
, dcwd
->di_name
)) {
1180 xprintf("%s", CGETS(17, 11, "(wd now: "));
1181 dtildepr(dcwd
->di_name
);
1188 * if pmaker == pipetail, we are finished that pipeline, and
1189 * can now skip to past the head
1191 if (pmarker
== pipetail
) {
1197 * set pp to one before the one we want next, so the while below
1198 * increments to the correct spot.
1202 while (pp
->p_friends
->p_friends
!= pmarker
);
1203 pmarker
= pp
->p_friends
;
1206 pcond
= ((pp
= pp
->p_friends
) != tp
|| inpipe
);
1207 #else /* !BACKPIPE */
1208 pcond
= ((pp
= pp
->p_friends
) != tp
);
1209 #endif /* BACKPIPE */
1212 if (jobflags
& PTIME
&& (jobflags
& (PSTOPPED
| PRUNNING
)) == 0) {
1213 if (jobflags
& NUMBER
)
1222 * All 4.3 BSD derived implementations are buggy and I've had enough.
1223 * The following implementation produces similar code and works in all
1224 * cases. The 4.3BSD one works only for <, >, !=
1227 # define timercmp(tvp, uvp, cmp) \
1228 (((tvp)->tv_sec == (uvp)->tv_sec) ? \
1229 ((tvp)->tv_usec cmp (uvp)->tv_usec) : \
1230 ((tvp)->tv_sec cmp (uvp)->tv_sec))
1233 ptprint(struct process
*tp
)
1236 struct timeval tetime
, diff
;
1237 static struct timeval ztime
;
1238 struct sysrusage ru
;
1239 struct process
*pp
= tp
;
1244 ruadd(&ru
, &pp
->p_rusage
);
1245 tvsub(&diff
, &pp
->p_etime
, &pp
->p_btime
);
1246 if (timercmp(&diff
, &tetime
, >))
1248 } while ((pp
= pp
->p_friends
) != tp
);
1249 prusage(&zru
, &ru
, &tetime
, &ztime
);
1250 #else /* !BSDTIMES */
1252 timeval_t tetime
, diff
;
1253 static timeval_t ztime
;
1254 struct process_stats ru
;
1255 struct process
*pp
= tp
;
1260 ruadd(&ru
, &pp
->p_rusage
);
1261 tvsub(&diff
, &pp
->p_etime
, &pp
->p_btime
);
1262 if (timercmp(&diff
, &tetime
, >))
1264 } while ((pp
= pp
->p_friends
) != tp
);
1265 prusage(&zru
, &ru
, &tetime
, &ztime
);
1266 # else /* !_SEQUENT_ */
1268 static time_t ztime
= 0;
1269 static time_t zu_time
= 0;
1270 static time_t zs_time
= 0;
1271 time_t tetime
, diff
;
1272 time_t u_time
, s_time
;
1275 static clock_t ztime
= 0;
1276 static clock_t zu_time
= 0;
1277 static clock_t zs_time
= 0;
1278 clock_t tetime
, diff
;
1279 clock_t u_time
, s_time
;
1282 struct tms zts
, rts
;
1283 struct process
*pp
= tp
;
1289 u_time
+= pp
->p_utime
;
1290 s_time
+= pp
->p_stime
;
1291 diff
= pp
->p_etime
- pp
->p_btime
;
1294 } while ((pp
= pp
->p_friends
) != tp
);
1295 zts
.tms_utime
= zu_time
;
1296 zts
.tms_stime
= zs_time
;
1299 rts
.tms_utime
= u_time
;
1300 rts
.tms_stime
= s_time
;
1303 prusage(&zts
, &rts
, tetime
, ztime
);
1304 # endif /* !_SEQUENT_ */
1305 #endif /* !BSDTIMES */
1309 * dojobs - print all jobs
1313 dojobs(Char
**v
, struct command
*c
)
1316 int flag
= NUMBER
| NAME
| REASON
| JOBLIST
;
1323 if (v
[1] || !eq(*v
, STRml
))
1325 flag
|= FANCY
| JOBDIR
;
1327 for (i
= 1; i
<= pmaxindex
; i
++)
1328 for (pp
= proclist
.p_next
; pp
; pp
= pp
->p_next
)
1329 if (pp
->p_index
== i
&& pp
->p_procid
== pp
->p_jobid
) {
1330 pp
->p_flags
&= ~PNEEDNOTE
;
1331 if (!(pprint(pp
, flag
) & (PRUNNING
| PSTOPPED
)))
1338 * dofg - builtin - put the job into the foreground
1342 dofg(Char
**v
, struct command
*c
)
1351 if (!pstart(pp
, 1)) {
1353 stderror(ERR_NAME
|ERR_BADJOB
, pp
->p_command
, strerror(errno
));
1357 } while (*v
&& *++v
);
1361 * %... - builtin - put the job into the foreground
1365 dofg1(Char
**v
, struct command
*c
)
1372 if (!pstart(pp
, 1)) {
1374 stderror(ERR_NAME
|ERR_BADJOB
, pp
->p_command
, strerror(errno
));
1381 * dobg - builtin - put the job into the background
1385 dobg(Char
**v
, struct command
*c
)
1394 if (!pstart(pp
, 0)) {
1396 stderror(ERR_NAME
|ERR_BADJOB
, pp
->p_command
, strerror(errno
));
1398 } while (*v
&& *++v
);
1402 * %... & - builtin - put the job into the background
1406 dobg1(Char
**v
, struct command
*c
)
1412 if (!pstart(pp
, 0)) {
1414 stderror(ERR_NAME
|ERR_BADJOB
, pp
->p_command
, strerror(errno
));
1419 * dostop - builtin - stop the job
1423 dostop(Char
**v
, struct command
*c
)
1427 pkill(++v
, SIGSTOP
);
1428 #endif /* BSDJOBS */
1432 * dokill - builtin - superset of kill (1)
1436 dokill(Char
**v
, struct command
*c
)
1438 int signum
, len
= 0;
1444 if (v
[0] && v
[0][0] == '-') {
1445 if (v
[0][1] == 'l') {
1446 for (signum
= 0; signum
<= nsig
; signum
++) {
1447 if ((name
= mesg
[signum
].iname
) != NULL
) {
1448 len
+= strlen(name
) + 1;
1449 if (len
>= TermH
- 1) {
1451 len
= strlen(name
) + 1;
1453 xprintf("%s ", name
);
1460 if (v
[0][1] == 's') {
1465 stderror(ERR_NAME
| ERR_TOOFEW
);
1468 if (Isdigit(*sigptr
)) {
1470 signum
= strtoul(short2str(sigptr
), &ep
, 0);
1471 if (*ep
|| signum
< 0 || signum
> (MAXSIG
-1))
1472 stderror(ERR_NAME
| ERR_BADSIG
);
1475 for (signum
= 0; signum
<= nsig
; signum
++)
1476 if (mesg
[signum
].iname
&&
1477 eq(sigptr
, str2short(mesg
[signum
].iname
)))
1479 setname(short2str(sigptr
));
1480 stderror(ERR_NAME
| ERR_UNKSIG
);
1491 pkill(Char
**v
, int signum
)
1493 struct process
*pp
, *np
;
1494 int jobflags
= 0, err1
= 0;
1496 Char
*cp
, **vp
, **globbed
;
1498 /* Avoid globbing %?x patterns */
1499 for (vp
= v
; vp
&& *vp
; vp
++)
1503 v
= glob_all_or_error(v
);
1505 cleanup_push(globbed
, blk_cleanup
);
1508 cleanup_push(&pchild_disabled
, disabled_cleanup
);
1511 cleanup_push(&pintr_disabled
, disabled_cleanup
);
1514 while (v
&& (cp
= *v
)) {
1516 np
= pp
= pfind(cp
);
1518 jobflags
|= np
->p_flags
;
1519 while ((np
= np
->p_friends
) != pp
);
1527 if ((jobflags
& PRUNNING
) == 0) {
1529 xprintf(CGETS(17, 12, "%S: Already suspended\n"), cp
);
1530 # else /* !SUSPENDED */
1531 xprintf(CGETS(17, 13, "%S: Already stopped\n"), cp
);
1532 # endif /* !SUSPENDED */
1538 * suspend a process, kill -CONT %, then type jobs; the shell
1539 * says it is suspended, but it is running; thanks jaap..
1542 if (!pstart(pp
, 0)) {
1544 stderror(ERR_NAME
|ERR_BADJOB
, pp
->p_command
,
1551 #endif /* BSDJOBS */
1552 if (killpg(pp
->p_jobid
, signum
) < 0) {
1553 xprintf("%S: %s\n", cp
, strerror(errno
));
1557 if (signum
== SIGTERM
|| signum
== SIGHUP
)
1558 (void) killpg(pp
->p_jobid
, SIGCONT
);
1559 #endif /* BSDJOBS */
1561 else if (!(Isdigit(*cp
) || *cp
== '-'))
1562 stderror(ERR_NAME
| ERR_JOBARGS
);
1565 #ifndef WINNT_NATIVE
1566 pid
= strtol(short2str(cp
), &ep
, 10);
1568 pid
= strtoul(short2str(cp
), &ep
, 0);
1569 #endif /* WINNT_NATIVE */
1571 stderror(ERR_NAME
| ERR_JOBARGS
);
1572 else if (kill(pid
, signum
) < 0) {
1573 xprintf("%d: %s\n", pid
, strerror(errno
));
1578 if (signum
== SIGTERM
|| signum
== SIGHUP
)
1579 (void) kill(pid
, SIGCONT
);
1580 #endif /* BSDJOBS */
1585 cleanup_until(&pchild_disabled
);
1587 stderror(ERR_SILENT
);
1591 * pstart - start the job in foreground/background
1594 pstart(struct process
*pp
, int foregnd
)
1598 /* We don't use jobflags in this function right now (see below) */
1599 /* long jobflags = 0; */
1602 cleanup_push(&pchild_disabled
, disabled_cleanup
);
1605 /* We don't use jobflags in this function right now (see below) */
1606 /* jobflags |= np->p_flags; */
1607 if (np
->p_flags
& (PRUNNING
| PSTOPPED
)) {
1608 np
->p_flags
|= PRUNNING
;
1609 np
->p_flags
&= ~PSTOPPED
;
1611 np
->p_flags
|= PFOREGND
;
1613 np
->p_flags
&= ~PFOREGND
;
1615 } while ((np
= np
->p_friends
) != pp
);
1618 (void) pprint(pp
, foregnd
? NAME
| JOBDIR
: NUMBER
| NAME
| AMPERSAND
);
1620 /* GrP run jobcmd hook if foregrounding */
1622 job_cmd(pp
->p_command
);
1627 rv
= tcsetpgrp(FSHTTY
, pp
->p_jobid
);
1630 * 1. child process of csh (shell script) receives SIGTTIN/SIGTTOU
1631 * 2. parent process (csh) receives SIGCHLD
1632 * 3. The "csh" signal handling function pchild() is invoked
1633 * with a SIGCHLD signal.
1634 * 4. pchild() calls wait3(WNOHANG) which returns 0.
1635 * The child process is NOT ready to be waited for at this time.
1636 * pchild() returns without picking-up the correct status
1637 * for the child process which generated the SIGCHLD.
1638 * 5. CONSEQUENCE : csh is UNaware that the process is stopped
1639 * 6. THIS LINE HAS BEEN COMMENTED OUT : if (jobflags&PSTOPPED)
1640 * (beto@aixwiz.austin.ibm.com - aug/03/91)
1641 * 7. I removed the line completely and added extra checks for
1642 * pstart, so that if a job gets attached to and dies inside
1643 * a debugger it does not confuse the shell. [christos]
1644 * 8. on the nec sx-4 there seems to be a problem, which requires
1645 * a syscall(151, getpid(), getpid()) in osinit. Don't ask me
1646 * what this is doing. [schott@rzg.mpg.de]
1650 rv
= killpg(pp
->p_jobid
, SIGCONT
);
1651 #endif /* BSDJOBS */
1652 cleanup_until(&pchild_disabled
);
1657 panystop(int neednl
)
1662 for (pp
= proclist
.p_next
; pp
; pp
= pp
->p_next
)
1663 if (pp
->p_flags
& PSTOPPED
)
1664 stderror(ERR_STOPPED
, neednl
? "\n" : "");
1670 struct process
*pp
, *np
;
1672 if (cp
== 0 || cp
[1] == 0 || eq(cp
, STRcent2
) || eq(cp
, STRcentplus
)) {
1673 if (pcurrent
== NULL
)
1674 stderror(ERR_NAME
| ERR_JOBCUR
);
1677 if (eq(cp
, STRcentminus
) || eq(cp
, STRcenthash
)) {
1678 if (pprevious
== NULL
)
1679 stderror(ERR_NAME
| ERR_JOBPREV
);
1682 if (Isdigit(cp
[1])) {
1683 int idx
= atoi(short2str(cp
+ 1));
1685 for (pp
= proclist
.p_next
; pp
; pp
= pp
->p_next
)
1686 if (pp
->p_index
== idx
&& pp
->p_procid
== pp
->p_jobid
)
1688 stderror(ERR_NAME
| ERR_NOSUCHJOB
);
1691 for (pp
= proclist
.p_next
; pp
; pp
= pp
->p_next
)
1692 if (pp
->p_procid
== pp
->p_jobid
) {
1696 for (dp
= pp
->p_command
; *dp
; dp
++) {
1699 if (prefix(cp
+ 2, dp
))
1703 else if (prefix(cp
+ 1, pp
->p_command
)) {
1706 stderror(ERR_NAME
| ERR_AMBIG
);
1712 stderror(ERR_NAME
| (cp
[1] == '?' ? ERR_JOBPAT
: ERR_NOSUCHJOB
));
1719 * pgetcurr - find most recent job that is not pp, preferably stopped
1721 static struct process
*
1722 pgetcurr(struct process
*pp
)
1725 struct process
*xp
= NULL
;
1727 for (np
= proclist
.p_next
; np
; np
= np
->p_next
)
1728 if (np
!= pcurrent
&& np
!= pp
&& np
->p_procid
&&
1729 np
->p_procid
== np
->p_jobid
) {
1730 if (np
->p_flags
& PSTOPPED
)
1739 * donotify - flag the job so as to report termination asynchronously
1743 donotify(Char
**v
, struct command
*c
)
1749 pp
->p_flags
|= PNOTIFY
;
1754 synch_handler(int sno
)
1758 #endif /* SIGSYNCH */
1761 * Do the fork and whatever should be done in the child side that
1762 * should not be done if we are not forking at all (like for simple builtin's)
1763 * Also do everything that needs any signals fiddled with in the parent side
1765 * Wanttty tells whether process and/or tty pgrps are to be manipulated:
1766 * -1: leave tty alone; inherit pgrp from parent
1767 * 0: already have tty; manipulate process pgrps only
1768 * 1: want to claim tty; manipulate process and tty pgrps
1769 * It is usually just the value of tpgrp.
1773 pfork(struct command
*t
, int wanttty
)
1779 struct sigaction osa
, nsa
;
1780 #endif /* SIGSYNCH */
1783 * A child will be uninterruptible only under very special conditions.
1784 * Remember that the semantics of '&' is implemented by disconnecting the
1785 * process from the tty so signals do not need to ignored just for '&'.
1786 * Thus signals are set to default action for children unless: we have had
1787 * an "onintr -" (then specifically ignored) we are not playing with
1788 * signals (inherit action)
1791 ignint
= (tpgrp
== -1 && (t
->t_dflg
& F_NOINTERRUPT
))
1792 || (gointr
&& eq(gointr
, STRminus
));
1795 * Check for maximum nesting of 16 processes to avoid Forking loops
1798 stderror(ERR_NESTING
, 16);
1800 nsa
.sa_handler
= synch_handler
;
1801 sigfillset(&nsa
.sa_mask
);
1802 nsa
.sa_flags
= SA_RESTART
;
1803 if (sigaction(SIGSYNCH
, &nsa
, &osa
))
1804 stderror(ERR_SYSTEM
, "pfork: sigaction set", strerror(errno
));
1805 #endif /* SIGSYNCH */
1807 * Hold pchild() until we have the process installed in our table.
1811 cleanup_push(&pchild_disabled
, disabled_cleanup
);
1813 while ((pid
= fork()) == -1)
1815 (void) sleep(FORKSLEEP
);
1817 stderror(ERR_NOPROC
);
1819 (void)cleanup_push_mark(); /* Never to be popped */
1820 pchild_disabled
= 0;
1822 pgrp
= pcurrjob
? pcurrjob
->p_jobid
: getpid();
1825 #if !defined(BSDTIMES) && !defined(_SEQUENT_)
1827 #endif /* !defined(BSDTIMES) && !defined(_SEQUENT_) */
1830 setintr
= 0; /* until I think otherwise */
1832 * Children just get blown away on SIGINT, SIGQUIT unless "onintr
1835 (void) signal(SIGINT
, ignint
? SIG_IGN
: SIG_DFL
);
1836 (void) signal(SIGQUIT
, ignint
? SIG_IGN
: SIG_DFL
);
1839 /* make stoppable */
1840 (void) signal(SIGTSTP
, SIG_DFL
);
1841 (void) signal(SIGTTIN
, SIG_DFL
);
1842 (void) signal(SIGTTOU
, SIG_DFL
);
1844 #endif /* BSDJOBS */
1845 sigaction(SIGTERM
, &parterm
, NULL
);
1847 else if (tpgrp
== -1 && (t
->t_dflg
& F_NOINTERRUPT
)) {
1848 (void) signal(SIGINT
, SIG_IGN
);
1849 (void) signal(SIGQUIT
, SIG_IGN
);
1852 signal(SIGIO
, SIG_IGN
); /* ignore SIGIO in child too */
1855 pgetty(wanttty
, pgrp
);
1857 * Nohup and nice apply only to NODE_COMMAND's but it would be nice
1858 * (?!?) if you could say "nohup (foo;bar)" Then the parser would have
1859 * to know about nice/nohup/time
1861 if (t
->t_dflg
& F_NOHUP
)
1862 (void) signal(SIGHUP
, SIG_IGN
);
1863 if (t
->t_dflg
& F_NICE
) {
1864 int nval
= SIGN_EXTEND_CHAR(t
->t_nice
);
1865 #if defined(HAVE_SETPRIORITY) && defined(PRIO_PROCESS)
1866 if (setpriority(PRIO_PROCESS
, 0, nval
) == -1 && errno
)
1867 stderror(ERR_SYSTEM
, "setpriority", strerror(errno
));
1868 #else /* !HAVE_SETPRIORITY || !PRIO_PROCESS */
1870 #endif /* HAVE_SETPRIORITY && PRIO_PROCESS */
1873 if (t
->t_dflg
& F_VER
) {
1874 tsetenv(STRSYSTYPE
, t
->t_systype
? STRbsd43
: STRsys53
);
1879 /* rfw 8/89 now parent can continue */
1880 if (kill(getppid(), SIGSYNCH
))
1881 stderror(ERR_SYSTEM
, "pfork child: kill", strerror(errno
));
1882 #endif /* SIGSYNCH */
1889 * `Walking' process group fix from Beto Appleton.
1890 * (beto@aixwiz.austin.ibm.com)
1891 * If setpgid fails at this point that means that
1892 * our process leader has died. We flush the current
1893 * job and become the process leader ourselves.
1894 * The parent will figure that out later.
1896 pgrp
= pcurrjob
? pcurrjob
->p_jobid
: pid
;
1897 if (setpgid(pid
, pgrp
) == -1 && errno
== EPERM
) {
1900 * We don't care if this causes an error here;
1901 * then we are already in the right process group
1903 (void) setpgid(pid
, pgrp
= pid
);
1906 #endif /* POSIXJOBS */
1910 sigset_t pause_mask
;
1913 * rfw 8/89 Wait for child to own terminal. Solves half of ugly
1914 * synchronization problem. With this change, we know that the only
1915 * reason setpgrp to a previous process in a pipeline can fail is that
1916 * the previous process has already exited. Without this hack, he may
1917 * either have exited or not yet started to run. Two uglies become
1920 sigprocmask(SIG_BLOCK
, NULL
, &pause
);
1921 sigdelset(&pause_mask
, SIGCHLD
);
1922 sigdelset(&pause_mask
, SIGSYNCH
);
1923 sigsuspend(&pause_mask
);
1924 (void)handle_pending_signals();
1925 if (sigaction(SIGSYNCH
, &osa
, NULL
))
1926 stderror(ERR_SYSTEM
, "pfork parent: sigaction restore",
1929 #endif /* SIGSYNCH */
1932 cleanup_until(&pchild_disabled
);
1941 stderror(ERR_JOBCONTROL
);
1943 stderror(ERR_JOBCTRLSUB
);
1948 setttypgrp(int pgrp
)
1951 * If we are piping out a builtin, eg. 'echo | more' things can go
1952 * out of sequence, i.e. the more can run before the echo. This
1953 * can happen even if we have vfork, since the echo will be forked
1954 * with the regular fork. In this case, we need to set the tty
1955 * pgrp ourselves. If that happens, then the process will be still
1956 * alive. And the tty process group will already be set.
1957 * This should fix the famous sequent problem as a side effect:
1958 * The controlling terminal is lost if all processes in the
1959 * terminal process group are zombies. In this case tcgetpgrp()
1960 * returns 0. If this happens we must set the terminal process
1963 if (tcgetpgrp(FSHTTY
) != pgrp
) {
1965 struct sigaction old
;
1968 * tcsetpgrp will set SIGTTOU to all the the processes in
1969 * the background according to POSIX... We ignore this here.
1971 sigaction(SIGTTOU
, NULL
, &old
);
1972 signal(SIGTTOU
, SIG_IGN
);
1974 (void) tcsetpgrp(FSHTTY
, pgrp
);
1976 sigaction(SIGTTOU
, &old
, NULL
);
1984 * if we don't have vfork(), things can still go in the wrong order
1985 * resulting in the famous 'Stopped (tty output)'. But some systems
1986 * don't permit the setpgid() call, (these are more recent secure
1987 * systems such as ibm's aix), when they do. Then we'd rather print
1988 * an error message than hang the shell!
1989 * I am open to suggestions how to fix that.
1992 pgetty(int wanttty
, pid_t pgrp
)
1997 # endif /* POSIXJOBS */
1999 jobdebug_xprintf(("wanttty %d pid %d opgrp%d pgrp %d tpgrp %d\n",
2000 wanttty
, (int)getpid(), (int)pgrp
, (int)mygetpgrp(),
2001 (int)tcgetpgrp(FSHTTY
)));
2004 * christos: I am blocking the tty signals till I've set things
2009 sigaddset(&set
, SIGTSTP
);
2010 sigaddset(&set
, SIGTTIN
);
2011 (void)sigprocmask(SIG_BLOCK
, &set
, &oset
);
2012 cleanup_push(&oset
, sigprocmask_cleanup
);
2014 # endif /* POSIXJOBS */
2019 # endif /* !POSIXJOBS */
2022 * From: Michael Schroeder <mlschroe@immd4.informatik.uni-erlangen.de>
2023 * Don't check for tpgrp >= 0 so even non-interactive shells give
2024 * background jobs process groups Same for the comparison in the other part
2028 if (setpgid(0, pgrp
) == -1) {
2030 /* Walking process group fix; see above */
2031 if (setpgid(0, pgrp
= getpid()) == -1) {
2032 # endif /* POSIXJOBS */
2033 stderror(ERR_SYSTEM
, "setpgid child:\n", strerror(errno
));
2037 wanttty
= pgrp
; /* Now we really want the tty, since we became the
2038 * the process group leader
2040 # endif /* POSIXJOBS */
2047 cleanup_until(&oset
);
2049 # endif /* POSIXJOBS */
2051 jobdebug_xprintf(("wanttty %d pid %d pgrp %d tpgrp %d\n",
2052 wanttty
, getpid(), mygetpgrp(), tcgetpgrp(FSHTTY
)));
2055 tpgrp
= 0; /* gave tty away */
2056 #endif /* BSDJOBS */