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