mandoc: update to 1.14.1
[unleashed.git] / bin / bmake / compat.c
blob3e16fffdb1024800bb3fcb4f1546ad1f88b65875
1 /* $NetBSD: compat.c,v 1.106 2016/08/26 23:28:39 dholland Exp $ */
3 /*
4 * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
5 * All rights reserved.
7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor.
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.
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.
36 * Copyright (c) 1988, 1989 by Adam de Boor
37 * Copyright (c) 1989 by Berkeley Softworks
38 * All rights reserved.
40 * This code is derived from software contributed to Berkeley by
41 * Adam de Boor.
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.
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.
72 #ifndef MAKE_NATIVE
73 static char rcsid[] = "$NetBSD: compat.c,v 1.106 2016/08/26 23:28:39 dholland Exp $";
74 #else
75 #include <sys/cdefs.h>
76 #ifndef lint
77 #if 0
78 static char sccsid[] = "@(#)compat.c 8.2 (Berkeley) 3/19/94";
79 #else
80 __RCSID("$NetBSD: compat.c,v 1.106 2016/08/26 23:28:39 dholland Exp $");
81 #endif
82 #endif /* not lint */
83 #endif
85 /*-
86 * compat.c --
87 * The routines in this file implement the full-compatibility
88 * mode of PMake. Most of the special functionality of PMake
89 * is available in this mode. Things not supported:
90 * - different shells.
91 * - friendly variable substitution.
93 * Interface:
94 * Compat_Run Initialize things for this module and recreate
95 * thems as need creatin'
98 #ifdef HAVE_CONFIG_H
99 # include "config.h"
100 #endif
101 #include <sys/types.h>
102 #include <sys/stat.h>
103 #include "wait.h"
105 #include <ctype.h>
106 #include <errno.h>
107 #include <signal.h>
108 #include <stdio.h>
110 #include "make.h"
111 #include "hash.h"
112 #include "dir.h"
113 #include "job.h"
114 #include "metachar.h"
115 #include "pathnames.h"
118 static GNode *curTarg = NULL;
119 static GNode *ENDNode;
120 static void CompatInterrupt(int);
123 * CompatDeleteTarget -- delete a failed, interrupted, or otherwise
124 * duffed target if not inhibited by .PRECIOUS.
126 static void
127 CompatDeleteTarget(GNode *gn)
129 if ((gn != NULL) && !Targ_Precious (gn)) {
130 char *p1;
131 char *file = Var_Value(TARGET, gn, &p1);
133 if (!noExecute && eunlink(file) != -1) {
134 Error("*** %s removed", file);
137 free(p1);
142 *-----------------------------------------------------------------------
143 * CompatInterrupt --
144 * Interrupt the creation of the current target and remove it if
145 * it ain't precious.
147 * Results:
148 * None.
150 * Side Effects:
151 * The target is removed and the process exits. If .INTERRUPT exists,
152 * its commands are run first WITH INTERRUPTS IGNORED..
154 * XXX: is .PRECIOUS supposed to inhibit .INTERRUPT? I doubt it, but I've
155 * left the logic alone for now. - dholland 20160826
157 *-----------------------------------------------------------------------
159 static void
160 CompatInterrupt(int signo)
162 GNode *gn;
164 CompatDeleteTarget(curTarg);
166 if ((curTarg != NULL) && !Targ_Precious (curTarg)) {
168 * Run .INTERRUPT only if hit with interrupt signal
170 if (signo == SIGINT) {
171 gn = Targ_FindNode(".INTERRUPT", TARG_NOCREATE);
172 if (gn != NULL) {
173 Compat_Make(gn, gn);
177 if (signo == SIGQUIT)
178 _exit(signo);
179 bmake_signal(signo, SIG_DFL);
180 kill(myPid, signo);
184 *-----------------------------------------------------------------------
185 * CompatRunCommand --
186 * Execute the next command for a target. If the command returns an
187 * error, the node's made field is set to ERROR and creation stops.
189 * Input:
190 * cmdp Command to execute
191 * gnp Node from which the command came
193 * Results:
194 * 0 if the command succeeded, 1 if an error occurred.
196 * Side Effects:
197 * The node's 'made' field may be set to ERROR.
199 *-----------------------------------------------------------------------
202 CompatRunCommand(void *cmdp, void *gnp)
204 char *cmdStart; /* Start of expanded command */
205 char *cp, *bp;
206 Boolean silent, /* Don't print command */
207 doIt; /* Execute even if -n */
208 volatile Boolean errCheck; /* Check errors */
209 WAIT_T reason; /* Reason for child's death */
210 int status; /* Description of child's death */
211 pid_t cpid; /* Child actually found */
212 pid_t retstat; /* Result of wait */
213 LstNode cmdNode; /* Node where current command is located */
214 const char ** volatile av; /* Argument vector for thing to exec */
215 char ** volatile mav;/* Copy of the argument vector for freeing */
216 int argc; /* Number of arguments in av or 0 if not
217 * dynamically allocated */
218 Boolean local; /* TRUE if command should be executed
219 * locally */
220 Boolean useShell; /* TRUE if command should be executed
221 * using a shell */
222 char * volatile cmd = (char *)cmdp;
223 GNode *gn = (GNode *)gnp;
225 silent = gn->type & OP_SILENT;
226 errCheck = !(gn->type & OP_IGNORE);
227 doIt = FALSE;
229 cmdNode = Lst_Member(gn->commands, cmd);
230 cmdStart = Var_Subst(NULL, cmd, gn, VARF_WANTRES);
233 * brk_string will return an argv with a NULL in av[0], thus causing
234 * execvp to choke and die horribly. Besides, how can we execute a null
235 * command? In any case, we warn the user that the command expanded to
236 * nothing (is this the right thing to do?).
239 if (*cmdStart == '\0') {
240 free(cmdStart);
241 return(0);
243 cmd = cmdStart;
244 Lst_Replace(cmdNode, cmdStart);
246 if ((gn->type & OP_SAVE_CMDS) && (gn != ENDNode)) {
247 (void)Lst_AtEnd(ENDNode->commands, cmdStart);
248 return(0);
250 if (strcmp(cmdStart, "...") == 0) {
251 gn->type |= OP_SAVE_CMDS;
252 return(0);
255 while ((*cmd == '@') || (*cmd == '-') || (*cmd == '+')) {
256 switch (*cmd) {
257 case '@':
258 silent = DEBUG(LOUD) ? FALSE : TRUE;
259 break;
260 case '-':
261 errCheck = FALSE;
262 break;
263 case '+':
264 doIt = TRUE;
265 if (!shellName) /* we came here from jobs */
266 Shell_Init();
267 break;
269 cmd++;
272 while (isspace((unsigned char)*cmd))
273 cmd++;
276 * If we did not end up with a command, just skip it.
278 if (!*cmd)
279 return (0);
281 #if !defined(MAKE_NATIVE)
283 * In a non-native build, the host environment might be weird enough
284 * that it's necessary to go through a shell to get the correct
285 * behaviour. Or perhaps the shell has been replaced with something
286 * that does extra logging, and that should not be bypassed.
288 useShell = TRUE;
289 #else
291 * Search for meta characters in the command. If there are no meta
292 * characters, there's no need to execute a shell to execute the
293 * command.
295 * Additionally variable assignments and empty commands
296 * go to the shell. Therefore treat '=' and ':' like shell
297 * meta characters as documented in make(1).
300 useShell = needshell(cmd, FALSE);
301 #endif
304 * Print the command before echoing if we're not supposed to be quiet for
305 * this one. We also print the command if -n given.
307 if (!silent || NoExecute(gn)) {
308 printf("%s\n", cmd);
309 fflush(stdout);
313 * If we're not supposed to execute any commands, this is as far as
314 * we go...
316 if (!doIt && NoExecute(gn)) {
317 return (0);
319 if (DEBUG(JOB))
320 fprintf(debug_file, "Execute: '%s'\n", cmd);
322 again:
323 if (useShell) {
325 * We need to pass the command off to the shell, typically
326 * because the command contains a "meta" character.
328 static const char *shargv[5];
329 int shargc;
331 shargc = 0;
332 shargv[shargc++] = shellPath;
334 * The following work for any of the builtin shell specs.
336 if (errCheck && shellErrFlag) {
337 shargv[shargc++] = shellErrFlag;
339 if (DEBUG(SHELL))
340 shargv[shargc++] = "-xc";
341 else
342 shargv[shargc++] = "-c";
343 shargv[shargc++] = cmd;
344 shargv[shargc++] = NULL;
345 av = shargv;
346 argc = 0;
347 bp = NULL;
348 mav = NULL;
349 } else {
351 * No meta-characters, so no need to exec a shell. Break the command
352 * into words to form an argument vector we can execute.
354 mav = brk_string(cmd, &argc, TRUE, &bp);
355 if (mav == NULL) {
356 useShell = 1;
357 goto again;
359 av = (void *)mav;
362 local = TRUE;
364 #ifdef USE_META
365 if (useMeta) {
366 meta_compat_start();
368 #endif
371 * Fork and execute the single command. If the fork fails, we abort.
373 cpid = vFork();
374 if (cpid < 0) {
375 Fatal("Could not fork");
377 if (cpid == 0) {
378 Var_ExportVars();
379 #ifdef USE_META
380 if (useMeta) {
381 meta_compat_child();
383 #endif
384 if (local)
385 (void)execvp(av[0], (char *const *)UNCONST(av));
386 else
387 (void)execv(av[0], (char *const *)UNCONST(av));
388 execError("exec", av[0]);
389 _exit(1);
392 free(mav);
393 free(bp);
395 Lst_Replace(cmdNode, NULL);
397 #ifdef USE_META
398 if (useMeta) {
399 meta_compat_parent();
401 #endif
404 * The child is off and running. Now all we can do is wait...
406 while (1) {
408 while ((retstat = wait(&reason)) != cpid) {
409 if (retstat > 0)
410 JobReapChild(retstat, reason, FALSE); /* not ours? */
411 if (retstat == -1 && errno != EINTR) {
412 break;
416 if (retstat > -1) {
417 if (WIFSTOPPED(reason)) {
418 status = WSTOPSIG(reason); /* stopped */
419 } else if (WIFEXITED(reason)) {
420 status = WEXITSTATUS(reason); /* exited */
421 #if defined(USE_META) && defined(USE_FILEMON_ONCE)
422 if (useMeta) {
423 meta_cmd_finish(NULL);
425 #endif
426 if (status != 0) {
427 if (DEBUG(ERROR)) {
428 fprintf(debug_file, "\n*** Failed target: %s\n*** Failed command: ",
429 gn->name);
430 for (cp = cmd; *cp; ) {
431 if (isspace((unsigned char)*cp)) {
432 fprintf(debug_file, " ");
433 while (isspace((unsigned char)*cp))
434 cp++;
435 } else {
436 fprintf(debug_file, "%c", *cp);
437 cp++;
440 fprintf(debug_file, "\n");
442 printf("*** Error code %d", status);
444 } else {
445 status = WTERMSIG(reason); /* signaled */
446 printf("*** Signal %d", status);
450 if (!WIFEXITED(reason) || (status != 0)) {
451 if (errCheck) {
452 #ifdef USE_META
453 if (useMeta) {
454 meta_job_error(NULL, gn, 0, status);
456 #endif
457 gn->made = ERROR;
458 if (keepgoing) {
460 * Abort the current target, but let others
461 * continue.
463 printf(" (continuing)\n");
464 } else {
465 printf("\n");
467 if (deleteOnError) {
468 CompatDeleteTarget(gn);
470 } else {
472 * Continue executing commands for this target.
473 * If we return 0, this will happen...
475 printf(" (ignored)\n");
476 status = 0;
479 break;
480 } else {
481 Fatal("error in wait: %d: %s", retstat, strerror(errno));
482 /*NOTREACHED*/
485 free(cmdStart);
487 return (status);
491 *-----------------------------------------------------------------------
492 * Compat_Make --
493 * Make a target.
495 * Input:
496 * gnp The node to make
497 * pgnp Parent to abort if necessary
499 * Results:
502 * Side Effects:
503 * If an error is detected and not being ignored, the process exits.
505 *-----------------------------------------------------------------------
508 Compat_Make(void *gnp, void *pgnp)
510 GNode *gn = (GNode *)gnp;
511 GNode *pgn = (GNode *)pgnp;
513 if (!shellName) /* we came here from jobs */
514 Shell_Init();
515 if (gn->made == UNMADE && (gn == pgn || (pgn->type & OP_MADE) == 0)) {
517 * First mark ourselves to be made, then apply whatever transformations
518 * the suffix module thinks are necessary. Once that's done, we can
519 * descend and make all our children. If any of them has an error
520 * but the -k flag was given, our 'make' field will be set FALSE again.
521 * This is our signal to not attempt to do anything but abort our
522 * parent as well.
524 gn->flags |= REMAKE;
525 gn->made = BEINGMADE;
526 if ((gn->type & OP_MADE) == 0)
527 Suff_FindDeps(gn);
528 Lst_ForEach(gn->children, Compat_Make, gn);
529 if ((gn->flags & REMAKE) == 0) {
530 gn->made = ABORTED;
531 pgn->flags &= ~REMAKE;
532 goto cohorts;
535 if (Lst_Member(gn->iParents, pgn) != NULL) {
536 char *p1;
537 Var_Set(IMPSRC, Var_Value(TARGET, gn, &p1), pgn, 0);
538 free(p1);
542 * All the children were made ok. Now cmgn->mtime contains the
543 * modification time of the newest child, we need to find out if we
544 * exist and when we were modified last. The criteria for datedness
545 * are defined by the Make_OODate function.
547 if (DEBUG(MAKE)) {
548 fprintf(debug_file, "Examining %s...", gn->name);
550 if (! Make_OODate(gn)) {
551 gn->made = UPTODATE;
552 if (DEBUG(MAKE)) {
553 fprintf(debug_file, "up-to-date.\n");
555 goto cohorts;
556 } else if (DEBUG(MAKE)) {
557 fprintf(debug_file, "out-of-date.\n");
561 * If the user is just seeing if something is out-of-date, exit now
562 * to tell him/her "yes".
564 if (queryFlag) {
565 exit(1);
569 * We need to be re-made. We also have to make sure we've got a $?
570 * variable. To be nice, we also define the $> variable using
571 * Make_DoAllVar().
573 Make_DoAllVar(gn);
576 * Alter our type to tell if errors should be ignored or things
577 * should not be printed so CompatRunCommand knows what to do.
579 if (Targ_Ignore(gn)) {
580 gn->type |= OP_IGNORE;
582 if (Targ_Silent(gn)) {
583 gn->type |= OP_SILENT;
586 if (Job_CheckCommands(gn, Fatal)) {
588 * Our commands are ok, but we still have to worry about the -t
589 * flag...
591 if (!touchFlag || (gn->type & OP_MAKE)) {
592 curTarg = gn;
593 #ifdef USE_META
594 if (useMeta && !NoExecute(gn)) {
595 meta_job_start(NULL, gn);
597 #endif
598 Lst_ForEach(gn->commands, CompatRunCommand, gn);
599 curTarg = NULL;
600 } else {
601 Job_Touch(gn, gn->type & OP_SILENT);
603 } else {
604 gn->made = ERROR;
606 #ifdef USE_META
607 if (useMeta && !NoExecute(gn)) {
608 if (meta_job_finish(NULL) != 0)
609 gn->made = ERROR;
611 #endif
613 if (gn->made != ERROR) {
615 * If the node was made successfully, mark it so, update
616 * its modification time and timestamp all its parents. Note
617 * that for .ZEROTIME targets, the timestamping isn't done.
618 * This is to keep its state from affecting that of its parent.
620 gn->made = MADE;
621 pgn->flags |= Make_Recheck(gn) == 0 ? FORCE : 0;
622 if (!(gn->type & OP_EXEC)) {
623 pgn->flags |= CHILDMADE;
624 Make_TimeStamp(pgn, gn);
626 } else if (keepgoing) {
627 pgn->flags &= ~REMAKE;
628 } else {
629 PrintOnError(gn, "\nStop.");
630 exit(1);
632 } else if (gn->made == ERROR) {
634 * Already had an error when making this beastie. Tell the parent
635 * to abort.
637 pgn->flags &= ~REMAKE;
638 } else {
639 if (Lst_Member(gn->iParents, pgn) != NULL) {
640 char *p1;
641 Var_Set(IMPSRC, Var_Value(TARGET, gn, &p1), pgn, 0);
642 free(p1);
644 switch(gn->made) {
645 case BEINGMADE:
646 Error("Graph cycles through %s", gn->name);
647 gn->made = ERROR;
648 pgn->flags &= ~REMAKE;
649 break;
650 case MADE:
651 if ((gn->type & OP_EXEC) == 0) {
652 pgn->flags |= CHILDMADE;
653 Make_TimeStamp(pgn, gn);
655 break;
656 case UPTODATE:
657 if ((gn->type & OP_EXEC) == 0) {
658 Make_TimeStamp(pgn, gn);
660 break;
661 default:
662 break;
666 cohorts:
667 Lst_ForEach(gn->cohorts, Compat_Make, pgnp);
668 return (0);
672 *-----------------------------------------------------------------------
673 * Compat_Run --
674 * Initialize this mode and start making.
676 * Input:
677 * targs List of target nodes to re-create
679 * Results:
680 * None.
682 * Side Effects:
683 * Guess what?
685 *-----------------------------------------------------------------------
687 void
688 Compat_Run(Lst targs)
690 GNode *gn = NULL;/* Current root target */
691 int errors; /* Number of targets not remade due to errors */
693 if (!shellName)
694 Shell_Init();
696 if (bmake_signal(SIGINT, SIG_IGN) != SIG_IGN) {
697 bmake_signal(SIGINT, CompatInterrupt);
699 if (bmake_signal(SIGTERM, SIG_IGN) != SIG_IGN) {
700 bmake_signal(SIGTERM, CompatInterrupt);
702 if (bmake_signal(SIGHUP, SIG_IGN) != SIG_IGN) {
703 bmake_signal(SIGHUP, CompatInterrupt);
705 if (bmake_signal(SIGQUIT, SIG_IGN) != SIG_IGN) {
706 bmake_signal(SIGQUIT, CompatInterrupt);
709 ENDNode = Targ_FindNode(".END", TARG_CREATE);
710 ENDNode->type = OP_SPECIAL;
712 * If the user has defined a .BEGIN target, execute the commands attached
713 * to it.
715 if (!queryFlag) {
716 gn = Targ_FindNode(".BEGIN", TARG_NOCREATE);
717 if (gn != NULL) {
718 Compat_Make(gn, gn);
719 if (gn->made == ERROR) {
720 PrintOnError(gn, "\nStop.");
721 exit(1);
727 * Expand .USE nodes right now, because they can modify the structure
728 * of the tree.
730 Make_ExpandUse(targs);
733 * For each entry in the list of targets to create, call Compat_Make on
734 * it to create the thing. Compat_Make will leave the 'made' field of gn
735 * in one of several states:
736 * UPTODATE gn was already up-to-date
737 * MADE gn was recreated successfully
738 * ERROR An error occurred while gn was being created
739 * ABORTED gn was not remade because one of its inferiors
740 * could not be made due to errors.
742 errors = 0;
743 while (!Lst_IsEmpty (targs)) {
744 gn = (GNode *)Lst_DeQueue(targs);
745 Compat_Make(gn, gn);
747 if (gn->made == UPTODATE) {
748 printf("`%s' is up to date.\n", gn->name);
749 } else if (gn->made == ABORTED) {
750 printf("`%s' not remade because of errors.\n", gn->name);
751 errors += 1;
756 * If the user has defined a .END target, run its commands.
758 if (errors == 0) {
759 Compat_Make(ENDNode, ENDNode);
760 if (gn->made == ERROR) {
761 PrintOnError(gn, "\nStop.");
762 exit(1);