Home | History | Annotate | Line # | Download | only in make
dir.c revision 1.147
      1 /*	$NetBSD: dir.c,v 1.147 2020/09/25 06:49:13 rillig Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to Berkeley by
      8  * Adam de Boor.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. Neither the name of the University nor the names of its contributors
     19  *    may be used to endorse or promote products derived from this software
     20  *    without specific prior written permission.
     21  *
     22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32  * SUCH DAMAGE.
     33  */
     34 
     35 /*
     36  * Copyright (c) 1988, 1989 by Adam de Boor
     37  * Copyright (c) 1989 by Berkeley Softworks
     38  * All rights reserved.
     39  *
     40  * This code is derived from software contributed to Berkeley by
     41  * Adam de Boor.
     42  *
     43  * Redistribution and use in source and binary forms, with or without
     44  * modification, are permitted provided that the following conditions
     45  * are met:
     46  * 1. Redistributions of source code must retain the above copyright
     47  *    notice, this list of conditions and the following disclaimer.
     48  * 2. Redistributions in binary form must reproduce the above copyright
     49  *    notice, this list of conditions and the following disclaimer in the
     50  *    documentation and/or other materials provided with the distribution.
     51  * 3. All advertising materials mentioning features or use of this software
     52  *    must display the following acknowledgement:
     53  *	This product includes software developed by the University of
     54  *	California, Berkeley and its contributors.
     55  * 4. Neither the name of the University nor the names of its contributors
     56  *    may be used to endorse or promote products derived from this software
     57  *    without specific prior written permission.
     58  *
     59  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     60  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     61  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     62  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     63  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     64  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     65  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     66  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     67  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     68  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     69  * SUCH DAMAGE.
     70  */
     71 
     72 /*-
     73  * dir.c --
     74  *	Directory searching using wildcards and/or normal names...
     75  *	Used both for source wildcarding in the Makefile and for finding
     76  *	implicit sources.
     77  *
     78  * The interface for this module is:
     79  *	Dir_Init  	    Initialize the module.
     80  *
     81  *	Dir_InitCur	    Set the cur CachedDir.
     82  *
     83  *	Dir_InitDot	    Set the dot CachedDir.
     84  *
     85  *	Dir_End  	    Cleanup the module.
     86  *
     87  *	Dir_SetPATH	    Set ${.PATH} to reflect state of dirSearchPath.
     88  *
     89  *	Dir_HasWildcards    Returns TRUE if the name given it needs to
     90  *	    	  	    be wildcard-expanded.
     91  *
     92  *	Dir_Expand	    Given a pattern and a path, return a Lst of names
     93  *	    	  	    which match the pattern on the search path.
     94  *
     95  *	Dir_FindFile	    Searches for a file on a given search path.
     96  *	    	  	    If it exists, the entire path is returned.
     97  *	    	  	    Otherwise NULL is returned.
     98  *
     99  *	Dir_FindHereOrAbove Search for a path in the current directory and
    100  *			    then all the directories above it in turn until
    101  *			    the path is found or we reach the root ("/").
    102  *
    103  *	Dir_MTime 	    Return the modification time of a node. The file
    104  *	    	  	    is searched for along the default search path.
    105  *	    	  	    The path and mtime fields of the node are filled
    106  *	    	  	    in.
    107  *
    108  *	Dir_AddDir	    Add a directory to a search path.
    109  *
    110  *	Dir_MakeFlags	    Given a search path and a command flag, create
    111  *	    	  	    a string with each of the directories in the path
    112  *	    	  	    preceded by the command flag and all of them
    113  *	    	  	    separated by a space.
    114  *
    115  *	Dir_Destroy	    Destroy an element of a search path. Frees up all
    116  *	    	  	    things that can be freed for the element as long
    117  *	    	  	    as the element is no longer referenced by any other
    118  *	    	  	    search path.
    119  *	Dir_ClearPath	    Resets a search path to the empty list.
    120  *
    121  * For debugging:
    122  *	Dir_PrintDirectories	Print stats about the directory cache.
    123  */
    124 
    125 #include <sys/types.h>
    126 #include <sys/stat.h>
    127 
    128 #include <dirent.h>
    129 #include <errno.h>
    130 #include <stdio.h>
    131 
    132 #include "make.h"
    133 #include "dir.h"
    134 #include "job.h"
    135 
    136 /*	"@(#)dir.c	8.2 (Berkeley) 1/2/94"	*/
    137 MAKE_RCSID("$NetBSD: dir.c,v 1.147 2020/09/25 06:49:13 rillig Exp $");
    138 
    139 #define DIR_DEBUG0(fmt) \
    140     if (!DEBUG(DIR)) (void) 0; else fprintf(debug_file, fmt)
    141 
    142 #define DIR_DEBUG1(fmt, arg1) \
    143     if (!DEBUG(DIR)) (void) 0; else fprintf(debug_file, fmt, arg1)
    144 
    145 #define DIR_DEBUG2(fmt, arg1, arg2) \
    146     if (!DEBUG(DIR)) (void) 0; else fprintf(debug_file, fmt, arg1, arg2)
    147 
    148 
    149 /*
    150  *	A search path consists of a list of CachedDir structures. A CachedDir
    151  *	has in it the name of the directory and a hash table of all the files
    152  *	in the directory. This is used to cut down on the number of system
    153  *	calls necessary to find implicit dependents and their like. Since
    154  *	these searches are made before any actions are taken, we need not
    155  *	worry about the directory changing due to creation commands. If this
    156  *	hampers the style of some makefiles, they must be changed.
    157  *
    158  *	A list of all previously-read directories is kept in the
    159  *	openDirectories Lst. This list is checked first before a directory
    160  *	is opened.
    161  *
    162  *	The need for the caching of whole directories is brought about by
    163  *	the multi-level transformation code in suff.c, which tends to search
    164  *	for far more files than regular make does. In the initial
    165  *	implementation, the amount of time spent performing "stat" calls was
    166  *	truly astronomical. The problem with hashing at the start is,
    167  *	of course, that pmake doesn't then detect changes to these directories
    168  *	during the course of the make. Three possibilities suggest themselves:
    169  *
    170  *	    1) just use stat to test for a file's existence. As mentioned
    171  *	       above, this is very inefficient due to the number of checks
    172  *	       engendered by the multi-level transformation code.
    173  *	    2) use readdir() and company to search the directories, keeping
    174  *	       them open between checks. I have tried this and while it
    175  *	       didn't slow down the process too much, it could severely
    176  *	       affect the amount of parallelism available as each directory
    177  *	       open would take another file descriptor out of play for
    178  *	       handling I/O for another job. Given that it is only recently
    179  *	       that UNIX OS's have taken to allowing more than 20 or 32
    180  *	       file descriptors for a process, this doesn't seem acceptable
    181  *	       to me.
    182  *	    3) record the mtime of the directory in the CachedDir structure and
    183  *	       verify the directory hasn't changed since the contents were
    184  *	       hashed. This will catch the creation or deletion of files,
    185  *	       but not the updating of files. However, since it is the
    186  *	       creation and deletion that is the problem, this could be
    187  *	       a good thing to do. Unfortunately, if the directory (say ".")
    188  *	       were fairly large and changed fairly frequently, the constant
    189  *	       rehashing could seriously degrade performance. It might be
    190  *	       good in such cases to keep track of the number of rehashes
    191  *	       and if the number goes over a (small) limit, resort to using
    192  *	       stat in its place.
    193  *
    194  *	An additional thing to consider is that pmake is used primarily
    195  *	to create C programs and until recently pcc-based compilers refused
    196  *	to allow you to specify where the resulting object file should be
    197  *	placed. This forced all objects to be created in the current
    198  *	directory. This isn't meant as a full excuse, just an explanation of
    199  *	some of the reasons for the caching used here.
    200  *
    201  *	One more note: the location of a target's file is only performed
    202  *	on the downward traversal of the graph and then only for terminal
    203  *	nodes in the graph. This could be construed as wrong in some cases,
    204  *	but prevents inadvertent modification of files when the "installed"
    205  *	directory for a file is provided in the search path.
    206  *
    207  *	Another data structure maintained by this module is an mtime
    208  *	cache used when the searching of cached directories fails to find
    209  *	a file. In the past, Dir_FindFile would simply perform an access()
    210  *	call in such a case to determine if the file could be found using
    211  *	just the name given. When this hit, however, all that was gained
    212  *	was the knowledge that the file existed. Given that an access() is
    213  *	essentially a stat() without the copyout() call, and that the same
    214  *	filesystem overhead would have to be incurred in Dir_MTime, it made
    215  *	sense to replace the access() with a stat() and record the mtime
    216  *	in a cache for when Dir_MTime was actually called.
    217  */
    218 
    219 typedef List CachedDirList;
    220 typedef ListNode CachedDirListNode;
    221 
    222 typedef ListNode SearchPathNode;
    223 
    224 SearchPath *dirSearchPath;		/* main search path */
    225 
    226 static CachedDirList *openDirectories;	/* the list of all open directories */
    227 
    228 /*
    229  * Variables for gathering statistics on the efficiency of the hashing
    230  * mechanism.
    231  */
    232 static int hits;		/* Found in directory cache */
    233 static int misses;		/* Sad, but not evil misses */
    234 static int nearmisses;		/* Found under search path */
    235 static int bigmisses;		/* Sought by itself */
    236 
    237 static CachedDir *dot;		/* contents of current directory */
    238 static CachedDir *cur;		/* contents of current directory, if not dot */
    239 static CachedDir *dotLast;	/* a fake path entry indicating we need to
    240 				 * look for . last */
    241 
    242 /* Results of doing a last-resort stat in Dir_FindFile -- if we have to go to
    243  * the system to find the file, we might as well have its mtime on record.
    244  *
    245  * XXX: If this is done way early, there's a chance other rules will have
    246  * already updated the file, in which case we'll update it again. Generally,
    247  * there won't be two rules to update a single file, so this should be ok,
    248  * but... */
    249 static Hash_Table mtimes;
    250 
    251 static Hash_Table lmtimes;	/* same as mtimes but for lstat */
    252 
    253 static void DirExpandInt(const char *, SearchPath *, StringList *);
    254 static char *DirLookup(CachedDir *, const char *, const char *, Boolean);
    255 static char *DirLookupSubdir(CachedDir *, const char *);
    256 static char *DirFindDot(Boolean, const char *, const char *);
    257 static char *DirLookupAbs(CachedDir *, const char *, const char *);
    258 
    259 
    260 /*
    261  * We use stat(2) a lot, cache the results.
    262  * mtime and mode are all we care about.
    263  */
    264 struct cache_st {
    265     time_t lmtime;		/* lstat */
    266     time_t mtime;		/* stat */
    267     mode_t mode;
    268 };
    269 
    270 /* minimize changes below */
    271 typedef enum {
    272     CST_LSTAT = 0x01,		/* call lstat(2) instead of stat(2) */
    273     CST_UPDATE = 0x02		/* ignore existing cached entry */
    274 } CachedStatsFlags;
    275 
    276 /* Returns 0 and the result of stat(2) or lstat(2) in *mst, or -1 on error. */
    277 static int
    278 cached_stats(Hash_Table *htp, const char *pathname, struct make_stat *mst,
    279 	     CachedStatsFlags flags)
    280 {
    281     Hash_Entry *entry;
    282     struct stat sys_st;
    283     struct cache_st *cst;
    284     int rc;
    285 
    286     if (!pathname || !pathname[0])
    287 	return -1;
    288 
    289     entry = Hash_FindEntry(htp, pathname);
    290 
    291     if (entry && !(flags & CST_UPDATE)) {
    292 	cst = Hash_GetValue(entry);
    293 
    294 	mst->mst_mode = cst->mode;
    295 	mst->mst_mtime = (flags & CST_LSTAT) ? cst->lmtime : cst->mtime;
    296 	if (mst->mst_mtime) {
    297 	    DIR_DEBUG2("Using cached time %s for %s\n",
    298 		       Targ_FmtTime(mst->mst_mtime), pathname);
    299 	    return 0;
    300 	}
    301     }
    302 
    303     rc = (flags & CST_LSTAT)
    304 	 ? lstat(pathname, &sys_st)
    305 	 : stat(pathname, &sys_st);
    306     if (rc == -1)
    307 	return -1;
    308 
    309     if (sys_st.st_mtime == 0)
    310 	sys_st.st_mtime = 1;	/* avoid confusion with missing file */
    311 
    312     mst->mst_mode = sys_st.st_mode;
    313     mst->mst_mtime = sys_st.st_mtime;
    314 
    315     if (entry == NULL)
    316 	entry = Hash_CreateEntry(htp, pathname, NULL);
    317     if (Hash_GetValue(entry) == NULL) {
    318 	Hash_SetValue(entry, bmake_malloc(sizeof(*cst)));
    319 	memset(Hash_GetValue(entry), 0, sizeof(*cst));
    320     }
    321     cst = Hash_GetValue(entry);
    322     if (flags & CST_LSTAT) {
    323 	cst->lmtime = sys_st.st_mtime;
    324     } else {
    325 	cst->mtime = sys_st.st_mtime;
    326     }
    327     cst->mode = sys_st.st_mode;
    328     DIR_DEBUG2("   Caching %s for %s\n",
    329 	       Targ_FmtTime(sys_st.st_mtime), pathname);
    330 
    331     return 0;
    332 }
    333 
    334 int
    335 cached_stat(const char *pathname, struct make_stat *st)
    336 {
    337     return cached_stats(&mtimes, pathname, st, 0);
    338 }
    339 
    340 int
    341 cached_lstat(const char *pathname, struct make_stat *st)
    342 {
    343     return cached_stats(&lmtimes, pathname, st, CST_LSTAT);
    344 }
    345 
    346 /* Initialize things for this module. */
    347 void
    348 Dir_Init(void)
    349 {
    350     dirSearchPath = Lst_Init();
    351     openDirectories = Lst_Init();
    352     Hash_InitTable(&mtimes);
    353     Hash_InitTable(&lmtimes);
    354 }
    355 
    356 void
    357 Dir_InitDir(const char *cdname)
    358 {
    359     Dir_InitCur(cdname);
    360 
    361     dotLast = bmake_malloc(sizeof(CachedDir));
    362     dotLast->refCount = 1;
    363     dotLast->hits = 0;
    364     dotLast->name = bmake_strdup(".DOTLAST");
    365     Hash_InitTable(&dotLast->files);
    366 }
    367 
    368 /*
    369  * Called by Dir_InitDir and whenever .CURDIR is assigned to.
    370  */
    371 void
    372 Dir_InitCur(const char *cdname)
    373 {
    374     CachedDir *dir;
    375 
    376     if (cdname != NULL) {
    377 	/*
    378 	 * Our build directory is not the same as our source directory.
    379 	 * Keep this one around too.
    380 	 */
    381 	if ((dir = Dir_AddDir(NULL, cdname))) {
    382 	    dir->refCount += 1;
    383 	    if (cur && cur != dir) {
    384 		/*
    385 		 * We've been here before, cleanup.
    386 		 */
    387 		cur->refCount -= 1;
    388 		Dir_Destroy(cur);
    389 	    }
    390 	    cur = dir;
    391 	}
    392     }
    393 }
    394 
    395 /* (Re)initialize "dot" (current/object directory) path hash.
    396  * Some directories may be opened. */
    397 void
    398 Dir_InitDot(void)
    399 {
    400     if (dot != NULL) {
    401 	CachedDirListNode *ln;
    402 
    403 	/* Remove old entry from openDirectories, but do not destroy. */
    404 	ln = Lst_FindDatum(openDirectories, dot);
    405 	Lst_Remove(openDirectories, ln);
    406     }
    407 
    408     dot = Dir_AddDir(NULL, ".");
    409 
    410     if (dot == NULL) {
    411 	Error("Cannot open `.' (%s)", strerror(errno));
    412 	exit(1);
    413     }
    414 
    415     /*
    416      * We always need to have dot around, so we increment its reference count
    417      * to make sure it's not destroyed.
    418      */
    419     dot->refCount += 1;
    420     Dir_SetPATH();		/* initialize */
    421 }
    422 
    423 /* Clean up things for this module. */
    424 void
    425 Dir_End(void)
    426 {
    427 #ifdef CLEANUP
    428     if (cur) {
    429 	cur->refCount -= 1;
    430 	Dir_Destroy(cur);
    431     }
    432     dot->refCount -= 1;
    433     dotLast->refCount -= 1;
    434     Dir_Destroy(dotLast);
    435     Dir_Destroy(dot);
    436     Dir_ClearPath(dirSearchPath);
    437     Lst_Free(dirSearchPath);
    438     Dir_ClearPath(openDirectories);
    439     Lst_Free(openDirectories);
    440     Hash_DeleteTable(&mtimes);
    441 #endif
    442 }
    443 
    444 /*
    445  * We want ${.PATH} to indicate the order in which we will actually
    446  * search, so we rebuild it after any .PATH: target.
    447  * This is the simplest way to deal with the effect of .DOTLAST.
    448  */
    449 void
    450 Dir_SetPATH(void)
    451 {
    452     CachedDirListNode *ln;
    453     Boolean hasLastDot = FALSE;	/* true if we should search dot last */
    454 
    455     Var_Delete(".PATH", VAR_GLOBAL);
    456 
    457     Lst_Open(dirSearchPath);
    458     if ((ln = Lst_First(dirSearchPath)) != NULL) {
    459 	CachedDir *dir = LstNode_Datum(ln);
    460 	if (dir == dotLast) {
    461 	    hasLastDot = TRUE;
    462 	    Var_Append(".PATH", dotLast->name, VAR_GLOBAL);
    463 	}
    464     }
    465 
    466     if (!hasLastDot) {
    467 	if (dot)
    468 	    Var_Append(".PATH", dot->name, VAR_GLOBAL);
    469 	if (cur)
    470 	    Var_Append(".PATH", cur->name, VAR_GLOBAL);
    471     }
    472 
    473     while ((ln = Lst_Next(dirSearchPath)) != NULL) {
    474 	CachedDir *dir = LstNode_Datum(ln);
    475 	if (dir == dotLast)
    476 	    continue;
    477 	if (dir == dot && hasLastDot)
    478 	    continue;
    479 	Var_Append(".PATH", dir->name, VAR_GLOBAL);
    480     }
    481 
    482     if (hasLastDot) {
    483 	if (dot)
    484 	    Var_Append(".PATH", dot->name, VAR_GLOBAL);
    485 	if (cur)
    486 	    Var_Append(".PATH", cur->name, VAR_GLOBAL);
    487     }
    488     Lst_Close(dirSearchPath);
    489 }
    490 
    491 /* See if the CachedDir structure describes the same directory as the
    492  * given one by comparing their names. Called from Dir_AddDir via
    493  * Lst_Find when searching the list of open directories. */
    494 static Boolean
    495 DirFindName(const void *p, const void *desiredName)
    496 {
    497     const CachedDir *dir = p;
    498     return strcmp(dir->name, desiredName) == 0;
    499 }
    500 
    501 /* See if the given name has any wildcard characters in it. Be careful not to
    502  * expand unmatching brackets or braces.
    503  *
    504  * XXX: This code is not 100% correct ([^]] fails etc.). I really don't think
    505  * that make(1) should be expanding patterns, because then you have to set a
    506  * mechanism for escaping the expansion!
    507  *
    508  * Input:
    509  *	name		name to check
    510  *
    511  * Results:
    512  *	returns TRUE if the word should be expanded, FALSE otherwise
    513  */
    514 Boolean
    515 Dir_HasWildcards(const char *name)
    516 {
    517     const char *cp;
    518     Boolean wild = FALSE;
    519     int braces = 0, brackets = 0;
    520 
    521     for (cp = name; *cp; cp++) {
    522 	switch (*cp) {
    523 	case '{':
    524 	    braces++;
    525 	    wild = TRUE;
    526 	    break;
    527 	case '}':
    528 	    braces--;
    529 	    break;
    530 	case '[':
    531 	    brackets++;
    532 	    wild = TRUE;
    533 	    break;
    534 	case ']':
    535 	    brackets--;
    536 	    break;
    537 	case '?':
    538 	case '*':
    539 	    wild = TRUE;
    540 	    break;
    541 	default:
    542 	    break;
    543 	}
    544     }
    545     return wild && brackets == 0 && braces == 0;
    546 }
    547 
    548 /*-
    549  *-----------------------------------------------------------------------
    550  * DirMatchFiles --
    551  * 	Given a pattern and a CachedDir structure, see if any files
    552  *	match the pattern and add their names to the 'expansions' list if
    553  *	any do. This is incomplete -- it doesn't take care of patterns like
    554  *	src / *src / *.c properly (just *.c on any of the directories), but it
    555  *	will do for now.
    556  *
    557  * Input:
    558  *	pattern		Pattern to look for
    559  *	dir		Directory to search
    560  *	expansion	Place to store the results
    561  *
    562  * Side Effects:
    563  *	File names are added to the expansions lst. The directory will be
    564  *	fully hashed when this is done.
    565  *-----------------------------------------------------------------------
    566  */
    567 static void
    568 DirMatchFiles(const char *pattern, CachedDir *dir, StringList *expansions)
    569 {
    570     Hash_Search search;		/* Index into the directory's table */
    571     Hash_Entry *entry;		/* Current entry in the table */
    572     Boolean isDot;		/* TRUE if the directory being searched is . */
    573 
    574     isDot = (dir->name[0] == '.' && dir->name[1] == '\0');
    575 
    576     for (entry = Hash_EnumFirst(&dir->files, &search);
    577 	 entry != NULL;
    578 	 entry = Hash_EnumNext(&search))
    579     {
    580 	/*
    581 	 * See if the file matches the given pattern. Note we follow the UNIX
    582 	 * convention that dot files will only be found if the pattern
    583 	 * begins with a dot (note also that as a side effect of the hashing
    584 	 * scheme, .* won't match . or .. since they aren't hashed).
    585 	 */
    586 	if (Str_Match(entry->name, pattern) &&
    587 	    ((entry->name[0] != '.') ||
    588 	     (pattern[0] == '.')))
    589 	{
    590 	    Lst_Append(expansions,
    591 		       (isDot ? bmake_strdup(entry->name) :
    592 			str_concat3(dir->name, "/", entry->name)));
    593 	}
    594     }
    595 }
    596 
    597 /* Find the next closing brace in the string, taking nested braces into
    598  * account. */
    599 static const char *
    600 closing_brace(const char *p)
    601 {
    602     int nest = 0;
    603     while (*p != '\0') {
    604 	if (*p == '}' && nest == 0)
    605 	    break;
    606 	if (*p == '{')
    607 	    nest++;
    608 	if (*p == '}')
    609 	    nest--;
    610 	p++;
    611     }
    612     return p;
    613 }
    614 
    615 /* Find the next closing brace or comma in the string, taking nested braces
    616  * into account. */
    617 static const char *
    618 separator_comma(const char *p)
    619 {
    620     int nest = 0;
    621     while (*p != '\0') {
    622 	if ((*p == '}' || *p == ',') && nest == 0)
    623 	    break;
    624 	if (*p == '{')
    625 	    nest++;
    626 	if (*p == '}')
    627 	    nest--;
    628 	p++;
    629     }
    630     return p;
    631 }
    632 
    633 static Boolean
    634 contains_wildcard(const char *p)
    635 {
    636     for (; *p != '\0'; p++) {
    637 	switch (*p) {
    638 	case '*':
    639 	case '?':
    640 	case '{':
    641 	case '[':
    642 	    return TRUE;
    643 	}
    644     }
    645     return FALSE;
    646 }
    647 
    648 static char *
    649 concat3(const char *a, size_t a_len, const char *b, size_t b_len,
    650 	const char *c, size_t c_len)
    651 {
    652     size_t s_len = a_len + b_len + c_len;
    653     char *s = bmake_malloc(s_len + 1);
    654     memcpy(s, a, a_len);
    655     memcpy(s + a_len, b, b_len);
    656     memcpy(s + a_len + b_len, c, c_len);
    657     s[s_len] = '\0';
    658     return s;
    659 }
    660 
    661 /*-
    662  *-----------------------------------------------------------------------
    663  * DirExpandCurly --
    664  *	Expand curly braces like the C shell. Does this recursively.
    665  *	Note the special case: if after the piece of the curly brace is
    666  *	done there are no wildcard characters in the result, the result is
    667  *	placed on the list WITHOUT CHECKING FOR ITS EXISTENCE.
    668  *
    669  * Input:
    670  *	word		Entire word to expand
    671  *	brace		First curly brace in it
    672  *	path		Search path to use
    673  *	expansions	Place to store the expansions
    674  *
    675  * Results:
    676  *	None.
    677  *
    678  * Side Effects:
    679  *	The given list is filled with the expansions...
    680  *
    681  *-----------------------------------------------------------------------
    682  */
    683 static void
    684 DirExpandCurly(const char *word, const char *brace, SearchPath *path,
    685 	       StringList *expansions)
    686 {
    687     const char *prefix, *middle, *piece, *middle_end, *suffix;
    688     size_t prefix_len, suffix_len;
    689 
    690     /* Split the word into prefix '{' middle '}' suffix. */
    691 
    692     middle = brace + 1;
    693     middle_end = closing_brace(middle);
    694     if (*middle_end == '\0') {
    695 	Error("Unterminated {} clause \"%s\"", middle);
    696 	return;
    697     }
    698 
    699     prefix = word;
    700     prefix_len = (size_t)(brace - prefix);
    701     suffix = middle_end + 1;
    702     suffix_len = strlen(suffix);
    703 
    704     /* Split the middle into pieces, separated by commas. */
    705 
    706     piece = middle;
    707     while (piece < middle_end + 1) {
    708 	const char *piece_end = separator_comma(piece);
    709 	size_t piece_len = (size_t)(piece_end - piece);
    710 
    711 	char *file = concat3(prefix, prefix_len, piece, piece_len,
    712 			     suffix, suffix_len);
    713 
    714 	if (contains_wildcard(file)) {
    715 	    Dir_Expand(file, path, expansions);
    716 	    free(file);
    717 	} else {
    718 	    Lst_Append(expansions, file);
    719 	}
    720 
    721 	piece = piece_end + 1;	/* skip over the comma or closing brace */
    722     }
    723 }
    724 
    725 
    726 /*-
    727  *-----------------------------------------------------------------------
    728  * DirExpandInt --
    729  *	Internal expand routine. Passes through the directories in the
    730  *	path one by one, calling DirMatchFiles for each. NOTE: This still
    731  *	doesn't handle patterns in directories...
    732  *
    733  * Input:
    734  *	word		Word to expand
    735  *	path		Directory in which to look
    736  *	expansions	Place to store the result
    737  *
    738  * Results:
    739  *	None.
    740  *
    741  * Side Effects:
    742  *	Things are added to the expansions list.
    743  *
    744  *-----------------------------------------------------------------------
    745  */
    746 static void
    747 DirExpandInt(const char *word, SearchPath *path, StringList *expansions)
    748 {
    749     SearchPathNode *ln;
    750     for (ln = path->first; ln != NULL; ln = ln->next) {
    751 	CachedDir *dir = ln->datum;
    752 	DirMatchFiles(word, dir, expansions);
    753     }
    754 }
    755 
    756 static void
    757 DirPrintExpansions(StringList *words)
    758 {
    759     StringListNode *ln;
    760     for (ln = words->first; ln != NULL; ln = ln->next) {
    761 	const char *word = ln->datum;
    762 	fprintf(debug_file, "%s ", word);
    763     }
    764     fprintf(debug_file, "\n");
    765 }
    766 
    767 /*-
    768  *-----------------------------------------------------------------------
    769  * Dir_Expand  --
    770  *	Expand the given word into a list of words by globbing it looking
    771  *	in the directories on the given search path.
    772  *
    773  * Input:
    774  *	word		the word to expand
    775  *	path		the list of directories in which to find the
    776  *			resulting files
    777  *	expansions	the list on which to place the results
    778  *
    779  * Results:
    780  *	A list of words consisting of the files which exist along the search
    781  *	path matching the given pattern.
    782  *
    783  * Side Effects:
    784  *	Directories may be opened. Who knows?
    785  *	Undefined behavior if the word is really in read-only memory.
    786  *-----------------------------------------------------------------------
    787  */
    788 void
    789 Dir_Expand(const char *word, SearchPath *path, StringList *expansions)
    790 {
    791     const char *cp;
    792 
    793     assert(path != NULL);
    794     assert(expansions != NULL);
    795 
    796     DIR_DEBUG1("Expanding \"%s\"... ", word);
    797 
    798     cp = strchr(word, '{');
    799     if (cp) {
    800 	DirExpandCurly(word, cp, path, expansions);
    801     } else {
    802 	cp = strchr(word, '/');
    803 	if (cp) {
    804 	    /*
    805 	     * The thing has a directory component -- find the first wildcard
    806 	     * in the string.
    807 	     */
    808 	    for (cp = word; *cp; cp++) {
    809 		if (*cp == '?' || *cp == '[' || *cp == '*' || *cp == '{') {
    810 		    break;
    811 		}
    812 	    }
    813 	    if (*cp == '{') {
    814 		/*
    815 		 * This one will be fun.
    816 		 */
    817 		DirExpandCurly(word, cp, path, expansions);
    818 		return;
    819 	    } else if (*cp != '\0') {
    820 		/*
    821 		 * Back up to the start of the component
    822 		 */
    823 		while (cp > word && *cp != '/') {
    824 		    cp--;
    825 		}
    826 		if (cp != word) {
    827 		    char sc;
    828 		    char *dirpath;
    829 		    /*
    830 		     * If the glob isn't in the first component, try and find
    831 		     * all the components up to the one with a wildcard.
    832 		     */
    833 		    sc = cp[1];
    834 		    ((char *)UNCONST(cp))[1] = '\0';
    835 		    dirpath = Dir_FindFile(word, path);
    836 		    ((char *)UNCONST(cp))[1] = sc;
    837 		    /*
    838 		     * dirpath is null if can't find the leading component
    839 		     * XXX: Dir_FindFile won't find internal components.
    840 		     * i.e. if the path contains ../Etc/Object and we're
    841 		     * looking for Etc, it won't be found. Ah well.
    842 		     * Probably not important.
    843 		     */
    844 		    if (dirpath != NULL) {
    845 			char *dp = &dirpath[strlen(dirpath) - 1];
    846 			if (*dp == '/')
    847 			    *dp = '\0';
    848 			path = Lst_Init();
    849 			(void)Dir_AddDir(path, dirpath);
    850 			DirExpandInt(cp + 1, path, expansions);
    851 			Lst_Free(path);
    852 		    }
    853 		} else {
    854 		    /*
    855 		     * Start the search from the local directory
    856 		     */
    857 		    DirExpandInt(word, path, expansions);
    858 		}
    859 	    } else {
    860 		/*
    861 		 * Return the file -- this should never happen.
    862 		 */
    863 		DirExpandInt(word, path, expansions);
    864 	    }
    865 	} else {
    866 	    /*
    867 	     * First the files in dot
    868 	     */
    869 	    DirMatchFiles(word, dot, expansions);
    870 
    871 	    /*
    872 	     * Then the files in every other directory on the path.
    873 	     */
    874 	    DirExpandInt(word, path, expansions);
    875 	}
    876     }
    877     if (DEBUG(DIR))
    878 	DirPrintExpansions(expansions);
    879 }
    880 
    881 /*-
    882  *-----------------------------------------------------------------------
    883  * DirLookup  --
    884  *	Find if the file with the given name exists in the given path.
    885  *
    886  * Results:
    887  *	The path to the file or NULL. This path is guaranteed to be in a
    888  *	different part of memory than name and so may be safely free'd.
    889  *
    890  * Side Effects:
    891  *	None.
    892  *-----------------------------------------------------------------------
    893  */
    894 static char *
    895 DirLookup(CachedDir *dir, const char *name MAKE_ATTR_UNUSED, const char *cp,
    896 	  Boolean hasSlash MAKE_ATTR_UNUSED)
    897 {
    898     char *file;			/* the current filename to check */
    899 
    900     DIR_DEBUG1("   %s ...\n", dir->name);
    901 
    902     if (Hash_FindEntry(&dir->files, cp) == NULL)
    903 	return NULL;
    904 
    905     file = str_concat3(dir->name, "/", cp);
    906     DIR_DEBUG1("   returning %s\n", file);
    907     dir->hits += 1;
    908     hits += 1;
    909     return file;
    910 }
    911 
    912 
    913 /*-
    914  *-----------------------------------------------------------------------
    915  * DirLookupSubdir  --
    916  *	Find if the file with the given name exists in the given path.
    917  *
    918  * Results:
    919  *	The path to the file or NULL. This path is guaranteed to be in a
    920  *	different part of memory than name and so may be safely free'd.
    921  *
    922  * Side Effects:
    923  *	If the file is found, it is added in the modification times hash
    924  *	table.
    925  *-----------------------------------------------------------------------
    926  */
    927 static char *
    928 DirLookupSubdir(CachedDir *dir, const char *name)
    929 {
    930     struct make_stat mst;
    931     char *file;			/* the current filename to check */
    932 
    933     if (dir != dot) {
    934 	file = str_concat3(dir->name, "/", name);
    935     } else {
    936 	/*
    937 	 * Checking in dot -- DON'T put a leading ./ on the thing.
    938 	 */
    939 	file = bmake_strdup(name);
    940     }
    941 
    942     DIR_DEBUG1("checking %s ...\n", file);
    943 
    944     if (cached_stat(file, &mst) == 0) {
    945 	nearmisses += 1;
    946 	return file;
    947     }
    948     free(file);
    949     return NULL;
    950 }
    951 
    952 /*-
    953  *-----------------------------------------------------------------------
    954  * DirLookupAbs  --
    955  *	Find if the file with the given name exists in the given path.
    956  *
    957  * Results:
    958  *	The path to the file, the empty string or NULL. If the file is
    959  *	the empty string, the search should be terminated.
    960  *	This path is guaranteed to be in a different part of memory
    961  *	than name and so may be safely free'd.
    962  *
    963  * Side Effects:
    964  *	None.
    965  *-----------------------------------------------------------------------
    966  */
    967 static char *
    968 DirLookupAbs(CachedDir *dir, const char *name, const char *cp)
    969 {
    970     char *p1;			/* pointer into dir->name */
    971     const char *p2;		/* pointer into name */
    972 
    973     DIR_DEBUG1("   %s ...\n", dir->name);
    974 
    975     /*
    976      * If the file has a leading path component and that component
    977      * exactly matches the entire name of the current search
    978      * directory, we can attempt another cache lookup. And if we don't
    979      * have a hit, we can safely assume the file does not exist at all.
    980      */
    981     for (p1 = dir->name, p2 = name; *p1 && *p1 == *p2; p1++, p2++) {
    982 	continue;
    983     }
    984     if (*p1 != '\0' || p2 != cp - 1) {
    985 	return NULL;
    986     }
    987 
    988     if (Hash_FindEntry(&dir->files, cp) == NULL) {
    989 	DIR_DEBUG0("   must be here but isn't -- returning\n");
    990 	/* Return empty string: terminates search */
    991 	return bmake_strdup("");
    992     }
    993 
    994     dir->hits += 1;
    995     hits += 1;
    996     DIR_DEBUG1("   returning %s\n", name);
    997     return bmake_strdup(name);
    998 }
    999 
   1000 /*-
   1001  *-----------------------------------------------------------------------
   1002  * DirFindDot  --
   1003  *	Find the file given on "." or curdir
   1004  *
   1005  * Results:
   1006  *	The path to the file or NULL. This path is guaranteed to be in a
   1007  *	different part of memory than name and so may be safely free'd.
   1008  *
   1009  * Side Effects:
   1010  *	Hit counts change
   1011  *-----------------------------------------------------------------------
   1012  */
   1013 static char *
   1014 DirFindDot(Boolean hasSlash MAKE_ATTR_UNUSED, const char *name, const char *cp)
   1015 {
   1016 
   1017     if (Hash_FindEntry(&dot->files, cp) != NULL) {
   1018 	DIR_DEBUG0("   in '.'\n");
   1019 	hits += 1;
   1020 	dot->hits += 1;
   1021 	return bmake_strdup(name);
   1022     }
   1023     if (cur && Hash_FindEntry(&cur->files, cp) != NULL) {
   1024 	DIR_DEBUG1("   in ${.CURDIR} = %s\n", cur->name);
   1025 	hits += 1;
   1026 	cur->hits += 1;
   1027 	return str_concat3(cur->name, "/", cp);
   1028     }
   1029 
   1030     return NULL;
   1031 }
   1032 
   1033 /*-
   1034  *-----------------------------------------------------------------------
   1035  * Dir_FindFile  --
   1036  *	Find the file with the given name along the given search path.
   1037  *
   1038  * Input:
   1039  *	name		the file to find
   1040  *	path		the Lst of directories to search
   1041  *
   1042  * Results:
   1043  *	The path to the file or NULL. This path is guaranteed to be in a
   1044  *	different part of memory than name and so may be safely free'd.
   1045  *
   1046  * Side Effects:
   1047  *	If the file is found in a directory which is not on the path
   1048  *	already (either 'name' is absolute or it is a relative path
   1049  *	[ dir1/.../dirn/file ] which exists below one of the directories
   1050  *	already on the search path), its directory is added to the end
   1051  *	of the path on the assumption that there will be more files in
   1052  *	that directory later on. Sometimes this is true. Sometimes not.
   1053  *-----------------------------------------------------------------------
   1054  */
   1055 char *
   1056 Dir_FindFile(const char *name, SearchPath *path)
   1057 {
   1058     SearchPathNode *ln;
   1059     char *file;			/* the current filename to check */
   1060     CachedDir *dir;
   1061     const char *base;		/* Terminal name of file */
   1062     Boolean hasLastDot = FALSE;	/* true if we should search dot last */
   1063     Boolean hasSlash;		/* true if 'name' contains a / */
   1064     struct make_stat mst;	/* Buffer for stat, if necessary */
   1065     const char *trailing_dot = ".";
   1066 
   1067     /*
   1068      * Find the final component of the name and note whether it has a
   1069      * slash in it (the name, I mean)
   1070      */
   1071     base = strrchr(name, '/');
   1072     if (base) {
   1073 	hasSlash = TRUE;
   1074 	base += 1;
   1075     } else {
   1076 	hasSlash = FALSE;
   1077 	base = name;
   1078     }
   1079 
   1080     DIR_DEBUG1("Searching for %s ...", name);
   1081 
   1082     if (path == NULL) {
   1083 	DIR_DEBUG0("couldn't open path, file not found\n");
   1084 	misses += 1;
   1085 	return NULL;
   1086     }
   1087 
   1088     Lst_Open(path);
   1089     if ((ln = Lst_First(path)) != NULL) {
   1090 	dir = LstNode_Datum(ln);
   1091 	if (dir == dotLast) {
   1092 	    hasLastDot = TRUE;
   1093 	    DIR_DEBUG0("[dot last]...");
   1094 	}
   1095     }
   1096     DIR_DEBUG0("\n");
   1097 
   1098     /*
   1099      * If there's no leading directory components or if the leading
   1100      * directory component is exactly `./', consult the cached contents
   1101      * of each of the directories on the search path.
   1102      */
   1103     if (!hasSlash || (base - name == 2 && *name == '.')) {
   1104 	/*
   1105 	 * We look through all the directories on the path seeking one which
   1106 	 * contains the final component of the given name.  If such a beast
   1107 	 * is found, we concatenate the directory name and the final
   1108 	 * component and return the resulting string. If we don't find any
   1109 	 * such thing, we go on to phase two...
   1110 	 *
   1111 	 * No matter what, we always look for the file in the current
   1112 	 * directory before anywhere else (unless we found the magic
   1113 	 * DOTLAST path, in which case we search it last) and we *do not*
   1114 	 * add the ./ to it if it exists.
   1115 	 * This is so there are no conflicts between what the user
   1116 	 * specifies (fish.c) and what pmake finds (./fish.c).
   1117 	 */
   1118 	if (!hasLastDot && (file = DirFindDot(hasSlash, name, base)) != NULL) {
   1119 	    Lst_Close(path);
   1120 	    return file;
   1121 	}
   1122 
   1123 	while ((ln = Lst_Next(path)) != NULL) {
   1124 	    dir = LstNode_Datum(ln);
   1125 	    if (dir == dotLast)
   1126 		continue;
   1127 	    if ((file = DirLookup(dir, name, base, hasSlash)) != NULL) {
   1128 		Lst_Close(path);
   1129 		return file;
   1130 	    }
   1131 	}
   1132 
   1133 	if (hasLastDot && (file = DirFindDot(hasSlash, name, base)) != NULL) {
   1134 	    Lst_Close(path);
   1135 	    return file;
   1136 	}
   1137     }
   1138     Lst_Close(path);
   1139 
   1140     /*
   1141      * We didn't find the file on any directory in the search path.
   1142      * If the name doesn't contain a slash, that means it doesn't exist.
   1143      * If it *does* contain a slash, however, there is still hope: it
   1144      * could be in a subdirectory of one of the members of the search
   1145      * path. (eg. /usr/include and sys/types.h. The above search would
   1146      * fail to turn up types.h in /usr/include, but it *is* in
   1147      * /usr/include/sys/types.h).
   1148      * [ This no longer applies: If we find such a beast, we assume there
   1149      * will be more (what else can we assume?) and add all but the last
   1150      * component of the resulting name onto the search path (at the
   1151      * end).]
   1152      * This phase is only performed if the file is *not* absolute.
   1153      */
   1154     if (!hasSlash) {
   1155 	DIR_DEBUG0("   failed.\n");
   1156 	misses += 1;
   1157 	return NULL;
   1158     }
   1159 
   1160     if (*base == '\0') {
   1161 	/* we were given a trailing "/" */
   1162 	base = trailing_dot;
   1163     }
   1164 
   1165     if (name[0] != '/') {
   1166 	Boolean checkedDot = FALSE;
   1167 
   1168 	DIR_DEBUG0("   Trying subdirectories...\n");
   1169 
   1170 	if (!hasLastDot) {
   1171 	    if (dot) {
   1172 		checkedDot = TRUE;
   1173 		if ((file = DirLookupSubdir(dot, name)) != NULL)
   1174 		    return file;
   1175 	    }
   1176 	    if (cur && (file = DirLookupSubdir(cur, name)) != NULL)
   1177 		return file;
   1178 	}
   1179 
   1180 	Lst_Open(path);
   1181 	while ((ln = Lst_Next(path)) != NULL) {
   1182 	    dir = LstNode_Datum(ln);
   1183 	    if (dir == dotLast)
   1184 		continue;
   1185 	    if (dir == dot) {
   1186 		if (checkedDot)
   1187 		    continue;
   1188 		checkedDot = TRUE;
   1189 	    }
   1190 	    if ((file = DirLookupSubdir(dir, name)) != NULL) {
   1191 		Lst_Close(path);
   1192 		return file;
   1193 	    }
   1194 	}
   1195 	Lst_Close(path);
   1196 
   1197 	if (hasLastDot) {
   1198 	    if (dot && !checkedDot) {
   1199 		checkedDot = TRUE;
   1200 		if ((file = DirLookupSubdir(dot, name)) != NULL)
   1201 		    return file;
   1202 	    }
   1203 	    if (cur && (file = DirLookupSubdir(cur, name)) != NULL)
   1204 		return file;
   1205 	}
   1206 
   1207 	if (checkedDot) {
   1208 	    /*
   1209 	     * Already checked by the given name, since . was in the path,
   1210 	     * so no point in proceeding...
   1211 	     */
   1212 	    DIR_DEBUG0("   Checked . already, returning NULL\n");
   1213 	    return NULL;
   1214 	}
   1215 
   1216     } else { /* name[0] == '/' */
   1217 
   1218 	/*
   1219 	 * For absolute names, compare directory path prefix against the
   1220 	 * the directory path of each member on the search path for an exact
   1221 	 * match. If we have an exact match on any member of the search path,
   1222 	 * use the cached contents of that member to lookup the final file
   1223 	 * component. If that lookup fails we can safely assume that the
   1224 	 * file does not exist at all.  This is signified by DirLookupAbs()
   1225 	 * returning an empty string.
   1226 	 */
   1227 	DIR_DEBUG0("   Trying exact path matches...\n");
   1228 
   1229 	if (!hasLastDot && cur &&
   1230 	    ((file = DirLookupAbs(cur, name, base)) != NULL)) {
   1231 	    if (file[0] == '\0') {
   1232 		free(file);
   1233 		return NULL;
   1234 	    }
   1235 	    return file;
   1236 	}
   1237 
   1238 	Lst_Open(path);
   1239 	while ((ln = Lst_Next(path)) != NULL) {
   1240 	    dir = LstNode_Datum(ln);
   1241 	    if (dir == dotLast)
   1242 		continue;
   1243 	    if ((file = DirLookupAbs(dir, name, base)) != NULL) {
   1244 		Lst_Close(path);
   1245 		if (file[0] == '\0') {
   1246 		    free(file);
   1247 		    return NULL;
   1248 		}
   1249 		return file;
   1250 	    }
   1251 	}
   1252 	Lst_Close(path);
   1253 
   1254 	if (hasLastDot && cur &&
   1255 	    ((file = DirLookupAbs(cur, name, base)) != NULL)) {
   1256 	    if (file[0] == '\0') {
   1257 		free(file);
   1258 		return NULL;
   1259 	    }
   1260 	    return file;
   1261 	}
   1262     }
   1263 
   1264     /*
   1265      * Didn't find it that way, either. Sigh. Phase 3. Add its directory
   1266      * onto the search path in any case, just in case, then look for the
   1267      * thing in the hash table. If we find it, grand. We return a new
   1268      * copy of the name. Otherwise we sadly return a NULL pointer. Sigh.
   1269      * Note that if the directory holding the file doesn't exist, this will
   1270      * do an extra search of the final directory on the path. Unless something
   1271      * weird happens, this search won't succeed and life will be groovy.
   1272      *
   1273      * Sigh. We cannot add the directory onto the search path because
   1274      * of this amusing case:
   1275      * $(INSTALLDIR)/$(FILE): $(FILE)
   1276      *
   1277      * $(FILE) exists in $(INSTALLDIR) but not in the current one.
   1278      * When searching for $(FILE), we will find it in $(INSTALLDIR)
   1279      * b/c we added it here. This is not good...
   1280      */
   1281 #ifdef notdef
   1282     if (base == trailing_dot) {
   1283 	base = strrchr(name, '/');
   1284 	base += 1;
   1285     }
   1286     base[-1] = '\0';
   1287     (void)Dir_AddDir(path, name);
   1288     base[-1] = '/';
   1289 
   1290     bigmisses += 1;
   1291     ln = Lst_Last(path);
   1292     if (ln == NULL) {
   1293 	return NULL;
   1294     } else {
   1295 	dir = LstNode_Datum(ln);
   1296     }
   1297 
   1298     if (Hash_FindEntry(&dir->files, base) != NULL) {
   1299 	return bmake_strdup(name);
   1300     } else {
   1301 	return NULL;
   1302     }
   1303 #else /* !notdef */
   1304     DIR_DEBUG1("   Looking for \"%s\" ...\n", name);
   1305 
   1306     bigmisses += 1;
   1307     if (cached_stat(name, &mst) == 0) {
   1308 	return bmake_strdup(name);
   1309     }
   1310 
   1311     DIR_DEBUG0("   failed. Returning NULL\n");
   1312     return NULL;
   1313 #endif /* notdef */
   1314 }
   1315 
   1316 
   1317 /*-
   1318  *-----------------------------------------------------------------------
   1319  * Dir_FindHereOrAbove  --
   1320  *	search for a path starting at a given directory and then working
   1321  *	our way up towards the root.
   1322  *
   1323  * Input:
   1324  *	here		starting directory
   1325  *	search_path	the path we are looking for
   1326  *	result		the result of a successful search is placed here
   1327  *	result_len	the length of the result buffer
   1328  *			(typically MAXPATHLEN + 1)
   1329  *
   1330  * Results:
   1331  *	0 on failure, 1 on success [in which case the found path is put
   1332  *	in the result buffer].
   1333  *
   1334  * Side Effects:
   1335  *-----------------------------------------------------------------------
   1336  */
   1337 Boolean
   1338 Dir_FindHereOrAbove(const char *here, const char *search_path,
   1339 		    char *result, int result_len)
   1340 {
   1341     struct make_stat mst;
   1342     char dirbase[MAXPATHLEN + 1], *dirbase_end;
   1343     char try[MAXPATHLEN + 1], *try_end;
   1344 
   1345     /* copy out our starting point */
   1346     snprintf(dirbase, sizeof(dirbase), "%s", here);
   1347     dirbase_end = dirbase + strlen(dirbase);
   1348 
   1349     /* loop until we determine a result */
   1350     while (TRUE) {
   1351 
   1352 	/* try and stat(2) it ... */
   1353 	snprintf(try, sizeof(try), "%s/%s", dirbase, search_path);
   1354 	if (cached_stat(try, &mst) != -1) {
   1355 	    /*
   1356 	     * success!  if we found a file, chop off
   1357 	     * the filename so we return a directory.
   1358 	     */
   1359 	    if ((mst.mst_mode & S_IFMT) != S_IFDIR) {
   1360 		try_end = try + strlen(try);
   1361 		while (try_end > try && *try_end != '/')
   1362 		    try_end--;
   1363 		if (try_end > try)
   1364 		    *try_end = '\0';	/* chop! */
   1365 	    }
   1366 
   1367 	    snprintf(result, result_len, "%s", try);
   1368 	    return TRUE;
   1369 	}
   1370 
   1371 	/*
   1372 	 * nope, we didn't find it.  if we used up dirbase we've
   1373 	 * reached the root and failed.
   1374 	 */
   1375 	if (dirbase_end == dirbase)
   1376 	    break;		/* failed! */
   1377 
   1378 	/*
   1379 	 * truncate dirbase from the end to move up a dir
   1380 	 */
   1381 	while (dirbase_end > dirbase && *dirbase_end != '/')
   1382 	    dirbase_end--;
   1383 	*dirbase_end = '\0';	/* chop! */
   1384 
   1385     } /* while (TRUE) */
   1386 
   1387     return FALSE;
   1388 }
   1389 
   1390 /*-
   1391  *-----------------------------------------------------------------------
   1392  * Dir_MTime  --
   1393  *	Find the modification time of the file described by gn along the
   1394  *	search path dirSearchPath.
   1395  *
   1396  * Input:
   1397  *	gn		the file whose modification time is desired
   1398  *
   1399  * Results:
   1400  *	The modification time or 0 if it doesn't exist
   1401  *
   1402  * Side Effects:
   1403  *	The modification time is placed in the node's mtime slot.
   1404  *	If the node didn't have a path entry before, and Dir_FindFile
   1405  *	found one for it, the full name is placed in the path slot.
   1406  *-----------------------------------------------------------------------
   1407  */
   1408 int
   1409 Dir_MTime(GNode *gn, Boolean recheck)
   1410 {
   1411     char *fullName;		/* the full pathname of name */
   1412     struct make_stat mst;	/* buffer for finding the mod time */
   1413 
   1414     if (gn->type & OP_ARCHV) {
   1415 	return Arch_MTime(gn);
   1416     } else if (gn->type & OP_PHONY) {
   1417 	gn->mtime = 0;
   1418 	return 0;
   1419     } else if (gn->path == NULL) {
   1420 	if (gn->type & OP_NOPATH)
   1421 	    fullName = NULL;
   1422 	else {
   1423 	    fullName = Dir_FindFile(gn->name, Suff_FindPath(gn));
   1424 	    if (fullName == NULL && gn->flags & FROM_DEPEND &&
   1425 		!Lst_IsEmpty(gn->implicitParents)) {
   1426 		char *cp;
   1427 
   1428 		cp = strrchr(gn->name, '/');
   1429 		if (cp) {
   1430 		    /*
   1431 		     * This is an implied source, and it may have moved,
   1432 		     * see if we can find it via the current .PATH
   1433 		     */
   1434 		    cp++;
   1435 
   1436 		    fullName = Dir_FindFile(cp, Suff_FindPath(gn));
   1437 		    if (fullName) {
   1438 			/*
   1439 			 * Put the found file in gn->path
   1440 			 * so that we give that to the compiler.
   1441 			 */
   1442 			gn->path = bmake_strdup(fullName);
   1443 			if (!Job_RunTarget(".STALE", gn->fname))
   1444 			    fprintf(stdout,
   1445 				    "%s: %s, %d: ignoring stale %s for %s, "
   1446 				    "found %s\n", progname, gn->fname,
   1447 				    gn->lineno,
   1448 				    makeDependfile, gn->name, fullName);
   1449 		    }
   1450 		}
   1451 	    }
   1452 	    DIR_DEBUG2("Found '%s' as '%s'\n",
   1453 		       gn->name, fullName ? fullName : "(not found)");
   1454 	}
   1455     } else {
   1456 	fullName = gn->path;
   1457     }
   1458 
   1459     if (fullName == NULL) {
   1460 	fullName = bmake_strdup(gn->name);
   1461     }
   1462 
   1463     if (cached_stats(&mtimes, fullName, &mst, recheck ? CST_UPDATE : 0) < 0) {
   1464 	if (gn->type & OP_MEMBER) {
   1465 	    if (fullName != gn->path)
   1466 		free(fullName);
   1467 	    return Arch_MemMTime(gn);
   1468 	} else {
   1469 	    mst.mst_mtime = 0;
   1470 	}
   1471     }
   1472 
   1473     if (fullName && gn->path == NULL) {
   1474 	gn->path = fullName;
   1475     }
   1476 
   1477     gn->mtime = mst.mst_mtime;
   1478     return gn->mtime;
   1479 }
   1480 
   1481 /*-
   1482  *-----------------------------------------------------------------------
   1483  * Dir_AddDir --
   1484  *	Add the given name to the end of the given path. The order of
   1485  *	the arguments is backwards so ParseDoDependency can do a
   1486  *	Lst_ForEachUntil of its list of paths...
   1487  *
   1488  * Input:
   1489  *	path		the path to which the directory should be
   1490  *			added
   1491  *			XXX: Why would this ever be NULL, and what does
   1492  *			that mean?
   1493  *	name		the name of the directory to add
   1494  *
   1495  * Results:
   1496  *	none
   1497  *
   1498  * Side Effects:
   1499  *	A structure is added to the list and the directory is
   1500  *	read and hashed.
   1501  *-----------------------------------------------------------------------
   1502  */
   1503 CachedDir *
   1504 Dir_AddDir(SearchPath *path, const char *name)
   1505 {
   1506     SearchPathNode *ln = NULL;
   1507     CachedDir *dir = NULL;	/* the added directory */
   1508     DIR *d;
   1509     struct dirent *dp;
   1510 
   1511     if (path != NULL && strcmp(name, ".DOTLAST") == 0) {
   1512 	ln = Lst_Find(path, DirFindName, name);
   1513 	if (ln != NULL)
   1514 	    return LstNode_Datum(ln);
   1515 
   1516 	dotLast->refCount++;
   1517 	Lst_Prepend(path, dotLast);
   1518     }
   1519 
   1520     if (path != NULL)
   1521 	ln = Lst_Find(openDirectories, DirFindName, name);
   1522     if (ln != NULL) {
   1523 	dir = LstNode_Datum(ln);
   1524 	if (Lst_FindDatum(path, dir) == NULL) {
   1525 	    dir->refCount += 1;
   1526 	    Lst_Append(path, dir);
   1527 	}
   1528 	return dir;
   1529     }
   1530 
   1531     DIR_DEBUG1("Caching %s ...", name);
   1532 
   1533     if ((d = opendir(name)) != NULL) {
   1534 	dir = bmake_malloc(sizeof(CachedDir));
   1535 	dir->name = bmake_strdup(name);
   1536 	dir->hits = 0;
   1537 	dir->refCount = 1;
   1538 	Hash_InitTable(&dir->files);
   1539 
   1540 	while ((dp = readdir(d)) != NULL) {
   1541 #if defined(sun) && defined(d_ino) /* d_ino is a sunos4 #define for d_fileno */
   1542 	    /*
   1543 	     * The sun directory library doesn't check for a 0 inode
   1544 	     * (0-inode slots just take up space), so we have to do
   1545 	     * it ourselves.
   1546 	     */
   1547 	    if (dp->d_fileno == 0) {
   1548 		continue;
   1549 	    }
   1550 #endif /* sun && d_ino */
   1551 	    (void)Hash_CreateEntry(&dir->files, dp->d_name, NULL);
   1552 	}
   1553 	(void)closedir(d);
   1554 	Lst_Append(openDirectories, dir);
   1555 	if (path != NULL)
   1556 	    Lst_Append(path, dir);
   1557     }
   1558     DIR_DEBUG0("done\n");
   1559     return dir;
   1560 }
   1561 
   1562 /*-
   1563  *-----------------------------------------------------------------------
   1564  * Dir_CopyDir --
   1565  *	Callback function for duplicating a search path via Lst_Copy.
   1566  *	Ups the reference count for the directory.
   1567  *
   1568  * Results:
   1569  *	Returns the Path it was given.
   1570  *-----------------------------------------------------------------------
   1571  */
   1572 void *
   1573 Dir_CopyDir(void *p)
   1574 {
   1575     CachedDir *dir = (CachedDir *)p;
   1576     dir->refCount += 1;
   1577 
   1578     return p;
   1579 }
   1580 
   1581 /*-
   1582  *-----------------------------------------------------------------------
   1583  * Dir_MakeFlags --
   1584  *	Make a string by taking all the directories in the given search
   1585  *	path and preceding them by the given flag. Used by the suffix
   1586  *	module to create variables for compilers based on suffix search
   1587  *	paths.
   1588  *
   1589  * Input:
   1590  *	flag		flag which should precede each directory
   1591  *	path		list of directories
   1592  *
   1593  * Results:
   1594  *	The string mentioned above. Note that there is no space between
   1595  *	the given flag and each directory. The empty string is returned if
   1596  *	Things don't go well.
   1597  *
   1598  * Side Effects:
   1599  *	None
   1600  *-----------------------------------------------------------------------
   1601  */
   1602 char *
   1603 Dir_MakeFlags(const char *flag, SearchPath *path)
   1604 {
   1605     Buffer buf;
   1606     SearchPathNode *ln;
   1607 
   1608     Buf_Init(&buf, 0);
   1609 
   1610     if (path != NULL) {
   1611 	for (ln = path->first; ln != NULL; ln = ln->next) {
   1612 	    CachedDir *dir = ln->datum;
   1613 	    Buf_AddStr(&buf, " ");
   1614 	    Buf_AddStr(&buf, flag);
   1615 	    Buf_AddStr(&buf, dir->name);
   1616 	}
   1617     }
   1618 
   1619     return Buf_Destroy(&buf, FALSE);
   1620 }
   1621 
   1622 /*-
   1623  *-----------------------------------------------------------------------
   1624  * Dir_Destroy --
   1625  *	Nuke a directory descriptor, if possible. Callback procedure
   1626  *	for the suffixes module when destroying a search path.
   1627  *
   1628  * Input:
   1629  *	dirp		The directory descriptor to nuke
   1630  *
   1631  * Results:
   1632  *	None.
   1633  *
   1634  * Side Effects:
   1635  *	If no other path references this directory (refCount == 0),
   1636  *	the CachedDir and all its data are freed.
   1637  *
   1638  *-----------------------------------------------------------------------
   1639  */
   1640 void
   1641 Dir_Destroy(void *dirp)
   1642 {
   1643     CachedDir *dir = dirp;
   1644     dir->refCount -= 1;
   1645 
   1646     if (dir->refCount == 0) {
   1647 	CachedDirListNode *node;
   1648 
   1649 	node = Lst_FindDatum(openDirectories, dir);
   1650 	if (node != NULL)
   1651 	    Lst_Remove(openDirectories, node);
   1652 
   1653 	Hash_DeleteTable(&dir->files);
   1654 	free(dir->name);
   1655 	free(dir);
   1656     }
   1657 }
   1658 
   1659 /*-
   1660  *-----------------------------------------------------------------------
   1661  * Dir_ClearPath --
   1662  *	Clear out all elements of the given search path. This is different
   1663  *	from destroying the list, notice.
   1664  *
   1665  * Input:
   1666  *	path		Path to clear
   1667  *
   1668  * Results:
   1669  *	None.
   1670  *
   1671  * Side Effects:
   1672  *	The path is set to the empty list.
   1673  *
   1674  *-----------------------------------------------------------------------
   1675  */
   1676 void
   1677 Dir_ClearPath(SearchPath *path)
   1678 {
   1679     while (!Lst_IsEmpty(path)) {
   1680 	CachedDir *dir = Lst_Dequeue(path);
   1681 	Dir_Destroy(dir);
   1682     }
   1683 }
   1684 
   1685 
   1686 /*-
   1687  *-----------------------------------------------------------------------
   1688  * Dir_Concat --
   1689  *	Concatenate two paths, adding the second to the end of the first.
   1690  *	Makes sure to avoid duplicates.
   1691  *
   1692  * Input:
   1693  *	path1		Dest
   1694  *	path2		Source
   1695  *
   1696  * Results:
   1697  *	None
   1698  *
   1699  * Side Effects:
   1700  *	Reference counts for added dirs are upped.
   1701  *
   1702  *-----------------------------------------------------------------------
   1703  */
   1704 void
   1705 Dir_Concat(SearchPath *path1, SearchPath *path2)
   1706 {
   1707     SearchPathNode *ln;
   1708     CachedDir *dir;
   1709 
   1710     for (ln = Lst_First(path2); ln != NULL; ln = LstNode_Next(ln)) {
   1711 	dir = LstNode_Datum(ln);
   1712 	if (Lst_FindDatum(path1, dir) == NULL) {
   1713 	    dir->refCount += 1;
   1714 	    Lst_Append(path1, dir);
   1715 	}
   1716     }
   1717 }
   1718 
   1719 static int
   1720 percentage(int num, int den)
   1721 {
   1722     return den != 0 ? num * 100 / den : 0;
   1723 }
   1724 
   1725 /********** DEBUG INFO **********/
   1726 void
   1727 Dir_PrintDirectories(void)
   1728 {
   1729     CachedDirListNode *ln;
   1730 
   1731     fprintf(debug_file, "#*** Directory Cache:\n");
   1732     fprintf(debug_file,
   1733 	    "# Stats: %d hits %d misses %d near misses %d losers (%d%%)\n",
   1734 	    hits, misses, nearmisses, bigmisses,
   1735 	    percentage(hits, hits + bigmisses + nearmisses));
   1736     fprintf(debug_file, "# %-20s referenced\thits\n", "directory");
   1737 
   1738     for (ln = openDirectories->first; ln != NULL; ln = ln->next) {
   1739 	CachedDir *dir = ln->datum;
   1740 	fprintf(debug_file, "# %-20s %10d\t%4d\n", dir->name, dir->refCount,
   1741 		dir->hits);
   1742     }
   1743 }
   1744 
   1745 void
   1746 Dir_PrintPath(SearchPath *path)
   1747 {
   1748     SearchPathNode *node;
   1749     for (node = Lst_First(path); node != NULL; node = LstNode_Next(node)) {
   1750 	const CachedDir *dir = LstNode_Datum(node);
   1751 	fprintf(debug_file, "%s ", dir->name);
   1752     }
   1753 }
   1754