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