1 /* $NetBSD: job.c,v 1.455 2022/09/03 08:41:07 rillig 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
74 * handle the creation etc. of our child processes.
77 * Job_Init Called to initialize this module. In addition,
78 * the .BEGIN target is made including all of its
79 * dependencies before this function returns.
80 * Hence, the makefiles must have been parsed
81 * before this function is called.
83 * Job_End Clean up any memory used.
85 * Job_Make Start the creation of the given target.
88 * Check for and handle the termination of any
89 * children. This must be called reasonably
90 * frequently to keep the whole make going at
91 * a decent clip, since job table entries aren't
92 * removed until their process is caught this way.
95 * Print any output our children have produced.
96 * Should also be called fairly frequently to
97 * keep the user informed of what's going on.
98 * If no output is waiting, it will block for
99 * a time given by the SEL_* constants, below,
100 * or until output is ready.
102 * Job_ParseShell Given a special dependency line with target '.SHELL',
103 * define the shell that is used for the creation
104 * commands in jobs mode.
106 * Job_Finish Perform any final processing which needs doing.
107 * This includes the execution of any commands
108 * which have been/were attached to the .END
109 * target. It should only be called when the
110 * job table is empty.
112 * Job_AbortAll Abort all currently running jobs. Do not handle
113 * output or do anything for the jobs, just kill them.
114 * Should only be called in an emergency.
117 * Verify that the commands for a target are
118 * ok. Provide them if necessary and possible.
120 * Job_Touch Update a target without really updating it.
122 * Job_Wait Wait for all currently-running jobs to finish.
128 #include <sys/types.h>
129 #include <sys/stat.h>
130 #include <sys/file.h>
131 #include <sys/time.h>
135 #if !defined(USE_SELECT) && defined(HAVE_POLL_H)
138 #ifndef USE_SELECT /* no poll.h */
141 #if defined(HAVE_SYS_SELECT_H)
142 # include <sys/select.h>
147 #if defined(HAVE_SYS_SOCKET_H)
148 # include <sys/socket.h>
154 #include "pathnames.h"
157 /* "@(#)job.c 8.2 (Berkeley) 3/19/94" */
158 MAKE_RCSID("$NetBSD: job.c,v 1.455 2022/09/03 08:41:07 rillig Exp $");
161 * A shell defines how the commands are run. All commands for a target are
162 * written into a single file, which is then given to the shell to execute
163 * the commands from it. The commands are written to the file using a few
164 * templates for echo control and error control.
166 * The name of the shell is the basename for the predefined shells, such as
167 * "sh", "csh", "bash". For custom shells, it is the full pathname, and its
168 * basename is used to select the type of shell; the longest match wins.
169 * So /usr/pkg/bin/bash has type sh, /usr/local/bin/tcsh has type csh.
171 * The echoing of command lines is controlled using hasEchoCtl, echoOff,
172 * echoOn, noPrint and noPrintLen. When echoOff is executed by the shell, it
173 * still outputs something, but this something is not interesting, therefore
174 * it is filtered out using noPrint and noPrintLen.
176 * The error checking for individual commands is controlled using hasErrCtl,
177 * errOn, errOff and runChkTmpl.
179 * In case a shell doesn't have error control, echoTmpl is a printf template
180 * for echoing the command, should echoing be on; runIgnTmpl is another
181 * printf template for executing the command while ignoring the return
182 * status. Finally runChkTmpl is a printf template for running the command and
183 * causing the shell to exit on error. If any of these strings are empty when
184 * hasErrCtl is false, the command will be executed anyway as is, and if it
185 * causes an error, so be it. Any templates set up to echo the command will
186 * escape any '$ ` \ "' characters in the command string to avoid unwanted
187 * shell code injection, the escaped command is safe to use in double quotes.
189 * The command-line flags "echo" and "exit" also control the behavior. The
190 * "echo" flag causes the shell to start echoing commands right away. The
191 * "exit" flag causes the shell to exit when an error is detected in one of
194 typedef struct Shell
{
197 * The name of the shell. For Bourne and C shells, this is used only
198 * to find the shell description when used as the single source of a
199 * .SHELL target. For user-defined shells, this is the full path of
204 bool hasEchoCtl
; /* whether both echoOff and echoOn are there */
205 const char *echoOff
; /* command to turn echoing off */
206 const char *echoOn
; /* command to turn echoing back on */
207 const char *noPrint
; /* text to skip when printing output from the
208 * shell. This is usually the same as echoOff */
209 size_t noPrintLen
; /* length of noPrint command */
211 bool hasErrCtl
; /* whether error checking can be controlled
212 * for individual commands */
213 const char *errOn
; /* command to turn on error checking */
214 const char *errOff
; /* command to turn off error checking */
216 const char *echoTmpl
; /* template to echo a command */
217 const char *runIgnTmpl
; /* template to run a command without error
219 const char *runChkTmpl
; /* template to run a command with error
223 * A string literal that results in a newline character when it
224 * occurs outside of any 'quote' or "quote" characters.
227 char commentChar
; /* character used by shell for comment lines */
229 const char *echoFlag
; /* shell flag to echo commands */
230 const char *errFlag
; /* shell flag to exit on error */
233 typedef struct CommandFlags
{
234 /* Whether to echo the command before or instead of running it. */
237 /* Run the command even in -n or -N mode. */
241 * true if we turned error checking off before writing the command to
242 * the commands file and need to turn it back on
248 * Write shell commands to a file.
250 * TODO: keep track of whether commands are echoed.
251 * TODO: keep track of whether error checking is active.
253 typedef struct ShellWriter
{
256 /* we've sent 'set -x' */
262 * error handling variables
264 static int job_errors
= 0; /* number of errors reported */
265 static enum { /* Why is the make aborting? */
267 ABORT_ERROR
, /* Aborted because of an error */
268 ABORT_INTERRUPT
, /* Aborted because it was interrupted */
269 ABORT_WAIT
/* Waiting for jobs to finish */
270 } aborting
= ABORT_NONE
;
271 #define JOB_TOKENS "+EI+" /* Token to requeue for each abort state */
274 * this tracks the number of tokens currently "out" to build jobs.
276 int jobTokensRunning
= 0;
278 typedef enum JobStartResult
{
279 JOB_RUNNING
, /* Job is running */
280 JOB_ERROR
, /* Error in starting the job */
281 JOB_FINISHED
/* The job is already finished */
285 * Descriptions for various shells.
287 * The build environment may set DEFSHELL_INDEX to one of
288 * DEFSHELL_INDEX_SH, DEFSHELL_INDEX_KSH, or DEFSHELL_INDEX_CSH, to
289 * select one of the predefined shells as the default shell.
291 * Alternatively, the build environment may set DEFSHELL_CUSTOM to the
292 * name or the full path of a sh-compatible shell, which will be used as
295 * ".SHELL" lines in Makefiles can choose the default shell from the
296 * set defined here, or add additional shells.
299 #ifdef DEFSHELL_CUSTOM
300 #define DEFSHELL_INDEX_CUSTOM 0
301 #define DEFSHELL_INDEX_SH 1
302 #define DEFSHELL_INDEX_KSH 2
303 #define DEFSHELL_INDEX_CSH 3
304 #else /* !DEFSHELL_CUSTOM */
305 #define DEFSHELL_INDEX_SH 0
306 #define DEFSHELL_INDEX_KSH 1
307 #define DEFSHELL_INDEX_CSH 2
308 #endif /* !DEFSHELL_CUSTOM */
310 #ifndef DEFSHELL_INDEX
311 #define DEFSHELL_INDEX 0 /* DEFSHELL_INDEX_CUSTOM or DEFSHELL_INDEX_SH */
312 #endif /* !DEFSHELL_INDEX */
314 static Shell shells
[] = {
315 #ifdef DEFSHELL_CUSTOM
317 * An sh-compatible shell with a non-standard name.
319 * Keep this in sync with the "sh" description below, but avoid
320 * non-portable features that might not be supplied by all
321 * sh-compatible shells.
324 DEFSHELL_CUSTOM
, /* .name */
325 false, /* .hasEchoCtl */
330 false, /* .hasErrCtl */
333 "echo \"%s\"\n", /* .echoTmpl */
334 "%s\n", /* .runIgnTmpl */
335 "{ %s \n} || exit $?\n", /* .runChkTmpl */
336 "'\n'", /* .newline */
337 '#', /* .commentChar */
341 #endif /* DEFSHELL_CUSTOM */
343 * SH description. Echo control is also possible and, under
344 * sun UNIX anyway, one can even control error checking.
348 false, /* .hasEchoCtl */
353 false, /* .hasErrCtl */
356 "echo \"%s\"\n", /* .echoTmpl */
357 "%s\n", /* .runIgnTmpl */
358 "{ %s \n} || exit $?\n", /* .runChkTmpl */
359 "'\n'", /* .newline */
360 '#', /* .commentChar*/
361 #if defined(MAKE_NATIVE) && defined(__NetBSD__)
362 /* XXX: -q is not really echoFlag, it's more like noEchoInSysFlag. */
374 true, /* .hasEchoCtl */
375 "set +v", /* .echoOff */
376 "set -v", /* .echoOn */
377 "set +v", /* .noPrint */
379 false, /* .hasErrCtl */
382 "echo \"%s\"\n", /* .echoTmpl */
383 "%s\n", /* .runIgnTmpl */
384 "{ %s \n} || exit $?\n", /* .runChkTmpl */
385 "'\n'", /* .newline */
386 '#', /* .commentChar */
391 * CSH description. The csh can do echo control by playing
392 * with the setting of the 'echo' shell variable. Sadly,
393 * however, it is unable to do error control nicely.
397 true, /* .hasEchoCtl */
398 "unset verbose", /* .echoOff */
399 "set verbose", /* .echoOn */
400 "unset verbose", /* .noPrint */
401 13, /* .noPrintLen */
402 false, /* .hasErrCtl */
405 "echo \"%s\"\n", /* .echoTmpl */
406 "csh -c \"%s || exit 0\"\n", /* .runIgnTmpl */
407 "", /* .runChkTmpl */
408 "'\\\n'", /* .newline */
409 '#', /* .commentChar */
416 * This is the shell to which we pass all commands in the Makefile.
417 * It is set by the Job_ParseShell function.
419 static Shell
*shell
= &shells
[DEFSHELL_INDEX
];
420 const char *shellPath
= NULL
; /* full pathname of executable image */
421 const char *shellName
= NULL
; /* last component of shellPath */
422 char *shellErrFlag
= NULL
;
423 static char *shell_freeIt
= NULL
; /* Allocated memory for custom .SHELL */
426 static Job
*job_table
; /* The structures that describe them */
427 static Job
*job_table_end
; /* job_table + maxJobs */
428 static unsigned int wantToken
; /* we want a token */
429 static bool lurking_children
= false;
430 static bool make_suspended
= false; /* Whether we've seen a SIGTSTP (etc) */
433 * Set of descriptors of pipes connected to
434 * the output channels of children
436 static struct pollfd
*fds
= NULL
;
437 static Job
**jobByFdIndex
= NULL
;
438 static nfds_t fdsLen
= 0;
439 static void watchfd(Job
*);
440 static void clearfd(Job
*);
441 static bool readyfd(Job
*);
443 static char *targPrefix
= NULL
; /* To identify a job change in the output. */
444 static Job tokenWaitJob
; /* token wait pseudo-job */
446 static Job childExitJob
; /* child exit pseudo-job */
447 #define CHILD_EXIT "."
448 #define DO_JOB_RESUME "R"
451 npseudojobs
= 2 /* number of pseudo-jobs */
454 static sigset_t caught_signals
; /* Set of signals we handle */
455 static volatile sig_atomic_t caught_sigchld
;
457 static void CollectOutput(Job
*, bool);
458 static void JobInterrupt(bool, int) MAKE_ATTR_DEAD
;
459 static void JobRestartJobs(void);
460 static void JobSigReset(void);
463 SwitchOutputTo(GNode
*gn
)
465 /* The node for which output was most recently produced. */
466 static GNode
*lastNode
= NULL
;
472 if (opts
.maxJobs
!= 1 && targPrefix
!= NULL
&& targPrefix
[0] != '\0')
473 (void)fprintf(stdout
, "%s %s ---\n", targPrefix
, gn
->name
);
479 #if defined(USE_FILEMON) && !defined(USE_FILEMON_DEV)
487 Job_FlagsToString(const Job
*job
, char *buf
, size_t bufsize
)
489 snprintf(buf
, bufsize
, "%c%c%c",
490 job
->ignerr
? 'i' : '-',
491 !job
->echo
? 's' : '-',
492 job
->special
? 'S' : '-');
496 DumpJobs(const char *where
)
501 debug_printf("job table @ %s\n", where
);
502 for (job
= job_table
; job
< job_table_end
; job
++) {
503 Job_FlagsToString(job
, flags
, sizeof flags
);
504 debug_printf("job %d, status %d, flags %s, pid %d\n",
505 (int)(job
- job_table
), job
->status
, flags
, job
->pid
);
510 * Delete the target of a failed, interrupted, or otherwise
511 * unsuccessful job unless inhibited by .PRECIOUS.
514 JobDeleteTarget(GNode
*gn
)
518 if (gn
->type
& OP_JOIN
)
520 if (gn
->type
& OP_PHONY
)
522 if (GNode_IsPrecious(gn
))
527 file
= GNode_Path(gn
);
528 if (unlink_file(file
))
529 Error("*** %s removed", file
);
533 * JobSigLock/JobSigUnlock
535 * Signal lock routines to get exclusive access. Currently used to
536 * protect `jobs' and `stoppedJobs' list manipulations.
539 JobSigLock(sigset_t
*omaskp
)
541 if (sigprocmask(SIG_BLOCK
, &caught_signals
, omaskp
) != 0) {
542 Punt("JobSigLock: sigprocmask: %s", strerror(errno
));
548 JobSigUnlock(sigset_t
*omaskp
)
550 (void)sigprocmask(SIG_SETMASK
, omaskp
, NULL
);
554 JobCreatePipe(Job
*job
, int minfd
)
559 if (pipe(pipe_fds
) == -1)
560 Punt("Cannot create pipe: %s", strerror(errno
));
562 for (i
= 0; i
< 2; i
++) {
563 /* Avoid using low numbered fds */
564 fd
= fcntl(pipe_fds
[i
], F_DUPFD
, minfd
);
571 job
->inPipe
= pipe_fds
[0];
572 job
->outPipe
= pipe_fds
[1];
574 /* Set close-on-exec flag for both */
575 if (fcntl(job
->inPipe
, F_SETFD
, FD_CLOEXEC
) == -1)
576 Punt("Cannot set close-on-exec: %s", strerror(errno
));
577 if (fcntl(job
->outPipe
, F_SETFD
, FD_CLOEXEC
) == -1)
578 Punt("Cannot set close-on-exec: %s", strerror(errno
));
581 * We mark the input side of the pipe non-blocking; we poll(2) the
582 * pipe when we're waiting for a job token, but we might lose the
583 * race for the token when a new one becomes available, so the read
584 * from the pipe should not block.
586 flags
= fcntl(job
->inPipe
, F_GETFL
, 0);
588 Punt("Cannot get flags: %s", strerror(errno
));
590 if (fcntl(job
->inPipe
, F_SETFL
, flags
) == -1)
591 Punt("Cannot set flags: %s", strerror(errno
));
594 /* Pass the signal to each running job. */
596 JobCondPassSig(int signo
)
600 DEBUG1(JOB
, "JobCondPassSig(%d) called.\n", signo
);
602 for (job
= job_table
; job
< job_table_end
; job
++) {
603 if (job
->status
!= JOB_ST_RUNNING
)
605 DEBUG2(JOB
, "JobCondPassSig passing signal %d to child %d.\n",
607 KILLPG(job
->pid
, signo
);
614 * Sends a token on the child exit pipe to wake us up from select()/poll().
618 JobChildSig(int signo MAKE_ATTR_UNUSED
)
621 while (write(childExitJob
.outPipe
, CHILD_EXIT
, 1) == -1 &&
627 /* Resume all stopped jobs. */
630 JobContinueSig(int signo MAKE_ATTR_UNUSED
)
633 * Defer sending SIGCONT to our stopped children until we return
634 * from the signal handler.
636 while (write(childExitJob
.outPipe
, DO_JOB_RESUME
, 1) == -1 &&
642 * Pass a signal on to all jobs, then resend to ourselves.
643 * We die by the same signal.
645 MAKE_ATTR_DEAD
static void
646 JobPassSig_int(int signo
)
648 /* Run .INTERRUPT target then exit */
649 JobInterrupt(true, signo
);
653 * Pass a signal on to all jobs, then resend to ourselves.
654 * We die by the same signal.
656 MAKE_ATTR_DEAD
static void
657 JobPassSig_term(int signo
)
659 /* Dont run .INTERRUPT target then exit */
660 JobInterrupt(false, signo
);
664 JobPassSig_suspend(int signo
)
666 sigset_t nmask
, omask
;
667 struct sigaction act
;
669 /* Suppress job started/continued messages */
670 make_suspended
= true;
672 /* Pass the signal onto every job */
673 JobCondPassSig(signo
);
676 * Send ourselves the signal now we've given the message to everyone
677 * else. Note we block everything else possible while we're getting
678 * the signal. This ensures that all our jobs get continued when we
679 * wake up before we take any other signal.
682 sigdelset(&nmask
, signo
);
683 (void)sigprocmask(SIG_SETMASK
, &nmask
, &omask
);
685 act
.sa_handler
= SIG_DFL
;
686 sigemptyset(&act
.sa_mask
);
688 (void)sigaction(signo
, &act
, NULL
);
690 DEBUG1(JOB
, "JobPassSig passing signal %d to self.\n", signo
);
692 (void)kill(getpid(), signo
);
695 * We've been continued.
697 * A whole host of signals continue to happen!
698 * SIGCHLD for any processes that actually suspended themselves.
699 * SIGCHLD for any processes that exited while we were alseep.
700 * The SIGCONT that actually caused us to wakeup.
702 * Since we defer passing the SIGCONT on to our children until
703 * the main processing loop, we can be sure that all the SIGCHLD
704 * events will have happened by then - and that the waitpid() will
705 * collect the child 'suspended' events.
706 * For correct sequencing we just need to ensure we process the
707 * waitpid() before passing on the SIGCONT.
709 * In any case nothing else is needed here.
712 /* Restore handler and signal mask */
713 act
.sa_handler
= JobPassSig_suspend
;
714 (void)sigaction(signo
, &act
, NULL
);
715 (void)sigprocmask(SIG_SETMASK
, &omask
, NULL
);
719 JobFindPid(int pid
, JobStatus status
, bool isJobs
)
723 for (job
= job_table
; job
< job_table_end
; job
++) {
724 if (job
->status
== status
&& job
->pid
== pid
)
727 if (DEBUG(JOB
) && isJobs
)
732 /* Parse leading '@', '-' and '+', which control the exact execution mode. */
734 ParseCommandFlags(char **pp
, CommandFlags
*out_cmdFlags
)
737 out_cmdFlags
->echo
= true;
738 out_cmdFlags
->ignerr
= false;
739 out_cmdFlags
->always
= false;
743 out_cmdFlags
->echo
= DEBUG(LOUD
);
745 out_cmdFlags
->ignerr
= true;
747 out_cmdFlags
->always
= true;
753 pp_skip_whitespace(&p
);
758 /* Escape a string for a double-quoted string literal in sh, csh and ksh. */
760 EscapeShellDblQuot(const char *cmd
)
764 /* Worst that could happen is every char needs escaping. */
765 char *esc
= bmake_malloc(strlen(cmd
) * 2 + 1);
766 for (i
= 0, j
= 0; cmd
[i
] != '\0'; i
++, j
++) {
767 if (cmd
[i
] == '$' || cmd
[i
] == '`' || cmd
[i
] == '\\' ||
778 ShellWriter_WriteFmt(ShellWriter
*wr
, const char *fmt
, const char *arg
)
780 DEBUG1(JOB
, fmt
, arg
);
782 (void)fprintf(wr
->f
, fmt
, arg
);
788 ShellWriter_WriteLine(ShellWriter
*wr
, const char *line
)
790 ShellWriter_WriteFmt(wr
, "%s\n", line
);
794 ShellWriter_EchoOff(ShellWriter
*wr
)
796 if (shell
->hasEchoCtl
)
797 ShellWriter_WriteLine(wr
, shell
->echoOff
);
801 ShellWriter_EchoCmd(ShellWriter
*wr
, const char *escCmd
)
803 ShellWriter_WriteFmt(wr
, shell
->echoTmpl
, escCmd
);
807 ShellWriter_EchoOn(ShellWriter
*wr
)
809 if (shell
->hasEchoCtl
)
810 ShellWriter_WriteLine(wr
, shell
->echoOn
);
814 ShellWriter_TraceOn(ShellWriter
*wr
)
817 ShellWriter_WriteLine(wr
, "set -x");
823 ShellWriter_ErrOff(ShellWriter
*wr
, bool echo
)
826 ShellWriter_EchoOff(wr
);
827 ShellWriter_WriteLine(wr
, shell
->errOff
);
829 ShellWriter_EchoOn(wr
);
833 ShellWriter_ErrOn(ShellWriter
*wr
, bool echo
)
836 ShellWriter_EchoOff(wr
);
837 ShellWriter_WriteLine(wr
, shell
->errOn
);
839 ShellWriter_EchoOn(wr
);
843 * The shell has no built-in error control, so emulate error control by
844 * enclosing each shell command in a template like "{ %s \n } || exit $?"
845 * (configurable per shell).
848 JobWriteSpecialsEchoCtl(Job
*job
, ShellWriter
*wr
, CommandFlags
*inout_cmdFlags
,
849 const char *escCmd
, const char **inout_cmdTemplate
)
851 /* XXX: Why is the whole job modified at this point? */
854 if (job
->echo
&& inout_cmdFlags
->echo
) {
855 ShellWriter_EchoOff(wr
);
856 ShellWriter_EchoCmd(wr
, escCmd
);
859 * Leave echoing off so the user doesn't see the commands
860 * for toggling the error checking.
862 inout_cmdFlags
->echo
= false;
864 *inout_cmdTemplate
= shell
->runIgnTmpl
;
867 * The template runIgnTmpl already takes care of ignoring errors,
868 * so pretend error checking is still on.
869 * XXX: What effects does this have, and why is it necessary?
871 inout_cmdFlags
->ignerr
= false;
875 JobWriteSpecials(Job
*job
, ShellWriter
*wr
, const char *escCmd
, bool run
,
876 CommandFlags
*inout_cmdFlags
, const char **inout_cmdTemplate
)
880 * If there is no command to run, there is no need to switch
881 * error checking off and on again for nothing.
883 inout_cmdFlags
->ignerr
= false;
884 } else if (shell
->hasErrCtl
)
885 ShellWriter_ErrOff(wr
, job
->echo
&& inout_cmdFlags
->echo
);
886 else if (shell
->runIgnTmpl
!= NULL
&& shell
->runIgnTmpl
[0] != '\0') {
887 JobWriteSpecialsEchoCtl(job
, wr
, inout_cmdFlags
, escCmd
,
890 inout_cmdFlags
->ignerr
= false;
894 * Write a shell command to the job's commands file, to be run later.
896 * If the command starts with '@' and neither the -s nor the -n flag was
897 * given to make, stick a shell-specific echoOff command in the script.
899 * If the command starts with '-' and the shell has no error control (none
900 * of the predefined shells has that), ignore errors for the entire job.
902 * XXX: Why ignore errors for the entire job? This is even documented in the
903 * manual page, but without any rationale since there is no known rationale.
905 * XXX: The manual page says the '-' "affects the entire job", but that's not
906 * accurate. The '-' does not affect the commands before the '-'.
908 * If the command is just "...", skip all further commands of this job. These
909 * commands are attached to the .END node instead and will be run by
910 * Job_Finish after all other targets have been made.
913 JobWriteCommand(Job
*job
, ShellWriter
*wr
, StringListNode
*ln
, const char *ucmd
)
917 CommandFlags cmdFlags
;
918 /* Template for writing a command to the shell file */
919 const char *cmdTemplate
;
920 char *xcmd
; /* The expanded command */
922 char *escCmd
; /* xcmd escaped to be used in double quotes */
924 run
= GNode_ShouldExecute(job
->node
);
926 (void)Var_Subst(ucmd
, job
->node
, VARE_WANTRES
, &xcmd
);
927 /* TODO: handle errors */
930 cmdTemplate
= "%s\n";
932 ParseCommandFlags(&xcmd
, &cmdFlags
);
934 /* The '+' command flag overrides the -n or -N options. */
935 if (cmdFlags
.always
&& !run
) {
937 * We're not actually executing anything...
938 * but this one needs to be - use compat mode just for it.
940 (void)Compat_RunCommand(ucmd
, job
->node
, ln
);
946 * If the shell doesn't have error control, the alternate echoing
947 * will be done (to avoid showing additional error checking code)
948 * and this needs some characters escaped.
950 escCmd
= shell
->hasErrCtl
? NULL
: EscapeShellDblQuot(xcmd
);
952 if (!cmdFlags
.echo
) {
953 if (job
->echo
&& run
&& shell
->hasEchoCtl
) {
954 ShellWriter_EchoOff(wr
);
956 if (shell
->hasErrCtl
)
957 cmdFlags
.echo
= true;
961 if (cmdFlags
.ignerr
) {
962 JobWriteSpecials(job
, wr
, escCmd
, run
, &cmdFlags
, &cmdTemplate
);
966 * If errors are being checked and the shell doesn't have
967 * error control but does supply an runChkTmpl template, then
968 * set up commands to run through it.
971 if (!shell
->hasErrCtl
&& shell
->runChkTmpl
!= NULL
&&
972 shell
->runChkTmpl
[0] != '\0') {
973 if (job
->echo
&& cmdFlags
.echo
) {
974 ShellWriter_EchoOff(wr
);
975 ShellWriter_EchoCmd(wr
, escCmd
);
976 cmdFlags
.echo
= false;
979 * If it's a comment line or blank, avoid the possible
980 * syntax error generated by "{\n} || exit $?".
982 cmdTemplate
= escCmd
[0] == shell
->commentChar
||
986 cmdFlags
.ignerr
= false;
990 if (DEBUG(SHELL
) && strcmp(shellName
, "sh") == 0)
991 ShellWriter_TraceOn(wr
);
993 ShellWriter_WriteFmt(wr
, cmdTemplate
, xcmd
);
998 ShellWriter_ErrOn(wr
, cmdFlags
.echo
&& job
->echo
);
1001 ShellWriter_EchoOn(wr
);
1005 * Write all commands to the shell file that is later executed.
1007 * The special command "..." stops writing and saves the remaining commands
1008 * to be executed later, when the target '.END' is made.
1010 * Return whether at least one command was written to the shell file.
1013 JobWriteCommands(Job
*job
)
1019 wr
.f
= job
->cmdFILE
;
1022 for (ln
= job
->node
->commands
.first
; ln
!= NULL
; ln
= ln
->next
) {
1023 const char *cmd
= ln
->datum
;
1025 if (strcmp(cmd
, "...") == 0) {
1026 job
->node
->type
|= OP_SAVE_CMDS
;
1027 job
->tailCmds
= ln
->next
;
1031 JobWriteCommand(job
, &wr
, ln
, ln
->datum
);
1039 * Save the delayed commands (those after '...'), to be executed later in
1040 * the '.END' node, when everything else is done.
1043 JobSaveCommands(Job
*job
)
1047 for (ln
= job
->tailCmds
; ln
!= NULL
; ln
= ln
->next
) {
1048 const char *cmd
= ln
->datum
;
1051 * XXX: This Var_Subst is only intended to expand the dynamic
1052 * variables such as .TARGET, .IMPSRC. It is not intended to
1053 * expand the other variables as well; see deptgt-end.mk.
1055 (void)Var_Subst(cmd
, job
->node
, VARE_WANTRES
, &expanded_cmd
);
1056 /* TODO: handle errors */
1057 Lst_Append(&Targ_GetEndNode()->commands
, expanded_cmd
);
1062 /* Called to close both input and output pipes when a job is finished. */
1064 JobClosePipes(Job
*job
)
1067 (void)close(job
->outPipe
);
1070 CollectOutput(job
, true);
1071 (void)close(job
->inPipe
);
1076 DebugFailedJob(const Job
*job
)
1078 const StringListNode
*ln
;
1084 debug_printf("*** Failed target: %s\n", job
->node
->name
);
1085 debug_printf("*** Failed commands:\n");
1086 for (ln
= job
->node
->commands
.first
; ln
!= NULL
; ln
= ln
->next
) {
1087 const char *cmd
= ln
->datum
;
1088 debug_printf("\t%s\n", cmd
);
1090 if (strchr(cmd
, '$') != NULL
) {
1092 (void)Var_Subst(cmd
, job
->node
, VARE_WANTRES
, &xcmd
);
1093 debug_printf("\t=> %s\n", xcmd
);
1100 JobFinishDoneExitedError(Job
*job
, WAIT_T
*inout_status
)
1102 SwitchOutputTo(job
->node
);
1105 meta_job_error(job
, job
->node
,
1106 job
->ignerr
, WEXITSTATUS(*inout_status
));
1109 if (!shouldDieQuietly(job
->node
, -1)) {
1110 DebugFailedJob(job
);
1111 (void)printf("*** [%s] Error code %d%s\n",
1112 job
->node
->name
, WEXITSTATUS(*inout_status
),
1113 job
->ignerr
? " (ignored)" : "");
1117 WAIT_STATUS(*inout_status
) = 0;
1120 JobDeleteTarget(job
->node
);
1121 PrintOnError(job
->node
, "\n");
1126 JobFinishDoneExited(Job
*job
, WAIT_T
*inout_status
)
1128 DEBUG2(JOB
, "Process %d [%s] exited.\n", job
->pid
, job
->node
->name
);
1130 if (WEXITSTATUS(*inout_status
) != 0)
1131 JobFinishDoneExitedError(job
, inout_status
);
1132 else if (DEBUG(JOB
)) {
1133 SwitchOutputTo(job
->node
);
1134 (void)printf("*** [%s] Completed successfully\n",
1140 JobFinishDoneSignaled(Job
*job
, WAIT_T status
)
1142 SwitchOutputTo(job
->node
);
1143 DebugFailedJob(job
);
1144 (void)printf("*** [%s] Signal %d\n", job
->node
->name
, WTERMSIG(status
));
1146 JobDeleteTarget(job
->node
);
1150 JobFinishDone(Job
*job
, WAIT_T
*inout_status
)
1152 if (WIFEXITED(*inout_status
))
1153 JobFinishDoneExited(job
, inout_status
);
1155 JobFinishDoneSignaled(job
, *inout_status
);
1157 (void)fflush(stdout
);
1161 * Do final processing for the given job including updating parent nodes and
1162 * starting new jobs as available/necessary.
1164 * Deferred commands for the job are placed on the .END node.
1166 * If there was a serious error (job_errors != 0; not an ignored one), no more
1167 * jobs will be started.
1171 * status sub-why job went away
1174 JobFinish (Job
*job
, WAIT_T status
)
1176 bool done
, return_job_token
;
1178 DEBUG3(JOB
, "JobFinish: %d [%s], status %d\n",
1179 job
->pid
, job
->node
->name
, status
);
1181 if ((WIFEXITED(status
) &&
1182 ((WEXITSTATUS(status
) != 0 && !job
->ignerr
))) ||
1183 WIFSIGNALED(status
)) {
1184 /* Finished because of an error. */
1187 if (job
->cmdFILE
!= NULL
&& job
->cmdFILE
!= stdout
) {
1188 if (fclose(job
->cmdFILE
) != 0)
1189 Punt("Cannot write shell script for '%s': %s",
1190 job
->node
->name
, strerror(errno
));
1191 job
->cmdFILE
= NULL
;
1195 } else if (WIFEXITED(status
)) {
1197 * Deal with ignored errors in -B mode. We need to print a
1198 * message telling of the ignored error as well as to run
1201 done
= WEXITSTATUS(status
) != 0;
1206 /* No need to close things down or anything. */
1211 JobFinishDone(job
, &status
);
1215 int meta_status
= meta_job_finish(job
);
1216 if (meta_status
!= 0 && status
== 0)
1217 status
= meta_status
;
1221 return_job_token
= false;
1223 Trace_Log(JOBEND
, job
);
1224 if (!job
->special
) {
1225 if (WAIT_STATUS(status
) != 0 ||
1226 (aborting
== ABORT_ERROR
) || aborting
== ABORT_INTERRUPT
)
1227 return_job_token
= true;
1230 if (aborting
!= ABORT_ERROR
&& aborting
!= ABORT_INTERRUPT
&&
1231 (WAIT_STATUS(status
) == 0)) {
1233 * As long as we aren't aborting and the job didn't return a
1234 * non-zero status that we shouldn't ignore, we call
1235 * Make_Update to update the parents.
1237 JobSaveCommands(job
);
1238 job
->node
->made
= MADE
;
1240 return_job_token
= true;
1241 Make_Update(job
->node
);
1242 job
->status
= JOB_ST_FREE
;
1243 } else if (status
!= 0) {
1245 job
->status
= JOB_ST_FREE
;
1248 if (job_errors
> 0 && !opts
.keepgoing
&& aborting
!= ABORT_INTERRUPT
) {
1249 /* Prevent more jobs from getting started. */
1250 aborting
= ABORT_ERROR
;
1253 if (return_job_token
)
1256 if (aborting
== ABORT_ERROR
&& jobTokensRunning
== 0)
1261 TouchRegular(GNode
*gn
)
1263 const char *file
= GNode_Path(gn
);
1264 struct utimbuf times
;
1269 times
.modtime
= now
;
1270 if (utime(file
, ×
) >= 0)
1273 fd
= open(file
, O_RDWR
| O_CREAT
, 0666);
1275 (void)fprintf(stderr
, "*** couldn't touch %s: %s\n",
1276 file
, strerror(errno
));
1277 (void)fflush(stderr
);
1278 return; /* XXX: What about propagating the error? */
1282 * Last resort: update the file's time stamps in the traditional way.
1283 * XXX: This doesn't work for empty files, which are sometimes used
1286 if (read(fd
, &c
, 1) == 1) {
1287 (void)lseek(fd
, 0, SEEK_SET
);
1288 while (write(fd
, &c
, 1) == -1 && errno
== EAGAIN
)
1291 (void)close(fd
); /* XXX: What about propagating the error? */
1295 * Touch the given target. Called by JobStart when the -t flag was given.
1297 * The modification date of the file is changed.
1298 * If the file did not exist, it is created.
1301 Job_Touch(GNode
*gn
, bool echo
)
1304 (OP_JOIN
| OP_USE
| OP_USEBEFORE
| OP_EXEC
| OP_OPTIONAL
|
1305 OP_SPECIAL
| OP_PHONY
)) {
1307 * These are "virtual" targets and should not really be
1313 if (echo
|| !GNode_ShouldExecute(gn
)) {
1314 (void)fprintf(stdout
, "touch %s\n", gn
->name
);
1315 (void)fflush(stdout
);
1318 if (!GNode_ShouldExecute(gn
))
1321 if (gn
->type
& OP_ARCHV
)
1323 else if (gn
->type
& OP_LIB
)
1330 * Make sure the given node has all the commands it needs.
1332 * The node will have commands from the .DEFAULT rule added to it if it
1336 * gn The target whose commands need verifying
1337 * abortProc Function to abort with message
1340 * true if the commands list is/was ok.
1343 Job_CheckCommands(GNode
*gn
, void (*abortProc
)(const char *, ...))
1345 if (GNode_IsTarget(gn
))
1347 if (!Lst_IsEmpty(&gn
->commands
))
1349 if ((gn
->type
& OP_LIB
) && !Lst_IsEmpty(&gn
->children
))
1353 * No commands. Look for .DEFAULT rule from which we might infer
1356 if (defaultNode
!= NULL
&& !Lst_IsEmpty(&defaultNode
->commands
) &&
1357 !(gn
->type
& OP_SPECIAL
)) {
1359 * The traditional Make only looks for a .DEFAULT if the node
1360 * was never the target of an operator, so that's what we do
1363 * The .DEFAULT node acts like a transformation rule, in that
1364 * gn also inherits any attributes or sources attached to
1367 Make_HandleUse(defaultNode
, gn
);
1368 Var_Set(gn
, IMPSRC
, GNode_VarTarget(gn
));
1372 Dir_UpdateMTime(gn
, false);
1373 if (gn
->mtime
!= 0 || (gn
->type
& OP_SPECIAL
))
1377 * The node wasn't the target of an operator. We have no .DEFAULT
1378 * rule to go on and the target doesn't already exist. There's
1379 * nothing more we can do for this branch. If the -k flag wasn't
1380 * given, we stop in our tracks, otherwise we just don't update
1381 * this node's parents so they never get examined.
1384 if (gn
->flags
.fromDepend
) {
1385 if (!Job_RunTarget(".STALE", gn
->fname
))
1387 "%s: %s, %u: ignoring stale %s for %s\n",
1388 progname
, gn
->fname
, gn
->lineno
, makeDependfile
,
1393 if (gn
->type
& OP_OPTIONAL
) {
1394 (void)fprintf(stdout
, "%s: don't know how to make %s (%s)\n",
1395 progname
, gn
->name
, "ignored");
1396 (void)fflush(stdout
);
1400 if (opts
.keepgoing
) {
1401 (void)fprintf(stdout
, "%s: don't know how to make %s (%s)\n",
1402 progname
, gn
->name
, "continuing");
1403 (void)fflush(stdout
);
1407 abortProc("%s: don't know how to make %s. Stop", progname
, gn
->name
);
1412 * Execute the shell for the given job.
1414 * See Job_CatchOutput for handling the output of the shell.
1417 JobExec(Job
*job
, char **argv
)
1419 int cpid
; /* ID of new child */
1425 debug_printf("Running %s\n", job
->node
->name
);
1426 debug_printf("\tCommand: ");
1427 for (i
= 0; argv
[i
] != NULL
; i
++) {
1428 debug_printf("%s ", argv
[i
]);
1434 * Some jobs produce no output and it's disconcerting to have
1435 * no feedback of their running (since they produce no output, the
1436 * banner with their name in it never appears). This is an attempt to
1437 * provide that feedback, even if nothing follows it.
1440 SwitchOutputTo(job
->node
);
1442 /* No interruptions until this job is on the `jobs' list */
1445 /* Pre-emptively mark job running, pid still zero though */
1446 job
->status
= JOB_ST_RUNNING
;
1452 Punt("Cannot vfork: %s", strerror(errno
));
1460 meta_job_child(job
);
1463 * Reset all signal handlers; this is necessary because we
1464 * also need to unblock signals before we exec(2).
1468 /* Now unblock signals */
1469 sigemptyset(&tmask
);
1470 JobSigUnlock(&tmask
);
1473 * Must duplicate the input stream down to the child's input
1474 * and reset it to the beginning (again). Since the stream
1475 * was marked close-on-exec, we must clear that bit in the
1478 if (dup2(fileno(job
->cmdFILE
), 0) == -1)
1479 execDie("dup2", "job->cmdFILE");
1480 if (fcntl(0, F_SETFD
, 0) == -1)
1481 execDie("fcntl clear close-on-exec", "stdin");
1482 if (lseek(0, 0, SEEK_SET
) == -1)
1483 execDie("lseek to 0", "stdin");
1485 if (job
->node
->type
& (OP_MAKE
| OP_SUBMAKE
)) {
1487 * Pass job token pipe to submakes.
1489 if (fcntl(tokenWaitJob
.inPipe
, F_SETFD
, 0) == -1)
1490 execDie("clear close-on-exec",
1491 "tokenWaitJob.inPipe");
1492 if (fcntl(tokenWaitJob
.outPipe
, F_SETFD
, 0) == -1)
1493 execDie("clear close-on-exec",
1494 "tokenWaitJob.outPipe");
1498 * Set up the child's output to be routed through the pipe
1499 * we've created for it.
1501 if (dup2(job
->outPipe
, 1) == -1)
1502 execDie("dup2", "job->outPipe");
1505 * The output channels are marked close on exec. This bit
1506 * was duplicated by the dup2(on some systems), so we have
1507 * to clear it before routing the shell's error output to
1508 * the same place as its standard output.
1510 if (fcntl(1, F_SETFD
, 0) == -1)
1511 execDie("clear close-on-exec", "stdout");
1512 if (dup2(1, 2) == -1)
1513 execDie("dup2", "1, 2");
1516 * We want to switch the child into a different process
1517 * family so we can kill it and all its descendants in
1518 * one fell swoop, by killing its process family, but not
1521 #if defined(HAVE_SETPGID)
1522 (void)setpgid(0, getpid());
1524 # if defined(HAVE_SETSID)
1525 /* XXX: dsl - I'm sure this should be setpgrp()... */
1528 (void)setpgrp(0, getpid());
1532 (void)execv(shellPath
, argv
);
1533 execDie("exec", shellPath
);
1536 /* Parent, continuing after the child exec */
1539 Trace_Log(JOBSTART
, job
);
1543 meta_job_parent(job
, cpid
);
1547 * Set the current position in the buffer to the beginning
1548 * and mark another stream to watch in the outputs mask
1554 if (job
->cmdFILE
!= NULL
&& job
->cmdFILE
!= stdout
) {
1555 if (fclose(job
->cmdFILE
) != 0)
1556 Punt("Cannot write shell script for '%s': %s",
1557 job
->node
->name
, strerror(errno
));
1558 job
->cmdFILE
= NULL
;
1561 /* Now that the job is actually running, add it to the table. */
1563 debug_printf("JobExec(%s): pid %d added to jobs table\n",
1564 job
->node
->name
, job
->pid
);
1565 DumpJobs("job started");
1567 JobSigUnlock(&mask
);
1570 /* Create the argv needed to execute the shell for a given job. */
1572 JobMakeArgv(Job
*job
, char **argv
)
1575 static char args
[10]; /* For merged arguments */
1577 argv
[0] = UNCONST(shellName
);
1580 if ((shell
->errFlag
!= NULL
&& shell
->errFlag
[0] != '-') ||
1581 (shell
->echoFlag
!= NULL
&& shell
->echoFlag
[0] != '-')) {
1583 * At least one of the flags doesn't have a minus before it,
1584 * so merge them together. Have to do this because the Bourne
1585 * shell thinks its second argument is a file to source.
1586 * Grrrr. Note the ten-character limitation on the combined
1589 * TODO: Research until when the above comments were
1590 * practically relevant.
1592 (void)snprintf(args
, sizeof args
, "-%s%s",
1594 (shell
->errFlag
!= NULL
? shell
->errFlag
: "")),
1596 (shell
->echoFlag
!= NULL
? shell
->echoFlag
: "")));
1598 if (args
[1] != '\0') {
1603 if (!job
->ignerr
&& shell
->errFlag
!= NULL
) {
1604 argv
[argc
] = UNCONST(shell
->errFlag
);
1607 if (job
->echo
&& shell
->echoFlag
!= NULL
) {
1608 argv
[argc
] = UNCONST(shell
->echoFlag
);
1616 JobWriteShellCommands(Job
*job
, GNode
*gn
, bool *out_run
)
1619 * tfile is the name of a file into which all shell commands
1620 * are put. It is removed before the child shell is executed,
1621 * unless DEBUG(SCRIPT) is set.
1623 char tfile
[MAXPATHLEN
];
1624 int tfd
; /* File descriptor to the temp file */
1626 tfd
= Job_TempFile(TMPPAT
, tfile
, sizeof tfile
);
1628 job
->cmdFILE
= fdopen(tfd
, "w+");
1629 if (job
->cmdFILE
== NULL
)
1630 Punt("Could not fdopen %s", tfile
);
1632 (void)fcntl(fileno(job
->cmdFILE
), F_SETFD
, FD_CLOEXEC
);
1636 meta_job_start(job
, gn
);
1637 if (gn
->type
& OP_SILENT
) /* might have changed */
1642 *out_run
= JobWriteCommands(job
);
1646 * Start a target-creation process going for the target described by gn.
1649 * JOB_ERROR if there was an error in the commands, JOB_FINISHED
1650 * if there isn't actually anything left to do for the job and
1651 * JOB_RUNNING if the job has been started.
1654 * A new Job node is created and added to the list of running
1655 * jobs. PMake is forked and a child shell created.
1657 * NB: The return value is ignored by everyone.
1659 static JobStartResult
1660 JobStart(GNode
*gn
, bool special
)
1662 Job
*job
; /* new job descriptor */
1663 char *argv
[10]; /* Argument vector to shell */
1664 bool cmdsOK
; /* true if the nodes commands were all right */
1667 for (job
= job_table
; job
< job_table_end
; job
++) {
1668 if (job
->status
== JOB_ST_FREE
)
1671 if (job
>= job_table_end
)
1672 Punt("JobStart no job slots vacant");
1674 memset(job
, 0, sizeof *job
);
1676 job
->tailCmds
= NULL
;
1677 job
->status
= JOB_ST_SET_UP
;
1679 job
->special
= special
|| gn
->type
& OP_SPECIAL
;
1680 job
->ignerr
= opts
.ignoreErrors
|| gn
->type
& OP_IGNORE
;
1681 job
->echo
= !(opts
.silent
|| gn
->type
& OP_SILENT
);
1684 * Check the commands now so any attributes from .DEFAULT have a
1685 * chance to migrate to the node.
1687 cmdsOK
= Job_CheckCommands(gn
, Error
);
1689 job
->inPollfd
= NULL
;
1691 if (Lst_IsEmpty(&gn
->commands
)) {
1692 job
->cmdFILE
= stdout
;
1696 * We're serious here, but if the commands were bogus, we're
1700 PrintOnError(gn
, "\n"); /* provide some clue */
1703 } else if (((gn
->type
& OP_MAKE
) && !opts
.noRecursiveExecute
) ||
1704 (!opts
.noExecute
&& !opts
.touch
)) {
1706 * The above condition looks very similar to
1707 * GNode_ShouldExecute but is subtly different. It prevents
1708 * that .MAKE targets are touched since these are usually
1713 * We're serious here, but if the commands were bogus, we're
1717 PrintOnError(gn
, "\n"); /* provide some clue */
1721 JobWriteShellCommands(job
, gn
, &run
);
1722 (void)fflush(job
->cmdFILE
);
1723 } else if (!GNode_ShouldExecute(gn
)) {
1725 * Just write all the commands to stdout in one fell swoop.
1726 * This still sets up job->tailCmds correctly.
1729 job
->cmdFILE
= stdout
;
1731 JobWriteCommands(job
);
1733 (void)fflush(job
->cmdFILE
);
1735 Job_Touch(gn
, job
->echo
);
1739 /* If we're not supposed to execute a shell, don't. */
1743 /* Unlink and close the command file if we opened one */
1744 if (job
->cmdFILE
!= NULL
&& job
->cmdFILE
!= stdout
) {
1745 (void)fclose(job
->cmdFILE
);
1746 job
->cmdFILE
= NULL
;
1750 * We only want to work our way up the graph if we aren't
1751 * here because the commands for the job were no good.
1753 if (cmdsOK
&& aborting
== ABORT_NONE
) {
1754 JobSaveCommands(job
);
1755 job
->node
->made
= MADE
;
1756 Make_Update(job
->node
);
1758 job
->status
= JOB_ST_FREE
;
1759 return cmdsOK
? JOB_FINISHED
: JOB_ERROR
;
1763 * Set up the control arguments to the shell. This is based on the
1764 * flags set earlier for this job.
1766 JobMakeArgv(job
, argv
);
1768 /* Create the pipe by which we'll get the shell's output. */
1769 JobCreatePipe(job
, 3);
1776 * If the shell has an output filter (which only csh and ksh have by default),
1777 * print the output of the child process, skipping the noPrint text of the
1780 * Return the part of the output that the calling function needs to output by
1784 PrintFilteredOutput(char *cp
, char *endp
) /* XXX: should all be const */
1786 char *ecp
; /* XXX: should be const */
1788 if (shell
->noPrint
== NULL
|| shell
->noPrint
[0] == '\0')
1792 * XXX: What happens if shell->noPrint occurs on the boundary of
1793 * the buffer? To work correctly in all cases, this should rather
1794 * be a proper stream filter instead of doing string matching on
1795 * selected chunks of the output.
1797 while ((ecp
= strstr(cp
, shell
->noPrint
)) != NULL
) {
1799 *ecp
= '\0'; /* XXX: avoid writing to the buffer */
1801 * The only way there wouldn't be a newline after
1802 * this line is if it were the last in the buffer.
1803 * however, since the noPrint output comes after it,
1804 * there must be a newline, so we don't print one.
1806 /* XXX: What about null bytes in the output? */
1807 (void)fprintf(stdout
, "%s", cp
);
1808 (void)fflush(stdout
);
1810 cp
= ecp
+ shell
->noPrintLen
;
1813 cp
++; /* skip over the (XXX: assumed) newline */
1814 pp_skip_whitespace(&cp
);
1820 * This function is called whenever there is something to read on the pipe.
1821 * We collect more output from the given job and store it in the job's
1822 * outBuf. If this makes up a line, we print it tagged by the job's
1823 * identifier, as necessary.
1825 * In the output of the shell, the 'noPrint' lines are removed. If the
1826 * command is not alone on the line (the character after it is not \0 or
1827 * \n), we do print whatever follows it.
1830 * job the job whose output needs printing
1831 * finish true if this is the last time we'll be called
1835 CollectOutput(Job
*job
, bool finish
)
1837 bool gotNL
; /* true if got a newline */
1838 bool fbuf
; /* true if our buffer filled up */
1839 size_t nr
; /* number of bytes read */
1840 size_t i
; /* auxiliary index into outBuf */
1841 size_t max
; /* limit for i (end of current data) */
1842 ssize_t nRead
; /* (Temporary) number of bytes read */
1844 /* Read as many bytes as will fit in the buffer. */
1849 nRead
= read(job
->inPipe
, &job
->outBuf
[job
->curPos
],
1850 JOB_BUFSIZE
- job
->curPos
);
1852 if (errno
== EAGAIN
)
1855 perror("CollectOutput(piperead)");
1861 finish
= false; /* stop looping */
1864 * If we hit the end-of-file (the job is dead), we must flush its
1865 * remaining output, so pretend we read a newline if there's any
1866 * output remaining in the buffer.
1868 if (nr
== 0 && job
->curPos
!= 0) {
1869 job
->outBuf
[job
->curPos
] = '\n';
1873 max
= job
->curPos
+ nr
;
1874 for (i
= job
->curPos
; i
< max
; i
++)
1875 if (job
->outBuf
[i
] == '\0')
1876 job
->outBuf
[i
] = ' ';
1878 /* Look for the last newline in the bytes we just got. */
1879 for (i
= job
->curPos
+ nr
- 1;
1880 i
>= job
->curPos
&& i
!= (size_t)-1; i
--) {
1881 if (job
->outBuf
[i
] == '\n') {
1889 if (job
->curPos
== JOB_BUFSIZE
) {
1891 * If we've run out of buffer space, we have no choice
1892 * but to print the stuff. sigh.
1898 if (gotNL
|| fbuf
) {
1900 * Need to send the output to the screen. Null terminate it
1901 * first, overwriting the newline character if there was one.
1902 * So long as the line isn't one we should filter (according
1903 * to the shell description), we print the line, preceded
1904 * by a target banner if this target isn't the same as the
1905 * one for which we last printed something.
1906 * The rest of the data in the buffer are then shifted down
1907 * to the start of the buffer and curPos is set accordingly.
1909 job
->outBuf
[i
] = '\0';
1910 if (i
>= job
->curPos
) {
1914 * FIXME: SwitchOutputTo should be here, according to
1915 * the comment above. But since PrintOutput does not
1916 * do anything in the default shell, this bug has gone
1917 * unnoticed until now.
1919 cp
= PrintFilteredOutput(job
->outBuf
, &job
->outBuf
[i
]);
1922 * There's still more in the output buffer. This time,
1923 * though, we know there's no newline at the end, so
1924 * we add one of our own free will.
1928 SwitchOutputTo(job
->node
);
1931 meta_job_output(job
, cp
,
1935 (void)fprintf(stdout
, "%s%s", cp
,
1937 (void)fflush(stdout
);
1941 * max is the last offset still in the buffer. Move any
1942 * remaining characters to the start of the buffer and
1943 * update the end marker curPos.
1946 (void)memmove(job
->outBuf
, &job
->outBuf
[i
+ 1],
1948 job
->curPos
= max
- (i
+ 1);
1956 * If the finish flag is true, we must loop until we hit
1957 * end-of-file on the pipe. This is guaranteed to happen
1958 * eventually since the other end of the pipe is now closed
1959 * (we closed it explicitly and the child has exited). When
1960 * we do get an EOF, finish will be set false and we'll fall
1972 * Unfortunately it is too complicated to run .BEGIN, .END, and
1973 * .INTERRUPT job in the parallel job module. As of 2020-09-25,
1974 * unit-tests/deptgt-end-jobs.mk hangs in an endless loop.
1976 * Running these jobs in compat mode also guarantees that these
1977 * jobs do not overlap with other unrelated jobs.
1979 GNodeList lst
= LST_INIT
;
1980 Lst_Append(&lst
, targ
);
1981 (void)Make_Run(&lst
);
1983 JobStart(targ
, true);
1984 while (jobTokensRunning
!= 0) {
1988 Compat_Make(targ
, targ
);
1989 /* XXX: Replace with GNode_IsError(gn) */
1990 if (targ
->made
== ERROR
) {
1991 PrintOnError(targ
, "\n\nStop.\n");
1998 * Handle the exit of a child. Called from Make_Make.
2000 * The job descriptor is removed from the list of children.
2003 * We do waits, blocking or not, according to the wisdom of our
2004 * caller, until there are no more children to report. For each
2005 * job, call JobFinish to finish things off.
2008 Job_CatchChildren(void)
2010 int pid
; /* pid of dead child */
2011 WAIT_T status
; /* Exit/termination status */
2013 /* Don't even bother if we know there's no one around. */
2014 if (jobTokensRunning
== 0)
2017 /* Have we received SIGCHLD since last call? */
2018 if (caught_sigchld
== 0)
2022 while ((pid
= waitpid((pid_t
)-1, &status
, WNOHANG
| WUNTRACED
)) > 0) {
2023 DEBUG2(JOB
, "Process %d exited/stopped status %x.\n",
2024 pid
, WAIT_STATUS(status
));
2025 JobReapChild(pid
, status
, true);
2030 * It is possible that wait[pid]() was called from elsewhere,
2031 * this lets us reap jobs regardless.
2034 JobReapChild(pid_t pid
, WAIT_T status
, bool isJobs
)
2036 Job
*job
; /* job descriptor for dead child */
2038 /* Don't even bother if we know there's no one around. */
2039 if (jobTokensRunning
== 0)
2042 job
= JobFindPid(pid
, JOB_ST_RUNNING
, isJobs
);
2045 if (!lurking_children
)
2046 Error("Child (%d) status %x not in table?",
2049 return; /* not ours */
2051 if (WIFSTOPPED(status
)) {
2052 DEBUG2(JOB
, "Process %d (%s) stopped.\n",
2053 job
->pid
, job
->node
->name
);
2054 if (!make_suspended
) {
2055 switch (WSTOPSIG(status
)) {
2057 (void)printf("*** [%s] Suspended\n",
2061 (void)printf("*** [%s] Stopped\n",
2065 (void)printf("*** [%s] Stopped -- signal %d\n",
2066 job
->node
->name
, WSTOPSIG(status
));
2068 job
->suspended
= true;
2070 (void)fflush(stdout
);
2074 job
->status
= JOB_ST_FINISHED
;
2075 job
->exit_status
= WAIT_STATUS(status
);
2077 JobFinish(job
, status
);
2081 * Catch the output from our children, if we're using pipes do so. Otherwise
2082 * just block time until we get a signal(most likely a SIGCHLD) since there's
2083 * no point in just spinning when there's nothing to do and the reaping of a
2084 * child can wait for a while.
2087 Job_CatchOutput(void)
2093 (void)fflush(stdout
);
2095 /* The first fd in the list is the job token pipe */
2097 nready
= poll(fds
+ 1 - wantToken
, fdsLen
- 1 + wantToken
,
2099 } while (nready
< 0 && errno
== EINTR
);
2102 Punt("poll: %s", strerror(errno
));
2104 if (nready
> 0 && readyfd(&childExitJob
)) {
2107 count
= read(childExitJob
.inPipe
, &token
, 1);
2109 if (token
== DO_JOB_RESUME
[0])
2111 * Complete relay requested from our SIGCONT
2115 } else if (count
== 0)
2116 Punt("unexpected eof on token pipe");
2117 else if (errno
!= EAGAIN
)
2118 Punt("token pipe read: %s", strerror(errno
));
2122 Job_CatchChildren();
2126 for (i
= npseudojobs
* nfds_per_job(); i
< fdsLen
; i
++) {
2127 if (fds
[i
].revents
== 0)
2129 job
= jobByFdIndex
[i
];
2130 if (job
->status
== JOB_ST_RUNNING
)
2131 CollectOutput(job
, false);
2132 #if defined(USE_FILEMON) && !defined(USE_FILEMON_DEV)
2134 * With meta mode, we may have activity on the job's filemon
2135 * descriptor too, which at the moment is any pollfd other
2136 * than job->inPollfd.
2138 if (useMeta
&& job
->inPollfd
!= &fds
[i
]) {
2139 if (meta_job_event(job
) <= 0)
2140 fds
[i
].events
= 0; /* never mind */
2149 * Start the creation of a target. Basically a front-end for JobStart used by
2155 (void)JobStart(gn
, false);
2159 InitShellNameAndPath(void)
2161 shellName
= shell
->name
;
2163 #ifdef DEFSHELL_CUSTOM
2164 if (shellName
[0] == '/') {
2165 shellPath
= shellName
;
2166 shellName
= str_basename(shellPath
);
2170 #ifdef DEFSHELL_PATH
2171 shellPath
= DEFSHELL_PATH
;
2173 shellPath
= str_concat3(_PATH_DEFSHELLDIR
, "/", shellName
);
2180 if (shellPath
== NULL
)
2181 InitShellNameAndPath();
2183 Var_SetWithFlags(SCOPE_CMDLINE
, ".SHELL", shellPath
, VAR_SET_READONLY
);
2184 if (shell
->errFlag
== NULL
)
2185 shell
->errFlag
= "";
2186 if (shell
->echoFlag
== NULL
)
2187 shell
->echoFlag
= "";
2188 if (shell
->hasErrCtl
&& shell
->errFlag
[0] != '\0') {
2189 if (shellErrFlag
!= NULL
&&
2190 strcmp(shell
->errFlag
, &shellErrFlag
[1]) != 0) {
2192 shellErrFlag
= NULL
;
2194 if (shellErrFlag
== NULL
)
2195 shellErrFlag
= str_concat2("-", shell
->errFlag
);
2196 } else if (shellErrFlag
!= NULL
) {
2198 shellErrFlag
= NULL
;
2203 * Return the string literal that is used in the current command shell
2204 * to produce a newline character.
2207 Shell_GetNewline(void)
2209 return shell
->newline
;
2215 if (targPrefix
!= NULL
) {
2217 } else if (!Var_Exists(SCOPE_GLOBAL
, MAKE_JOB_PREFIX
)) {
2218 Global_Set(MAKE_JOB_PREFIX
, "---");
2221 (void)Var_Subst("${" MAKE_JOB_PREFIX
"}",
2222 SCOPE_GLOBAL
, VARE_WANTRES
, &targPrefix
);
2223 /* TODO: handle errors */
2227 AddSig(int sig
, SignalProc handler
)
2229 if (bmake_signal(sig
, SIG_IGN
) != SIG_IGN
) {
2230 sigaddset(&caught_signals
, sig
);
2231 (void)bmake_signal(sig
, handler
);
2235 /* Initialize the process module. */
2240 /* Allocate space for all the job info */
2241 job_table
= bmake_malloc((size_t)opts
.maxJobs
* sizeof *job_table
);
2242 memset(job_table
, 0, (size_t)opts
.maxJobs
* sizeof *job_table
);
2243 job_table_end
= job_table
+ opts
.maxJobs
;
2247 aborting
= ABORT_NONE
;
2251 * There is a non-zero chance that we already have children.
2252 * eg after 'make -f- <<EOF'
2253 * Since their termination causes a 'Child (pid) not in table'
2254 * message, Collect the status of any that are already dead, and
2255 * suppress the error message if there are any undead ones.
2261 rval
= waitpid((pid_t
)-1, &status
, WNOHANG
);
2265 lurking_children
= true;
2271 JobCreatePipe(&childExitJob
, 3);
2274 /* Preallocate enough for the maximum number of jobs. */
2275 size_t nfds
= (npseudojobs
+ (size_t)opts
.maxJobs
) *
2277 fds
= bmake_malloc(sizeof *fds
* nfds
);
2278 jobByFdIndex
= bmake_malloc(sizeof *jobByFdIndex
* nfds
);
2281 /* These are permanent entries and take slots 0 and 1 */
2282 watchfd(&tokenWaitJob
);
2283 watchfd(&childExitJob
);
2285 sigemptyset(&caught_signals
);
2287 * Install a SIGCHLD handler.
2289 (void)bmake_signal(SIGCHLD
, JobChildSig
);
2290 sigaddset(&caught_signals
, SIGCHLD
);
2293 * Catch the four signals that POSIX specifies if they aren't ignored.
2294 * JobPassSig will take care of calling JobInterrupt if appropriate.
2296 AddSig(SIGINT
, JobPassSig_int
);
2297 AddSig(SIGHUP
, JobPassSig_term
);
2298 AddSig(SIGTERM
, JobPassSig_term
);
2299 AddSig(SIGQUIT
, JobPassSig_term
);
2302 * There are additional signals that need to be caught and passed if
2303 * either the export system wants to be told directly of signals or if
2304 * we're giving each job its own process group (since then it won't get
2305 * signals from the terminal driver as we own the terminal)
2307 AddSig(SIGTSTP
, JobPassSig_suspend
);
2308 AddSig(SIGTTOU
, JobPassSig_suspend
);
2309 AddSig(SIGTTIN
, JobPassSig_suspend
);
2310 AddSig(SIGWINCH
, JobCondPassSig
);
2311 AddSig(SIGCONT
, JobContinueSig
);
2313 (void)Job_RunTarget(".BEGIN", NULL
);
2315 * Create the .END node now, even though no code in the unit tests
2316 * depends on it. See also Targ_GetEndNode in Compat_MakeAll.
2318 (void)Targ_GetEndNode();
2324 if (sigismember(&caught_signals
, sig
) != 0)
2325 (void)bmake_signal(sig
, SIG_DFL
);
2340 (void)bmake_signal(SIGCHLD
, SIG_DFL
);
2343 /* Find a shell in 'shells' given its name, or return NULL. */
2345 FindShellByName(const char *name
)
2348 const Shell
*shellsEnd
= sh
+ sizeof shells
/ sizeof shells
[0];
2350 for (sh
= shells
; sh
< shellsEnd
; sh
++) {
2351 if (strcmp(name
, sh
->name
) == 0)
2358 * Parse a shell specification and set up 'shell', shellPath and
2359 * shellName appropriately.
2362 * line The shell spec
2365 * false if the specification was incorrect.
2368 * 'shell' points to a Shell structure (either predefined or
2369 * created from the shell spec), shellPath is the full path of the
2370 * shell described by 'shell', while shellName is just the
2371 * final component of shellPath.
2374 * A shell specification consists of a .SHELL target, with dependency
2375 * operator, followed by a series of blank-separated words. Double
2376 * quotes can be used to use blanks in words. A backslash escapes
2377 * anything (most notably a double-quote and a space) and
2378 * provides the functionality it does in C. Each word consists of
2379 * keyword and value separated by an equal sign. There should be no
2380 * unnecessary spaces in the word. The keywords are as follows:
2381 * name Name of shell.
2382 * path Location of shell.
2383 * quiet Command to turn off echoing.
2384 * echo Command to turn echoing on
2385 * filter Result of turning off echoing that shouldn't be
2387 * echoFlag Flag to turn echoing on at the start
2388 * errFlag Flag to turn error checking on at the start
2389 * hasErrCtl True if shell has error checking control
2390 * newline String literal to represent a newline char
2391 * check Command to turn on error checking if hasErrCtl
2392 * is true or template of command to echo a command
2393 * for which error checking is off if hasErrCtl is
2395 * ignore Command to turn off error checking if hasErrCtl
2396 * is true or template of command to execute a
2397 * command so as to ignore any errors it returns if
2398 * hasErrCtl is false.
2401 Job_ParseShell(char *line
)
2409 bool fullSpec
= false;
2412 /* XXX: don't use line as an iterator variable */
2413 pp_skip_whitespace(&line
);
2417 memset(&newShell
, 0, sizeof newShell
);
2420 * Parse the specification by keyword
2422 wordsList
= Str_Words(line
, true);
2423 words
= wordsList
.words
;
2424 argc
= wordsList
.len
;
2425 path
= wordsList
.freeIt
;
2426 if (words
== NULL
) {
2427 Error("Unterminated quoted string [%s]", line
);
2430 shell_freeIt
= path
;
2432 for (path
= NULL
, argv
= words
; argc
!= 0; argc
--, argv
++) {
2434 if (strncmp(arg
, "path=", 5) == 0) {
2436 } else if (strncmp(arg
, "name=", 5) == 0) {
2437 newShell
.name
= arg
+ 5;
2439 if (strncmp(arg
, "quiet=", 6) == 0) {
2440 newShell
.echoOff
= arg
+ 6;
2441 } else if (strncmp(arg
, "echo=", 5) == 0) {
2442 newShell
.echoOn
= arg
+ 5;
2443 } else if (strncmp(arg
, "filter=", 7) == 0) {
2444 newShell
.noPrint
= arg
+ 7;
2445 newShell
.noPrintLen
= strlen(newShell
.noPrint
);
2446 } else if (strncmp(arg
, "echoFlag=", 9) == 0) {
2447 newShell
.echoFlag
= arg
+ 9;
2448 } else if (strncmp(arg
, "errFlag=", 8) == 0) {
2449 newShell
.errFlag
= arg
+ 8;
2450 } else if (strncmp(arg
, "hasErrCtl=", 10) == 0) {
2452 newShell
.hasErrCtl
= c
== 'Y' || c
== 'y' ||
2453 c
== 'T' || c
== 't';
2454 } else if (strncmp(arg
, "newline=", 8) == 0) {
2455 newShell
.newline
= arg
+ 8;
2456 } else if (strncmp(arg
, "check=", 6) == 0) {
2458 * Before 2020-12-10, these two variables had
2459 * been a single variable.
2461 newShell
.errOn
= arg
+ 6;
2462 newShell
.echoTmpl
= arg
+ 6;
2463 } else if (strncmp(arg
, "ignore=", 7) == 0) {
2465 * Before 2020-12-10, these two variables had
2466 * been a single variable.
2468 newShell
.errOff
= arg
+ 7;
2469 newShell
.runIgnTmpl
= arg
+ 7;
2470 } else if (strncmp(arg
, "errout=", 7) == 0) {
2471 newShell
.runChkTmpl
= arg
+ 7;
2472 } else if (strncmp(arg
, "comment=", 8) == 0) {
2473 newShell
.commentChar
= arg
[8];
2475 Parse_Error(PARSE_FATAL
,
2476 "Unknown keyword \"%s\"", arg
);
2486 * If no path was given, the user wants one of the
2487 * pre-defined shells, yes? So we find the one s/he wants
2488 * with the help of FindShellByName and set things up the
2489 * right way. shellPath will be set up by Shell_Init.
2491 if (newShell
.name
== NULL
) {
2492 Parse_Error(PARSE_FATAL
,
2493 "Neither path nor name specified");
2497 if ((sh
= FindShellByName(newShell
.name
)) == NULL
) {
2498 Parse_Error(PARSE_WARNING
,
2499 "%s: No matching shell", newShell
.name
);
2504 shellName
= newShell
.name
;
2505 if (shellPath
!= NULL
) {
2507 * Shell_Init has already been called!
2510 free(UNCONST(shellPath
));
2517 * The user provided a path. If s/he gave nothing else
2518 * (fullSpec is false), try and find a matching shell in the
2519 * ones we know of. Else we just take the specification at
2520 * its word and copy it to a new location. In either case,
2521 * we need to record the path the user gave for the shell.
2524 path
= strrchr(path
, '/');
2526 path
= UNCONST(shellPath
);
2530 if (newShell
.name
!= NULL
) {
2531 shellName
= newShell
.name
;
2536 if ((sh
= FindShellByName(shellName
)) == NULL
) {
2537 Parse_Error(PARSE_WARNING
,
2538 "%s: No matching shell", shellName
);
2544 shell
= bmake_malloc(sizeof *shell
);
2547 /* this will take care of shellErrFlag */
2551 if (shell
->echoOn
!= NULL
&& shell
->echoOff
!= NULL
)
2552 shell
->hasEchoCtl
= true;
2554 if (!shell
->hasErrCtl
) {
2555 if (shell
->echoTmpl
== NULL
)
2556 shell
->echoTmpl
= "";
2557 if (shell
->runIgnTmpl
== NULL
)
2558 shell
->runIgnTmpl
= "%s\n";
2562 * Do not free up the words themselves, since they might be in use
2563 * by the shell specification.
2570 * Handle the receipt of an interrupt.
2572 * All children are killed. Another job will be started if the .INTERRUPT
2573 * target is defined.
2576 * runINTERRUPT Non-zero if commands for the .INTERRUPT target
2577 * should be executed
2578 * signo signal received
2581 JobInterrupt(bool runINTERRUPT
, int signo
)
2583 Job
*job
; /* job descriptor in that element */
2584 GNode
*interrupt
; /* the node describing the .INTERRUPT target */
2588 aborting
= ABORT_INTERRUPT
;
2592 for (job
= job_table
; job
< job_table_end
; job
++) {
2593 if (job
->status
!= JOB_ST_RUNNING
)
2598 JobDeleteTarget(gn
);
2599 if (job
->pid
!= 0) {
2601 "JobInterrupt passing signal %d to child %d.\n",
2603 KILLPG(job
->pid
, signo
);
2607 JobSigUnlock(&mask
);
2609 if (runINTERRUPT
&& !opts
.touch
) {
2610 interrupt
= Targ_FindNode(".INTERRUPT");
2611 if (interrupt
!= NULL
) {
2612 opts
.ignoreErrors
= false;
2616 Trace_Log(MAKEINTR
, NULL
);
2617 exit(signo
); /* XXX: why signo? */
2621 * Do the final processing, i.e. run the commands attached to the .END target.
2623 * Return the number of errors reported.
2628 GNode
*endNode
= Targ_GetEndNode();
2629 if (!Lst_IsEmpty(&endNode
->commands
) ||
2630 !Lst_IsEmpty(&endNode
->children
)) {
2631 if (job_errors
!= 0) {
2632 Error("Errors reported so .END ignored");
2640 /* Clean up any memory used by the jobs module. */
2650 * Waits for all running jobs to finish and returns.
2651 * Sets 'aborting' to ABORT_WAIT to prevent other jobs from starting.
2656 aborting
= ABORT_WAIT
;
2657 while (jobTokensRunning
!= 0) {
2660 aborting
= ABORT_NONE
;
2664 * Abort all currently running jobs without handling output or anything.
2665 * This function is to be called only in the event of a major error.
2666 * Most definitely NOT to be called from JobInterrupt.
2668 * All children are killed, not just the firstborn.
2673 Job
*job
; /* the job descriptor in that element */
2676 aborting
= ABORT_ERROR
;
2678 if (jobTokensRunning
!= 0) {
2679 for (job
= job_table
; job
< job_table_end
; job
++) {
2680 if (job
->status
!= JOB_ST_RUNNING
)
2683 * kill the child process with increasingly drastic
2684 * signals to make darn sure it's dead.
2686 KILLPG(job
->pid
, SIGINT
);
2687 KILLPG(job
->pid
, SIGKILL
);
2692 * Catch as many children as want to report in at first, then give up
2694 while (waitpid((pid_t
)-1, &foo
, WNOHANG
) > 0)
2699 * Tries to restart stopped jobs if there are slots available.
2700 * Called in process context in response to a SIGCONT.
2703 JobRestartJobs(void)
2707 for (job
= job_table
; job
< job_table_end
; job
++) {
2708 if (job
->status
== JOB_ST_RUNNING
&&
2709 (make_suspended
|| job
->suspended
)) {
2710 DEBUG1(JOB
, "Restarting stopped job pid %d.\n",
2712 if (job
->suspended
) {
2713 (void)printf("*** [%s] Continued\n",
2715 (void)fflush(stdout
);
2717 job
->suspended
= false;
2718 if (KILLPG(job
->pid
, SIGCONT
) != 0 && DEBUG(JOB
)) {
2719 debug_printf("Failed to send SIGCONT to %d\n",
2723 if (job
->status
== JOB_ST_FINISHED
) {
2725 * Job exit deferred after calling waitpid() in a
2728 JobFinish(job
, job
->exit_status
);
2731 make_suspended
= false;
2737 if (job
->inPollfd
!= NULL
)
2738 Punt("Watching watched job");
2740 fds
[fdsLen
].fd
= job
->inPipe
;
2741 fds
[fdsLen
].events
= POLLIN
;
2742 jobByFdIndex
[fdsLen
] = job
;
2743 job
->inPollfd
= &fds
[fdsLen
];
2745 #if defined(USE_FILEMON) && !defined(USE_FILEMON_DEV)
2747 fds
[fdsLen
].fd
= meta_job_fd(job
);
2748 fds
[fdsLen
].events
= fds
[fdsLen
].fd
== -1 ? 0 : POLLIN
;
2749 jobByFdIndex
[fdsLen
] = job
;
2759 if (job
->inPollfd
== NULL
)
2760 Punt("Unwatching unwatched job");
2761 i
= (size_t)(job
->inPollfd
- fds
);
2763 #if defined(USE_FILEMON) && !defined(USE_FILEMON_DEV)
2766 * Sanity check: there should be two fds per job, so the job's
2767 * pollfd number should be even.
2769 assert(nfds_per_job() == 2);
2771 Punt("odd-numbered fd with meta");
2776 * Move last job in table into hole made by dead job.
2779 fds
[i
] = fds
[fdsLen
];
2780 jobByFdIndex
[i
] = jobByFdIndex
[fdsLen
];
2781 jobByFdIndex
[i
]->inPollfd
= &fds
[i
];
2782 #if defined(USE_FILEMON) && !defined(USE_FILEMON_DEV)
2784 fds
[i
+ 1] = fds
[fdsLen
+ 1];
2785 jobByFdIndex
[i
+ 1] = jobByFdIndex
[fdsLen
+ 1];
2789 job
->inPollfd
= NULL
;
2795 if (job
->inPollfd
== NULL
)
2796 Punt("Polling unwatched job");
2797 return (job
->inPollfd
->revents
& POLLIN
) != 0;
2801 * Put a token (back) into the job pipe.
2802 * This allows a make process to start a build job.
2807 char tok
= JOB_TOKENS
[aborting
], tok1
;
2809 /* If we are depositing an error token flush everything else */
2810 while (tok
!= '+' && read(tokenWaitJob
.inPipe
, &tok1
, 1) == 1)
2813 DEBUG3(JOB
, "(%d) aborting %d, deposit token %c\n",
2814 getpid(), aborting
, tok
);
2815 while (write(tokenWaitJob
.outPipe
, &tok
, 1) == -1 && errno
== EAGAIN
)
2819 /* Get a temp file */
2821 Job_TempFile(const char *pattern
, char *tfile
, size_t tfile_sz
)
2827 fd
= mkTempFile(pattern
, tfile
, tfile_sz
);
2828 if (tfile
!= NULL
&& !DEBUG(SCRIPT
))
2830 JobSigUnlock(&mask
);
2835 /* Prep the job token pipe in the root make process. */
2837 Job_ServerStart(int max_tokens
, int jp_0
, int jp_1
)
2842 if (jp_0
>= 0 && jp_1
>= 0) {
2843 /* Pipe passed in from parent */
2844 tokenWaitJob
.inPipe
= jp_0
;
2845 tokenWaitJob
.outPipe
= jp_1
;
2846 (void)fcntl(jp_0
, F_SETFD
, FD_CLOEXEC
);
2847 (void)fcntl(jp_1
, F_SETFD
, FD_CLOEXEC
);
2851 JobCreatePipe(&tokenWaitJob
, 15);
2853 snprintf(jobarg
, sizeof jobarg
, "%d,%d",
2854 tokenWaitJob
.inPipe
, tokenWaitJob
.outPipe
);
2856 Global_Append(MAKEFLAGS
, "-J");
2857 Global_Append(MAKEFLAGS
, jobarg
);
2860 * Preload the job pipe with one token per job, save the one
2861 * "extra" token for the primary job.
2863 * XXX should clip maxJobs against PIPE_BUF -- if max_tokens is
2864 * larger than the write buffer size of the pipe, we will
2867 for (i
= 1; i
< max_tokens
; i
++)
2871 /* Return a withdrawn token to the pool. */
2873 Job_TokenReturn(void)
2876 if (jobTokensRunning
< 0)
2877 Punt("token botch");
2878 if (jobTokensRunning
!= 0 || JOB_TOKENS
[aborting
] != '+')
2883 * Attempt to withdraw a token from the pool.
2885 * If pool is empty, set wantToken so that we wake up when a token is
2888 * Returns true if a token was withdrawn, and false if the pool is currently
2892 Job_TokenWithdraw(void)
2898 DEBUG3(JOB
, "Job_TokenWithdraw(%d): aborting %d, running %d\n",
2899 getpid(), aborting
, jobTokensRunning
);
2901 if (aborting
!= ABORT_NONE
|| (jobTokensRunning
>= opts
.maxJobs
))
2904 count
= read(tokenWaitJob
.inPipe
, &tok
, 1);
2906 Fatal("eof on job pipe!");
2907 if (count
< 0 && jobTokensRunning
!= 0) {
2908 if (errno
!= EAGAIN
) {
2909 Fatal("job pipe read: %s", strerror(errno
));
2911 DEBUG1(JOB
, "(%d) blocked for token\n", getpid());
2916 if (count
== 1 && tok
!= '+') {
2917 /* make being aborted - remove any other job tokens */
2918 DEBUG2(JOB
, "(%d) aborted by token %c\n", getpid(), tok
);
2919 while (read(tokenWaitJob
.inPipe
, &tok1
, 1) == 1)
2921 /* And put the stopper back */
2922 while (write(tokenWaitJob
.outPipe
, &tok
, 1) == -1 &&
2925 if (shouldDieQuietly(NULL
, 1))
2926 exit(6); /* we aborted */
2927 Fatal("A failure has been detected "
2928 "in another branch of the parallel make");
2931 if (count
== 1 && jobTokensRunning
== 0)
2932 /* We didn't want the token really */
2933 while (write(tokenWaitJob
.outPipe
, &tok
, 1) == -1 &&
2938 DEBUG1(JOB
, "(%d) withdrew token\n", getpid());
2943 * Run the named target if found. If a filename is specified, then set that
2946 * Exits if the target fails.
2949 Job_RunTarget(const char *target
, const char *fname
)
2951 GNode
*gn
= Targ_FindNode(target
);
2956 Var_Set(gn
, ALLSRC
, fname
);
2959 /* XXX: Replace with GNode_IsError(gn) */
2960 if (gn
->made
== ERROR
) {
2961 PrintOnError(gn
, "\n\nStop.\n");
2969 emul_poll(struct pollfd
*fd
, int nfd
, int timeout
)
2972 int i
, maxfd
, nselect
, npoll
;
2973 struct timeval tv
, *tvp
;
2980 for (i
= 0; i
< nfd
; i
++) {
2983 if (fd
[i
].events
& POLLIN
)
2984 FD_SET(fd
[i
].fd
, &rfds
);
2986 if (fd
[i
].events
& POLLOUT
)
2987 FD_SET(fd
[i
].fd
, &wfds
);
2989 if (fd
[i
].fd
> maxfd
)
2993 if (maxfd
>= FD_SETSIZE
) {
2994 Punt("Ran out of fd_set slots; "
2995 "recompile with a larger FD_SETSIZE.");
3001 usecs
= timeout
* 1000;
3002 tv
.tv_sec
= usecs
/ 1000000;
3003 tv
.tv_usec
= usecs
% 1000000;
3007 nselect
= select(maxfd
+ 1, &rfds
, &wfds
, NULL
, tvp
);
3013 for (i
= 0; i
< nfd
; i
++) {
3014 if (FD_ISSET(fd
[i
].fd
, &rfds
))
3015 fd
[i
].revents
|= POLLIN
;
3017 if (FD_ISSET(fd
[i
].fd
, &wfds
))
3018 fd
[i
].revents
|= POLLOUT
;
3026 #endif /* USE_SELECT */