xref: /netbsd-src/usr.bin/make/job.c (revision 9fb66d812c00ebfb445c0b47dea128f32aa6fe96)
1 /*	$NetBSD: job.c,v 1.429 2021/04/16 16:49:27 rillig Exp $	*/
2 
3 /*
4  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to Berkeley by
8  * Adam de Boor.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  */
34 
35 /*
36  * Copyright (c) 1988, 1989 by Adam de Boor
37  * Copyright (c) 1989 by Berkeley Softworks
38  * All rights reserved.
39  *
40  * This code is derived from software contributed to Berkeley by
41  * Adam de Boor.
42  *
43  * Redistribution and use in source and binary forms, with or without
44  * modification, are permitted provided that the following conditions
45  * are met:
46  * 1. Redistributions of source code must retain the above copyright
47  *    notice, this list of conditions and the following disclaimer.
48  * 2. Redistributions in binary form must reproduce the above copyright
49  *    notice, this list of conditions and the following disclaimer in the
50  *    documentation and/or other materials provided with the distribution.
51  * 3. All advertising materials mentioning features or use of this software
52  *    must display the following acknowledgement:
53  *	This product includes software developed by the University of
54  *	California, Berkeley and its contributors.
55  * 4. Neither the name of the University nor the names of its contributors
56  *    may be used to endorse or promote products derived from this software
57  *    without specific prior written permission.
58  *
59  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
60  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
61  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
62  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
63  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
64  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
65  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
66  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
67  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
68  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
69  * SUCH DAMAGE.
70  */
71 
72 /*
73  * job.c --
74  *	handle the creation etc. of our child processes.
75  *
76  * Interface:
77  *	Job_Init	Called to initialize this module. In addition,
78  *			the .BEGIN target is made including all of its
79  *			dependencies before this function returns.
80  *			Hence, the makefiles must have been parsed
81  *			before this function is called.
82  *
83  *	Job_End		Clean up any memory used.
84  *
85  *	Job_Make	Start the creation of the given target.
86  *
87  *	Job_CatchChildren
88  *			Check for and handle the termination of any
89  *			children. This must be called reasonably
90  *			frequently to keep the whole make going at
91  *			a decent clip, since job table entries aren't
92  *			removed until their process is caught this way.
93  *
94  *	Job_CatchOutput
95  *			Print any output our children have produced.
96  *			Should also be called fairly frequently to
97  *			keep the user informed of what's going on.
98  *			If no output is waiting, it will block for
99  *			a time given by the SEL_* constants, below,
100  *			or until output is ready.
101  *
102  *	Job_ParseShell	Given a special dependency line with target '.SHELL',
103  *			define the shell that is used for the creation
104  *			commands in jobs mode.
105  *
106  *	Job_Finish	Perform any final processing which needs doing.
107  *			This includes the execution of any commands
108  *			which have been/were attached to the .END
109  *			target. It should only be called when the
110  *			job table is empty.
111  *
112  *	Job_AbortAll	Abort all currently running jobs. Do not handle
113  *			output or do anything for the jobs, just kill them.
114  *			Should only be called in an emergency.
115  *
116  *	Job_CheckCommands
117  *			Verify that the commands for a target are
118  *			ok. Provide them if necessary and possible.
119  *
120  *	Job_Touch	Update a target without really updating it.
121  *
122  *	Job_Wait	Wait for all currently-running jobs to finish.
123  */
124 
125 #include <sys/types.h>
126 #include <sys/stat.h>
127 #include <sys/file.h>
128 #include <sys/time.h>
129 #include <sys/wait.h>
130 
131 #include <errno.h>
132 #ifndef USE_SELECT
133 #include <poll.h>
134 #endif
135 #include <signal.h>
136 #include <utime.h>
137 
138 #include "make.h"
139 #include "dir.h"
140 #include "job.h"
141 #include "pathnames.h"
142 #include "trace.h"
143 
144 /*	"@(#)job.c	8.2 (Berkeley) 3/19/94"	*/
145 MAKE_RCSID("$NetBSD: job.c,v 1.429 2021/04/16 16:49:27 rillig Exp $");
146 
147 /*
148  * A shell defines how the commands are run.  All commands for a target are
149  * written into a single file, which is then given to the shell to execute
150  * the commands from it.  The commands are written to the file using a few
151  * templates for echo control and error control.
152  *
153  * The name of the shell is the basename for the predefined shells, such as
154  * "sh", "csh", "bash".  For custom shells, it is the full pathname, and its
155  * basename is used to select the type of shell; the longest match wins.
156  * So /usr/pkg/bin/bash has type sh, /usr/local/bin/tcsh has type csh.
157  *
158  * The echoing of command lines is controlled using hasEchoCtl, echoOff,
159  * echoOn, noPrint and noPrintLen.  When echoOff is executed by the shell, it
160  * still outputs something, but this something is not interesting, therefore
161  * it is filtered out using noPrint and noPrintLen.
162  *
163  * The error checking for individual commands is controlled using hasErrCtl,
164  * errOn, errOff and runChkTmpl.
165  *
166  * In case a shell doesn't have error control, echoTmpl is a printf template
167  * for echoing the command, should echoing be on; runIgnTmpl is another
168  * printf template for executing the command while ignoring the return
169  * status. Finally runChkTmpl is a printf template for running the command and
170  * causing the shell to exit on error. If any of these strings are empty when
171  * hasErrCtl is false, the command will be executed anyway as is, and if it
172  * causes an error, so be it. Any templates set up to echo the command will
173  * escape any '$ ` \ "' characters in the command string to avoid unwanted
174  * shell code injection, the escaped command is safe to use in double quotes.
175  *
176  * The command-line flags "echo" and "exit" also control the behavior.  The
177  * "echo" flag causes the shell to start echoing commands right away.  The
178  * "exit" flag causes the shell to exit when an error is detected in one of
179  * the commands.
180  */
181 typedef struct Shell {
182 
183 	/*
184 	 * The name of the shell. For Bourne and C shells, this is used only
185 	 * to find the shell description when used as the single source of a
186 	 * .SHELL target. For user-defined shells, this is the full path of
187 	 * the shell.
188 	 */
189 	const char *name;
190 
191 	bool hasEchoCtl;	/* whether both echoOff and echoOn are there */
192 	const char *echoOff;	/* command to turn echoing off */
193 	const char *echoOn;	/* command to turn echoing back on */
194 	const char *noPrint;	/* text to skip when printing output from the
195 				 * shell. This is usually the same as echoOff */
196 	size_t noPrintLen;	/* length of noPrint command */
197 
198 	bool hasErrCtl;		/* whether error checking can be controlled
199 				 * for individual commands */
200 	const char *errOn;	/* command to turn on error checking */
201 	const char *errOff;	/* command to turn off error checking */
202 
203 	const char *echoTmpl;	/* template to echo a command */
204 	const char *runIgnTmpl;	/* template to run a command
205 				 * without error checking */
206 	const char *runChkTmpl;	/* template to run a command
207 				 * with error checking */
208 
209 	/* string literal that results in a newline character when it appears
210 	 * outside of any 'quote' or "quote" characters */
211 	const char *newline;
212 	char commentChar;	/* character used by shell for comment lines */
213 
214 	const char *echoFlag;	/* shell flag to echo commands */
215 	const char *errFlag;	/* shell flag to exit on error */
216 } Shell;
217 
218 typedef struct CommandFlags {
219 	/* Whether to echo the command before or instead of running it. */
220 	bool echo;
221 
222 	/* Run the command even in -n or -N mode. */
223 	bool always;
224 
225 	/*
226 	 * true if we turned error checking off before writing the command to
227 	 * the commands file and need to turn it back on
228 	 */
229 	bool ignerr;
230 } CommandFlags;
231 
232 /*
233  * Write shell commands to a file.
234  *
235  * TODO: keep track of whether commands are echoed.
236  * TODO: keep track of whether error checking is active.
237  */
238 typedef struct ShellWriter {
239 	FILE *f;
240 
241 	/* we've sent 'set -x' */
242 	bool xtraced;
243 
244 } ShellWriter;
245 
246 /*
247  * error handling variables
248  */
249 static int job_errors = 0;	/* number of errors reported */
250 static enum {			/* Why is the make aborting? */
251 	ABORT_NONE,
252 	ABORT_ERROR,		/* Aborted because of an error */
253 	ABORT_INTERRUPT,	/* Aborted because it was interrupted */
254 	ABORT_WAIT		/* Waiting for jobs to finish */
255 } aborting = ABORT_NONE;
256 #define JOB_TOKENS "+EI+"	/* Token to requeue for each abort state */
257 
258 /*
259  * this tracks the number of tokens currently "out" to build jobs.
260  */
261 int jobTokensRunning = 0;
262 
263 typedef enum JobStartResult {
264 	JOB_RUNNING,		/* Job is running */
265 	JOB_ERROR,		/* Error in starting the job */
266 	JOB_FINISHED		/* The job is already finished */
267 } JobStartResult;
268 
269 /*
270  * Descriptions for various shells.
271  *
272  * The build environment may set DEFSHELL_INDEX to one of
273  * DEFSHELL_INDEX_SH, DEFSHELL_INDEX_KSH, or DEFSHELL_INDEX_CSH, to
274  * select one of the predefined shells as the default shell.
275  *
276  * Alternatively, the build environment may set DEFSHELL_CUSTOM to the
277  * name or the full path of a sh-compatible shell, which will be used as
278  * the default shell.
279  *
280  * ".SHELL" lines in Makefiles can choose the default shell from the
281  * set defined here, or add additional shells.
282  */
283 
284 #ifdef DEFSHELL_CUSTOM
285 #define DEFSHELL_INDEX_CUSTOM 0
286 #define DEFSHELL_INDEX_SH     1
287 #define DEFSHELL_INDEX_KSH    2
288 #define DEFSHELL_INDEX_CSH    3
289 #else /* !DEFSHELL_CUSTOM */
290 #define DEFSHELL_INDEX_SH     0
291 #define DEFSHELL_INDEX_KSH    1
292 #define DEFSHELL_INDEX_CSH    2
293 #endif /* !DEFSHELL_CUSTOM */
294 
295 #ifndef DEFSHELL_INDEX
296 #define DEFSHELL_INDEX 0	/* DEFSHELL_INDEX_CUSTOM or DEFSHELL_INDEX_SH */
297 #endif /* !DEFSHELL_INDEX */
298 
299 static Shell shells[] = {
300 #ifdef DEFSHELL_CUSTOM
301     /*
302      * An sh-compatible shell with a non-standard name.
303      *
304      * Keep this in sync with the "sh" description below, but avoid
305      * non-portable features that might not be supplied by all
306      * sh-compatible shells.
307      */
308     {
309 	DEFSHELL_CUSTOM,	/* .name */
310 	false,			/* .hasEchoCtl */
311 	"",			/* .echoOff */
312 	"",			/* .echoOn */
313 	"",			/* .noPrint */
314 	0,			/* .noPrintLen */
315 	false,			/* .hasErrCtl */
316 	"",			/* .errOn */
317 	"",			/* .errOff */
318 	"echo \"%s\"\n",	/* .echoTmpl */
319 	"%s\n",			/* .runIgnTmpl */
320 	"{ %s \n} || exit $?\n", /* .runChkTmpl */
321 	"'\n'",			/* .newline */
322 	'#',			/* .commentChar */
323 	"",			/* .echoFlag */
324 	"",			/* .errFlag */
325     },
326 #endif /* DEFSHELL_CUSTOM */
327     /*
328      * SH description. Echo control is also possible and, under
329      * sun UNIX anyway, one can even control error checking.
330      */
331     {
332 	"sh",			/* .name */
333 	false,			/* .hasEchoCtl */
334 	"",			/* .echoOff */
335 	"",			/* .echoOn */
336 	"",			/* .noPrint */
337 	0,			/* .noPrintLen */
338 	false,			/* .hasErrCtl */
339 	"",			/* .errOn */
340 	"",			/* .errOff */
341 	"echo \"%s\"\n",	/* .echoTmpl */
342 	"%s\n",			/* .runIgnTmpl */
343 	"{ %s \n} || exit $?\n", /* .runChkTmpl */
344 	"'\n'",			/* .newline */
345 	'#',			/* .commentChar*/
346 #if defined(MAKE_NATIVE) && defined(__NetBSD__)
347 	/* XXX: -q is not really echoFlag, it's more like noEchoInSysFlag. */
348 	"q",			/* .echoFlag */
349 #else
350 	"",			/* .echoFlag */
351 #endif
352 	"",			/* .errFlag */
353     },
354     /*
355      * KSH description.
356      */
357     {
358 	"ksh",			/* .name */
359 	true,			/* .hasEchoCtl */
360 	"set +v",		/* .echoOff */
361 	"set -v",		/* .echoOn */
362 	"set +v",		/* .noPrint */
363 	6,			/* .noPrintLen */
364 	false,			/* .hasErrCtl */
365 	"",			/* .errOn */
366 	"",			/* .errOff */
367 	"echo \"%s\"\n",	/* .echoTmpl */
368 	"%s\n",			/* .runIgnTmpl */
369 	"{ %s \n} || exit $?\n", /* .runChkTmpl */
370 	"'\n'",			/* .newline */
371 	'#',			/* .commentChar */
372 	"v",			/* .echoFlag */
373 	"",			/* .errFlag */
374     },
375     /*
376      * CSH description. The csh can do echo control by playing
377      * with the setting of the 'echo' shell variable. Sadly,
378      * however, it is unable to do error control nicely.
379      */
380     {
381 	"csh",			/* .name */
382 	true,			/* .hasEchoCtl */
383 	"unset verbose",	/* .echoOff */
384 	"set verbose",		/* .echoOn */
385 	"unset verbose",	/* .noPrint */
386 	13,			/* .noPrintLen */
387 	false,			/* .hasErrCtl */
388 	"",			/* .errOn */
389 	"",			/* .errOff */
390 	"echo \"%s\"\n",	/* .echoTmpl */
391 	"csh -c \"%s || exit 0\"\n", /* .runIgnTmpl */
392 	"",			/* .runChkTmpl */
393 	"'\\\n'",		/* .newline */
394 	'#',			/* .commentChar */
395 	"v",			/* .echoFlag */
396 	"e",			/* .errFlag */
397     }
398 };
399 
400 /*
401  * This is the shell to which we pass all commands in the Makefile.
402  * It is set by the Job_ParseShell function.
403  */
404 static Shell *shell = &shells[DEFSHELL_INDEX];
405 const char *shellPath = NULL;	/* full pathname of executable image */
406 const char *shellName = NULL;	/* last component of shellPath */
407 char *shellErrFlag = NULL;
408 static char *shell_freeIt = NULL; /* Allocated memory for custom .SHELL */
409 
410 
411 static Job *job_table;		/* The structures that describe them */
412 static Job *job_table_end;	/* job_table + maxJobs */
413 static unsigned int wantToken;	/* we want a token */
414 static bool lurking_children = false;
415 static bool make_suspended = false; /* Whether we've seen a SIGTSTP (etc) */
416 
417 /*
418  * Set of descriptors of pipes connected to
419  * the output channels of children
420  */
421 static struct pollfd *fds = NULL;
422 static Job **jobByFdIndex = NULL;
423 static nfds_t fdsLen = 0;
424 static void watchfd(Job *);
425 static void clearfd(Job *);
426 static bool readyfd(Job *);
427 
428 static char *targPrefix = NULL; /* To identify a job change in the output. */
429 static Job tokenWaitJob;	/* token wait pseudo-job */
430 
431 static Job childExitJob;	/* child exit pseudo-job */
432 #define CHILD_EXIT "."
433 #define DO_JOB_RESUME "R"
434 
435 enum {
436 	npseudojobs = 2		/* number of pseudo-jobs */
437 };
438 
439 static sigset_t caught_signals;	/* Set of signals we handle */
440 static volatile sig_atomic_t caught_sigchld;
441 
442 static void CollectOutput(Job *, bool);
443 static void JobInterrupt(bool, int) MAKE_ATTR_DEAD;
444 static void JobRestartJobs(void);
445 static void JobSigReset(void);
446 
447 static void
448 SwitchOutputTo(GNode *gn)
449 {
450 	/* The node for which output was most recently produced. */
451 	static GNode *lastNode = NULL;
452 
453 	if (gn == lastNode)
454 		return;
455 	lastNode = gn;
456 
457 	if (opts.maxJobs != 1 && targPrefix != NULL && targPrefix[0] != '\0')
458 		(void)fprintf(stdout, "%s %s ---\n", targPrefix, gn->name);
459 }
460 
461 static unsigned
462 nfds_per_job(void)
463 {
464 #if defined(USE_FILEMON) && !defined(USE_FILEMON_DEV)
465 	if (useMeta)
466 		return 2;
467 #endif
468 	return 1;
469 }
470 
471 void
472 Job_FlagsToString(const Job *job, char *buf, size_t bufsize)
473 {
474 	snprintf(buf, bufsize, "%c%c%c",
475 	    job->ignerr ? 'i' : '-',
476 	    !job->echo ? 's' : '-',
477 	    job->special ? 'S' : '-');
478 }
479 
480 static void
481 DumpJobs(const char *where)
482 {
483 	Job *job;
484 	char flags[4];
485 
486 	debug_printf("job table @ %s\n", where);
487 	for (job = job_table; job < job_table_end; job++) {
488 		Job_FlagsToString(job, flags, sizeof flags);
489 		debug_printf("job %d, status %d, flags %s, pid %d\n",
490 		    (int)(job - job_table), job->status, flags, job->pid);
491 	}
492 }
493 
494 /*
495  * Delete the target of a failed, interrupted, or otherwise
496  * unsuccessful job unless inhibited by .PRECIOUS.
497  */
498 static void
499 JobDeleteTarget(GNode *gn)
500 {
501 	const char *file;
502 
503 	if (gn->type & OP_JOIN)
504 		return;
505 	if (gn->type & OP_PHONY)
506 		return;
507 	if (Targ_Precious(gn))
508 		return;
509 	if (opts.noExecute)
510 		return;
511 
512 	file = GNode_Path(gn);
513 	if (eunlink(file) != -1)
514 		Error("*** %s removed", file);
515 }
516 
517 /*
518  * JobSigLock/JobSigUnlock
519  *
520  * Signal lock routines to get exclusive access. Currently used to
521  * protect `jobs' and `stoppedJobs' list manipulations.
522  */
523 static void
524 JobSigLock(sigset_t *omaskp)
525 {
526 	if (sigprocmask(SIG_BLOCK, &caught_signals, omaskp) != 0) {
527 		Punt("JobSigLock: sigprocmask: %s", strerror(errno));
528 		sigemptyset(omaskp);
529 	}
530 }
531 
532 static void
533 JobSigUnlock(sigset_t *omaskp)
534 {
535 	(void)sigprocmask(SIG_SETMASK, omaskp, NULL);
536 }
537 
538 static void
539 JobCreatePipe(Job *job, int minfd)
540 {
541 	int i, fd, flags;
542 	int pipe_fds[2];
543 
544 	if (pipe(pipe_fds) == -1)
545 		Punt("Cannot create pipe: %s", strerror(errno));
546 
547 	for (i = 0; i < 2; i++) {
548 		/* Avoid using low numbered fds */
549 		fd = fcntl(pipe_fds[i], F_DUPFD, minfd);
550 		if (fd != -1) {
551 			close(pipe_fds[i]);
552 			pipe_fds[i] = fd;
553 		}
554 	}
555 
556 	job->inPipe = pipe_fds[0];
557 	job->outPipe = pipe_fds[1];
558 
559 	/* Set close-on-exec flag for both */
560 	if (fcntl(job->inPipe, F_SETFD, FD_CLOEXEC) == -1)
561 		Punt("Cannot set close-on-exec: %s", strerror(errno));
562 	if (fcntl(job->outPipe, F_SETFD, FD_CLOEXEC) == -1)
563 		Punt("Cannot set close-on-exec: %s", strerror(errno));
564 
565 	/*
566 	 * We mark the input side of the pipe non-blocking; we poll(2) the
567 	 * pipe when we're waiting for a job token, but we might lose the
568 	 * race for the token when a new one becomes available, so the read
569 	 * from the pipe should not block.
570 	 */
571 	flags = fcntl(job->inPipe, F_GETFL, 0);
572 	if (flags == -1)
573 		Punt("Cannot get flags: %s", strerror(errno));
574 	flags |= O_NONBLOCK;
575 	if (fcntl(job->inPipe, F_SETFL, flags) == -1)
576 		Punt("Cannot set flags: %s", strerror(errno));
577 }
578 
579 /* Pass the signal to each running job. */
580 static void
581 JobCondPassSig(int signo)
582 {
583 	Job *job;
584 
585 	DEBUG1(JOB, "JobCondPassSig(%d) called.\n", signo);
586 
587 	for (job = job_table; job < job_table_end; job++) {
588 		if (job->status != JOB_ST_RUNNING)
589 			continue;
590 		DEBUG2(JOB, "JobCondPassSig passing signal %d to child %d.\n",
591 		    signo, job->pid);
592 		KILLPG(job->pid, signo);
593 	}
594 }
595 
596 /*
597  * SIGCHLD handler.
598  *
599  * Sends a token on the child exit pipe to wake us up from select()/poll().
600  */
601 /*ARGSUSED*/
602 static void
603 JobChildSig(int signo MAKE_ATTR_UNUSED)
604 {
605 	caught_sigchld = 1;
606 	while (write(childExitJob.outPipe, CHILD_EXIT, 1) == -1 &&
607 	       errno == EAGAIN)
608 		continue;
609 }
610 
611 
612 /* Resume all stopped jobs. */
613 /*ARGSUSED*/
614 static void
615 JobContinueSig(int signo MAKE_ATTR_UNUSED)
616 {
617 	/*
618 	 * Defer sending SIGCONT to our stopped children until we return
619 	 * from the signal handler.
620 	 */
621 	while (write(childExitJob.outPipe, DO_JOB_RESUME, 1) == -1 &&
622 	       errno == EAGAIN)
623 		continue;
624 }
625 
626 /*
627  * Pass a signal on to all jobs, then resend to ourselves.
628  * We die by the same signal.
629  */
630 MAKE_ATTR_DEAD static void
631 JobPassSig_int(int signo)
632 {
633 	/* Run .INTERRUPT target then exit */
634 	JobInterrupt(true, signo);
635 }
636 
637 /*
638  * Pass a signal on to all jobs, then resend to ourselves.
639  * We die by the same signal.
640  */
641 MAKE_ATTR_DEAD static void
642 JobPassSig_term(int signo)
643 {
644 	/* Dont run .INTERRUPT target then exit */
645 	JobInterrupt(false, signo);
646 }
647 
648 static void
649 JobPassSig_suspend(int signo)
650 {
651 	sigset_t nmask, omask;
652 	struct sigaction act;
653 
654 	/* Suppress job started/continued messages */
655 	make_suspended = true;
656 
657 	/* Pass the signal onto every job */
658 	JobCondPassSig(signo);
659 
660 	/*
661 	 * Send ourselves the signal now we've given the message to everyone
662 	 * else. Note we block everything else possible while we're getting
663 	 * the signal. This ensures that all our jobs get continued when we
664 	 * wake up before we take any other signal.
665 	 */
666 	sigfillset(&nmask);
667 	sigdelset(&nmask, signo);
668 	(void)sigprocmask(SIG_SETMASK, &nmask, &omask);
669 
670 	act.sa_handler = SIG_DFL;
671 	sigemptyset(&act.sa_mask);
672 	act.sa_flags = 0;
673 	(void)sigaction(signo, &act, NULL);
674 
675 	DEBUG1(JOB, "JobPassSig passing signal %d to self.\n", signo);
676 
677 	(void)kill(getpid(), signo);
678 
679 	/*
680 	 * We've been continued.
681 	 *
682 	 * A whole host of signals continue to happen!
683 	 * SIGCHLD for any processes that actually suspended themselves.
684 	 * SIGCHLD for any processes that exited while we were alseep.
685 	 * The SIGCONT that actually caused us to wakeup.
686 	 *
687 	 * Since we defer passing the SIGCONT on to our children until
688 	 * the main processing loop, we can be sure that all the SIGCHLD
689 	 * events will have happened by then - and that the waitpid() will
690 	 * collect the child 'suspended' events.
691 	 * For correct sequencing we just need to ensure we process the
692 	 * waitpid() before passing on the SIGCONT.
693 	 *
694 	 * In any case nothing else is needed here.
695 	 */
696 
697 	/* Restore handler and signal mask */
698 	act.sa_handler = JobPassSig_suspend;
699 	(void)sigaction(signo, &act, NULL);
700 	(void)sigprocmask(SIG_SETMASK, &omask, NULL);
701 }
702 
703 static Job *
704 JobFindPid(int pid, JobStatus status, bool isJobs)
705 {
706 	Job *job;
707 
708 	for (job = job_table; job < job_table_end; job++) {
709 		if (job->status == status && job->pid == pid)
710 			return job;
711 	}
712 	if (DEBUG(JOB) && isJobs)
713 		DumpJobs("no pid");
714 	return NULL;
715 }
716 
717 /* Parse leading '@', '-' and '+', which control the exact execution mode. */
718 static void
719 ParseCommandFlags(char **pp, CommandFlags *out_cmdFlags)
720 {
721 	char *p = *pp;
722 	out_cmdFlags->echo = true;
723 	out_cmdFlags->ignerr = false;
724 	out_cmdFlags->always = false;
725 
726 	for (;;) {
727 		if (*p == '@')
728 			out_cmdFlags->echo = DEBUG(LOUD);
729 		else if (*p == '-')
730 			out_cmdFlags->ignerr = true;
731 		else if (*p == '+')
732 			out_cmdFlags->always = true;
733 		else
734 			break;
735 		p++;
736 	}
737 
738 	pp_skip_whitespace(&p);
739 
740 	*pp = p;
741 }
742 
743 /* Escape a string for a double-quoted string literal in sh, csh and ksh. */
744 static char *
745 EscapeShellDblQuot(const char *cmd)
746 {
747 	size_t i, j;
748 
749 	/* Worst that could happen is every char needs escaping. */
750 	char *esc = bmake_malloc(strlen(cmd) * 2 + 1);
751 	for (i = 0, j = 0; cmd[i] != '\0'; i++, j++) {
752 		if (cmd[i] == '$' || cmd[i] == '`' || cmd[i] == '\\' ||
753 		    cmd[i] == '"')
754 			esc[j++] = '\\';
755 		esc[j] = cmd[i];
756 	}
757 	esc[j] = '\0';
758 
759 	return esc;
760 }
761 
762 static void
763 ShellWriter_WriteFmt(ShellWriter *wr, const char *fmt, const char *arg)
764 {
765 	DEBUG1(JOB, fmt, arg);
766 
767 	(void)fprintf(wr->f, fmt, arg);
768 	/* XXX: Is flushing needed in any case, or only if f == stdout? */
769 	(void)fflush(wr->f);
770 }
771 
772 static void
773 ShellWriter_WriteLine(ShellWriter *wr, const char *line)
774 {
775 	ShellWriter_WriteFmt(wr, "%s\n", line);
776 }
777 
778 static void
779 ShellWriter_EchoOff(ShellWriter *wr)
780 {
781 	if (shell->hasEchoCtl)
782 		ShellWriter_WriteLine(wr, shell->echoOff);
783 }
784 
785 static void
786 ShellWriter_EchoCmd(ShellWriter *wr, const char *escCmd)
787 {
788 	ShellWriter_WriteFmt(wr, shell->echoTmpl, escCmd);
789 }
790 
791 static void
792 ShellWriter_EchoOn(ShellWriter *wr)
793 {
794 	if (shell->hasEchoCtl)
795 		ShellWriter_WriteLine(wr, shell->echoOn);
796 }
797 
798 static void
799 ShellWriter_TraceOn(ShellWriter *wr)
800 {
801 	if (!wr->xtraced) {
802 		ShellWriter_WriteLine(wr, "set -x");
803 		wr->xtraced = true;
804 	}
805 }
806 
807 static void
808 ShellWriter_ErrOff(ShellWriter *wr, bool echo)
809 {
810 	if (echo)
811 		ShellWriter_EchoOff(wr);
812 	ShellWriter_WriteLine(wr, shell->errOff);
813 	if (echo)
814 		ShellWriter_EchoOn(wr);
815 }
816 
817 static void
818 ShellWriter_ErrOn(ShellWriter *wr, bool echo)
819 {
820 	if (echo)
821 		ShellWriter_EchoOff(wr);
822 	ShellWriter_WriteLine(wr, shell->errOn);
823 	if (echo)
824 		ShellWriter_EchoOn(wr);
825 }
826 
827 /*
828  * The shell has no built-in error control, so emulate error control by
829  * enclosing each shell command in a template like "{ %s \n } || exit $?"
830  * (configurable per shell).
831  */
832 static void
833 JobWriteSpecialsEchoCtl(Job *job, ShellWriter *wr, CommandFlags *inout_cmdFlags,
834 			const char *escCmd, const char **inout_cmdTemplate)
835 {
836 	/* XXX: Why is the job modified at this point? */
837 	job->ignerr = true;
838 
839 	if (job->echo && inout_cmdFlags->echo) {
840 		ShellWriter_EchoOff(wr);
841 		ShellWriter_EchoCmd(wr, escCmd);
842 
843 		/*
844 		 * Leave echoing off so the user doesn't see the commands
845 		 * for toggling the error checking.
846 		 */
847 		inout_cmdFlags->echo = false;
848 	} else {
849 		if (inout_cmdFlags->echo)
850 			ShellWriter_EchoCmd(wr, escCmd);
851 	}
852 	*inout_cmdTemplate = shell->runIgnTmpl;
853 
854 	/*
855 	 * The template runIgnTmpl already takes care of ignoring errors,
856 	 * so pretend error checking is still on.
857 	 * XXX: What effects does this have, and why is it necessary?
858 	 */
859 	inout_cmdFlags->ignerr = false;
860 }
861 
862 static void
863 JobWriteSpecials(Job *job, ShellWriter *wr, const char *escCmd, bool run,
864 		 CommandFlags *inout_cmdFlags, const char **inout_cmdTemplate)
865 {
866 	if (!run) {
867 		/*
868 		 * If there is no command to run, there is no need to switch
869 		 * error checking off and on again for nothing.
870 		 */
871 		inout_cmdFlags->ignerr = false;
872 	} else if (shell->hasErrCtl)
873 		ShellWriter_ErrOff(wr, job->echo && inout_cmdFlags->echo);
874 	else if (shell->runIgnTmpl != NULL && shell->runIgnTmpl[0] != '\0') {
875 		JobWriteSpecialsEchoCtl(job, wr, inout_cmdFlags, escCmd,
876 		    inout_cmdTemplate);
877 	} else
878 		inout_cmdFlags->ignerr = false;
879 }
880 
881 /*
882  * Write a shell command to the job's commands file, to be run later.
883  *
884  * If the command starts with '@' and neither the -s nor the -n flag was
885  * given to make, stick a shell-specific echoOff command in the script.
886  *
887  * If the command starts with '-' and the shell has no error control (none
888  * of the predefined shells has that), ignore errors for the entire job.
889  *
890  * XXX: Why ignore errors for the entire job?  This is even documented in the
891  * manual page, but without any rationale since there is no known rationale.
892  *
893  * XXX: The manual page says the '-' "affects the entire job", but that's not
894  * accurate.  The '-' does not affect the commands before the '-'.
895  *
896  * If the command is just "...", skip all further commands of this job.  These
897  * commands are attached to the .END node instead and will be run by
898  * Job_Finish after all other targets have been made.
899  */
900 static void
901 JobWriteCommand(Job *job, ShellWriter *wr, StringListNode *ln, const char *ucmd)
902 {
903 	bool run;
904 
905 	CommandFlags cmdFlags;
906 	/* Template for writing a command to the shell file */
907 	const char *cmdTemplate;
908 	char *xcmd;		/* The expanded command */
909 	char *xcmdStart;
910 	char *escCmd;		/* xcmd escaped to be used in double quotes */
911 
912 	run = GNode_ShouldExecute(job->node);
913 
914 	Var_Subst(ucmd, job->node, VARE_WANTRES, &xcmd);
915 	/* TODO: handle errors */
916 	xcmdStart = xcmd;
917 
918 	cmdTemplate = "%s\n";
919 
920 	ParseCommandFlags(&xcmd, &cmdFlags);
921 
922 	/* The '+' command flag overrides the -n or -N options. */
923 	if (cmdFlags.always && !run) {
924 		/*
925 		 * We're not actually executing anything...
926 		 * but this one needs to be - use compat mode just for it.
927 		 */
928 		Compat_RunCommand(ucmd, job->node, ln);
929 		free(xcmdStart);
930 		return;
931 	}
932 
933 	/*
934 	 * If the shell doesn't have error control, the alternate echoing
935 	 * will be done (to avoid showing additional error checking code)
936 	 * and this needs some characters escaped.
937 	 */
938 	escCmd = shell->hasErrCtl ? NULL : EscapeShellDblQuot(xcmd);
939 
940 	if (!cmdFlags.echo) {
941 		if (job->echo && run && shell->hasEchoCtl) {
942 			ShellWriter_EchoOff(wr);
943 		} else {
944 			if (shell->hasErrCtl)
945 				cmdFlags.echo = true;
946 		}
947 	}
948 
949 	if (cmdFlags.ignerr) {
950 		JobWriteSpecials(job, wr, escCmd, run, &cmdFlags, &cmdTemplate);
951 	} else {
952 
953 		/*
954 		 * If errors are being checked and the shell doesn't have
955 		 * error control but does supply an runChkTmpl template, then
956 		 * set up commands to run through it.
957 		 */
958 
959 		if (!shell->hasErrCtl && shell->runChkTmpl != NULL &&
960 		    shell->runChkTmpl[0] != '\0') {
961 			if (job->echo && cmdFlags.echo) {
962 				ShellWriter_EchoOff(wr);
963 				ShellWriter_EchoCmd(wr, escCmd);
964 				cmdFlags.echo = false;
965 			}
966 			/*
967 			 * If it's a comment line or blank, avoid the possible
968 			 * syntax error generated by "{\n} || exit $?".
969 			 */
970 			cmdTemplate = escCmd[0] == shell->commentChar ||
971 				      escCmd[0] == '\0'
972 			    ? shell->runIgnTmpl
973 			    : shell->runChkTmpl;
974 			cmdFlags.ignerr = false;
975 		}
976 	}
977 
978 	if (DEBUG(SHELL) && strcmp(shellName, "sh") == 0)
979 		ShellWriter_TraceOn(wr);
980 
981 	ShellWriter_WriteFmt(wr, cmdTemplate, xcmd);
982 	free(xcmdStart);
983 	free(escCmd);
984 
985 	if (cmdFlags.ignerr)
986 		ShellWriter_ErrOn(wr, cmdFlags.echo && job->echo);
987 
988 	if (!cmdFlags.echo)
989 		ShellWriter_EchoOn(wr);
990 }
991 
992 /*
993  * Write all commands to the shell file that is later executed.
994  *
995  * The special command "..." stops writing and saves the remaining commands
996  * to be executed later, when the target '.END' is made.
997  *
998  * Return whether at least one command was written to the shell file.
999  */
1000 static bool
1001 JobWriteCommands(Job *job)
1002 {
1003 	StringListNode *ln;
1004 	bool seen = false;
1005 	ShellWriter wr;
1006 
1007 	wr.f = job->cmdFILE;
1008 	wr.xtraced = false;
1009 
1010 	for (ln = job->node->commands.first; ln != NULL; ln = ln->next) {
1011 		const char *cmd = ln->datum;
1012 
1013 		if (strcmp(cmd, "...") == 0) {
1014 			job->node->type |= OP_SAVE_CMDS;
1015 			job->tailCmds = ln->next;
1016 			break;
1017 		}
1018 
1019 		JobWriteCommand(job, &wr, ln, ln->datum);
1020 		seen = true;
1021 	}
1022 
1023 	return seen;
1024 }
1025 
1026 /*
1027  * Save the delayed commands (those after '...'), to be executed later in
1028  * the '.END' node, when everything else is done.
1029  */
1030 static void
1031 JobSaveCommands(Job *job)
1032 {
1033 	StringListNode *ln;
1034 
1035 	for (ln = job->tailCmds; ln != NULL; ln = ln->next) {
1036 		const char *cmd = ln->datum;
1037 		char *expanded_cmd;
1038 		/*
1039 		 * XXX: This Var_Subst is only intended to expand the dynamic
1040 		 * variables such as .TARGET, .IMPSRC.  It is not intended to
1041 		 * expand the other variables as well; see deptgt-end.mk.
1042 		 */
1043 		(void)Var_Subst(cmd, job->node, VARE_WANTRES, &expanded_cmd);
1044 		/* TODO: handle errors */
1045 		Lst_Append(&Targ_GetEndNode()->commands, expanded_cmd);
1046 	}
1047 }
1048 
1049 
1050 /* Called to close both input and output pipes when a job is finished. */
1051 static void
1052 JobClosePipes(Job *job)
1053 {
1054 	clearfd(job);
1055 	(void)close(job->outPipe);
1056 	job->outPipe = -1;
1057 
1058 	CollectOutput(job, true);
1059 	(void)close(job->inPipe);
1060 	job->inPipe = -1;
1061 }
1062 
1063 static void
1064 JobFinishDoneExitedError(Job *job, int *inout_status)
1065 {
1066 	SwitchOutputTo(job->node);
1067 #ifdef USE_META
1068 	if (useMeta) {
1069 		meta_job_error(job, job->node,
1070 		    job->ignerr, WEXITSTATUS(*inout_status));
1071 	}
1072 #endif
1073 	if (!shouldDieQuietly(job->node, -1)) {
1074 		(void)printf("*** [%s] Error code %d%s\n",
1075 		    job->node->name, WEXITSTATUS(*inout_status),
1076 		    job->ignerr ? " (ignored)" : "");
1077 	}
1078 
1079 	if (job->ignerr)
1080 		*inout_status = 0;
1081 	else {
1082 		if (deleteOnError)
1083 			JobDeleteTarget(job->node);
1084 		PrintOnError(job->node, NULL);
1085 	}
1086 }
1087 
1088 static void
1089 JobFinishDoneExited(Job *job, int *inout_status)
1090 {
1091 	DEBUG2(JOB, "Process %d [%s] exited.\n", job->pid, job->node->name);
1092 
1093 	if (WEXITSTATUS(*inout_status) != 0)
1094 		JobFinishDoneExitedError(job, inout_status);
1095 	else if (DEBUG(JOB)) {
1096 		SwitchOutputTo(job->node);
1097 		(void)printf("*** [%s] Completed successfully\n",
1098 		    job->node->name);
1099 	}
1100 }
1101 
1102 static void
1103 JobFinishDoneSignaled(Job *job, int status)
1104 {
1105 	SwitchOutputTo(job->node);
1106 	(void)printf("*** [%s] Signal %d\n", job->node->name, WTERMSIG(status));
1107 	if (deleteOnError)
1108 		JobDeleteTarget(job->node);
1109 }
1110 
1111 static void
1112 JobFinishDone(Job *job, int *inout_status)
1113 {
1114 	if (WIFEXITED(*inout_status))
1115 		JobFinishDoneExited(job, inout_status);
1116 	else
1117 		JobFinishDoneSignaled(job, *inout_status);
1118 
1119 	(void)fflush(stdout);
1120 }
1121 
1122 /*
1123  * Do final processing for the given job including updating parent nodes and
1124  * starting new jobs as available/necessary.
1125  *
1126  * Deferred commands for the job are placed on the .END node.
1127  *
1128  * If there was a serious error (job_errors != 0; not an ignored one), no more
1129  * jobs will be started.
1130  *
1131  * Input:
1132  *	job		job to finish
1133  *	status		sub-why job went away
1134  */
1135 static void
1136 JobFinish(Job *job, int status)
1137 {
1138 	bool done, return_job_token;
1139 
1140 	DEBUG3(JOB, "JobFinish: %d [%s], status %d\n",
1141 	    job->pid, job->node->name, status);
1142 
1143 	if ((WIFEXITED(status) &&
1144 	     ((WEXITSTATUS(status) != 0 && !job->ignerr))) ||
1145 	    WIFSIGNALED(status)) {
1146 		/* Finished because of an error. */
1147 
1148 		JobClosePipes(job);
1149 		if (job->cmdFILE != NULL && job->cmdFILE != stdout) {
1150 			(void)fclose(job->cmdFILE);
1151 			job->cmdFILE = NULL;
1152 		}
1153 		done = true;
1154 
1155 	} else if (WIFEXITED(status)) {
1156 		/*
1157 		 * Deal with ignored errors in -B mode. We need to print a
1158 		 * message telling of the ignored error as well as to run
1159 		 * the next command.
1160 		 */
1161 		done = WEXITSTATUS(status) != 0;
1162 
1163 		JobClosePipes(job);
1164 
1165 	} else {
1166 		/* No need to close things down or anything. */
1167 		done = false;
1168 	}
1169 
1170 	if (done)
1171 		JobFinishDone(job, &status);
1172 
1173 #ifdef USE_META
1174 	if (useMeta) {
1175 		int meta_status = meta_job_finish(job);
1176 		if (meta_status != 0 && status == 0)
1177 			status = meta_status;
1178 	}
1179 #endif
1180 
1181 	return_job_token = false;
1182 
1183 	Trace_Log(JOBEND, job);
1184 	if (!job->special) {
1185 		if (status != 0 ||
1186 		    (aborting == ABORT_ERROR) || aborting == ABORT_INTERRUPT)
1187 			return_job_token = true;
1188 	}
1189 
1190 	if (aborting != ABORT_ERROR && aborting != ABORT_INTERRUPT &&
1191 	    (status == 0)) {
1192 		/*
1193 		 * As long as we aren't aborting and the job didn't return a
1194 		 * non-zero status that we shouldn't ignore, we call
1195 		 * Make_Update to update the parents.
1196 		 */
1197 		JobSaveCommands(job);
1198 		job->node->made = MADE;
1199 		if (!job->special)
1200 			return_job_token = true;
1201 		Make_Update(job->node);
1202 		job->status = JOB_ST_FREE;
1203 	} else if (status != 0) {
1204 		job_errors++;
1205 		job->status = JOB_ST_FREE;
1206 	}
1207 
1208 	if (job_errors > 0 && !opts.keepgoing && aborting != ABORT_INTERRUPT) {
1209 		/* Prevent more jobs from getting started. */
1210 		aborting = ABORT_ERROR;
1211 	}
1212 
1213 	if (return_job_token)
1214 		Job_TokenReturn();
1215 
1216 	if (aborting == ABORT_ERROR && jobTokensRunning == 0)
1217 		Finish(job_errors);
1218 }
1219 
1220 static void
1221 TouchRegular(GNode *gn)
1222 {
1223 	const char *file = GNode_Path(gn);
1224 	struct utimbuf times;
1225 	int fd;
1226 	char c;
1227 
1228 	times.actime = now;
1229 	times.modtime = now;
1230 	if (utime(file, &times) >= 0)
1231 		return;
1232 
1233 	fd = open(file, O_RDWR | O_CREAT, 0666);
1234 	if (fd < 0) {
1235 		(void)fprintf(stderr, "*** couldn't touch %s: %s\n",
1236 		    file, strerror(errno));
1237 		(void)fflush(stderr);
1238 		return;		/* XXX: What about propagating the error? */
1239 	}
1240 
1241 	/* Last resort: update the file's time stamps in the traditional way.
1242 	 * XXX: This doesn't work for empty files, which are sometimes used
1243 	 * as marker files. */
1244 	if (read(fd, &c, 1) == 1) {
1245 		(void)lseek(fd, 0, SEEK_SET);
1246 		while (write(fd, &c, 1) == -1 && errno == EAGAIN)
1247 			continue;
1248 	}
1249 	(void)close(fd);	/* XXX: What about propagating the error? */
1250 }
1251 
1252 /*
1253  * Touch the given target. Called by JobStart when the -t flag was given.
1254  *
1255  * The modification date of the file is changed.
1256  * If the file did not exist, it is created.
1257  */
1258 void
1259 Job_Touch(GNode *gn, bool echo)
1260 {
1261 	if (gn->type &
1262 	    (OP_JOIN | OP_USE | OP_USEBEFORE | OP_EXEC | OP_OPTIONAL |
1263 	     OP_SPECIAL | OP_PHONY)) {
1264 		/*
1265 		 * These are "virtual" targets and should not really be
1266 		 * created.
1267 		 */
1268 		return;
1269 	}
1270 
1271 	if (echo || !GNode_ShouldExecute(gn)) {
1272 		(void)fprintf(stdout, "touch %s\n", gn->name);
1273 		(void)fflush(stdout);
1274 	}
1275 
1276 	if (!GNode_ShouldExecute(gn))
1277 		return;
1278 
1279 	if (gn->type & OP_ARCHV)
1280 		Arch_Touch(gn);
1281 	else if (gn->type & OP_LIB)
1282 		Arch_TouchLib(gn);
1283 	else
1284 		TouchRegular(gn);
1285 }
1286 
1287 /*
1288  * Make sure the given node has all the commands it needs.
1289  *
1290  * The node will have commands from the .DEFAULT rule added to it if it
1291  * needs them.
1292  *
1293  * Input:
1294  *	gn		The target whose commands need verifying
1295  *	abortProc	Function to abort with message
1296  *
1297  * Results:
1298  *	true if the commands list is/was ok.
1299  */
1300 bool
1301 Job_CheckCommands(GNode *gn, void (*abortProc)(const char *, ...))
1302 {
1303 	if (GNode_IsTarget(gn))
1304 		return true;
1305 	if (!Lst_IsEmpty(&gn->commands))
1306 		return true;
1307 	if ((gn->type & OP_LIB) && !Lst_IsEmpty(&gn->children))
1308 		return true;
1309 
1310 	/*
1311 	 * No commands. Look for .DEFAULT rule from which we might infer
1312 	 * commands.
1313 	 */
1314 	if (defaultNode != NULL && !Lst_IsEmpty(&defaultNode->commands) &&
1315 	    !(gn->type & OP_SPECIAL)) {
1316 		/*
1317 		 * The traditional Make only looks for a .DEFAULT if the node
1318 		 * was never the target of an operator, so that's what we do
1319 		 * too.
1320 		 *
1321 		 * The .DEFAULT node acts like a transformation rule, in that
1322 		 * gn also inherits any attributes or sources attached to
1323 		 * .DEFAULT itself.
1324 		 */
1325 		Make_HandleUse(defaultNode, gn);
1326 		Var_Set(gn, IMPSRC, GNode_VarTarget(gn));
1327 		return true;
1328 	}
1329 
1330 	Dir_UpdateMTime(gn, false);
1331 	if (gn->mtime != 0 || (gn->type & OP_SPECIAL))
1332 		return true;
1333 
1334 	/*
1335 	 * The node wasn't the target of an operator.  We have no .DEFAULT
1336 	 * rule to go on and the target doesn't already exist. There's
1337 	 * nothing more we can do for this branch. If the -k flag wasn't
1338 	 * given, we stop in our tracks, otherwise we just don't update
1339 	 * this node's parents so they never get examined.
1340 	 */
1341 
1342 	if (gn->flags & FROM_DEPEND) {
1343 		if (!Job_RunTarget(".STALE", gn->fname))
1344 			fprintf(stdout,
1345 			    "%s: %s, %d: ignoring stale %s for %s\n",
1346 			    progname, gn->fname, gn->lineno, makeDependfile,
1347 			    gn->name);
1348 		return true;
1349 	}
1350 
1351 	if (gn->type & OP_OPTIONAL) {
1352 		(void)fprintf(stdout, "%s: don't know how to make %s (%s)\n",
1353 		    progname, gn->name, "ignored");
1354 		(void)fflush(stdout);
1355 		return true;
1356 	}
1357 
1358 	if (opts.keepgoing) {
1359 		(void)fprintf(stdout, "%s: don't know how to make %s (%s)\n",
1360 		    progname, gn->name, "continuing");
1361 		(void)fflush(stdout);
1362 		return false;
1363 	}
1364 
1365 	abortProc("%s: don't know how to make %s. Stop", progname, gn->name);
1366 	return false;
1367 }
1368 
1369 /*
1370  * Execute the shell for the given job.
1371  *
1372  * See Job_CatchOutput for handling the output of the shell.
1373  */
1374 static void
1375 JobExec(Job *job, char **argv)
1376 {
1377 	int cpid;		/* ID of new child */
1378 	sigset_t mask;
1379 
1380 	if (DEBUG(JOB)) {
1381 		int i;
1382 
1383 		debug_printf("Running %s\n", job->node->name);
1384 		debug_printf("\tCommand: ");
1385 		for (i = 0; argv[i] != NULL; i++) {
1386 			debug_printf("%s ", argv[i]);
1387 		}
1388 		debug_printf("\n");
1389 	}
1390 
1391 	/*
1392 	 * Some jobs produce no output and it's disconcerting to have
1393 	 * no feedback of their running (since they produce no output, the
1394 	 * banner with their name in it never appears). This is an attempt to
1395 	 * provide that feedback, even if nothing follows it.
1396 	 */
1397 	if (job->echo)
1398 		SwitchOutputTo(job->node);
1399 
1400 	/* No interruptions until this job is on the `jobs' list */
1401 	JobSigLock(&mask);
1402 
1403 	/* Pre-emptively mark job running, pid still zero though */
1404 	job->status = JOB_ST_RUNNING;
1405 
1406 	Var_ReexportVars();
1407 
1408 	cpid = vfork();
1409 	if (cpid == -1)
1410 		Punt("Cannot vfork: %s", strerror(errno));
1411 
1412 	if (cpid == 0) {
1413 		/* Child */
1414 		sigset_t tmask;
1415 
1416 #ifdef USE_META
1417 		if (useMeta) {
1418 			meta_job_child(job);
1419 		}
1420 #endif
1421 		/*
1422 		 * Reset all signal handlers; this is necessary because we
1423 		 * also need to unblock signals before we exec(2).
1424 		 */
1425 		JobSigReset();
1426 
1427 		/* Now unblock signals */
1428 		sigemptyset(&tmask);
1429 		JobSigUnlock(&tmask);
1430 
1431 		/*
1432 		 * Must duplicate the input stream down to the child's input
1433 		 * and reset it to the beginning (again). Since the stream
1434 		 * was marked close-on-exec, we must clear that bit in the
1435 		 * new input.
1436 		 */
1437 		if (dup2(fileno(job->cmdFILE), 0) == -1)
1438 			execDie("dup2", "job->cmdFILE");
1439 		if (fcntl(0, F_SETFD, 0) == -1)
1440 			execDie("fcntl clear close-on-exec", "stdin");
1441 		if (lseek(0, 0, SEEK_SET) == -1)
1442 			execDie("lseek to 0", "stdin");
1443 
1444 		if (job->node->type & (OP_MAKE | OP_SUBMAKE)) {
1445 			/*
1446 			 * Pass job token pipe to submakes.
1447 			 */
1448 			if (fcntl(tokenWaitJob.inPipe, F_SETFD, 0) == -1)
1449 				execDie("clear close-on-exec",
1450 				    "tokenWaitJob.inPipe");
1451 			if (fcntl(tokenWaitJob.outPipe, F_SETFD, 0) == -1)
1452 				execDie("clear close-on-exec",
1453 				    "tokenWaitJob.outPipe");
1454 		}
1455 
1456 		/*
1457 		 * Set up the child's output to be routed through the pipe
1458 		 * we've created for it.
1459 		 */
1460 		if (dup2(job->outPipe, 1) == -1)
1461 			execDie("dup2", "job->outPipe");
1462 
1463 		/*
1464 		 * The output channels are marked close on exec. This bit
1465 		 * was duplicated by the dup2(on some systems), so we have
1466 		 * to clear it before routing the shell's error output to
1467 		 * the same place as its standard output.
1468 		 */
1469 		if (fcntl(1, F_SETFD, 0) == -1)
1470 			execDie("clear close-on-exec", "stdout");
1471 		if (dup2(1, 2) == -1)
1472 			execDie("dup2", "1, 2");
1473 
1474 		/*
1475 		 * We want to switch the child into a different process
1476 		 * family so we can kill it and all its descendants in
1477 		 * one fell swoop, by killing its process family, but not
1478 		 * commit suicide.
1479 		 */
1480 #if defined(MAKE_NATIVE) || defined(HAVE_SETPGID)
1481 # if defined(SYSV)
1482 		/* XXX: dsl - I'm sure this should be setpgrp()... */
1483 		(void)setsid();
1484 # else
1485 		(void)setpgid(0, getpid());
1486 # endif
1487 #endif
1488 
1489 		(void)execv(shellPath, argv);
1490 		execDie("exec", shellPath);
1491 	}
1492 
1493 	/* Parent, continuing after the child exec */
1494 	job->pid = cpid;
1495 
1496 	Trace_Log(JOBSTART, job);
1497 
1498 #ifdef USE_META
1499 	if (useMeta) {
1500 		meta_job_parent(job, cpid);
1501 	}
1502 #endif
1503 
1504 	/*
1505 	 * Set the current position in the buffer to the beginning
1506 	 * and mark another stream to watch in the outputs mask
1507 	 */
1508 	job->curPos = 0;
1509 
1510 	watchfd(job);
1511 
1512 	if (job->cmdFILE != NULL && job->cmdFILE != stdout) {
1513 		(void)fclose(job->cmdFILE);
1514 		job->cmdFILE = NULL;
1515 	}
1516 
1517 	/* Now that the job is actually running, add it to the table. */
1518 	if (DEBUG(JOB)) {
1519 		debug_printf("JobExec(%s): pid %d added to jobs table\n",
1520 		    job->node->name, job->pid);
1521 		DumpJobs("job started");
1522 	}
1523 	JobSigUnlock(&mask);
1524 }
1525 
1526 /* Create the argv needed to execute the shell for a given job. */
1527 static void
1528 JobMakeArgv(Job *job, char **argv)
1529 {
1530 	int argc;
1531 	static char args[10];	/* For merged arguments */
1532 
1533 	argv[0] = UNCONST(shellName);
1534 	argc = 1;
1535 
1536 	if ((shell->errFlag != NULL && shell->errFlag[0] != '-') ||
1537 	    (shell->echoFlag != NULL && shell->echoFlag[0] != '-')) {
1538 		/*
1539 		 * At least one of the flags doesn't have a minus before it,
1540 		 * so merge them together. Have to do this because the Bourne
1541 		 * shell thinks its second argument is a file to source.
1542 		 * Grrrr. Note the ten-character limitation on the combined
1543 		 * arguments.
1544 		 *
1545 		 * TODO: Research until when the above comments were
1546 		 * practically relevant.
1547 		 */
1548 		(void)snprintf(args, sizeof args, "-%s%s",
1549 		    (job->ignerr ? "" :
1550 			(shell->errFlag != NULL ? shell->errFlag : "")),
1551 		    (!job->echo ? "" :
1552 			(shell->echoFlag != NULL ? shell->echoFlag : "")));
1553 
1554 		if (args[1] != '\0') {
1555 			argv[argc] = args;
1556 			argc++;
1557 		}
1558 	} else {
1559 		if (!job->ignerr && shell->errFlag != NULL) {
1560 			argv[argc] = UNCONST(shell->errFlag);
1561 			argc++;
1562 		}
1563 		if (job->echo && shell->echoFlag != NULL) {
1564 			argv[argc] = UNCONST(shell->echoFlag);
1565 			argc++;
1566 		}
1567 	}
1568 	argv[argc] = NULL;
1569 }
1570 
1571 static void
1572 JobWriteShellCommands(Job *job, GNode *gn, bool cmdsOK, bool *out_run)
1573 {
1574 	/*
1575 	 * tfile is the name of a file into which all shell commands
1576 	 * are put. It is removed before the child shell is executed,
1577 	 * unless DEBUG(SCRIPT) is set.
1578 	 */
1579 	char tfile[MAXPATHLEN];
1580 	int tfd;		/* File descriptor to the temp file */
1581 
1582 	/*
1583 	 * We're serious here, but if the commands were bogus, we're
1584 	 * also dead...
1585 	 */
1586 	if (!cmdsOK) {
1587 		PrintOnError(gn, NULL); /* provide some clue */
1588 		DieHorribly();
1589 	}
1590 
1591 	tfd = Job_TempFile(TMPPAT, tfile, sizeof tfile);
1592 
1593 	job->cmdFILE = fdopen(tfd, "w+");
1594 	if (job->cmdFILE == NULL)
1595 		Punt("Could not fdopen %s", tfile);
1596 
1597 	(void)fcntl(fileno(job->cmdFILE), F_SETFD, FD_CLOEXEC);
1598 
1599 #ifdef USE_META
1600 	if (useMeta) {
1601 		meta_job_start(job, gn);
1602 		if (gn->type & OP_SILENT) /* might have changed */
1603 			job->echo = false;
1604 	}
1605 #endif
1606 
1607 	*out_run = JobWriteCommands(job);
1608 }
1609 
1610 /*
1611  * Start a target-creation process going for the target described by the
1612  * graph node gn.
1613  *
1614  * Input:
1615  *	gn		target to create
1616  *	flags		flags for the job to override normal ones.
1617  *	previous	The previous Job structure for this node, if any.
1618  *
1619  * Results:
1620  *	JOB_ERROR if there was an error in the commands, JOB_FINISHED
1621  *	if there isn't actually anything left to do for the job and
1622  *	JOB_RUNNING if the job has been started.
1623  *
1624  * Side Effects:
1625  *	A new Job node is created and added to the list of running
1626  *	jobs. PMake is forked and a child shell created.
1627  *
1628  * NB: The return value is ignored by everyone.
1629  */
1630 static JobStartResult
1631 JobStart(GNode *gn, bool special)
1632 {
1633 	Job *job;		/* new job descriptor */
1634 	char *argv[10];		/* Argument vector to shell */
1635 	bool cmdsOK;		/* true if the nodes commands were all right */
1636 	bool run;
1637 
1638 	for (job = job_table; job < job_table_end; job++) {
1639 		if (job->status == JOB_ST_FREE)
1640 			break;
1641 	}
1642 	if (job >= job_table_end)
1643 		Punt("JobStart no job slots vacant");
1644 
1645 	memset(job, 0, sizeof *job);
1646 	job->node = gn;
1647 	job->tailCmds = NULL;
1648 	job->status = JOB_ST_SET_UP;
1649 
1650 	job->special = special || gn->type & OP_SPECIAL;
1651 	job->ignerr = opts.ignoreErrors || gn->type & OP_IGNORE;
1652 	job->echo = !(opts.beSilent || gn->type & OP_SILENT);
1653 
1654 	/*
1655 	 * Check the commands now so any attributes from .DEFAULT have a
1656 	 * chance to migrate to the node.
1657 	 */
1658 	cmdsOK = Job_CheckCommands(gn, Error);
1659 
1660 	job->inPollfd = NULL;
1661 
1662 	if (Lst_IsEmpty(&gn->commands)) {
1663 		job->cmdFILE = stdout;
1664 		run = false;
1665 	} else if (((gn->type & OP_MAKE) && !opts.noRecursiveExecute) ||
1666 	    (!opts.noExecute && !opts.touchFlag)) {
1667 		/*
1668 		 * The above condition looks very similar to
1669 		 * GNode_ShouldExecute but is subtly different.  It prevents
1670 		 * that .MAKE targets are touched since these are usually
1671 		 * virtual targets.
1672 		 */
1673 
1674 		JobWriteShellCommands(job, gn, cmdsOK, &run);
1675 		(void)fflush(job->cmdFILE);
1676 	} else if (!GNode_ShouldExecute(gn)) {
1677 		/*
1678 		 * Just write all the commands to stdout in one fell swoop.
1679 		 * This still sets up job->tailCmds correctly.
1680 		 */
1681 		SwitchOutputTo(gn);
1682 		job->cmdFILE = stdout;
1683 		if (cmdsOK)
1684 			JobWriteCommands(job);
1685 		run = false;
1686 		(void)fflush(job->cmdFILE);
1687 	} else {
1688 		Job_Touch(gn, job->echo);
1689 		run = false;
1690 	}
1691 
1692 	/* If we're not supposed to execute a shell, don't. */
1693 	if (!run) {
1694 		if (!job->special)
1695 			Job_TokenReturn();
1696 		/* Unlink and close the command file if we opened one */
1697 		if (job->cmdFILE != NULL && job->cmdFILE != stdout) {
1698 			(void)fclose(job->cmdFILE);
1699 			job->cmdFILE = NULL;
1700 		}
1701 
1702 		/*
1703 		 * We only want to work our way up the graph if we aren't
1704 		 * here because the commands for the job were no good.
1705 		 */
1706 		if (cmdsOK && aborting == ABORT_NONE) {
1707 			JobSaveCommands(job);
1708 			job->node->made = MADE;
1709 			Make_Update(job->node);
1710 		}
1711 		job->status = JOB_ST_FREE;
1712 		return cmdsOK ? JOB_FINISHED : JOB_ERROR;
1713 	}
1714 
1715 	/*
1716 	 * Set up the control arguments to the shell. This is based on the
1717 	 * flags set earlier for this job.
1718 	 */
1719 	JobMakeArgv(job, argv);
1720 
1721 	/* Create the pipe by which we'll get the shell's output. */
1722 	JobCreatePipe(job, 3);
1723 
1724 	JobExec(job, argv);
1725 	return JOB_RUNNING;
1726 }
1727 
1728 /*
1729  * If the shell has an output filter (which only csh and ksh have by default),
1730  * print the output of the child process, skipping the noPrint text of the
1731  * shell.
1732  *
1733  * Return the part of the output that the calling function needs to output by
1734  * itself.
1735  */
1736 static char *
1737 PrintFilteredOutput(char *cp, char *endp)	/* XXX: should all be const */
1738 {
1739 	char *ecp;		/* XXX: should be const */
1740 
1741 	if (shell->noPrint == NULL || shell->noPrint[0] == '\0')
1742 		return cp;
1743 
1744 	/*
1745 	 * XXX: What happens if shell->noPrint occurs on the boundary of
1746 	 * the buffer?  To work correctly in all cases, this should rather
1747 	 * be a proper stream filter instead of doing string matching on
1748 	 * selected chunks of the output.
1749 	 */
1750 	while ((ecp = strstr(cp, shell->noPrint)) != NULL) {
1751 		if (ecp != cp) {
1752 			*ecp = '\0';	/* XXX: avoid writing to the buffer */
1753 			/*
1754 			 * The only way there wouldn't be a newline after
1755 			 * this line is if it were the last in the buffer.
1756 			 * however, since the noPrint output comes after it,
1757 			 * there must be a newline, so we don't print one.
1758 			 */
1759 			/* XXX: What about null bytes in the output? */
1760 			(void)fprintf(stdout, "%s", cp);
1761 			(void)fflush(stdout);
1762 		}
1763 		cp = ecp + shell->noPrintLen;
1764 		if (cp == endp)
1765 			break;
1766 		cp++;		/* skip over the (XXX: assumed) newline */
1767 		pp_skip_whitespace(&cp);
1768 	}
1769 	return cp;
1770 }
1771 
1772 /*
1773  * This function is called whenever there is something to read on the pipe.
1774  * We collect more output from the given job and store it in the job's
1775  * outBuf. If this makes up a line, we print it tagged by the job's
1776  * identifier, as necessary.
1777  *
1778  * In the output of the shell, the 'noPrint' lines are removed. If the
1779  * command is not alone on the line (the character after it is not \0 or
1780  * \n), we do print whatever follows it.
1781  *
1782  * Input:
1783  *	job		the job whose output needs printing
1784  *	finish		true if this is the last time we'll be called
1785  *			for this job
1786  */
1787 static void
1788 CollectOutput(Job *job, bool finish)
1789 {
1790 	bool gotNL;		/* true if got a newline */
1791 	bool fbuf;		/* true if our buffer filled up */
1792 	size_t nr;		/* number of bytes read */
1793 	size_t i;		/* auxiliary index into outBuf */
1794 	size_t max;		/* limit for i (end of current data) */
1795 	ssize_t nRead;		/* (Temporary) number of bytes read */
1796 
1797 	/* Read as many bytes as will fit in the buffer. */
1798 again:
1799 	gotNL = false;
1800 	fbuf = false;
1801 
1802 	nRead = read(job->inPipe, &job->outBuf[job->curPos],
1803 	    JOB_BUFSIZE - job->curPos);
1804 	if (nRead < 0) {
1805 		if (errno == EAGAIN)
1806 			return;
1807 		if (DEBUG(JOB)) {
1808 			perror("CollectOutput(piperead)");
1809 		}
1810 		nr = 0;
1811 	} else {
1812 		nr = (size_t)nRead;
1813 	}
1814 
1815 	/*
1816 	 * If we hit the end-of-file (the job is dead), we must flush its
1817 	 * remaining output, so pretend we read a newline if there's any
1818 	 * output remaining in the buffer.
1819 	 * Also clear the 'finish' flag so we stop looping.
1820 	 */
1821 	if (nr == 0 && job->curPos != 0) {
1822 		job->outBuf[job->curPos] = '\n';
1823 		nr = 1;
1824 		finish = false;
1825 	} else if (nr == 0) {
1826 		finish = false;
1827 	}
1828 
1829 	/*
1830 	 * Look for the last newline in the bytes we just got. If there is
1831 	 * one, break out of the loop with 'i' as its index and gotNL set
1832 	 * true.
1833 	 */
1834 	max = job->curPos + nr;
1835 	for (i = job->curPos + nr - 1;
1836 	     i >= job->curPos && i != (size_t)-1; i--) {
1837 		if (job->outBuf[i] == '\n') {
1838 			gotNL = true;
1839 			break;
1840 		} else if (job->outBuf[i] == '\0') {
1841 			/*
1842 			 * FIXME: The null characters are only replaced with
1843 			 * space _after_ the last '\n'.  Everywhere else they
1844 			 * hide the rest of the command output.
1845 			 */
1846 			job->outBuf[i] = ' ';
1847 		}
1848 	}
1849 
1850 	if (!gotNL) {
1851 		job->curPos += nr;
1852 		if (job->curPos == JOB_BUFSIZE) {
1853 			/*
1854 			 * If we've run out of buffer space, we have no choice
1855 			 * but to print the stuff. sigh.
1856 			 */
1857 			fbuf = true;
1858 			i = job->curPos;
1859 		}
1860 	}
1861 	if (gotNL || fbuf) {
1862 		/*
1863 		 * Need to send the output to the screen. Null terminate it
1864 		 * first, overwriting the newline character if there was one.
1865 		 * So long as the line isn't one we should filter (according
1866 		 * to the shell description), we print the line, preceded
1867 		 * by a target banner if this target isn't the same as the
1868 		 * one for which we last printed something.
1869 		 * The rest of the data in the buffer are then shifted down
1870 		 * to the start of the buffer and curPos is set accordingly.
1871 		 */
1872 		job->outBuf[i] = '\0';
1873 		if (i >= job->curPos) {
1874 			char *cp;
1875 
1876 			/*
1877 			 * FIXME: SwitchOutputTo should be here, according to
1878 			 * the comment above.  But since PrintOutput does not
1879 			 * do anything in the default shell, this bug has gone
1880 			 * unnoticed until now.
1881 			 */
1882 			cp = PrintFilteredOutput(job->outBuf, &job->outBuf[i]);
1883 
1884 			/*
1885 			 * There's still more in the output buffer. This time,
1886 			 * though, we know there's no newline at the end, so
1887 			 * we add one of our own free will.
1888 			 */
1889 			if (*cp != '\0') {
1890 				if (!opts.beSilent)
1891 					SwitchOutputTo(job->node);
1892 #ifdef USE_META
1893 				if (useMeta) {
1894 					meta_job_output(job, cp,
1895 					    gotNL ? "\n" : "");
1896 				}
1897 #endif
1898 				(void)fprintf(stdout, "%s%s", cp,
1899 				    gotNL ? "\n" : "");
1900 				(void)fflush(stdout);
1901 			}
1902 		}
1903 		/*
1904 		 * max is the last offset still in the buffer. Move any
1905 		 * remaining characters to the start of the buffer and
1906 		 * update the end marker curPos.
1907 		 */
1908 		if (i < max) {
1909 			(void)memmove(job->outBuf, &job->outBuf[i + 1],
1910 			    max - (i + 1));
1911 			job->curPos = max - (i + 1);
1912 		} else {
1913 			assert(i == max);
1914 			job->curPos = 0;
1915 		}
1916 	}
1917 	if (finish) {
1918 		/*
1919 		 * If the finish flag is true, we must loop until we hit
1920 		 * end-of-file on the pipe. This is guaranteed to happen
1921 		 * eventually since the other end of the pipe is now closed
1922 		 * (we closed it explicitly and the child has exited). When
1923 		 * we do get an EOF, finish will be set false and we'll fall
1924 		 * through and out.
1925 		 */
1926 		goto again;
1927 	}
1928 }
1929 
1930 static void
1931 JobRun(GNode *targ)
1932 {
1933 #if 0
1934 	/*
1935 	 * Unfortunately it is too complicated to run .BEGIN, .END, and
1936 	 * .INTERRUPT job in the parallel job module.  As of 2020-09-25,
1937 	 * unit-tests/deptgt-end-jobs.mk hangs in an endless loop.
1938 	 *
1939 	 * Running these jobs in compat mode also guarantees that these
1940 	 * jobs do not overlap with other unrelated jobs.
1941 	 */
1942 	GNodeList lst = LST_INIT;
1943 	Lst_Append(&lst, targ);
1944 	(void)Make_Run(&lst);
1945 	Lst_Done(&lst);
1946 	JobStart(targ, true);
1947 	while (jobTokensRunning != 0) {
1948 		Job_CatchOutput();
1949 	}
1950 #else
1951 	Compat_Make(targ, targ);
1952 	/* XXX: Replace with GNode_IsError(gn) */
1953 	if (targ->made == ERROR) {
1954 		PrintOnError(targ, "\n\nStop.");
1955 		exit(1);
1956 	}
1957 #endif
1958 }
1959 
1960 /*
1961  * Handle the exit of a child. Called from Make_Make.
1962  *
1963  * The job descriptor is removed from the list of children.
1964  *
1965  * Notes:
1966  *	We do waits, blocking or not, according to the wisdom of our
1967  *	caller, until there are no more children to report. For each
1968  *	job, call JobFinish to finish things off.
1969  */
1970 void
1971 Job_CatchChildren(void)
1972 {
1973 	int pid;		/* pid of dead child */
1974 	int status;		/* Exit/termination status */
1975 
1976 	/* Don't even bother if we know there's no one around. */
1977 	if (jobTokensRunning == 0)
1978 		return;
1979 
1980 	/* Have we received SIGCHLD since last call? */
1981 	if (caught_sigchld == 0)
1982 		return;
1983 	caught_sigchld = 0;
1984 
1985 	while ((pid = waitpid((pid_t)-1, &status, WNOHANG | WUNTRACED)) > 0) {
1986 		DEBUG2(JOB, "Process %d exited/stopped status %x.\n",
1987 		    pid, status);
1988 		JobReapChild(pid, status, true);
1989 	}
1990 }
1991 
1992 /*
1993  * It is possible that wait[pid]() was called from elsewhere,
1994  * this lets us reap jobs regardless.
1995  */
1996 void
1997 JobReapChild(pid_t pid, int status, bool isJobs)
1998 {
1999 	Job *job;		/* job descriptor for dead child */
2000 
2001 	/* Don't even bother if we know there's no one around. */
2002 	if (jobTokensRunning == 0)
2003 		return;
2004 
2005 	job = JobFindPid(pid, JOB_ST_RUNNING, isJobs);
2006 	if (job == NULL) {
2007 		if (isJobs) {
2008 			if (!lurking_children)
2009 				Error("Child (%d) status %x not in table?",
2010 				    pid, status);
2011 		}
2012 		return;		/* not ours */
2013 	}
2014 	if (WIFSTOPPED(status)) {
2015 		DEBUG2(JOB, "Process %d (%s) stopped.\n",
2016 		    job->pid, job->node->name);
2017 		if (!make_suspended) {
2018 			switch (WSTOPSIG(status)) {
2019 			case SIGTSTP:
2020 				(void)printf("*** [%s] Suspended\n",
2021 				    job->node->name);
2022 				break;
2023 			case SIGSTOP:
2024 				(void)printf("*** [%s] Stopped\n",
2025 				    job->node->name);
2026 				break;
2027 			default:
2028 				(void)printf("*** [%s] Stopped -- signal %d\n",
2029 				    job->node->name, WSTOPSIG(status));
2030 			}
2031 			job->suspended = true;
2032 		}
2033 		(void)fflush(stdout);
2034 		return;
2035 	}
2036 
2037 	job->status = JOB_ST_FINISHED;
2038 	job->exit_status = status;
2039 
2040 	JobFinish(job, status);
2041 }
2042 
2043 /*
2044  * Catch the output from our children, if we're using pipes do so. Otherwise
2045  * just block time until we get a signal(most likely a SIGCHLD) since there's
2046  * no point in just spinning when there's nothing to do and the reaping of a
2047  * child can wait for a while.
2048  */
2049 void
2050 Job_CatchOutput(void)
2051 {
2052 	int nready;
2053 	Job *job;
2054 	unsigned int i;
2055 
2056 	(void)fflush(stdout);
2057 
2058 	/* The first fd in the list is the job token pipe */
2059 	do {
2060 		nready = poll(fds + 1 - wantToken, fdsLen - 1 + wantToken,
2061 		    POLL_MSEC);
2062 	} while (nready < 0 && errno == EINTR);
2063 
2064 	if (nready < 0)
2065 		Punt("poll: %s", strerror(errno));
2066 
2067 	if (nready > 0 && readyfd(&childExitJob)) {
2068 		char token = 0;
2069 		ssize_t count;
2070 		count = read(childExitJob.inPipe, &token, 1);
2071 		if (count == 1) {
2072 			if (token == DO_JOB_RESUME[0])
2073 				/*
2074 				 * Complete relay requested from our SIGCONT
2075 				 * handler
2076 				 */
2077 				JobRestartJobs();
2078 		} else if (count == 0)
2079 			Punt("unexpected eof on token pipe");
2080 		else
2081 			Punt("token pipe read: %s", strerror(errno));
2082 		nready--;
2083 	}
2084 
2085 	Job_CatchChildren();
2086 	if (nready == 0)
2087 		return;
2088 
2089 	for (i = npseudojobs * nfds_per_job(); i < fdsLen; i++) {
2090 		if (fds[i].revents == 0)
2091 			continue;
2092 		job = jobByFdIndex[i];
2093 		if (job->status == JOB_ST_RUNNING)
2094 			CollectOutput(job, false);
2095 #if defined(USE_FILEMON) && !defined(USE_FILEMON_DEV)
2096 		/*
2097 		 * With meta mode, we may have activity on the job's filemon
2098 		 * descriptor too, which at the moment is any pollfd other
2099 		 * than job->inPollfd.
2100 		 */
2101 		if (useMeta && job->inPollfd != &fds[i]) {
2102 			if (meta_job_event(job) <= 0) {
2103 				fds[i].events = 0; /* never mind */
2104 			}
2105 		}
2106 #endif
2107 		if (--nready == 0)
2108 			return;
2109 	}
2110 }
2111 
2112 /*
2113  * Start the creation of a target. Basically a front-end for JobStart used by
2114  * the Make module.
2115  */
2116 void
2117 Job_Make(GNode *gn)
2118 {
2119 	(void)JobStart(gn, false);
2120 }
2121 
2122 static void
2123 InitShellNameAndPath(void)
2124 {
2125 	shellName = shell->name;
2126 
2127 #ifdef DEFSHELL_CUSTOM
2128 	if (shellName[0] == '/') {
2129 		shellPath = shellName;
2130 		shellName = str_basename(shellPath);
2131 		return;
2132 	}
2133 #endif
2134 
2135 	shellPath = str_concat3(_PATH_DEFSHELLDIR, "/", shellName);
2136 }
2137 
2138 void
2139 Shell_Init(void)
2140 {
2141 	if (shellPath == NULL)
2142 		InitShellNameAndPath();
2143 
2144 	Var_SetWithFlags(SCOPE_CMDLINE, ".SHELL", shellPath, VAR_SET_READONLY);
2145 	if (shell->errFlag == NULL)
2146 		shell->errFlag = "";
2147 	if (shell->echoFlag == NULL)
2148 		shell->echoFlag = "";
2149 	if (shell->hasErrCtl && shell->errFlag[0] != '\0') {
2150 		if (shellErrFlag != NULL &&
2151 		    strcmp(shell->errFlag, &shellErrFlag[1]) != 0) {
2152 			free(shellErrFlag);
2153 			shellErrFlag = NULL;
2154 		}
2155 		if (shellErrFlag == NULL) {
2156 			size_t n = strlen(shell->errFlag) + 2;
2157 
2158 			shellErrFlag = bmake_malloc(n);
2159 			if (shellErrFlag != NULL)
2160 				snprintf(shellErrFlag, n, "-%s",
2161 				    shell->errFlag);
2162 		}
2163 	} else if (shellErrFlag != NULL) {
2164 		free(shellErrFlag);
2165 		shellErrFlag = NULL;
2166 	}
2167 }
2168 
2169 /*
2170  * Return the string literal that is used in the current command shell
2171  * to produce a newline character.
2172  */
2173 const char *
2174 Shell_GetNewline(void)
2175 {
2176 	return shell->newline;
2177 }
2178 
2179 void
2180 Job_SetPrefix(void)
2181 {
2182 	if (targPrefix != NULL) {
2183 		free(targPrefix);
2184 	} else if (!Var_Exists(SCOPE_GLOBAL, MAKE_JOB_PREFIX)) {
2185 		Global_Set(MAKE_JOB_PREFIX, "---");
2186 	}
2187 
2188 	(void)Var_Subst("${" MAKE_JOB_PREFIX "}",
2189 	    SCOPE_GLOBAL, VARE_WANTRES, &targPrefix);
2190 	/* TODO: handle errors */
2191 }
2192 
2193 static void
2194 AddSig(int sig, SignalProc handler)
2195 {
2196 	if (bmake_signal(sig, SIG_IGN) != SIG_IGN) {
2197 		sigaddset(&caught_signals, sig);
2198 		(void)bmake_signal(sig, handler);
2199 	}
2200 }
2201 
2202 /* Initialize the process module. */
2203 void
2204 Job_Init(void)
2205 {
2206 	Job_SetPrefix();
2207 	/* Allocate space for all the job info */
2208 	job_table = bmake_malloc((size_t)opts.maxJobs * sizeof *job_table);
2209 	memset(job_table, 0, (size_t)opts.maxJobs * sizeof *job_table);
2210 	job_table_end = job_table + opts.maxJobs;
2211 	wantToken = 0;
2212 	caught_sigchld = 0;
2213 
2214 	aborting = ABORT_NONE;
2215 	job_errors = 0;
2216 
2217 	/*
2218 	 * There is a non-zero chance that we already have children.
2219 	 * eg after 'make -f- <<EOF'
2220 	 * Since their termination causes a 'Child (pid) not in table'
2221 	 * message, Collect the status of any that are already dead, and
2222 	 * suppress the error message if there are any undead ones.
2223 	 */
2224 	for (;;) {
2225 		int rval, status;
2226 		rval = waitpid((pid_t)-1, &status, WNOHANG);
2227 		if (rval > 0)
2228 			continue;
2229 		if (rval == 0)
2230 			lurking_children = true;
2231 		break;
2232 	}
2233 
2234 	Shell_Init();
2235 
2236 	JobCreatePipe(&childExitJob, 3);
2237 
2238 	{
2239 		/* Preallocate enough for the maximum number of jobs. */
2240 		size_t nfds = (npseudojobs + (size_t)opts.maxJobs) *
2241 			      nfds_per_job();
2242 		fds = bmake_malloc(sizeof *fds * nfds);
2243 		jobByFdIndex = bmake_malloc(sizeof *jobByFdIndex * nfds);
2244 	}
2245 
2246 	/* These are permanent entries and take slots 0 and 1 */
2247 	watchfd(&tokenWaitJob);
2248 	watchfd(&childExitJob);
2249 
2250 	sigemptyset(&caught_signals);
2251 	/*
2252 	 * Install a SIGCHLD handler.
2253 	 */
2254 	(void)bmake_signal(SIGCHLD, JobChildSig);
2255 	sigaddset(&caught_signals, SIGCHLD);
2256 
2257 	/*
2258 	 * Catch the four signals that POSIX specifies if they aren't ignored.
2259 	 * JobPassSig will take care of calling JobInterrupt if appropriate.
2260 	 */
2261 	AddSig(SIGINT, JobPassSig_int);
2262 	AddSig(SIGHUP, JobPassSig_term);
2263 	AddSig(SIGTERM, JobPassSig_term);
2264 	AddSig(SIGQUIT, JobPassSig_term);
2265 
2266 	/*
2267 	 * There are additional signals that need to be caught and passed if
2268 	 * either the export system wants to be told directly of signals or if
2269 	 * we're giving each job its own process group (since then it won't get
2270 	 * signals from the terminal driver as we own the terminal)
2271 	 */
2272 	AddSig(SIGTSTP, JobPassSig_suspend);
2273 	AddSig(SIGTTOU, JobPassSig_suspend);
2274 	AddSig(SIGTTIN, JobPassSig_suspend);
2275 	AddSig(SIGWINCH, JobCondPassSig);
2276 	AddSig(SIGCONT, JobContinueSig);
2277 
2278 	(void)Job_RunTarget(".BEGIN", NULL);
2279 	/* Create the .END node now, even though no code in the unit tests
2280 	 * depends on it.  See also Targ_GetEndNode in Compat_Run. */
2281 	(void)Targ_GetEndNode();
2282 }
2283 
2284 static void
2285 DelSig(int sig)
2286 {
2287 	if (sigismember(&caught_signals, sig) != 0)
2288 		(void)bmake_signal(sig, SIG_DFL);
2289 }
2290 
2291 static void
2292 JobSigReset(void)
2293 {
2294 	DelSig(SIGINT);
2295 	DelSig(SIGHUP);
2296 	DelSig(SIGQUIT);
2297 	DelSig(SIGTERM);
2298 	DelSig(SIGTSTP);
2299 	DelSig(SIGTTOU);
2300 	DelSig(SIGTTIN);
2301 	DelSig(SIGWINCH);
2302 	DelSig(SIGCONT);
2303 	(void)bmake_signal(SIGCHLD, SIG_DFL);
2304 }
2305 
2306 /* Find a shell in 'shells' given its name, or return NULL. */
2307 static Shell *
2308 FindShellByName(const char *name)
2309 {
2310 	Shell *sh = shells;
2311 	const Shell *shellsEnd = sh + sizeof shells / sizeof shells[0];
2312 
2313 	for (sh = shells; sh < shellsEnd; sh++) {
2314 		if (strcmp(name, sh->name) == 0)
2315 			return sh;
2316 	}
2317 	return NULL;
2318 }
2319 
2320 /*
2321  * Parse a shell specification and set up 'shell', shellPath and
2322  * shellName appropriately.
2323  *
2324  * Input:
2325  *	line		The shell spec
2326  *
2327  * Results:
2328  *	false if the specification was incorrect.
2329  *
2330  * Side Effects:
2331  *	'shell' points to a Shell structure (either predefined or
2332  *	created from the shell spec), shellPath is the full path of the
2333  *	shell described by 'shell', while shellName is just the
2334  *	final component of shellPath.
2335  *
2336  * Notes:
2337  *	A shell specification consists of a .SHELL target, with dependency
2338  *	operator, followed by a series of blank-separated words. Double
2339  *	quotes can be used to use blanks in words. A backslash escapes
2340  *	anything (most notably a double-quote and a space) and
2341  *	provides the functionality it does in C. Each word consists of
2342  *	keyword and value separated by an equal sign. There should be no
2343  *	unnecessary spaces in the word. The keywords are as follows:
2344  *	    name	Name of shell.
2345  *	    path	Location of shell.
2346  *	    quiet	Command to turn off echoing.
2347  *	    echo	Command to turn echoing on
2348  *	    filter	Result of turning off echoing that shouldn't be
2349  *			printed.
2350  *	    echoFlag	Flag to turn echoing on at the start
2351  *	    errFlag	Flag to turn error checking on at the start
2352  *	    hasErrCtl	True if shell has error checking control
2353  *	    newline	String literal to represent a newline char
2354  *	    check	Command to turn on error checking if hasErrCtl
2355  *			is true or template of command to echo a command
2356  *			for which error checking is off if hasErrCtl is
2357  *			false.
2358  *	    ignore	Command to turn off error checking if hasErrCtl
2359  *			is true or template of command to execute a
2360  *			command so as to ignore any errors it returns if
2361  *			hasErrCtl is false.
2362  */
2363 bool
2364 Job_ParseShell(char *line)
2365 {
2366 	Words wordsList;
2367 	char **words;
2368 	char **argv;
2369 	size_t argc;
2370 	char *path;
2371 	Shell newShell;
2372 	bool fullSpec = false;
2373 	Shell *sh;
2374 
2375 	/* XXX: don't use line as an iterator variable */
2376 	pp_skip_whitespace(&line);
2377 
2378 	free(shell_freeIt);
2379 
2380 	memset(&newShell, 0, sizeof newShell);
2381 
2382 	/*
2383 	 * Parse the specification by keyword
2384 	 */
2385 	wordsList = Str_Words(line, true);
2386 	words = wordsList.words;
2387 	argc = wordsList.len;
2388 	path = wordsList.freeIt;
2389 	if (words == NULL) {
2390 		Error("Unterminated quoted string [%s]", line);
2391 		return false;
2392 	}
2393 	shell_freeIt = path;
2394 
2395 	for (path = NULL, argv = words; argc != 0; argc--, argv++) {
2396 		char *arg = *argv;
2397 		if (strncmp(arg, "path=", 5) == 0) {
2398 			path = arg + 5;
2399 		} else if (strncmp(arg, "name=", 5) == 0) {
2400 			newShell.name = arg + 5;
2401 		} else {
2402 			if (strncmp(arg, "quiet=", 6) == 0) {
2403 				newShell.echoOff = arg + 6;
2404 			} else if (strncmp(arg, "echo=", 5) == 0) {
2405 				newShell.echoOn = arg + 5;
2406 			} else if (strncmp(arg, "filter=", 7) == 0) {
2407 				newShell.noPrint = arg + 7;
2408 				newShell.noPrintLen = strlen(newShell.noPrint);
2409 			} else if (strncmp(arg, "echoFlag=", 9) == 0) {
2410 				newShell.echoFlag = arg + 9;
2411 			} else if (strncmp(arg, "errFlag=", 8) == 0) {
2412 				newShell.errFlag = arg + 8;
2413 			} else if (strncmp(arg, "hasErrCtl=", 10) == 0) {
2414 				char c = arg[10];
2415 				newShell.hasErrCtl = c == 'Y' || c == 'y' ||
2416 						     c == 'T' || c == 't';
2417 			} else if (strncmp(arg, "newline=", 8) == 0) {
2418 				newShell.newline = arg + 8;
2419 			} else if (strncmp(arg, "check=", 6) == 0) {
2420 				/* Before 2020-12-10, these two variables
2421 				 * had been a single variable. */
2422 				newShell.errOn = arg + 6;
2423 				newShell.echoTmpl = arg + 6;
2424 			} else if (strncmp(arg, "ignore=", 7) == 0) {
2425 				/* Before 2020-12-10, these two variables
2426 				 * had been a single variable. */
2427 				newShell.errOff = arg + 7;
2428 				newShell.runIgnTmpl = arg + 7;
2429 			} else if (strncmp(arg, "errout=", 7) == 0) {
2430 				newShell.runChkTmpl = arg + 7;
2431 			} else if (strncmp(arg, "comment=", 8) == 0) {
2432 				newShell.commentChar = arg[8];
2433 			} else {
2434 				Parse_Error(PARSE_FATAL,
2435 				    "Unknown keyword \"%s\"", arg);
2436 				free(words);
2437 				return false;
2438 			}
2439 			fullSpec = true;
2440 		}
2441 	}
2442 
2443 	if (path == NULL) {
2444 		/*
2445 		 * If no path was given, the user wants one of the
2446 		 * pre-defined shells, yes? So we find the one s/he wants
2447 		 * with the help of FindShellByName and set things up the
2448 		 * right way. shellPath will be set up by Shell_Init.
2449 		 */
2450 		if (newShell.name == NULL) {
2451 			Parse_Error(PARSE_FATAL,
2452 			    "Neither path nor name specified");
2453 			free(words);
2454 			return false;
2455 		} else {
2456 			if ((sh = FindShellByName(newShell.name)) == NULL) {
2457 				Parse_Error(PARSE_WARNING,
2458 				    "%s: No matching shell", newShell.name);
2459 				free(words);
2460 				return false;
2461 			}
2462 			shell = sh;
2463 			shellName = newShell.name;
2464 			if (shellPath != NULL) {
2465 				/*
2466 				 * Shell_Init has already been called!
2467 				 * Do it again.
2468 				 */
2469 				free(UNCONST(shellPath));
2470 				shellPath = NULL;
2471 				Shell_Init();
2472 			}
2473 		}
2474 	} else {
2475 		/*
2476 		 * The user provided a path. If s/he gave nothing else
2477 		 * (fullSpec is false), try and find a matching shell in the
2478 		 * ones we know of. Else we just take the specification at
2479 		 * its word and copy it to a new location. In either case,
2480 		 * we need to record the path the user gave for the shell.
2481 		 */
2482 		shellPath = path;
2483 		path = strrchr(path, '/');
2484 		if (path == NULL) {
2485 			path = UNCONST(shellPath);
2486 		} else {
2487 			path++;
2488 		}
2489 		if (newShell.name != NULL) {
2490 			shellName = newShell.name;
2491 		} else {
2492 			shellName = path;
2493 		}
2494 		if (!fullSpec) {
2495 			if ((sh = FindShellByName(shellName)) == NULL) {
2496 				Parse_Error(PARSE_WARNING,
2497 				    "%s: No matching shell", shellName);
2498 				free(words);
2499 				return false;
2500 			}
2501 			shell = sh;
2502 		} else {
2503 			shell = bmake_malloc(sizeof *shell);
2504 			*shell = newShell;
2505 		}
2506 		/* this will take care of shellErrFlag */
2507 		Shell_Init();
2508 	}
2509 
2510 	if (shell->echoOn != NULL && shell->echoOff != NULL)
2511 		shell->hasEchoCtl = true;
2512 
2513 	if (!shell->hasErrCtl) {
2514 		if (shell->echoTmpl == NULL)
2515 			shell->echoTmpl = "";
2516 		if (shell->runIgnTmpl == NULL)
2517 			shell->runIgnTmpl = "%s\n";
2518 	}
2519 
2520 	/*
2521 	 * Do not free up the words themselves, since they might be in use
2522 	 * by the shell specification.
2523 	 */
2524 	free(words);
2525 	return true;
2526 }
2527 
2528 /*
2529  * Handle the receipt of an interrupt.
2530  *
2531  * All children are killed. Another job will be started if the .INTERRUPT
2532  * target is defined.
2533  *
2534  * Input:
2535  *	runINTERRUPT	Non-zero if commands for the .INTERRUPT target
2536  *			should be executed
2537  *	signo		signal received
2538  */
2539 static void
2540 JobInterrupt(bool runINTERRUPT, int signo)
2541 {
2542 	Job *job;		/* job descriptor in that element */
2543 	GNode *interrupt;	/* the node describing the .INTERRUPT target */
2544 	sigset_t mask;
2545 	GNode *gn;
2546 
2547 	aborting = ABORT_INTERRUPT;
2548 
2549 	JobSigLock(&mask);
2550 
2551 	for (job = job_table; job < job_table_end; job++) {
2552 		if (job->status != JOB_ST_RUNNING)
2553 			continue;
2554 
2555 		gn = job->node;
2556 
2557 		JobDeleteTarget(gn);
2558 		if (job->pid != 0) {
2559 			DEBUG2(JOB,
2560 			    "JobInterrupt passing signal %d to child %d.\n",
2561 			    signo, job->pid);
2562 			KILLPG(job->pid, signo);
2563 		}
2564 	}
2565 
2566 	JobSigUnlock(&mask);
2567 
2568 	if (runINTERRUPT && !opts.touchFlag) {
2569 		interrupt = Targ_FindNode(".INTERRUPT");
2570 		if (interrupt != NULL) {
2571 			opts.ignoreErrors = false;
2572 			JobRun(interrupt);
2573 		}
2574 	}
2575 	Trace_Log(MAKEINTR, NULL);
2576 	exit(signo);		/* XXX: why signo? */
2577 }
2578 
2579 /*
2580  * Do the final processing, i.e. run the commands attached to the .END target.
2581  *
2582  * Return the number of errors reported.
2583  */
2584 int
2585 Job_Finish(void)
2586 {
2587 	GNode *endNode = Targ_GetEndNode();
2588 	if (!Lst_IsEmpty(&endNode->commands) ||
2589 	    !Lst_IsEmpty(&endNode->children)) {
2590 		if (job_errors != 0) {
2591 			Error("Errors reported so .END ignored");
2592 		} else {
2593 			JobRun(endNode);
2594 		}
2595 	}
2596 	return job_errors;
2597 }
2598 
2599 /* Clean up any memory used by the jobs module. */
2600 void
2601 Job_End(void)
2602 {
2603 #ifdef CLEANUP
2604 	free(shell_freeIt);
2605 #endif
2606 }
2607 
2608 /*
2609  * Waits for all running jobs to finish and returns.
2610  * Sets 'aborting' to ABORT_WAIT to prevent other jobs from starting.
2611  */
2612 void
2613 Job_Wait(void)
2614 {
2615 	aborting = ABORT_WAIT;
2616 	while (jobTokensRunning != 0) {
2617 		Job_CatchOutput();
2618 	}
2619 	aborting = ABORT_NONE;
2620 }
2621 
2622 /*
2623  * Abort all currently running jobs without handling output or anything.
2624  * This function is to be called only in the event of a major error.
2625  * Most definitely NOT to be called from JobInterrupt.
2626  *
2627  * All children are killed, not just the firstborn.
2628  */
2629 void
2630 Job_AbortAll(void)
2631 {
2632 	Job *job;		/* the job descriptor in that element */
2633 	int foo;
2634 
2635 	aborting = ABORT_ERROR;
2636 
2637 	if (jobTokensRunning != 0) {
2638 		for (job = job_table; job < job_table_end; job++) {
2639 			if (job->status != JOB_ST_RUNNING)
2640 				continue;
2641 			/*
2642 			 * kill the child process with increasingly drastic
2643 			 * signals to make darn sure it's dead.
2644 			 */
2645 			KILLPG(job->pid, SIGINT);
2646 			KILLPG(job->pid, SIGKILL);
2647 		}
2648 	}
2649 
2650 	/*
2651 	 * Catch as many children as want to report in at first, then give up
2652 	 */
2653 	while (waitpid((pid_t)-1, &foo, WNOHANG) > 0)
2654 		continue;
2655 }
2656 
2657 /*
2658  * Tries to restart stopped jobs if there are slots available.
2659  * Called in process context in response to a SIGCONT.
2660  */
2661 static void
2662 JobRestartJobs(void)
2663 {
2664 	Job *job;
2665 
2666 	for (job = job_table; job < job_table_end; job++) {
2667 		if (job->status == JOB_ST_RUNNING &&
2668 		    (make_suspended || job->suspended)) {
2669 			DEBUG1(JOB, "Restarting stopped job pid %d.\n",
2670 			    job->pid);
2671 			if (job->suspended) {
2672 				(void)printf("*** [%s] Continued\n",
2673 				    job->node->name);
2674 				(void)fflush(stdout);
2675 			}
2676 			job->suspended = false;
2677 			if (KILLPG(job->pid, SIGCONT) != 0 && DEBUG(JOB)) {
2678 				debug_printf("Failed to send SIGCONT to %d\n",
2679 				    job->pid);
2680 			}
2681 		}
2682 		if (job->status == JOB_ST_FINISHED) {
2683 			/*
2684 			 * Job exit deferred after calling waitpid() in a
2685 			 * signal handler
2686 			 */
2687 			JobFinish(job, job->exit_status);
2688 		}
2689 	}
2690 	make_suspended = false;
2691 }
2692 
2693 static void
2694 watchfd(Job *job)
2695 {
2696 	if (job->inPollfd != NULL)
2697 		Punt("Watching watched job");
2698 
2699 	fds[fdsLen].fd = job->inPipe;
2700 	fds[fdsLen].events = POLLIN;
2701 	jobByFdIndex[fdsLen] = job;
2702 	job->inPollfd = &fds[fdsLen];
2703 	fdsLen++;
2704 #if defined(USE_FILEMON) && !defined(USE_FILEMON_DEV)
2705 	if (useMeta) {
2706 		fds[fdsLen].fd = meta_job_fd(job);
2707 		fds[fdsLen].events = fds[fdsLen].fd == -1 ? 0 : POLLIN;
2708 		jobByFdIndex[fdsLen] = job;
2709 		fdsLen++;
2710 	}
2711 #endif
2712 }
2713 
2714 static void
2715 clearfd(Job *job)
2716 {
2717 	size_t i;
2718 	if (job->inPollfd == NULL)
2719 		Punt("Unwatching unwatched job");
2720 	i = (size_t)(job->inPollfd - fds);
2721 	fdsLen--;
2722 #if defined(USE_FILEMON) && !defined(USE_FILEMON_DEV)
2723 	if (useMeta) {
2724 		/*
2725 		 * Sanity check: there should be two fds per job, so the job's
2726 		 * pollfd number should be even.
2727 		 */
2728 		assert(nfds_per_job() == 2);
2729 		if (i % 2 != 0)
2730 			Punt("odd-numbered fd with meta");
2731 		fdsLen--;
2732 	}
2733 #endif
2734 	/*
2735 	 * Move last job in table into hole made by dead job.
2736 	 */
2737 	if (fdsLen != i) {
2738 		fds[i] = fds[fdsLen];
2739 		jobByFdIndex[i] = jobByFdIndex[fdsLen];
2740 		jobByFdIndex[i]->inPollfd = &fds[i];
2741 #if defined(USE_FILEMON) && !defined(USE_FILEMON_DEV)
2742 		if (useMeta) {
2743 			fds[i + 1] = fds[fdsLen + 1];
2744 			jobByFdIndex[i + 1] = jobByFdIndex[fdsLen + 1];
2745 		}
2746 #endif
2747 	}
2748 	job->inPollfd = NULL;
2749 }
2750 
2751 static bool
2752 readyfd(Job *job)
2753 {
2754 	if (job->inPollfd == NULL)
2755 		Punt("Polling unwatched job");
2756 	return (job->inPollfd->revents & POLLIN) != 0;
2757 }
2758 
2759 /*
2760  * Put a token (back) into the job pipe.
2761  * This allows a make process to start a build job.
2762  */
2763 static void
2764 JobTokenAdd(void)
2765 {
2766 	char tok = JOB_TOKENS[aborting], tok1;
2767 
2768 	/* If we are depositing an error token flush everything else */
2769 	while (tok != '+' && read(tokenWaitJob.inPipe, &tok1, 1) == 1)
2770 		continue;
2771 
2772 	DEBUG3(JOB, "(%d) aborting %d, deposit token %c\n",
2773 	    getpid(), aborting, JOB_TOKENS[aborting]);
2774 	while (write(tokenWaitJob.outPipe, &tok, 1) == -1 && errno == EAGAIN)
2775 		continue;
2776 }
2777 
2778 /* Get a temp file */
2779 int
2780 Job_TempFile(const char *pattern, char *tfile, size_t tfile_sz)
2781 {
2782 	int fd;
2783 	sigset_t mask;
2784 
2785 	JobSigLock(&mask);
2786 	fd = mkTempFile(pattern, tfile, tfile_sz);
2787 	if (tfile != NULL && !DEBUG(SCRIPT))
2788 	    unlink(tfile);
2789 	JobSigUnlock(&mask);
2790 
2791 	return fd;
2792 }
2793 
2794 /* Prep the job token pipe in the root make process. */
2795 void
2796 Job_ServerStart(int max_tokens, int jp_0, int jp_1)
2797 {
2798 	int i;
2799 	char jobarg[64];
2800 
2801 	if (jp_0 >= 0 && jp_1 >= 0) {
2802 		/* Pipe passed in from parent */
2803 		tokenWaitJob.inPipe = jp_0;
2804 		tokenWaitJob.outPipe = jp_1;
2805 		(void)fcntl(jp_0, F_SETFD, FD_CLOEXEC);
2806 		(void)fcntl(jp_1, F_SETFD, FD_CLOEXEC);
2807 		return;
2808 	}
2809 
2810 	JobCreatePipe(&tokenWaitJob, 15);
2811 
2812 	snprintf(jobarg, sizeof jobarg, "%d,%d",
2813 	    tokenWaitJob.inPipe, tokenWaitJob.outPipe);
2814 
2815 	Global_Append(MAKEFLAGS, "-J");
2816 	Global_Append(MAKEFLAGS, jobarg);
2817 
2818 	/*
2819 	 * Preload the job pipe with one token per job, save the one
2820 	 * "extra" token for the primary job.
2821 	 *
2822 	 * XXX should clip maxJobs against PIPE_BUF -- if max_tokens is
2823 	 * larger than the write buffer size of the pipe, we will
2824 	 * deadlock here.
2825 	 */
2826 	for (i = 1; i < max_tokens; i++)
2827 		JobTokenAdd();
2828 }
2829 
2830 /* Return a withdrawn token to the pool. */
2831 void
2832 Job_TokenReturn(void)
2833 {
2834 	jobTokensRunning--;
2835 	if (jobTokensRunning < 0)
2836 		Punt("token botch");
2837 	if (jobTokensRunning != 0 || JOB_TOKENS[aborting] != '+')
2838 		JobTokenAdd();
2839 }
2840 
2841 /*
2842  * Attempt to withdraw a token from the pool.
2843  *
2844  * If pool is empty, set wantToken so that we wake up when a token is
2845  * released.
2846  *
2847  * Returns true if a token was withdrawn, and false if the pool is currently
2848  * empty.
2849  */
2850 bool
2851 Job_TokenWithdraw(void)
2852 {
2853 	char tok, tok1;
2854 	ssize_t count;
2855 
2856 	wantToken = 0;
2857 	DEBUG3(JOB, "Job_TokenWithdraw(%d): aborting %d, running %d\n",
2858 	    getpid(), aborting, jobTokensRunning);
2859 
2860 	if (aborting != ABORT_NONE || (jobTokensRunning >= opts.maxJobs))
2861 		return false;
2862 
2863 	count = read(tokenWaitJob.inPipe, &tok, 1);
2864 	if (count == 0)
2865 		Fatal("eof on job pipe!");
2866 	if (count < 0 && jobTokensRunning != 0) {
2867 		if (errno != EAGAIN) {
2868 			Fatal("job pipe read: %s", strerror(errno));
2869 		}
2870 		DEBUG1(JOB, "(%d) blocked for token\n", getpid());
2871 		wantToken = 1;
2872 		return false;
2873 	}
2874 
2875 	if (count == 1 && tok != '+') {
2876 		/* make being aborted - remove any other job tokens */
2877 		DEBUG2(JOB, "(%d) aborted by token %c\n", getpid(), tok);
2878 		while (read(tokenWaitJob.inPipe, &tok1, 1) == 1)
2879 			continue;
2880 		/* And put the stopper back */
2881 		while (write(tokenWaitJob.outPipe, &tok, 1) == -1 &&
2882 		       errno == EAGAIN)
2883 			continue;
2884 		if (shouldDieQuietly(NULL, 1))
2885 			exit(6);	/* we aborted */
2886 		Fatal("A failure has been detected "
2887 		      "in another branch of the parallel make");
2888 	}
2889 
2890 	if (count == 1 && jobTokensRunning == 0)
2891 		/* We didn't want the token really */
2892 		while (write(tokenWaitJob.outPipe, &tok, 1) == -1 &&
2893 		       errno == EAGAIN)
2894 			continue;
2895 
2896 	jobTokensRunning++;
2897 	DEBUG1(JOB, "(%d) withdrew token\n", getpid());
2898 	return true;
2899 }
2900 
2901 /*
2902  * Run the named target if found. If a filename is specified, then set that
2903  * to the sources.
2904  *
2905  * Exits if the target fails.
2906  */
2907 bool
2908 Job_RunTarget(const char *target, const char *fname)
2909 {
2910 	GNode *gn = Targ_FindNode(target);
2911 	if (gn == NULL)
2912 		return false;
2913 
2914 	if (fname != NULL)
2915 		Var_Set(gn, ALLSRC, fname);
2916 
2917 	JobRun(gn);
2918 	/* XXX: Replace with GNode_IsError(gn) */
2919 	if (gn->made == ERROR) {
2920 		PrintOnError(gn, "\n\nStop.");
2921 		exit(1);
2922 	}
2923 	return true;
2924 }
2925 
2926 #ifdef USE_SELECT
2927 int
2928 emul_poll(struct pollfd *fd, int nfd, int timeout)
2929 {
2930 	fd_set rfds, wfds;
2931 	int i, maxfd, nselect, npoll;
2932 	struct timeval tv, *tvp;
2933 	long usecs;
2934 
2935 	FD_ZERO(&rfds);
2936 	FD_ZERO(&wfds);
2937 
2938 	maxfd = -1;
2939 	for (i = 0; i < nfd; i++) {
2940 		fd[i].revents = 0;
2941 
2942 		if (fd[i].events & POLLIN)
2943 			FD_SET(fd[i].fd, &rfds);
2944 
2945 		if (fd[i].events & POLLOUT)
2946 			FD_SET(fd[i].fd, &wfds);
2947 
2948 		if (fd[i].fd > maxfd)
2949 			maxfd = fd[i].fd;
2950 	}
2951 
2952 	if (maxfd >= FD_SETSIZE) {
2953 		Punt("Ran out of fd_set slots; "
2954 		     "recompile with a larger FD_SETSIZE.");
2955 	}
2956 
2957 	if (timeout < 0) {
2958 		tvp = NULL;
2959 	} else {
2960 		usecs = timeout * 1000;
2961 		tv.tv_sec = usecs / 1000000;
2962 		tv.tv_usec = usecs % 1000000;
2963 		tvp = &tv;
2964 	}
2965 
2966 	nselect = select(maxfd + 1, &rfds, &wfds, NULL, tvp);
2967 
2968 	if (nselect <= 0)
2969 		return nselect;
2970 
2971 	npoll = 0;
2972 	for (i = 0; i < nfd; i++) {
2973 		if (FD_ISSET(fd[i].fd, &rfds))
2974 			fd[i].revents |= POLLIN;
2975 
2976 		if (FD_ISSET(fd[i].fd, &wfds))
2977 			fd[i].revents |= POLLOUT;
2978 
2979 		if (fd[i].revents)
2980 			npoll++;
2981 	}
2982 
2983 	return npoll;
2984 }
2985 #endif /* USE_SELECT */
2986