1 /* $NetBSD: job.c,v 1.180 2015/04/16 13:31:03 joerg Exp $ */
4 * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
7 * This code is derived from software contributed to Berkeley by
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * Copyright (c) 1988, 1989 by Adam de Boor
37 * Copyright (c) 1989 by Berkeley Softworks
38 * All rights reserved.
40 * This code is derived from software contributed to Berkeley by
43 * Redistribution and use in source and binary forms, with or without
44 * modification, are permitted provided that the following conditions
46 * 1. Redistributions of source code must retain the above copyright
47 * notice, this list of conditions and the following disclaimer.
48 * 2. Redistributions in binary form must reproduce the above copyright
49 * notice, this list of conditions and the following disclaimer in the
50 * documentation and/or other materials provided with the distribution.
51 * 3. All advertising materials mentioning features or use of this software
52 * must display the following acknowledgement:
53 * This product includes software developed by the University of
54 * California, Berkeley and its contributors.
55 * 4. Neither the name of the University nor the names of its contributors
56 * may be used to endorse or promote products derived from this software
57 * without specific prior written permission.
59 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
60 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
61 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
62 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
63 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
64 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
65 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
66 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
67 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
68 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
73 static char rcsid
[] = "$NetBSD: job.c,v 1.180 2015/04/16 13:31:03 joerg Exp $";
75 #include <sys/cdefs.h>
78 static char sccsid
[] = "@(#)job.c 8.2 (Berkeley) 3/19/94";
80 __RCSID("$NetBSD: job.c,v 1.180 2015/04/16 13:31:03 joerg Exp $");
87 * handle the creation etc. of our child processes.
90 * Job_Make Start the creation of the given target.
92 * Job_CatchChildren Check for and handle the termination of any
93 * children. This must be called reasonably
94 * frequently to keep the whole make going at
95 * a decent clip, since job table entries aren't
96 * removed until their process is caught this way.
98 * Job_CatchOutput Print any output our children have produced.
99 * Should also be called fairly frequently to
100 * keep the user informed of what's going on.
101 * If no output is waiting, it will block for
102 * a time given by the SEL_* constants, below,
103 * or until output is ready.
105 * Job_Init Called to intialize this module. in addition,
106 * any commands attached to the .BEGIN target
107 * are executed before this function returns.
108 * Hence, the makefile must have been parsed
109 * before this function is called.
111 * Job_End Cleanup any memory used.
113 * Job_ParseShell Given the line following a .SHELL target, parse
114 * the line as a shell specification. Returns
115 * FAILURE if the spec was incorrect.
117 * Job_Finish Perform any final processing which needs doing.
118 * This includes the execution of any commands
119 * which have been/were attached to the .END
120 * target. It should only be called when the
121 * job table is empty.
123 * Job_AbortAll Abort all currently running jobs. It doesn't
124 * handle output or do anything for the jobs,
125 * just kills them. It should only be called in
126 * an emergency, as it were.
128 * Job_CheckCommands Verify that the commands for a target are
129 * ok. Provide them if necessary and possible.
131 * Job_Touch Update a target without really updating it.
133 * Job_Wait Wait for all currently-running jobs to finish.
136 #include <sys/types.h>
137 #include <sys/stat.h>
138 #include <sys/file.h>
139 #include <sys/time.h>
140 #include <sys/wait.h>
157 #include "pathnames.h"
159 # define STATIC static
162 * error handling variables
164 static int errors
= 0; /* number of errors reported */
165 static int aborting
= 0; /* why is the make aborting? */
166 #define ABORT_ERROR 1 /* Because of an error */
167 #define ABORT_INTERRUPT 2 /* Because it was interrupted */
168 #define ABORT_WAIT 3 /* Waiting for jobs to finish */
169 #define JOB_TOKENS "+EI+" /* Token to requeue for each abort state */
172 * this tracks the number of tokens currently "out" to build jobs.
174 int jobTokensRunning
= 0;
175 int not_parallel
= 0; /* set if .NOT_PARALLEL */
178 * XXX: Avoid SunOS bug... FILENO() is fp->_file, and file
179 * is a char! So when we go above 127 we turn negative!
181 #define FILENO(a) ((unsigned) fileno(a))
184 * post-make command processing. The node postCommands is really just the
185 * .END target but we keep it around to avoid having to search for it
188 static GNode
*postCommands
= NULL
;
189 /* node containing commands to execute when
190 * everything else is done */
191 static int numCommands
; /* The number of commands actually printed
192 * for a target. Should this number be
193 * 0, no shell will be executed. */
196 * Return values from JobStart.
198 #define JOB_RUNNING 0 /* Job is running */
199 #define JOB_ERROR 1 /* Error in starting the job */
200 #define JOB_FINISHED 2 /* The job is already finished */
203 * Descriptions for various shells.
205 * The build environment may set DEFSHELL_INDEX to one of
206 * DEFSHELL_INDEX_SH, DEFSHELL_INDEX_KSH, or DEFSHELL_INDEX_CSH, to
207 * select one of the prefedined shells as the default shell.
209 * Alternatively, the build environment may set DEFSHELL_CUSTOM to the
210 * name or the full path of a sh-compatible shell, which will be used as
213 * ".SHELL" lines in Makefiles can choose the default shell from the
214 # set defined here, or add additional shells.
217 #ifdef DEFSHELL_CUSTOM
218 #define DEFSHELL_INDEX_CUSTOM 0
219 #define DEFSHELL_INDEX_SH 1
220 #define DEFSHELL_INDEX_KSH 2
221 #define DEFSHELL_INDEX_CSH 3
222 #else /* !DEFSHELL_CUSTOM */
223 #define DEFSHELL_INDEX_SH 0
224 #define DEFSHELL_INDEX_KSH 1
225 #define DEFSHELL_INDEX_CSH 2
226 #endif /* !DEFSHELL_CUSTOM */
228 #ifndef DEFSHELL_INDEX
229 #define DEFSHELL_INDEX 0 /* DEFSHELL_INDEX_CUSTOM or DEFSHELL_INDEX_SH */
230 #endif /* !DEFSHELL_INDEX */
232 static Shell shells
[] = {
233 #ifdef DEFSHELL_CUSTOM
235 * An sh-compatible shell with a non-standard name.
237 * Keep this in sync with the "sh" description below, but avoid
238 * non-portable features that might not be supplied by all
239 * sh-compatible shells.
243 FALSE
, "", "", "", 0,
244 FALSE
, "echo \"%s\"\n", "%s\n", "{ %s \n} || exit $?\n", "'\n'", '#',
248 #endif /* DEFSHELL_CUSTOM */
250 * SH description. Echo control is also possible and, under
251 * sun UNIX anyway, one can even control error checking.
255 FALSE
, "", "", "", 0,
256 FALSE
, "echo \"%s\"\n", "%s\n", "{ %s \n} || exit $?\n", "'\n'", '#',
257 #if defined(MAKE_NATIVE) && defined(__NetBSD__)
269 TRUE
, "set +v", "set -v", "set +v", 6,
270 FALSE
, "echo \"%s\"\n", "%s\n", "{ %s \n} || exit $?\n", "'\n'", '#',
275 * CSH description. The csh can do echo control by playing
276 * with the setting of the 'echo' shell variable. Sadly,
277 * however, it is unable to do error control nicely.
281 TRUE
, "unset verbose", "set verbose", "unset verbose", 10,
282 FALSE
, "echo \"%s\"\n", "csh -c \"%s || exit 0\"\n", "", "'\\\n'", '#',
290 FALSE
, NULL
, NULL
, NULL
, 0,
291 FALSE
, NULL
, NULL
, NULL
, NULL
, 0,
295 static Shell
*commandShell
= &shells
[DEFSHELL_INDEX
]; /* this is the shell to
297 * commands in the Makefile.
299 * Job_ParseShell function */
300 const char *shellPath
= NULL
, /* full pathname of
301 * executable image */
302 *shellName
= NULL
; /* last component of shell */
303 char *shellErrFlag
= NULL
;
304 static const char *shellArgv
= NULL
; /* Custom shell args */
307 STATIC Job
*job_table
; /* The structures that describe them */
308 STATIC Job
*job_table_end
; /* job_table + maxJobs */
309 static int wantToken
; /* we want a token */
310 static int lurking_children
= 0;
311 static int make_suspended
= 0; /* non-zero if we've seen a SIGTSTP (etc) */
314 * Set of descriptors of pipes connected to
315 * the output channels of children
317 static struct pollfd
*fds
= NULL
;
318 static Job
**jobfds
= NULL
;
320 static void watchfd(Job
*);
321 static void clearfd(Job
*);
322 static int readyfd(Job
*);
324 STATIC GNode
*lastNode
; /* The node for which output was most recently
326 static char *targPrefix
= NULL
; /* What we print at the start of TARG_FMT */
327 static Job tokenWaitJob
; /* token wait pseudo-job */
329 static Job childExitJob
; /* child exit pseudo-job */
330 #define CHILD_EXIT "."
331 #define DO_JOB_RESUME "R"
333 #define TARG_FMT "%s %s ---\n" /* Default format */
334 #define MESSAGE(fp, gn) \
335 if (maxJobs != 1 && targPrefix && *targPrefix) \
336 (void)fprintf(fp, TARG_FMT, targPrefix, gn->name)
338 static sigset_t caught_signals
; /* Set of signals we handle */
340 #define KILLPG(pid, sig) kill(-(pid), (sig))
342 #define KILLPG(pid, sig) killpg((pid), (sig))
345 static void JobChildSig(int);
346 static void JobContinueSig(int);
347 static Job
*JobFindPid(int, int, Boolean
);
348 static int JobPrintCommand(void *, void *);
349 static int JobSaveCommand(void *, void *);
350 static void JobClose(Job
*);
351 static void JobExec(Job
*, char **);
352 static void JobMakeArgv(Job
*, char **);
353 static int JobStart(GNode
*, int);
354 static char *JobOutput(Job
*, char *, char *, int);
355 static void JobDoOutput(Job
*, Boolean
);
356 static Shell
*JobMatchShell(const char *);
357 static void JobInterrupt(int, int) MAKE_ATTR_DEAD
;
358 static void JobRestartJobs(void);
359 static void JobTokenAdd(void);
360 static void JobSigLock(sigset_t
*);
361 static void JobSigUnlock(sigset_t
*);
362 static void JobSigReset(void);
364 const char *malloc_options
="A";
367 job_table_dump(const char *where
)
371 fprintf(debug_file
, "job table @ %s\n", where
);
372 for (job
= job_table
; job
< job_table_end
; job
++) {
373 fprintf(debug_file
, "job %d, status %d, flags %d, pid %d\n",
374 (int)(job
- job_table
), job
->job_state
, job
->flags
, job
->pid
);
379 * JobSigLock/JobSigUnlock
381 * Signal lock routines to get exclusive access. Currently used to
382 * protect `jobs' and `stoppedJobs' list manipulations.
384 static void JobSigLock(sigset_t
*omaskp
)
386 if (sigprocmask(SIG_BLOCK
, &caught_signals
, omaskp
) != 0) {
387 Punt("JobSigLock: sigprocmask: %s", strerror(errno
));
392 static void JobSigUnlock(sigset_t
*omaskp
)
394 (void)sigprocmask(SIG_SETMASK
, omaskp
, NULL
);
398 JobCreatePipe(Job
*job
, int minfd
)
402 if (pipe(job
->jobPipe
) == -1)
403 Punt("Cannot create pipe: %s", strerror(errno
));
405 for (i
= 0; i
< 2; i
++) {
406 /* Avoid using low numbered fds */
407 fd
= fcntl(job
->jobPipe
[i
], F_DUPFD
, minfd
);
409 close(job
->jobPipe
[i
]);
410 job
->jobPipe
[i
] = fd
;
414 /* Set close-on-exec flag for both */
415 (void)fcntl(job
->jobPipe
[0], F_SETFD
, 1);
416 (void)fcntl(job
->jobPipe
[1], F_SETFD
, 1);
419 * We mark the input side of the pipe non-blocking; we poll(2) the
420 * pipe when we're waiting for a job token, but we might lose the
421 * race for the token when a new one becomes available, so the read
422 * from the pipe should not block.
424 fcntl(job
->jobPipe
[0], F_SETFL
,
425 fcntl(job
->jobPipe
[0], F_GETFL
, 0) | O_NONBLOCK
);
429 *-----------------------------------------------------------------------
431 * Pass a signal to a job
434 * signop Signal to send it
437 * None, except the job may bite it.
439 *-----------------------------------------------------------------------
442 JobCondPassSig(int signo
)
447 (void)fprintf(debug_file
, "JobCondPassSig(%d) called.\n", signo
);
450 for (job
= job_table
; job
< job_table_end
; job
++) {
451 if (job
->job_state
!= JOB_ST_RUNNING
)
454 (void)fprintf(debug_file
,
455 "JobCondPassSig passing signal %d to child %d.\n",
458 KILLPG(job
->pid
, signo
);
463 *-----------------------------------------------------------------------
468 * signo The signal number we've received
474 * Sends a token on the child exit pipe to wake us up from
477 *-----------------------------------------------------------------------
480 JobChildSig(int signo MAKE_ATTR_UNUSED
)
482 while (write(childExitJob
.outPipe
, CHILD_EXIT
, 1) == -1 && errno
== EAGAIN
)
488 *-----------------------------------------------------------------------
490 * Resume all stopped jobs.
493 * signo The signal number we've received
499 * Jobs start running again.
501 *-----------------------------------------------------------------------
504 JobContinueSig(int signo MAKE_ATTR_UNUSED
)
507 * Defer sending to SIGCONT to our stopped children until we return
508 * from the signal handler.
510 while (write(childExitJob
.outPipe
, DO_JOB_RESUME
, 1) == -1 &&
516 *-----------------------------------------------------------------------
518 * Pass a signal on to all jobs, then resend to ourselves.
521 * signo The signal number we've received
527 * We die by the same signal.
529 *-----------------------------------------------------------------------
531 MAKE_ATTR_DEAD
static void
532 JobPassSig_int(int signo
)
534 /* Run .INTERRUPT target then exit */
535 JobInterrupt(TRUE
, signo
);
538 MAKE_ATTR_DEAD
static void
539 JobPassSig_term(int signo
)
541 /* Dont run .INTERRUPT target then exit */
542 JobInterrupt(FALSE
, signo
);
546 JobPassSig_suspend(int signo
)
548 sigset_t nmask
, omask
;
549 struct sigaction act
;
551 /* Suppress job started/continued messages */
554 /* Pass the signal onto every job */
555 JobCondPassSig(signo
);
558 * Send ourselves the signal now we've given the message to everyone else.
559 * Note we block everything else possible while we're getting the signal.
560 * This ensures that all our jobs get continued when we wake up before
561 * we take any other signal.
564 sigdelset(&nmask
, signo
);
565 (void)sigprocmask(SIG_SETMASK
, &nmask
, &omask
);
567 act
.sa_handler
= SIG_DFL
;
568 sigemptyset(&act
.sa_mask
);
570 (void)sigaction(signo
, &act
, NULL
);
573 (void)fprintf(debug_file
,
574 "JobPassSig passing signal %d to self.\n", signo
);
577 (void)kill(getpid(), signo
);
580 * We've been continued.
582 * A whole host of signals continue to happen!
583 * SIGCHLD for any processes that actually suspended themselves.
584 * SIGCHLD for any processes that exited while we were alseep.
585 * The SIGCONT that actually caused us to wakeup.
587 * Since we defer passing the SIGCONT on to our children until
588 * the main processing loop, we can be sure that all the SIGCHLD
589 * events will have happened by then - and that the waitpid() will
590 * collect the child 'suspended' events.
591 * For correct sequencing we just need to ensure we process the
592 * waitpid() before passign on the SIGCONT.
594 * In any case nothing else is needed here.
597 /* Restore handler and signal mask */
598 act
.sa_handler
= JobPassSig_suspend
;
599 (void)sigaction(signo
, &act
, NULL
);
600 (void)sigprocmask(SIG_SETMASK
, &omask
, NULL
);
604 *-----------------------------------------------------------------------
606 * Compare the pid of the job with the given pid and return 0 if they
607 * are equal. This function is called from Job_CatchChildren
608 * to find the job descriptor of the finished job.
612 * pid process id desired
615 * Job with matching pid
619 *-----------------------------------------------------------------------
622 JobFindPid(int pid
, int status
, Boolean isJobs
)
626 for (job
= job_table
; job
< job_table_end
; job
++) {
627 if ((job
->job_state
== status
) && job
->pid
== pid
)
630 if (DEBUG(JOB
) && isJobs
)
631 job_table_dump("no pid");
636 *-----------------------------------------------------------------------
638 * Put out another command for the given job. If the command starts
639 * with an @ or a - we process it specially. In the former case,
640 * so long as the -s and -n flags weren't given to make, we stick
641 * a shell-specific echoOff command in the script. In the latter,
642 * we ignore errors for the entire job, unless the shell has error
644 * If the command is just "..." we take all future commands for this
645 * job to be commands to be executed once the entire graph has been
646 * made and return non-zero to signal that the end of the commands
647 * was reached. These commands are later attached to the postCommands
648 * node and executed by Job_End when all things are done.
649 * This function is called from JobStart via Lst_ForEach.
652 * cmdp command string to print
653 * jobp job for which to print it
656 * Always 0, unless the command was "..."
659 * If the command begins with a '-' and the shell has no error control,
660 * the JOB_IGNERR flag is set in the job descriptor.
661 * If the command is "..." and we're not ignoring such things,
662 * tailCmds is set to the successor node of the cmd.
663 * numCommands is incremented if the command is actually printed.
664 *-----------------------------------------------------------------------
667 JobPrintCommand(void *cmdp
, void *jobp
)
669 Boolean noSpecials
; /* true if we shouldn't worry about
670 * inserting special commands into
671 * the input stream. */
672 Boolean shutUp
= FALSE
; /* true if we put a no echo command
673 * into the command file */
674 Boolean errOff
= FALSE
; /* true if we turned error checking
675 * off before printing the command
676 * and need to turn it back on */
677 const char *cmdTemplate
; /* Template to use when printing the
679 char *cmdStart
; /* Start of expanded command */
680 char *escCmd
= NULL
; /* Command with quotes/backticks escaped */
681 char *cmd
= (char *)cmdp
;
682 Job
*job
= (Job
*)jobp
;
685 noSpecials
= NoExecute(job
->node
);
687 if (strcmp(cmd
, "...") == 0) {
688 job
->node
->type
|= OP_SAVE_CMDS
;
689 if ((job
->flags
& JOB_IGNDOTS
) == 0) {
690 job
->tailCmds
= Lst_Succ(Lst_Member(job
->node
->commands
,
697 #define DBPRINTF(fmt, arg) if (DEBUG(JOB)) { \
698 (void)fprintf(debug_file, fmt, arg); \
700 (void)fprintf(job->cmdFILE, fmt, arg); \
701 (void)fflush(job->cmdFILE);
705 cmdStart
= cmd
= Var_Subst(NULL
, cmd
, job
->node
, FALSE
);
707 cmdTemplate
= "%s\n";
710 * Check for leading @' and -'s to control echoing and error checking.
712 while (*cmd
== '@' || *cmd
== '-' || (*cmd
== '+')) {
715 shutUp
= DEBUG(LOUD
) ? FALSE
: TRUE
;
723 * We're not actually executing anything...
724 * but this one needs to be - use compat mode just for it.
726 CompatRunCommand(cmdp
, job
->node
);
734 while (isspace((unsigned char) *cmd
))
738 * If the shell doesn't have error control the alternate echo'ing will
739 * be done (to avoid showing additional error checking code)
740 * and this will need the characters '$ ` \ "' escaped
743 if (!commandShell
->hasErrCtl
) {
744 /* Worst that could happen is every char needs escaping. */
745 escCmd
= bmake_malloc((strlen(cmd
) * 2) + 1);
746 for (i
= 0, j
= 0; cmd
[i
] != '\0'; i
++, j
++) {
747 if (cmd
[i
] == '$' || cmd
[i
] == '`' || cmd
[i
] == '\\' ||
756 if (!(job
->flags
& JOB_SILENT
) && !noSpecials
&&
757 commandShell
->hasEchoCtl
) {
758 DBPRINTF("%s\n", commandShell
->echoOff
);
760 if (commandShell
->hasErrCtl
)
767 if (commandShell
->hasErrCtl
) {
769 * we don't want the error-control commands showing
770 * up either, so we turn off echoing while executing
771 * them. We could put another field in the shell
772 * structure to tell JobDoOutput to look for this
773 * string too, but why make it any more complex than
776 if (!(job
->flags
& JOB_SILENT
) && !shutUp
&&
777 commandShell
->hasEchoCtl
) {
778 DBPRINTF("%s\n", commandShell
->echoOff
);
779 DBPRINTF("%s\n", commandShell
->ignErr
);
780 DBPRINTF("%s\n", commandShell
->echoOn
);
782 DBPRINTF("%s\n", commandShell
->ignErr
);
784 } else if (commandShell
->ignErr
&&
785 (*commandShell
->ignErr
!= '\0'))
788 * The shell has no error control, so we need to be
789 * weird to get it to ignore any errors from the command.
790 * If echoing is turned on, we turn it off and use the
791 * errCheck template to echo the command. Leave echoing
792 * off so the user doesn't see the weirdness we go through
793 * to ignore errors. Set cmdTemplate to use the weirdness
794 * instead of the simple "%s\n" template.
796 job
->flags
|= JOB_IGNERR
;
797 if (!(job
->flags
& JOB_SILENT
) && !shutUp
) {
798 if (commandShell
->hasEchoCtl
) {
799 DBPRINTF("%s\n", commandShell
->echoOff
);
801 DBPRINTF(commandShell
->errCheck
, escCmd
);
805 DBPRINTF(commandShell
->errCheck
, escCmd
);
808 cmdTemplate
= commandShell
->ignErr
;
810 * The error ignoration (hee hee) is already taken care
811 * of by the ignErr template, so pretend error checking
824 * If errors are being checked and the shell doesn't have error control
825 * but does supply an errOut template, then setup commands to run
829 if (!commandShell
->hasErrCtl
&& commandShell
->errOut
&&
830 (*commandShell
->errOut
!= '\0')) {
831 if (!(job
->flags
& JOB_SILENT
) && !shutUp
) {
832 if (commandShell
->hasEchoCtl
) {
833 DBPRINTF("%s\n", commandShell
->echoOff
);
835 DBPRINTF(commandShell
->errCheck
, escCmd
);
838 /* If it's a comment line or blank, treat as an ignored error */
839 if ((escCmd
[0] == commandShell
->commentChar
) ||
841 cmdTemplate
= commandShell
->ignErr
;
843 cmdTemplate
= commandShell
->errOut
;
848 if (DEBUG(SHELL
) && strcmp(shellName
, "sh") == 0 &&
849 (job
->flags
& JOB_TRACED
) == 0) {
850 DBPRINTF("set -%s\n", "x");
851 job
->flags
|= JOB_TRACED
;
854 DBPRINTF(cmdTemplate
, cmd
);
860 * If echoing is already off, there's no point in issuing the
861 * echoOff command. Otherwise we issue it and pretend it was on
862 * for the whole command...
864 if (!shutUp
&& !(job
->flags
& JOB_SILENT
) && commandShell
->hasEchoCtl
){
865 DBPRINTF("%s\n", commandShell
->echoOff
);
868 DBPRINTF("%s\n", commandShell
->errCheck
);
870 if (shutUp
&& commandShell
->hasEchoCtl
) {
871 DBPRINTF("%s\n", commandShell
->echoOn
);
877 *-----------------------------------------------------------------------
879 * Save a command to be executed when everything else is done.
880 * Callback function for JobFinish...
886 * The command is tacked onto the end of postCommands's commands list.
888 *-----------------------------------------------------------------------
891 JobSaveCommand(void *cmd
, void *gn
)
893 cmd
= Var_Subst(NULL
, (char *)cmd
, (GNode
*)gn
, FALSE
);
894 (void)Lst_AtEnd(postCommands
->commands
, cmd
);
900 *-----------------------------------------------------------------------
902 * Called to close both input and output pipes when a job is finished.
908 * The file descriptors associated with the job are closed.
910 *-----------------------------------------------------------------------
916 (void)close(job
->outPipe
);
919 JobDoOutput(job
, TRUE
);
920 (void)close(job
->inPipe
);
925 *-----------------------------------------------------------------------
927 * Do final processing for the given job including updating
928 * parents and starting new jobs as available/necessary. Note
929 * that we pay no attention to the JOB_IGNERR flag here.
930 * This is because when we're called because of a noexecute flag
931 * or something, jstat.w_status is 0 and when called from
932 * Job_CatchChildren, the status is zeroed if it s/b ignored.
936 * status sub-why job went away
942 * Final commands for the job are placed on postCommands.
944 * If we got an error and are aborting (aborting == ABORT_ERROR) and
945 * the job list is now empty, we are done for the day.
946 * If we recognized an error (errors !=0), we set the aborting flag
947 * to ABORT_ERROR so no more jobs will be started.
948 *-----------------------------------------------------------------------
952 JobFinish(Job
*job
, int status
)
954 Boolean done
, return_job_token
;
957 fprintf(debug_file
, "Jobfinish: %d [%s], status %d\n",
958 job
->pid
, job
->node
->name
, status
);
961 if ((WIFEXITED(status
) &&
962 (((WEXITSTATUS(status
) != 0) && !(job
->flags
& JOB_IGNERR
)))) ||
966 * If it exited non-zero and either we're doing things our
967 * way or we're not ignoring errors, the job is finished.
968 * Similarly, if the shell died because of a signal
969 * the job is also finished. In these
970 * cases, finish out the job's output before printing the exit
974 if (job
->cmdFILE
!= NULL
&& job
->cmdFILE
!= stdout
) {
975 (void)fclose(job
->cmdFILE
);
979 } else if (WIFEXITED(status
)) {
981 * Deal with ignored errors in -B mode. We need to print a message
982 * telling of the ignored error as well as setting status.w_status
983 * to 0 so the next command gets run. To do this, we set done to be
984 * TRUE if in -B mode and the job exited non-zero.
986 done
= WEXITSTATUS(status
) != 0;
988 * Old comment said: "Note we don't
989 * want to close down any of the streams until we know we're at the
991 * But we do. Otherwise when are we going to print the rest of the
997 * No need to close things down or anything.
1003 if (WIFEXITED(status
)) {
1005 (void)fprintf(debug_file
, "Process %d [%s] exited.\n",
1006 job
->pid
, job
->node
->name
);
1008 if (WEXITSTATUS(status
) != 0) {
1009 if (job
->node
!= lastNode
) {
1010 MESSAGE(stdout
, job
->node
);
1011 lastNode
= job
->node
;
1015 meta_job_error(job
, job
->node
, job
->flags
, WEXITSTATUS(status
));
1018 (void)printf("*** [%s] Error code %d%s\n",
1020 WEXITSTATUS(status
),
1021 (job
->flags
& JOB_IGNERR
) ? " (ignored)" : "");
1022 if (job
->flags
& JOB_IGNERR
) {
1025 PrintOnError(job
->node
, NULL
);
1027 } else if (DEBUG(JOB
)) {
1028 if (job
->node
!= lastNode
) {
1029 MESSAGE(stdout
, job
->node
);
1030 lastNode
= job
->node
;
1032 (void)printf("*** [%s] Completed successfully\n",
1036 if (job
->node
!= lastNode
) {
1037 MESSAGE(stdout
, job
->node
);
1038 lastNode
= job
->node
;
1040 (void)printf("*** [%s] Signal %d\n",
1041 job
->node
->name
, WTERMSIG(status
));
1043 (void)fflush(stdout
);
1048 meta_job_finish(job
);
1052 return_job_token
= FALSE
;
1054 Trace_Log(JOBEND
, job
);
1055 if (!(job
->flags
& JOB_SPECIAL
)) {
1056 if ((status
!= 0) ||
1057 (aborting
== ABORT_ERROR
) ||
1058 (aborting
== ABORT_INTERRUPT
))
1059 return_job_token
= TRUE
;
1062 if ((aborting
!= ABORT_ERROR
) && (aborting
!= ABORT_INTERRUPT
) && (status
== 0)) {
1064 * As long as we aren't aborting and the job didn't return a non-zero
1065 * status that we shouldn't ignore, we call Make_Update to update
1066 * the parents. In addition, any saved commands for the node are placed
1067 * on the .END target.
1069 if (job
->tailCmds
!= NULL
) {
1070 Lst_ForEachFrom(job
->node
->commands
, job
->tailCmds
,
1074 job
->node
->made
= MADE
;
1075 if (!(job
->flags
& JOB_SPECIAL
))
1076 return_job_token
= TRUE
;
1077 Make_Update(job
->node
);
1078 job
->job_state
= JOB_ST_FREE
;
1079 } else if (status
!= 0) {
1081 job
->job_state
= JOB_ST_FREE
;
1085 * Set aborting if any error.
1087 if (errors
&& !keepgoing
&& (aborting
!= ABORT_INTERRUPT
)) {
1089 * If we found any errors in this batch of children and the -k flag
1090 * wasn't given, we set the aborting flag so no more jobs get
1093 aborting
= ABORT_ERROR
;
1096 if (return_job_token
)
1099 if (aborting
== ABORT_ERROR
&& jobTokensRunning
== 0) {
1101 * If we are aborting and the job table is now empty, we finish.
1108 *-----------------------------------------------------------------------
1110 * Touch the given target. Called by JobStart when the -t flag was
1114 * gn the node of the file to touch
1115 * silent TRUE if should not print message
1121 * The data modification of the file is changed. In addition, if the
1122 * file did not exist, it is created.
1123 *-----------------------------------------------------------------------
1126 Job_Touch(GNode
*gn
, Boolean silent
)
1128 int streamID
; /* ID of stream opened to do the touch */
1129 struct utimbuf times
; /* Times for utime() call */
1131 if (gn
->type
& (OP_JOIN
|OP_USE
|OP_USEBEFORE
|OP_EXEC
|OP_OPTIONAL
|
1132 OP_SPECIAL
|OP_PHONY
)) {
1134 * .JOIN, .USE, .ZEROTIME and .OPTIONAL targets are "virtual" targets
1135 * and, as such, shouldn't really be created.
1140 if (!silent
|| NoExecute(gn
)) {
1141 (void)fprintf(stdout
, "touch %s\n", gn
->name
);
1142 (void)fflush(stdout
);
1145 if (NoExecute(gn
)) {
1149 if (gn
->type
& OP_ARCHV
) {
1151 } else if (gn
->type
& OP_LIB
) {
1154 char *file
= gn
->path
? gn
->path
: gn
->name
;
1156 times
.actime
= times
.modtime
= now
;
1157 if (utime(file
, ×
) < 0){
1158 streamID
= open(file
, O_RDWR
| O_CREAT
, 0666);
1160 if (streamID
>= 0) {
1164 * Read and write a byte to the file to change the
1165 * modification time, then close the file.
1167 if (read(streamID
, &c
, 1) == 1) {
1168 (void)lseek(streamID
, (off_t
)0, SEEK_SET
);
1169 while (write(streamID
, &c
, 1) == -1 && errno
== EAGAIN
)
1173 (void)close(streamID
);
1175 (void)fprintf(stdout
, "*** couldn't touch %s: %s",
1176 file
, strerror(errno
));
1177 (void)fflush(stdout
);
1184 *-----------------------------------------------------------------------
1185 * Job_CheckCommands --
1186 * Make sure the given node has all the commands it needs.
1189 * gn The target whose commands need verifying
1190 * abortProc Function to abort with message
1193 * TRUE if the commands list is/was ok.
1196 * The node will have commands from the .DEFAULT rule added to it
1198 *-----------------------------------------------------------------------
1201 Job_CheckCommands(GNode
*gn
, void (*abortProc
)(const char *, ...))
1203 if (OP_NOP(gn
->type
) && Lst_IsEmpty(gn
->commands
) &&
1204 ((gn
->type
& OP_LIB
) == 0 || Lst_IsEmpty(gn
->children
))) {
1206 * No commands. Look for .DEFAULT rule from which we might infer
1209 if ((DEFAULT
!= NULL
) && !Lst_IsEmpty(DEFAULT
->commands
) &&
1210 (gn
->type
& OP_SPECIAL
) == 0) {
1213 * Make only looks for a .DEFAULT if the node was never the
1214 * target of an operator, so that's what we do too. If
1215 * a .DEFAULT was given, we substitute its commands for gn's
1216 * commands and set the IMPSRC variable to be the target's name
1217 * The DEFAULT node acts like a transformation rule, in that
1218 * gn also inherits any attributes or sources attached to
1221 Make_HandleUse(DEFAULT
, gn
);
1222 Var_Set(IMPSRC
, Var_Value(TARGET
, gn
, &p1
), gn
, 0);
1225 } else if (Dir_MTime(gn
, 0) == 0 && (gn
->type
& OP_SPECIAL
) == 0) {
1227 * The node wasn't the target of an operator we have no .DEFAULT
1228 * rule to go on and the target doesn't already exist. There's
1229 * nothing more we can do for this branch. If the -k flag wasn't
1230 * given, we stop in our tracks, otherwise we just don't update
1231 * this node's parents so they never get examined.
1233 static const char msg
[] = ": don't know how to make";
1235 if (gn
->flags
& FROM_DEPEND
) {
1236 if (!Job_RunTarget(".STALE", gn
->fname
))
1237 fprintf(stdout
, "%s: %s, %d: ignoring stale %s for %s\n",
1238 progname
, gn
->fname
, gn
->lineno
, makeDependfile
,
1243 if (gn
->type
& OP_OPTIONAL
) {
1244 (void)fprintf(stdout
, "%s%s %s (ignored)\n", progname
,
1246 (void)fflush(stdout
);
1247 } else if (keepgoing
) {
1248 (void)fprintf(stdout
, "%s%s %s (continuing)\n", progname
,
1250 (void)fflush(stdout
);
1253 (*abortProc
)("%s%s %s. Stop", progname
, msg
, gn
->name
);
1262 *-----------------------------------------------------------------------
1264 * Execute the shell for the given job. Called from JobStart
1267 * job Job to execute
1273 * A shell is executed, outputs is altered and the Job structure added
1276 *-----------------------------------------------------------------------
1279 JobExec(Job
*job
, char **argv
)
1281 int cpid
; /* ID of new child */
1284 job
->flags
&= ~JOB_TRACED
;
1289 (void)fprintf(debug_file
, "Running %s %sly\n", job
->node
->name
, "local");
1290 (void)fprintf(debug_file
, "\tCommand: ");
1291 for (i
= 0; argv
[i
] != NULL
; i
++) {
1292 (void)fprintf(debug_file
, "%s ", argv
[i
]);
1294 (void)fprintf(debug_file
, "\n");
1298 * Some jobs produce no output and it's disconcerting to have
1299 * no feedback of their running (since they produce no output, the
1300 * banner with their name in it never appears). This is an attempt to
1301 * provide that feedback, even if nothing follows it.
1303 if ((lastNode
!= job
->node
) && !(job
->flags
& JOB_SILENT
)) {
1304 MESSAGE(stdout
, job
->node
);
1305 lastNode
= job
->node
;
1308 /* No interruptions until this job is on the `jobs' list */
1311 /* Pre-emptively mark job running, pid still zero though */
1312 job
->job_state
= JOB_ST_RUNNING
;
1316 Punt("Cannot vfork: %s", strerror(errno
));
1324 meta_job_child(job
);
1328 * Reset all signal handlers; this is necessary because we also
1329 * need to unblock signals before we exec(2).
1333 /* Now unblock signals */
1334 sigemptyset(&tmask
);
1335 JobSigUnlock(&tmask
);
1338 * Must duplicate the input stream down to the child's input and
1339 * reset it to the beginning (again). Since the stream was marked
1340 * close-on-exec, we must clear that bit in the new input.
1342 if (dup2(FILENO(job
->cmdFILE
), 0) == -1) {
1343 execError("dup2", "job->cmdFILE");
1346 (void)fcntl(0, F_SETFD
, 0);
1347 (void)lseek(0, (off_t
)0, SEEK_SET
);
1349 if (job
->node
->type
& (OP_MAKE
| OP_SUBMAKE
)) {
1351 * Pass job token pipe to submakes.
1353 fcntl(tokenWaitJob
.inPipe
, F_SETFD
, 0);
1354 fcntl(tokenWaitJob
.outPipe
, F_SETFD
, 0);
1358 * Set up the child's output to be routed through the pipe
1359 * we've created for it.
1361 if (dup2(job
->outPipe
, 1) == -1) {
1362 execError("dup2", "job->outPipe");
1366 * The output channels are marked close on exec. This bit was
1367 * duplicated by the dup2(on some systems), so we have to clear
1368 * it before routing the shell's error output to the same place as
1369 * its standard output.
1371 (void)fcntl(1, F_SETFD
, 0);
1372 if (dup2(1, 2) == -1) {
1373 execError("dup2", "1, 2");
1378 * We want to switch the child into a different process family so
1379 * we can kill it and all its descendants in one fell swoop,
1380 * by killing its process family, but not commit suicide.
1382 #if defined(MAKE_NATIVE) || defined(HAVE_SETPGID)
1384 /* XXX: dsl - I'm sure this should be setpgrp()... */
1387 (void)setpgid(0, getpid());
1393 (void)execv(shellPath
, argv
);
1394 execError("exec", shellPath
);
1398 /* Parent, continuing after the child exec */
1401 Trace_Log(JOBSTART
, job
);
1404 * Set the current position in the buffer to the beginning
1405 * and mark another stream to watch in the outputs mask
1411 if (job
->cmdFILE
!= NULL
&& job
->cmdFILE
!= stdout
) {
1412 (void)fclose(job
->cmdFILE
);
1413 job
->cmdFILE
= NULL
;
1417 * Now the job is actually running, add it to the table.
1420 fprintf(debug_file
, "JobExec(%s): pid %d added to jobs table\n",
1421 job
->node
->name
, job
->pid
);
1422 job_table_dump("job started");
1424 JobSigUnlock(&mask
);
1428 *-----------------------------------------------------------------------
1430 * Create the argv needed to execute the shell for a given job.
1437 *-----------------------------------------------------------------------
1440 JobMakeArgv(Job
*job
, char **argv
)
1443 static char args
[10]; /* For merged arguments */
1445 argv
[0] = UNCONST(shellName
);
1448 if ((commandShell
->exit
&& (*commandShell
->exit
!= '-')) ||
1449 (commandShell
->echo
&& (*commandShell
->echo
!= '-')))
1452 * At least one of the flags doesn't have a minus before it, so
1453 * merge them together. Have to do this because the *(&(@*#*&#$#
1454 * Bourne shell thinks its second argument is a file to source.
1455 * Grrrr. Note the ten-character limitation on the combined arguments.
1457 (void)snprintf(args
, sizeof(args
), "-%s%s",
1458 ((job
->flags
& JOB_IGNERR
) ? "" :
1459 (commandShell
->exit
? commandShell
->exit
: "")),
1460 ((job
->flags
& JOB_SILENT
) ? "" :
1461 (commandShell
->echo
? commandShell
->echo
: "")));
1468 if (!(job
->flags
& JOB_IGNERR
) && commandShell
->exit
) {
1469 argv
[argc
] = UNCONST(commandShell
->exit
);
1472 if (!(job
->flags
& JOB_SILENT
) && commandShell
->echo
) {
1473 argv
[argc
] = UNCONST(commandShell
->echo
);
1481 *-----------------------------------------------------------------------
1483 * Start a target-creation process going for the target described
1484 * by the graph node gn.
1487 * gn target to create
1488 * flags flags for the job to override normal ones.
1489 * e.g. JOB_SPECIAL or JOB_IGNDOTS
1490 * previous The previous Job structure for this node, if any.
1493 * JOB_ERROR if there was an error in the commands, JOB_FINISHED
1494 * if there isn't actually anything left to do for the job and
1495 * JOB_RUNNING if the job has been started.
1498 * A new Job node is created and added to the list of running
1499 * jobs. PMake is forked and a child shell created.
1501 * NB: I'm fairly sure that this code is never called with JOB_SPECIAL set
1502 * JOB_IGNDOTS is never set (dsl)
1503 * Also the return value is ignored by everyone.
1504 *-----------------------------------------------------------------------
1507 JobStart(GNode
*gn
, int flags
)
1509 Job
*job
; /* new job descriptor */
1510 char *argv
[10]; /* Argument vector to shell */
1511 Boolean cmdsOK
; /* true if the nodes commands were all right */
1512 Boolean noExec
; /* Set true if we decide not to run the job */
1513 int tfd
; /* File descriptor to the temp file */
1515 for (job
= job_table
; job
< job_table_end
; job
++) {
1516 if (job
->job_state
== JOB_ST_FREE
)
1519 if (job
>= job_table_end
)
1520 Punt("JobStart no job slots vacant");
1522 memset(job
, 0, sizeof *job
);
1523 job
->job_state
= JOB_ST_SETUP
;
1524 if (gn
->type
& OP_SPECIAL
)
1525 flags
|= JOB_SPECIAL
;
1528 job
->tailCmds
= NULL
;
1531 * Set the initial value of the flags for this job based on the global
1532 * ones and the node's attributes... Any flags supplied by the caller
1533 * are also added to the field.
1536 if (Targ_Ignore(gn
)) {
1537 job
->flags
|= JOB_IGNERR
;
1539 if (Targ_Silent(gn
)) {
1540 job
->flags
|= JOB_SILENT
;
1542 job
->flags
|= flags
;
1545 * Check the commands now so any attributes from .DEFAULT have a chance
1546 * to migrate to the node
1548 cmdsOK
= Job_CheckCommands(gn
, Error
);
1550 job
->inPollfd
= NULL
;
1552 * If the -n flag wasn't given, we open up OUR (not the child's)
1553 * temporary file to stuff commands in it. The thing is rd/wr so we don't
1554 * need to reopen it to feed it to the shell. If the -n flag *was* given,
1555 * we just set the file to be stdout. Cute, huh?
1557 if (((gn
->type
& OP_MAKE
) && !(noRecursiveExecute
)) ||
1558 (!noExecute
&& !touchFlag
)) {
1560 * tfile is the name of a file into which all shell commands are
1561 * put. It is removed before the child shell is executed, unless
1562 * DEBUG(SCRIPT) is set.
1567 * We're serious here, but if the commands were bogus, we're
1571 PrintOnError(gn
, NULL
); /* provide some clue */
1576 tfd
= mkTempFile(TMPPAT
, &tfile
);
1578 (void)eunlink(tfile
);
1579 JobSigUnlock(&mask
);
1581 job
->cmdFILE
= fdopen(tfd
, "w+");
1582 if (job
->cmdFILE
== NULL
) {
1583 Punt("Could not fdopen %s", tfile
);
1585 (void)fcntl(FILENO(job
->cmdFILE
), F_SETFD
, 1);
1587 * Send the commands to the command file, flush all its buffers then
1588 * rewind and remove the thing.
1594 meta_job_start(job
, gn
);
1595 if (Targ_Silent(gn
)) { /* might have changed */
1596 job
->flags
|= JOB_SILENT
;
1601 * We can do all the commands at once. hooray for sanity
1604 Lst_ForEach(gn
->commands
, JobPrintCommand
, job
);
1607 * If we didn't print out any commands to the shell script,
1608 * there's not much point in executing the shell, is there?
1610 if (numCommands
== 0) {
1615 } else if (NoExecute(gn
)) {
1617 * Not executing anything -- just print all the commands to stdout
1618 * in one fell swoop. This will still set up job->tailCmds correctly.
1620 if (lastNode
!= gn
) {
1621 MESSAGE(stdout
, gn
);
1624 job
->cmdFILE
= stdout
;
1626 * Only print the commands if they're ok, but don't die if they're
1627 * not -- just let the user know they're bad and keep going. It
1628 * doesn't do any harm in this case and may do some good.
1631 Lst_ForEach(gn
->commands
, JobPrintCommand
, job
);
1634 * Don't execute the shell, thank you.
1639 * Just touch the target and note that no shell should be executed.
1640 * Set cmdFILE to stdout to make life easier. Check the commands, too,
1641 * but don't die if they're no good -- it does no harm to keep working
1644 job
->cmdFILE
= stdout
;
1645 Job_Touch(gn
, job
->flags
&JOB_SILENT
);
1648 /* Just in case it isn't already... */
1649 (void)fflush(job
->cmdFILE
);
1652 * If we're not supposed to execute a shell, don't.
1655 if (!(job
->flags
& JOB_SPECIAL
))
1658 * Unlink and close the command file if we opened one
1660 if (job
->cmdFILE
!= stdout
) {
1661 if (job
->cmdFILE
!= NULL
) {
1662 (void)fclose(job
->cmdFILE
);
1663 job
->cmdFILE
= NULL
;
1668 * We only want to work our way up the graph if we aren't here because
1669 * the commands for the job were no good.
1671 if (cmdsOK
&& aborting
== 0) {
1672 if (job
->tailCmds
!= NULL
) {
1673 Lst_ForEachFrom(job
->node
->commands
, job
->tailCmds
,
1677 job
->node
->made
= MADE
;
1678 Make_Update(job
->node
);
1680 job
->job_state
= JOB_ST_FREE
;
1681 return cmdsOK
? JOB_FINISHED
: JOB_ERROR
;
1685 * Set up the control arguments to the shell. This is based on the flags
1686 * set earlier for this job.
1688 JobMakeArgv(job
, argv
);
1690 /* Create the pipe by which we'll get the shell's output. */
1691 JobCreatePipe(job
, 3);
1694 return(JOB_RUNNING
);
1698 JobOutput(Job
*job
, char *cp
, char *endp
, int msg
)
1702 if (commandShell
->noPrint
) {
1703 ecp
= Str_FindSubstring(cp
, commandShell
->noPrint
);
1704 while (ecp
!= NULL
) {
1707 if (!beSilent
&& msg
&& job
->node
!= lastNode
) {
1708 MESSAGE(stdout
, job
->node
);
1709 lastNode
= job
->node
;
1712 * The only way there wouldn't be a newline after
1713 * this line is if it were the last in the buffer.
1714 * however, since the non-printable comes after it,
1715 * there must be a newline, so we don't print one.
1717 (void)fprintf(stdout
, "%s", cp
);
1718 (void)fflush(stdout
);
1720 cp
= ecp
+ commandShell
->noPLen
;
1723 * Still more to print, look again after skipping
1724 * the whitespace following the non-printable
1728 while (*cp
== ' ' || *cp
== '\t' || *cp
== '\n') {
1731 ecp
= Str_FindSubstring(cp
, commandShell
->noPrint
);
1741 *-----------------------------------------------------------------------
1743 * This function is called at different times depending on
1744 * whether the user has specified that output is to be collected
1745 * via pipes or temporary files. In the former case, we are called
1746 * whenever there is something to read on the pipe. We collect more
1747 * output from the given job and store it in the job's outBuf. If
1748 * this makes up a line, we print it tagged by the job's identifier,
1750 * If output has been collected in a temporary file, we open the
1751 * file and read it line by line, transfering it to our own
1752 * output channel until the file is empty. At which point we
1753 * remove the temporary file.
1754 * In both cases, however, we keep our figurative eye out for the
1755 * 'noPrint' line for the shell from which the output came. If
1756 * we recognize a line, we don't print it. If the command is not
1757 * alone on the line (the character after it is not \0 or \n), we
1758 * do print whatever follows it.
1761 * job the job whose output needs printing
1762 * finish TRUE if this is the last time we'll be called
1769 * curPos may be shifted as may the contents of outBuf.
1770 *-----------------------------------------------------------------------
1773 JobDoOutput(Job
*job
, Boolean finish
)
1775 Boolean gotNL
= FALSE
; /* true if got a newline */
1776 Boolean fbuf
; /* true if our buffer filled up */
1777 int nr
; /* number of bytes read */
1778 int i
; /* auxiliary index into outBuf */
1779 int max
; /* limit for i (end of current data) */
1780 int nRead
; /* (Temporary) number of bytes read */
1783 * Read as many bytes as will fit in the buffer.
1789 nRead
= read(job
->inPipe
, &job
->outBuf
[job
->curPos
],
1790 JOB_BUFSIZE
- job
->curPos
);
1792 if (errno
== EAGAIN
)
1795 perror("JobDoOutput(piperead)");
1803 * If we hit the end-of-file (the job is dead), we must flush its
1804 * remaining output, so pretend we read a newline if there's any
1805 * output remaining in the buffer.
1806 * Also clear the 'finish' flag so we stop looping.
1808 if ((nr
== 0) && (job
->curPos
!= 0)) {
1809 job
->outBuf
[job
->curPos
] = '\n';
1812 } else if (nr
== 0) {
1817 * Look for the last newline in the bytes we just got. If there is
1818 * one, break out of the loop with 'i' as its index and gotNL set
1821 max
= job
->curPos
+ nr
;
1822 for (i
= job
->curPos
+ nr
- 1; i
>= job
->curPos
; i
--) {
1823 if (job
->outBuf
[i
] == '\n') {
1826 } else if (job
->outBuf
[i
] == '\0') {
1830 job
->outBuf
[i
] = ' ';
1836 if (job
->curPos
== JOB_BUFSIZE
) {
1838 * If we've run out of buffer space, we have no choice
1839 * but to print the stuff. sigh.
1845 if (gotNL
|| fbuf
) {
1847 * Need to send the output to the screen. Null terminate it
1848 * first, overwriting the newline character if there was one.
1849 * So long as the line isn't one we should filter (according
1850 * to the shell description), we print the line, preceded
1851 * by a target banner if this target isn't the same as the
1852 * one for which we last printed something.
1853 * The rest of the data in the buffer are then shifted down
1854 * to the start of the buffer and curPos is set accordingly.
1856 job
->outBuf
[i
] = '\0';
1857 if (i
>= job
->curPos
) {
1860 cp
= JobOutput(job
, job
->outBuf
, &job
->outBuf
[i
], FALSE
);
1863 * There's still more in that thar buffer. This time, though,
1864 * we know there's no newline at the end, so we add one of
1865 * our own free will.
1868 if (!beSilent
&& job
->node
!= lastNode
) {
1869 MESSAGE(stdout
, job
->node
);
1870 lastNode
= job
->node
;
1874 meta_job_output(job
, cp
, gotNL
? "\n" : "");
1877 (void)fprintf(stdout
, "%s%s", cp
, gotNL
? "\n" : "");
1878 (void)fflush(stdout
);
1882 * max is the last offset still in the buffer. Move any remaining
1883 * characters to the start of the buffer and update the end marker
1887 (void)memmove(job
->outBuf
, &job
->outBuf
[i
+ 1], max
- (i
+ 1));
1888 job
->curPos
= max
- (i
+ 1);
1896 * If the finish flag is true, we must loop until we hit
1897 * end-of-file on the pipe. This is guaranteed to happen
1898 * eventually since the other end of the pipe is now closed
1899 * (we closed it explicitly and the child has exited). When
1900 * we do get an EOF, finish will be set FALSE and we'll fall
1912 * Unfortunately it is too complicated to run .BEGIN, .END,
1913 * and .INTERRUPT job in the parallel job module. This has
1914 * the nice side effect that it avoids a lot of other problems.
1916 Lst lst
= Lst_Init(FALSE
);
1917 Lst_AtEnd(lst
, targ
);
1918 (void)Make_Run(lst
);
1919 Lst_Destroy(lst
, NULL
);
1920 JobStart(targ
, JOB_SPECIAL
);
1921 while (jobTokensRunning
) {
1925 Compat_Make(targ
, targ
);
1926 if (targ
->made
== ERROR
) {
1927 PrintOnError(targ
, "\n\nStop.");
1934 *-----------------------------------------------------------------------
1935 * Job_CatchChildren --
1936 * Handle the exit of a child. Called from Make_Make.
1939 * block TRUE if should block on the wait
1945 * The job descriptor is removed from the list of children.
1948 * We do waits, blocking or not, according to the wisdom of our
1949 * caller, until there are no more children to report. For each
1950 * job, call JobFinish to finish things off.
1952 *-----------------------------------------------------------------------
1956 Job_CatchChildren(void)
1958 int pid
; /* pid of dead child */
1959 int status
; /* Exit/termination status */
1962 * Don't even bother if we know there's no one around.
1964 if (jobTokensRunning
== 0)
1967 while ((pid
= waitpid((pid_t
) -1, &status
, WNOHANG
| WUNTRACED
)) > 0) {
1969 (void)fprintf(debug_file
, "Process %d exited/stopped status %x.\n", pid
,
1972 JobReapChild(pid
, status
, TRUE
);
1977 * It is possible that wait[pid]() was called from elsewhere,
1978 * this lets us reap jobs regardless.
1981 JobReapChild(pid_t pid
, int status
, Boolean isJobs
)
1983 Job
*job
; /* job descriptor for dead child */
1986 * Don't even bother if we know there's no one around.
1988 if (jobTokensRunning
== 0)
1991 job
= JobFindPid(pid
, JOB_ST_RUNNING
, isJobs
);
1994 if (!lurking_children
)
1995 Error("Child (%d) status %x not in table?", pid
, status
);
1997 return; /* not ours */
1999 if (WIFSTOPPED(status
)) {
2001 (void)fprintf(debug_file
, "Process %d (%s) stopped.\n",
2002 job
->pid
, job
->node
->name
);
2004 if (!make_suspended
) {
2005 switch (WSTOPSIG(status
)) {
2007 (void)printf("*** [%s] Suspended\n", job
->node
->name
);
2010 (void)printf("*** [%s] Stopped\n", job
->node
->name
);
2013 (void)printf("*** [%s] Stopped -- signal %d\n",
2014 job
->node
->name
, WSTOPSIG(status
));
2016 job
->job_suspended
= 1;
2018 (void)fflush(stdout
);
2022 job
->job_state
= JOB_ST_FINISHED
;
2023 job
->exit_status
= status
;
2025 JobFinish(job
, status
);
2029 *-----------------------------------------------------------------------
2030 * Job_CatchOutput --
2031 * Catch the output from our children, if we're using
2032 * pipes do so. Otherwise just block time until we get a
2033 * signal(most likely a SIGCHLD) since there's no point in
2034 * just spinning when there's nothing to do and the reaping
2035 * of a child can wait for a while.
2041 * Output is read from pipes if we're piping.
2042 * -----------------------------------------------------------------------
2045 Job_CatchOutput(void)
2051 (void)fflush(stdout
);
2053 /* The first fd in the list is the job token pipe */
2055 nready
= poll(fds
+ 1 - wantToken
, nfds
- 1 + wantToken
, POLL_MSEC
);
2056 } while (nready
< 0 && errno
== EINTR
);
2059 Punt("poll: %s", strerror(errno
));
2061 if (nready
> 0 && readyfd(&childExitJob
)) {
2064 #if defined(__minix)
2065 /* Workaround: While the pipe is deemed ready to be read, it can still
2066 * return EAGAIN in the read below. */
2068 #endif /* defined(__minix) */
2069 count
= read(childExitJob
.inPipe
, &token
, 1);
2070 #if defined(__minix)
2071 } while(-1 == count
&& EAGAIN
== errno
);
2072 #endif /* defined(__minix) */
2075 Punt("unexpected eof on token pipe");
2077 Punt("token pipe read: %s", strerror(errno
));
2079 if (token
== DO_JOB_RESUME
[0])
2080 /* Complete relay requested from our SIGCONT handler */
2089 Job_CatchChildren();
2093 for (i
= 2; i
< nfds
; i
++) {
2094 if (!fds
[i
].revents
)
2097 if (job
->job_state
== JOB_ST_RUNNING
)
2098 JobDoOutput(job
, FALSE
);
2105 *-----------------------------------------------------------------------
2107 * Start the creation of a target. Basically a front-end for
2108 * JobStart used by the Make module.
2114 * Another job is started.
2116 *-----------------------------------------------------------------------
2121 (void)JobStart(gn
, 0);
2127 if (shellPath
== NULL
) {
2129 * We are using the default shell, which may be an absolute
2130 * path if DEFSHELL_CUSTOM is defined.
2132 shellName
= commandShell
->name
;
2133 #ifdef DEFSHELL_CUSTOM
2134 if (*shellName
== '/') {
2135 shellPath
= shellName
;
2136 shellName
= strrchr(shellPath
, '/');
2140 shellPath
= str_concat(_PATH_DEFSHELLDIR
, shellName
, STR_ADDSLASH
);
2142 if (commandShell
->exit
== NULL
) {
2143 commandShell
->exit
= "";
2145 if (commandShell
->echo
== NULL
) {
2146 commandShell
->echo
= "";
2148 if (commandShell
->hasErrCtl
&& *commandShell
->exit
) {
2150 strcmp(commandShell
->exit
, &shellErrFlag
[1]) != 0) {
2152 shellErrFlag
= NULL
;
2154 if (!shellErrFlag
) {
2155 int n
= strlen(commandShell
->exit
) + 2;
2157 shellErrFlag
= bmake_malloc(n
);
2159 snprintf(shellErrFlag
, n
, "-%s", commandShell
->exit
);
2162 } else if (shellErrFlag
) {
2164 shellErrFlag
= NULL
;
2169 * Returns the string literal that is used in the current command shell
2170 * to produce a newline character.
2173 Shell_GetNewline(void)
2176 return commandShell
->newline
;
2185 } else if (!Var_Exists(MAKE_JOB_PREFIX
, VAR_GLOBAL
)) {
2186 Var_Set(MAKE_JOB_PREFIX
, "---", VAR_GLOBAL
, 0);
2189 targPrefix
= Var_Subst(NULL
, "${" MAKE_JOB_PREFIX
"}", VAR_GLOBAL
, 0);
2193 *-----------------------------------------------------------------------
2195 * Initialize the process module
2203 * lists and counters are initialized
2204 *-----------------------------------------------------------------------
2210 /* Allocate space for all the job info */
2211 job_table
= bmake_malloc(maxJobs
* sizeof *job_table
);
2212 memset(job_table
, 0, maxJobs
* sizeof *job_table
);
2213 job_table_end
= job_table
+ maxJobs
;
2222 * There is a non-zero chance that we already have children.
2223 * eg after 'make -f- <<EOF'
2224 * Since their termination causes a 'Child (pid) not in table' message,
2225 * Collect the status of any that are already dead, and suppress the
2226 * error message if there are any undead ones.
2230 rval
= waitpid((pid_t
) -1, &status
, WNOHANG
);
2234 lurking_children
= 1;
2240 JobCreatePipe(&childExitJob
, 3);
2242 /* We can only need to wait for tokens, children and output from each job */
2243 fds
= bmake_malloc(sizeof (*fds
) * (2 + maxJobs
));
2244 jobfds
= bmake_malloc(sizeof (*jobfds
) * (2 + maxJobs
));
2246 /* These are permanent entries and take slots 0 and 1 */
2247 watchfd(&tokenWaitJob
);
2248 watchfd(&childExitJob
);
2250 sigemptyset(&caught_signals
);
2252 * Install a SIGCHLD handler.
2254 (void)bmake_signal(SIGCHLD
, JobChildSig
);
2255 sigaddset(&caught_signals
, SIGCHLD
);
2257 #define ADDSIG(s,h) \
2258 if (bmake_signal(s, SIG_IGN) != SIG_IGN) { \
2259 sigaddset(&caught_signals, s); \
2260 (void)bmake_signal(s, h); \
2264 * Catch the four signals that POSIX specifies if they aren't ignored.
2265 * JobPassSig will take care of calling JobInterrupt if appropriate.
2267 ADDSIG(SIGINT
, JobPassSig_int
)
2268 ADDSIG(SIGHUP
, JobPassSig_term
)
2269 ADDSIG(SIGTERM
, JobPassSig_term
)
2270 ADDSIG(SIGQUIT
, JobPassSig_term
)
2273 * There are additional signals that need to be caught and passed if
2274 * either the export system wants to be told directly of signals or if
2275 * we're giving each job its own process group (since then it won't get
2276 * signals from the terminal driver as we own the terminal)
2278 ADDSIG(SIGTSTP
, JobPassSig_suspend
)
2279 ADDSIG(SIGTTOU
, JobPassSig_suspend
)
2280 ADDSIG(SIGTTIN
, JobPassSig_suspend
)
2281 ADDSIG(SIGWINCH
, JobCondPassSig
)
2282 ADDSIG(SIGCONT
, JobContinueSig
)
2285 (void)Job_RunTarget(".BEGIN", NULL
);
2286 postCommands
= Targ_FindNode(".END", TARG_CREATE
);
2289 static void JobSigReset(void)
2292 if (sigismember(&caught_signals, s)) { \
2293 (void)bmake_signal(s, SIG_DFL); \
2306 (void)bmake_signal(SIGCHLD
, SIG_DFL
);
2310 *-----------------------------------------------------------------------
2312 * Find a shell in 'shells' given its name.
2315 * A pointer to the Shell structure.
2320 *-----------------------------------------------------------------------
2323 JobMatchShell(const char *name
)
2327 for (sh
= shells
; sh
->name
!= NULL
; sh
++) {
2328 if (strcmp(name
, sh
->name
) == 0)
2335 *-----------------------------------------------------------------------
2337 * Parse a shell specification and set up commandShell, shellPath
2338 * and shellName appropriately.
2341 * line The shell spec
2344 * FAILURE if the specification was incorrect.
2347 * commandShell points to a Shell structure (either predefined or
2348 * created from the shell spec), shellPath is the full path of the
2349 * shell described by commandShell, while shellName is just the
2350 * final component of shellPath.
2353 * A shell specification consists of a .SHELL target, with dependency
2354 * operator, followed by a series of blank-separated words. Double
2355 * quotes can be used to use blanks in words. A backslash escapes
2356 * anything (most notably a double-quote and a space) and
2357 * provides the functionality it does in C. Each word consists of
2358 * keyword and value separated by an equal sign. There should be no
2359 * unnecessary spaces in the word. The keywords are as follows:
2360 * name Name of shell.
2361 * path Location of shell.
2362 * quiet Command to turn off echoing.
2363 * echo Command to turn echoing on
2364 * filter Result of turning off echoing that shouldn't be
2366 * echoFlag Flag to turn echoing on at the start
2367 * errFlag Flag to turn error checking on at the start
2368 * hasErrCtl True if shell has error checking control
2369 * newline String literal to represent a newline char
2370 * check Command to turn on error checking if hasErrCtl
2371 * is TRUE or template of command to echo a command
2372 * for which error checking is off if hasErrCtl is
2374 * ignore Command to turn off error checking if hasErrCtl
2375 * is TRUE or template of command to execute a
2376 * command so as to ignore any errors it returns if
2377 * hasErrCtl is FALSE.
2379 *-----------------------------------------------------------------------
2382 Job_ParseShell(char *line
)
2389 Boolean fullSpec
= FALSE
;
2392 while (isspace((unsigned char)*line
)) {
2397 free(UNCONST(shellArgv
));
2399 memset(&newShell
, 0, sizeof(newShell
));
2402 * Parse the specification by keyword
2404 words
= brk_string(line
, &argc
, TRUE
, &path
);
2405 if (words
== NULL
) {
2406 Error("Unterminated quoted string [%s]", line
);
2411 for (path
= NULL
, argv
= words
; argc
!= 0; argc
--, argv
++) {
2412 if (strncmp(*argv
, "path=", 5) == 0) {
2414 } else if (strncmp(*argv
, "name=", 5) == 0) {
2415 newShell
.name
= &argv
[0][5];
2417 if (strncmp(*argv
, "quiet=", 6) == 0) {
2418 newShell
.echoOff
= &argv
[0][6];
2419 } else if (strncmp(*argv
, "echo=", 5) == 0) {
2420 newShell
.echoOn
= &argv
[0][5];
2421 } else if (strncmp(*argv
, "filter=", 7) == 0) {
2422 newShell
.noPrint
= &argv
[0][7];
2423 newShell
.noPLen
= strlen(newShell
.noPrint
);
2424 } else if (strncmp(*argv
, "echoFlag=", 9) == 0) {
2425 newShell
.echo
= &argv
[0][9];
2426 } else if (strncmp(*argv
, "errFlag=", 8) == 0) {
2427 newShell
.exit
= &argv
[0][8];
2428 } else if (strncmp(*argv
, "hasErrCtl=", 10) == 0) {
2429 char c
= argv
[0][10];
2430 newShell
.hasErrCtl
= !((c
!= 'Y') && (c
!= 'y') &&
2431 (c
!= 'T') && (c
!= 't'));
2432 } else if (strncmp(*argv
, "newline=", 8) == 0) {
2433 newShell
.newline
= &argv
[0][8];
2434 } else if (strncmp(*argv
, "check=", 6) == 0) {
2435 newShell
.errCheck
= &argv
[0][6];
2436 } else if (strncmp(*argv
, "ignore=", 7) == 0) {
2437 newShell
.ignErr
= &argv
[0][7];
2438 } else if (strncmp(*argv
, "errout=", 7) == 0) {
2439 newShell
.errOut
= &argv
[0][7];
2440 } else if (strncmp(*argv
, "comment=", 8) == 0) {
2441 newShell
.commentChar
= argv
[0][8];
2443 Parse_Error(PARSE_FATAL
, "Unknown keyword \"%s\"",
2454 * If no path was given, the user wants one of the pre-defined shells,
2455 * yes? So we find the one s/he wants with the help of JobMatchShell
2456 * and set things up the right way. shellPath will be set up by
2459 if (newShell
.name
== NULL
) {
2460 Parse_Error(PARSE_FATAL
, "Neither path nor name specified");
2464 if ((sh
= JobMatchShell(newShell
.name
)) == NULL
) {
2465 Parse_Error(PARSE_WARNING
, "%s: No matching shell",
2471 shellName
= newShell
.name
;
2473 /* Shell_Init has already been called! Do it again. */
2474 free(UNCONST(shellPath
));
2481 * The user provided a path. If s/he gave nothing else (fullSpec is
2482 * FALSE), try and find a matching shell in the ones we know of.
2483 * Else we just take the specification at its word and copy it
2484 * to a new location. In either case, we need to record the
2485 * path the user gave for the shell.
2488 path
= strrchr(path
, '/');
2490 path
= UNCONST(shellPath
);
2494 if (newShell
.name
!= NULL
) {
2495 shellName
= newShell
.name
;
2500 if ((sh
= JobMatchShell(shellName
)) == NULL
) {
2501 Parse_Error(PARSE_WARNING
, "%s: No matching shell",
2508 commandShell
= bmake_malloc(sizeof(Shell
));
2509 *commandShell
= newShell
;
2511 /* this will take care of shellErrFlag */
2515 if (commandShell
->echoOn
&& commandShell
->echoOff
) {
2516 commandShell
->hasEchoCtl
= TRUE
;
2519 if (!commandShell
->hasErrCtl
) {
2520 if (commandShell
->errCheck
== NULL
) {
2521 commandShell
->errCheck
= "";
2523 if (commandShell
->ignErr
== NULL
) {
2524 commandShell
->ignErr
= "%s\n";
2529 * Do not free up the words themselves, since they might be in use by the
2530 * shell specification.
2537 *-----------------------------------------------------------------------
2539 * Handle the receipt of an interrupt.
2542 * runINTERRUPT Non-zero if commands for the .INTERRUPT target
2543 * should be executed
2544 * signo signal received
2550 * All children are killed. Another job will be started if the
2551 * .INTERRUPT target was given.
2552 *-----------------------------------------------------------------------
2555 JobInterrupt(int runINTERRUPT
, int signo
)
2557 Job
*job
; /* job descriptor in that element */
2558 GNode
*interrupt
; /* the node describing the .INTERRUPT target */
2562 aborting
= ABORT_INTERRUPT
;
2566 for (job
= job_table
; job
< job_table_end
; job
++) {
2567 if (job
->job_state
!= JOB_ST_RUNNING
)
2572 if ((gn
->type
& (OP_JOIN
|OP_PHONY
)) == 0 && !Targ_Precious(gn
)) {
2573 char *file
= (gn
->path
== NULL
? gn
->name
: gn
->path
);
2574 if (!noExecute
&& eunlink(file
) != -1) {
2575 Error("*** %s removed", file
);
2580 (void)fprintf(debug_file
,
2581 "JobInterrupt passing signal %d to child %d.\n",
2584 KILLPG(job
->pid
, signo
);
2588 JobSigUnlock(&mask
);
2590 if (runINTERRUPT
&& !touchFlag
) {
2591 interrupt
= Targ_FindNode(".INTERRUPT", TARG_NOCREATE
);
2592 if (interrupt
!= NULL
) {
2593 ignoreErrors
= FALSE
;
2597 Trace_Log(MAKEINTR
, 0);
2602 *-----------------------------------------------------------------------
2604 * Do final processing such as the running of the commands
2605 * attached to the .END target.
2608 * Number of errors reported.
2612 *-----------------------------------------------------------------------
2617 if (postCommands
!= NULL
&&
2618 (!Lst_IsEmpty(postCommands
->commands
) ||
2619 !Lst_IsEmpty(postCommands
->children
))) {
2621 Error("Errors reported so .END ignored");
2623 JobRun(postCommands
);
2630 *-----------------------------------------------------------------------
2632 * Cleanup any memory used by the jobs module
2639 *-----------------------------------------------------------------------
2651 *-----------------------------------------------------------------------
2653 * Waits for all running jobs to finish and returns. Sets 'aborting'
2654 * to ABORT_WAIT to prevent other jobs from starting.
2660 * Currently running jobs finish.
2662 *-----------------------------------------------------------------------
2667 aborting
= ABORT_WAIT
;
2668 while (jobTokensRunning
!= 0) {
2675 *-----------------------------------------------------------------------
2677 * Abort all currently running jobs without handling output or anything.
2678 * This function is to be called only in the event of a major
2679 * error. Most definitely NOT to be called from JobInterrupt.
2685 * All children are killed, not just the firstborn
2686 *-----------------------------------------------------------------------
2691 Job
*job
; /* the job descriptor in that element */
2694 aborting
= ABORT_ERROR
;
2696 if (jobTokensRunning
) {
2697 for (job
= job_table
; job
< job_table_end
; job
++) {
2698 if (job
->job_state
!= JOB_ST_RUNNING
)
2701 * kill the child process with increasingly drastic signals to make
2702 * darn sure it's dead.
2704 KILLPG(job
->pid
, SIGINT
);
2705 KILLPG(job
->pid
, SIGKILL
);
2710 * Catch as many children as want to report in at first, then give up
2712 while (waitpid((pid_t
) -1, &foo
, WNOHANG
) > 0)
2718 *-----------------------------------------------------------------------
2720 * Tries to restart stopped jobs if there are slots available.
2721 * Called in process context in response to a SIGCONT.
2729 *-----------------------------------------------------------------------
2732 JobRestartJobs(void)
2736 for (job
= job_table
; job
< job_table_end
; job
++) {
2737 if (job
->job_state
== JOB_ST_RUNNING
&&
2738 (make_suspended
|| job
->job_suspended
)) {
2740 (void)fprintf(debug_file
, "Restarting stopped job pid %d.\n",
2743 if (job
->job_suspended
) {
2744 (void)printf("*** [%s] Continued\n", job
->node
->name
);
2745 (void)fflush(stdout
);
2747 job
->job_suspended
= 0;
2748 if (KILLPG(job
->pid
, SIGCONT
) != 0 && DEBUG(JOB
)) {
2749 fprintf(debug_file
, "Failed to send SIGCONT to %d\n", job
->pid
);
2752 if (job
->job_state
== JOB_ST_FINISHED
)
2753 /* Job exit deferred after calling waitpid() in a signal handler */
2754 JobFinish(job
, job
->exit_status
);
2762 if (job
->inPollfd
!= NULL
)
2763 Punt("Watching watched job");
2765 fds
[nfds
].fd
= job
->inPipe
;
2766 fds
[nfds
].events
= POLLIN
;
2768 job
->inPollfd
= &fds
[nfds
];
2776 if (job
->inPollfd
== NULL
)
2777 Punt("Unwatching unwatched job");
2778 i
= job
->inPollfd
- fds
;
2781 * Move last job in table into hole made by dead job.
2785 jobfds
[i
] = jobfds
[nfds
];
2786 jobfds
[i
]->inPollfd
= &fds
[i
];
2788 job
->inPollfd
= NULL
;
2794 if (job
->inPollfd
== NULL
)
2795 Punt("Polling unwatched job");
2796 return (job
->inPollfd
->revents
& POLLIN
) != 0;
2800 *-----------------------------------------------------------------------
2802 * Put a token into the job pipe so that some make process can start
2806 * Allows more build jobs to be spawned somewhere.
2808 *-----------------------------------------------------------------------
2814 char tok
= JOB_TOKENS
[aborting
], tok1
;
2816 /* If we are depositing an error token flush everything else */
2817 while (tok
!= '+' && read(tokenWaitJob
.inPipe
, &tok1
, 1) == 1)
2821 fprintf(debug_file
, "(%d) aborting %d, deposit token %c\n",
2822 getpid(), aborting
, JOB_TOKENS
[aborting
]);
2823 while (write(tokenWaitJob
.outPipe
, &tok
, 1) == -1 && errno
== EAGAIN
)
2828 *-----------------------------------------------------------------------
2829 * Job_ServerStartTokenAdd --
2830 * Prep the job token pipe in the root make process.
2832 *-----------------------------------------------------------------------
2836 Job_ServerStart(int max_tokens
, int jp_0
, int jp_1
)
2841 if (jp_0
>= 0 && jp_1
>= 0) {
2842 /* Pipe passed in from parent */
2843 tokenWaitJob
.inPipe
= jp_0
;
2844 tokenWaitJob
.outPipe
= jp_1
;
2845 (void)fcntl(jp_0
, F_SETFD
, 1);
2846 (void)fcntl(jp_1
, F_SETFD
, 1);
2850 JobCreatePipe(&tokenWaitJob
, 15);
2852 snprintf(jobarg
, sizeof(jobarg
), "%d,%d",
2853 tokenWaitJob
.inPipe
, tokenWaitJob
.outPipe
);
2855 Var_Append(MAKEFLAGS
, "-J", VAR_GLOBAL
);
2856 Var_Append(MAKEFLAGS
, jobarg
, VAR_GLOBAL
);
2859 * Preload the job pipe with one token per job, save the one
2860 * "extra" token for the primary job.
2862 * XXX should clip maxJobs against PIPE_BUF -- if max_tokens is
2863 * larger than the write buffer size of the pipe, we will
2866 for (i
= 1; i
< max_tokens
; i
++)
2871 *-----------------------------------------------------------------------
2872 * Job_TokenReturn --
2873 * Return a withdrawn token to the pool.
2875 *-----------------------------------------------------------------------
2879 Job_TokenReturn(void)
2882 if (jobTokensRunning
< 0)
2883 Punt("token botch");
2884 if (jobTokensRunning
|| JOB_TOKENS
[aborting
] != '+')
2889 *-----------------------------------------------------------------------
2890 * Job_TokenWithdraw --
2891 * Attempt to withdraw a token from the pool.
2894 * Returns TRUE if a token was withdrawn, and FALSE if the pool
2895 * is currently empty.
2898 * If pool is empty, set wantToken so that we wake up
2899 * when a token is released.
2901 *-----------------------------------------------------------------------
2906 Job_TokenWithdraw(void)
2913 fprintf(debug_file
, "Job_TokenWithdraw(%d): aborting %d, running %d\n",
2914 getpid(), aborting
, jobTokensRunning
);
2916 if (aborting
|| (jobTokensRunning
>= maxJobs
))
2919 count
= read(tokenWaitJob
.inPipe
, &tok
, 1);
2921 Fatal("eof on job pipe!");
2922 if (count
< 0 && jobTokensRunning
!= 0) {
2923 if (errno
!= EAGAIN
) {
2924 Fatal("job pipe read: %s", strerror(errno
));
2927 fprintf(debug_file
, "(%d) blocked for token\n", getpid());
2932 if (count
== 1 && tok
!= '+') {
2933 /* make being abvorted - remove any other job tokens */
2935 fprintf(debug_file
, "(%d) aborted by token %c\n", getpid(), tok
);
2936 while (read(tokenWaitJob
.inPipe
, &tok1
, 1) == 1)
2938 /* And put the stopper back */
2939 while (write(tokenWaitJob
.outPipe
, &tok
, 1) == -1 && errno
== EAGAIN
)
2941 Fatal("A failure has been detected in another branch of the parallel make");
2944 if (count
== 1 && jobTokensRunning
== 0)
2945 /* We didn't want the token really */
2946 while (write(tokenWaitJob
.outPipe
, &tok
, 1) == -1 && errno
== EAGAIN
)
2951 fprintf(debug_file
, "(%d) withdrew token\n", getpid());
2956 *-----------------------------------------------------------------------
2958 * Run the named target if found. If a filename is specified, then
2959 * set that to the sources.
2965 * exits if the target fails.
2967 *-----------------------------------------------------------------------
2970 Job_RunTarget(const char *target
, const char *fname
) {
2971 GNode
*gn
= Targ_FindNode(target
, TARG_NOCREATE
);
2977 Var_Set(ALLSRC
, fname
, gn
, 0);
2980 if (gn
->made
== ERROR
) {
2981 PrintOnError(gn
, "\n\nStop.");
2989 emul_poll(struct pollfd
*fd
, int nfd
, int timeout
)
2992 int i
, maxfd
, nselect
, npoll
;
2993 struct timeval tv
, *tvp
;
3000 for (i
= 0; i
< nfd
; i
++) {
3003 if (fd
[i
].events
& POLLIN
)
3004 FD_SET(fd
[i
].fd
, &rfds
);
3006 if (fd
[i
].events
& POLLOUT
)
3007 FD_SET(fd
[i
].fd
, &wfds
);
3009 if (fd
[i
].fd
> maxfd
)
3013 if (maxfd
>= FD_SETSIZE
) {
3014 Punt("Ran out of fd_set slots; "
3015 "recompile with a larger FD_SETSIZE.");
3021 usecs
= timeout
* 1000;
3022 tv
.tv_sec
= usecs
/ 1000000;
3023 tv
.tv_usec
= usecs
% 1000000;
3027 nselect
= select(maxfd
+ 1, &rfds
, &wfds
, 0, tvp
);
3033 for (i
= 0; i
< nfd
; i
++) {
3034 if (FD_ISSET(fd
[i
].fd
, &rfds
))
3035 fd
[i
].revents
|= POLLIN
;
3037 if (FD_ISSET(fd
[i
].fd
, &wfds
))
3038 fd
[i
].revents
|= POLLOUT
;
3046 #endif /* USE_SELECT */