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