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