Home | History | Annotate | Line # | Download | only in make
compat.c revision 1.138
      1  1.138    rillig /*	$NetBSD: compat.c,v 1.138 2020/08/30 19:56:02 rillig Exp $	*/
      2   1.10  christos 
      3    1.1       cgd /*
      4    1.1       cgd  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
      5   1.47       agc  * All rights reserved.
      6   1.47       agc  *
      7   1.47       agc  * This code is derived from software contributed to Berkeley by
      8   1.47       agc  * Adam de Boor.
      9   1.47       agc  *
     10   1.47       agc  * Redistribution and use in source and binary forms, with or without
     11   1.47       agc  * modification, are permitted provided that the following conditions
     12   1.47       agc  * are met:
     13   1.47       agc  * 1. Redistributions of source code must retain the above copyright
     14   1.47       agc  *    notice, this list of conditions and the following disclaimer.
     15   1.47       agc  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.47       agc  *    notice, this list of conditions and the following disclaimer in the
     17   1.47       agc  *    documentation and/or other materials provided with the distribution.
     18   1.47       agc  * 3. Neither the name of the University nor the names of its contributors
     19   1.47       agc  *    may be used to endorse or promote products derived from this software
     20   1.47       agc  *    without specific prior written permission.
     21   1.47       agc  *
     22   1.47       agc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23   1.47       agc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24   1.47       agc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25   1.47       agc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26   1.47       agc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27   1.47       agc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28   1.47       agc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29   1.47       agc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30   1.47       agc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31   1.47       agc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32   1.47       agc  * SUCH DAMAGE.
     33   1.47       agc  */
     34   1.47       agc 
     35   1.47       agc /*
     36    1.1       cgd  * Copyright (c) 1988, 1989 by Adam de Boor
     37    1.1       cgd  * Copyright (c) 1989 by Berkeley Softworks
     38    1.1       cgd  * All rights reserved.
     39    1.1       cgd  *
     40    1.1       cgd  * This code is derived from software contributed to Berkeley by
     41    1.1       cgd  * Adam de Boor.
     42    1.1       cgd  *
     43    1.1       cgd  * Redistribution and use in source and binary forms, with or without
     44    1.1       cgd  * modification, are permitted provided that the following conditions
     45    1.1       cgd  * are met:
     46    1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     47    1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     48    1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     49    1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     50    1.1       cgd  *    documentation and/or other materials provided with the distribution.
     51    1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     52    1.1       cgd  *    must display the following acknowledgement:
     53    1.1       cgd  *	This product includes software developed by the University of
     54    1.1       cgd  *	California, Berkeley and its contributors.
     55    1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     56    1.1       cgd  *    may be used to endorse or promote products derived from this software
     57    1.1       cgd  *    without specific prior written permission.
     58    1.1       cgd  *
     59    1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     60    1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     61    1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     62    1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     63    1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     64    1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     65    1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     66    1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     67    1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     68    1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     69    1.1       cgd  * SUCH DAMAGE.
     70    1.1       cgd  */
     71    1.1       cgd 
     72   1.53      ross #ifndef MAKE_NATIVE
     73  1.138    rillig static char rcsid[] = "$NetBSD: compat.c,v 1.138 2020/08/30 19:56:02 rillig Exp $";
     74   1.22     lukem #else
     75   1.21  christos #include <sys/cdefs.h>
     76    1.1       cgd #ifndef lint
     77   1.10  christos #if 0
     78   1.14  christos static char sccsid[] = "@(#)compat.c	8.2 (Berkeley) 3/19/94";
     79   1.10  christos #else
     80  1.138    rillig __RCSID("$NetBSD: compat.c,v 1.138 2020/08/30 19:56:02 rillig Exp $");
     81   1.10  christos #endif
     82    1.1       cgd #endif /* not lint */
     83   1.22     lukem #endif
     84    1.1       cgd 
     85    1.1       cgd /*-
     86    1.1       cgd  * compat.c --
     87    1.1       cgd  *	The routines in this file implement the full-compatibility
     88    1.1       cgd  *	mode of PMake. Most of the special functionality of PMake
     89    1.1       cgd  *	is available in this mode. Things not supported:
     90    1.1       cgd  *	    - different shells.
     91    1.1       cgd  *	    - friendly variable substitution.
     92    1.1       cgd  *
     93    1.1       cgd  * Interface:
     94    1.1       cgd  *	Compat_Run	    Initialize things for this module and recreate
     95    1.1       cgd  *	    	  	    thems as need creatin'
     96    1.1       cgd  */
     97    1.1       cgd 
     98    1.1       cgd #include    <sys/types.h>
     99   1.11       jtc #include    <sys/stat.h>
    100    1.1       cgd #include    <sys/wait.h>
    101   1.44       wiz 
    102    1.1       cgd #include    <ctype.h>
    103   1.11       jtc #include    <errno.h>
    104   1.11       jtc #include    <signal.h>
    105   1.44       wiz #include    <stdio.h>
    106   1.44       wiz 
    107    1.1       cgd #include    "make.h"
    108    1.5       cgd #include    "hash.h"
    109    1.5       cgd #include    "dir.h"
    110    1.5       cgd #include    "job.h"
    111   1.97  christos #include    "metachar.h"
    112   1.43     bjh21 #include    "pathnames.h"
    113    1.1       cgd 
    114    1.1       cgd 
    115   1.72       dsl static GNode	    *curTarg = NULL;
    116    1.1       cgd static GNode	    *ENDNode;
    117   1.89       wiz static void CompatInterrupt(int);
    118  1.107       sjg static pid_t compatChild;
    119  1.107       sjg static int compatSigno;
    120    1.1       cgd 
    121  1.106  dholland /*
    122  1.106  dholland  * CompatDeleteTarget -- delete a failed, interrupted, or otherwise
    123  1.106  dholland  * duffed target if not inhibited by .PRECIOUS.
    124  1.106  dholland  */
    125  1.106  dholland static void
    126  1.106  dholland CompatDeleteTarget(GNode *gn)
    127  1.106  dholland {
    128  1.106  dholland     if ((gn != NULL) && !Targ_Precious (gn)) {
    129  1.116    rillig 	char *p1;
    130  1.116    rillig 	const char *file = Var_Value(TARGET, gn, &p1);
    131  1.106  dholland 
    132  1.106  dholland 	if (!noExecute && eunlink(file) != -1) {
    133  1.106  dholland 	    Error("*** %s removed", file);
    134  1.106  dholland 	}
    135  1.106  dholland 
    136  1.117    rillig 	bmake_free(p1);
    137  1.106  dholland     }
    138  1.106  dholland }
    139  1.106  dholland 
    140  1.134    rillig /* Interrupt the creation of the current target and remove it if it ain't
    141  1.134    rillig  * precious. Then exit.
    142    1.1       cgd  *
    143  1.134    rillig  * If .INTERRUPT exists, its commands are run first WITH INTERRUPTS IGNORED.
    144    1.1       cgd  *
    145  1.106  dholland  * XXX: is .PRECIOUS supposed to inhibit .INTERRUPT? I doubt it, but I've
    146  1.106  dholland  * left the logic alone for now. - dholland 20160826
    147    1.1       cgd  */
    148    1.1       cgd static void
    149   1.44       wiz CompatInterrupt(int signo)
    150    1.1       cgd {
    151    1.1       cgd     GNode   *gn;
    152   1.14  christos 
    153  1.106  dholland     CompatDeleteTarget(curTarg);
    154  1.106  dholland 
    155   1.72       dsl     if ((curTarg != NULL) && !Targ_Precious (curTarg)) {
    156    1.1       cgd 	/*
    157    1.1       cgd 	 * Run .INTERRUPT only if hit with interrupt signal
    158    1.1       cgd 	 */
    159    1.1       cgd 	if (signo == SIGINT) {
    160    1.1       cgd 	    gn = Targ_FindNode(".INTERRUPT", TARG_NOCREATE);
    161   1.72       dsl 	    if (gn != NULL) {
    162   1.57  christos 		Compat_Make(gn, gn);
    163    1.1       cgd 	    }
    164    1.1       cgd 	}
    165    1.1       cgd     }
    166   1.87       sjg     if (signo == SIGQUIT)
    167   1.87       sjg 	_exit(signo);
    168  1.107       sjg     /*
    169  1.107       sjg      * If there is a child running, pass the signal on
    170  1.107       sjg      * we will exist after it has exited.
    171  1.107       sjg      */
    172  1.107       sjg     compatSigno = signo;
    173  1.107       sjg     if (compatChild > 0) {
    174  1.107       sjg 	KILLPG(compatChild, signo);
    175  1.107       sjg     } else {
    176  1.107       sjg 	bmake_signal(signo, SIG_DFL);
    177  1.107       sjg 	kill(myPid, signo);
    178  1.107       sjg     }
    179    1.1       cgd }
    180  1.120    rillig 
    181    1.1       cgd /*-
    182    1.1       cgd  *-----------------------------------------------------------------------
    183    1.1       cgd  * CompatRunCommand --
    184    1.1       cgd  *	Execute the next command for a target. If the command returns an
    185    1.1       cgd  *	error, the node's made field is set to ERROR and creation stops.
    186    1.1       cgd  *
    187   1.44       wiz  * Input:
    188   1.44       wiz  *	cmdp		Command to execute
    189   1.44       wiz  *	gnp		Node from which the command came
    190   1.44       wiz  *
    191    1.1       cgd  * Results:
    192    1.1       cgd  *	0 if the command succeeded, 1 if an error occurred.
    193    1.1       cgd  *
    194    1.1       cgd  * Side Effects:
    195    1.1       cgd  *	The node's 'made' field may be set to ERROR.
    196    1.1       cgd  *
    197    1.1       cgd  *-----------------------------------------------------------------------
    198    1.1       cgd  */
    199   1.54       sjg int
    200   1.75       dsl CompatRunCommand(void *cmdp, void *gnp)
    201    1.1       cgd {
    202    1.1       cgd     char    	  *cmdStart;	/* Start of expanded command */
    203   1.24  christos     char 	  *cp, *bp;
    204    1.1       cgd     Boolean 	  silent,   	/* Don't print command */
    205  1.118    rillig 		  doIt;		/* Execute even if -n */
    206   1.64  christos     volatile Boolean errCheck; 	/* Check errors */
    207   1.13  christos     int 	  reason;   	/* Reason for child's death */
    208    1.1       cgd     int	    	  status;   	/* Description of child's death */
    209   1.76  dholland     pid_t	  cpid;	    	/* Child actually found */
    210   1.76  dholland     pid_t	  retstat;    	/* Result of wait */
    211    1.1       cgd     LstNode 	  cmdNode;  	/* Node where current command is located */
    212   1.64  christos     const char  ** volatile av;	/* Argument vector for thing to exec */
    213   1.64  christos     char	** volatile mav;/* Copy of the argument vector for freeing */
    214   1.62       apb     Boolean 	  useShell;    	/* TRUE if command should be executed
    215   1.62       apb 				 * using a shell */
    216   1.64  christos     char	  * volatile cmd = (char *)cmdp;
    217   1.60  christos     GNode	  *gn = (GNode *)gnp;
    218    1.1       cgd 
    219  1.133    rillig     silent = (gn->type & OP_SILENT) != 0;
    220    1.1       cgd     errCheck = !(gn->type & OP_IGNORE);
    221   1.54       sjg     doIt = FALSE;
    222  1.113    rillig 
    223  1.136    rillig     cmdNode = Lst_FindDatum(gn->commands, cmd);
    224  1.115    rillig     cmdStart = Var_Subst(cmd, gn, VARE_WANTRES);
    225    1.1       cgd 
    226    1.1       cgd     /*
    227   1.24  christos      * brk_string will return an argv with a NULL in av[0], thus causing
    228    1.1       cgd      * execvp to choke and die horribly. Besides, how can we execute a null
    229    1.1       cgd      * command? In any case, we warn the user that the command expanded to
    230    1.1       cgd      * nothing (is this the right thing to do?).
    231    1.1       cgd      */
    232   1.14  christos 
    233    1.1       cgd     if (*cmdStart == '\0') {
    234    1.7       jtc 	free(cmdStart);
    235  1.112    rillig 	return 0;
    236    1.1       cgd     }
    237   1.74       dsl     cmd = cmdStart;
    238  1.132    rillig     LstNode_Set(cmdNode, cmdStart);
    239    1.1       cgd 
    240    1.1       cgd     if ((gn->type & OP_SAVE_CMDS) && (gn != ENDNode)) {
    241  1.125    rillig         assert(ENDNode != NULL);
    242  1.132    rillig 	Lst_Append(ENDNode->commands, cmdStart);
    243  1.112    rillig 	return 0;
    244   1.74       dsl     }
    245   1.74       dsl     if (strcmp(cmdStart, "...") == 0) {
    246    1.1       cgd 	gn->type |= OP_SAVE_CMDS;
    247  1.112    rillig 	return 0;
    248    1.1       cgd     }
    249    1.1       cgd 
    250   1.54       sjg     while ((*cmd == '@') || (*cmd == '-') || (*cmd == '+')) {
    251   1.54       sjg 	switch (*cmd) {
    252   1.54       sjg 	case '@':
    253  1.133    rillig 	    silent = !DEBUG(LOUD);
    254   1.54       sjg 	    break;
    255   1.54       sjg 	case '-':
    256    1.1       cgd 	    errCheck = FALSE;
    257   1.54       sjg 	    break;
    258   1.54       sjg 	case '+':
    259   1.54       sjg 	    doIt = TRUE;
    260   1.97  christos 	    if (!shellName)		/* we came here from jobs */
    261   1.97  christos 		Shell_Init();
    262   1.54       sjg 	    break;
    263    1.1       cgd 	}
    264    1.1       cgd 	cmd++;
    265    1.1       cgd     }
    266    1.1       cgd 
    267    1.5       cgd     while (isspace((unsigned char)*cmd))
    268    1.5       cgd 	cmd++;
    269   1.14  christos 
    270   1.86       sjg     /*
    271   1.86       sjg      * If we did not end up with a command, just skip it.
    272   1.86       sjg      */
    273   1.86       sjg     if (!*cmd)
    274  1.112    rillig 	return 0;
    275   1.86       sjg 
    276   1.62       apb #if !defined(MAKE_NATIVE)
    277   1.62       apb     /*
    278   1.62       apb      * In a non-native build, the host environment might be weird enough
    279   1.62       apb      * that it's necessary to go through a shell to get the correct
    280   1.62       apb      * behaviour.  Or perhaps the shell has been replaced with something
    281   1.62       apb      * that does extra logging, and that should not be bypassed.
    282   1.62       apb      */
    283   1.62       apb     useShell = TRUE;
    284   1.62       apb #else
    285    1.1       cgd     /*
    286    1.1       cgd      * Search for meta characters in the command. If there are no meta
    287    1.1       cgd      * characters, there's no need to execute a shell to execute the
    288    1.1       cgd      * command.
    289   1.98   mlelstv      *
    290   1.98   mlelstv      * Additionally variable assignments and empty commands
    291   1.98   mlelstv      * go to the shell. Therefore treat '=' and ':' like shell
    292   1.98   mlelstv      * meta characters as documented in make(1).
    293    1.1       cgd      */
    294  1.113    rillig 
    295  1.100  christos     useShell = needshell(cmd, FALSE);
    296   1.62       apb #endif
    297    1.1       cgd 
    298    1.1       cgd     /*
    299    1.1       cgd      * Print the command before echoing if we're not supposed to be quiet for
    300    1.1       cgd      * this one. We also print the command if -n given.
    301    1.1       cgd      */
    302   1.31  sommerfe     if (!silent || NoExecute(gn)) {
    303   1.59  christos 	printf("%s\n", cmd);
    304    1.1       cgd 	fflush(stdout);
    305    1.1       cgd     }
    306    1.1       cgd 
    307    1.1       cgd     /*
    308    1.1       cgd      * If we're not supposed to execute any commands, this is as far as
    309    1.1       cgd      * we go...
    310    1.1       cgd      */
    311   1.54       sjg     if (!doIt && NoExecute(gn)) {
    312  1.112    rillig 	return 0;
    313    1.1       cgd     }
    314   1.74       dsl     if (DEBUG(JOB))
    315   1.74       dsl 	fprintf(debug_file, "Execute: '%s'\n", cmd);
    316   1.14  christos 
    317   1.73  christos again:
    318   1.62       apb     if (useShell) {
    319    1.1       cgd 	/*
    320   1.62       apb 	 * We need to pass the command off to the shell, typically
    321   1.62       apb 	 * because the command contains a "meta" character.
    322    1.1       cgd 	 */
    323   1.92       sjg 	static const char *shargv[5];
    324   1.92       sjg 	int shargc;
    325    1.1       cgd 
    326   1.92       sjg 	shargc = 0;
    327   1.92       sjg 	shargv[shargc++] = shellPath;
    328   1.46       sjg 	/*
    329   1.46       sjg 	 * The following work for any of the builtin shell specs.
    330   1.46       sjg 	 */
    331   1.93       sjg 	if (errCheck && shellErrFlag) {
    332   1.92       sjg 	    shargv[shargc++] = shellErrFlag;
    333   1.92       sjg 	}
    334   1.34       sjg 	if (DEBUG(SHELL))
    335   1.92       sjg 		shargv[shargc++] = "-xc";
    336   1.34       sjg 	else
    337   1.92       sjg 		shargv[shargc++] = "-c";
    338   1.92       sjg 	shargv[shargc++] = cmd;
    339  1.138    rillig 	shargv[shargc] = NULL;
    340    1.1       cgd 	av = shargv;
    341   1.24  christos 	bp = NULL;
    342   1.61  christos 	mav = NULL;
    343    1.1       cgd     } else {
    344    1.1       cgd 	/*
    345    1.1       cgd 	 * No meta-characters, so no need to exec a shell. Break the command
    346    1.1       cgd 	 * into words to form an argument vector we can execute.
    347    1.1       cgd 	 */
    348  1.138    rillig 	Words words = Str_Words(cmd, TRUE);
    349  1.138    rillig 	mav = words.words;
    350  1.138    rillig 	bp = words.freeIt;
    351   1.73  christos 	if (mav == NULL) {
    352   1.73  christos 		useShell = 1;
    353   1.73  christos 		goto again;
    354   1.73  christos 	}
    355   1.83  christos 	av = (void *)mav;
    356    1.1       cgd     }
    357   1.14  christos 
    358   1.81       sjg #ifdef USE_META
    359   1.81       sjg     if (useMeta) {
    360   1.81       sjg 	meta_compat_start();
    361   1.81       sjg     }
    362   1.81       sjg #endif
    363  1.113    rillig 
    364    1.1       cgd     /*
    365    1.1       cgd      * Fork and execute the single command. If the fork fails, we abort.
    366    1.1       cgd      */
    367  1.107       sjg     compatChild = cpid = vFork();
    368    1.1       cgd     if (cpid < 0) {
    369    1.1       cgd 	Fatal("Could not fork");
    370    1.1       cgd     }
    371    1.1       cgd     if (cpid == 0) {
    372   1.68       sjg 	Var_ExportVars();
    373   1.81       sjg #ifdef USE_META
    374   1.81       sjg 	if (useMeta) {
    375   1.81       sjg 	    meta_compat_child();
    376   1.81       sjg 	}
    377   1.81       sjg #endif
    378  1.121    rillig 	(void)execvp(av[0], (char *const *)UNCONST(av));
    379   1.41        pk 	execError("exec", av[0]);
    380   1.23   thorpej 	_exit(1);
    381    1.1       cgd     }
    382  1.103  christos 
    383  1.103  christos     free(mav);
    384  1.103  christos     free(bp);
    385  1.103  christos 
    386  1.127    rillig     /* XXX: Memory management looks suspicious here. */
    387  1.127    rillig     /* XXX: Setting a list item to NULL is unexpected. */
    388  1.132    rillig     LstNode_SetNull(cmdNode);
    389   1.14  christos 
    390   1.81       sjg #ifdef USE_META
    391   1.81       sjg     if (useMeta) {
    392  1.110  riastrad 	meta_compat_parent(cpid);
    393   1.81       sjg     }
    394   1.81       sjg #endif
    395   1.81       sjg 
    396    1.1       cgd     /*
    397    1.1       cgd      * The child is off and running. Now all we can do is wait...
    398    1.1       cgd      */
    399   1.71  christos     while (1) {
    400    1.1       cgd 
    401   1.37   reinoud 	while ((retstat = wait(&reason)) != cpid) {
    402   1.80       sjg 	    if (retstat > 0)
    403   1.80       sjg 		JobReapChild(retstat, reason, FALSE); /* not ours? */
    404   1.37   reinoud 	    if (retstat == -1 && errno != EINTR) {
    405    1.1       cgd 		break;
    406    1.1       cgd 	    }
    407    1.1       cgd 	}
    408   1.14  christos 
    409   1.37   reinoud 	if (retstat > -1) {
    410    1.1       cgd 	    if (WIFSTOPPED(reason)) {
    411   1.13  christos 		status = WSTOPSIG(reason);		/* stopped */
    412    1.1       cgd 	    } else if (WIFEXITED(reason)) {
    413   1.13  christos 		status = WEXITSTATUS(reason);		/* exited */
    414  1.109      maxv #if defined(USE_META) && defined(USE_FILEMON_ONCE)
    415  1.109      maxv 		if (useMeta) {
    416  1.109      maxv 		    meta_cmd_finish(NULL);
    417  1.109      maxv 		}
    418  1.109      maxv #endif
    419    1.1       cgd 		if (status != 0) {
    420   1.52      jmmv 		    if (DEBUG(ERROR)) {
    421  1.118    rillig 			fprintf(debug_file, "\n*** Failed target:  %s\n*** Failed command: ",
    422   1.52      jmmv 			    gn->name);
    423  1.118    rillig 			for (cp = cmd; *cp; ) {
    424  1.118    rillig 			    if (isspace((unsigned char)*cp)) {
    425   1.63       dsl 				fprintf(debug_file, " ");
    426  1.118    rillig 				while (isspace((unsigned char)*cp))
    427   1.52      jmmv 				    cp++;
    428   1.52      jmmv 			    } else {
    429   1.63       dsl 				fprintf(debug_file, "%c", *cp);
    430  1.118    rillig 				cp++;
    431   1.52      jmmv 			    }
    432  1.118    rillig 			}
    433   1.63       dsl 			fprintf(debug_file, "\n");
    434   1.51     lukem 		    }
    435   1.77       sjg 		    printf("*** Error code %d", status);
    436    1.1       cgd 		}
    437    1.1       cgd 	    } else {
    438   1.13  christos 		status = WTERMSIG(reason);		/* signaled */
    439   1.59  christos 		printf("*** Signal %d", status);
    440   1.14  christos 	    }
    441   1.14  christos 
    442    1.1       cgd 
    443    1.1       cgd 	    if (!WIFEXITED(reason) || (status != 0)) {
    444    1.1       cgd 		if (errCheck) {
    445   1.81       sjg #ifdef USE_META
    446   1.81       sjg 		    if (useMeta) {
    447   1.81       sjg 			meta_job_error(NULL, gn, 0, status);
    448   1.81       sjg 		    }
    449   1.81       sjg #endif
    450    1.1       cgd 		    gn->made = ERROR;
    451    1.1       cgd 		    if (keepgoing) {
    452    1.1       cgd 			/*
    453    1.1       cgd 			 * Abort the current target, but let others
    454    1.1       cgd 			 * continue.
    455    1.1       cgd 			 */
    456   1.59  christos 			printf(" (continuing)\n");
    457  1.106  dholland 		    } else {
    458  1.106  dholland 			printf("\n");
    459  1.106  dholland 		    }
    460  1.106  dholland 		    if (deleteOnError) {
    461  1.106  dholland 			    CompatDeleteTarget(gn);
    462    1.1       cgd 		    }
    463    1.1       cgd 		} else {
    464    1.1       cgd 		    /*
    465    1.1       cgd 		     * Continue executing commands for this target.
    466    1.1       cgd 		     * If we return 0, this will happen...
    467    1.1       cgd 		     */
    468   1.59  christos 		    printf(" (ignored)\n");
    469    1.1       cgd 		    status = 0;
    470    1.1       cgd 		}
    471    1.1       cgd 	    }
    472    1.1       cgd 	    break;
    473    1.1       cgd 	} else {
    474   1.56  christos 	    Fatal("error in wait: %d: %s", retstat, strerror(errno));
    475    1.1       cgd 	    /*NOTREACHED*/
    476    1.1       cgd 	}
    477    1.1       cgd     }
    478   1.50     lukem     free(cmdStart);
    479  1.107       sjg     compatChild = 0;
    480  1.107       sjg     if (compatSigno) {
    481  1.107       sjg 	bmake_signal(compatSigno, SIG_DFL);
    482  1.107       sjg 	kill(myPid, compatSigno);
    483  1.107       sjg     }
    484  1.113    rillig 
    485  1.112    rillig     return status;
    486    1.1       cgd }
    487  1.120    rillig 
    488    1.1       cgd /*-
    489    1.1       cgd  *-----------------------------------------------------------------------
    490   1.57  christos  * Compat_Make --
    491    1.1       cgd  *	Make a target.
    492    1.1       cgd  *
    493   1.44       wiz  * Input:
    494   1.44       wiz  *	gnp		The node to make
    495   1.44       wiz  *	pgnp		Parent to abort if necessary
    496   1.44       wiz  *
    497    1.1       cgd  * Results:
    498    1.1       cgd  *	0
    499    1.1       cgd  *
    500    1.1       cgd  * Side Effects:
    501    1.1       cgd  *	If an error is detected and not being ignored, the process exits.
    502    1.1       cgd  *
    503    1.1       cgd  *-----------------------------------------------------------------------
    504    1.1       cgd  */
    505   1.57  christos int
    506   1.75       dsl Compat_Make(void *gnp, void *pgnp)
    507    1.1       cgd {
    508   1.60  christos     GNode *gn = (GNode *)gnp;
    509   1.60  christos     GNode *pgn = (GNode *)pgnp;
    510   1.16  christos 
    511   1.97  christos     if (!shellName)		/* we came here from jobs */
    512   1.97  christos 	Shell_Init();
    513   1.40        pk     if (gn->made == UNMADE && (gn == pgn || (pgn->type & OP_MADE) == 0)) {
    514    1.1       cgd 	/*
    515    1.1       cgd 	 * First mark ourselves to be made, then apply whatever transformations
    516    1.1       cgd 	 * the suffix module thinks are necessary. Once that's done, we can
    517    1.1       cgd 	 * descend and make all our children. If any of them has an error
    518    1.1       cgd 	 * but the -k flag was given, our 'make' field will be set FALSE again.
    519    1.1       cgd 	 * This is our signal to not attempt to do anything but abort our
    520    1.1       cgd 	 * parent as well.
    521    1.1       cgd 	 */
    522   1.26  christos 	gn->flags |= REMAKE;
    523    1.1       cgd 	gn->made = BEINGMADE;
    524   1.38        pk 	if ((gn->type & OP_MADE) == 0)
    525   1.56  christos 	    Suff_FindDeps(gn);
    526  1.132    rillig 	Lst_ForEach(gn->children, Compat_Make, gn);
    527   1.26  christos 	if ((gn->flags & REMAKE) == 0) {
    528    1.1       cgd 	    gn->made = ABORTED;
    529  1.129    rillig 	    pgn->flags &= ~(unsigned)REMAKE;
    530   1.28   mycroft 	    goto cohorts;
    531    1.1       cgd 	}
    532    1.1       cgd 
    533  1.137    rillig 	if (Lst_FindDatum(gn->implicitParents, pgn) != NULL) {
    534   1.96     joerg 	    char *p1;
    535  1.111    rillig 	    Var_Set(IMPSRC, Var_Value(TARGET, gn, &p1), pgn);
    536  1.117    rillig 	    bmake_free(p1);
    537   1.96     joerg 	}
    538   1.14  christos 
    539    1.1       cgd 	/*
    540   1.82  christos 	 * All the children were made ok. Now cmgn->mtime contains the
    541   1.82  christos 	 * modification time of the newest child, we need to find out if we
    542   1.82  christos 	 * exist and when we were modified last. The criteria for datedness
    543   1.82  christos 	 * are defined by the Make_OODate function.
    544    1.1       cgd 	 */
    545    1.1       cgd 	if (DEBUG(MAKE)) {
    546   1.63       dsl 	    fprintf(debug_file, "Examining %s...", gn->name);
    547    1.1       cgd 	}
    548    1.1       cgd 	if (! Make_OODate(gn)) {
    549    1.1       cgd 	    gn->made = UPTODATE;
    550    1.1       cgd 	    if (DEBUG(MAKE)) {
    551   1.63       dsl 		fprintf(debug_file, "up-to-date.\n");
    552    1.1       cgd 	    }
    553   1.28   mycroft 	    goto cohorts;
    554    1.1       cgd 	} else if (DEBUG(MAKE)) {
    555   1.63       dsl 	    fprintf(debug_file, "out-of-date.\n");
    556    1.1       cgd 	}
    557    1.1       cgd 
    558    1.1       cgd 	/*
    559    1.1       cgd 	 * If the user is just seeing if something is out-of-date, exit now
    560    1.1       cgd 	 * to tell him/her "yes".
    561    1.1       cgd 	 */
    562    1.1       cgd 	if (queryFlag) {
    563   1.59  christos 	    exit(1);
    564    1.1       cgd 	}
    565    1.1       cgd 
    566    1.1       cgd 	/*
    567    1.1       cgd 	 * We need to be re-made. We also have to make sure we've got a $?
    568    1.1       cgd 	 * variable. To be nice, we also define the $> variable using
    569    1.1       cgd 	 * Make_DoAllVar().
    570    1.1       cgd 	 */
    571    1.1       cgd 	Make_DoAllVar(gn);
    572   1.14  christos 
    573    1.1       cgd 	/*
    574    1.1       cgd 	 * Alter our type to tell if errors should be ignored or things
    575    1.1       cgd 	 * should not be printed so CompatRunCommand knows what to do.
    576    1.1       cgd 	 */
    577   1.56  christos 	if (Targ_Ignore(gn)) {
    578    1.1       cgd 	    gn->type |= OP_IGNORE;
    579    1.1       cgd 	}
    580   1.56  christos 	if (Targ_Silent(gn)) {
    581    1.1       cgd 	    gn->type |= OP_SILENT;
    582    1.1       cgd 	}
    583    1.1       cgd 
    584   1.56  christos 	if (Job_CheckCommands(gn, Fatal)) {
    585    1.1       cgd 	    /*
    586    1.1       cgd 	     * Our commands are ok, but we still have to worry about the -t
    587    1.1       cgd 	     * flag...
    588    1.1       cgd 	     */
    589   1.20   mycroft 	    if (!touchFlag || (gn->type & OP_MAKE)) {
    590    1.1       cgd 		curTarg = gn;
    591   1.81       sjg #ifdef USE_META
    592   1.81       sjg 		if (useMeta && !NoExecute(gn)) {
    593   1.81       sjg 		    meta_job_start(NULL, gn);
    594   1.81       sjg 		}
    595   1.81       sjg #endif
    596  1.132    rillig 		Lst_ForEach(gn->commands, CompatRunCommand, gn);
    597   1.72       dsl 		curTarg = NULL;
    598    1.1       cgd 	    } else {
    599  1.133    rillig 		Job_Touch(gn, (gn->type & OP_SILENT) != 0);
    600    1.1       cgd 	    }
    601    1.1       cgd 	} else {
    602    1.1       cgd 	    gn->made = ERROR;
    603    1.1       cgd 	}
    604   1.81       sjg #ifdef USE_META
    605   1.81       sjg 	if (useMeta && !NoExecute(gn)) {
    606  1.105       sjg 	    if (meta_job_finish(NULL) != 0)
    607  1.105       sjg 		gn->made = ERROR;
    608   1.81       sjg 	}
    609   1.81       sjg #endif
    610    1.1       cgd 
    611    1.1       cgd 	if (gn->made != ERROR) {
    612    1.1       cgd 	    /*
    613    1.1       cgd 	     * If the node was made successfully, mark it so, update
    614    1.1       cgd 	     * its modification time and timestamp all its parents. Note
    615    1.1       cgd 	     * that for .ZEROTIME targets, the timestamping isn't done.
    616    1.1       cgd 	     * This is to keep its state from affecting that of its parent.
    617    1.1       cgd 	     */
    618    1.1       cgd 	    gn->made = MADE;
    619   1.26  christos 	    pgn->flags |= Make_Recheck(gn) == 0 ? FORCE : 0;
    620    1.1       cgd 	    if (!(gn->type & OP_EXEC)) {
    621   1.26  christos 		pgn->flags |= CHILDMADE;
    622    1.1       cgd 		Make_TimeStamp(pgn, gn);
    623    1.1       cgd 	    }
    624    1.1       cgd 	} else if (keepgoing) {
    625  1.129    rillig 	    pgn->flags &= ~(unsigned)REMAKE;
    626    1.1       cgd 	} else {
    627  1.106  dholland 	    PrintOnError(gn, "\nStop.");
    628   1.59  christos 	    exit(1);
    629    1.1       cgd 	}
    630    1.1       cgd     } else if (gn->made == ERROR) {
    631    1.1       cgd 	/*
    632    1.1       cgd 	 * Already had an error when making this beastie. Tell the parent
    633    1.1       cgd 	 * to abort.
    634    1.1       cgd 	 */
    635  1.129    rillig 	pgn->flags &= ~(unsigned)REMAKE;
    636    1.1       cgd     } else {
    637  1.137    rillig 	if (Lst_FindDatum(gn->implicitParents, pgn) != NULL) {
    638   1.96     joerg 	    char *p1;
    639  1.135    rillig 	    const char *target = Var_Value(TARGET, gn, &p1);
    640  1.135    rillig 	    Var_Set(IMPSRC, target != NULL ? target : "", pgn);
    641  1.117    rillig 	    bmake_free(p1);
    642   1.96     joerg 	}
    643    1.1       cgd 	switch(gn->made) {
    644    1.1       cgd 	    case BEINGMADE:
    645   1.42  christos 		Error("Graph cycles through %s", gn->name);
    646    1.1       cgd 		gn->made = ERROR;
    647  1.129    rillig 		pgn->flags &= ~(unsigned)REMAKE;
    648    1.1       cgd 		break;
    649    1.1       cgd 	    case MADE:
    650    1.1       cgd 		if ((gn->type & OP_EXEC) == 0) {
    651   1.26  christos 		    pgn->flags |= CHILDMADE;
    652    1.1       cgd 		    Make_TimeStamp(pgn, gn);
    653    1.1       cgd 		}
    654    1.1       cgd 		break;
    655    1.1       cgd 	    case UPTODATE:
    656    1.1       cgd 		if ((gn->type & OP_EXEC) == 0) {
    657    1.1       cgd 		    Make_TimeStamp(pgn, gn);
    658    1.1       cgd 		}
    659    1.1       cgd 		break;
    660    1.5       cgd 	    default:
    661    1.5       cgd 		break;
    662    1.1       cgd 	}
    663    1.1       cgd     }
    664    1.1       cgd 
    665   1.28   mycroft cohorts:
    666  1.132    rillig     Lst_ForEach(gn->cohorts, Compat_Make, pgnp);
    667  1.112    rillig     return 0;
    668    1.1       cgd }
    669  1.120    rillig 
    670  1.134    rillig /* Initialize this module and start making.
    671    1.1       cgd  *
    672   1.44       wiz  * Input:
    673  1.134    rillig  *	targs		The target nodes to re-create
    674    1.1       cgd  */
    675    1.1       cgd void
    676   1.44       wiz Compat_Run(Lst targs)
    677    1.1       cgd {
    678    1.5       cgd     GNode   	  *gn = NULL;/* Current root target */
    679    1.1       cgd     int	    	  errors;   /* Number of targets not remade due to errors */
    680   1.46       sjg 
    681   1.97  christos     if (!shellName)
    682   1.97  christos 	Shell_Init();
    683    1.1       cgd 
    684   1.79       sjg     if (bmake_signal(SIGINT, SIG_IGN) != SIG_IGN) {
    685   1.79       sjg 	bmake_signal(SIGINT, CompatInterrupt);
    686    1.1       cgd     }
    687   1.79       sjg     if (bmake_signal(SIGTERM, SIG_IGN) != SIG_IGN) {
    688   1.79       sjg 	bmake_signal(SIGTERM, CompatInterrupt);
    689    1.1       cgd     }
    690   1.79       sjg     if (bmake_signal(SIGHUP, SIG_IGN) != SIG_IGN) {
    691   1.79       sjg 	bmake_signal(SIGHUP, CompatInterrupt);
    692    1.1       cgd     }
    693   1.79       sjg     if (bmake_signal(SIGQUIT, SIG_IGN) != SIG_IGN) {
    694   1.79       sjg 	bmake_signal(SIGQUIT, CompatInterrupt);
    695    1.1       cgd     }
    696    1.1       cgd 
    697    1.1       cgd     ENDNode = Targ_FindNode(".END", TARG_CREATE);
    698   1.58  christos     ENDNode->type = OP_SPECIAL;
    699    1.1       cgd     /*
    700    1.1       cgd      * If the user has defined a .BEGIN target, execute the commands attached
    701    1.1       cgd      * to it.
    702    1.1       cgd      */
    703    1.1       cgd     if (!queryFlag) {
    704    1.1       cgd 	gn = Targ_FindNode(".BEGIN", TARG_NOCREATE);
    705   1.72       dsl 	if (gn != NULL) {
    706   1.57  christos 	    Compat_Make(gn, gn);
    707  1.118    rillig 	    if (gn->made == ERROR) {
    708  1.118    rillig 		PrintOnError(gn, "\nStop.");
    709  1.118    rillig 		exit(1);
    710  1.118    rillig 	    }
    711    1.1       cgd 	}
    712    1.1       cgd     }
    713   1.15  christos 
    714   1.15  christos     /*
    715   1.15  christos      * Expand .USE nodes right now, because they can modify the structure
    716   1.15  christos      * of the tree.
    717   1.15  christos      */
    718   1.66       dsl     Make_ExpandUse(targs);
    719    1.1       cgd 
    720    1.1       cgd     /*
    721   1.57  christos      * For each entry in the list of targets to create, call Compat_Make on
    722   1.57  christos      * it to create the thing. Compat_Make will leave the 'made' field of gn
    723    1.1       cgd      * in one of several states:
    724    1.1       cgd      *	    UPTODATE	    gn was already up-to-date
    725    1.1       cgd      *	    MADE  	    gn was recreated successfully
    726    1.1       cgd      *	    ERROR 	    An error occurred while gn was being created
    727    1.1       cgd      *	    ABORTED	    gn was not remade because one of its inferiors
    728    1.1       cgd      *	    	  	    could not be made due to errors.
    729    1.1       cgd      */
    730    1.1       cgd     errors = 0;
    731  1.132    rillig     while (!Lst_IsEmpty(targs)) {
    732  1.132    rillig 	gn = Lst_Dequeue(targs);
    733   1.57  christos 	Compat_Make(gn, gn);
    734    1.1       cgd 
    735    1.1       cgd 	if (gn->made == UPTODATE) {
    736   1.59  christos 	    printf("`%s' is up to date.\n", gn->name);
    737    1.1       cgd 	} else if (gn->made == ABORTED) {
    738   1.59  christos 	    printf("`%s' not remade because of errors.\n", gn->name);
    739    1.1       cgd 	    errors += 1;
    740    1.1       cgd 	}
    741    1.1       cgd     }
    742    1.1       cgd 
    743    1.1       cgd     /*
    744    1.1       cgd      * If the user has defined a .END target, run its commands.
    745    1.1       cgd      */
    746    1.1       cgd     if (errors == 0) {
    747   1.57  christos 	Compat_Make(ENDNode, ENDNode);
    748   1.36       sjg 	if (gn->made == ERROR) {
    749  1.106  dholland 	    PrintOnError(gn, "\nStop.");
    750   1.36       sjg 	    exit(1);
    751   1.36       sjg 	}
    752    1.1       cgd     }
    753    1.1       cgd }
    754