inline shellneed()
[dragonfly.git] / usr.bin / make / job.c
1 /*-
2  * Copyright (c) 1988, 1989, 1990, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  * Copyright (c) 1988, 1989 by Adam de Boor
5  * Copyright (c) 1989 by Berkeley Softworks
6  * All rights reserved.
7  *
8  * This code is derived from software contributed to Berkeley by
9  * Adam de Boor.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. All advertising materials mentioning features or use of this software
20  *    must display the following acknowledgement:
21  *      This product includes software developed by the University of
22  *      California, Berkeley and its contributors.
23  * 4. Neither the name of the University nor the names of its contributors
24  *    may be used to endorse or promote products derived from this software
25  *    without specific prior written permission.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37  * SUCH DAMAGE.
38  *
39  * @(#)job.c    8.2 (Berkeley) 3/19/94
40  * $FreeBSD: src/usr.bin/make/job.c,v 1.75 2005/02/10 14:32:14 harti Exp $
41  * $DragonFly: src/usr.bin/make/job.c,v 1.77 2005/04/26 10:21:48 okumoto Exp $
42  */
43
44 #ifndef OLD_JOKE
45 #define OLD_JOKE 0
46 #endif /* OLD_JOKE */
47
48 /*-
49  * job.c --
50  *      handle the creation etc. of our child processes.
51  *
52  * Interface:
53  *      Job_Make        Start the creation of the given target.
54  *
55  *      Job_CatchChildren
56  *                      Check for and handle the termination of any children.
57  *                      This must be called reasonably frequently to keep the
58  *                      whole make going at a decent clip, since job table
59  *                      entries aren't removed until their process is caught
60  *                      this way. Its single argument is TRUE if the function
61  *                      should block waiting for a child to terminate.
62  *
63  *      Job_CatchOutput Print any output our children have produced. Should
64  *                      also be called fairly frequently to keep the user
65  *                      informed of what's going on. If no output is waiting,
66  *                      it will block for a time given by the SEL_* constants,
67  *                      below, or until output is ready.
68  *
69  *      Job_Init        Called to intialize this module. in addition, any
70  *                      commands attached to the .BEGIN target are executed
71  *                      before this function returns. Hence, the makefile must
72  *                      have been parsed before this function is called.
73  *
74  *      Job_Full        Return TRUE if the job table is filled.
75  *
76  *      Job_Empty       Return TRUE if the job table is completely empty.
77  *
78  *      Job_ParseShell  Given the line following a .SHELL target, parse the
79  *                      line as a shell specification. Returns FAILURE if the
80  *                      spec was incorrect.
81  *
82  *      Job_Finish      Perform any final processing which needs doing. This
83  *                      includes the execution of any commands which have
84  *                      been/were attached to the .END target. It should only
85  *                      be called when the job table is empty.
86  *
87  *      Job_AbortAll    Abort all currently running jobs. It doesn't handle
88  *                      output or do anything for the jobs, just kills them.
89  *                      It should only be called in an emergency, as it were.
90  *
91  *      Job_CheckCommands
92  *                      Verify that the commands for a target are ok. Provide
93  *                      them if necessary and possible.
94  *
95  *      Job_Touch       Update a target without really updating it.
96  *
97  *      Job_Wait        Wait for all currently-running jobs to finish.
98  */
99
100 #include <sys/queue.h>
101 #include <sys/types.h>
102 #include <sys/select.h>
103 #include <sys/stat.h>
104 #ifdef USE_KQUEUE
105 #include <sys/event.h>
106 #endif
107 #include <sys/wait.h>
108 #include <ctype.h>
109 #include <errno.h>
110 #include <fcntl.h>
111 #include <inttypes.h>
112 #include <string.h>
113 #include <signal.h>
114 #include <stdlib.h>
115 #include <unistd.h>
116 #include <utime.h>
117
118 #include "arch.h"
119 #include "buf.h"
120 #include "config.h"
121 #include "dir.h"
122 #include "globals.h"
123 #include "GNode.h"
124 #include "job.h"
125 #include "make.h"
126 #include "parse.h"
127 #include "pathnames.h"
128 #include "str.h"
129 #include "suff.h"
130 #include "targ.h"
131 #include "util.h"
132 #include "var.h"
133
134 #define TMPPAT  "/tmp/makeXXXXXXXXXX"
135
136 #ifndef USE_KQUEUE
137 /*
138  * The SEL_ constants determine the maximum amount of time spent in select
139  * before coming out to see if a child has finished. SEL_SEC is the number of
140  * seconds and SEL_USEC is the number of micro-seconds
141  */
142 #define SEL_SEC         2
143 #define SEL_USEC        0
144 #endif /* !USE_KQUEUE */
145
146 /*
147  * Job Table definitions.
148  *
149  * The job "table" is kept as a linked Lst in 'jobs', with the number of
150  * active jobs maintained in the 'nJobs' variable. At no time will this
151  * exceed the value of 'maxJobs', initialized by the Job_Init function.
152  *
153  * When a job is finished, the Make_Update function is called on each of the
154  * parents of the node which was just remade. This takes care of the upward
155  * traversal of the dependency graph.
156  */
157 #define JOB_BUFSIZE     1024
158 typedef struct Job {
159         pid_t           pid;    /* The child's process ID */
160
161         struct GNode    *node;  /* The target the child is making */
162
163         /*
164          * A LstNode for the first command to be saved after the job completes.
165          * This is NULL if there was no "..." in the job's commands.
166          */
167         LstNode         *tailCmds;
168
169         /*
170          * An FILE* for writing out the commands. This is only
171          * used before the job is actually started.
172          */
173         FILE            *cmdFILE;
174
175         /*
176          * A word of flags which determine how the module handles errors,
177          * echoing, etc. for the job
178          */
179         short           flags;  /* Flags to control treatment of job */
180 #define JOB_IGNERR      0x001   /* Ignore non-zero exits */
181 #define JOB_SILENT      0x002   /* no output */
182 #define JOB_SPECIAL     0x004   /* Target is a special one. i.e. run it locally
183                                  * if we can't export it and maxLocal is 0 */
184 #define JOB_IGNDOTS     0x008   /* Ignore "..." lines when processing
185                                  * commands */
186 #define JOB_FIRST       0x020   /* Job is first job for the node */
187 #define JOB_RESTART     0x080   /* Job needs to be completely restarted */
188 #define JOB_RESUME      0x100   /* Job needs to be resumed b/c it stopped,
189                                  * for some reason */
190 #define JOB_CONTINUING  0x200   /* We are in the process of resuming this job.
191                                  * Used to avoid infinite recursion between
192                                  * JobFinish and JobRestart */
193
194         /* union for handling shell's output */
195         union {
196                 /*
197                  * This part is used when usePipes is true.
198                  * The output is being caught via a pipe and the descriptors
199                  * of our pipe, an array in which output is line buffered and
200                  * the current position in that buffer are all maintained for
201                  * each job.
202                  */
203                 struct {
204                         /*
205                          * Input side of pipe associated with
206                          * job's output channel
207                          */
208                         int     op_inPipe;
209
210                         /*
211                          * Output side of pipe associated with job's
212                          * output channel
213                          */
214                         int     op_outPipe;
215
216                         /*
217                          * Buffer for storing the output of the
218                          * job, line by line
219                          */
220                         char    op_outBuf[JOB_BUFSIZE + 1];
221
222                         /* Current position in op_outBuf */
223                         int     op_curPos;
224                 }       o_pipe;
225
226                 /*
227                  * If usePipes is false the output is routed to a temporary
228                  * file and all that is kept is the name of the file and the
229                  * descriptor open to the file.
230                  */
231                 struct {
232                         /* Name of file to which shell output was rerouted */
233                         char    of_outFile[sizeof(TMPPAT)];
234
235                         /*
236                          * Stream open to the output file. Used to funnel all
237                          * from a single job to one file while still allowing
238                          * multiple shell invocations
239                          */
240                         int     of_outFd;
241                 }       o_file;
242
243         }       output;     /* Data for tracking a shell's output */
244
245         TAILQ_ENTRY(Job) link;  /* list link */
246 } Job;
247
248 #define outPipe         output.o_pipe.op_outPipe
249 #define inPipe          output.o_pipe.op_inPipe
250 #define outBuf          output.o_pipe.op_outBuf
251 #define curPos          output.o_pipe.op_curPos
252 #define outFile         output.o_file.of_outFile
253 #define outFd           output.o_file.of_outFd
254
255 TAILQ_HEAD(JobList, Job);
256
257 /*
258  * Shell Specifications:
259  *
260  * Some special stuff goes on if a shell doesn't have error control. In such
261  * a case, errCheck becomes a printf template for echoing the command,
262  * should echoing be on and ignErr becomes another printf template for
263  * executing the command while ignoring the return status. If either of these
264  * strings is empty when hasErrCtl is FALSE, the command will be executed
265  * anyway as is and if it causes an error, so be it.
266  */
267 #define DEF_SHELL_STRUCT(TAG, CONST)                                    \
268 struct TAG {                                                            \
269         /*                                                              \
270          * the name of the shell. For Bourne and C shells, this is used \
271          * only to find the shell description when used as the single   \
272          * source of a .SHELL target. For user-defined shells, this is  \
273          * the full path of the shell.                                  \
274          */                                                             \
275         CONST char      *name;                                          \
276                                                                         \
277         /* True if both echoOff and echoOn defined */                   \
278         Boolean         hasEchoCtl;                                     \
279                                                                         \
280         CONST char      *echoOff;       /* command to turn off echo */  \
281         CONST char      *echoOn;        /* command to turn it back on */\
282                                                                         \
283         /*                                                              \
284          * What the shell prints, and its length, when given the        \
285          * echo-off command. This line will not be printed when         \
286          * received from the shell. This is usually the command which   \
287          * was executed to turn off echoing                             \
288          */                                                             \
289         CONST char      *noPrint;                                       \
290                                                                         \
291         /* set if can control error checking for individual commands */ \
292         Boolean         hasErrCtl;                                      \
293                                                                         \
294         /* string to turn error checking on */                          \
295         CONST char      *errCheck;                                      \
296                                                                         \
297         /* string to turn off error checking */                         \
298         CONST char      *ignErr;                                        \
299                                                                         \
300         CONST char      *echo;  /* command line flag: echo commands */  \
301         CONST char      *exit;  /* command line flag: exit on error */  \
302 }
303
304 DEF_SHELL_STRUCT(Shell,);
305 DEF_SHELL_STRUCT(CShell, const);
306
307 /*
308  * error handling variables
309  */
310 static int      errors = 0;     /* number of errors reported */
311 static int      aborting = 0;   /* why is the make aborting? */
312 #define ABORT_ERROR     1       /* Because of an error */
313 #define ABORT_INTERRUPT 2       /* Because it was interrupted */
314 #define ABORT_WAIT      3       /* Waiting for jobs to finish */
315
316 /*
317  * XXX: Avoid SunOS bug... FILENO() is fp->_file, and file
318  * is a char! So when we go above 127 we turn negative!
319  */
320 #define FILENO(a) ((unsigned)fileno(a))
321
322 /*
323  * post-make command processing. The node postCommands is really just the
324  * .END target but we keep it around to avoid having to search for it
325  * all the time.
326  */
327 static GNode    *postCommands;
328
329 /*
330  * The number of commands actually printed for a target. Should this
331  * number be 0, no shell will be executed.
332  */
333 static int      numCommands;
334
335 /*
336  * Return values from JobStart.
337  */
338 #define JOB_RUNNING     0       /* Job is running */
339 #define JOB_ERROR       1       /* Error in starting the job */
340 #define JOB_FINISHED    2       /* The job is already finished */
341 #define JOB_STOPPED     3       /* The job is stopped */
342
343 /*
344  * Descriptions for various shells.
345  */
346 static const struct CShell shells[] = {
347         /*
348          * CSH description. The csh can do echo control by playing
349          * with the setting of the 'echo' shell variable. Sadly,
350          * however, it is unable to do error control nicely.
351          */
352         {
353                 "csh",
354                 TRUE, "unset verbose", "set verbose", "unset verbose",
355                 FALSE, "echo \"%s\"\n", "csh -c \"%s || exit 0\"",
356                 "v", "e",
357         },
358         /*
359          * SH description. Echo control is also possible and, under
360          * sun UNIX anyway, one can even control error checking.
361          */
362         {
363                 "sh",
364                 TRUE, "set -", "set -v", "set -",
365                 TRUE, "set -e", "set +e",
366 #ifdef OLDBOURNESHELL
367                 FALSE, "echo \"%s\"\n", "sh -c '%s || exit 0'\n",
368 #endif
369                 "v", "e",
370         },
371         /*
372          * KSH description. The Korn shell has a superset of
373          * the Bourne shell's functionality.
374          */
375         {
376                 "ksh",
377                 TRUE, "set -", "set -v", "set -",
378                 TRUE, "set -e", "set +e",
379                 "v", "e",
380         },
381 };
382
383 /*
384  * This is the shell to which we pass all commands in the Makefile.
385  * It is set by the Job_ParseShell function.
386  */
387 static struct Shell *commandShell = NULL;
388 static char     *shellPath = NULL;      /* full pathname of executable image */
389 static char     *shellName = NULL;      /* last component of shell */
390
391 int             maxJobs;        /* The most children we can run at once */
392 static int      nJobs;          /* The number of children currently running */
393
394 /* The structures that describe them */
395 static struct JobList jobs = TAILQ_HEAD_INITIALIZER(jobs);
396
397 static Boolean  jobFull;        /* Flag to tell when the job table is full. It
398                                  * is set TRUE when (1) the total number of
399                                  * running jobs equals the maximum allowed */
400 #ifdef USE_KQUEUE
401 static int      kqfd;           /* File descriptor obtained by kqueue() */
402 #else
403 static fd_set   outputs;        /* Set of descriptors of pipes connected to
404                                  * the output channels of children */
405 #endif
406
407 static GNode    *lastNode;      /* The node for which output was most recently
408                                  * produced. */
409 static const char *targFmt;     /* Format string to use to head output from a
410                                  * job when it's not the most-recent job heard
411                                  * from */
412
413 #define TARG_FMT  "--- %s ---\n" /* Default format */
414 #define MESSAGE(fp, gn) \
415          fprintf(fp, targFmt, gn->name);
416
417 /*
418  * When JobStart attempts to run a job but isn't allowed to
419  * or when Job_CatchChildren detects a job that has
420  * been stopped somehow, the job is placed on the stoppedJobs queue to be run
421  * when the next job finishes.
422  *
423  * Lst of Job structures describing jobs that were stopped due to
424  * concurrency limits or externally
425  */
426 static struct JobList stoppedJobs = TAILQ_HEAD_INITIALIZER(stoppedJobs);
427
428 static int      fifoFd;         /* Fd of our job fifo */
429 static char     fifoName[] = "/tmp/make_fifo_XXXXXXXXX";
430 static int      fifoMaster;
431
432 static sig_atomic_t interrupted;
433
434
435 #if defined(USE_PGRP) && defined(SYSV)
436 # define KILL(pid, sig)         killpg(-(pid), (sig))
437 #else
438 # if defined(USE_PGRP)
439 #  define KILL(pid, sig)        killpg((pid), (sig))
440 # else
441 #  define KILL(pid, sig)        kill((pid), (sig))
442 # endif
443 #endif
444
445 /*
446  * Grmpf... There is no way to set bits of the wait structure
447  * anymore with the stupid W*() macros. I liked the union wait
448  * stuff much more. So, we devise our own macros... This is
449  * really ugly, use dramamine sparingly. You have been warned.
450  */
451 #define W_SETMASKED(st, val, fun)                               \
452         {                                                       \
453                 int sh = (int)~0;                               \
454                 int mask = fun(sh);                             \
455                                                                 \
456                 for (sh = 0; ((mask >> sh) & 1) == 0; sh++)     \
457                         continue;                               \
458                 *(st) = (*(st) & ~mask) | ((val) << sh);        \
459         }
460
461 #define W_SETTERMSIG(st, val) W_SETMASKED(st, val, WTERMSIG)
462 #define W_SETEXITSTATUS(st, val) W_SETMASKED(st, val, WEXITSTATUS)
463
464 /**
465  * Information used to create a new process.
466  */
467 typedef struct ProcStuff {
468         int     in;     /* stdin for new process */
469         int     out;    /* stdout for new process */
470         int     err;    /* stderr for new process */
471
472         int     merge_errors;   /* true if stderr is redirected to stdin */
473         int     pgroup;         /* true if new process a process leader */
474         int     searchpath;     /* true if binary should be found via $PATH */
475
476         char    **argv;
477 } ProcStuff;
478
479 static void JobRestart(Job *);
480 static int JobStart(GNode *, int, Job *);
481 static void JobDoOutput(Job *, Boolean);
482 static struct Shell *JobMatchShell(const char *);
483 static void JobInterrupt(int, int);
484 static void JobRestartJobs(void);
485 static void ProcExec(ProcStuff *) __dead2;
486
487 /**
488  * Replace the current process.
489  */
490 static void
491 ProcExec(ProcStuff *ps)
492 {
493         if (ps->in != STDIN_FILENO) {
494                 /*
495                  * Redirect the child's stdin to the input fd
496                  * and reset it to the beginning (again).
497                  */
498                 if (dup2(ps->in, STDIN_FILENO) == -1)
499                         Punt("Cannot dup2: %s", strerror(errno));
500                 lseek(STDIN_FILENO, (off_t)0, SEEK_SET);
501         }
502
503         if (ps->out != STDOUT_FILENO) {
504                 /*
505                  * Redirect the child's stdout to the output fd.
506                  */
507                 if (dup2(ps->out, STDOUT_FILENO) == -1)
508                         Punt("Cannot dup2: %s", strerror(errno));
509                 close(ps->out);
510         }
511
512         if (ps->err != STDERR_FILENO) {
513                 /*
514                  * Redirect the child's stderr to the err fd.
515                  */
516                 if (dup2(ps->err, STDERR_FILENO) == -1)
517                         Punt("Cannot dup2: %s", strerror(errno));
518                 close(ps->err);
519         }
520
521         if (ps->merge_errors) {
522                 /*
523                  * Send stderr to parent process too. 
524                  */
525                 if (dup2(STDOUT_FILENO, STDERR_FILENO) == -1)
526                         Punt("Cannot dup2: %s", strerror(errno));
527         }
528
529         /*
530          * The file descriptors for stdin, stdout, or stderr might
531          * have been marked close-on-exec.  Clear the flag on all
532          * of them.
533          */
534         fcntl(STDIN_FILENO, F_SETFD,
535             fcntl(STDIN_FILENO, F_GETFD) & (~FD_CLOEXEC));
536         fcntl(STDOUT_FILENO, F_SETFD,
537             fcntl(STDOUT_FILENO, F_GETFD) & (~FD_CLOEXEC));
538         fcntl(STDERR_FILENO, F_SETFD,
539             fcntl(STDERR_FILENO, F_GETFD) & (~FD_CLOEXEC));
540
541         if (ps->pgroup) {
542 #ifdef USE_PGRP
543                 /*
544                  * Become a process group leader, so we can kill it and all
545                  * its descendants in one fell swoop, by killing its process
546                  * family, but not commit suicide.
547                  */
548 #if defined(SYSV)
549                 setsid();
550 #else
551                 setpgid(0, getpid());
552 #endif
553 #endif /* USE_PGRP */
554         }
555
556         if (ps->searchpath) {
557                 execvp(ps->argv[0], ps->argv);
558
559                 write(STDERR_FILENO, ps->argv[0], strlen(ps->argv[0]));
560                 write(STDERR_FILENO, ":", 1);
561                 write(STDERR_FILENO, strerror(errno), strlen(strerror(errno)));
562                 write(STDERR_FILENO, "\n", 1);
563         } else {
564                 execv(shellPath, ps->argv);
565
566                 write(STDERR_FILENO,
567                       "Could not execute shell\n",
568                       sizeof("Could not execute shell"));
569         }
570
571         /*
572          * Since we are the child process, exit without flushing buffers.
573          */
574         _exit(1);
575 }
576
577 /**
578  * JobCatchSignal
579  *      Got a signal. Set global variables and hope that someone will
580  *      handle it.
581  */
582 static void
583 JobCatchSig(int signo)
584 {
585
586         interrupted = signo;
587 }
588
589 /**
590  * JobPassSig --
591  *      Pass a signal on to all local jobs if
592  *      USE_PGRP is defined, then die ourselves.
593  *
594  * Side Effects:
595  *      We die by the same signal.
596  */
597 static void
598 JobPassSig(int signo)
599 {
600         Job     *job;
601         sigset_t nmask, omask;
602         struct sigaction act;
603
604         sigemptyset(&nmask);
605         sigaddset(&nmask, signo);
606         sigprocmask(SIG_SETMASK, &nmask, &omask);
607
608         DEBUGF(JOB, ("JobPassSig(%d) called.\n", signo));
609         TAILQ_FOREACH(job, &jobs, link) {
610                 DEBUGF(JOB, ("JobPassSig passing signal %d to child %jd.\n",
611                     signo, (intmax_t)job->pid));
612                 KILL(job->pid, signo);
613         }
614
615         /*
616          * Deal with proper cleanup based on the signal received. We only run
617          * the .INTERRUPT target if the signal was in fact an interrupt.
618          * The other three termination signals are more of a "get out *now*"
619          * command.
620          */
621         if (signo == SIGINT) {
622                 JobInterrupt(TRUE, signo);
623         } else if (signo == SIGHUP || signo == SIGTERM || signo == SIGQUIT) {
624                 JobInterrupt(FALSE, signo);
625         }
626
627         /*
628          * Leave gracefully if SIGQUIT, rather than core dumping.
629          */
630         if (signo == SIGQUIT) {
631                 signo = SIGINT;
632         }
633
634         /*
635          * Send ourselves the signal now we've given the message to everyone
636          * else. Note we block everything else possible while we're getting
637          * the signal. This ensures that all our jobs get continued when we
638          * wake up before we take any other signal.
639          * XXX this comment seems wrong.
640          */
641         act.sa_handler = SIG_DFL;
642         sigemptyset(&act.sa_mask);
643         act.sa_flags = 0;
644         sigaction(signo, &act, NULL);
645
646         DEBUGF(JOB, ("JobPassSig passing signal to self, mask = %x.\n",
647             ~0 & ~(1 << (signo - 1))));
648         signal(signo, SIG_DFL);
649
650         KILL(getpid(), signo);
651
652         signo = SIGCONT;
653         TAILQ_FOREACH(job, &jobs, link) {
654                 DEBUGF(JOB, ("JobPassSig passing signal %d to child %jd.\n",
655                     signo, (intmax_t)job->pid));
656                 KILL(job->pid, signo);
657         }
658
659         sigprocmask(SIG_SETMASK, &omask, NULL);
660         sigprocmask(SIG_SETMASK, &omask, NULL);
661         act.sa_handler = JobPassSig;
662         sigaction(signo, &act, NULL);
663 }
664
665 /**
666  * JobPrintCommand  --
667  *      Put out another command for the given job. If the command starts
668  *      with an @ or a - we process it specially. In the former case,
669  *      so long as the -s and -n flags weren't given to make, we stick
670  *      a shell-specific echoOff command in the script. In the latter,
671  *      we ignore errors for the entire job, unless the shell has error
672  *      control.
673  *      If the command is just "..." we take all future commands for this
674  *      job to be commands to be executed once the entire graph has been
675  *      made and return non-zero to signal that the end of the commands
676  *      was reached. These commands are later attached to the postCommands
677  *      node and executed by Job_Finish when all things are done.
678  *      This function is called from JobStart via LST_FOREACH.
679  *
680  * Results:
681  *      Always 0, unless the command was "..."
682  *
683  * Side Effects:
684  *      If the command begins with a '-' and the shell has no error control,
685  *      the JOB_IGNERR flag is set in the job descriptor.
686  *      If the command is "..." and we're not ignoring such things,
687  *      tailCmds is set to the successor node of the cmd.
688  *      numCommands is incremented if the command is actually printed.
689  */
690 static int
691 JobPrintCommand(char *cmd, Job *job)
692 {
693         Boolean noSpecials;     /* true if we shouldn't worry about
694                                  * inserting special commands into
695                                  * the input stream. */
696         Boolean shutUp = FALSE; /* true if we put a no echo command
697                                  * into the command file */
698         Boolean errOff = FALSE; /* true if we turned error checking
699                                  * off before printing the command
700                                  * and need to turn it back on */
701         const char *cmdTemplate;/* Template to use when printing the command */
702         char    *cmdStart;      /* Start of expanded command */
703         LstNode *cmdNode;       /* Node for replacing the command */
704
705         noSpecials = (noExecute && !(job->node->type & OP_MAKE));
706
707         if (strcmp(cmd, "...") == 0) {
708                 job->node->type |= OP_SAVE_CMDS;
709                 if ((job->flags & JOB_IGNDOTS) == 0) {
710                         job->tailCmds =
711                             Lst_Succ(Lst_Member(&job->node->commands, cmd));
712                         return (1);
713                 }
714                 return (0);
715         }
716
717 #define DBPRINTF(fmt, arg)                      \
718         DEBUGF(JOB, (fmt, arg));                \
719         fprintf(job->cmdFILE, fmt, arg);        \
720         fflush(job->cmdFILE);
721
722         numCommands += 1;
723
724         /*
725          * For debugging, we replace each command with the result of expanding
726          * the variables in the command.
727          */
728         cmdNode = Lst_Member(&job->node->commands, cmd);
729
730         cmd = Buf_Peel(Var_Subst(cmd, job->node, FALSE));
731         cmdStart = cmd;
732
733         Lst_Replace(cmdNode, cmdStart);
734
735         cmdTemplate = "%s\n";
736
737         /*
738          * Check for leading @', -' or +'s to control echoing, error checking,
739          * and execution on -n.
740          */
741         while (*cmd == '@' || *cmd == '-' || *cmd == '+') {
742                 switch (*cmd) {
743
744                   case '@':
745                         shutUp = DEBUG(LOUD) ? FALSE : TRUE;
746                         break;
747
748                   case '-':
749                         errOff = TRUE;
750                         break;
751
752                   case '+':
753                         if (noSpecials) {
754                                 /*
755                                  * We're not actually exececuting anything...
756                                  * but this one needs to be - use compat mode
757                                  * just for it.
758                                  */
759                                 Compat_RunCommand(cmd, job->node);
760                                 return (0);
761                         }
762                         break;
763                 }
764                 cmd++;
765         }
766
767         while (isspace((unsigned char)*cmd))
768                 cmd++;
769
770         if (shutUp) {
771                 if (!(job->flags & JOB_SILENT) && !noSpecials &&
772                     commandShell->hasEchoCtl) {
773                         DBPRINTF("%s\n", commandShell->echoOff);
774                 } else {
775                         shutUp = FALSE;
776                 }
777         }
778
779         if (errOff) {
780                 if (!(job->flags & JOB_IGNERR) && !noSpecials) {
781                         if (commandShell->hasErrCtl) {
782                                 /*
783                                  * We don't want the error-control commands
784                                  * showing up either, so we turn off echoing
785                                  * while executing them. We could put another
786                                  * field in the shell structure to tell
787                                  * JobDoOutput to look for this string too,
788                                  * but why make it any more complex than
789                                  * it already is?
790                                  */
791                                 if (!(job->flags & JOB_SILENT) && !shutUp &&
792                                     commandShell->hasEchoCtl) {
793                                         DBPRINTF("%s\n", commandShell->echoOff);
794                                         DBPRINTF("%s\n", commandShell->ignErr);
795                                         DBPRINTF("%s\n", commandShell->echoOn);
796                                 } else {
797                                         DBPRINTF("%s\n", commandShell->ignErr);
798                                 }
799                         } else if (commandShell->ignErr &&
800                             *commandShell->ignErr != '\0') {
801                                 /*
802                                  * The shell has no error control, so we need to
803                                  * be weird to get it to ignore any errors from
804                                  * the command. If echoing is turned on, we turn
805                                  * it off and use the errCheck template to echo
806                                  * the command. Leave echoing off so the user
807                                  * doesn't see the weirdness we go through to
808                                  * ignore errors. Set cmdTemplate to use the
809                                  * weirdness instead of the simple "%s\n"
810                                  * template.
811                                  */
812                                 if (!(job->flags & JOB_SILENT) && !shutUp &&
813                                     commandShell->hasEchoCtl) {
814                                         DBPRINTF("%s\n", commandShell->echoOff);
815                                         DBPRINTF(commandShell->errCheck, cmd);
816                                         shutUp = TRUE;
817                                 }
818                                 cmdTemplate = commandShell->ignErr;
819                                 /*
820                                  * The error ignoration (hee hee) is already
821                                  * taken care of by the ignErr template, so
822                                  * pretend error checking is still on.
823                                 */
824                                 errOff = FALSE;
825                         } else {
826                                 errOff = FALSE;
827                         }
828                 } else {
829                         errOff = FALSE;
830                 }
831         }
832
833         DBPRINTF(cmdTemplate, cmd);
834
835         if (errOff) {
836                 /*
837                  * If echoing is already off, there's no point in issuing the
838                  * echoOff command. Otherwise we issue it and pretend it was on
839                  * for the whole command...
840                  */
841                 if (!shutUp && !(job->flags & JOB_SILENT) &&
842                     commandShell->hasEchoCtl) {
843                         DBPRINTF("%s\n", commandShell->echoOff);
844                         shutUp = TRUE;
845                 }
846                 DBPRINTF("%s\n", commandShell->errCheck);
847         }
848         if (shutUp) {
849                 DBPRINTF("%s\n", commandShell->echoOn);
850         }
851         return (0);
852 }
853
854 /**
855  * JobClose --
856  *      Called to close both input and output pipes when a job is finished.
857  *
858  * Side Effects:
859  *      The file descriptors associated with the job are closed.
860  */
861 static void
862 JobClose(Job *job)
863 {
864
865         if (usePipes) {
866 #if !defined(USE_KQUEUE)
867                 FD_CLR(job->inPipe, &outputs);
868 #endif
869                 if (job->outPipe != job->inPipe) {
870                         close(job->outPipe);
871                 }
872                 JobDoOutput(job, TRUE);
873                 close(job->inPipe);
874         } else {
875                 close(job->outFd);
876                 JobDoOutput(job, TRUE);
877         }
878 }
879
880 /**
881  * JobFinish  --
882  *      Do final processing for the given job including updating
883  *      parents and starting new jobs as available/necessary. Note
884  *      that we pay no attention to the JOB_IGNERR flag here.
885  *      This is because when we're called because of a noexecute flag
886  *      or something, jstat.w_status is 0 and when called from
887  *      Job_CatchChildren, the status is zeroed if it s/b ignored.
888  *
889  * Side Effects:
890  *      Some nodes may be put on the toBeMade queue.
891  *      Final commands for the job are placed on postCommands.
892  *
893  *      If we got an error and are aborting (aborting == ABORT_ERROR) and
894  *      the job list is now empty, we are done for the day.
895  *      If we recognized an error (errors !=0), we set the aborting flag
896  *      to ABORT_ERROR so no more jobs will be started.
897  */
898 static void
899 JobFinish(Job *job, int *status)
900 {
901         Boolean done;
902         LstNode *ln;
903
904         if ((WIFEXITED(*status) && WEXITSTATUS(*status) != 0 &&
905             !(job->flags & JOB_IGNERR)) ||
906             (WIFSIGNALED(*status) && WTERMSIG(*status) != SIGCONT)) {
907                 /*
908                  * If it exited non-zero and either we're doing things our
909                  * way or we're not ignoring errors, the job is finished.
910                  * Similarly, if the shell died because of a signal
911                  * the job is also finished. In these cases, finish out the
912                  * job's output before printing the exit status...
913                  */
914                 JobClose(job);
915                 if (job->cmdFILE != NULL && job->cmdFILE != stdout) {
916                         fclose(job->cmdFILE);
917                 }
918                 done = TRUE;
919
920         } else if (WIFEXITED(*status)) {
921                 /*
922                  * Deal with ignored errors in -B mode. We need to print a
923                  * message telling of the ignored error as well as setting
924                  * status.w_status to 0 so the next command gets run. To do
925                  * this, we set done to be TRUE if in -B mode and the job
926                  * exited non-zero.
927                  */
928                 done = WEXITSTATUS(*status) != 0;
929
930                 /*
931                  * Old comment said: "Note we don't want to close down any of
932                  * the streams until we know we're at the end." But we do.
933                  * Otherwise when are we going to print the rest of the stuff?
934                  */
935                 JobClose(job);
936         } else {
937                 /*
938                  * No need to close things down or anything.
939                  */
940                 done = FALSE;
941         }
942
943         if (done || WIFSTOPPED(*status) ||
944             (WIFSIGNALED(*status) && WTERMSIG(*status) == SIGCONT) ||
945             DEBUG(JOB)) {
946                 FILE    *out;
947
948                 if (compatMake && !usePipes && (job->flags & JOB_IGNERR)) {
949                         /*
950                          * If output is going to a file and this job is ignoring
951                          * errors, arrange to have the exit status sent to the
952                          * output file as well.
953                          */
954                         out = fdopen(job->outFd, "w");
955                         if (out == NULL)
956                                 Punt("Cannot fdopen");
957                 } else {
958                         out = stdout;
959                 }
960
961                 if (WIFEXITED(*status)) {
962                         DEBUGF(JOB, ("Process %jd exited.\n",
963                             (intmax_t)job->pid));
964                         if (WEXITSTATUS(*status) != 0) {
965                                 if (usePipes && job->node != lastNode) {
966                                         MESSAGE(out, job->node);
967                                         lastNode = job->node;
968                                 }
969                                 fprintf(out, "*** Error code %d%s\n",
970                                     WEXITSTATUS(*status),
971                                     (job->flags & JOB_IGNERR) ?
972                                     "(ignored)" : "");
973
974                                 if (job->flags & JOB_IGNERR) {
975                                         *status = 0;
976                                 }
977                         } else if (DEBUG(JOB)) {
978                                 if (usePipes && job->node != lastNode) {
979                                         MESSAGE(out, job->node);
980                                         lastNode = job->node;
981                                 }
982                                 fprintf(out, "*** Completed successfully\n");
983                         }
984
985                 } else if (WIFSTOPPED(*status)) {
986                         DEBUGF(JOB, ("Process %jd stopped.\n",
987                             (intmax_t)job->pid));
988                         if (usePipes && job->node != lastNode) {
989                                 MESSAGE(out, job->node);
990                                 lastNode = job->node;
991                         }
992                         fprintf(out, "*** Stopped -- signal %d\n",
993                         WSTOPSIG(*status));
994                         job->flags |= JOB_RESUME;
995                         TAILQ_INSERT_TAIL(&stoppedJobs, job, link);
996                         fflush(out);
997                         return;
998
999                 } else if (WTERMSIG(*status) == SIGCONT) {
1000                         /*
1001                          * If the beastie has continued, shift the Job from
1002                          * the stopped list to the running one (or re-stop it
1003                          * if concurrency is exceeded) and go and get another
1004                          * child.
1005                          */
1006                         if (job->flags & (JOB_RESUME | JOB_RESTART)) {
1007                                 if (usePipes && job->node != lastNode) {
1008                                         MESSAGE(out, job->node);
1009                                         lastNode = job->node;
1010                                 }
1011                                 fprintf(out, "*** Continued\n");
1012                         }
1013                         if (!(job->flags & JOB_CONTINUING)) {
1014                                 DEBUGF(JOB, ("Warning: process %jd was not "
1015                                     "continuing.\n", (intmax_t)job->pid));
1016 #ifdef notdef
1017                                 /*
1018                                  * We don't really want to restart a job from
1019                                  * scratch just because it continued, especially
1020                                  * not without killing the continuing process!
1021                                  *  That's why this is ifdef'ed out.
1022                                  * FD - 9/17/90
1023                                  */
1024                                 JobRestart(job);
1025 #endif
1026                         }
1027                         job->flags &= ~JOB_CONTINUING;
1028                         TAILQ_INSERT_TAIL(&jobs, job, link);
1029                         nJobs += 1;
1030                         DEBUGF(JOB, ("Process %jd is continuing locally.\n",
1031                             (intmax_t)job->pid));
1032                         if (nJobs == maxJobs) {
1033                                 jobFull = TRUE;
1034                                 DEBUGF(JOB, ("Job queue is full.\n"));
1035                         }
1036                         fflush(out);
1037                         return;
1038
1039                 } else {
1040                         if (usePipes && job->node != lastNode) {
1041                                 MESSAGE(out, job->node);
1042                                 lastNode = job->node;
1043                         }
1044                         fprintf(out, "*** Signal %d\n", WTERMSIG(*status));
1045                 }
1046
1047                 fflush(out);
1048         }
1049
1050         /*
1051          * Now handle the -B-mode stuff. If the beast still isn't finished,
1052          * try and restart the job on the next command. If JobStart says it's
1053          * ok, it's ok. If there's an error, this puppy is done.
1054          */
1055         if (compatMake && WIFEXITED(*status) &&
1056             Lst_Succ(job->node->compat_command) != NULL) {
1057                 switch (JobStart(job->node, job->flags & JOB_IGNDOTS, job)) {
1058                   case JOB_RUNNING:
1059                         done = FALSE;
1060                         break;
1061                   case JOB_ERROR:
1062                         done = TRUE;
1063                         W_SETEXITSTATUS(status, 1);
1064                         break;
1065                   case JOB_FINISHED:
1066                         /*
1067                          * If we got back a JOB_FINISHED code, JobStart has
1068                          * already called Make_Update and freed the job
1069                          * descriptor. We set done to false here to avoid fake
1070                          * cycles and double frees. JobStart needs to do the
1071                          * update so we can proceed up the graph when given
1072                          * the -n flag..
1073                          */
1074                         done = FALSE;
1075                         break;
1076                   default:
1077                         break;
1078                 }
1079         } else {
1080                 done = TRUE;
1081         }
1082
1083         if (done && aborting != ABORT_ERROR &&
1084             aborting != ABORT_INTERRUPT && *status == 0) {
1085                 /*
1086                  * As long as we aren't aborting and the job didn't return a
1087                  * non-zero status that we shouldn't ignore, we call
1088                  * Make_Update to update the parents. In addition, any saved
1089                  * commands for the node are placed on the .END target.
1090                  */
1091                 for (ln = job->tailCmds; ln != NULL; ln = LST_NEXT(ln)) {
1092                         Lst_AtEnd(&postCommands->commands,
1093                             Buf_Peel(
1094                                 Var_Subst(Lst_Datum(ln), job->node, FALSE)));
1095                 }
1096
1097                 job->node->made = MADE;
1098                 Make_Update(job->node);
1099                 free(job);
1100
1101         } else if (*status != 0) {
1102                 errors += 1;
1103                 free(job);
1104         }
1105
1106         JobRestartJobs();
1107
1108         /*
1109          * Set aborting if any error.
1110          */
1111         if (errors && !keepgoing && aborting != ABORT_INTERRUPT) {
1112                 /*
1113                  * If we found any errors in this batch of children and the -k
1114                  * flag wasn't given, we set the aborting flag so no more jobs
1115                  * get started.
1116                  */
1117                 aborting = ABORT_ERROR;
1118         }
1119
1120         if (aborting == ABORT_ERROR && Job_Empty()) {
1121                 /*
1122                  * If we are aborting and the job table is now empty, we finish.
1123                  */
1124                 Finish(errors);
1125         }
1126 }
1127
1128 /**
1129  * Job_Touch
1130  *      Touch the given target. Called by JobStart when the -t flag was
1131  *      given.  Prints messages unless told to be silent.
1132  *
1133  * Side Effects:
1134  *      The data modification of the file is changed. In addition, if the
1135  *      file did not exist, it is created.
1136  */
1137 void
1138 Job_Touch(GNode *gn, Boolean silent)
1139 {
1140         int     streamID;       /* ID of stream opened to do the touch */
1141         struct utimbuf times;   /* Times for utime() call */
1142
1143         if (gn->type & (OP_JOIN | OP_USE | OP_EXEC | OP_OPTIONAL)) {
1144                 /*
1145                  * .JOIN, .USE, .ZEROTIME and .OPTIONAL targets are "virtual"
1146                  * targets and, as such, shouldn't really be created.
1147                  */
1148                 return;
1149         }
1150
1151         if (!silent) {
1152                 fprintf(stdout, "touch %s\n", gn->name);
1153                 fflush(stdout);
1154         }
1155
1156         if (noExecute) {
1157                 return;
1158         }
1159
1160         if (gn->type & OP_ARCHV) {
1161                 Arch_Touch(gn);
1162         } else if (gn->type & OP_LIB) {
1163                 Arch_TouchLib(gn);
1164         } else {
1165                 char    *file = gn->path ? gn->path : gn->name;
1166
1167                 times.actime = times.modtime = now;
1168                 if (utime(file, &times) < 0) {
1169                         streamID = open(file, O_RDWR | O_CREAT, 0666);
1170
1171                         if (streamID >= 0) {
1172                                 char    c;
1173
1174                                 /*
1175                                  * Read and write a byte to the file to change
1176                                  * the modification time, then close the file.
1177                                  */
1178                                 if (read(streamID, &c, 1) == 1) {
1179                                         lseek(streamID, (off_t)0, SEEK_SET);
1180                                         write(streamID, &c, 1);
1181                                 }
1182
1183                                 close(streamID);
1184                         } else {
1185                                 fprintf(stdout, "*** couldn't touch %s: %s",
1186                                     file, strerror(errno));
1187                                 fflush(stdout);
1188                         }
1189                 }
1190         }
1191 }
1192
1193 /**
1194  * Job_CheckCommands
1195  *      Make sure the given node has all the commands it needs.
1196  *
1197  * Results:
1198  *      TRUE if the commands list is/was ok.
1199  *
1200  * Side Effects:
1201  *      The node will have commands from the .DEFAULT rule added to it
1202  *      if it needs them.
1203  */
1204 Boolean
1205 Job_CheckCommands(GNode *gn, void (*abortProc)(const char *, ...))
1206 {
1207
1208         if (OP_NOP(gn->type) && Lst_IsEmpty(&gn->commands) &&
1209             (gn->type & OP_LIB) == 0) {
1210                 /*
1211                  * No commands. Look for .DEFAULT rule from which we might infer
1212                  * commands.
1213                  */
1214                 if (DEFAULT != NULL && !Lst_IsEmpty(&DEFAULT->commands)) {
1215                         char *p1;
1216                         /*
1217                          * Make only looks for a .DEFAULT if the node was
1218                          * never the target of an operator, so that's what we
1219                          * do too. If a .DEFAULT was given, we substitute its
1220                          * commands for gn's commands and set the IMPSRC
1221                          * variable to be the target's name The DEFAULT node
1222                          * acts like a transformation rule, in that gn also
1223                          * inherits any attributes or sources attached to
1224                          * .DEFAULT itself.
1225                          */
1226                         Make_HandleUse(DEFAULT, gn);
1227                         Var_Set(IMPSRC, Var_Value(TARGET, gn, &p1), gn);
1228                         free(p1);
1229
1230                 } else if (Dir_MTime(gn) == 0) {
1231                         /*
1232                          * The node wasn't the target of an operator we have
1233                          * no .DEFAULT rule to go on and the target doesn't
1234                          * already exist. There's nothing more we can do for
1235                          * this branch. If the -k flag wasn't given, we stop
1236                          * in our tracks, otherwise we just don't update
1237                          * this node's parents so they never get examined.
1238                          */
1239                         static const char msg[] =
1240                             "make: don't know how to make";
1241
1242                         if (gn->type & OP_OPTIONAL) {
1243                                 fprintf(stdout, "%s %s(ignored)\n",
1244                                     msg, gn->name);
1245                                 fflush(stdout);
1246                         } else if (keepgoing) {
1247                                 fprintf(stdout, "%s %s(continuing)\n",
1248                                     msg, gn->name);
1249                                 fflush(stdout);
1250                                 return (FALSE);
1251                         } else {
1252 #if OLD_JOKE
1253                                 if (strcmp(gn->name,"love") == 0)
1254                                         (*abortProc)("Not war.");
1255                                 else
1256 #endif
1257                                         (*abortProc)("%s %s. Stop",
1258                                             msg, gn->name);
1259                                 return (FALSE);
1260                         }
1261                 }
1262         }
1263         return (TRUE);
1264 }
1265
1266 /**
1267  * JobExec
1268  *      Execute the shell for the given job. Called from JobStart and
1269  *      JobRestart.
1270  *
1271  * Side Effects:
1272  *      A shell is executed, outputs is altered and the Job structure added
1273  *      to the job table.
1274  */
1275 static void
1276 JobExec(Job *job, char **argv)
1277 {
1278         ProcStuff       ps;
1279         pid_t           cpid;   /* ID of new child */
1280
1281         if (DEBUG(JOB)) {
1282                 int       i;
1283
1284                 DEBUGF(JOB, ("Running %s\n", job->node->name));
1285                 DEBUGF(JOB, ("\tCommand: "));
1286                 for (i = 0; argv[i] != NULL; i++) {
1287                         DEBUGF(JOB, ("%s ", argv[i]));
1288                 }
1289                 DEBUGF(JOB, ("\n"));
1290         }
1291
1292         /*
1293          * Some jobs produce no output and it's disconcerting to have
1294          * no feedback of their running (since they produce no output, the
1295          * banner with their name in it never appears). This is an attempt to
1296          * provide that feedback, even if nothing follows it.
1297          */
1298         if (lastNode != job->node && (job->flags & JOB_FIRST) &&
1299             !(job->flags & JOB_SILENT)) {
1300                 MESSAGE(stdout, job->node);
1301                 lastNode = job->node;
1302         }
1303
1304         ps.in = FILENO(job->cmdFILE);
1305         if (usePipes) {
1306                 /*
1307                  * Set up the child's output to be routed through the
1308                  * pipe we've created for it.
1309                  */
1310                 ps.out = job->outPipe;
1311         } else {
1312                 /*
1313                  * We're capturing output in a file, so we duplicate
1314                  * the descriptor to the temporary file into the
1315                  * standard output.
1316                  */
1317                 ps.out = job->outFd;
1318         }
1319         ps.err = STDERR_FILENO;
1320
1321         ps.merge_errors = 1;
1322         ps.pgroup = 1;
1323         ps.searchpath = 0;
1324
1325         ps.argv = argv;
1326
1327         /*
1328          * Fork.  Warning since we are doing vfork() instead of fork(),
1329          * do not allocate memory in the child process!
1330          */
1331         if ((cpid = vfork()) == -1) {
1332                 Punt("Cannot fork");
1333
1334         } else if (cpid == 0) {
1335                 /*
1336                  * Child
1337                  */
1338                 if (fifoFd >= 0)
1339                         close(fifoFd);
1340
1341                 ProcExec(&ps);
1342                 /* NOTREACHED */
1343
1344         } else {
1345                 /*
1346                  * Parent
1347                  */
1348                 job->pid = cpid;
1349
1350                 if (usePipes && (job->flags & JOB_FIRST)) {
1351                         /*
1352                          * The first time a job is run for a node, we set the
1353                          * current position in the buffer to the beginning and
1354                          * mark another stream to watch in the outputs mask.
1355                          */
1356 #ifdef USE_KQUEUE
1357                         struct kevent   kev[2];
1358 #endif
1359                         job->curPos = 0;
1360
1361 #if defined(USE_KQUEUE)
1362                         EV_SET(&kev[0], job->inPipe, EVFILT_READ, EV_ADD, 0, 0, job);
1363                         EV_SET(&kev[1], job->pid, EVFILT_PROC,
1364                             EV_ADD | EV_ONESHOT, NOTE_EXIT, 0, NULL);
1365                         if (kevent(kqfd, kev, 2, NULL, 0, NULL) != 0) {
1366                                 /*
1367                                  * kevent() will fail if the job is already
1368                                  * finished
1369                                  */
1370                                 if (errno != EINTR && errno != EBADF && errno != ESRCH)
1371                                         Punt("kevent: %s", strerror(errno));
1372                         }
1373 #else
1374                         FD_SET(job->inPipe, &outputs);
1375 #endif /* USE_KQUEUE */
1376                 }
1377
1378                 if (job->cmdFILE != NULL && job->cmdFILE != stdout) {
1379                         fclose(job->cmdFILE);
1380                         job->cmdFILE = NULL;
1381                 }
1382
1383                 /*
1384                  * Now the job is actually running, add it to the table.
1385                  */
1386                 nJobs += 1;
1387                 TAILQ_INSERT_TAIL(&jobs, job, link);
1388                 if (nJobs == maxJobs) {
1389                         jobFull = TRUE;
1390                 }
1391         }
1392 }
1393
1394 /**
1395  * JobMakeArgv
1396  *      Create the argv needed to execute the shell for a given job.
1397  */
1398 static void
1399 JobMakeArgv(Job *job, char **argv)
1400 {
1401         int             argc;
1402         static char     args[10];       /* For merged arguments */
1403
1404         argv[0] = shellName;
1405         argc = 1;
1406
1407         if ((commandShell->exit && *commandShell->exit != '-') ||
1408             (commandShell->echo && *commandShell->echo != '-')) {
1409                 /*
1410                  * At least one of the flags doesn't have a minus before it, so
1411                  * merge them together. Have to do this because the *(&(@*#*&#$#
1412                  * Bourne shell thinks its second argument is a file to source.
1413                  * Grrrr. Note the ten-character limitation on the combined
1414                  * arguments.
1415                  */
1416                 sprintf(args, "-%s%s", (job->flags & JOB_IGNERR) ? "" :
1417                     commandShell->exit ? commandShell->exit : "",
1418                     (job->flags & JOB_SILENT) ? "" :
1419                     commandShell->echo ? commandShell->echo : "");
1420
1421                 if (args[1]) {
1422                         argv[argc] = args;
1423                         argc++;
1424                 }
1425         } else {
1426                 if (!(job->flags & JOB_IGNERR) && commandShell->exit) {
1427                         argv[argc] = commandShell->exit;
1428                         argc++;
1429                 }
1430                 if (!(job->flags & JOB_SILENT) && commandShell->echo) {
1431                         argv[argc] = commandShell->echo;
1432                         argc++;
1433                 }
1434         }
1435         argv[argc] = NULL;
1436 }
1437
1438 /**
1439  * JobRestart
1440  *      Restart a job that stopped for some reason. The job must be neither
1441  *      on the jobs nor on the stoppedJobs list.
1442  *
1443  * Side Effects:
1444  *      jobFull will be set if the job couldn't be run.
1445  */
1446 static void
1447 JobRestart(Job *job)
1448 {
1449
1450         if (job->flags & JOB_RESTART) {
1451                 /*
1452                  * Set up the control arguments to the shell. This is based on
1453                  * the flags set earlier for this job. If the JOB_IGNERR flag
1454                  * is clear, the 'exit' flag of the commandShell is used to
1455                  * cause it to exit upon receiving an error. If the JOB_SILENT
1456                  * flag is clear, the 'echo' flag of the commandShell is used
1457                  * to get it to start echoing as soon as it starts
1458                  * processing commands.
1459                  */
1460                 char    *argv[4];
1461
1462                 JobMakeArgv(job, argv);
1463
1464                 DEBUGF(JOB, ("Restarting %s...", job->node->name));
1465                 if (nJobs >= maxJobs && !(job->flags & JOB_SPECIAL)) {
1466                         /*
1467                          * Not allowed to run -- put it back on the hold
1468                          * queue and mark the table full
1469                          */
1470                         DEBUGF(JOB, ("holding\n"));
1471                         TAILQ_INSERT_HEAD(&stoppedJobs, job, link);
1472                         jobFull = TRUE;
1473                         DEBUGF(JOB, ("Job queue is full.\n"));
1474                         return;
1475                 } else {
1476                         /*
1477                          * Job may be run locally.
1478                          */
1479                         DEBUGF(JOB, ("running locally\n"));
1480                 }
1481                 JobExec(job, argv);
1482
1483         } else {
1484                 /*
1485                  * The job has stopped and needs to be restarted.
1486                  * Why it stopped, we don't know...
1487                  */
1488                 DEBUGF(JOB, ("Resuming %s...", job->node->name));
1489                 if ((nJobs < maxJobs || ((job->flags & JOB_SPECIAL) &&
1490                     maxJobs == 0)) && nJobs != maxJobs) {
1491                         /*
1492                          * If we haven't reached the concurrency limit already
1493                          * (or the job must be run and maxJobs is 0), it's ok
1494                          * to resume it.
1495                          */
1496                         Boolean error;
1497                         int status;
1498
1499                         error = (KILL(job->pid, SIGCONT) != 0);
1500
1501                         if (!error) {
1502                                 /*
1503                                  * Make sure the user knows we've continued
1504                                  * the beast and actually put the thing in the
1505                                  * job table.
1506                                  */
1507                                 job->flags |= JOB_CONTINUING;
1508                                 status = 0;
1509                                 W_SETTERMSIG(&status, SIGCONT);
1510                                 JobFinish(job, &status);
1511
1512                                 job->flags &= ~(JOB_RESUME|JOB_CONTINUING);
1513                                 DEBUGF(JOB, ("done\n"));
1514                         } else {
1515                                 Error("couldn't resume %s: %s",
1516                                 job->node->name, strerror(errno));
1517                                 status = 0;
1518                                 W_SETEXITSTATUS(&status, 1);
1519                                 JobFinish(job, &status);
1520                         }
1521                 } else {
1522                         /*
1523                         * Job cannot be restarted. Mark the table as full and
1524                         * place the job back on the list of stopped jobs.
1525                         */
1526                         DEBUGF(JOB, ("table full\n"));
1527                         TAILQ_INSERT_HEAD(&stoppedJobs, job, link);
1528                         jobFull = TRUE;
1529                         DEBUGF(JOB, ("Job queue is full.\n"));
1530                 }
1531         }
1532 }
1533
1534 /**
1535  * JobStart
1536  *      Start a target-creation process going for the target described
1537  *      by the graph node gn.
1538  *
1539  * Results:
1540  *      JOB_ERROR if there was an error in the commands, JOB_FINISHED
1541  *      if there isn't actually anything left to do for the job and
1542  *      JOB_RUNNING if the job has been started.
1543  *
1544  * Side Effects:
1545  *      A new Job node is created and added to the list of running
1546  *      jobs. PMake is forked and a child shell created.
1547  */
1548 static int
1549 JobStart(GNode *gn, int flags, Job *previous)
1550 {
1551         Job     *job;           /* new job descriptor */
1552         char    *argv[4];       /* Argument vector to shell */
1553         Boolean cmdsOK;         /* true if the nodes commands were all right */
1554         Boolean noExec;         /* Set true if we decide not to run the job */
1555         int     tfd;            /* File descriptor for temp file */
1556         LstNode *ln;
1557         char    tfile[sizeof(TMPPAT)];
1558
1559         if (interrupted) {
1560                 JobPassSig(interrupted);
1561                 return (JOB_ERROR);
1562         }
1563         if (previous != NULL) {
1564                 previous->flags &= ~(JOB_FIRST | JOB_IGNERR | JOB_SILENT);
1565                 job = previous;
1566         } else {
1567                 job = emalloc(sizeof(Job));
1568                 flags |= JOB_FIRST;
1569         }
1570
1571         job->node = gn;
1572         job->tailCmds = NULL;
1573
1574         /*
1575          * Set the initial value of the flags for this job based on the global
1576          * ones and the node's attributes... Any flags supplied by the caller
1577          * are also added to the field.
1578          */
1579         job->flags = 0;
1580         if (Targ_Ignore(gn)) {
1581                 job->flags |= JOB_IGNERR;
1582         }
1583         if (Targ_Silent(gn)) {
1584                 job->flags |= JOB_SILENT;
1585         }
1586         job->flags |= flags;
1587
1588         /*
1589          * Check the commands now so any attributes from .DEFAULT have a chance
1590          * to migrate to the node.
1591          */
1592         if (!compatMake && (job->flags & JOB_FIRST)) {
1593                 cmdsOK = Job_CheckCommands(gn, Error);
1594         } else {
1595                 cmdsOK = TRUE;
1596         }
1597
1598         /*
1599          * If the -n flag wasn't given, we open up OUR (not the child's)
1600          * temporary file to stuff commands in it. The thing is rd/wr so we
1601          * don't need to reopen it to feed it to the shell. If the -n flag
1602          * *was* given, we just set the file to be stdout. Cute, huh?
1603          */
1604         if ((gn->type & OP_MAKE) || (!noExecute && !touchFlag)) {
1605                 /*
1606                  * We're serious here, but if the commands were bogus, we're
1607                  * also dead...
1608                  */
1609                 if (!cmdsOK) {
1610                         DieHorribly();
1611                 }
1612
1613                 strcpy(tfile, TMPPAT);
1614                 if ((tfd = mkstemp(tfile)) == -1)
1615                         Punt("Cannot create temp file: %s", strerror(errno));
1616                 job->cmdFILE = fdopen(tfd, "w+");
1617                 eunlink(tfile);
1618                 if (job->cmdFILE == NULL) {
1619                         close(tfd);
1620                         Punt("Could not open %s", tfile);
1621                 }
1622                 fcntl(FILENO(job->cmdFILE), F_SETFD, 1);
1623                 /*
1624                  * Send the commands to the command file, flush all its
1625                  * buffers then rewind and remove the thing.
1626                  */
1627                 noExec = FALSE;
1628
1629                 /*
1630                  * Used to be backwards; replace when start doing multiple
1631                  * commands per shell.
1632                  */
1633                 if (compatMake) {
1634                         /*
1635                          * Be compatible: If this is the first time for this
1636                          * node, verify its commands are ok and open the
1637                          * commands list for sequential access by later
1638                          * invocations of JobStart. Once that is done, we take
1639                          * the next command off the list and print it to the
1640                          * command file. If the command was an ellipsis, note
1641                          * that there's nothing more to execute.
1642                          */
1643                         if (job->flags & JOB_FIRST)
1644                                 gn->compat_command = Lst_First(&gn->commands);
1645                         else
1646                                 gn->compat_command =
1647                                     Lst_Succ(gn->compat_command);
1648
1649                         if (gn->compat_command == NULL ||
1650                             JobPrintCommand(Lst_Datum(gn->compat_command), job))
1651                                 noExec = TRUE;
1652
1653                         if (noExec && !(job->flags & JOB_FIRST)) {
1654                                 /*
1655                                  * If we're not going to execute anything, the
1656                                  * job is done and we need to close down the
1657                                  * various file descriptors we've opened for
1658                                  * output, then call JobDoOutput to catch the
1659                                  * final characters or send the file to the
1660                                  * screen... Note that the i/o streams are only
1661                                  * open if this isn't the first job. Note also
1662                                  * that this could not be done in
1663                                  * Job_CatchChildren b/c it wasn't clear if
1664                                  * there were more commands to execute or not...
1665                                  */
1666                                 JobClose(job);
1667                         }
1668                 } else {
1669                         /*
1670                          * We can do all the commands at once. hooray for sanity
1671                          */
1672                         numCommands = 0;
1673                         LST_FOREACH(ln, &gn->commands) {
1674                                 if (JobPrintCommand(Lst_Datum(ln), job))
1675                                         break;
1676                         }
1677
1678                         /*
1679                          * If we didn't print out any commands to the shell
1680                          * script, there's not much point in executing the
1681                          * shell, is there?
1682                          */
1683                         if (numCommands == 0) {
1684                                 noExec = TRUE;
1685                         }
1686                 }
1687
1688         } else if (noExecute) {
1689                 /*
1690                  * Not executing anything -- just print all the commands to
1691                  * stdout in one fell swoop. This will still set up
1692                  * job->tailCmds correctly.
1693                  */
1694                 if (lastNode != gn) {
1695                         MESSAGE(stdout, gn);
1696                         lastNode = gn;
1697                 }
1698                 job->cmdFILE = stdout;
1699
1700                 /*
1701                  * Only print the commands if they're ok, but don't die if
1702                  * they're not -- just let the user know they're bad and keep
1703                  * going. It doesn't do any harm in this case and may do
1704                  * some good.
1705                  */
1706                 if (cmdsOK) {
1707                         LST_FOREACH(ln, &gn->commands) {
1708                                 if (JobPrintCommand(Lst_Datum(ln), job))
1709                                         break;
1710                         }
1711                 }
1712                 /*
1713                 * Don't execute the shell, thank you.
1714                 */
1715                 noExec = TRUE;
1716
1717         } else {
1718                 /*
1719                  * Just touch the target and note that no shell should be
1720                  * executed. Set cmdFILE to stdout to make life easier. Check
1721                  * the commands, too, but don't die if they're no good -- it
1722                  * does no harm to keep working up the graph.
1723                  */
1724                 job->cmdFILE = stdout;
1725                 Job_Touch(gn, job->flags & JOB_SILENT);
1726                 noExec = TRUE;
1727         }
1728
1729         /*
1730          * If we're not supposed to execute a shell, don't.
1731          */
1732         if (noExec) {
1733                 /*
1734                  * Unlink and close the command file if we opened one
1735                  */
1736                 if (job->cmdFILE != stdout) {
1737                         if (job->cmdFILE != NULL)
1738                                 fclose(job->cmdFILE);
1739                 } else {
1740                         fflush(stdout);
1741                 }
1742
1743                 /*
1744                  * We only want to work our way up the graph if we aren't here
1745                  * because the commands for the job were no good.
1746                 */
1747                 if (cmdsOK) {
1748                         if (aborting == 0) {
1749                                 for (ln = job->tailCmds; ln != NULL;
1750                                     ln = LST_NEXT(ln)) {
1751                                         Lst_AtEnd(&postCommands->commands,
1752                                             Buf_Peel(Var_Subst(Lst_Datum(ln),
1753                                             job->node, FALSE)));
1754                                 }
1755                                 job->node->made = MADE;
1756                                 Make_Update(job->node);
1757                         }
1758                         free(job);
1759                         return(JOB_FINISHED);
1760                 } else {
1761                         free(job);
1762                         return(JOB_ERROR);
1763                 }
1764         } else {
1765                 fflush(job->cmdFILE);
1766         }
1767
1768         /*
1769          * Set up the control arguments to the shell. This is based on the flags
1770          * set earlier for this job.
1771          */
1772         JobMakeArgv(job, argv);
1773
1774         /*
1775          * If we're using pipes to catch output, create the pipe by which we'll
1776          * get the shell's output. If we're using files, print out that we're
1777          * starting a job and then set up its temporary-file name.
1778          */
1779         if (!compatMake || (job->flags & JOB_FIRST)) {
1780                 if (usePipes) {
1781                         int fd[2];
1782
1783                         if (pipe(fd) == -1)
1784                                 Punt("Cannot create pipe: %s", strerror(errno));
1785                         job->inPipe = fd[0];
1786                         job->outPipe = fd[1];
1787                         fcntl(job->inPipe, F_SETFD, 1);
1788                         fcntl(job->outPipe, F_SETFD, 1);
1789                 } else {
1790                         fprintf(stdout, "Remaking `%s'\n", gn->name);
1791                         fflush(stdout);
1792                         strcpy(job->outFile, TMPPAT);
1793                         if ((job->outFd = mkstemp(job->outFile)) == -1)
1794                                 Punt("cannot create temp file: %s",
1795                                     strerror(errno));
1796                         fcntl(job->outFd, F_SETFD, 1);
1797                 }
1798         }
1799
1800         if (nJobs >= maxJobs && !(job->flags & JOB_SPECIAL) && maxJobs != 0) {
1801                 /*
1802                  * We've hit the limit of concurrency, so put the job on hold
1803                  * until some other job finishes. Note that the special jobs
1804                  * (.BEGIN, .INTERRUPT and .END) may be run even when the
1805                  * limit has been reached (e.g. when maxJobs == 0).
1806                  */
1807                 jobFull = TRUE;
1808
1809                 DEBUGF(JOB, ("Can only run job locally.\n"));
1810                 job->flags |= JOB_RESTART;
1811                 TAILQ_INSERT_TAIL(&stoppedJobs, job, link);
1812         } else {
1813                 if (nJobs >= maxJobs) {
1814                         /*
1815                          * If we're running this job as a special case
1816                          * (see above), at least say the table is full.
1817                          */
1818                         jobFull = TRUE;
1819                         DEBUGF(JOB, ("Local job queue is full.\n"));
1820                 }
1821                 JobExec(job, argv);
1822         }
1823         return (JOB_RUNNING);
1824 }
1825
1826 static char *
1827 JobOutput(Job *job, char *cp, char *endp, int msg)
1828 {
1829         char *ecp;
1830
1831         if (commandShell->noPrint) {
1832                 ecp = strstr(cp, commandShell->noPrint);
1833                 while (ecp != NULL) {
1834                         if (cp != ecp) {
1835                                 *ecp = '\0';
1836                                 if (msg && job->node != lastNode) {
1837                                         MESSAGE(stdout, job->node);
1838                                         lastNode = job->node;
1839                                 }
1840                                 /*
1841                                  * The only way there wouldn't be a newline
1842                                  * after this line is if it were the last in
1843                                  * the buffer. However, since the non-printable
1844                                  * comes after it, there must be a newline, so
1845                                  * we don't print one.
1846                                  */
1847                                 fprintf(stdout, "%s", cp);
1848                                 fflush(stdout);
1849                         }
1850                         cp = ecp + strlen(commandShell->noPrint);
1851                         if (cp != endp) {
1852                                 /*
1853                                  * Still more to print, look again after
1854                                  * skipping the whitespace following the
1855                                  * non-printable command....
1856                                  */
1857                                 cp++;
1858                                 while (*cp == ' ' || *cp == '\t' ||
1859                                     *cp == '\n') {
1860                                         cp++;
1861                                 }
1862                                 ecp = strstr(cp, commandShell->noPrint);
1863                         } else {
1864                                 return (cp);
1865                         }
1866                 }
1867         }
1868         return (cp);
1869 }
1870
1871 /**
1872  * JobDoOutput
1873  *      This function is called at different times depending on
1874  *      whether the user has specified that output is to be collected
1875  *      via pipes or temporary files. In the former case, we are called
1876  *      whenever there is something to read on the pipe. We collect more
1877  *      output from the given job and store it in the job's outBuf. If
1878  *      this makes up a line, we print it tagged by the job's identifier,
1879  *      as necessary.
1880  *      If output has been collected in a temporary file, we open the
1881  *      file and read it line by line, transfering it to our own
1882  *      output channel until the file is empty. At which point we
1883  *      remove the temporary file.
1884  *      In both cases, however, we keep our figurative eye out for the
1885  *      'noPrint' line for the shell from which the output came. If
1886  *      we recognize a line, we don't print it. If the command is not
1887  *      alone on the line (the character after it is not \0 or \n), we
1888  *      do print whatever follows it.
1889  *
1890  * Side Effects:
1891  *      curPos may be shifted as may the contents of outBuf.
1892  */
1893 static void
1894 JobDoOutput(Job *job, Boolean finish)
1895 {
1896         Boolean gotNL = FALSE;  /* true if got a newline */
1897         Boolean fbuf;           /* true if our buffer filled up */
1898         int     nr;             /* number of bytes read */
1899         int     i;              /* auxiliary index into outBuf */
1900         int     max;            /* limit for i (end of current data) */
1901         int     nRead;          /* (Temporary) number of bytes read */
1902         FILE    *oFILE;         /* Stream pointer to shell's output file */
1903         char    inLine[132];
1904
1905         if (usePipes) {
1906                 /*
1907                  * Read as many bytes as will fit in the buffer.
1908                  */
1909   end_loop:
1910                 gotNL = FALSE;
1911                 fbuf = FALSE;
1912
1913                 nRead = read(job->inPipe, &job->outBuf[job->curPos],
1914                     JOB_BUFSIZE - job->curPos);
1915                 /*
1916                  * Check for interrupt here too, because the above read may
1917                  * block when the child process is stopped. In this case the
1918                  * interrupt will unblock it (we don't use SA_RESTART).
1919                  */
1920                 if (interrupted)
1921                         JobPassSig(interrupted);
1922
1923                 if (nRead < 0) {
1924                         DEBUGF(JOB, ("JobDoOutput(piperead)"));
1925                         nr = 0;
1926                 } else {
1927                         nr = nRead;
1928                 }
1929
1930                 /*
1931                  * If we hit the end-of-file (the job is dead), we must flush
1932                  * its remaining output, so pretend we read a newline if
1933                  * there's any output remaining in the buffer.
1934                  * Also clear the 'finish' flag so we stop looping.
1935                  */
1936                 if (nr == 0 && job->curPos != 0) {
1937                         job->outBuf[job->curPos] = '\n';
1938                         nr = 1;
1939                         finish = FALSE;
1940                 } else if (nr == 0) {
1941                         finish = FALSE;
1942                 }
1943
1944                 /*
1945                  * Look for the last newline in the bytes we just got. If there
1946                  * is one, break out of the loop with 'i' as its index and
1947                  * gotNL set TRUE.
1948                 */
1949                 max = job->curPos + nr;
1950                 for (i = job->curPos + nr - 1; i >= job->curPos; i--) {
1951                         if (job->outBuf[i] == '\n') {
1952                                 gotNL = TRUE;
1953                                 break;
1954                         } else if (job->outBuf[i] == '\0') {
1955                                 /*
1956                                  * Why?
1957                                  */
1958                                 job->outBuf[i] = ' ';
1959                         }
1960                 }
1961
1962                 if (!gotNL) {
1963                         job->curPos += nr;
1964                         if (job->curPos == JOB_BUFSIZE) {
1965                                 /*
1966                                  * If we've run out of buffer space, we have
1967                                  * no choice but to print the stuff. sigh.
1968                                  */
1969                                 fbuf = TRUE;
1970                                 i = job->curPos;
1971                         }
1972                 }
1973                 if (gotNL || fbuf) {
1974                         /*
1975                          * Need to send the output to the screen. Null terminate
1976                          * it first, overwriting the newline character if there
1977                          * was one. So long as the line isn't one we should
1978                          * filter (according to the shell description), we print
1979                          * the line, preceded by a target banner if this target
1980                          * isn't the same as the one for which we last printed
1981                          * something. The rest of the data in the buffer are
1982                          * then shifted down to the start of the buffer and
1983                          * curPos is set accordingly.
1984                          */
1985                         job->outBuf[i] = '\0';
1986                         if (i >= job->curPos) {
1987                                 char *cp;
1988
1989                                 cp = JobOutput(job, job->outBuf,
1990                                     &job->outBuf[i], FALSE);
1991
1992                                 /*
1993                                  * There's still more in that buffer. This time,
1994                                  * though, we know there's no newline at the
1995                                  * end, so we add one of our own free will.
1996                                  */
1997                                 if (*cp != '\0') {
1998                                         if (job->node != lastNode) {
1999                                                 MESSAGE(stdout, job->node);
2000                                                 lastNode = job->node;
2001                                         }
2002                                         fprintf(stdout, "%s%s", cp,
2003                                             gotNL ? "\n" : "");
2004                                         fflush(stdout);
2005                                 }
2006                         }
2007                         if (i < max - 1) {
2008                                 /* shift the remaining characters down */
2009                                 memcpy(job->outBuf, &job->outBuf[i + 1],
2010                                     max - (i + 1));
2011                                 job->curPos = max - (i + 1);
2012
2013                         } else {
2014                                 /*
2015                                  * We have written everything out, so we just
2016                                  * start over from the start of the buffer.
2017                                  * No copying. No nothing.
2018                                  */
2019                                 job->curPos = 0;
2020                         }
2021                 }
2022                 if (finish) {
2023                         /*
2024                          * If the finish flag is true, we must loop until we hit
2025                          * end-of-file on the pipe. This is guaranteed to happen
2026                          * eventually since the other end of the pipe is now
2027                          * closed (we closed it explicitly and the child has
2028                          * exited). When we do get an EOF, finish will be set
2029                          * FALSE and we'll fall through and out.
2030                          */
2031                         goto end_loop;
2032                 }
2033
2034         } else {
2035                 /*
2036                  * We've been called to retrieve the output of the job from the
2037                  * temporary file where it's been squirreled away. This consists
2038                  * of opening the file, reading the output line by line, being
2039                  * sure not to print the noPrint line for the shell we used,
2040                  * then close and remove the temporary file. Very simple.
2041                  *
2042                  * Change to read in blocks and do FindSubString type things
2043                  * as for pipes? That would allow for "@echo -n..."
2044                  */
2045                 oFILE = fopen(job->outFile, "r");
2046                 if (oFILE != NULL) {
2047                         fprintf(stdout, "Results of making %s:\n",
2048                             job->node->name);
2049                         fflush(stdout);
2050
2051                         while (fgets(inLine, sizeof(inLine), oFILE) != NULL) {
2052                                 char    *cp, *endp, *oendp;
2053
2054                                 cp = inLine;
2055                                 oendp = endp = inLine + strlen(inLine);
2056                                 if (endp[-1] == '\n') {
2057                                         *--endp = '\0';
2058                                 }
2059                                 cp = JobOutput(job, inLine, endp, FALSE);
2060
2061                                 /*
2062                                  * There's still more in that buffer. This time,
2063                                  * though, we know there's no newline at the
2064                                  * end, so we add one of our own free will.
2065                                  */
2066                                 fprintf(stdout, "%s", cp);
2067                                 fflush(stdout);
2068                                 if (endp != oendp) {
2069                                         fprintf(stdout, "\n");
2070                                         fflush(stdout);
2071                                 }
2072                         }
2073                         fclose(oFILE);
2074                         eunlink(job->outFile);
2075                 }
2076         }
2077 }
2078
2079 /**
2080  * Job_CatchChildren
2081  *      Handle the exit of a child. Called from Make_Make.
2082  *
2083  * Side Effects:
2084  *      The job descriptor is removed from the list of children.
2085  *
2086  * Notes:
2087  *      We do waits, blocking or not, according to the wisdom of our
2088  *      caller, until there are no more children to report. For each
2089  *      job, call JobFinish to finish things off. This will take care of
2090  *      putting jobs on the stoppedJobs queue.
2091  */
2092 void
2093 Job_CatchChildren(Boolean block)
2094 {
2095         pid_t   pid;    /* pid of dead child */
2096         Job     *job;   /* job descriptor for dead child */
2097         int     status; /* Exit/termination status */
2098
2099         /*
2100          * Don't even bother if we know there's no one around.
2101          */
2102         if (nJobs == 0) {
2103                 return;
2104         }
2105
2106         for (;;) {
2107                 pid = waitpid((pid_t)-1, &status,
2108                     (block ? 0 : WNOHANG) | WUNTRACED);
2109                 if (pid <= 0)
2110                         break;
2111
2112                 DEBUGF(JOB, ("Process %jd exited or stopped.\n",
2113                     (intmax_t)pid));
2114
2115                 TAILQ_FOREACH(job, &jobs, link) {
2116                         if (job->pid == pid)
2117                                 break;
2118                 }
2119
2120                 if (job == NULL) {
2121                         if (WIFSIGNALED(status) &&
2122                             (WTERMSIG(status) == SIGCONT)) {
2123                                 TAILQ_FOREACH(job, &jobs, link) {
2124                                         if (job->pid == pid)
2125                                                 break;
2126                                 }
2127                                 if (job == NULL) {
2128                                         Error("Resumed child (%jd) "
2129                                             "not in table", (intmax_t)pid);
2130                                         continue;
2131                                 }
2132                                 TAILQ_REMOVE(&stoppedJobs, job, link);
2133                         } else {
2134                                 Error("Child (%jd) not in table?",
2135                                     (intmax_t)pid);
2136                                 continue;
2137                         }
2138                 } else {
2139                         TAILQ_REMOVE(&jobs, job, link);
2140                         nJobs -= 1;
2141                         if (fifoFd >= 0 && maxJobs > 1) {
2142                                 write(fifoFd, "+", 1);
2143                                 maxJobs--;
2144                                 if (nJobs >= maxJobs)
2145                                         jobFull = TRUE;
2146                                 else
2147                                         jobFull = FALSE;
2148                         } else {
2149                                 DEBUGF(JOB, ("Job queue is no longer full.\n"));
2150                                 jobFull = FALSE;
2151                         }
2152                 }
2153
2154                 JobFinish(job, &status);
2155         }
2156         if (interrupted)
2157                 JobPassSig(interrupted);
2158 }
2159
2160 /**
2161  * Job_CatchOutput
2162  *      Catch the output from our children, if we're using
2163  *      pipes do so. Otherwise just block time until we get a
2164  *      signal(most likely a SIGCHLD) since there's no point in
2165  *      just spinning when there's nothing to do and the reaping
2166  *      of a child can wait for a while.
2167  *
2168  * Side Effects:
2169  *      Output is read from pipes if we're piping.
2170  * -----------------------------------------------------------------------
2171  */
2172 void
2173 #ifdef USE_KQUEUE
2174 Job_CatchOutput(int flag __unused)
2175 #else
2176 Job_CatchOutput(int flag)
2177 #endif
2178 {
2179         int             nfds;
2180 #ifdef USE_KQUEUE
2181 #define KEV_SIZE        4
2182         struct kevent   kev[KEV_SIZE];
2183         int             i;
2184 #else
2185         struct timeval  timeout;
2186         fd_set          readfds;
2187         Job             *job;
2188 #endif
2189
2190         fflush(stdout);
2191
2192         if (usePipes) {
2193 #ifdef USE_KQUEUE
2194                 if ((nfds = kevent(kqfd, NULL, 0, kev, KEV_SIZE, NULL)) == -1) {
2195                         if (errno != EINTR)
2196                                 Punt("kevent: %s", strerror(errno));
2197                         if (interrupted)
2198                                 JobPassSig(interrupted);
2199                 } else {
2200                         for (i = 0; i < nfds; i++) {
2201                                 if (kev[i].flags & EV_ERROR) {
2202                                         warnc(kev[i].data, "kevent");
2203                                         continue;
2204                                 }
2205                                 switch (kev[i].filter) {
2206                                   case EVFILT_READ:
2207                                         JobDoOutput(kev[i].udata, FALSE);
2208                                         break;
2209                                   case EVFILT_PROC:
2210                                         /*
2211                                          * Just wake up and let
2212                                          * Job_CatchChildren() collect the
2213                                          * terminated job.
2214                                          */
2215                                         break;
2216                                 }
2217                         }
2218                 }
2219 #else
2220                 readfds = outputs;
2221                 timeout.tv_sec = SEL_SEC;
2222                 timeout.tv_usec = SEL_USEC;
2223                 if (flag && jobFull && fifoFd >= 0)
2224                         FD_SET(fifoFd, &readfds);
2225
2226                 nfds = select(FD_SETSIZE, &readfds, (fd_set *)NULL,
2227                     (fd_set *)NULL, &timeout);
2228                 if (nfds <= 0) {
2229                         if (interrupted)
2230                                 JobPassSig(interrupted);
2231                         return;
2232                 }
2233                 if (fifoFd >= 0 && FD_ISSET(fifoFd, &readfds)) {
2234                         if (--nfds <= 0)
2235                                 return;
2236                 }
2237                 job = TAILQ_FIRST(&jobs);
2238                 while (nfds != 0 && job != NULL) {
2239                         if (FD_ISSET(job->inPipe, &readfds)) {
2240                                 JobDoOutput(job, FALSE);
2241                                 nfds--;
2242                         }
2243                         job = TAILQ_NEXT(job, link);
2244                 }
2245 #endif /* !USE_KQUEUE */
2246         }
2247 }
2248
2249 /**
2250  * Job_Make
2251  *      Start the creation of a target. Basically a front-end for
2252  *      JobStart used by the Make module.
2253  *
2254  * Side Effects:
2255  *      Another job is started.
2256  */
2257 void
2258 Job_Make(GNode *gn)
2259 {
2260
2261         JobStart(gn, 0, NULL);
2262 }
2263
2264 /**
2265  * JobCopyShell
2266  *      Make a new copy of the shell structure including a copy of the strings
2267  *      in it. This also defaults some fields in case they are NULL.
2268  *
2269  * Returns:
2270  *      The function returns a pointer to the new shell structure.
2271  */
2272 static struct Shell *
2273 JobCopyShell(const struct Shell *osh)
2274 {
2275         struct Shell *nsh;
2276
2277         nsh = emalloc(sizeof(*nsh));
2278         nsh->name = estrdup(osh->name);
2279
2280         if (osh->echoOff != NULL)
2281                 nsh->echoOff = estrdup(osh->echoOff);
2282         else
2283                 nsh->echoOff = NULL;
2284         if (osh->echoOn != NULL)
2285                 nsh->echoOn = estrdup(osh->echoOn);
2286         else
2287                 nsh->echoOn = NULL;
2288         nsh->hasEchoCtl = osh->hasEchoCtl;
2289
2290         if (osh->noPrint != NULL)
2291                 nsh->noPrint = estrdup(osh->noPrint);
2292         else
2293                 nsh->noPrint = NULL;
2294
2295         nsh->hasErrCtl = osh->hasErrCtl;
2296         if (osh->errCheck == NULL)
2297                 nsh->errCheck = estrdup("");
2298         else
2299                 nsh->errCheck = estrdup(osh->errCheck);
2300         if (osh->ignErr == NULL)
2301                 nsh->ignErr = estrdup("%s");
2302         else
2303                 nsh->ignErr = estrdup(osh->ignErr);
2304
2305         if (osh->echo == NULL)
2306                 nsh->echo = estrdup("");
2307         else
2308                 nsh->echo = estrdup(osh->echo);
2309
2310         if (osh->exit == NULL)
2311                 nsh->exit = estrdup("");
2312         else
2313                 nsh->exit = estrdup(osh->exit);
2314
2315         return (nsh);
2316 }
2317
2318 /**
2319  * JobFreeShell
2320  *      Free a shell structure and all associated strings.
2321  */
2322 static void
2323 JobFreeShell(struct Shell *sh)
2324 {
2325
2326         if (sh != NULL) {
2327                 free(sh->name);
2328                 free(sh->echoOff);
2329                 free(sh->echoOn);
2330                 free(sh->noPrint);
2331                 free(sh->errCheck);
2332                 free(sh->ignErr);
2333                 free(sh->echo);
2334                 free(sh->exit);
2335                 free(sh);
2336         }
2337 }
2338
2339 void
2340 Shell_Init(void)
2341 {
2342
2343         if (commandShell == NULL)
2344                 commandShell = JobMatchShell(shells[DEFSHELL].name);
2345
2346         if (shellPath == NULL) {
2347                 /*
2348                  * The user didn't specify a shell to use, so we are using the
2349                  * default one... Both the absolute path and the last component
2350                  * must be set. The last component is taken from the 'name'
2351                  * field of the default shell description pointed-to by
2352                  * commandShell. All default shells are located in
2353                  * PATH_DEFSHELLDIR.
2354                  */
2355                 shellName = commandShell->name;
2356                 shellPath = str_concat(PATH_DEFSHELLDIR, shellName,
2357                     STR_ADDSLASH);
2358         }
2359 }
2360
2361 /**
2362  * Job_Init
2363  *      Initialize the process module, given a maximum number of jobs.
2364  *
2365  * Side Effects:
2366  *      lists and counters are initialized
2367  */
2368 void
2369 Job_Init(int maxproc)
2370 {
2371         GNode           *begin; /* node for commands to do at the very start */
2372         const char      *env;
2373         struct sigaction sa;
2374
2375         fifoFd = -1;
2376         env = getenv("MAKE_JOBS_FIFO");
2377
2378         if (env == NULL && maxproc > 1) {
2379                 /*
2380                  * We did not find the environment variable so we are the
2381                  * leader. Create the fifo, open it, write one char per
2382                  * allowed job into the pipe.
2383                  */
2384                 mktemp(fifoName);
2385                 if (!mkfifo(fifoName, 0600)) {
2386                         fifoFd = open(fifoName, O_RDWR | O_NONBLOCK, 0);
2387                         if (fifoFd >= 0) {
2388                                 fifoMaster = 1;
2389                                 fcntl(fifoFd, F_SETFL, O_NONBLOCK);
2390                                 env = fifoName;
2391                                 setenv("MAKE_JOBS_FIFO", env, 1);
2392                                 while (maxproc-- > 0) {
2393                                         write(fifoFd, "+", 1);
2394                                 }
2395                                 /* The master make does not get a magic token */
2396                                 jobFull = TRUE;
2397                                 maxJobs = 0;
2398                         } else {
2399                                 unlink(fifoName);
2400                                 env = NULL;
2401                         }
2402                 }
2403
2404         } else if (env != NULL) {
2405                 /*
2406                  * We had the environment variable so we are a slave.
2407                  * Open fifo and give ourselves a magic token which represents
2408                  * the token our parent make has grabbed to start his make
2409                  * process. Otherwise the sub-makes would gobble up tokens and
2410                  * the proper number of tokens to specify to -j would depend
2411                  * on the depth of the tree and the order of execution.
2412                  */
2413                 fifoFd = open(env, O_RDWR, 0);
2414                 if (fifoFd >= 0) {
2415                         fcntl(fifoFd, F_SETFL, O_NONBLOCK);
2416                         maxJobs = 1;
2417                         jobFull = FALSE;
2418                 }
2419         }
2420         if (fifoFd <= 0) {
2421                 maxJobs = maxproc;
2422                 jobFull = FALSE;
2423         } else {
2424         }
2425         nJobs = 0;
2426
2427         aborting = 0;
2428         errors = 0;
2429
2430         lastNode = NULL;
2431
2432         if ((maxJobs == 1 && fifoFd < 0) || beVerbose == 0) {
2433                 /*
2434                  * If only one job can run at a time, there's no need for a
2435                  * banner, no is there?
2436                  */
2437                 targFmt = "";
2438         } else {
2439                 targFmt = TARG_FMT;
2440         }
2441
2442         Shell_Init();
2443
2444         /*
2445          * Catch the four signals that POSIX specifies if they aren't ignored.
2446          * JobCatchSignal will just set global variables and hope someone
2447          * else is going to handle the interrupt.
2448          */
2449         sa.sa_handler = JobCatchSig;
2450         sigemptyset(&sa.sa_mask);
2451         sa.sa_flags = 0;
2452
2453         if (signal(SIGINT, SIG_IGN) != SIG_IGN) {
2454                 sigaction(SIGINT, &sa, NULL);
2455         }
2456         if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {
2457                 sigaction(SIGHUP, &sa, NULL);
2458         }
2459         if (signal(SIGQUIT, SIG_IGN) != SIG_IGN) {
2460                 sigaction(SIGQUIT, &sa, NULL);
2461         }
2462         if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
2463                 sigaction(SIGTERM, &sa, NULL);
2464         }
2465         /*
2466          * There are additional signals that need to be caught and passed if
2467          * either the export system wants to be told directly of signals or if
2468          * we're giving each job its own process group (since then it won't get
2469          * signals from the terminal driver as we own the terminal)
2470          */
2471 #if defined(USE_PGRP)
2472         if (signal(SIGTSTP, SIG_IGN) != SIG_IGN) {
2473                 sigaction(SIGTSTP, &sa, NULL);
2474         }
2475         if (signal(SIGTTOU, SIG_IGN) != SIG_IGN) {
2476                 sigaction(SIGTTOU, &sa, NULL);
2477         }
2478         if (signal(SIGTTIN, SIG_IGN) != SIG_IGN) {
2479                 sigaction(SIGTTIN, &sa, NULL);
2480         }
2481         if (signal(SIGWINCH, SIG_IGN) != SIG_IGN) {
2482                 sigaction(SIGWINCH, &sa, NULL);
2483         }
2484 #endif
2485
2486 #ifdef USE_KQUEUE
2487         if ((kqfd = kqueue()) == -1) {
2488                 Punt("kqueue: %s", strerror(errno));
2489         }
2490 #endif
2491
2492         begin = Targ_FindNode(".BEGIN", TARG_NOCREATE);
2493
2494         if (begin != NULL) {
2495                 JobStart(begin, JOB_SPECIAL, (Job *)NULL);
2496                 while (nJobs) {
2497                         Job_CatchOutput(0);
2498                         Job_CatchChildren(!usePipes);
2499                 }
2500         }
2501         postCommands = Targ_FindNode(".END", TARG_CREATE);
2502 }
2503
2504 /**
2505  * Job_Full
2506  *      See if the job table is full. It is considered full if it is OR
2507  *      if we are in the process of aborting OR if we have
2508  *      reached/exceeded our local quota. This prevents any more jobs
2509  *      from starting up.
2510  *
2511  * Results:
2512  *      TRUE if the job table is full, FALSE otherwise
2513  */
2514 Boolean
2515 Job_Full(void)
2516 {
2517         char c;
2518         int i;
2519
2520         if (aborting)
2521                 return (aborting);
2522         if (fifoFd >= 0 && jobFull) {
2523                 i = read(fifoFd, &c, 1);
2524                 if (i > 0) {
2525                         maxJobs++;
2526                         jobFull = FALSE;
2527                 }
2528         }
2529         return (jobFull);
2530 }
2531
2532 /**
2533  * Job_Empty
2534  *      See if the job table is empty.  Because the local concurrency may
2535  *      be set to 0, it is possible for the job table to become empty,
2536  *      while the list of stoppedJobs remains non-empty. In such a case,
2537  *      we want to restart as many jobs as we can.
2538  *
2539  * Results:
2540  *      TRUE if it is. FALSE if it ain't.
2541  */
2542 Boolean
2543 Job_Empty(void)
2544 {
2545         if (nJobs == 0) {
2546                 if (!TAILQ_EMPTY(&stoppedJobs) && !aborting) {
2547                         /*
2548                          * The job table is obviously not full if it has no
2549                          * jobs in it...Try and restart the stopped jobs.
2550                          */
2551                         jobFull = FALSE;
2552                         JobRestartJobs();
2553                         return (FALSE);
2554                 } else {
2555                         return (TRUE);
2556                 }
2557         } else {
2558                 return (FALSE);
2559         }
2560 }
2561
2562 /**
2563  * JobMatchShell
2564  *      Find a matching shell in 'shells' given its final component.
2565  *
2566  * Results:
2567  *      A pointer to a freshly allocated Shell structure with a copy
2568  *      of the static structure or NULL if no shell with the given name
2569  *      is found.
2570  */
2571 static struct Shell *
2572 JobMatchShell(const char *name)
2573 {
2574         const struct CShell     *sh;          /* Pointer into shells table */
2575         struct Shell            *nsh;
2576
2577         for (sh = shells; sh < shells + __arysize(shells); sh++)
2578                 if (strcmp(sh->name, name) == 0)
2579                         break;
2580
2581         if (sh == shells + __arysize(shells))
2582                 return (NULL);
2583
2584         /* make a copy */
2585         nsh = emalloc(sizeof(*nsh));
2586
2587         nsh->name = estrdup(sh->name);
2588         nsh->echoOff = estrdup(sh->echoOff);
2589         nsh->echoOn = estrdup(sh->echoOn);
2590         nsh->hasEchoCtl = sh->hasEchoCtl;
2591         nsh->noPrint = estrdup(sh->noPrint);
2592         nsh->hasErrCtl = sh->hasErrCtl;
2593         nsh->errCheck = estrdup(sh->errCheck);
2594         nsh->ignErr = estrdup(sh->ignErr);
2595         nsh->echo = estrdup(sh->echo);
2596         nsh->exit = estrdup(sh->exit);
2597
2598         return (nsh);
2599 }
2600
2601 /**
2602  * Job_ParseShell
2603  *      Parse a shell specification and set up commandShell, shellPath
2604  *      and shellName appropriately.
2605  *
2606  * Results:
2607  *      FAILURE if the specification was incorrect.
2608  *
2609  * Side Effects:
2610  *      commandShell points to a Shell structure (either predefined or
2611  *      created from the shell spec), shellPath is the full path of the
2612  *      shell described by commandShell, while shellName is just the
2613  *      final component of shellPath.
2614  *
2615  * Notes:
2616  *      A shell specification consists of a .SHELL target, with dependency
2617  *      operator, followed by a series of blank-separated words. Double
2618  *      quotes can be used to use blanks in words. A backslash escapes
2619  *      anything (most notably a double-quote and a space) and
2620  *      provides the functionality it does in C. Each word consists of
2621  *      keyword and value separated by an equal sign. There should be no
2622  *      unnecessary spaces in the word. The keywords are as follows:
2623  *          name            Name of shell.
2624  *          path            Location of shell. Overrides "name" if given
2625  *          quiet           Command to turn off echoing.
2626  *          echo            Command to turn echoing on
2627  *          filter          Result of turning off echoing that shouldn't be
2628  *                          printed.
2629  *          echoFlag        Flag to turn echoing on at the start
2630  *          errFlag         Flag to turn error checking on at the start
2631  *          hasErrCtl       True if shell has error checking control
2632  *          check           Command to turn on error checking if hasErrCtl
2633  *                          is TRUE or template of command to echo a command
2634  *                          for which error checking is off if hasErrCtl is
2635  *                          FALSE.
2636  *          ignore          Command to turn off error checking if hasErrCtl
2637  *                          is TRUE or template of command to execute a
2638  *                          command so as to ignore any errors it returns if
2639  *                          hasErrCtl is FALSE.
2640  */
2641 ReturnStatus
2642 Job_ParseShell(char *line)
2643 {
2644         char    **words;
2645         int     wordCount;
2646         char    **argv;
2647         int     argc;
2648         char    *path;
2649         char    *eq;
2650         Boolean fullSpec = FALSE;
2651         struct Shell    newShell;
2652         struct Shell    *sh;
2653
2654         while (isspace((unsigned char)*line)) {
2655                 line++;
2656         }
2657         words = brk_string(line, &wordCount, TRUE);
2658
2659         memset(&newShell, 0, sizeof(newShell));
2660         path = NULL;
2661
2662         /*
2663          * Parse the specification by keyword but skip the first word - it
2664          * is not set by brk_string.
2665          */
2666         wordCount--;
2667         words++;
2668
2669         for (argc = wordCount, argv = words; argc != 0; argc--, argv++) {
2670                 /*
2671                  * Split keyword and value
2672                  */
2673                 if ((eq = strchr(*argv, '=')) == NULL) {
2674                         Parse_Error(PARSE_FATAL, "missing '=' in shell "
2675                             "specification keyword '%s'", *argv);
2676                         return (FAILURE);
2677                 }
2678                 *eq++ = '\0';
2679
2680                 if (strcmp(*argv, "path") == 0) {
2681                         path = eq;
2682                 } else if (strcmp(*argv, "name") == 0) {
2683                         newShell.name = eq;
2684                 } else if (strcmp(*argv, "quiet") == 0) {
2685                         newShell.echoOff = eq;
2686                         fullSpec = TRUE;
2687                 } else if (strcmp(*argv, "echo") == 0) {
2688                         newShell.echoOn = eq;
2689                         fullSpec = TRUE;
2690                 } else if (strcmp(*argv, "filter") == 0) {
2691                         newShell.noPrint = eq;
2692                         fullSpec = TRUE;
2693                 } else if (strcmp(*argv, "echoFlag") == 0) {
2694                         newShell.echo = eq;
2695                         fullSpec = TRUE;
2696                 } else if (strcmp(*argv, "errFlag") == 0) {
2697                         newShell.exit = eq;
2698                         fullSpec = TRUE;
2699                 } else if (strcmp(*argv, "hasErrCtl") == 0) {
2700                         newShell.hasErrCtl = (*eq == 'Y' || *eq == 'y' ||
2701                             *eq == 'T' || *eq == 't');
2702                         fullSpec = TRUE;
2703                 } else if (strcmp(*argv, "check") == 0) {
2704                         newShell.errCheck = eq;
2705                         fullSpec = TRUE;
2706                 } else if (strcmp(*argv, "ignore") == 0) {
2707                         newShell.ignErr = eq;
2708                         fullSpec = TRUE;
2709                 } else {
2710                         Parse_Error(PARSE_FATAL, "unknown keyword in shell "
2711                             "specification '%s'", *argv);
2712                         return (FAILURE);
2713                 }
2714         }
2715
2716         /*
2717          * Some checks (could be more)
2718          */
2719         if (fullSpec) {
2720                 if ((newShell.echoOn != NULL) ^ (newShell.echoOff != NULL))
2721                         Parse_Error(PARSE_FATAL, "Shell must have either both "
2722                             "echoOff and echoOn or none of them");
2723
2724                 if (newShell.echoOn != NULL && newShell.echoOff)
2725                         newShell.hasEchoCtl = TRUE;
2726         }
2727
2728         if (path == NULL) {
2729                 /*
2730                  * If no path was given, the user wants one of the pre-defined
2731                  * shells, yes? So we find the one s/he wants with the help of
2732                  * JobMatchShell and set things up the right way. shellPath
2733                  * will be set up by Job_Init.
2734                  */
2735                 if (newShell.name == NULL) {
2736                         Parse_Error(PARSE_FATAL,
2737                             "Neither path nor name specified");
2738                         return (FAILURE);
2739                 }
2740                 if ((sh = JobMatchShell(newShell.name)) == NULL) {
2741                         Parse_Error(PARSE_FATAL, "%s: no matching shell",
2742                             newShell.name);
2743                         return (FAILURE);
2744                 }
2745
2746         } else {
2747                 /*
2748                  * The user provided a path. If s/he gave nothing else
2749                  * (fullSpec is FALSE), try and find a matching shell in the
2750                  * ones we know of. Else we just take the specification at its
2751                  * word and copy it to a new location. In either case, we need
2752                  * to record the path the user gave for the shell.
2753                  */
2754                 free(shellPath);
2755                 shellPath = estrdup(path);
2756                 if (newShell.name == NULL) {
2757                         /* get the base name as the name */
2758                         path = strrchr(path, '/');
2759                         if (path == NULL) {
2760                                 path = shellPath;
2761                         } else {
2762                                 path += 1;
2763                         }
2764                         newShell.name = path;
2765                 }
2766
2767                 if (!fullSpec) {
2768                         if ((sh = JobMatchShell(newShell.name)) == NULL) {
2769                                 Parse_Error(PARSE_FATAL,
2770                                     "%s: no matching shell", newShell.name);
2771                                 return (FAILURE);
2772                         }
2773                 } else {
2774                         sh = JobCopyShell(&newShell);
2775                 }
2776         }
2777
2778         /* set the new shell */
2779         JobFreeShell(commandShell);
2780         commandShell = sh;
2781
2782         shellName = commandShell->name;
2783
2784         return (SUCCESS);
2785 }
2786
2787 /**
2788  * JobInterrupt
2789  *      Handle the receipt of an interrupt.
2790  *
2791  * Side Effects:
2792  *      All children are killed. Another job will be started if the
2793  *      .INTERRUPT target was given.
2794  */
2795 static void
2796 JobInterrupt(int runINTERRUPT, int signo)
2797 {
2798         Job     *job;           /* job descriptor in that element */
2799         GNode   *interrupt;     /* the node describing the .INTERRUPT target */
2800
2801         aborting = ABORT_INTERRUPT;
2802
2803         TAILQ_FOREACH(job, &jobs, link) {
2804                 if (!Targ_Precious(job->node)) {
2805                         char *file = (job->node->path == NULL ?
2806                             job->node->name : job->node->path);
2807
2808                         if (!noExecute && eunlink(file) != -1) {
2809                                 Error("*** %s removed", file);
2810                         }
2811                 }
2812                 if (job->pid) {
2813                         DEBUGF(JOB, ("JobInterrupt passing signal to child "
2814                             "%jd.\n", (intmax_t)job->pid));
2815                         KILL(job->pid, signo);
2816                 }
2817         }
2818
2819         if (runINTERRUPT && !touchFlag) {
2820                 /*
2821                  * clear the interrupted flag because we would get an
2822                  * infinite loop otherwise.
2823                  */
2824                 interrupted = 0;
2825
2826                 interrupt = Targ_FindNode(".INTERRUPT", TARG_NOCREATE);
2827                 if (interrupt != NULL) {
2828                         ignoreErrors = FALSE;
2829
2830                         JobStart(interrupt, JOB_IGNDOTS, (Job *)NULL);
2831                         while (nJobs) {
2832                                 Job_CatchOutput(0);
2833                                 Job_CatchChildren(!usePipes);
2834                         }
2835                 }
2836         }
2837 }
2838
2839 /**
2840  * Job_Finish
2841  *      Do final processing such as the running of the commands
2842  *      attached to the .END target.
2843  *
2844  * Results:
2845  *      Number of errors reported.
2846  */
2847 int
2848 Job_Finish(void)
2849 {
2850
2851         if (postCommands != NULL && !Lst_IsEmpty(&postCommands->commands)) {
2852                 if (errors) {
2853                         Error("Errors reported so .END ignored");
2854                 } else {
2855                         JobStart(postCommands, JOB_SPECIAL | JOB_IGNDOTS, NULL);
2856
2857                         while (nJobs) {
2858                                 Job_CatchOutput(0);
2859                                 Job_CatchChildren(!usePipes);
2860                         }
2861                 }
2862         }
2863         if (fifoFd >= 0) {
2864                 close(fifoFd);
2865                 fifoFd = -1;
2866                 if (fifoMaster)
2867                         unlink(fifoName);
2868         }
2869         return (errors);
2870 }
2871
2872 /**
2873  * Job_Wait
2874  *      Waits for all running jobs to finish and returns. Sets 'aborting'
2875  *      to ABORT_WAIT to prevent other jobs from starting.
2876  *
2877  * Side Effects:
2878  *      Currently running jobs finish.
2879  */
2880 void
2881 Job_Wait(void)
2882 {
2883
2884         aborting = ABORT_WAIT;
2885         while (nJobs != 0) {
2886                 Job_CatchOutput(0);
2887                 Job_CatchChildren(!usePipes);
2888         }
2889         aborting = 0;
2890 }
2891
2892 /**
2893  * Job_AbortAll
2894  *      Abort all currently running jobs without handling output or anything.
2895  *      This function is to be called only in the event of a major
2896  *      error. Most definitely NOT to be called from JobInterrupt.
2897  *
2898  * Side Effects:
2899  *      All children are killed, not just the firstborn
2900  */
2901 void
2902 Job_AbortAll(void)
2903 {
2904         Job     *job;   /* the job descriptor in that element */
2905         int     foo;
2906
2907         aborting = ABORT_ERROR;
2908
2909         if (nJobs) {
2910                 TAILQ_FOREACH(job, &jobs, link) {
2911                         /*
2912                          * kill the child process with increasingly drastic
2913                          * signals to make darn sure it's dead.
2914                          */
2915                         KILL(job->pid, SIGINT);
2916                         KILL(job->pid, SIGKILL);
2917                 }
2918         }
2919
2920         /*
2921          * Catch as many children as want to report in at first, then give up
2922          */
2923         while (waitpid((pid_t)-1, &foo, WNOHANG) > 0)
2924                 ;
2925 }
2926
2927 /**
2928  * JobRestartJobs
2929  *      Tries to restart stopped jobs if there are slots available.
2930  *      Note that this tries to restart them regardless of pending errors.
2931  *      It's not good to leave stopped jobs lying around!
2932  *
2933  * Side Effects:
2934  *      Resumes(and possibly migrates) jobs.
2935  */
2936 static void
2937 JobRestartJobs(void)
2938 {
2939         Job *job;
2940
2941         while (!jobFull && (job = TAILQ_FIRST(&stoppedJobs)) != NULL) {
2942                 DEBUGF(JOB, ("Job queue is not full. "
2943                     "Restarting a stopped job.\n"));
2944                 TAILQ_REMOVE(&stoppedJobs, job, link);
2945                 JobRestart(job);
2946         }
2947 }
2948
2949 /**
2950  * Cmd_Exec
2951  *      Execute the command in cmd, and return the output of that command
2952  *      in a string.
2953  *
2954  * Results:
2955  *      A string containing the output of the command, or the empty string
2956  *      If error is not NULL, it contains the reason for the command failure
2957  *      Any output sent to stderr in the child process is passed to stderr,
2958  *      and not captured in the string.
2959  *
2960  * Side Effects:
2961  *      The string must be freed by the caller.
2962  */
2963 Buffer *
2964 Cmd_Exec(const char *cmd, const char **error)
2965 {
2966         int     fds[2]; /* Pipe streams */
2967         int     cpid;   /* Child PID */
2968         int     pid;    /* PID from wait() */
2969         int     status; /* command exit status */
2970         Buffer  *buf;   /* buffer to store the result */
2971         ssize_t rcnt;
2972         ProcStuff       ps;
2973
2974         *error = NULL;
2975         buf = Buf_Init(0);
2976
2977         if (shellPath == NULL)
2978                 Shell_Init();
2979         /*
2980          * Open a pipe for fetching its output
2981          */
2982         if (pipe(fds) == -1) {
2983                 *error = "Couldn't create pipe for \"%s\"";
2984                 return (buf);
2985         }
2986
2987         ps.in = STDIN_FILENO;
2988         ps.out = fds[1];
2989         ps.err = STDERR_FILENO;
2990
2991         ps.merge_errors = 0;
2992         ps.pgroup = 0;
2993         ps.searchpath = 0;
2994
2995         /* Set up arguments for shell */
2996         ps.argv = emalloc(4 * sizeof(char *));
2997         ps.argv[0] = strdup(shellName);
2998         ps.argv[1] = strdup("-c");
2999         ps.argv[2] = strdup(cmd);
3000         ps.argv[3] = NULL;
3001
3002         /*
3003          * Fork.  Warning since we are doing vfork() instead of fork(),
3004          * do not allocate memory in the child process!
3005          */
3006         if ((cpid = vfork()) == -1) {
3007                 *error = "Couldn't exec \"%s\"";
3008
3009         } else if (cpid == 0) {
3010                 /*
3011                  * Child
3012                  */
3013                 close(fds[0]); /* Close input side of pipe */
3014
3015                 ProcExec(&ps);
3016                 /* NOTREACHED */
3017
3018         } else {
3019                 free(ps.argv[2]);
3020                 free(ps.argv[1]);
3021                 free(ps.argv[0]);
3022                 free(ps.argv);
3023
3024                 /*
3025                  * No need for the writing half
3026                  */
3027                 close(fds[1]);
3028
3029                 do {
3030                         char    result[BUFSIZ];
3031
3032                         rcnt = read(fds[0], result, sizeof(result));
3033                         if (rcnt != -1)
3034                                 Buf_AddBytes(buf, (size_t)rcnt, (Byte *)result);
3035                 } while (rcnt > 0 || (rcnt == -1 && errno == EINTR));
3036
3037                 if (rcnt == -1)
3038                         *error = "Error reading shell's output for \"%s\"";
3039
3040                 /*
3041                  * Close the input side of the pipe.
3042                  */
3043                 close(fds[0]);
3044
3045                 /*
3046                  * Wait for the process to exit.
3047                  */
3048                 while (((pid = wait(&status)) != cpid) && (pid >= 0))
3049                         continue;
3050
3051                 if (status)
3052                         *error = "\"%s\" returned non-zero status";
3053
3054                 Buf_StripNewlines(buf);
3055
3056         }
3057         return (buf);
3058 }
3059
3060
3061 /*-
3062  * compat.c --
3063  *      The routines in this file implement the full-compatibility
3064  *      mode of PMake. Most of the special functionality of PMake
3065  *      is available in this mode. Things not supported:
3066  *          - different shells.
3067  *          - friendly variable substitution.
3068  *
3069  * Interface:
3070  *      Compat_Run          Initialize things for this module and recreate
3071  *                          thems as need creatin'
3072  */
3073
3074 /*
3075  * The following array is used to make a fast determination of which
3076  * characters are interpreted specially by the shell.  If a command
3077  * contains any of these characters, it is executed by the shell, not
3078  * directly by us.
3079  */
3080 static char         meta[256];
3081
3082 static GNode        *curTarg = NULL;
3083 static GNode        *ENDNode;
3084
3085 static void
3086 CompatInit(void)
3087 {
3088         const char      *cp;    /* Pointer to string of shell meta-characters */
3089
3090         for (cp = "#=|^(){};&<>*?[]:$`\\\n"; *cp != '\0'; cp++) {
3091                 meta[(unsigned char)*cp] = 1;
3092         }
3093         /*
3094          * The null character serves as a sentinel in the string.
3095          */
3096         meta[0] = 1;
3097 }
3098
3099 /*
3100  * Interrupt handler - set flag and defer handling to the main code
3101  */
3102 static void
3103 CompatCatchSig(int signo)
3104 {
3105
3106         interrupted = signo;
3107 }
3108
3109 /*-
3110  *-----------------------------------------------------------------------
3111  * CompatInterrupt --
3112  *      Interrupt the creation of the current target and remove it if
3113  *      it ain't precious.
3114  *
3115  * Results:
3116  *      None.
3117  *
3118  * Side Effects:
3119  *      The target is removed and the process exits. If .INTERRUPT exists,
3120  *      its commands are run first WITH INTERRUPTS IGNORED..
3121  *
3122  *-----------------------------------------------------------------------
3123  */
3124 static void
3125 CompatInterrupt(int signo)
3126 {
3127         GNode           *gn;
3128         sigset_t        nmask, omask;
3129         LstNode         *ln;
3130
3131         sigemptyset(&nmask);
3132         sigaddset(&nmask, SIGINT);
3133         sigaddset(&nmask, SIGTERM);
3134         sigaddset(&nmask, SIGHUP);
3135         sigaddset(&nmask, SIGQUIT);
3136         sigprocmask(SIG_SETMASK, &nmask, &omask);
3137
3138         /* prevent recursion in evaluation of .INTERRUPT */
3139         interrupted = 0;
3140
3141         if (curTarg != NULL && !Targ_Precious(curTarg)) {
3142                 char      *p1;
3143                 char      *file = Var_Value(TARGET, curTarg, &p1);
3144
3145                 if (!noExecute && eunlink(file) != -1) {
3146                         printf("*** %s removed\n", file);
3147                 }
3148                 free(p1);
3149         }
3150
3151         /*
3152          * Run .INTERRUPT only if hit with interrupt signal
3153          */
3154         if (signo == SIGINT) {
3155                 gn = Targ_FindNode(".INTERRUPT", TARG_NOCREATE);
3156                 if (gn != NULL) {
3157                         LST_FOREACH(ln, &gn->commands) {
3158                                 if (Compat_RunCommand(Lst_Datum(ln), gn))
3159                                         break;
3160                         }
3161                 }
3162         }
3163
3164         sigprocmask(SIG_SETMASK, &omask, NULL);
3165
3166         if (signo == SIGQUIT)
3167                 exit(signo);
3168         signal(signo, SIG_DFL);
3169         kill(getpid(), signo);
3170 }
3171
3172 /*-
3173  *-----------------------------------------------------------------------
3174  * Compat_RunCommand --
3175  *      Execute the next command for a target. If the command returns an
3176  *      error, the node's made field is set to ERROR and creation stops.
3177  *      The node from which the command came is also given.
3178  *
3179  * Results:
3180  *      0 if the command succeeded, 1 if an error occurred.
3181  *
3182  * Side Effects:
3183  *      The node's 'made' field may be set to ERROR.
3184  *
3185  *-----------------------------------------------------------------------
3186  */
3187 int
3188 Compat_RunCommand(char *cmd, GNode *gn)
3189 {
3190         char    *cmdStart;      /* Start of expanded command */
3191         char    *cp;
3192         Boolean silent;         /* Don't print command */
3193         Boolean doit;           /* Execute even in -n */
3194         Boolean errCheck;       /* Check errors */
3195         int     reason;         /* Reason for child's death */
3196         int     status;         /* Description of child's death */
3197         int     cpid;           /* Child actually found */
3198         ReturnStatus rstat;     /* Status of fork */
3199         LstNode *cmdNode;       /* Node where current command is located */
3200         char    **av;           /* Argument vector for thing to exec */
3201         char    *cmd_save;      /* saved cmd */
3202         ProcStuff       ps;
3203
3204         /*
3205          * Avoid clobbered variable warnings by forcing the compiler
3206          * to ``unregister'' variables
3207          */
3208 #if __GNUC__
3209         (void)&av;
3210         (void)&errCheck;
3211 #endif
3212         silent = gn->type & OP_SILENT;
3213         errCheck = !(gn->type & OP_IGNORE);
3214         doit = FALSE;
3215
3216         cmdNode = Lst_Member(&gn->commands, cmd);
3217         cmdStart = Buf_Peel(Var_Subst(cmd, gn, FALSE));
3218
3219         /*
3220          * brk_string will return an argv with a NULL in av[0], thus causing
3221          * execvp() to choke and die horribly. Besides, how can we execute a
3222          * null command? In any case, we warn the user that the command
3223          * expanded to nothing (is this the right thing to do?).
3224          */
3225         if (*cmdStart == '\0') {
3226                 free(cmdStart);
3227                 Error("%s expands to empty string", cmd);
3228                 return (0);
3229         } else {
3230                 cmd = cmdStart;
3231         }
3232         Lst_Replace(cmdNode, cmdStart);
3233
3234         if ((gn->type & OP_SAVE_CMDS) && (gn != ENDNode)) {
3235                 Lst_AtEnd(&ENDNode->commands, cmdStart);
3236                 return (0);
3237         } else if (strcmp(cmdStart, "...") == 0) {
3238                 gn->type |= OP_SAVE_CMDS;
3239                 return (0);
3240         }
3241
3242         while (*cmd == '@' || *cmd == '-' || *cmd == '+') {
3243                 switch (*cmd) {
3244
3245                   case '@':
3246                         silent = DEBUG(LOUD) ? FALSE : TRUE;
3247                         break;
3248
3249                   case '-':
3250                         errCheck = FALSE;
3251                         break;
3252
3253                 case '+':
3254                         doit = TRUE;
3255                         if (!meta[0])           /* we came here from jobs */
3256                                 CompatInit();
3257                         break;
3258                 }
3259                 cmd++;
3260         }
3261
3262         while (isspace((unsigned char)*cmd))
3263                 cmd++;
3264
3265         /*
3266          * Print the command before echoing if we're not supposed to be quiet
3267          * for this one. We also print the command if -n given, but not if '+'.
3268          */
3269         if (!silent || (noExecute && !doit)) {
3270                 printf("%s\n", cmd);
3271                 fflush(stdout);
3272         }
3273
3274         /*
3275          * If we're not supposed to execute any commands, this is as far as
3276          * we go...
3277          */
3278         if (!doit && noExecute) {
3279                 return (0);
3280         }
3281
3282         /*
3283          * Search for meta characters in the command. If there are no meta
3284          * characters, there's no need to execute a shell to execute the
3285          * command.
3286          */
3287         for (cp = cmd; !meta[(unsigned char)*cp]; cp++)
3288                 continue;
3289
3290         if (*cp != '\0') {
3291                 /*
3292                  * If *cp isn't the null character, we hit a "meta" character
3293                  * and need to pass the command off to the shell.
3294                  */
3295                 av = NULL;
3296
3297         } else {
3298                 const char **p;
3299                 const char *sh_builtin[] = {
3300                         "alias", "cd", "eval", "exec",
3301                         "exit", "read", "set", "ulimit",
3302                         "unalias", "umask", "unset", "wait",
3303                         ":", NULL
3304                 };
3305
3306                 /*
3307                  * Break the command into words to form an argument
3308                  * vector we can execute. brk_string sticks our name
3309                  * in av[0], so we have to skip over it...
3310                  */
3311                 av = brk_string(cmd, NULL, TRUE);
3312                 av += 1;
3313
3314                 for (p = sh_builtin; *p != 0; p++) {
3315                         if (strcmp(av[0], *p) == 0) {
3316                                 /*
3317                                  * This command must be passed by the shell
3318                                  * for other reasons.. or.. possibly not at
3319                                  * all.
3320                                  */
3321                                 av = NULL;
3322                                 break;
3323                         }
3324                 }
3325         }
3326
3327         ps.in = STDIN_FILENO;
3328         ps.out = STDOUT_FILENO;
3329         ps.err = STDERR_FILENO;
3330
3331         ps.merge_errors = 0;
3332         ps.pgroup = 0;
3333         ps.searchpath = 1;
3334
3335         if (av == NULL) {
3336                 /*
3337                  * We give the shell the -e flag as well as -c if it's
3338                  * supposed to exit when it hits an error.
3339                  */
3340                 ps.argv = emalloc(4 * sizeof(char *));
3341                 ps.argv[0] = strdup(shellName);
3342                 ps.argv[1] = strdup(errCheck ? "-ec" : "-c");
3343                 ps.argv[2] = strdup(cmd);
3344                 ps.argv[3] = NULL;
3345         } else {
3346                 ps.argv = av;
3347         }
3348
3349         /*
3350          * Fork and execute the single command. If the fork fails, we abort.
3351          * Warning since we are doing vfork() instead of fork(),
3352          * do not allocate memory in the child process!
3353          */
3354         if ((cpid = vfork()) == -1) {
3355                 Fatal("Could not fork");
3356
3357         } else if (cpid == 0) {
3358                 /*
3359                  * Child
3360                  */
3361                 ProcExec(&ps);
3362                 /* NOTREACHED */
3363
3364         } else {
3365                 if (av == NULL) {
3366                         free(ps.argv[2]);
3367                         free(ps.argv[1]);
3368                         free(ps.argv[0]);
3369                         free(ps.argv);
3370                 }
3371
3372
3373                 /*
3374                  * we need to print out the command associated with this
3375                  * Gnode in Targ_PrintCmd from Targ_PrintGraph when debugging
3376                  * at level g2, in main(), Fatal() and DieHorribly(),
3377                  * therefore do not free it when debugging.
3378                  */
3379                 if (!DEBUG(GRAPH2)) {
3380                         free(cmdStart);
3381                         Lst_Replace(cmdNode, cmd_save);
3382                 }
3383                 /*
3384                  * The child is off and running. Now all we can do is wait...
3385                  */
3386                 while (1) {
3387                         while ((rstat = wait(&reason)) != cpid) {
3388                                 if (interrupted || (rstat == -1 && errno != EINTR)) {
3389                                         break;
3390                                 }
3391                         }
3392                         if (interrupted)
3393                                 CompatInterrupt(interrupted);
3394
3395                         if (rstat > -1) {
3396                                 if (WIFSTOPPED(reason)) {
3397                                         /* stopped */
3398                                         status = WSTOPSIG(reason);
3399                                 } else if (WIFEXITED(reason)) {
3400                                         /* exited */
3401                                         status = WEXITSTATUS(reason);
3402                                         if (status != 0) {
3403                                                 printf("*** Error code %d",
3404                                                     status);
3405                                         }
3406                                 } else {
3407                                         /* signaled */
3408                                         status = WTERMSIG(reason);
3409                                         printf("*** Signal %d", status);
3410                                 }
3411
3412                                 if (!WIFEXITED(reason) || status != 0) {
3413                                         if (errCheck) {
3414                                                 gn->made = ERROR;
3415                                                 if (keepgoing) {
3416                                                         /*
3417                                                          * Abort the current
3418                                                          * target, but let
3419                                                          * others continue.
3420                                                          */
3421                                                         printf(" (continuing)\n");
3422                                                 }
3423                                         } else {
3424                                                 /*
3425                                                  * Continue executing
3426                                                  * commands for this target.
3427                                                  * If we return 0, this will
3428                                                  * happen...
3429                                                  */
3430                                                 printf(" (ignored)\n");
3431                                                 status = 0;
3432                                         }
3433                                 }
3434                                 break;
3435                         } else {
3436                                 Fatal("error in wait: %d", rstat);
3437                                 /* NOTREACHED */
3438                         }
3439                 }
3440
3441                 return (status);
3442         }
3443 }
3444
3445 /*-
3446  *-----------------------------------------------------------------------
3447  * CompatMake --
3448  *      Make a target, given the parent, to abort if necessary.
3449  *
3450  * Side Effects:
3451  *      If an error is detected and not being ignored, the process exits.
3452  *
3453  *-----------------------------------------------------------------------
3454  */
3455 static int
3456 CompatMake(GNode *gn, GNode *pgn)
3457 {
3458         LstNode *ln;
3459
3460         if (gn->type & OP_USE) {
3461                 Make_HandleUse(gn, pgn);
3462
3463         } else if (gn->made == UNMADE) {
3464                 /*
3465                  * First mark ourselves to be made, then apply whatever
3466                  * transformations the suffix module thinks are necessary.
3467                  * Once that's done, we can descend and make all our children.
3468                  * If any of them has an error but the -k flag was given, our
3469                  * 'make' field will be set FALSE again. This is our signal to
3470                  * not attempt to do anything but abort our parent as well.
3471                  */
3472                 gn->make = TRUE;
3473                 gn->made = BEINGMADE;
3474                 Suff_FindDeps(gn);
3475                 LST_FOREACH(ln, &gn->children)
3476                         CompatMake(Lst_Datum(ln), gn);
3477                 if (!gn->make) {
3478                         gn->made = ABORTED;
3479                         pgn->make = FALSE;
3480                         return (0);
3481                 }
3482
3483                 if (Lst_Member(&gn->iParents, pgn) != NULL) {
3484                         char *p1;
3485                         Var_Set(IMPSRC, Var_Value(TARGET, gn, &p1), pgn);
3486                         free(p1);
3487                 }
3488
3489                 /*
3490                  * All the children were made ok. Now cmtime contains the
3491                  * modification time of the newest child, we need to find out
3492                  * if we exist and when we were modified last. The criteria for
3493                  * datedness are defined by the Make_OODate function.
3494                  */
3495                 DEBUGF(MAKE, ("Examining %s...", gn->name));
3496                 if (!Make_OODate(gn)) {
3497                         gn->made = UPTODATE;
3498                         DEBUGF(MAKE, ("up-to-date.\n"));
3499                         return (0);
3500                 } else {
3501                         DEBUGF(MAKE, ("out-of-date.\n"));
3502                 }
3503
3504                 /*
3505                  * If the user is just seeing if something is out-of-date,
3506                  * exit now to tell him/her "yes".
3507                  */
3508                 if (queryFlag) {
3509                         exit(1);
3510                 }
3511
3512                 /*
3513                  * We need to be re-made. We also have to make sure we've got
3514                  * a $? variable. To be nice, we also define the $> variable
3515                  * using Make_DoAllVar().
3516                  */
3517                 Make_DoAllVar(gn);
3518
3519                 /*
3520                  * Alter our type to tell if errors should be ignored or things
3521                  * should not be printed so Compat_RunCommand knows what to do.
3522                  */
3523                 if (Targ_Ignore(gn)) {
3524                         gn->type |= OP_IGNORE;
3525                 }
3526                 if (Targ_Silent(gn)) {
3527                         gn->type |= OP_SILENT;
3528                 }
3529
3530                 if (Job_CheckCommands(gn, Fatal)) {
3531                         /*
3532                          * Our commands are ok, but we still have to worry
3533                          * about the -t flag...
3534                          */
3535                         if (!touchFlag) {
3536                                 curTarg = gn;
3537                                 LST_FOREACH(ln, &gn->commands) {
3538                                         if (Compat_RunCommand(Lst_Datum(ln),
3539                                             gn))
3540                                                 break;
3541                                 }
3542                                 curTarg = NULL;
3543                         } else {
3544                                 Job_Touch(gn, gn->type & OP_SILENT);
3545                         }
3546                 } else {
3547                         gn->made = ERROR;
3548                 }
3549
3550                 if (gn->made != ERROR) {
3551                         /*
3552                          * If the node was made successfully, mark it so, update
3553                          * its modification time and timestamp all its parents.
3554                          * Note that for .ZEROTIME targets, the timestamping
3555                          * isn't done. This is to keep its state from affecting
3556                          * that of its parent.
3557                          */
3558                         gn->made = MADE;
3559 #ifndef RECHECK
3560                         /*
3561                          * We can't re-stat the thing, but we can at least take
3562                          * care of rules where a target depends on a source that
3563                          * actually creates the target, but only if it has
3564                          * changed, e.g.
3565                          *
3566                          * parse.h : parse.o
3567                          *
3568                          * parse.o : parse.y
3569                          *      yacc -d parse.y
3570                          *      cc -c y.tab.c
3571                          *      mv y.tab.o parse.o
3572                          *      cmp -s y.tab.h parse.h || mv y.tab.h parse.h
3573                          *
3574                          * In this case, if the definitions produced by yacc
3575                          * haven't changed from before, parse.h won't have been
3576                          * updated and gn->mtime will reflect the current
3577                          * modification time for parse.h. This is something of a
3578                          * kludge, I admit, but it's a useful one..
3579                          *
3580                          * XXX: People like to use a rule like
3581                          *
3582                          * FRC:
3583                          *
3584                          * To force things that depend on FRC to be made, so we
3585                          * have to check for gn->children being empty as well...
3586                          */
3587                         if (!Lst_IsEmpty(&gn->commands) ||
3588                             Lst_IsEmpty(&gn->children)) {
3589                                 gn->mtime = now;
3590                         }
3591 #else
3592                         /*
3593                          * This is what Make does and it's actually a good
3594                          * thing, as it allows rules like
3595                          *
3596                          *      cmp -s y.tab.h parse.h || cp y.tab.h parse.h
3597                          *
3598                          * to function as intended. Unfortunately, thanks to
3599                          * the stateless nature of NFS (and the speed of this
3600                          * program), there are times when the modification time
3601                          * of a file created on a remote machine will not be
3602                          * modified before the stat() implied by the Dir_MTime
3603                          * occurs, thus leading us to believe that the file
3604                          * is unchanged, wreaking havoc with files that depend
3605                          * on this one.
3606                          *
3607                          * I have decided it is better to make too much than to
3608                          * make too little, so this stuff is commented out
3609                          * unless you're sure it's ok.
3610                          * -- ardeb 1/12/88
3611                          */
3612                         if (noExecute || Dir_MTime(gn) == 0) {
3613                                 gn->mtime = now;
3614                         }
3615                         if (gn->cmtime > gn->mtime)
3616                                 gn->mtime = gn->cmtime;
3617                         DEBUGF(MAKE, ("update time: %s\n",
3618                             Targ_FmtTime(gn->mtime)));
3619 #endif
3620                         if (!(gn->type & OP_EXEC)) {
3621                                 pgn->childMade = TRUE;
3622                                 Make_TimeStamp(pgn, gn);
3623                         }
3624
3625                 } else if (keepgoing) {
3626                         pgn->make = FALSE;
3627
3628                 } else {
3629                         char *p1;
3630
3631                         printf("\n\nStop in %s.\n",
3632                             Var_Value(".CURDIR", gn, &p1));
3633                         free(p1);
3634                         exit(1);
3635                 }
3636         } else if (gn->made == ERROR) {
3637                 /*
3638                  * Already had an error when making this beastie. Tell the
3639                  * parent to abort.
3640                  */
3641                 pgn->make = FALSE;
3642         } else {
3643                 if (Lst_Member(&gn->iParents, pgn) != NULL) {
3644                         char *p1;
3645                         Var_Set(IMPSRC, Var_Value(TARGET, gn, &p1), pgn);
3646                         free(p1);
3647                 }
3648                 switch(gn->made) {
3649                   case BEINGMADE:
3650                         Error("Graph cycles through %s\n", gn->name);
3651                         gn->made = ERROR;
3652                         pgn->make = FALSE;
3653                         break;
3654                   case MADE:
3655                         if ((gn->type & OP_EXEC) == 0) {
3656                             pgn->childMade = TRUE;
3657                             Make_TimeStamp(pgn, gn);
3658                         }
3659                         break;
3660                   case UPTODATE:
3661                         if ((gn->type & OP_EXEC) == 0) {
3662                             Make_TimeStamp(pgn, gn);
3663                         }
3664                         break;
3665                   default:
3666                         break;
3667                 }
3668         }
3669
3670         return (0);
3671 }
3672
3673 /*-
3674  *-----------------------------------------------------------------------
3675  * Compat_Run --
3676  *      Start making again, given a list of target nodes.
3677  *
3678  * Results:
3679  *      None.
3680  *
3681  * Side Effects:
3682  *      Guess what?
3683  *
3684  *-----------------------------------------------------------------------
3685  */
3686 void
3687 Compat_Run(Lst *targs)
3688 {
3689         GNode   *gn = NULL;     /* Current root target */
3690         int     error_cnt;              /* Number of targets not remade due to errors */
3691         LstNode *ln;
3692
3693         CompatInit();
3694         Shell_Init();           /* Set up shell. */
3695
3696         if (signal(SIGINT, SIG_IGN) != SIG_IGN) {
3697                 signal(SIGINT, CompatCatchSig);
3698         }
3699         if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
3700                 signal(SIGTERM, CompatCatchSig);
3701         }
3702         if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {
3703                 signal(SIGHUP, CompatCatchSig);
3704         }
3705         if (signal(SIGQUIT, SIG_IGN) != SIG_IGN) {
3706                 signal(SIGQUIT, CompatCatchSig);
3707         }
3708
3709         ENDNode = Targ_FindNode(".END", TARG_CREATE);
3710         /*
3711          * If the user has defined a .BEGIN target, execute the commands
3712          * attached to it.
3713         */
3714         if (!queryFlag) {
3715                 gn = Targ_FindNode(".BEGIN", TARG_NOCREATE);
3716                 if (gn != NULL) {
3717                         LST_FOREACH(ln, &gn->commands) {
3718                                 if (Compat_RunCommand(Lst_Datum(ln), gn))
3719                                         break;
3720                         }
3721                         if (gn->made == ERROR) {
3722                                 printf("\n\nStop.\n");
3723                                 exit(1);
3724                         }
3725                 }
3726         }
3727
3728         /*
3729          * For each entry in the list of targets to create, call CompatMake on
3730          * it to create the thing. CompatMake will leave the 'made' field of gn
3731          * in one of several states:
3732          *      UPTODATE  gn was already up-to-date
3733          *      MADE      gn was recreated successfully
3734          *      ERROR     An error occurred while gn was being created
3735          *      ABORTED   gn was not remade because one of its inferiors
3736          *                could not be made due to errors.
3737          */
3738         error_cnt = 0;
3739         while (!Lst_IsEmpty(targs)) {
3740                 gn = Lst_DeQueue(targs);
3741                 CompatMake(gn, gn);
3742
3743                 if (gn->made == UPTODATE) {
3744                         printf("`%s' is up to date.\n", gn->name);
3745                 } else if (gn->made == ABORTED) {
3746                         printf("`%s' not remade because of errors.\n",
3747                             gn->name);
3748                         error_cnt += 1;
3749                 }
3750         }
3751
3752         /*
3753          * If the user has defined a .END target, run its commands.
3754          */
3755         if (error_cnt == 0) {
3756                 LST_FOREACH(ln, &ENDNode->commands) {
3757                         if (Compat_RunCommand(Lst_Datum(ln), gn))
3758                                 break;
3759                 }
3760         }
3761 }