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