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
8 * This code is derived from software contributed to Berkeley by
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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
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.108 2005/05/23 18:24:59 okumoto Exp $
50 * handle the creation etc. of our child processes.
53 * Job_Make Start the creation of the given target.
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.
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.
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.
74 * Job_Full Return TRUE if the job table is filled.
76 * Job_Empty Return TRUE if the job table is completely empty.
78 * Job_Finish Perform any final processing which needs doing. This
79 * includes the execution of any commands which have
80 * been/were attached to the .END target. It should only
81 * be called when the job table is empty.
83 * Job_AbortAll Abort all currently running jobs. It doesn't handle
84 * output or do anything for the jobs, just kills them.
85 * It should only be called in an emergency, as it were.
88 * Verify that the commands for a target are ok. Provide
89 * them if necessary and possible.
91 * Job_Touch Update a target without really updating it.
93 * Job_Wait Wait for all currently-running jobs to finish.
96 * The routines in this file implement the full-compatibility
97 * mode of PMake. Most of the special functionality of PMake
98 * is available in this mode. Things not supported:
100 * - friendly variable substitution.
103 * Compat_Run Initialize things for this module and recreate
104 * thems as need creatin'
107 #include <sys/queue.h>
108 #include <sys/types.h>
109 #include <sys/select.h>
110 #include <sys/stat.h>
112 #include <sys/event.h>
114 #include <sys/wait.h>
119 #include <inttypes.h>
135 #include "pathnames.h"
144 #define TMPPAT "/tmp/makeXXXXXXXXXX"
145 #define MKLVL_MAXVAL 500
146 #define MKLVL_ENVVAR "__MKLVL__"
150 * The SEL_ constants determine the maximum amount of time spent in select
151 * before coming out to see if a child has finished. SEL_SEC is the number of
152 * seconds and SEL_USEC is the number of micro-seconds
156 #endif /* !USE_KQUEUE */
159 * Job Table definitions.
161 * The job "table" is kept as a linked Lst in 'jobs', with the number of
162 * active jobs maintained in the 'nJobs' variable. At no time will this
163 * exceed the value of 'maxJobs', initialized by the Job_Init function.
165 * When a job is finished, the Make_Update function is called on each of the
166 * parents of the node which was just remade. This takes care of the upward
167 * traversal of the dependency graph.
169 #define JOB_BUFSIZE 1024
171 pid_t pid; /* The child's process ID */
173 struct GNode *node; /* The target the child is making */
176 * A LstNode for the first command to be saved after the job completes.
177 * This is NULL if there was no "..." in the job's commands.
182 * An FILE* for writing out the commands. This is only
183 * used before the job is actually started.
188 * A word of flags which determine how the module handles errors,
189 * echoing, etc. for the job
191 short flags; /* Flags to control treatment of job */
192 #define JOB_IGNERR 0x001 /* Ignore non-zero exits */
193 #define JOB_SILENT 0x002 /* no output */
194 #define JOB_SPECIAL 0x004 /* Target is a special one. i.e. run it locally
195 * if we can't export it and maxLocal is 0 */
196 #define JOB_IGNDOTS 0x008 /* Ignore "..." lines when processing
198 #define JOB_FIRST 0x020 /* Job is first job for the node */
199 #define JOB_RESTART 0x080 /* Job needs to be completely restarted */
200 #define JOB_RESUME 0x100 /* Job needs to be resumed b/c it stopped,
202 #define JOB_CONTINUING 0x200 /* We are in the process of resuming this job.
203 * Used to avoid infinite recursion between
204 * JobFinish and JobRestart */
206 /* union for handling shell's output */
209 * This part is used when usePipes is true.
210 * The output is being caught via a pipe and the descriptors
211 * of our pipe, an array in which output is line buffered and
212 * the current position in that buffer are all maintained for
217 * Input side of pipe associated with
218 * job's output channel
223 * Output side of pipe associated with job's
229 * Buffer for storing the output of the
232 char op_outBuf[JOB_BUFSIZE + 1];
234 /* Current position in op_outBuf */
239 * If usePipes is false the output is routed to a temporary
240 * file and all that is kept is the name of the file and the
241 * descriptor open to the file.
244 /* Name of file to which shell output was rerouted */
245 char of_outFile[sizeof(TMPPAT)];
248 * Stream open to the output file. Used to funnel all
249 * from a single job to one file while still allowing
250 * multiple shell invocations
255 } output; /* Data for tracking a shell's output */
257 TAILQ_ENTRY(Job) link; /* list link */
260 #define outPipe output.o_pipe.op_outPipe
261 #define inPipe output.o_pipe.op_inPipe
262 #define outBuf output.o_pipe.op_outBuf
263 #define curPos output.o_pipe.op_curPos
264 #define outFile output.o_file.of_outFile
265 #define outFd output.o_file.of_outFd
267 TAILQ_HEAD(JobList, Job);
270 * error handling variables
272 static int errors = 0; /* number of errors reported */
273 static int aborting = 0; /* why is the make aborting? */
274 #define ABORT_ERROR 1 /* Because of an error */
275 #define ABORT_INTERRUPT 2 /* Because it was interrupted */
276 #define ABORT_WAIT 3 /* Waiting for jobs to finish */
279 * XXX: Avoid SunOS bug... FILENO() is fp->_file, and file
280 * is a char! So when we go above 127 we turn negative!
282 #define FILENO(a) ((unsigned)fileno(a))
285 * post-make command processing. The node postCommands is really just the
286 * .END target but we keep it around to avoid having to search for it
289 static GNode *postCommands;
292 * The number of commands actually printed for a target. Should this
293 * number be 0, no shell will be executed.
295 static int numCommands;
298 * Return values from JobStart.
300 #define JOB_RUNNING 0 /* Job is running */
301 #define JOB_ERROR 1 /* Error in starting the job */
302 #define JOB_FINISHED 2 /* The job is already finished */
303 #define JOB_STOPPED 3 /* The job is stopped */
306 * The maximum number of jobs that may run. This is initialize from the
307 * -j argument for the leading make and from the FIFO for sub-makes.
310 static int nJobs; /* The number of children currently running */
312 /* The structures that describe them */
313 static struct JobList jobs = TAILQ_HEAD_INITIALIZER(jobs);
315 static Boolean jobFull; /* Flag to tell when the job table is full. It
316 * is set TRUE when (1) the total number of
317 * running jobs equals the maximum allowed */
319 static int kqfd; /* File descriptor obtained by kqueue() */
321 static fd_set outputs; /* Set of descriptors of pipes connected to
322 * the output channels of children */
325 static GNode *lastNode; /* The node for which output was most recently
327 static const char *targFmt; /* Format string to use to head output from a
328 * job when it's not the most-recent job heard
331 #define TARG_FMT "--- %s ---\n" /* Default format */
332 #define MESSAGE(fp, gn) \
333 fprintf(fp, targFmt, gn->name);
336 * When JobStart attempts to run a job but isn't allowed to
337 * or when Job_CatchChildren detects a job that has
338 * been stopped somehow, the job is placed on the stoppedJobs queue to be run
339 * when the next job finishes.
341 * Lst of Job structures describing jobs that were stopped due to
342 * concurrency limits or externally
344 static struct JobList stoppedJobs = TAILQ_HEAD_INITIALIZER(stoppedJobs);
346 static int fifoFd; /* Fd of our job fifo */
347 static char fifoName[] = "/tmp/make_fifo_XXXXXXXXX";
348 static int fifoMaster;
350 static sig_atomic_t interrupted;
353 #if defined(USE_PGRP) && defined(SYSV)
354 # define KILL(pid, sig) killpg(-(pid), (sig))
356 # if defined(USE_PGRP)
357 # define KILL(pid, sig) killpg((pid), (sig))
359 # define KILL(pid, sig) kill((pid), (sig))
364 * Grmpf... There is no way to set bits of the wait structure
365 * anymore with the stupid W*() macros. I liked the union wait
366 * stuff much more. So, we devise our own macros... This is
367 * really ugly, use dramamine sparingly. You have been warned.
369 #define W_SETMASKED(st, val, fun) \
372 int mask = fun(sh); \
374 for (sh = 0; ((mask >> sh) & 1) == 0; sh++) \
376 *(st) = (*(st) & ~mask) | ((val) << sh); \
379 #define W_SETTERMSIG(st, val) W_SETMASKED(st, val, WTERMSIG)
380 #define W_SETEXITSTATUS(st, val) W_SETMASKED(st, val, WEXITSTATUS)
382 static void JobRestart(Job *);
383 static int JobStart(GNode *, int, Job *);
384 static void JobDoOutput(Job *, Boolean);
385 static void JobInterrupt(int, int);
386 static void JobRestartJobs(void);
387 static int Compat_RunCommand(char *, struct GNode *);
389 static GNode *curTarg = NULL;
390 static GNode *ENDNode;
393 * Create a fifo file with a uniq filename, and returns a file
394 * descriptor to that fifo.
397 mkfifotemp(char *template)
402 const char padchar[] =
403 "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
405 if (template[0] == '\0') {
406 errno = EINVAL; /* bad input string */
410 /* Find end of template string. */
411 pathend = strchr(template, '\0');
415 * Starting from the end of the template replace spaces with 'X' in
416 * them with random characters until there are no more 'X'.
418 while (ptr >= template && *ptr == 'X') {
419 uint32_t rand_num = arc4random() % (sizeof(padchar) - 1);
420 *ptr-- = padchar[rand_num];
424 /* Check the target directory. */
425 for (; ptr > template; --ptr) {
430 if (stat(template, &sbuf) != 0)
433 if (!S_ISDIR(sbuf.st_mode)) {
443 if (mkfifo(template, 0600) == 0) {
446 if ((fd = open(template, O_RDWR, 0600)) < 0) {
453 if (errno != EEXIST) {
459 * If we have a collision, cycle through the space of
462 for (ptr = start;;) {
465 if (*ptr == '\0' || ptr == pathend)
468 pad = strchr(padchar, *ptr);
469 if (pad == NULL || *++pad == '\0') {
481 catch_child(int sig __unused)
486 * In lieu of a good way to prevent every possible looping in make(1), stop
487 * there from being more than MKLVL_MAXVAL processes forked by make(1), to
488 * prevent a forkbomb from happening, in a dumb and mechanical way.
491 * Creates or modifies enviornment variable MKLVL_ENVVAR via setenv().
494 check_make_level(void)
496 char *value = getenv(MKLVL_ENVVAR);
497 int level = (value == NULL) ? 0 : atoi(value);
500 errc(2, EAGAIN, "Invalid value for recursion level (%d).",
502 } else if (level > MKLVL_MAXVAL) {
503 errc(2, EAGAIN, "Max recursion level (%d) exceeded.",
507 sprintf(new_value, "%d", level + 1);
508 setenv(MKLVL_ENVVAR, new_value, 1);
518 * Catch SIGCHLD so that we get kicked out of select() when we
519 * need to look at a child. This is only known to matter for the
520 * -j case (perhaps without -P).
522 * XXX this is intentionally misplaced.
526 sigemptyset(&sa.sa_mask);
527 sa.sa_flags = SA_RESTART | SA_NOCLDSTOP;
528 sa.sa_handler = catch_child;
529 sigaction(SIGCHLD, &sa, NULL);
535 * get rid of resource limit on file descriptors
539 if (getrlimit(RLIMIT_NOFILE, &rl) == -1) {
542 rl.rlim_cur = rl.rlim_max;
543 if (setrlimit(RLIMIT_NOFILE, &rl) == -1) {
551 * Turn off ENV to make ksh happier.
558 * Wait for child process to terminate.
561 ProcWait(ProcStuff *ps)
567 * Wait for the process to exit.
570 pid = waitpid(ps->child_pid, &status, 0);
571 if (pid == -1 && errno != EINTR) {
572 Fatal("error in wait: %d", pid);
575 if (pid == ps->child_pid) {
588 * Got a signal. Set global variables and hope that someone will
592 JobCatchSig(int signo)
600 * Pass a signal on to all local jobs if
601 * USE_PGRP is defined, then die ourselves.
604 * We die by the same signal.
607 JobPassSig(int signo)
610 sigset_t nmask, omask;
611 struct sigaction act;
614 sigaddset(&nmask, signo);
615 sigprocmask(SIG_SETMASK, &nmask, &omask);
617 DEBUGF(JOB, ("JobPassSig(%d) called.\n", signo));
618 TAILQ_FOREACH(job, &jobs, link) {
619 DEBUGF(JOB, ("JobPassSig passing signal %d to child %jd.\n",
620 signo, (intmax_t)job->pid));
621 KILL(job->pid, signo);
625 * Deal with proper cleanup based on the signal received. We only run
626 * the .INTERRUPT target if the signal was in fact an interrupt.
627 * The other three termination signals are more of a "get out *now*"
630 if (signo == SIGINT) {
631 JobInterrupt(TRUE, signo);
632 } else if (signo == SIGHUP || signo == SIGTERM || signo == SIGQUIT) {
633 JobInterrupt(FALSE, signo);
637 * Leave gracefully if SIGQUIT, rather than core dumping.
639 if (signo == SIGQUIT) {
644 * Send ourselves the signal now we've given the message to everyone
645 * else. Note we block everything else possible while we're getting
646 * the signal. This ensures that all our jobs get continued when we
647 * wake up before we take any other signal.
648 * XXX this comment seems wrong.
650 act.sa_handler = SIG_DFL;
651 sigemptyset(&act.sa_mask);
653 sigaction(signo, &act, NULL);
655 DEBUGF(JOB, ("JobPassSig passing signal to self, mask = %x.\n",
656 ~0 & ~(1 << (signo - 1))));
657 signal(signo, SIG_DFL);
659 KILL(getpid(), signo);
662 TAILQ_FOREACH(job, &jobs, link) {
663 DEBUGF(JOB, ("JobPassSig passing signal %d to child %jd.\n",
664 signo, (intmax_t)job->pid));
665 KILL(job->pid, signo);
668 sigprocmask(SIG_SETMASK, &omask, NULL);
669 sigprocmask(SIG_SETMASK, &omask, NULL);
670 act.sa_handler = JobPassSig;
671 sigaction(signo, &act, NULL);
676 * Put out another command for the given job. If the command starts
677 * with an @ or a - we process it specially. In the former case,
678 * so long as the -s and -n flags weren't given to make, we stick
679 * a shell-specific echoOff command in the script. In the latter,
680 * we ignore errors for the entire job, unless the shell has error
682 * If the command is just "..." we take all future commands for this
683 * job to be commands to be executed once the entire graph has been
684 * made and return non-zero to signal that the end of the commands
685 * was reached. These commands are later attached to the postCommands
686 * node and executed by Job_Finish when all things are done.
687 * This function is called from JobStart via LST_FOREACH.
690 * Always 0, unless the command was "..."
693 * If the command begins with a '-' and the shell has no error control,
694 * the JOB_IGNERR flag is set in the job descriptor.
695 * If the command is "..." and we're not ignoring such things,
696 * tailCmds is set to the successor node of the cmd.
697 * numCommands is incremented if the command is actually printed.
700 JobPrintCommand(char *cmd, Job *job)
702 Boolean noSpecials; /* true if we shouldn't worry about
703 * inserting special commands into
704 * the input stream. */
705 Boolean shutUp = FALSE; /* true if we put a no echo command
706 * into the command file */
707 Boolean errOff = FALSE; /* true if we turned error checking
708 * off before printing the command
709 * and need to turn it back on */
710 const char *cmdTemplate;/* Template to use when printing the command */
711 char *cmdStart; /* Start of expanded command */
712 LstNode *cmdNode; /* Node for replacing the command */
714 noSpecials = (noExecute && !(job->node->type & OP_MAKE));
716 if (strcmp(cmd, "...") == 0) {
717 job->node->type |= OP_SAVE_CMDS;
718 if ((job->flags & JOB_IGNDOTS) == 0) {
720 Lst_Succ(Lst_Member(&job->node->commands, cmd));
726 #define DBPRINTF(fmt, arg) \
727 DEBUGF(JOB, (fmt, arg)); \
728 fprintf(job->cmdFILE, fmt, arg); \
729 fflush(job->cmdFILE);
734 * For debugging, we replace each command with the result of expanding
735 * the variables in the command.
737 cmdNode = Lst_Member(&job->node->commands, cmd);
739 cmd = Buf_Peel(Var_Subst(cmd, job->node, FALSE));
742 Lst_Replace(cmdNode, cmdStart);
744 cmdTemplate = "%s\n";
747 * Check for leading @', -' or +'s to control echoing, error checking,
748 * and execution on -n.
750 while (*cmd == '@' || *cmd == '-' || *cmd == '+') {
754 shutUp = DEBUG(LOUD) ? FALSE : TRUE;
764 * We're not actually exececuting anything...
765 * but this one needs to be - use compat mode
768 Compat_RunCommand(cmd, job->node);
776 while (isspace((unsigned char)*cmd))
780 if (!(job->flags & JOB_SILENT) && !noSpecials &&
781 commandShell->hasEchoCtl) {
782 DBPRINTF("%s\n", commandShell->echoOff);
789 if (!(job->flags & JOB_IGNERR) && !noSpecials) {
790 if (commandShell->hasErrCtl) {
792 * We don't want the error-control commands
793 * showing up either, so we turn off echoing
794 * while executing them. We could put another
795 * field in the shell structure to tell
796 * JobDoOutput to look for this string too,
797 * but why make it any more complex than
800 if (!(job->flags & JOB_SILENT) && !shutUp &&
801 commandShell->hasEchoCtl) {
802 DBPRINTF("%s\n", commandShell->echoOff);
803 DBPRINTF("%s\n", commandShell->ignErr);
804 DBPRINTF("%s\n", commandShell->echoOn);
806 DBPRINTF("%s\n", commandShell->ignErr);
808 } else if (commandShell->ignErr &&
809 *commandShell->ignErr != '\0') {
811 * The shell has no error control, so we need to
812 * be weird to get it to ignore any errors from
813 * the command. If echoing is turned on, we turn
814 * it off and use the errCheck template to echo
815 * the command. Leave echoing off so the user
816 * doesn't see the weirdness we go through to
817 * ignore errors. Set cmdTemplate to use the
818 * weirdness instead of the simple "%s\n"
821 if (!(job->flags & JOB_SILENT) && !shutUp &&
822 commandShell->hasEchoCtl) {
823 DBPRINTF("%s\n", commandShell->echoOff);
824 DBPRINTF(commandShell->errCheck, cmd);
827 cmdTemplate = commandShell->ignErr;
829 * The error ignoration (hee hee) is already
830 * taken care of by the ignErr template, so
831 * pretend error checking is still on.
842 DBPRINTF(cmdTemplate, cmd);
846 * If echoing is already off, there's no point in issuing the
847 * echoOff command. Otherwise we issue it and pretend it was on
848 * for the whole command...
850 if (!shutUp && !(job->flags & JOB_SILENT) &&
851 commandShell->hasEchoCtl) {
852 DBPRINTF("%s\n", commandShell->echoOff);
855 DBPRINTF("%s\n", commandShell->errCheck);
858 DBPRINTF("%s\n", commandShell->echoOn);
865 * Called to close both input and output pipes when a job is finished.
868 * The file descriptors associated with the job are closed.
875 #if !defined(USE_KQUEUE)
876 FD_CLR(job->inPipe, &outputs);
878 if (job->outPipe != job->inPipe) {
881 JobDoOutput(job, TRUE);
885 JobDoOutput(job, TRUE);
891 * Do final processing for the given job including updating
892 * parents and starting new jobs as available/necessary. Note
893 * that we pay no attention to the JOB_IGNERR flag here.
894 * This is because when we're called because of a noexecute flag
895 * or something, jstat.w_status is 0 and when called from
896 * Job_CatchChildren, the status is zeroed if it s/b ignored.
899 * Some nodes may be put on the toBeMade queue.
900 * Final commands for the job are placed on postCommands.
902 * If we got an error and are aborting (aborting == ABORT_ERROR) and
903 * the job list is now empty, we are done for the day.
904 * If we recognized an error (errors !=0), we set the aborting flag
905 * to ABORT_ERROR so no more jobs will be started.
908 JobFinish(Job *job, int *status)
913 if (WIFEXITED(*status)) {
914 int job_status = WEXITSTATUS(*status);
918 * Deal with ignored errors in -B mode. We need to
919 * print a message telling of the ignored error as
920 * well as setting status.w_status to 0 so the next
921 * command gets run. To do this, we set done to be
922 * TRUE if in -B mode and the job exited non-zero.
924 if (job_status == 0) {
927 if (job->flags & JOB_IGNERR) {
931 * If it exited non-zero and either we're
932 * doing things our way or we're not ignoring
933 * errors, the job is finished. Similarly, if
934 * the shell died because of a signal the job
935 * is also finished. In these cases, finish
936 * out the job's output before printing the
940 if (job->cmdFILE != NULL &&
941 job->cmdFILE != stdout) {
942 fclose(job->cmdFILE);
947 } else if (WIFSIGNALED(*status)) {
948 if (WTERMSIG(*status) == SIGCONT) {
950 * No need to close things down or anything.
955 * If it exited non-zero and either we're
956 * doing things our way or we're not ignoring
957 * errors, the job is finished. Similarly, if
958 * the shell died because of a signal the job
959 * is also finished. In these cases, finish
960 * out the job's output before printing the
964 if (job->cmdFILE != NULL &&
965 job->cmdFILE != stdout) {
966 fclose(job->cmdFILE);
972 * No need to close things down or anything.
977 if (WIFEXITED(*status)) {
978 if (done || DEBUG(JOB)) {
983 (job->flags & JOB_IGNERR)) {
985 * If output is going to a file and this job
986 * is ignoring errors, arrange to have the
987 * exit status sent to the output file as
990 out = fdopen(job->outFd, "w");
992 Punt("Cannot fdopen");
997 DEBUGF(JOB, ("Process %jd exited.\n",
998 (intmax_t)job->pid));
1000 if (WEXITSTATUS(*status) == 0) {
1002 if (usePipes && job->node != lastNode) {
1003 MESSAGE(out, job->node);
1004 lastNode = job->node;
1007 "*** Completed successfully\n");
1010 if (usePipes && job->node != lastNode) {
1011 MESSAGE(out, job->node);
1012 lastNode = job->node;
1014 fprintf(out, "*** Error code %d%s\n",
1015 WEXITSTATUS(*status),
1016 (job->flags & JOB_IGNERR) ?
1019 if (job->flags & JOB_IGNERR) {
1026 } else if (WIFSIGNALED(*status)) {
1027 if (done || DEBUG(JOB) || (WTERMSIG(*status) == SIGCONT)) {
1032 (job->flags & JOB_IGNERR)) {
1034 * If output is going to a file and this job
1035 * is ignoring errors, arrange to have the
1036 * exit status sent to the output file as
1039 out = fdopen(job->outFd, "w");
1041 Punt("Cannot fdopen");
1046 if (WTERMSIG(*status) == SIGCONT) {
1048 * If the beastie has continued, shift the
1049 * Job from the stopped list to the running
1050 * one (or re-stop it if concurrency is
1051 * exceeded) and go and get another child.
1053 if (job->flags & (JOB_RESUME | JOB_RESTART)) {
1054 if (usePipes && job->node != lastNode) {
1055 MESSAGE(out, job->node);
1056 lastNode = job->node;
1058 fprintf(out, "*** Continued\n");
1060 if (!(job->flags & JOB_CONTINUING)) {
1061 DEBUGF(JOB, ("Warning: process %jd was not "
1062 "continuing.\n", (intmax_t) job->pid));
1065 * We don't really want to restart a
1066 * job from scratch just because it
1067 * continued, especially not without
1068 * killing the continuing process!
1069 * That's why this is ifdef'ed out.
1075 job->flags &= ~JOB_CONTINUING;
1076 TAILQ_INSERT_TAIL(&jobs, job, link);
1078 DEBUGF(JOB, ("Process %jd is continuing locally.\n",
1079 (intmax_t) job->pid));
1080 if (nJobs == maxJobs) {
1082 DEBUGF(JOB, ("Job queue is full.\n"));
1088 if (usePipes && job->node != lastNode) {
1089 MESSAGE(out, job->node);
1090 lastNode = job->node;
1093 "*** Signal %d\n", WTERMSIG(*status));
1101 if (compatMake && !usePipes && (job->flags & JOB_IGNERR)) {
1103 * If output is going to a file and this job
1104 * is ignoring errors, arrange to have the
1105 * exit status sent to the output file as
1108 out = fdopen(job->outFd, "w");
1110 Punt("Cannot fdopen");
1115 DEBUGF(JOB, ("Process %jd stopped.\n", (intmax_t) job->pid));
1116 if (usePipes && job->node != lastNode) {
1117 MESSAGE(out, job->node);
1118 lastNode = job->node;
1120 fprintf(out, "*** Stopped -- signal %d\n", WSTOPSIG(*status));
1121 job->flags |= JOB_RESUME;
1122 TAILQ_INSERT_TAIL(&stoppedJobs, job, link);
1128 * Now handle the -B-mode stuff. If the beast still isn't finished,
1129 * try and restart the job on the next command. If JobStart says it's
1130 * ok, it's ok. If there's an error, this puppy is done.
1132 if (compatMake && WIFEXITED(*status) &&
1133 Lst_Succ(job->node->compat_command) != NULL) {
1134 switch (JobStart(job->node, job->flags & JOB_IGNDOTS, job)) {
1140 W_SETEXITSTATUS(status, 1);
1144 * If we got back a JOB_FINISHED code, JobStart has
1145 * already called Make_Update and freed the job
1146 * descriptor. We set done to false here to avoid fake
1147 * cycles and double frees. JobStart needs to do the
1148 * update so we can proceed up the graph when given
1160 if (done && aborting != ABORT_ERROR &&
1161 aborting != ABORT_INTERRUPT && *status == 0) {
1163 * As long as we aren't aborting and the job didn't return a
1164 * non-zero status that we shouldn't ignore, we call
1165 * Make_Update to update the parents. In addition, any saved
1166 * commands for the node are placed on the .END target.
1168 for (ln = job->tailCmds; ln != NULL; ln = LST_NEXT(ln)) {
1169 Lst_AtEnd(&postCommands->commands,
1171 Var_Subst(Lst_Datum(ln), job->node, FALSE)));
1174 job->node->made = MADE;
1175 Make_Update(job->node);
1178 } else if (*status != 0) {
1186 * Set aborting if any error.
1188 if (errors && !keepgoing && aborting != ABORT_INTERRUPT) {
1190 * If we found any errors in this batch of children and the -k
1191 * flag wasn't given, we set the aborting flag so no more jobs
1194 aborting = ABORT_ERROR;
1197 if (aborting == ABORT_ERROR && Job_Empty()) {
1199 * If we are aborting and the job table is now empty, we finish.
1207 * Touch the given target. Called by JobStart when the -t flag was
1208 * given. Prints messages unless told to be silent.
1211 * The data modification of the file is changed. In addition, if the
1212 * file did not exist, it is created.
1215 Job_Touch(GNode *gn, Boolean silent)
1217 int streamID; /* ID of stream opened to do the touch */
1218 struct utimbuf times; /* Times for utime() call */
1220 if (gn->type & (OP_JOIN | OP_USE | OP_EXEC | OP_OPTIONAL)) {
1222 * .JOIN, .USE, .ZEROTIME and .OPTIONAL targets are "virtual"
1223 * targets and, as such, shouldn't really be created.
1229 fprintf(stdout, "touch %s\n", gn->name);
1237 if (gn->type & OP_ARCHV) {
1239 } else if (gn->type & OP_LIB) {
1242 char *file = gn->path ? gn->path : gn->name;
1244 times.actime = times.modtime = now;
1245 if (utime(file, ×) < 0) {
1246 streamID = open(file, O_RDWR | O_CREAT, 0666);
1248 if (streamID >= 0) {
1252 * Read and write a byte to the file to change
1253 * the modification time, then close the file.
1255 if (read(streamID, &c, 1) == 1) {
1256 lseek(streamID, (off_t)0, SEEK_SET);
1257 write(streamID, &c, 1);
1262 fprintf(stdout, "*** couldn't touch %s: %s",
1263 file, strerror(errno));
1272 * Make sure the given node has all the commands it needs.
1275 * TRUE if the commands list is/was ok.
1278 * The node will have commands from the .DEFAULT rule added to it
1282 Job_CheckCommands(GNode *gn, void (*abortProc)(const char *, ...))
1285 if (OP_NOP(gn->type) && Lst_IsEmpty(&gn->commands) &&
1286 (gn->type & OP_LIB) == 0) {
1288 * No commands. Look for .DEFAULT rule from which we might infer
1291 if (DEFAULT != NULL && !Lst_IsEmpty(&DEFAULT->commands)) {
1293 * Make only looks for a .DEFAULT if the node was
1294 * never the target of an operator, so that's what we
1295 * do too. If a .DEFAULT was given, we substitute its
1296 * commands for gn's commands and set the IMPSRC
1297 * variable to be the target's name The DEFAULT node
1298 * acts like a transformation rule, in that gn also
1299 * inherits any attributes or sources attached to
1302 Make_HandleUse(DEFAULT, gn);
1303 Var_Set(IMPSRC, Var_Value(TARGET, gn), gn);
1305 } else if (Dir_MTime(gn) == 0) {
1307 * The node wasn't the target of an operator we have
1308 * no .DEFAULT rule to go on and the target doesn't
1309 * already exist. There's nothing more we can do for
1310 * this branch. If the -k flag wasn't given, we stop
1311 * in our tracks, otherwise we just don't update
1312 * this node's parents so they never get examined.
1314 static const char msg[] =
1315 "make: don't know how to make";
1317 if (gn->type & OP_OPTIONAL) {
1318 fprintf(stdout, "%s %s(ignored)\n",
1321 } else if (keepgoing) {
1322 fprintf(stdout, "%s %s(continuing)\n",
1328 if (strcmp(gn->name,"love") == 0)
1329 (*abortProc)("Not war.");
1332 (*abortProc)("%s %s. Stop",
1343 * Execute the shell for the given job. Called from JobStart and
1347 * A shell is executed, outputs is altered and the Job structure added
1351 JobExec(Job *job, char **argv)
1358 DEBUGF(JOB, ("Running %s\n", job->node->name));
1359 DEBUGF(JOB, ("\tCommand: "));
1360 for (i = 0; argv[i] != NULL; i++) {
1361 DEBUGF(JOB, ("%s ", argv[i]));
1363 DEBUGF(JOB, ("\n"));
1367 * Some jobs produce no output and it's disconcerting to have
1368 * no feedback of their running (since they produce no output, the
1369 * banner with their name in it never appears). This is an attempt to
1370 * provide that feedback, even if nothing follows it.
1372 if (lastNode != job->node && (job->flags & JOB_FIRST) &&
1373 !(job->flags & JOB_SILENT)) {
1374 MESSAGE(stdout, job->node);
1375 lastNode = job->node;
1378 ps.in = FILENO(job->cmdFILE);
1381 * Set up the child's output to be routed through the
1382 * pipe we've created for it.
1384 ps.out = job->outPipe;
1387 * We're capturing output in a file, so we duplicate
1388 * the descriptor to the temporary file into the
1391 ps.out = job->outFd;
1393 ps.err = STDERR_FILENO;
1395 ps.merge_errors = 1;
1403 * Fork. Warning since we are doing vfork() instead of fork(),
1404 * do not allocate memory in the child process!
1406 if ((ps.child_pid = vfork()) == -1) {
1407 Punt("Cannot fork");
1409 } else if (ps.child_pid == 0) {
1423 job->pid = ps.child_pid;
1425 if (usePipes && (job->flags & JOB_FIRST)) {
1427 * The first time a job is run for a node, we set the
1428 * current position in the buffer to the beginning and
1429 * mark another stream to watch in the outputs mask.
1432 struct kevent kev[2];
1436 #if defined(USE_KQUEUE)
1437 EV_SET(&kev[0], job->inPipe, EVFILT_READ, EV_ADD, 0, 0, job);
1438 EV_SET(&kev[1], job->pid, EVFILT_PROC,
1439 EV_ADD | EV_ONESHOT, NOTE_EXIT, 0, NULL);
1440 if (kevent(kqfd, kev, 2, NULL, 0, NULL) != 0) {
1442 * kevent() will fail if the job is already
1445 if (errno != EINTR && errno != EBADF && errno != ESRCH)
1446 Punt("kevent: %s", strerror(errno));
1449 FD_SET(job->inPipe, &outputs);
1450 #endif /* USE_KQUEUE */
1453 if (job->cmdFILE != NULL && job->cmdFILE != stdout) {
1454 fclose(job->cmdFILE);
1455 job->cmdFILE = NULL;
1459 * Now the job is actually running, add it to the table.
1462 TAILQ_INSERT_TAIL(&jobs, job, link);
1463 if (nJobs == maxJobs) {
1471 * Create the argv needed to execute the shell for a given job.
1474 JobMakeArgv(Job *job, char **argv)
1477 static char args[10]; /* For merged arguments */
1479 argv[0] = commandShell->name;
1482 if ((commandShell->exit && *commandShell->exit != '-') ||
1483 (commandShell->echo && *commandShell->echo != '-')) {
1485 * At least one of the flags doesn't have a minus before it, so
1486 * merge them together. Have to do this because the *(&(@*#*&#$#
1487 * Bourne shell thinks its second argument is a file to source.
1488 * Grrrr. Note the ten-character limitation on the combined
1491 sprintf(args, "-%s%s", (job->flags & JOB_IGNERR) ? "" :
1492 commandShell->exit ? commandShell->exit : "",
1493 (job->flags & JOB_SILENT) ? "" :
1494 commandShell->echo ? commandShell->echo : "");
1501 if (!(job->flags & JOB_IGNERR) && commandShell->exit) {
1502 argv[argc] = commandShell->exit;
1505 if (!(job->flags & JOB_SILENT) && commandShell->echo) {
1506 argv[argc] = commandShell->echo;
1515 * Restart a job that stopped for some reason. The job must be neither
1516 * on the jobs nor on the stoppedJobs list.
1519 * jobFull will be set if the job couldn't be run.
1522 JobRestart(Job *job)
1525 if (job->flags & JOB_RESTART) {
1527 * Set up the control arguments to the shell. This is based on
1528 * the flags set earlier for this job. If the JOB_IGNERR flag
1529 * is clear, the 'exit' flag of the commandShell is used to
1530 * cause it to exit upon receiving an error. If the JOB_SILENT
1531 * flag is clear, the 'echo' flag of the commandShell is used
1532 * to get it to start echoing as soon as it starts
1533 * processing commands.
1537 JobMakeArgv(job, argv);
1539 DEBUGF(JOB, ("Restarting %s...", job->node->name));
1540 if (nJobs >= maxJobs && !(job->flags & JOB_SPECIAL)) {
1542 * Not allowed to run -- put it back on the hold
1543 * queue and mark the table full
1545 DEBUGF(JOB, ("holding\n"));
1546 TAILQ_INSERT_HEAD(&stoppedJobs, job, link);
1548 DEBUGF(JOB, ("Job queue is full.\n"));
1552 * Job may be run locally.
1554 DEBUGF(JOB, ("running locally\n"));
1560 * The job has stopped and needs to be restarted.
1561 * Why it stopped, we don't know...
1563 DEBUGF(JOB, ("Resuming %s...", job->node->name));
1564 if ((nJobs < maxJobs || ((job->flags & JOB_SPECIAL) &&
1565 maxJobs == 0)) && nJobs != maxJobs) {
1567 * If we haven't reached the concurrency limit already
1568 * (or the job must be run and maxJobs is 0), it's ok
1574 error = (KILL(job->pid, SIGCONT) != 0);
1578 * Make sure the user knows we've continued
1579 * the beast and actually put the thing in the
1582 job->flags |= JOB_CONTINUING;
1584 W_SETTERMSIG(&status, SIGCONT);
1585 JobFinish(job, &status);
1587 job->flags &= ~(JOB_RESUME|JOB_CONTINUING);
1588 DEBUGF(JOB, ("done\n"));
1590 Error("couldn't resume %s: %s",
1591 job->node->name, strerror(errno));
1593 W_SETEXITSTATUS(&status, 1);
1594 JobFinish(job, &status);
1598 * Job cannot be restarted. Mark the table as full and
1599 * place the job back on the list of stopped jobs.
1601 DEBUGF(JOB, ("table full\n"));
1602 TAILQ_INSERT_HEAD(&stoppedJobs, job, link);
1604 DEBUGF(JOB, ("Job queue is full.\n"));
1611 * Start a target-creation process going for the target described
1612 * by the graph node gn.
1615 * JOB_ERROR if there was an error in the commands, JOB_FINISHED
1616 * if there isn't actually anything left to do for the job and
1617 * JOB_RUNNING if the job has been started.
1620 * A new Job node is created and added to the list of running
1621 * jobs. PMake is forked and a child shell created.
1624 JobStart(GNode *gn, int flags, Job *previous)
1626 Job *job; /* new job descriptor */
1627 char *argv[4]; /* Argument vector to shell */
1628 Boolean cmdsOK; /* true if the nodes commands were all right */
1629 Boolean noExec; /* Set true if we decide not to run the job */
1630 int tfd; /* File descriptor for temp file */
1632 char tfile[sizeof(TMPPAT)];
1635 JobPassSig(interrupted);
1638 if (previous != NULL) {
1639 previous->flags &= ~(JOB_FIRST | JOB_IGNERR | JOB_SILENT);
1642 job = emalloc(sizeof(Job));
1647 job->tailCmds = NULL;
1650 * Set the initial value of the flags for this job based on the global
1651 * ones and the node's attributes... Any flags supplied by the caller
1652 * are also added to the field.
1655 if (Targ_Ignore(gn)) {
1656 job->flags |= JOB_IGNERR;
1658 if (Targ_Silent(gn)) {
1659 job->flags |= JOB_SILENT;
1661 job->flags |= flags;
1664 * Check the commands now so any attributes from .DEFAULT have a chance
1665 * to migrate to the node.
1667 if (!compatMake && (job->flags & JOB_FIRST)) {
1668 cmdsOK = Job_CheckCommands(gn, Error);
1674 * If the -n flag wasn't given, we open up OUR (not the child's)
1675 * temporary file to stuff commands in it. The thing is rd/wr so we
1676 * don't need to reopen it to feed it to the shell. If the -n flag
1677 * *was* given, we just set the file to be stdout. Cute, huh?
1679 if ((gn->type & OP_MAKE) || (!noExecute && !touchFlag)) {
1681 * We're serious here, but if the commands were bogus, we're
1688 strcpy(tfile, TMPPAT);
1689 if ((tfd = mkstemp(tfile)) == -1)
1690 Punt("Cannot create temp file: %s", strerror(errno));
1691 job->cmdFILE = fdopen(tfd, "w+");
1693 if (job->cmdFILE == NULL) {
1695 Punt("Could not open %s", tfile);
1697 fcntl(FILENO(job->cmdFILE), F_SETFD, 1);
1699 * Send the commands to the command file, flush all its
1700 * buffers then rewind and remove the thing.
1705 * Used to be backwards; replace when start doing multiple
1706 * commands per shell.
1710 * Be compatible: If this is the first time for this
1711 * node, verify its commands are ok and open the
1712 * commands list for sequential access by later
1713 * invocations of JobStart. Once that is done, we take
1714 * the next command off the list and print it to the
1715 * command file. If the command was an ellipsis, note
1716 * that there's nothing more to execute.
1718 if (job->flags & JOB_FIRST)
1719 gn->compat_command = Lst_First(&gn->commands);
1721 gn->compat_command =
1722 Lst_Succ(gn->compat_command);
1724 if (gn->compat_command == NULL ||
1725 JobPrintCommand(Lst_Datum(gn->compat_command), job))
1728 if (noExec && !(job->flags & JOB_FIRST)) {
1730 * If we're not going to execute anything, the
1731 * job is done and we need to close down the
1732 * various file descriptors we've opened for
1733 * output, then call JobDoOutput to catch the
1734 * final characters or send the file to the
1735 * screen... Note that the i/o streams are only
1736 * open if this isn't the first job. Note also
1737 * that this could not be done in
1738 * Job_CatchChildren b/c it wasn't clear if
1739 * there were more commands to execute or not...
1745 * We can do all the commands at once. hooray for sanity
1748 LST_FOREACH(ln, &gn->commands) {
1749 if (JobPrintCommand(Lst_Datum(ln), job))
1754 * If we didn't print out any commands to the shell
1755 * script, there's not much point in executing the
1758 if (numCommands == 0) {
1763 } else if (noExecute) {
1765 * Not executing anything -- just print all the commands to
1766 * stdout in one fell swoop. This will still set up
1767 * job->tailCmds correctly.
1769 if (lastNode != gn) {
1770 MESSAGE(stdout, gn);
1773 job->cmdFILE = stdout;
1776 * Only print the commands if they're ok, but don't die if
1777 * they're not -- just let the user know they're bad and keep
1778 * going. It doesn't do any harm in this case and may do
1782 LST_FOREACH(ln, &gn->commands) {
1783 if (JobPrintCommand(Lst_Datum(ln), job))
1788 * Don't execute the shell, thank you.
1794 * Just touch the target and note that no shell should be
1795 * executed. Set cmdFILE to stdout to make life easier. Check
1796 * the commands, too, but don't die if they're no good -- it
1797 * does no harm to keep working up the graph.
1799 job->cmdFILE = stdout;
1800 Job_Touch(gn, job->flags & JOB_SILENT);
1805 * If we're not supposed to execute a shell, don't.
1809 * Unlink and close the command file if we opened one
1811 if (job->cmdFILE != stdout) {
1812 if (job->cmdFILE != NULL)
1813 fclose(job->cmdFILE);
1819 * We only want to work our way up the graph if we aren't here
1820 * because the commands for the job were no good.
1823 if (aborting == 0) {
1824 for (ln = job->tailCmds; ln != NULL;
1825 ln = LST_NEXT(ln)) {
1826 Lst_AtEnd(&postCommands->commands,
1827 Buf_Peel(Var_Subst(Lst_Datum(ln),
1828 job->node, FALSE)));
1830 job->node->made = MADE;
1831 Make_Update(job->node);
1834 return(JOB_FINISHED);
1840 fflush(job->cmdFILE);
1844 * Set up the control arguments to the shell. This is based on the flags
1845 * set earlier for this job.
1847 JobMakeArgv(job, argv);
1850 * If we're using pipes to catch output, create the pipe by which we'll
1851 * get the shell's output. If we're using files, print out that we're
1852 * starting a job and then set up its temporary-file name.
1854 if (!compatMake || (job->flags & JOB_FIRST)) {
1859 Punt("Cannot create pipe: %s", strerror(errno));
1860 job->inPipe = fd[0];
1861 job->outPipe = fd[1];
1862 fcntl(job->inPipe, F_SETFD, 1);
1863 fcntl(job->outPipe, F_SETFD, 1);
1865 fprintf(stdout, "Remaking `%s'\n", gn->name);
1867 strcpy(job->outFile, TMPPAT);
1868 if ((job->outFd = mkstemp(job->outFile)) == -1)
1869 Punt("cannot create temp file: %s",
1871 fcntl(job->outFd, F_SETFD, 1);
1875 if (nJobs >= maxJobs && !(job->flags & JOB_SPECIAL) && maxJobs != 0) {
1877 * We've hit the limit of concurrency, so put the job on hold
1878 * until some other job finishes. Note that the special jobs
1879 * (.BEGIN, .INTERRUPT and .END) may be run even when the
1880 * limit has been reached (e.g. when maxJobs == 0).
1884 DEBUGF(JOB, ("Can only run job locally.\n"));
1885 job->flags |= JOB_RESTART;
1886 TAILQ_INSERT_TAIL(&stoppedJobs, job, link);
1888 if (nJobs >= maxJobs) {
1890 * If we're running this job as a special case
1891 * (see above), at least say the table is full.
1894 DEBUGF(JOB, ("Local job queue is full.\n"));
1898 return (JOB_RUNNING);
1902 JobOutput(Job *job, char *cp, char *endp, int msg)
1906 if (commandShell->noPrint) {
1907 ecp = strstr(cp, commandShell->noPrint);
1908 while (ecp != NULL) {
1911 if (msg && job->node != lastNode) {
1912 MESSAGE(stdout, job->node);
1913 lastNode = job->node;
1916 * The only way there wouldn't be a newline
1917 * after this line is if it were the last in
1918 * the buffer. However, since the non-printable
1919 * comes after it, there must be a newline, so
1920 * we don't print one.
1922 fprintf(stdout, "%s", cp);
1925 cp = ecp + strlen(commandShell->noPrint);
1928 * Still more to print, look again after
1929 * skipping the whitespace following the
1930 * non-printable command....
1933 while (*cp == ' ' || *cp == '\t' ||
1937 ecp = strstr(cp, commandShell->noPrint);
1948 * This function is called at different times depending on
1949 * whether the user has specified that output is to be collected
1950 * via pipes or temporary files. In the former case, we are called
1951 * whenever there is something to read on the pipe. We collect more
1952 * output from the given job and store it in the job's outBuf. If
1953 * this makes up a line, we print it tagged by the job's identifier,
1955 * If output has been collected in a temporary file, we open the
1956 * file and read it line by line, transfering it to our own
1957 * output channel until the file is empty. At which point we
1958 * remove the temporary file.
1959 * In both cases, however, we keep our figurative eye out for the
1960 * 'noPrint' line for the shell from which the output came. If
1961 * we recognize a line, we don't print it. If the command is not
1962 * alone on the line (the character after it is not \0 or \n), we
1963 * do print whatever follows it.
1966 * curPos may be shifted as may the contents of outBuf.
1969 JobDoOutput(Job *job, Boolean finish)
1971 Boolean gotNL = FALSE; /* true if got a newline */
1972 Boolean fbuf; /* true if our buffer filled up */
1973 int nr; /* number of bytes read */
1974 int i; /* auxiliary index into outBuf */
1975 int max; /* limit for i (end of current data) */
1976 int nRead; /* (Temporary) number of bytes read */
1977 FILE *oFILE; /* Stream pointer to shell's output file */
1982 * Read as many bytes as will fit in the buffer.
1988 nRead = read(job->inPipe, &job->outBuf[job->curPos],
1989 JOB_BUFSIZE - job->curPos);
1991 * Check for interrupt here too, because the above read may
1992 * block when the child process is stopped. In this case the
1993 * interrupt will unblock it (we don't use SA_RESTART).
1996 JobPassSig(interrupted);
1999 DEBUGF(JOB, ("JobDoOutput(piperead)"));
2006 * If we hit the end-of-file (the job is dead), we must flush
2007 * its remaining output, so pretend we read a newline if
2008 * there's any output remaining in the buffer.
2009 * Also clear the 'finish' flag so we stop looping.
2011 if (nr == 0 && job->curPos != 0) {
2012 job->outBuf[job->curPos] = '\n';
2015 } else if (nr == 0) {
2020 * Look for the last newline in the bytes we just got. If there
2021 * is one, break out of the loop with 'i' as its index and
2024 max = job->curPos + nr;
2025 for (i = job->curPos + nr - 1; i >= job->curPos; i--) {
2026 if (job->outBuf[i] == '\n') {
2029 } else if (job->outBuf[i] == '\0') {
2033 job->outBuf[i] = ' ';
2039 if (job->curPos == JOB_BUFSIZE) {
2041 * If we've run out of buffer space, we have
2042 * no choice but to print the stuff. sigh.
2048 if (gotNL || fbuf) {
2050 * Need to send the output to the screen. Null terminate
2051 * it first, overwriting the newline character if there
2052 * was one. So long as the line isn't one we should
2053 * filter (according to the shell description), we print
2054 * the line, preceded by a target banner if this target
2055 * isn't the same as the one for which we last printed
2056 * something. The rest of the data in the buffer are
2057 * then shifted down to the start of the buffer and
2058 * curPos is set accordingly.
2060 job->outBuf[i] = '\0';
2061 if (i >= job->curPos) {
2064 cp = JobOutput(job, job->outBuf,
2065 &job->outBuf[i], FALSE);
2068 * There's still more in that buffer. This time,
2069 * though, we know there's no newline at the
2070 * end, so we add one of our own free will.
2073 if (job->node != lastNode) {
2074 MESSAGE(stdout, job->node);
2075 lastNode = job->node;
2077 fprintf(stdout, "%s%s", cp,
2083 /* shift the remaining characters down */
2084 memcpy(job->outBuf, &job->outBuf[i + 1],
2086 job->curPos = max - (i + 1);
2090 * We have written everything out, so we just
2091 * start over from the start of the buffer.
2092 * No copying. No nothing.
2099 * If the finish flag is true, we must loop until we hit
2100 * end-of-file on the pipe. This is guaranteed to happen
2101 * eventually since the other end of the pipe is now
2102 * closed (we closed it explicitly and the child has
2103 * exited). When we do get an EOF, finish will be set
2104 * FALSE and we'll fall through and out.
2111 * We've been called to retrieve the output of the job from the
2112 * temporary file where it's been squirreled away. This consists
2113 * of opening the file, reading the output line by line, being
2114 * sure not to print the noPrint line for the shell we used,
2115 * then close and remove the temporary file. Very simple.
2117 * Change to read in blocks and do FindSubString type things
2118 * as for pipes? That would allow for "@echo -n..."
2120 oFILE = fopen(job->outFile, "r");
2121 if (oFILE != NULL) {
2122 fprintf(stdout, "Results of making %s:\n",
2126 while (fgets(inLine, sizeof(inLine), oFILE) != NULL) {
2127 char *cp, *endp, *oendp;
2130 oendp = endp = inLine + strlen(inLine);
2131 if (endp[-1] == '\n') {
2134 cp = JobOutput(job, inLine, endp, FALSE);
2137 * There's still more in that buffer. This time,
2138 * though, we know there's no newline at the
2139 * end, so we add one of our own free will.
2141 fprintf(stdout, "%s", cp);
2143 if (endp != oendp) {
2144 fprintf(stdout, "\n");
2149 eunlink(job->outFile);
2156 * Handle the exit of a child. Called from Make_Make.
2159 * The job descriptor is removed from the list of children.
2162 * We do waits, blocking or not, according to the wisdom of our
2163 * caller, until there are no more children to report. For each
2164 * job, call JobFinish to finish things off. This will take care of
2165 * putting jobs on the stoppedJobs queue.
2168 Job_CatchChildren(Boolean block)
2170 pid_t pid; /* pid of dead child */
2171 Job *job; /* job descriptor for dead child */
2172 int status; /* Exit/termination status */
2175 * Don't even bother if we know there's no one around.
2182 pid = waitpid((pid_t)-1, &status,
2183 (block ? 0 : WNOHANG) | WUNTRACED);
2187 DEBUGF(JOB, ("Process %jd exited or stopped.\n",
2190 TAILQ_FOREACH(job, &jobs, link) {
2191 if (job->pid == pid)
2196 if (WIFSIGNALED(status) &&
2197 (WTERMSIG(status) == SIGCONT)) {
2198 TAILQ_FOREACH(job, &jobs, link) {
2199 if (job->pid == pid)
2203 Error("Resumed child (%jd) "
2204 "not in table", (intmax_t)pid);
2207 TAILQ_REMOVE(&stoppedJobs, job, link);
2209 Error("Child (%jd) not in table?",
2214 TAILQ_REMOVE(&jobs, job, link);
2216 if (fifoFd >= 0 && maxJobs > 1) {
2217 write(fifoFd, "+", 1);
2219 if (nJobs >= maxJobs)
2224 DEBUGF(JOB, ("Job queue is no longer full.\n"));
2229 JobFinish(job, &status);
2232 JobPassSig(interrupted);
2237 * Catch the output from our children, if we're using
2238 * pipes do so. Otherwise just block time until we get a
2239 * signal(most likely a SIGCHLD) since there's no point in
2240 * just spinning when there's nothing to do and the reaping
2241 * of a child can wait for a while.
2244 * Output is read from pipes if we're piping.
2248 Job_CatchOutput(int flag __unused)
2250 Job_CatchOutput(int flag)
2256 struct kevent kev[KEV_SIZE];
2259 struct timeval timeout;
2268 if ((nfds = kevent(kqfd, NULL, 0, kev, KEV_SIZE, NULL)) == -1) {
2270 Punt("kevent: %s", strerror(errno));
2272 JobPassSig(interrupted);
2274 for (i = 0; i < nfds; i++) {
2275 if (kev[i].flags & EV_ERROR) {
2276 warnc(kev[i].data, "kevent");
2279 switch (kev[i].filter) {
2281 JobDoOutput(kev[i].udata, FALSE);
2285 * Just wake up and let
2286 * Job_CatchChildren() collect the
2295 timeout.tv_sec = SEL_SEC;
2296 timeout.tv_usec = SEL_USEC;
2297 if (flag && jobFull && fifoFd >= 0)
2298 FD_SET(fifoFd, &readfds);
2300 nfds = select(FD_SETSIZE, &readfds, (fd_set *)NULL,
2301 (fd_set *)NULL, &timeout);
2304 JobPassSig(interrupted);
2307 if (fifoFd >= 0 && FD_ISSET(fifoFd, &readfds)) {
2311 job = TAILQ_FIRST(&jobs);
2312 while (nfds != 0 && job != NULL) {
2313 if (FD_ISSET(job->inPipe, &readfds)) {
2314 JobDoOutput(job, FALSE);
2317 job = TAILQ_NEXT(job, link);
2319 #endif /* !USE_KQUEUE */
2325 * Start the creation of a target. Basically a front-end for
2326 * JobStart used by the Make module.
2329 * Another job is started.
2335 JobStart(gn, 0, NULL);
2340 * Initialize the process module, given a maximum number of jobs.
2343 * lists and counters are initialized
2346 Job_Init(int maxproc)
2348 GNode *begin; /* node for commands to do at the very start */
2350 struct sigaction sa;
2353 env = getenv("MAKE_JOBS_FIFO");
2355 if (env == NULL && maxproc > 1) {
2357 * We did not find the environment variable so we are the
2358 * leader. Create the fifo, open it, write one char per
2359 * allowed job into the pipe.
2361 fifoFd = mkfifotemp(fifoName);
2366 fcntl(fifoFd, F_SETFL, O_NONBLOCK);
2368 setenv("MAKE_JOBS_FIFO", env, 1);
2369 while (maxproc-- > 0) {
2370 write(fifoFd, "+", 1);
2372 /* The master make does not get a magic token */
2377 } else if (env != NULL) {
2379 * We had the environment variable so we are a slave.
2380 * Open fifo and give ourselves a magic token which represents
2381 * the token our parent make has grabbed to start his make
2382 * process. Otherwise the sub-makes would gobble up tokens and
2383 * the proper number of tokens to specify to -j would depend
2384 * on the depth of the tree and the order of execution.
2386 fifoFd = open(env, O_RDWR, 0);
2388 fcntl(fifoFd, F_SETFL, O_NONBLOCK);
2405 if ((maxJobs == 1 && fifoFd < 0) || beVerbose == 0) {
2407 * If only one job can run at a time, there's no need for a
2408 * banner, no is there?
2416 * Catch the four signals that POSIX specifies if they aren't ignored.
2417 * JobCatchSignal will just set global variables and hope someone
2418 * else is going to handle the interrupt.
2420 sa.sa_handler = JobCatchSig;
2421 sigemptyset(&sa.sa_mask);
2424 if (signal(SIGINT, SIG_IGN) != SIG_IGN) {
2425 sigaction(SIGINT, &sa, NULL);
2427 if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {
2428 sigaction(SIGHUP, &sa, NULL);
2430 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN) {
2431 sigaction(SIGQUIT, &sa, NULL);
2433 if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
2434 sigaction(SIGTERM, &sa, NULL);
2437 * There are additional signals that need to be caught and passed if
2438 * either the export system wants to be told directly of signals or if
2439 * we're giving each job its own process group (since then it won't get
2440 * signals from the terminal driver as we own the terminal)
2442 #if defined(USE_PGRP)
2443 if (signal(SIGTSTP, SIG_IGN) != SIG_IGN) {
2444 sigaction(SIGTSTP, &sa, NULL);
2446 if (signal(SIGTTOU, SIG_IGN) != SIG_IGN) {
2447 sigaction(SIGTTOU, &sa, NULL);
2449 if (signal(SIGTTIN, SIG_IGN) != SIG_IGN) {
2450 sigaction(SIGTTIN, &sa, NULL);
2452 if (signal(SIGWINCH, SIG_IGN) != SIG_IGN) {
2453 sigaction(SIGWINCH, &sa, NULL);
2458 if ((kqfd = kqueue()) == -1) {
2459 Punt("kqueue: %s", strerror(errno));
2463 begin = Targ_FindNode(".BEGIN", TARG_NOCREATE);
2465 if (begin != NULL) {
2466 JobStart(begin, JOB_SPECIAL, (Job *)NULL);
2469 Job_CatchChildren(!usePipes);
2472 postCommands = Targ_FindNode(".END", TARG_CREATE);
2477 * See if the job table is full. It is considered full if it is OR
2478 * if we are in the process of aborting OR if we have
2479 * reached/exceeded our local quota. This prevents any more jobs
2483 * TRUE if the job table is full, FALSE otherwise
2493 if (fifoFd >= 0 && jobFull) {
2494 i = read(fifoFd, &c, 1);
2505 * See if the job table is empty. Because the local concurrency may
2506 * be set to 0, it is possible for the job table to become empty,
2507 * while the list of stoppedJobs remains non-empty. In such a case,
2508 * we want to restart as many jobs as we can.
2511 * TRUE if it is. FALSE if it ain't.
2517 if (!TAILQ_EMPTY(&stoppedJobs) && !aborting) {
2519 * The job table is obviously not full if it has no
2520 * jobs in it...Try and restart the stopped jobs.
2535 * Handle the receipt of an interrupt.
2538 * All children are killed. Another job will be started if the
2539 * .INTERRUPT target was given.
2542 JobInterrupt(int runINTERRUPT, int signo)
2544 Job *job; /* job descriptor in that element */
2545 GNode *interrupt; /* the node describing the .INTERRUPT target */
2547 aborting = ABORT_INTERRUPT;
2549 TAILQ_FOREACH(job, &jobs, link) {
2550 if (!Targ_Precious(job->node)) {
2551 char *file = (job->node->path == NULL ?
2552 job->node->name : job->node->path);
2554 if (!noExecute && eunlink(file) != -1) {
2555 Error("*** %s removed", file);
2559 DEBUGF(JOB, ("JobInterrupt passing signal to child "
2560 "%jd.\n", (intmax_t)job->pid));
2561 KILL(job->pid, signo);
2565 if (runINTERRUPT && !touchFlag) {
2567 * clear the interrupted flag because we would get an
2568 * infinite loop otherwise.
2572 interrupt = Targ_FindNode(".INTERRUPT", TARG_NOCREATE);
2573 if (interrupt != NULL) {
2574 ignoreErrors = FALSE;
2576 JobStart(interrupt, JOB_IGNDOTS, (Job *)NULL);
2579 Job_CatchChildren(!usePipes);
2587 * Do final processing such as the running of the commands
2588 * attached to the .END target.
2591 * Number of errors reported.
2597 if (postCommands != NULL && !Lst_IsEmpty(&postCommands->commands)) {
2599 Error("Errors reported so .END ignored");
2601 JobStart(postCommands, JOB_SPECIAL | JOB_IGNDOTS, NULL);
2605 Job_CatchChildren(!usePipes);
2620 * Waits for all running jobs to finish and returns. Sets 'aborting'
2621 * to ABORT_WAIT to prevent other jobs from starting.
2624 * Currently running jobs finish.
2630 aborting = ABORT_WAIT;
2631 while (nJobs != 0) {
2633 Job_CatchChildren(!usePipes);
2640 * Abort all currently running jobs without handling output or anything.
2641 * This function is to be called only in the event of a major
2642 * error. Most definitely NOT to be called from JobInterrupt.
2645 * All children are killed, not just the firstborn
2650 Job *job; /* the job descriptor in that element */
2653 aborting = ABORT_ERROR;
2656 TAILQ_FOREACH(job, &jobs, link) {
2658 * kill the child process with increasingly drastic
2659 * signals to make darn sure it's dead.
2661 KILL(job->pid, SIGINT);
2662 KILL(job->pid, SIGKILL);
2667 * Catch as many children as want to report in at first, then give up
2669 while (waitpid((pid_t)-1, &status, WNOHANG) > 0)
2675 * Tries to restart stopped jobs if there are slots available.
2676 * Note that this tries to restart them regardless of pending errors.
2677 * It's not good to leave stopped jobs lying around!
2680 * Resumes(and possibly migrates) jobs.
2683 JobRestartJobs(void)
2687 while (!jobFull && (job = TAILQ_FIRST(&stoppedJobs)) != NULL) {
2688 DEBUGF(JOB, ("Job queue is not full. "
2689 "Restarting a stopped job.\n"));
2690 TAILQ_REMOVE(&stoppedJobs, job, link);
2697 * Execute the command in cmd, and return the output of that command
2701 * A string containing the output of the command, or the empty string
2702 * If error is not NULL, it contains the reason for the command failure
2703 * Any output sent to stderr in the child process is passed to stderr,
2704 * and not captured in the string.
2707 * The string must be freed by the caller.
2710 Cmd_Exec(const char *cmd, const char **error)
2712 int fds[2]; /* Pipe streams */
2713 int status; /* command exit status */
2714 Buffer *buf; /* buffer to store the result */
2722 * Open a pipe for fetching its output
2724 if (pipe(fds) == -1) {
2725 *error = "Couldn't create pipe for \"%s\"";
2729 /* Set close-on-exec on read side of pipe. */
2730 fcntl(fds[0], F_SETFD, fcntl(fds[0], F_GETFD) | FD_CLOEXEC);
2732 ps.in = STDIN_FILENO;
2734 ps.err = STDERR_FILENO;
2736 ps.merge_errors = 0;
2740 /* Set up arguments for shell */
2741 ps.argv = emalloc(4 * sizeof(char *));
2742 ps.argv[0] = strdup(commandShell->name);
2743 ps.argv[1] = strdup("-c");
2744 ps.argv[2] = strdup(cmd);
2749 * Fork. Warning since we are doing vfork() instead of fork(),
2750 * do not allocate memory in the child process!
2752 if ((ps.child_pid = vfork()) == -1) {
2753 *error = "Couldn't exec \"%s\"";
2755 } else if (ps.child_pid == 0) {
2768 close(fds[1]); /* No need for the writing half of the pipe. */
2771 char result[BUFSIZ];
2773 rcnt = read(fds[0], result, sizeof(result));
2775 Buf_AddBytes(buf, (size_t)rcnt, (Byte *)result);
2776 } while (rcnt > 0 || (rcnt == -1 && errno == EINTR));
2779 *error = "Error reading shell's output for \"%s\"";
2782 * Close the input side of the pipe.
2786 status = ProcWait(&ps);
2788 *error = "\"%s\" returned non-zero status";
2790 Buf_StripNewlines(buf);
2797 * Interrupt handler - set flag and defer handling to the main code
2800 CompatCatchSig(int signo)
2803 interrupted = signo;
2808 * Interrupt the creation of the current target and remove it if
2809 * it ain't precious.
2815 * The target is removed and the process exits. If .INTERRUPT exists,
2816 * its commands are run first WITH INTERRUPTS IGNORED..
2819 CompatInterrupt(int signo)
2822 sigset_t nmask, omask;
2825 sigemptyset(&nmask);
2826 sigaddset(&nmask, SIGINT);
2827 sigaddset(&nmask, SIGTERM);
2828 sigaddset(&nmask, SIGHUP);
2829 sigaddset(&nmask, SIGQUIT);
2830 sigprocmask(SIG_SETMASK, &nmask, &omask);
2832 /* prevent recursion in evaluation of .INTERRUPT */
2835 if (curTarg != NULL && !Targ_Precious(curTarg)) {
2836 const char *file = Var_Value(TARGET, curTarg);
2838 if (!noExecute && eunlink(file) != -1) {
2839 printf("*** %s removed\n", file);
2844 * Run .INTERRUPT only if hit with interrupt signal
2846 if (signo == SIGINT) {
2847 gn = Targ_FindNode(".INTERRUPT", TARG_NOCREATE);
2849 LST_FOREACH(ln, &gn->commands) {
2850 if (Compat_RunCommand(Lst_Datum(ln), gn))
2856 sigprocmask(SIG_SETMASK, &omask, NULL);
2858 if (signo == SIGQUIT)
2860 signal(signo, SIG_DFL);
2861 kill(getpid(), signo);
2866 * Execute the next command for a target. If the command returns an
2867 * error, the node's made field is set to ERROR and creation stops.
2868 * The node from which the command came is also given.
2871 * 0 if the command succeeded, 1 if an error occurred.
2874 * The node's 'made' field may be set to ERROR.
2877 Compat_RunCommand(char *cmd, GNode *gn)
2880 char *cmdStart; /* Start of expanded command */
2881 Boolean silent; /* Don't print command */
2882 Boolean doit; /* Execute even in -n */
2883 Boolean errCheck; /* Check errors */
2884 int reason; /* Reason for child's death */
2885 int status; /* Description of child's death */
2886 LstNode *cmdNode; /* Node where current cmd is located */
2887 char **av; /* Argument vector for thing to exec */
2890 silent = gn->type & OP_SILENT;
2891 errCheck = !(gn->type & OP_IGNORE);
2894 cmdNode = Lst_Member(&gn->commands, cmd);
2895 cmdStart = Buf_Peel(Var_Subst(cmd, gn, FALSE));
2897 if (*cmdStart == '\0') {
2899 Error("%s expands to empty string", cmd);
2904 Lst_Replace(cmdNode, cmdStart);
2906 if ((gn->type & OP_SAVE_CMDS) && (gn != ENDNode)) {
2907 Lst_AtEnd(&ENDNode->commands, cmdStart);
2909 } else if (strcmp(cmdStart, "...") == 0) {
2910 gn->type |= OP_SAVE_CMDS;
2914 while (*cmd == '@' || *cmd == '-' || *cmd == '+') {
2918 silent = DEBUG(LOUD) ? FALSE : TRUE;
2932 while (isspace((unsigned char)*cmd))
2936 * Print the command before echoing if we're not supposed to be quiet
2937 * for this one. We also print the command if -n given, but not if '+'.
2939 if (!silent || (noExecute && !doit)) {
2940 printf("%s\n", cmd);
2945 * If we're not supposed to execute any commands, this is as far as
2948 if (!doit && noExecute) {
2952 if (strpbrk(cmd, "#=|^(){};&<>*?[]:$`\\\n")) {
2954 * We found a "meta" character and need to pass the command
2961 const char *sh_builtin[] = {
2962 "alias", "cd", "eval", "exec",
2963 "exit", "read", "set", "ulimit",
2964 "unalias", "umask", "unset", "wait",
2969 * Break the command into words to form an argument
2970 * vector we can execute.
2972 brk_string(&aa, cmd, TRUE);
2975 for (p = sh_builtin; *p != 0; p++) {
2976 if (strcmp(av[0], *p) == 0) {
2978 * This command must be passed by the shell
2979 * for other reasons.. or.. possibly not at
2988 ps.in = STDIN_FILENO;
2989 ps.out = STDOUT_FILENO;
2990 ps.err = STDERR_FILENO;
2992 ps.merge_errors = 0;
2998 * We give the shell the -e flag as well as -c if it's
2999 * supposed to exit when it hits an error.
3001 ps.argv = emalloc(4 * sizeof(char *));
3002 ps.argv[0] = strdup(commandShell->path);
3003 ps.argv[1] = strdup(errCheck ? "-ec" : "-c");
3004 ps.argv[2] = strdup(cmd);
3011 ps.errCheck = errCheck;
3014 * Fork and execute the single command. If the fork fails, we abort.
3015 * Warning since we are doing vfork() instead of fork(),
3016 * do not allocate memory in the child process!
3018 if ((ps.child_pid = vfork()) == -1) {
3019 Fatal("Could not fork");
3021 } else if (ps.child_pid == 0) {
3039 * we need to print out the command associated with this
3040 * Gnode in Targ_PrintCmd from Targ_PrintGraph when debugging
3041 * at level g2, in main(), Fatal() and DieHorribly(),
3042 * therefore do not free it when debugging.
3044 if (!DEBUG(GRAPH2)) {
3049 * The child is off and running. Now all we can do is wait...
3051 reason = ProcWait(&ps);
3054 CompatInterrupt(interrupted);
3057 * Decode and report the reason child exited, then
3058 * indicate how we handled it.
3060 if (WIFEXITED(reason)) {
3061 status = WEXITSTATUS(reason);
3065 printf("*** Error code %d", status);
3067 } else if (WIFSTOPPED(reason)) {
3068 status = WSTOPSIG(reason);
3070 status = WTERMSIG(reason);
3071 printf("*** Signal %d", status);
3082 printf(" (continuing)\n");
3087 * Continue executing
3088 * commands for this target.
3089 * If we return 0, this will
3092 printf(" (ignored)\n");
3100 * Make a target, given the parent, to abort if necessary.
3103 * If an error is detected and not being ignored, the process exits.
3106 CompatMake(GNode *gn, GNode *pgn)
3110 if (gn->type & OP_USE) {
3111 Make_HandleUse(gn, pgn);
3113 } else if (gn->made == UNMADE) {
3115 * First mark ourselves to be made, then apply whatever
3116 * transformations the suffix module thinks are necessary.
3117 * Once that's done, we can descend and make all our children.
3118 * If any of them has an error but the -k flag was given, our
3119 * 'make' field will be set FALSE again. This is our signal to
3120 * not attempt to do anything but abort our parent as well.
3123 gn->made = BEINGMADE;
3125 LST_FOREACH(ln, &gn->children)
3126 CompatMake(Lst_Datum(ln), gn);
3133 if (Lst_Member(&gn->iParents, pgn) != NULL) {
3134 Var_Set(IMPSRC, Var_Value(TARGET, gn), pgn);
3138 * All the children were made ok. Now cmtime contains the
3139 * modification time of the newest child, we need to find out
3140 * if we exist and when we were modified last. The criteria for
3141 * datedness are defined by the Make_OODate function.
3143 DEBUGF(MAKE, ("Examining %s...", gn->name));
3144 if (!Make_OODate(gn)) {
3145 gn->made = UPTODATE;
3146 DEBUGF(MAKE, ("up-to-date.\n"));
3149 DEBUGF(MAKE, ("out-of-date.\n"));
3153 * If the user is just seeing if something is out-of-date,
3154 * exit now to tell him/her "yes".
3161 * We need to be re-made. We also have to make sure we've got
3162 * a $? variable. To be nice, we also define the $> variable
3163 * using Make_DoAllVar().
3168 * Alter our type to tell if errors should be ignored or things
3169 * should not be printed so Compat_RunCommand knows what to do.
3171 if (Targ_Ignore(gn)) {
3172 gn->type |= OP_IGNORE;
3174 if (Targ_Silent(gn)) {
3175 gn->type |= OP_SILENT;
3178 if (Job_CheckCommands(gn, Fatal)) {
3180 * Our commands are ok, but we still have to worry
3181 * about the -t flag...
3185 LST_FOREACH(ln, &gn->commands) {
3186 if (Compat_RunCommand(Lst_Datum(ln),
3192 Job_Touch(gn, gn->type & OP_SILENT);
3198 if (gn->made != ERROR) {
3200 * If the node was made successfully, mark it so, update
3201 * its modification time and timestamp all its parents.
3202 * Note that for .ZEROTIME targets, the timestamping
3203 * isn't done. This is to keep its state from affecting
3204 * that of its parent.
3209 * We can't re-stat the thing, but we can at least take
3210 * care of rules where a target depends on a source that
3211 * actually creates the target, but only if it has
3219 * mv y.tab.o parse.o
3220 * cmp -s y.tab.h parse.h || mv y.tab.h parse.h
3222 * In this case, if the definitions produced by yacc
3223 * haven't changed from before, parse.h won't have been
3224 * updated and gn->mtime will reflect the current
3225 * modification time for parse.h. This is something of a
3226 * kludge, I admit, but it's a useful one..
3228 * XXX: People like to use a rule like
3232 * To force things that depend on FRC to be made, so we
3233 * have to check for gn->children being empty as well...
3235 if (!Lst_IsEmpty(&gn->commands) ||
3236 Lst_IsEmpty(&gn->children)) {
3241 * This is what Make does and it's actually a good
3242 * thing, as it allows rules like
3244 * cmp -s y.tab.h parse.h || cp y.tab.h parse.h
3246 * to function as intended. Unfortunately, thanks to
3247 * the stateless nature of NFS (and the speed of this
3248 * program), there are times when the modification time
3249 * of a file created on a remote machine will not be
3250 * modified before the stat() implied by the Dir_MTime
3251 * occurs, thus leading us to believe that the file
3252 * is unchanged, wreaking havoc with files that depend
3255 * I have decided it is better to make too much than to
3256 * make too little, so this stuff is commented out
3257 * unless you're sure it's ok.
3260 if (noExecute || Dir_MTime(gn) == 0) {
3263 if (gn->cmtime > gn->mtime)
3264 gn->mtime = gn->cmtime;
3265 DEBUGF(MAKE, ("update time: %s\n",
3266 Targ_FmtTime(gn->mtime)));
3268 if (!(gn->type & OP_EXEC)) {
3269 pgn->childMade = TRUE;
3270 Make_TimeStamp(pgn, gn);
3273 } else if (keepgoing) {
3277 printf("\n\nStop in %s.\n", Var_Value(".CURDIR", gn));
3280 } else if (gn->made == ERROR) {
3282 * Already had an error when making this beastie. Tell the
3287 if (Lst_Member(&gn->iParents, pgn) != NULL) {
3288 Var_Set(IMPSRC, Var_Value(TARGET, gn), pgn);
3292 Error("Graph cycles through %s\n", gn->name);
3297 if ((gn->type & OP_EXEC) == 0) {
3298 pgn->childMade = TRUE;
3299 Make_TimeStamp(pgn, gn);
3303 if ((gn->type & OP_EXEC) == 0) {
3304 Make_TimeStamp(pgn, gn);
3317 * Start making again, given a list of target nodes.
3326 Compat_Run(Lst *targs)
3328 GNode *gn = NULL; /* Current root target */
3329 int error_cnt; /* Number of targets not remade due to errors */
3332 if (signal(SIGINT, SIG_IGN) != SIG_IGN) {
3333 signal(SIGINT, CompatCatchSig);
3335 if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
3336 signal(SIGTERM, CompatCatchSig);
3338 if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {
3339 signal(SIGHUP, CompatCatchSig);
3341 if (signal(SIGQUIT, SIG_IGN) != SIG_IGN) {
3342 signal(SIGQUIT, CompatCatchSig);
3345 ENDNode = Targ_FindNode(".END", TARG_CREATE);
3347 * If the user has defined a .BEGIN target, execute the commands
3351 gn = Targ_FindNode(".BEGIN", TARG_NOCREATE);
3353 LST_FOREACH(ln, &gn->commands) {
3354 if (Compat_RunCommand(Lst_Datum(ln), gn))
3357 if (gn->made == ERROR) {
3358 printf("\n\nStop.\n");
3365 * For each entry in the list of targets to create, call CompatMake on
3366 * it to create the thing. CompatMake will leave the 'made' field of gn
3367 * in one of several states:
3368 * UPTODATE gn was already up-to-date
3369 * MADE gn was recreated successfully
3370 * ERROR An error occurred while gn was being created
3371 * ABORTED gn was not remade because one of its inferiors
3372 * could not be made due to errors.
3375 while (!Lst_IsEmpty(targs)) {
3376 gn = Lst_DeQueue(targs);
3379 if (gn->made == UPTODATE) {
3380 printf("`%s' is up to date.\n", gn->name);
3381 } else if (gn->made == ABORTED) {
3382 printf("`%s' not remade because of errors.\n",
3389 * If the user has defined a .END target, run its commands.
3391 if (error_cnt == 0) {
3392 LST_FOREACH(ln, &ENDNode->commands) {
3393 if (Compat_RunCommand(Lst_Datum(ln), gn))