Home | History | Annotate | Line # | Download | only in make
meta.c revision 1.136
      1  1.136    rillig /*      $NetBSD: meta.c,v 1.136 2020/10/31 12:04:24 rillig Exp $ */
      2   1.15       sjg 
      3    1.1       sjg /*
      4    1.1       sjg  * Implement 'meta' mode.
      5    1.1       sjg  * Adapted from John Birrell's patches to FreeBSD make.
      6    1.1       sjg  * --sjg
      7    1.1       sjg  */
      8    1.1       sjg /*
      9   1.48       sjg  * Copyright (c) 2009-2016, Juniper Networks, Inc.
     10    1.1       sjg  * Portions Copyright (c) 2009, John Birrell.
     11   1.85    rillig  *
     12    1.1       sjg  * Redistribution and use in source and binary forms, with or without
     13   1.85    rillig  * modification, are permitted provided that the following conditions
     14   1.85    rillig  * are met:
     15    1.1       sjg  * 1. Redistributions of source code must retain the above copyright
     16   1.85    rillig  *    notice, this list of conditions and the following disclaimer.
     17    1.1       sjg  * 2. Redistributions in binary form must reproduce the above copyright
     18    1.1       sjg  *    notice, this list of conditions and the following disclaimer in the
     19   1.85    rillig  *    documentation and/or other materials provided with the distribution.
     20   1.85    rillig  *
     21    1.1       sjg  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     22    1.1       sjg  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     23    1.1       sjg  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     24    1.1       sjg  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     25    1.1       sjg  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     26    1.1       sjg  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
     27    1.1       sjg  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28    1.1       sjg  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29    1.1       sjg  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30    1.1       sjg  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     31   1.85    rillig  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32    1.1       sjg  */
     33    1.3       sjg #if defined(USE_META)
     34    1.1       sjg 
     35    1.1       sjg #ifdef HAVE_CONFIG_H
     36    1.1       sjg # include "config.h"
     37    1.1       sjg #endif
     38    1.1       sjg #include <sys/stat.h>
     39    1.1       sjg #include <libgen.h>
     40    1.1       sjg #include <errno.h>
     41    1.2       sjg #if !defined(HAVE_CONFIG_H) || defined(HAVE_ERR_H)
     42    1.1       sjg #include <err.h>
     43    1.2       sjg #endif
     44    1.1       sjg 
     45    1.1       sjg #include "make.h"
     46  1.113    rillig #include "dir.h"
     47    1.1       sjg #include "job.h"
     48    1.1       sjg 
     49   1.74  riastrad #ifdef USE_FILEMON
     50   1.75  riastrad #include "filemon/filemon.h"
     51   1.73      maxv #endif
     52   1.73      maxv 
     53    1.1       sjg static BuildMon Mybm;			/* for compat */
     54  1.116    rillig static StringList *metaBailiwick;	/* our scope of control */
     55   1.53  christos static char *metaBailiwickStr;		/* string storage for the list */
     56  1.116    rillig static StringList *metaIgnorePaths;	/* paths we deliberately ignore */
     57   1.53  christos static char *metaIgnorePathsStr;	/* string storage for the list */
     58   1.32       sjg 
     59   1.32       sjg #ifndef MAKE_META_IGNORE_PATHS
     60   1.32       sjg #define MAKE_META_IGNORE_PATHS ".MAKE.META.IGNORE_PATHS"
     61   1.32       sjg #endif
     62   1.56       sjg #ifndef MAKE_META_IGNORE_PATTERNS
     63   1.56       sjg #define MAKE_META_IGNORE_PATTERNS ".MAKE.META.IGNORE_PATTERNS"
     64   1.56       sjg #endif
     65   1.66       sjg #ifndef MAKE_META_IGNORE_FILTER
     66   1.66       sjg #define MAKE_META_IGNORE_FILTER ".MAKE.META.IGNORE_FILTER"
     67   1.66       sjg #endif
     68    1.1       sjg 
     69    1.1       sjg Boolean useMeta = FALSE;
     70    1.1       sjg static Boolean useFilemon = FALSE;
     71    1.1       sjg static Boolean writeMeta = FALSE;
     72   1.58       sjg static Boolean metaMissing = FALSE;	/* oodate if missing */
     73   1.58       sjg static Boolean filemonMissing = FALSE;	/* oodate if missing */
     74    1.1       sjg static Boolean metaEnv = FALSE;		/* don't save env unless asked */
     75    1.1       sjg static Boolean metaVerbose = FALSE;
     76    1.1       sjg static Boolean metaIgnoreCMDs = FALSE;	/* ignore CMDs in .meta files */
     77   1.56       sjg static Boolean metaIgnorePatterns = FALSE; /* do we need to do pattern matches */
     78   1.66       sjg static Boolean metaIgnoreFilter = FALSE;   /* do we have more complex filtering? */
     79   1.12       sjg static Boolean metaCurdirOk = FALSE;	/* write .meta in .CURDIR Ok? */
     80   1.22       sjg static Boolean metaSilent = FALSE;	/* if we have a .meta be SILENT */
     81    1.1       sjg 
     82    1.1       sjg extern Boolean forceJobs;
     83    1.1       sjg extern Boolean comatMake;
     84   1.25       sjg extern char    **environ;
     85    1.1       sjg 
     86    1.1       sjg #define	MAKE_META_PREFIX	".MAKE.META.PREFIX"
     87    1.1       sjg 
     88    1.1       sjg #ifndef N2U
     89    1.1       sjg # define N2U(n, u)   (((n) + ((u) - 1)) / (u))
     90    1.1       sjg #endif
     91    1.1       sjg #ifndef ROUNDUP
     92    1.1       sjg # define ROUNDUP(n, u)   (N2U((n), (u)) * (u))
     93    1.1       sjg #endif
     94    1.1       sjg 
     95    1.2       sjg #if !defined(HAVE_STRSEP)
     96    1.2       sjg # define strsep(s, d) stresep((s), (d), 0)
     97    1.2       sjg #endif
     98    1.2       sjg 
     99    1.1       sjg /*
    100   1.73      maxv  * Filemon is a kernel module which snoops certain syscalls.
    101   1.73      maxv  *
    102   1.73      maxv  * C chdir
    103   1.73      maxv  * E exec
    104   1.73      maxv  * F [v]fork
    105   1.73      maxv  * L [sym]link
    106   1.73      maxv  * M rename
    107   1.73      maxv  * R read
    108   1.73      maxv  * W write
    109   1.73      maxv  * S stat
    110   1.73      maxv  *
    111   1.73      maxv  * See meta_oodate below - we mainly care about 'E' and 'R'.
    112   1.73      maxv  *
    113   1.85    rillig  * We can still use meta mode without filemon, but
    114   1.73      maxv  * the benefits are more limited.
    115   1.73      maxv  */
    116   1.73      maxv #ifdef USE_FILEMON
    117   1.73      maxv 
    118   1.73      maxv /*
    119   1.73      maxv  * Open the filemon device.
    120   1.73      maxv  */
    121   1.73      maxv static void
    122   1.74  riastrad meta_open_filemon(BuildMon *pbm)
    123   1.73      maxv {
    124   1.74  riastrad     int dupfd;
    125   1.74  riastrad 
    126   1.74  riastrad     pbm->mon_fd = -1;
    127   1.74  riastrad     pbm->filemon = NULL;
    128   1.77       sjg     if (!useFilemon || !pbm->mfp)
    129   1.73      maxv 	return;
    130   1.73      maxv 
    131   1.74  riastrad     pbm->filemon = filemon_open();
    132   1.74  riastrad     if (pbm->filemon == NULL) {
    133   1.73      maxv 	useFilemon = FALSE;
    134   1.75  riastrad 	warn("Could not open filemon %s", filemon_path());
    135   1.73      maxv 	return;
    136   1.73      maxv     }
    137   1.73      maxv 
    138   1.73      maxv     /*
    139   1.73      maxv      * We use a file outside of '.'
    140   1.73      maxv      * to avoid a FreeBSD kernel bug where unlink invalidates
    141   1.73      maxv      * cwd causing getcwd to do a lot more work.
    142   1.73      maxv      * We only care about the descriptor.
    143   1.73      maxv      */
    144   1.73      maxv     pbm->mon_fd = mkTempFile("filemon.XXXXXX", NULL);
    145   1.74  riastrad     if ((dupfd = dup(pbm->mon_fd)) == -1) {
    146   1.74  riastrad 	err(1, "Could not dup filemon output!");
    147   1.74  riastrad     }
    148   1.74  riastrad     (void)fcntl(dupfd, F_SETFD, FD_CLOEXEC);
    149   1.74  riastrad     if (filemon_setfd(pbm->filemon, dupfd) == -1) {
    150   1.73      maxv 	err(1, "Could not set filemon file descriptor!");
    151   1.73      maxv     }
    152   1.73      maxv     /* we don't need these once we exec */
    153   1.73      maxv     (void)fcntl(pbm->mon_fd, F_SETFD, FD_CLOEXEC);
    154   1.73      maxv }
    155   1.73      maxv 
    156   1.73      maxv /*
    157   1.73      maxv  * Read the build monitor output file and write records to the target's
    158   1.73      maxv  * metadata file.
    159   1.73      maxv  */
    160   1.73      maxv static int
    161   1.73      maxv filemon_read(FILE *mfp, int fd)
    162   1.73      maxv {
    163   1.73      maxv     char buf[BUFSIZ];
    164   1.73      maxv     int error;
    165   1.73      maxv 
    166   1.73      maxv     /* Check if we're not writing to a meta data file.*/
    167   1.73      maxv     if (mfp == NULL) {
    168   1.73      maxv 	if (fd >= 0)
    169   1.73      maxv 	    close(fd);			/* not interested */
    170   1.73      maxv 	return 0;
    171   1.73      maxv     }
    172   1.73      maxv     /* rewind */
    173   1.82       sjg     if (lseek(fd, (off_t)0, SEEK_SET) < 0) {
    174   1.82       sjg 	error = errno;
    175   1.82       sjg 	warn("Could not rewind filemon");
    176   1.82       sjg 	fprintf(mfp, "\n");
    177   1.82       sjg     } else {
    178  1.132    rillig 	ssize_t n;
    179  1.124    rillig 
    180   1.82       sjg 	error = 0;
    181   1.82       sjg 	fprintf(mfp, "\n-- filemon acquired metadata --\n");
    182   1.73      maxv 
    183   1.82       sjg 	while ((n = read(fd, buf, sizeof(buf))) > 0) {
    184  1.124    rillig 	    if ((ssize_t)fwrite(buf, 1, (size_t)n, mfp) < n)
    185   1.82       sjg 		error = EIO;
    186   1.82       sjg 	}
    187   1.73      maxv     }
    188   1.73      maxv     fflush(mfp);
    189   1.73      maxv     if (close(fd) < 0)
    190   1.73      maxv 	error = errno;
    191   1.73      maxv     return error;
    192   1.73      maxv }
    193   1.73      maxv #endif
    194   1.73      maxv 
    195   1.73      maxv /*
    196    1.8       sjg  * when realpath() fails,
    197    1.8       sjg  * we use this, to clean up ./ and ../
    198    1.8       sjg  */
    199    1.8       sjg static void
    200    1.8       sjg eat_dots(char *buf, size_t bufsz, int dots)
    201    1.8       sjg {
    202    1.8       sjg     char *cp;
    203    1.8       sjg     char *cp2;
    204    1.8       sjg     const char *eat;
    205    1.8       sjg     size_t eatlen;
    206    1.8       sjg 
    207    1.8       sjg     switch (dots) {
    208    1.8       sjg     case 1:
    209    1.8       sjg 	eat = "/./";
    210    1.8       sjg 	eatlen = 2;
    211    1.8       sjg 	break;
    212    1.8       sjg     case 2:
    213    1.8       sjg 	eat = "/../";
    214    1.8       sjg 	eatlen = 3;
    215    1.8       sjg 	break;
    216    1.8       sjg     default:
    217    1.8       sjg 	return;
    218    1.8       sjg     }
    219   1.85    rillig 
    220    1.8       sjg     do {
    221    1.8       sjg 	cp = strstr(buf, eat);
    222    1.8       sjg 	if (cp) {
    223    1.8       sjg 	    cp2 = cp + eatlen;
    224    1.8       sjg 	    if (dots == 2 && cp > buf) {
    225    1.8       sjg 		do {
    226    1.8       sjg 		    cp--;
    227    1.8       sjg 		} while (cp > buf && *cp != '/');
    228    1.8       sjg 	    }
    229    1.8       sjg 	    if (*cp == '/') {
    230  1.124    rillig 		strlcpy(cp, cp2, bufsz - (size_t)(cp - buf));
    231    1.8       sjg 	    } else {
    232    1.8       sjg 		return;			/* can't happen? */
    233    1.8       sjg 	    }
    234    1.8       sjg 	}
    235    1.8       sjg     } while (cp);
    236    1.8       sjg }
    237    1.8       sjg 
    238    1.1       sjg static char *
    239  1.128    rillig meta_name(char *mname, size_t mnamelen,
    240    1.1       sjg 	  const char *dname,
    241   1.58       sjg 	  const char *tname,
    242   1.58       sjg 	  const char *cwd)
    243    1.1       sjg {
    244    1.1       sjg     char buf[MAXPATHLEN];
    245    1.1       sjg     char *rp;
    246    1.1       sjg     char *cp;
    247    1.1       sjg     char *tp;
    248   1.69       sjg     char *dtp;
    249   1.69       sjg     size_t ldname;
    250    1.8       sjg 
    251    1.1       sjg     /*
    252    1.1       sjg      * Weed out relative paths from the target file name.
    253    1.1       sjg      * We have to be careful though since if target is a
    254    1.1       sjg      * symlink, the result will be unstable.
    255    1.1       sjg      * So we use realpath() just to get the dirname, and leave the
    256    1.1       sjg      * basename as given to us.
    257    1.1       sjg      */
    258    1.1       sjg     if ((cp = strrchr(tname, '/'))) {
    259   1.59       sjg 	if (cached_realpath(tname, buf)) {
    260    1.1       sjg 	    if ((rp = strrchr(buf, '/'))) {
    261    1.1       sjg 		rp++;
    262    1.1       sjg 		cp++;
    263    1.1       sjg 		if (strcmp(cp, rp) != 0)
    264  1.124    rillig 		    strlcpy(rp, cp, sizeof buf - (size_t)(rp - buf));
    265    1.1       sjg 	    }
    266    1.1       sjg 	    tname = buf;
    267    1.8       sjg 	} else {
    268    1.8       sjg 	    /*
    269    1.8       sjg 	     * We likely have a directory which is about to be made.
    270    1.8       sjg 	     * We pretend realpath() succeeded, to have a chance
    271    1.8       sjg 	     * of generating the same meta file name that we will
    272    1.8       sjg 	     * next time through.
    273    1.8       sjg 	     */
    274    1.8       sjg 	    if (tname[0] == '/') {
    275    1.8       sjg 		strlcpy(buf, tname, sizeof(buf));
    276    1.8       sjg 	    } else {
    277    1.8       sjg 		snprintf(buf, sizeof(buf), "%s/%s", cwd, tname);
    278    1.8       sjg 	    }
    279    1.8       sjg 	    eat_dots(buf, sizeof(buf), 1);	/* ./ */
    280    1.8       sjg 	    eat_dots(buf, sizeof(buf), 2);	/* ../ */
    281    1.8       sjg 	    tname = buf;
    282    1.1       sjg 	}
    283    1.1       sjg     }
    284    1.1       sjg     /* on some systems dirname may modify its arg */
    285    1.1       sjg     tp = bmake_strdup(tname);
    286   1.69       sjg     dtp = dirname(tp);
    287   1.69       sjg     if (strcmp(dname, dtp) == 0)
    288    1.1       sjg 	snprintf(mname, mnamelen, "%s.meta", tname);
    289    1.1       sjg     else {
    290   1.69       sjg 	ldname = strlen(dname);
    291   1.69       sjg 	if (strncmp(dname, dtp, ldname) == 0 && dtp[ldname] == '/')
    292   1.69       sjg 	    snprintf(mname, mnamelen, "%s/%s.meta", dname, &tname[ldname+1]);
    293   1.69       sjg 	else
    294   1.69       sjg 	    snprintf(mname, mnamelen, "%s/%s.meta", dname, tname);
    295    1.1       sjg 
    296    1.1       sjg 	/*
    297    1.1       sjg 	 * Replace path separators in the file name after the
    298    1.1       sjg 	 * current object directory path.
    299    1.1       sjg 	 */
    300    1.1       sjg 	cp = mname + strlen(dname) + 1;
    301    1.1       sjg 
    302    1.1       sjg 	while (*cp != '\0') {
    303    1.1       sjg 	    if (*cp == '/')
    304    1.1       sjg 		*cp = '_';
    305    1.1       sjg 	    cp++;
    306    1.1       sjg 	}
    307    1.1       sjg     }
    308    1.1       sjg     free(tp);
    309   1.84    rillig     return mname;
    310    1.1       sjg }
    311    1.1       sjg 
    312    1.1       sjg /*
    313    1.1       sjg  * Return true if running ${.MAKE}
    314    1.1       sjg  * Bypassed if target is flagged .MAKE
    315    1.1       sjg  */
    316    1.1       sjg static int
    317    1.1       sjg is_submake(void *cmdp, void *gnp)
    318    1.1       sjg {
    319   1.90    rillig     static const char *p_make = NULL;
    320  1.124    rillig     static size_t p_len;
    321    1.1       sjg     char  *cmd = cmdp;
    322    1.1       sjg     GNode *gn = gnp;
    323    1.1       sjg     char *mp = NULL;
    324    1.1       sjg     char *cp;
    325    1.1       sjg     char *cp2;
    326    1.1       sjg     int rc = 0;				/* keep looking */
    327    1.1       sjg 
    328    1.1       sjg     if (!p_make) {
    329  1.134    rillig 	void *dontFreeIt;
    330  1.133    rillig 	p_make = Var_Value(".MAKE", gn, &dontFreeIt);
    331    1.1       sjg 	p_len = strlen(p_make);
    332    1.1       sjg     }
    333    1.1       sjg     cp = strchr(cmd, '$');
    334    1.1       sjg     if ((cp)) {
    335  1.117    rillig 	(void)Var_Subst(cmd, gn, VARE_WANTRES, &mp);
    336  1.117    rillig 	/* TODO: handle errors */
    337    1.1       sjg 	cmd = mp;
    338    1.1       sjg     }
    339    1.1       sjg     cp2 = strstr(cmd, p_make);
    340    1.1       sjg     if ((cp2)) {
    341    1.1       sjg 	switch (cp2[p_len]) {
    342    1.1       sjg 	case '\0':
    343    1.1       sjg 	case ' ':
    344    1.1       sjg 	case '\t':
    345    1.1       sjg 	case '\n':
    346    1.1       sjg 	    rc = 1;
    347    1.1       sjg 	    break;
    348    1.1       sjg 	}
    349    1.1       sjg 	if (cp2 > cmd && rc > 0) {
    350    1.1       sjg 	    switch (cp2[-1]) {
    351    1.1       sjg 	    case ' ':
    352    1.1       sjg 	    case '\t':
    353    1.1       sjg 	    case '\n':
    354    1.1       sjg 		break;
    355    1.1       sjg 	    default:
    356    1.1       sjg 		rc = 0;			/* no match */
    357    1.1       sjg 		break;
    358    1.1       sjg 	    }
    359    1.1       sjg 	}
    360    1.1       sjg     }
    361   1.44  christos     free(mp);
    362   1.84    rillig     return rc;
    363    1.1       sjg }
    364    1.1       sjg 
    365    1.1       sjg typedef struct meta_file_s {
    366    1.1       sjg     FILE *fp;
    367    1.1       sjg     GNode *gn;
    368    1.1       sjg } meta_file_t;
    369    1.1       sjg 
    370  1.119    rillig static void
    371  1.126    rillig printCMD(const char *cmd, meta_file_t *mfp)
    372    1.1       sjg {
    373  1.111    rillig     char *cmd_freeIt = NULL;
    374    1.1       sjg 
    375    1.1       sjg     if (strchr(cmd, '$')) {
    376  1.117    rillig 	(void)Var_Subst(cmd, mfp->gn, VARE_WANTRES, &cmd_freeIt);
    377  1.117    rillig 	/* TODO: handle errors */
    378  1.117    rillig 	cmd = cmd_freeIt;
    379    1.1       sjg     }
    380    1.1       sjg     fprintf(mfp->fp, "CMD %s\n", cmd);
    381  1.111    rillig     free(cmd_freeIt);
    382    1.1       sjg }
    383    1.1       sjg 
    384  1.126    rillig static void
    385  1.126    rillig printCMDs(GNode *gn, meta_file_t *mf)
    386  1.126    rillig {
    387  1.126    rillig     GNodeListNode *ln;
    388  1.126    rillig 
    389  1.126    rillig     for (ln = gn->commands->first; ln != NULL; ln = ln->next)
    390  1.126    rillig 	printCMD(ln->datum, mf);
    391  1.126    rillig }
    392  1.126    rillig 
    393    1.1       sjg /*
    394    1.1       sjg  * Certain node types never get a .meta file
    395    1.1       sjg  */
    396    1.1       sjg #define SKIP_META_TYPE(_type) do { \
    397  1.122    rillig     if ((gn->type & __CONCAT(OP_, _type))) { \
    398   1.58       sjg 	if (verbose) { \
    399  1.122    rillig 	    debug_printf("Skipping meta for %s: .%s\n", \
    400  1.122    rillig 		    gn->name, __STRING(_type)); \
    401    1.1       sjg 	} \
    402   1.58       sjg 	return FALSE; \
    403    1.1       sjg     } \
    404    1.1       sjg } while (0)
    405    1.1       sjg 
    406   1.58       sjg 
    407   1.58       sjg /*
    408   1.58       sjg  * Do we need/want a .meta file ?
    409   1.58       sjg  */
    410   1.58       sjg static Boolean
    411   1.58       sjg meta_needed(GNode *gn, const char *dname, const char *tname,
    412   1.58       sjg 	     char *objdir, int verbose)
    413    1.1       sjg {
    414  1.113    rillig     struct make_stat mst;
    415    1.1       sjg 
    416   1.58       sjg     if (verbose)
    417   1.58       sjg 	verbose = DEBUG(META);
    418   1.85    rillig 
    419    1.1       sjg     /* This may be a phony node which we don't want meta data for... */
    420    1.1       sjg     /* Skip .meta for .BEGIN, .END, .ERROR etc as well. */
    421    1.1       sjg     /* Or it may be explicitly flagged as .NOMETA */
    422    1.1       sjg     SKIP_META_TYPE(NOMETA);
    423    1.1       sjg     /* Unless it is explicitly flagged as .META */
    424    1.1       sjg     if (!(gn->type & OP_META)) {
    425    1.1       sjg 	SKIP_META_TYPE(PHONY);
    426    1.1       sjg 	SKIP_META_TYPE(SPECIAL);
    427    1.1       sjg 	SKIP_META_TYPE(MAKE);
    428    1.1       sjg     }
    429    1.1       sjg 
    430   1.58       sjg     /* Check if there are no commands to execute. */
    431  1.106    rillig     if (Lst_IsEmpty(gn->commands)) {
    432   1.58       sjg 	if (verbose)
    433  1.122    rillig 	    debug_printf("Skipping meta for %s: no commands\n", gn->name);
    434   1.58       sjg 	return FALSE;
    435   1.58       sjg     }
    436   1.58       sjg     if ((gn->type & (OP_META|OP_SUBMAKE)) == OP_SUBMAKE) {
    437   1.58       sjg 	/* OP_SUBMAKE is a bit too aggressive */
    438  1.118    rillig 	if (Lst_ForEachUntil(gn->commands, is_submake, gn)) {
    439  1.121    rillig 	    DEBUG1(META, "Skipping meta for %s: .SUBMAKE\n", gn->name);
    440   1.58       sjg 	    return FALSE;
    441   1.58       sjg 	}
    442   1.58       sjg     }
    443   1.58       sjg 
    444    1.1       sjg     /* The object directory may not exist. Check it.. */
    445  1.113    rillig     if (cached_stat(dname, &mst) != 0) {
    446   1.58       sjg 	if (verbose)
    447  1.122    rillig 	    debug_printf("Skipping meta for %s: no .OBJDIR\n", gn->name);
    448   1.58       sjg 	return FALSE;
    449    1.1       sjg     }
    450    1.1       sjg 
    451    1.1       sjg     /* make sure these are canonical */
    452   1.59       sjg     if (cached_realpath(dname, objdir))
    453    1.1       sjg 	dname = objdir;
    454    1.1       sjg 
    455    1.1       sjg     /* If we aren't in the object directory, don't create a meta file. */
    456   1.12       sjg     if (!metaCurdirOk && strcmp(curdir, dname) == 0) {
    457   1.58       sjg 	if (verbose)
    458  1.122    rillig 	    debug_printf("Skipping meta for %s: .OBJDIR == .CURDIR\n",
    459  1.122    rillig 			 gn->name);
    460   1.58       sjg 	return FALSE;
    461   1.58       sjg     }
    462   1.58       sjg     return TRUE;
    463   1.58       sjg }
    464   1.58       sjg 
    465   1.85    rillig 
    466   1.58       sjg static FILE *
    467   1.58       sjg meta_create(BuildMon *pbm, GNode *gn)
    468   1.58       sjg {
    469   1.58       sjg     meta_file_t mf;
    470   1.58       sjg     char buf[MAXPATHLEN];
    471   1.58       sjg     char objdir[MAXPATHLEN];
    472   1.58       sjg     char **ptr;
    473   1.58       sjg     const char *dname;
    474   1.58       sjg     const char *tname;
    475   1.58       sjg     char *fname;
    476   1.58       sjg     const char *cp;
    477  1.136    rillig     void *objdir_freeIt;
    478   1.58       sjg 
    479   1.58       sjg     mf.fp = NULL;
    480   1.58       sjg 
    481  1.136    rillig     dname = Var_Value(".OBJDIR", gn, &objdir_freeIt);
    482  1.135    rillig     tname = GNode_VarTarget(gn);
    483   1.58       sjg 
    484   1.58       sjg     /* if this succeeds objdir is realpath of dname */
    485   1.58       sjg     if (!meta_needed(gn, dname, tname, objdir, TRUE))
    486    1.1       sjg 	goto out;
    487   1.58       sjg     dname = objdir;
    488    1.1       sjg 
    489    1.1       sjg     if (metaVerbose) {
    490    1.1       sjg 	char *mp;
    491    1.1       sjg 
    492    1.1       sjg 	/* Describe the target we are building */
    493  1.117    rillig 	(void)Var_Subst("${" MAKE_META_PREFIX "}", gn, VARE_WANTRES, &mp);
    494  1.117    rillig 	/* TODO: handle errors */
    495    1.1       sjg 	if (*mp)
    496    1.1       sjg 	    fprintf(stdout, "%s\n", mp);
    497    1.1       sjg 	free(mp);
    498    1.1       sjg     }
    499    1.1       sjg     /* Get the basename of the target */
    500    1.1       sjg     if ((cp = strrchr(tname, '/')) == NULL) {
    501    1.1       sjg 	cp = tname;
    502    1.1       sjg     } else {
    503    1.1       sjg 	cp++;
    504    1.1       sjg     }
    505    1.1       sjg 
    506    1.1       sjg     fflush(stdout);
    507    1.1       sjg 
    508    1.1       sjg     if (!writeMeta)
    509    1.1       sjg 	/* Don't create meta data. */
    510    1.1       sjg 	goto out;
    511    1.1       sjg 
    512  1.128    rillig     fname = meta_name(pbm->meta_fname, sizeof(pbm->meta_fname),
    513   1.58       sjg 		      dname, tname, objdir);
    514    1.1       sjg 
    515    1.8       sjg #ifdef DEBUG_META_MODE
    516  1.121    rillig     DEBUG1(META, "meta_create: %s\n", fname);
    517    1.8       sjg #endif
    518    1.8       sjg 
    519    1.1       sjg     if ((mf.fp = fopen(fname, "w")) == NULL)
    520    1.1       sjg 	err(1, "Could not open meta file '%s'", fname);
    521    1.1       sjg 
    522    1.1       sjg     fprintf(mf.fp, "# Meta data file %s\n", fname);
    523    1.1       sjg 
    524    1.1       sjg     mf.gn = gn;
    525    1.1       sjg 
    526  1.126    rillig     printCMDs(gn, &mf);
    527    1.1       sjg 
    528    1.1       sjg     fprintf(mf.fp, "CWD %s\n", getcwd(buf, sizeof(buf)));
    529    1.1       sjg     fprintf(mf.fp, "TARGET %s\n", tname);
    530  1.135    rillig     cp = GNode_VarOodate(gn);
    531   1.76       sjg     if (cp && *cp) {
    532   1.76       sjg 	    fprintf(mf.fp, "OODATE %s\n", cp);
    533   1.76       sjg     }
    534    1.1       sjg     if (metaEnv) {
    535    1.1       sjg 	for (ptr = environ; *ptr != NULL; ptr++)
    536    1.1       sjg 	    fprintf(mf.fp, "ENV %s\n", *ptr);
    537    1.1       sjg     }
    538    1.1       sjg 
    539    1.1       sjg     fprintf(mf.fp, "-- command output --\n");
    540    1.1       sjg     fflush(mf.fp);
    541    1.1       sjg 
    542    1.1       sjg     Var_Append(".MAKE.META.FILES", fname, VAR_GLOBAL);
    543    1.1       sjg     Var_Append(".MAKE.META.CREATED", fname, VAR_GLOBAL);
    544   1.22       sjg 
    545   1.22       sjg     gn->type |= OP_META;		/* in case anyone wants to know */
    546   1.22       sjg     if (metaSilent) {
    547   1.22       sjg 	    gn->type |= OP_SILENT;
    548   1.22       sjg     }
    549    1.1       sjg  out:
    550  1.136    rillig     bmake_free(objdir_freeIt);
    551    1.1       sjg 
    552   1.84    rillig     return mf.fp;
    553    1.1       sjg }
    554    1.1       sjg 
    555   1.12       sjg static Boolean
    556   1.12       sjg boolValue(char *s)
    557   1.12       sjg {
    558   1.12       sjg     switch(*s) {
    559   1.12       sjg     case '0':
    560   1.12       sjg     case 'N':
    561   1.12       sjg     case 'n':
    562   1.12       sjg     case 'F':
    563   1.12       sjg     case 'f':
    564   1.12       sjg 	return FALSE;
    565   1.12       sjg     }
    566   1.12       sjg     return TRUE;
    567   1.12       sjg }
    568    1.1       sjg 
    569   1.27       sjg /*
    570   1.27       sjg  * Initialization we need before reading makefiles.
    571   1.27       sjg  */
    572   1.27       sjg void
    573   1.30       sjg meta_init(void)
    574   1.27       sjg {
    575   1.73      maxv #ifdef USE_FILEMON
    576   1.73      maxv 	/* this allows makefiles to test if we have filemon support */
    577   1.83    rillig 	Var_Set(".MAKE.PATH_FILEMON", filemon_path(), VAR_GLOBAL);
    578   1.73      maxv #endif
    579   1.27       sjg }
    580   1.27       sjg 
    581   1.27       sjg 
    582   1.58       sjg #define get_mode_bf(bf, token) \
    583   1.58       sjg     if ((cp = strstr(make_mode, token))) \
    584   1.58       sjg 	bf = boolValue(&cp[sizeof(token) - 1])
    585   1.58       sjg 
    586   1.27       sjg /*
    587   1.27       sjg  * Initialization we need after reading makefiles.
    588   1.27       sjg  */
    589    1.1       sjg void
    590   1.27       sjg meta_mode_init(const char *make_mode)
    591    1.1       sjg {
    592    1.1       sjg     static int once = 0;
    593   1.12       sjg     char *cp;
    594  1.133    rillig     void *freeIt;
    595    1.1       sjg 
    596    1.1       sjg     useMeta = TRUE;
    597    1.1       sjg     useFilemon = TRUE;
    598    1.1       sjg     writeMeta = TRUE;
    599    1.1       sjg 
    600    1.1       sjg     if (make_mode) {
    601    1.1       sjg 	if (strstr(make_mode, "env"))
    602    1.1       sjg 	    metaEnv = TRUE;
    603    1.1       sjg 	if (strstr(make_mode, "verb"))
    604    1.1       sjg 	    metaVerbose = TRUE;
    605    1.1       sjg 	if (strstr(make_mode, "read"))
    606    1.1       sjg 	    writeMeta = FALSE;
    607    1.1       sjg 	if (strstr(make_mode, "nofilemon"))
    608    1.1       sjg 	    useFilemon = FALSE;
    609    1.1       sjg 	if (strstr(make_mode, "ignore-cmd"))
    610    1.1       sjg 	    metaIgnoreCMDs = TRUE;
    611   1.58       sjg 	if (useFilemon)
    612   1.58       sjg 	    get_mode_bf(filemonMissing, "missing-filemon=");
    613   1.58       sjg 	get_mode_bf(metaCurdirOk, "curdirok=");
    614   1.58       sjg 	get_mode_bf(metaMissing, "missing-meta=");
    615   1.58       sjg 	get_mode_bf(metaSilent, "silent=");
    616    1.1       sjg     }
    617    1.1       sjg     if (metaVerbose && !Var_Exists(MAKE_META_PREFIX, VAR_GLOBAL)) {
    618    1.1       sjg 	/*
    619    1.1       sjg 	 * The default value for MAKE_META_PREFIX
    620    1.1       sjg 	 * prints the absolute path of the target.
    621    1.1       sjg 	 * This works be cause :H will generate '.' if there is no /
    622    1.1       sjg 	 * and :tA will resolve that to cwd.
    623    1.1       sjg 	 */
    624   1.83    rillig 	Var_Set(MAKE_META_PREFIX, "Building ${.TARGET:H:tA}/${.TARGET:T}", VAR_GLOBAL);
    625    1.1       sjg     }
    626    1.1       sjg     if (once)
    627    1.1       sjg 	return;
    628    1.1       sjg     once = 1;
    629    1.1       sjg     memset(&Mybm, 0, sizeof(Mybm));
    630   1.17       sjg     /*
    631   1.17       sjg      * We consider ourselves master of all within ${.MAKE.META.BAILIWICK}
    632   1.17       sjg      */
    633  1.125    rillig     metaBailiwick = Lst_New();
    634  1.117    rillig     (void)Var_Subst("${.MAKE.META.BAILIWICK:O:u:tA}",
    635  1.117    rillig 		    VAR_GLOBAL, VARE_WANTRES, &metaBailiwickStr);
    636  1.117    rillig     /* TODO: handle errors */
    637  1.111    rillig     str2Lst_Append(metaBailiwick, metaBailiwickStr, NULL);
    638   1.32       sjg     /*
    639   1.32       sjg      * We ignore any paths that start with ${.MAKE.META.IGNORE_PATHS}
    640   1.32       sjg      */
    641  1.125    rillig     metaIgnorePaths = Lst_New();
    642   1.32       sjg     Var_Append(MAKE_META_IGNORE_PATHS,
    643   1.32       sjg 	       "/dev /etc /proc /tmp /var/run /var/tmp ${TMPDIR}", VAR_GLOBAL);
    644  1.117    rillig     (void)Var_Subst("${" MAKE_META_IGNORE_PATHS ":O:u:tA}",
    645  1.117    rillig 		    VAR_GLOBAL, VARE_WANTRES, &metaIgnorePathsStr);
    646  1.117    rillig     /* TODO: handle errors */
    647  1.111    rillig     str2Lst_Append(metaIgnorePaths, metaIgnorePathsStr, NULL);
    648   1.56       sjg 
    649   1.56       sjg     /*
    650   1.56       sjg      * We ignore any paths that match ${.MAKE.META.IGNORE_PATTERNS}
    651   1.56       sjg      */
    652  1.133    rillig     freeIt = NULL;
    653  1.133    rillig     if (Var_Value(MAKE_META_IGNORE_PATTERNS, VAR_GLOBAL, &freeIt)) {
    654   1.56       sjg 	metaIgnorePatterns = TRUE;
    655  1.133    rillig 	bmake_free(freeIt);
    656   1.56       sjg     }
    657  1.133    rillig     freeIt = NULL;
    658  1.133    rillig     if (Var_Value(MAKE_META_IGNORE_FILTER, VAR_GLOBAL, &freeIt)) {
    659   1.66       sjg 	metaIgnoreFilter = TRUE;
    660  1.133    rillig 	bmake_free(freeIt);
    661   1.66       sjg     }
    662    1.1       sjg }
    663    1.1       sjg 
    664    1.1       sjg /*
    665    1.1       sjg  * In each case below we allow for job==NULL
    666    1.1       sjg  */
    667    1.1       sjg void
    668    1.1       sjg meta_job_start(Job *job, GNode *gn)
    669    1.1       sjg {
    670    1.1       sjg     BuildMon *pbm;
    671    1.1       sjg 
    672    1.1       sjg     if (job != NULL) {
    673    1.1       sjg 	pbm = &job->bm;
    674    1.1       sjg     } else {
    675    1.1       sjg 	pbm = &Mybm;
    676    1.1       sjg     }
    677    1.1       sjg     pbm->mfp = meta_create(pbm, gn);
    678   1.73      maxv #ifdef USE_FILEMON_ONCE
    679   1.73      maxv     /* compat mode we open the filemon dev once per command */
    680   1.73      maxv     if (job == NULL)
    681   1.73      maxv 	return;
    682   1.73      maxv #endif
    683   1.73      maxv #ifdef USE_FILEMON
    684   1.73      maxv     if (pbm->mfp != NULL && useFilemon) {
    685   1.74  riastrad 	meta_open_filemon(pbm);
    686   1.73      maxv     } else {
    687   1.74  riastrad 	pbm->mon_fd = -1;
    688   1.74  riastrad 	pbm->filemon = NULL;
    689   1.73      maxv     }
    690   1.73      maxv #endif
    691    1.1       sjg }
    692    1.1       sjg 
    693    1.1       sjg /*
    694    1.1       sjg  * The child calls this before doing anything.
    695    1.1       sjg  * It does not disturb our state.
    696    1.1       sjg  */
    697    1.1       sjg void
    698    1.1       sjg meta_job_child(Job *job)
    699    1.1       sjg {
    700   1.73      maxv #ifdef USE_FILEMON
    701   1.73      maxv     BuildMon *pbm;
    702   1.73      maxv 
    703   1.73      maxv     if (job != NULL) {
    704   1.73      maxv 	pbm = &job->bm;
    705   1.73      maxv     } else {
    706   1.73      maxv 	pbm = &Mybm;
    707   1.73      maxv     }
    708   1.73      maxv     if (pbm->mfp != NULL) {
    709   1.73      maxv 	close(fileno(pbm->mfp));
    710   1.77       sjg 	if (useFilemon && pbm->filemon) {
    711   1.73      maxv 	    pid_t pid;
    712   1.73      maxv 
    713   1.73      maxv 	    pid = getpid();
    714   1.74  riastrad 	    if (filemon_setpid_child(pbm->filemon, pid) == -1) {
    715   1.73      maxv 		err(1, "Could not set filemon pid!");
    716   1.73      maxv 	    }
    717   1.73      maxv 	}
    718   1.73      maxv     }
    719   1.73      maxv #endif
    720    1.1       sjg }
    721    1.1       sjg 
    722    1.1       sjg void
    723   1.74  riastrad meta_job_parent(Job *job, pid_t pid)
    724   1.74  riastrad {
    725   1.78       sjg #if defined(USE_FILEMON) && !defined(USE_FILEMON_DEV)
    726   1.74  riastrad     BuildMon *pbm;
    727   1.74  riastrad 
    728   1.74  riastrad     if (job != NULL) {
    729   1.74  riastrad 	pbm = &job->bm;
    730   1.74  riastrad     } else {
    731   1.74  riastrad 	pbm = &Mybm;
    732   1.74  riastrad     }
    733   1.77       sjg     if (useFilemon && pbm->filemon) {
    734   1.74  riastrad 	filemon_setpid_parent(pbm->filemon, pid);
    735   1.74  riastrad     }
    736   1.74  riastrad #endif
    737   1.74  riastrad }
    738   1.74  riastrad 
    739   1.74  riastrad int
    740   1.74  riastrad meta_job_fd(Job *job)
    741   1.74  riastrad {
    742   1.78       sjg #if defined(USE_FILEMON) && !defined(USE_FILEMON_DEV)
    743   1.74  riastrad     BuildMon *pbm;
    744   1.74  riastrad 
    745   1.74  riastrad     if (job != NULL) {
    746   1.74  riastrad 	pbm = &job->bm;
    747   1.74  riastrad     } else {
    748   1.74  riastrad 	pbm = &Mybm;
    749   1.74  riastrad     }
    750   1.74  riastrad     if (useFilemon && pbm->filemon) {
    751   1.74  riastrad 	return filemon_readfd(pbm->filemon);
    752   1.74  riastrad     }
    753   1.74  riastrad #endif
    754   1.74  riastrad     return -1;
    755   1.74  riastrad }
    756   1.74  riastrad 
    757   1.74  riastrad int
    758   1.74  riastrad meta_job_event(Job *job)
    759   1.74  riastrad {
    760   1.78       sjg #if defined(USE_FILEMON) && !defined(USE_FILEMON_DEV)
    761   1.74  riastrad     BuildMon *pbm;
    762   1.74  riastrad 
    763   1.74  riastrad     if (job != NULL) {
    764   1.74  riastrad 	pbm = &job->bm;
    765   1.74  riastrad     } else {
    766   1.74  riastrad 	pbm = &Mybm;
    767   1.74  riastrad     }
    768   1.74  riastrad     if (useFilemon && pbm->filemon) {
    769   1.74  riastrad 	return filemon_process(pbm->filemon);
    770   1.74  riastrad     }
    771   1.74  riastrad #endif
    772   1.74  riastrad     return 0;
    773   1.74  riastrad }
    774   1.74  riastrad 
    775   1.74  riastrad void
    776    1.1       sjg meta_job_error(Job *job, GNode *gn, int flags, int status)
    777    1.1       sjg {
    778    1.1       sjg     char cwd[MAXPATHLEN];
    779    1.1       sjg     BuildMon *pbm;
    780    1.1       sjg 
    781    1.1       sjg     if (job != NULL) {
    782    1.1       sjg 	pbm = &job->bm;
    783    1.1       sjg 	if (!gn)
    784    1.1       sjg 	    gn = job->node;
    785   1.52  christos     } else {
    786    1.1       sjg 	pbm = &Mybm;
    787    1.1       sjg     }
    788    1.1       sjg     if (pbm->mfp != NULL) {
    789   1.68       sjg 	fprintf(pbm->mfp, "\n*** Error code %d%s\n",
    790    1.1       sjg 		status,
    791    1.1       sjg 		(flags & JOB_IGNERR) ?
    792    1.1       sjg 		"(ignored)" : "");
    793    1.1       sjg     }
    794    1.1       sjg     if (gn) {
    795  1.131    rillig 	Var_Set(".ERROR_TARGET", GNode_Path(gn), VAR_GLOBAL);
    796    1.1       sjg     }
    797    1.1       sjg     getcwd(cwd, sizeof(cwd));
    798   1.83    rillig     Var_Set(".ERROR_CWD", cwd, VAR_GLOBAL);
    799   1.49  christos     if (pbm->meta_fname[0]) {
    800   1.83    rillig 	Var_Set(".ERROR_META_FILE", pbm->meta_fname, VAR_GLOBAL);
    801    1.1       sjg     }
    802   1.16       sjg     meta_job_finish(job);
    803    1.1       sjg }
    804    1.1       sjg 
    805    1.1       sjg void
    806    1.1       sjg meta_job_output(Job *job, char *cp, const char *nl)
    807    1.1       sjg {
    808    1.1       sjg     BuildMon *pbm;
    809   1.85    rillig 
    810    1.1       sjg     if (job != NULL) {
    811    1.1       sjg 	pbm = &job->bm;
    812    1.1       sjg     } else {
    813    1.1       sjg 	pbm = &Mybm;
    814    1.1       sjg     }
    815    1.1       sjg     if (pbm->mfp != NULL) {
    816    1.1       sjg 	if (metaVerbose) {
    817    1.1       sjg 	    static char *meta_prefix = NULL;
    818  1.124    rillig 	    static size_t meta_prefix_len;
    819    1.1       sjg 
    820    1.1       sjg 	    if (!meta_prefix) {
    821    1.1       sjg 		char *cp2;
    822    1.1       sjg 
    823  1.117    rillig 		(void)Var_Subst("${" MAKE_META_PREFIX "}",
    824  1.117    rillig 				VAR_GLOBAL, VARE_WANTRES, &meta_prefix);
    825  1.117    rillig 		/* TODO: handle errors */
    826    1.1       sjg 		if ((cp2 = strchr(meta_prefix, '$')))
    827  1.124    rillig 		    meta_prefix_len = (size_t)(cp2 - meta_prefix);
    828    1.1       sjg 		else
    829    1.1       sjg 		    meta_prefix_len = strlen(meta_prefix);
    830    1.1       sjg 	    }
    831    1.1       sjg 	    if (strncmp(cp, meta_prefix, meta_prefix_len) == 0) {
    832    1.1       sjg 		cp = strchr(cp+1, '\n');
    833    1.1       sjg 		if (!cp++)
    834    1.1       sjg 		    return;
    835    1.1       sjg 	    }
    836    1.1       sjg 	}
    837    1.1       sjg 	fprintf(pbm->mfp, "%s%s", cp, nl);
    838    1.1       sjg     }
    839    1.1       sjg }
    840    1.1       sjg 
    841   1.57       sjg int
    842    1.1       sjg meta_cmd_finish(void *pbmp)
    843    1.1       sjg {
    844   1.57       sjg     int error = 0;
    845    1.1       sjg     BuildMon *pbm = pbmp;
    846   1.73      maxv #ifdef USE_FILEMON
    847   1.73      maxv     int x;
    848   1.73      maxv #endif
    849    1.1       sjg 
    850    1.1       sjg     if (!pbm)
    851    1.1       sjg 	pbm = &Mybm;
    852    1.1       sjg 
    853   1.73      maxv #ifdef USE_FILEMON
    854   1.74  riastrad     if (pbm->filemon) {
    855   1.74  riastrad 	while (filemon_process(pbm->filemon) > 0)
    856   1.74  riastrad 	    continue;
    857   1.74  riastrad 	if (filemon_close(pbm->filemon) == -1)
    858   1.73      maxv 	    error = errno;
    859   1.73      maxv 	x = filemon_read(pbm->mfp, pbm->mon_fd);
    860   1.73      maxv 	if (error == 0 && x != 0)
    861   1.73      maxv 	    error = x;
    862   1.74  riastrad 	pbm->mon_fd = -1;
    863   1.74  riastrad 	pbm->filemon = NULL;
    864   1.73      maxv     } else
    865   1.73      maxv #endif
    866   1.73      maxv 	fprintf(pbm->mfp, "\n");	/* ensure end with newline */
    867   1.57       sjg     return error;
    868    1.1       sjg }
    869    1.1       sjg 
    870   1.57       sjg int
    871    1.1       sjg meta_job_finish(Job *job)
    872    1.1       sjg {
    873    1.1       sjg     BuildMon *pbm;
    874   1.57       sjg     int error = 0;
    875   1.57       sjg     int x;
    876    1.1       sjg 
    877    1.1       sjg     if (job != NULL) {
    878    1.1       sjg 	pbm = &job->bm;
    879    1.1       sjg     } else {
    880    1.1       sjg 	pbm = &Mybm;
    881    1.1       sjg     }
    882    1.1       sjg     if (pbm->mfp != NULL) {
    883   1.57       sjg 	error = meta_cmd_finish(pbm);
    884   1.57       sjg 	x = fclose(pbm->mfp);
    885   1.57       sjg 	if (error == 0 && x != 0)
    886   1.57       sjg 	    error = errno;
    887    1.1       sjg 	pbm->mfp = NULL;
    888    1.6       sjg 	pbm->meta_fname[0] = '\0';
    889    1.1       sjg     }
    890   1.57       sjg     return error;
    891    1.1       sjg }
    892    1.1       sjg 
    893   1.53  christos void
    894   1.53  christos meta_finish(void)
    895   1.53  christos {
    896  1.100    rillig     if (metaBailiwick != NULL)
    897  1.106    rillig 	Lst_Free(metaBailiwick);
    898   1.53  christos     free(metaBailiwickStr);
    899  1.100    rillig     if (metaIgnorePaths != NULL)
    900  1.106    rillig 	Lst_Free(metaIgnorePaths);
    901   1.53  christos     free(metaIgnorePathsStr);
    902   1.53  christos }
    903   1.53  christos 
    904    1.1       sjg /*
    905    1.1       sjg  * Fetch a full line from fp - growing bufp if needed
    906    1.1       sjg  * Return length in bufp.
    907    1.1       sjg  */
    908   1.85    rillig static int
    909    1.1       sjg fgetLine(char **bufp, size_t *szp, int o, FILE *fp)
    910    1.1       sjg {
    911    1.1       sjg     char *buf = *bufp;
    912    1.1       sjg     size_t bufsz = *szp;
    913    1.1       sjg     struct stat fs;
    914    1.1       sjg     int x;
    915    1.1       sjg 
    916  1.124    rillig     if (fgets(&buf[o], (int)bufsz - o, fp) != NULL) {
    917    1.1       sjg     check_newline:
    918  1.124    rillig 	x = o + (int)strlen(&buf[o]);
    919    1.1       sjg 	if (buf[x - 1] == '\n')
    920    1.1       sjg 	    return x;
    921    1.1       sjg 	/*
    922    1.1       sjg 	 * We need to grow the buffer.
    923    1.1       sjg 	 * The meta file can give us a clue.
    924    1.1       sjg 	 */
    925    1.1       sjg 	if (fstat(fileno(fp), &fs) == 0) {
    926    1.1       sjg 	    size_t newsz;
    927    1.1       sjg 	    char *p;
    928    1.1       sjg 
    929  1.124    rillig 	    newsz = ROUNDUP(((size_t)fs.st_size / 2), BUFSIZ);
    930    1.1       sjg 	    if (newsz <= bufsz)
    931  1.124    rillig 		newsz = ROUNDUP((size_t)fs.st_size, BUFSIZ);
    932   1.68       sjg 	    if (newsz <= bufsz)
    933   1.68       sjg 		return x;		/* truncated */
    934  1.121    rillig 	    DEBUG2(META, "growing buffer %zu -> %zu\n", bufsz, newsz);
    935    1.1       sjg 	    p = bmake_realloc(buf, newsz);
    936    1.1       sjg 	    if (p) {
    937    1.1       sjg 		*bufp = buf = p;
    938    1.1       sjg 		*szp = bufsz = newsz;
    939    1.1       sjg 		/* fetch the rest */
    940  1.124    rillig 		if (!fgets(&buf[x], (int)bufsz - x, fp))
    941    1.1       sjg 		    return x;		/* truncated! */
    942    1.1       sjg 		goto check_newline;
    943    1.1       sjg 	    }
    944    1.1       sjg 	}
    945    1.1       sjg     }
    946    1.1       sjg     return 0;
    947    1.1       sjg }
    948    1.1       sjg 
    949  1.118    rillig /* Lst_ForEachUntil wants 1 to stop search */
    950   1.17       sjg static int
    951   1.17       sjg prefix_match(void *p, void *q)
    952   1.17       sjg {
    953   1.17       sjg     const char *prefix = p;
    954   1.17       sjg     const char *path = q;
    955   1.17       sjg     size_t n = strlen(prefix);
    956   1.17       sjg 
    957   1.84    rillig     return strncmp(path, prefix, n) == 0;
    958   1.17       sjg }
    959   1.17       sjg 
    960  1.108    rillig /* See if the path equals prefix or starts with "prefix/". */
    961  1.108    rillig static Boolean
    962  1.129    rillig path_starts_with(const char *path, const char *prefix)
    963   1.64       sjg {
    964   1.64       sjg     size_t n = strlen(prefix);
    965   1.64       sjg 
    966  1.108    rillig     if (strncmp(path, prefix, n) != 0)
    967  1.114    rillig 	return FALSE;
    968  1.108    rillig     return path[n] == '\0' || path[n] == '/';
    969   1.64       sjg }
    970   1.64       sjg 
    971   1.67       sjg static int
    972   1.67       sjg meta_ignore(GNode *gn, const char *p)
    973   1.67       sjg {
    974   1.67       sjg     char fname[MAXPATHLEN];
    975   1.67       sjg 
    976   1.67       sjg     if (p == NULL)
    977   1.67       sjg 	return TRUE;
    978   1.67       sjg 
    979   1.67       sjg     if (*p == '/') {
    980   1.67       sjg 	cached_realpath(p, fname); /* clean it up */
    981  1.118    rillig 	if (Lst_ForEachUntil(metaIgnorePaths, prefix_match, fname)) {
    982   1.67       sjg #ifdef DEBUG_META_MODE
    983  1.121    rillig 	    DEBUG1(META, "meta_oodate: ignoring path: %s\n", p);
    984   1.67       sjg #endif
    985   1.67       sjg 	    return TRUE;
    986   1.67       sjg 	}
    987   1.67       sjg     }
    988   1.67       sjg 
    989   1.67       sjg     if (metaIgnorePatterns) {
    990   1.97    rillig 	const char *expr;
    991   1.97    rillig 	char *pm;
    992   1.92    rillig 
    993   1.83    rillig 	Var_Set(".p.", p, gn);
    994   1.92    rillig 	expr = "${" MAKE_META_IGNORE_PATTERNS ":@m@${.p.:M$m}@}";
    995  1.117    rillig 	(void)Var_Subst(expr, gn, VARE_WANTRES, &pm);
    996  1.117    rillig 	/* TODO: handle errors */
    997   1.67       sjg 	if (*pm) {
    998   1.67       sjg #ifdef DEBUG_META_MODE
    999  1.121    rillig 	    DEBUG1(META, "meta_oodate: ignoring pattern: %s\n", p);
   1000   1.67       sjg #endif
   1001   1.67       sjg 	    free(pm);
   1002   1.67       sjg 	    return TRUE;
   1003   1.67       sjg 	}
   1004   1.67       sjg 	free(pm);
   1005   1.67       sjg     }
   1006   1.67       sjg 
   1007   1.67       sjg     if (metaIgnoreFilter) {
   1008   1.67       sjg 	char *fm;
   1009   1.67       sjg 
   1010   1.67       sjg 	/* skip if filter result is empty */
   1011   1.67       sjg 	snprintf(fname, sizeof(fname),
   1012   1.67       sjg 		 "${%s:L:${%s:ts:}}",
   1013   1.67       sjg 		 p, MAKE_META_IGNORE_FILTER);
   1014  1.117    rillig 	(void)Var_Subst(fname, gn, VARE_WANTRES, &fm);
   1015  1.117    rillig 	/* TODO: handle errors */
   1016   1.67       sjg 	if (*fm == '\0') {
   1017   1.67       sjg #ifdef DEBUG_META_MODE
   1018  1.121    rillig 	    DEBUG1(META, "meta_oodate: ignoring filtered: %s\n", p);
   1019   1.67       sjg #endif
   1020   1.67       sjg 	    free(fm);
   1021   1.67       sjg 	    return TRUE;
   1022   1.67       sjg 	}
   1023   1.67       sjg 	free(fm);
   1024   1.67       sjg     }
   1025   1.67       sjg     return FALSE;
   1026   1.67       sjg }
   1027   1.67       sjg 
   1028    1.1       sjg /*
   1029    1.1       sjg  * When running with 'meta' functionality, a target can be out-of-date
   1030   1.34       snj  * if any of the references in its meta data file is more recent.
   1031    1.5       sjg  * We have to track the latestdir on a per-process basis.
   1032    1.1       sjg  */
   1033   1.38       sjg #define LCWD_VNAME_FMT ".meta.%d.lcwd"
   1034    1.5       sjg #define LDIR_VNAME_FMT ".meta.%d.ldir"
   1035    1.5       sjg 
   1036   1.20       sjg /*
   1037   1.20       sjg  * It is possible that a .meta file is corrupted,
   1038   1.20       sjg  * if we detect this we want to reproduce it.
   1039   1.20       sjg  * Setting oodate TRUE will have that effect.
   1040   1.20       sjg  */
   1041   1.20       sjg #define CHECK_VALID_META(p) if (!(p && *p)) { \
   1042   1.20       sjg     warnx("%s: %d: malformed", fname, lineno); \
   1043   1.20       sjg     oodate = TRUE; \
   1044   1.20       sjg     continue; \
   1045   1.20       sjg     }
   1046   1.20       sjg 
   1047   1.33       sjg #define DEQUOTE(p) if (*p == '\'') {	\
   1048   1.33       sjg     char *ep; \
   1049   1.33       sjg     p++; \
   1050   1.33       sjg     if ((ep = strchr(p, '\''))) \
   1051   1.33       sjg 	*ep = '\0'; \
   1052   1.33       sjg     }
   1053   1.33       sjg 
   1054  1.130    rillig static void
   1055  1.130    rillig append_if_new(StringList *list, const char *str)
   1056  1.130    rillig {
   1057  1.130    rillig     StringListNode *ln;
   1058  1.130    rillig 
   1059  1.130    rillig     for (ln = list->first; ln != NULL; ln = ln->next)
   1060  1.132    rillig 	if (strcmp(ln->datum, str) == 0)
   1061  1.130    rillig 	    return;
   1062  1.130    rillig     Lst_Append(list, bmake_strdup(str));
   1063  1.130    rillig }
   1064  1.130    rillig 
   1065    1.1       sjg Boolean
   1066    1.1       sjg meta_oodate(GNode *gn, Boolean oodate)
   1067    1.1       sjg {
   1068    1.5       sjg     static char *tmpdir = NULL;
   1069   1.11       sjg     static char cwd[MAXPATHLEN];
   1070   1.38       sjg     char lcwd_vname[64];
   1071    1.5       sjg     char ldir_vname[64];
   1072   1.38       sjg     char lcwd[MAXPATHLEN];
   1073    1.1       sjg     char latestdir[MAXPATHLEN];
   1074    1.1       sjg     char fname[MAXPATHLEN];
   1075    1.1       sjg     char fname1[MAXPATHLEN];
   1076    1.5       sjg     char fname2[MAXPATHLEN];
   1077   1.38       sjg     char fname3[MAXPATHLEN];
   1078   1.58       sjg     const char *dname;
   1079   1.58       sjg     const char *tname;
   1080    1.1       sjg     char *p;
   1081    1.1       sjg     char *cp;
   1082   1.33       sjg     char *link_src;
   1083   1.33       sjg     char *move_target;
   1084   1.11       sjg     static size_t cwdlen = 0;
   1085    1.7       sjg     static size_t tmplen = 0;
   1086    1.1       sjg     FILE *fp;
   1087   1.26       sjg     Boolean needOODATE = FALSE;
   1088  1.116    rillig     StringList *missingFiles;
   1089   1.58       sjg     int have_filemon = FALSE;
   1090  1.136    rillig     void *objdir_freeIt;
   1091   1.58       sjg 
   1092    1.4       sjg     if (oodate)
   1093    1.4       sjg 	return oodate;		/* we're done */
   1094    1.4       sjg 
   1095  1.136    rillig     dname = Var_Value(".OBJDIR", gn, &objdir_freeIt);
   1096  1.135    rillig     tname = GNode_VarTarget(gn);
   1097   1.58       sjg 
   1098   1.58       sjg     /* if this succeeds fname3 is realpath of dname */
   1099   1.58       sjg     if (!meta_needed(gn, dname, tname, fname3, FALSE))
   1100   1.58       sjg 	goto oodate_out;
   1101   1.58       sjg     dname = fname3;
   1102   1.58       sjg 
   1103  1.125    rillig     missingFiles = Lst_New();
   1104   1.17       sjg 
   1105    1.1       sjg     /*
   1106    1.1       sjg      * We need to check if the target is out-of-date. This includes
   1107    1.1       sjg      * checking if the expanded command has changed. This in turn
   1108    1.1       sjg      * requires that all variables are set in the same way that they
   1109    1.1       sjg      * would be if the target needs to be re-built.
   1110    1.1       sjg      */
   1111    1.1       sjg     Make_DoAllVar(gn);
   1112    1.1       sjg 
   1113  1.128    rillig     meta_name(fname, sizeof(fname), dname, tname, dname);
   1114    1.1       sjg 
   1115    1.8       sjg #ifdef DEBUG_META_MODE
   1116  1.121    rillig     DEBUG1(META, "meta_oodate: %s\n", fname);
   1117    1.8       sjg #endif
   1118    1.8       sjg 
   1119    1.1       sjg     if ((fp = fopen(fname, "r")) != NULL) {
   1120    1.1       sjg 	static char *buf = NULL;
   1121    1.1       sjg 	static size_t bufsz;
   1122    1.1       sjg 	int lineno = 0;
   1123    1.5       sjg 	int lastpid = 0;
   1124    1.5       sjg 	int pid;
   1125    1.1       sjg 	int x;
   1126  1.115    rillig 	StringListNode *cmdNode;
   1127  1.113    rillig 	struct make_stat mst;
   1128    1.1       sjg 
   1129    1.1       sjg 	if (!buf) {
   1130    1.1       sjg 	    bufsz = 8 * BUFSIZ;
   1131    1.1       sjg 	    buf = bmake_malloc(bufsz);
   1132    1.1       sjg 	}
   1133    1.5       sjg 
   1134   1.11       sjg 	if (!cwdlen) {
   1135   1.11       sjg 	    if (getcwd(cwd, sizeof(cwd)) == NULL)
   1136   1.11       sjg 		err(1, "Could not get current working directory");
   1137   1.11       sjg 	    cwdlen = strlen(cwd);
   1138   1.11       sjg 	}
   1139   1.38       sjg 	strlcpy(lcwd, cwd, sizeof(lcwd));
   1140   1.38       sjg 	strlcpy(latestdir, cwd, sizeof(latestdir));
   1141   1.11       sjg 
   1142    1.5       sjg 	if (!tmpdir) {
   1143    1.5       sjg 	    tmpdir = getTmpdir();
   1144    1.5       sjg 	    tmplen = strlen(tmpdir);
   1145    1.5       sjg 	}
   1146    1.5       sjg 
   1147    1.1       sjg 	/* we want to track all the .meta we read */
   1148    1.1       sjg 	Var_Append(".MAKE.META.FILES", fname, VAR_GLOBAL);
   1149    1.1       sjg 
   1150  1.127    rillig 	cmdNode = gn->commands->first;
   1151    1.1       sjg 	while (!oodate && (x = fgetLine(&buf, &bufsz, 0, fp)) > 0) {
   1152    1.1       sjg 	    lineno++;
   1153    1.1       sjg 	    if (buf[x - 1] == '\n')
   1154    1.1       sjg 		buf[x - 1] = '\0';
   1155   1.20       sjg 	    else {
   1156    1.1       sjg 		warnx("%s: %d: line truncated at %u", fname, lineno, x);
   1157   1.20       sjg 		oodate = TRUE;
   1158   1.20       sjg 		break;
   1159   1.20       sjg 	    }
   1160   1.33       sjg 	    link_src = NULL;
   1161   1.33       sjg 	    move_target = NULL;
   1162    1.1       sjg 	    /* Find the start of the build monitor section. */
   1163   1.58       sjg 	    if (!have_filemon) {
   1164    1.1       sjg 		if (strncmp(buf, "-- filemon", 10) == 0) {
   1165   1.58       sjg 		    have_filemon = TRUE;
   1166    1.1       sjg 		    continue;
   1167    1.1       sjg 		}
   1168    1.1       sjg 		if (strncmp(buf, "# buildmon", 10) == 0) {
   1169   1.58       sjg 		    have_filemon = TRUE;
   1170    1.1       sjg 		    continue;
   1171    1.1       sjg 		}
   1172   1.85    rillig 	    }
   1173    1.1       sjg 
   1174    1.1       sjg 	    /* Delimit the record type. */
   1175    1.1       sjg 	    p = buf;
   1176    1.7       sjg #ifdef DEBUG_META_MODE
   1177  1.121    rillig 	    DEBUG3(META, "%s: %d: %s\n", fname, lineno, buf);
   1178    1.7       sjg #endif
   1179    1.1       sjg 	    strsep(&p, " ");
   1180   1.58       sjg 	    if (have_filemon) {
   1181    1.5       sjg 		/*
   1182    1.5       sjg 		 * We are in the 'filemon' output section.
   1183    1.5       sjg 		 * Each record from filemon follows the general form:
   1184    1.5       sjg 		 *
   1185    1.5       sjg 		 * <key> <pid> <data>
   1186    1.5       sjg 		 *
   1187    1.5       sjg 		 * Where:
   1188    1.5       sjg 		 * <key> is a single letter, denoting the syscall.
   1189    1.5       sjg 		 * <pid> is the process that made the syscall.
   1190    1.5       sjg 		 * <data> is the arguments (of interest).
   1191    1.5       sjg 		 */
   1192    1.5       sjg 		switch(buf[0]) {
   1193    1.5       sjg 		case '#':		/* comment */
   1194    1.5       sjg 		case 'V':		/* version */
   1195    1.5       sjg 		    break;
   1196    1.5       sjg 		default:
   1197    1.5       sjg 		    /*
   1198    1.5       sjg 		     * We need to track pathnames per-process.
   1199    1.5       sjg 		     *
   1200    1.5       sjg 		     * Each process run by make, starts off in the 'CWD'
   1201    1.5       sjg 		     * recorded in the .meta file, if it chdirs ('C')
   1202    1.5       sjg 		     * elsewhere we need to track that - but only for
   1203    1.5       sjg 		     * that process.  If it forks ('F'), we initialize
   1204    1.5       sjg 		     * the child to have the same cwd as its parent.
   1205    1.5       sjg 		     *
   1206    1.5       sjg 		     * We also need to track the 'latestdir' of
   1207    1.5       sjg 		     * interest.  This is usually the same as cwd, but
   1208    1.5       sjg 		     * not if a process is reading directories.
   1209    1.5       sjg 		     *
   1210    1.5       sjg 		     * Each time we spot a different process ('pid')
   1211    1.5       sjg 		     * we save the current value of 'latestdir' in a
   1212    1.5       sjg 		     * variable qualified by 'lastpid', and
   1213    1.5       sjg 		     * re-initialize 'latestdir' to any pre-saved
   1214    1.5       sjg 		     * value for the current 'pid' and 'CWD' if none.
   1215    1.5       sjg 		     */
   1216   1.20       sjg 		    CHECK_VALID_META(p);
   1217    1.5       sjg 		    pid = atoi(p);
   1218    1.5       sjg 		    if (pid > 0 && pid != lastpid) {
   1219   1.90    rillig 			const char *ldir;
   1220  1.133    rillig 			void *tp;
   1221   1.83    rillig 
   1222    1.5       sjg 			if (lastpid > 0) {
   1223   1.38       sjg 			    /* We need to remember these. */
   1224   1.83    rillig 			    Var_Set(lcwd_vname, lcwd, VAR_GLOBAL);
   1225   1.83    rillig 			    Var_Set(ldir_vname, latestdir, VAR_GLOBAL);
   1226    1.5       sjg 			}
   1227   1.38       sjg 			snprintf(lcwd_vname, sizeof(lcwd_vname), LCWD_VNAME_FMT, pid);
   1228    1.5       sjg 			snprintf(ldir_vname, sizeof(ldir_vname), LDIR_VNAME_FMT, pid);
   1229    1.5       sjg 			lastpid = pid;
   1230    1.5       sjg 			ldir = Var_Value(ldir_vname, VAR_GLOBAL, &tp);
   1231    1.5       sjg 			if (ldir) {
   1232    1.5       sjg 			    strlcpy(latestdir, ldir, sizeof(latestdir));
   1233   1.91    rillig 			    bmake_free(tp);
   1234   1.38       sjg 			}
   1235   1.38       sjg 			ldir = Var_Value(lcwd_vname, VAR_GLOBAL, &tp);
   1236   1.38       sjg 			if (ldir) {
   1237   1.38       sjg 			    strlcpy(lcwd, ldir, sizeof(lcwd));
   1238   1.91    rillig 			    bmake_free(tp);
   1239   1.38       sjg 			}
   1240    1.5       sjg 		    }
   1241    1.5       sjg 		    /* Skip past the pid. */
   1242    1.5       sjg 		    if (strsep(&p, " ") == NULL)
   1243    1.5       sjg 			continue;
   1244    1.7       sjg #ifdef DEBUG_META_MODE
   1245    1.7       sjg 		    if (DEBUG(META))
   1246  1.122    rillig 			debug_printf("%s: %d: %d: %c: cwd=%s lcwd=%s ldir=%s\n",
   1247  1.122    rillig 				     fname, lineno,
   1248  1.122    rillig 				     pid, buf[0], cwd, lcwd, latestdir);
   1249    1.7       sjg #endif
   1250    1.5       sjg 		    break;
   1251    1.5       sjg 		}
   1252    1.5       sjg 
   1253   1.20       sjg 		CHECK_VALID_META(p);
   1254   1.20       sjg 
   1255    1.1       sjg 		/* Process according to record type. */
   1256    1.1       sjg 		switch (buf[0]) {
   1257    1.5       sjg 		case 'X':		/* eXit */
   1258   1.38       sjg 		    Var_Delete(lcwd_vname, VAR_GLOBAL);
   1259    1.5       sjg 		    Var_Delete(ldir_vname, VAR_GLOBAL);
   1260    1.5       sjg 		    lastpid = 0;	/* no need to save ldir_vname */
   1261    1.5       sjg 		    break;
   1262    1.5       sjg 
   1263    1.5       sjg 		case 'F':		/* [v]Fork */
   1264    1.5       sjg 		    {
   1265    1.5       sjg 			char cldir[64];
   1266    1.5       sjg 			int child;
   1267    1.5       sjg 
   1268    1.5       sjg 			child = atoi(p);
   1269    1.5       sjg 			if (child > 0) {
   1270   1.38       sjg 			    snprintf(cldir, sizeof(cldir), LCWD_VNAME_FMT, child);
   1271   1.83    rillig 			    Var_Set(cldir, lcwd, VAR_GLOBAL);
   1272    1.5       sjg 			    snprintf(cldir, sizeof(cldir), LDIR_VNAME_FMT, child);
   1273   1.83    rillig 			    Var_Set(cldir, latestdir, VAR_GLOBAL);
   1274   1.38       sjg #ifdef DEBUG_META_MODE
   1275   1.38       sjg 			    if (DEBUG(META))
   1276  1.122    rillig 				debug_printf(
   1277  1.122    rillig 					"%s: %d: %d: cwd=%s lcwd=%s ldir=%s\n",
   1278  1.122    rillig 					fname, lineno,
   1279  1.122    rillig 					child, cwd, lcwd, latestdir);
   1280   1.38       sjg #endif
   1281    1.5       sjg 			}
   1282    1.5       sjg 		    }
   1283    1.5       sjg 		    break;
   1284    1.1       sjg 
   1285    1.5       sjg 		case 'C':		/* Chdir */
   1286   1.38       sjg 		    /* Update lcwd and latest directory. */
   1287   1.85    rillig 		    strlcpy(latestdir, p, sizeof(latestdir));
   1288   1.38       sjg 		    strlcpy(lcwd, p, sizeof(lcwd));
   1289   1.83    rillig 		    Var_Set(lcwd_vname, lcwd, VAR_GLOBAL);
   1290   1.83    rillig 		    Var_Set(ldir_vname, lcwd, VAR_GLOBAL);
   1291   1.38       sjg #ifdef DEBUG_META_MODE
   1292  1.121    rillig 		    DEBUG4(META, "%s: %d: cwd=%s ldir=%s\n",
   1293  1.121    rillig 			   fname, lineno, cwd, lcwd);
   1294   1.38       sjg #endif
   1295    1.1       sjg 		    break;
   1296    1.1       sjg 
   1297   1.17       sjg 		case 'M':		/* renaMe */
   1298   1.33       sjg 		    /*
   1299   1.33       sjg 		     * For 'M'oves we want to check
   1300   1.33       sjg 		     * the src as for 'R'ead
   1301   1.33       sjg 		     * and the target as for 'W'rite.
   1302   1.33       sjg 		     */
   1303   1.33       sjg 		    cp = p;		/* save this for a second */
   1304   1.33       sjg 		    /* now get target */
   1305   1.33       sjg 		    if (strsep(&p, " ") == NULL)
   1306   1.33       sjg 			continue;
   1307   1.33       sjg 		    CHECK_VALID_META(p);
   1308   1.33       sjg 		    move_target = p;
   1309   1.33       sjg 		    p = cp;
   1310   1.17       sjg 		    /* 'L' and 'M' put single quotes around the args */
   1311   1.33       sjg 		    DEQUOTE(p);
   1312   1.33       sjg 		    DEQUOTE(move_target);
   1313   1.17       sjg 		    /* FALLTHROUGH */
   1314   1.17       sjg 		case 'D':		/* unlink */
   1315  1.129    rillig 		    if (*p == '/') {
   1316   1.64       sjg 			/* remove any missingFiles entries that match p */
   1317  1.129    rillig 			StringListNode *ln = missingFiles->first;
   1318  1.129    rillig 			while (ln != NULL) {
   1319  1.129    rillig 			    StringListNode *next = ln->next;
   1320  1.129    rillig 			    if (path_starts_with(ln->datum, p)) {
   1321  1.132    rillig 				free(ln->datum);
   1322  1.132    rillig 				Lst_Remove(missingFiles, ln);
   1323  1.129    rillig 			    }
   1324  1.129    rillig 			    ln = next;
   1325   1.17       sjg 			}
   1326   1.17       sjg 		    }
   1327   1.33       sjg 		    if (buf[0] == 'M') {
   1328   1.33       sjg 			/* the target of the mv is a file 'W'ritten */
   1329   1.33       sjg #ifdef DEBUG_META_MODE
   1330  1.121    rillig 			DEBUG2(META, "meta_oodate: M %s -> %s\n",
   1331  1.121    rillig 			       p, move_target);
   1332   1.33       sjg #endif
   1333   1.33       sjg 			p = move_target;
   1334   1.33       sjg 			goto check_write;
   1335   1.33       sjg 		    }
   1336   1.17       sjg 		    break;
   1337   1.17       sjg 		case 'L':		/* Link */
   1338   1.33       sjg 		    /*
   1339   1.33       sjg 		     * For 'L'inks check
   1340   1.33       sjg 		     * the src as for 'R'ead
   1341   1.33       sjg 		     * and the target as for 'W'rite.
   1342   1.33       sjg 		     */
   1343   1.33       sjg 		    link_src = p;
   1344   1.33       sjg 		    /* now get target */
   1345   1.17       sjg 		    if (strsep(&p, " ") == NULL)
   1346   1.17       sjg 			continue;
   1347   1.20       sjg 		    CHECK_VALID_META(p);
   1348   1.17       sjg 		    /* 'L' and 'M' put single quotes around the args */
   1349   1.33       sjg 		    DEQUOTE(p);
   1350   1.33       sjg 		    DEQUOTE(link_src);
   1351   1.33       sjg #ifdef DEBUG_META_MODE
   1352  1.121    rillig 		    DEBUG2(META, "meta_oodate: L %s -> %s\n", link_src, p);
   1353   1.33       sjg #endif
   1354   1.17       sjg 		    /* FALLTHROUGH */
   1355   1.17       sjg 		case 'W':		/* Write */
   1356   1.33       sjg 		check_write:
   1357   1.17       sjg 		    /*
   1358   1.17       sjg 		     * If a file we generated within our bailiwick
   1359   1.17       sjg 		     * but outside of .OBJDIR is missing,
   1360   1.85    rillig 		     * we need to do it again.
   1361   1.17       sjg 		     */
   1362   1.17       sjg 		    /* ignore non-absolute paths */
   1363   1.17       sjg 		    if (*p != '/')
   1364   1.17       sjg 			break;
   1365   1.17       sjg 
   1366  1.106    rillig 		    if (Lst_IsEmpty(metaBailiwick))
   1367   1.17       sjg 			break;
   1368   1.17       sjg 
   1369   1.17       sjg 		    /* ignore cwd - normal dependencies handle those */
   1370   1.17       sjg 		    if (strncmp(p, cwd, cwdlen) == 0)
   1371   1.17       sjg 			break;
   1372   1.17       sjg 
   1373  1.118    rillig 		    if (!Lst_ForEachUntil(metaBailiwick, prefix_match, p))
   1374   1.17       sjg 			break;
   1375   1.17       sjg 
   1376   1.17       sjg 		    /* tmpdir might be within */
   1377   1.17       sjg 		    if (tmplen > 0 && strncmp(p, tmpdir, tmplen) == 0)
   1378   1.17       sjg 			break;
   1379   1.17       sjg 
   1380   1.17       sjg 		    /* ignore anything containing the string "tmp" */
   1381   1.17       sjg 		    if ((strstr("tmp", p)))
   1382   1.17       sjg 			break;
   1383   1.17       sjg 
   1384  1.113    rillig 		    if ((link_src != NULL && cached_lstat(p, &mst) < 0) ||
   1385  1.113    rillig 			(link_src == NULL && cached_stat(p, &mst) < 0)) {
   1386  1.130    rillig 			if (!meta_ignore(gn, p))
   1387  1.130    rillig 			    append_if_new(missingFiles, p);
   1388   1.17       sjg 		    }
   1389   1.17       sjg 		    break;
   1390   1.33       sjg 		check_link_src:
   1391   1.33       sjg 		    p = link_src;
   1392   1.33       sjg 		    link_src = NULL;
   1393   1.33       sjg #ifdef DEBUG_META_MODE
   1394  1.121    rillig 		    DEBUG1(META, "meta_oodate: L src %s\n", p);
   1395   1.33       sjg #endif
   1396   1.33       sjg 		    /* FALLTHROUGH */
   1397    1.5       sjg 		case 'R':		/* Read */
   1398    1.5       sjg 		case 'E':		/* Exec */
   1399    1.1       sjg 		    /*
   1400    1.1       sjg 		     * Check for runtime files that can't
   1401    1.1       sjg 		     * be part of the dependencies because
   1402    1.1       sjg 		     * they are _expected_ to change.
   1403    1.1       sjg 		     */
   1404   1.67       sjg 		    if (meta_ignore(gn, p))
   1405   1.67       sjg 			break;
   1406   1.85    rillig 
   1407    1.1       sjg 		    /*
   1408    1.5       sjg 		     * The rest of the record is the file name.
   1409    1.5       sjg 		     * Check if it's not an absolute path.
   1410    1.1       sjg 		     */
   1411    1.5       sjg 		    {
   1412    1.5       sjg 			char *sdirs[4];
   1413    1.5       sjg 			char **sdp;
   1414    1.5       sjg 			int sdx = 0;
   1415    1.5       sjg 			int found = 0;
   1416    1.5       sjg 
   1417    1.5       sjg 			if (*p == '/') {
   1418    1.5       sjg 			    sdirs[sdx++] = p; /* done */
   1419    1.5       sjg 			} else {
   1420    1.5       sjg 			    if (strcmp(".", p) == 0)
   1421    1.5       sjg 				continue;  /* no point */
   1422    1.5       sjg 
   1423    1.5       sjg 			    /* Check vs latestdir */
   1424    1.5       sjg 			    snprintf(fname1, sizeof(fname1), "%s/%s", latestdir, p);
   1425    1.5       sjg 			    sdirs[sdx++] = fname1;
   1426    1.5       sjg 
   1427   1.38       sjg 			    if (strcmp(latestdir, lcwd) != 0) {
   1428   1.38       sjg 				/* Check vs lcwd */
   1429   1.38       sjg 				snprintf(fname2, sizeof(fname2), "%s/%s", lcwd, p);
   1430   1.38       sjg 				sdirs[sdx++] = fname2;
   1431   1.38       sjg 			    }
   1432   1.38       sjg 			    if (strcmp(lcwd, cwd) != 0) {
   1433    1.5       sjg 				/* Check vs cwd */
   1434   1.38       sjg 				snprintf(fname3, sizeof(fname3), "%s/%s", cwd, p);
   1435   1.38       sjg 				sdirs[sdx++] = fname3;
   1436    1.5       sjg 			    }
   1437    1.5       sjg 			}
   1438    1.5       sjg 			sdirs[sdx++] = NULL;
   1439    1.1       sjg 
   1440    1.5       sjg 			for (sdp = sdirs; *sdp && !found; sdp++) {
   1441    1.7       sjg #ifdef DEBUG_META_MODE
   1442  1.121    rillig 			    DEBUG3(META, "%s: %d: looking for: %s\n",
   1443  1.121    rillig 				   fname, lineno, *sdp);
   1444    1.7       sjg #endif
   1445  1.113    rillig 			    if (cached_stat(*sdp, &mst) == 0) {
   1446    1.5       sjg 				found = 1;
   1447    1.5       sjg 				p = *sdp;
   1448    1.5       sjg 			    }
   1449    1.5       sjg 			}
   1450    1.5       sjg 			if (found) {
   1451    1.7       sjg #ifdef DEBUG_META_MODE
   1452  1.121    rillig 			    DEBUG3(META, "%s: %d: found: %s\n",
   1453  1.121    rillig 				   fname, lineno, p);
   1454    1.7       sjg #endif
   1455  1.113    rillig 			    if (!S_ISDIR(mst.mst_mode) &&
   1456  1.113    rillig 				mst.mst_mtime > gn->mtime) {
   1457  1.121    rillig 				DEBUG3(META, "%s: %d: file '%s' is newer than the target...\n",
   1458  1.121    rillig 				       fname, lineno, p);
   1459    1.5       sjg 				oodate = TRUE;
   1460  1.113    rillig 			    } else if (S_ISDIR(mst.mst_mode)) {
   1461    1.5       sjg 				/* Update the latest directory. */
   1462   1.59       sjg 				cached_realpath(p, latestdir);
   1463    1.5       sjg 			    }
   1464    1.5       sjg 			} else if (errno == ENOENT && *p == '/' &&
   1465    1.5       sjg 				   strncmp(p, cwd, cwdlen) != 0) {
   1466    1.5       sjg 			    /*
   1467    1.5       sjg 			     * A referenced file outside of CWD is missing.
   1468    1.5       sjg 			     * We cannot catch every eventuality here...
   1469    1.5       sjg 			     */
   1470  1.130    rillig 			    append_if_new(missingFiles, p);
   1471    1.4       sjg 			}
   1472    1.1       sjg 		    }
   1473   1.38       sjg 		    if (buf[0] == 'E') {
   1474   1.38       sjg 			/* previous latestdir is no longer relevant */
   1475   1.38       sjg 			strlcpy(latestdir, lcwd, sizeof(latestdir));
   1476   1.38       sjg 		    }
   1477    1.1       sjg 		    break;
   1478    1.1       sjg 		default:
   1479    1.1       sjg 		    break;
   1480    1.1       sjg 		}
   1481   1.33       sjg 		if (!oodate && buf[0] == 'L' && link_src != NULL)
   1482   1.33       sjg 		    goto check_link_src;
   1483    1.5       sjg 	    } else if (strcmp(buf, "CMD") == 0) {
   1484    1.1       sjg 		/*
   1485    1.1       sjg 		 * Compare the current command with the one in the
   1486    1.1       sjg 		 * meta data file.
   1487    1.1       sjg 		 */
   1488  1.115    rillig 		if (cmdNode == NULL) {
   1489  1.121    rillig 		    DEBUG2(META, "%s: %d: there were more build commands in the meta data file than there are now...\n",
   1490  1.121    rillig 			   fname, lineno);
   1491    1.1       sjg 		    oodate = TRUE;
   1492    1.1       sjg 		} else {
   1493  1.127    rillig 		    char *cmd = cmdNode->datum;
   1494   1.29       sjg 		    Boolean hasOODATE = FALSE;
   1495    1.1       sjg 
   1496   1.29       sjg 		    if (strstr(cmd, "$?"))
   1497   1.29       sjg 			hasOODATE = TRUE;
   1498   1.29       sjg 		    else if ((cp = strstr(cmd, ".OODATE"))) {
   1499   1.29       sjg 			/* check for $[{(].OODATE[:)}] */
   1500   1.29       sjg 			if (cp > cmd + 2 && cp[-2] == '$')
   1501   1.29       sjg 			    hasOODATE = TRUE;
   1502   1.29       sjg 		    }
   1503   1.29       sjg 		    if (hasOODATE) {
   1504   1.29       sjg 			needOODATE = TRUE;
   1505  1.121    rillig 			DEBUG2(META, "%s: %d: cannot compare command using .OODATE\n",
   1506  1.121    rillig 			       fname, lineno);
   1507    1.1       sjg 		    }
   1508  1.117    rillig 		    (void)Var_Subst(cmd, gn, VARE_WANTRES|VARE_UNDEFERR, &cmd);
   1509  1.117    rillig 		    /* TODO: handle errors */
   1510    1.1       sjg 
   1511    1.1       sjg 		    if ((cp = strchr(cmd, '\n'))) {
   1512    1.1       sjg 			int n;
   1513    1.1       sjg 
   1514    1.1       sjg 			/*
   1515    1.1       sjg 			 * This command contains newlines, we need to
   1516    1.1       sjg 			 * fetch more from the .meta file before we
   1517    1.1       sjg 			 * attempt a comparison.
   1518    1.1       sjg 			 */
   1519    1.1       sjg 			/* first put the newline back at buf[x - 1] */
   1520    1.1       sjg 			buf[x - 1] = '\n';
   1521    1.1       sjg 			do {
   1522    1.1       sjg 			    /* now fetch the next line */
   1523    1.1       sjg 			    if ((n = fgetLine(&buf, &bufsz, x, fp)) <= 0)
   1524    1.1       sjg 				break;
   1525    1.1       sjg 			    x = n;
   1526    1.1       sjg 			    lineno++;
   1527    1.1       sjg 			    if (buf[x - 1] != '\n') {
   1528    1.1       sjg 				warnx("%s: %d: line truncated at %u", fname, lineno, x);
   1529    1.1       sjg 				break;
   1530    1.1       sjg 			    }
   1531    1.1       sjg 			    cp = strchr(++cp, '\n');
   1532    1.1       sjg 			} while (cp);
   1533    1.1       sjg 			if (buf[x - 1] == '\n')
   1534    1.1       sjg 			    buf[x - 1] = '\0';
   1535    1.1       sjg 		    }
   1536   1.81       sjg 		    if (p &&
   1537   1.81       sjg 			!hasOODATE &&
   1538    1.1       sjg 			!(gn->type & OP_NOMETA_CMP) &&
   1539    1.1       sjg 			strcmp(p, cmd) != 0) {
   1540  1.121    rillig 			DEBUG4(META, "%s: %d: a build command has changed\n%s\nvs\n%s\n",
   1541  1.121    rillig 			       fname, lineno, p, cmd);
   1542    1.1       sjg 			if (!metaIgnoreCMDs)
   1543    1.1       sjg 			    oodate = TRUE;
   1544    1.1       sjg 		    }
   1545    1.1       sjg 		    free(cmd);
   1546  1.120    rillig 		    cmdNode = cmdNode->next;
   1547    1.1       sjg 		}
   1548    1.1       sjg 	    } else if (strcmp(buf, "CWD") == 0) {
   1549   1.14       sjg 		/*
   1550   1.14       sjg 		 * Check if there are extra commands now
   1551   1.14       sjg 		 * that weren't in the meta data file.
   1552   1.14       sjg 		 */
   1553  1.115    rillig 		if (!oodate && cmdNode != NULL) {
   1554  1.121    rillig 		    DEBUG2(META, "%s: %d: there are extra build commands now that weren't in the meta data file\n",
   1555  1.121    rillig 			   fname, lineno);
   1556   1.14       sjg 		    oodate = TRUE;
   1557   1.14       sjg 		}
   1558   1.80       sjg 		CHECK_VALID_META(p);
   1559   1.11       sjg 		if (strcmp(p, cwd) != 0) {
   1560  1.121    rillig 		    DEBUG4(META, "%s: %d: the current working directory has changed from '%s' to '%s'\n",
   1561  1.121    rillig 			   fname, lineno, p, curdir);
   1562    1.1       sjg 		    oodate = TRUE;
   1563    1.1       sjg 		}
   1564    1.1       sjg 	    }
   1565    1.1       sjg 	}
   1566    1.1       sjg 
   1567    1.1       sjg 	fclose(fp);
   1568  1.106    rillig 	if (!Lst_IsEmpty(missingFiles)) {
   1569  1.121    rillig 	    DEBUG2(META, "%s: missing files: %s...\n",
   1570  1.127    rillig 		   fname, (char *)missingFiles->first->datum);
   1571   1.17       sjg 	    oodate = TRUE;
   1572   1.17       sjg 	}
   1573   1.60       sjg 	if (!oodate && !have_filemon && filemonMissing) {
   1574  1.121    rillig 	    DEBUG1(META, "%s: missing filemon data\n", fname);
   1575   1.21       sjg 	    oodate = TRUE;
   1576   1.21       sjg 	}
   1577   1.60       sjg     } else {
   1578   1.86       sjg 	if (writeMeta && (metaMissing || (gn->type & OP_META))) {
   1579   1.60       sjg 	    cp = NULL;
   1580   1.50  christos 
   1581   1.60       sjg 	    /* if target is in .CURDIR we do not need a meta file */
   1582   1.60       sjg 	    if (gn->path && (cp = strrchr(gn->path, '/')) && cp > gn->path) {
   1583  1.124    rillig 		if (strncmp(curdir, gn->path, (size_t)(cp - gn->path)) != 0) {
   1584   1.60       sjg 		    cp = NULL;		/* not in .CURDIR */
   1585   1.60       sjg 		}
   1586   1.60       sjg 	    }
   1587   1.60       sjg 	    if (!cp) {
   1588  1.121    rillig 		DEBUG1(META, "%s: required but missing\n", fname);
   1589   1.60       sjg 		oodate = TRUE;
   1590   1.62       sjg 		needOODATE = TRUE;	/* assume the worst */
   1591   1.60       sjg 	    }
   1592   1.60       sjg 	}
   1593   1.58       sjg     }
   1594   1.58       sjg 
   1595  1.106    rillig     Lst_Destroy(missingFiles, free);
   1596   1.50  christos 
   1597   1.26       sjg     if (oodate && needOODATE) {
   1598    1.4       sjg 	/*
   1599   1.26       sjg 	 * Target uses .OODATE which is empty; or we wouldn't be here.
   1600   1.26       sjg 	 * We have decided it is oodate, so .OODATE needs to be set.
   1601   1.26       sjg 	 * All we can sanely do is set it to .ALLSRC.
   1602    1.4       sjg 	 */
   1603    1.4       sjg 	Var_Delete(OODATE, gn);
   1604  1.135    rillig 	Var_Set(OODATE, GNode_VarAllsrc(gn), gn);
   1605    1.4       sjg     }
   1606   1.58       sjg 
   1607   1.58       sjg  oodate_out:
   1608  1.136    rillig     bmake_free(objdir_freeIt);
   1609    1.1       sjg     return oodate;
   1610    1.1       sjg }
   1611    1.1       sjg 
   1612    1.1       sjg /* support for compat mode */
   1613    1.1       sjg 
   1614    1.1       sjg static int childPipe[2];
   1615    1.1       sjg 
   1616    1.1       sjg void
   1617    1.1       sjg meta_compat_start(void)
   1618    1.1       sjg {
   1619   1.73      maxv #ifdef USE_FILEMON_ONCE
   1620   1.73      maxv     /*
   1621   1.73      maxv      * We need to re-open filemon for each cmd.
   1622   1.73      maxv      */
   1623   1.73      maxv     BuildMon *pbm = &Mybm;
   1624   1.85    rillig 
   1625   1.73      maxv     if (pbm->mfp != NULL && useFilemon) {
   1626   1.74  riastrad 	meta_open_filemon(pbm);
   1627   1.73      maxv     } else {
   1628   1.74  riastrad 	pbm->mon_fd = -1;
   1629   1.74  riastrad 	pbm->filemon = NULL;
   1630   1.73      maxv     }
   1631   1.73      maxv #endif
   1632    1.1       sjg     if (pipe(childPipe) < 0)
   1633    1.1       sjg 	Punt("Cannot create pipe: %s", strerror(errno));
   1634    1.1       sjg     /* Set close-on-exec flag for both */
   1635   1.42  christos     (void)fcntl(childPipe[0], F_SETFD, FD_CLOEXEC);
   1636   1.42  christos     (void)fcntl(childPipe[1], F_SETFD, FD_CLOEXEC);
   1637    1.1       sjg }
   1638    1.1       sjg 
   1639    1.1       sjg void
   1640    1.1       sjg meta_compat_child(void)
   1641    1.1       sjg {
   1642    1.1       sjg     meta_job_child(NULL);
   1643  1.123    rillig     if (dup2(childPipe[1], 1) < 0 || dup2(1, 2) < 0)
   1644  1.123    rillig 	execDie("dup2", "pipe");
   1645    1.1       sjg }
   1646    1.1       sjg 
   1647    1.1       sjg void
   1648   1.74  riastrad meta_compat_parent(pid_t child)
   1649    1.1       sjg {
   1650   1.74  riastrad     int outfd, metafd, maxfd, nfds;
   1651   1.78       sjg     char buf[BUFSIZ+1];
   1652   1.74  riastrad     fd_set readfds;
   1653   1.74  riastrad 
   1654   1.74  riastrad     meta_job_parent(NULL, child);
   1655    1.1       sjg     close(childPipe[1]);			/* child side */
   1656   1.74  riastrad     outfd = childPipe[0];
   1657   1.79       sjg #ifdef USE_FILEMON
   1658   1.78       sjg     metafd = Mybm.filemon ? filemon_readfd(Mybm.filemon) : -1;
   1659   1.79       sjg #else
   1660   1.79       sjg     metafd = -1;
   1661   1.79       sjg #endif
   1662   1.74  riastrad     maxfd = -1;
   1663   1.74  riastrad     if (outfd > maxfd)
   1664   1.74  riastrad 	    maxfd = outfd;
   1665   1.74  riastrad     if (metafd > maxfd)
   1666   1.74  riastrad 	    maxfd = metafd;
   1667   1.74  riastrad 
   1668   1.74  riastrad     while (outfd != -1 || metafd != -1) {
   1669   1.74  riastrad 	FD_ZERO(&readfds);
   1670   1.74  riastrad 	if (outfd != -1) {
   1671   1.74  riastrad 	    FD_SET(outfd, &readfds);
   1672   1.74  riastrad 	}
   1673   1.74  riastrad 	if (metafd != -1) {
   1674   1.74  riastrad 	    FD_SET(metafd, &readfds);
   1675   1.74  riastrad 	}
   1676   1.74  riastrad 	nfds = select(maxfd + 1, &readfds, NULL, NULL, NULL);
   1677   1.74  riastrad 	if (nfds == -1) {
   1678   1.74  riastrad 	    if (errno == EINTR)
   1679   1.74  riastrad 		continue;
   1680   1.74  riastrad 	    err(1, "select");
   1681   1.74  riastrad 	}
   1682   1.74  riastrad 
   1683   1.74  riastrad 	if (outfd != -1 && FD_ISSET(outfd, &readfds)) do {
   1684   1.74  riastrad 	    /* XXX this is not line-buffered */
   1685   1.78       sjg 	    ssize_t nread = read(outfd, buf, sizeof(buf) - 1);
   1686   1.74  riastrad 	    if (nread == -1)
   1687   1.74  riastrad 		err(1, "read");
   1688   1.74  riastrad 	    if (nread == 0) {
   1689   1.74  riastrad 		close(outfd);
   1690   1.74  riastrad 		outfd = -1;
   1691   1.74  riastrad 		break;
   1692   1.74  riastrad 	    }
   1693   1.74  riastrad 	    fwrite(buf, 1, (size_t)nread, stdout);
   1694   1.74  riastrad 	    fflush(stdout);
   1695   1.78       sjg 	    buf[nread] = '\0';
   1696   1.78       sjg 	    meta_job_output(NULL, buf, "");
   1697   1.74  riastrad 	} while (0);
   1698   1.74  riastrad 	if (metafd != -1 && FD_ISSET(metafd, &readfds)) {
   1699   1.74  riastrad 	    if (meta_job_event(NULL) <= 0)
   1700   1.74  riastrad 		metafd = -1;
   1701   1.74  riastrad 	}
   1702    1.1       sjg     }
   1703    1.1       sjg }
   1704    1.3       sjg 
   1705    1.3       sjg #endif	/* USE_META */
   1706