Home | History | Annotate | Line # | Download | only in make
dir.c revision 1.42
      1 /*	$NetBSD: dir.c,v 1.42 2004/07/01 04:39:30 jmc 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 #ifndef MAKE_NATIVE
     73 static char rcsid[] = "$NetBSD: dir.c,v 1.42 2004/07/01 04:39:30 jmc Exp $";
     74 #else
     75 #include <sys/cdefs.h>
     76 #ifndef lint
     77 #if 0
     78 static char sccsid[] = "@(#)dir.c	8.2 (Berkeley) 1/2/94";
     79 #else
     80 __RCSID("$NetBSD: dir.c,v 1.42 2004/07/01 04:39:30 jmc Exp $");
     81 #endif
     82 #endif /* not lint */
     83 #endif
     84 
     85 /*-
     86  * dir.c --
     87  *	Directory searching using wildcards and/or normal names...
     88  *	Used both for source wildcarding in the Makefile and for finding
     89  *	implicit sources.
     90  *
     91  * The interface for this module is:
     92  *	Dir_Init  	    Initialize the module.
     93  *
     94  *	Dir_InitCur	    Set the cur Path.
     95  *
     96  *	Dir_InitDot	    Set the dot Path.
     97  *
     98  *	Dir_End  	    Cleanup the module.
     99  *
    100  *	Dir_SetPATH	    Set ${.PATH} to reflect state of dirSearchPath.
    101  *
    102  *	Dir_HasWildcards    Returns TRUE if the name given it needs to
    103  *	    	  	    be wildcard-expanded.
    104  *
    105  *	Dir_Expand	    Given a pattern and a path, return a Lst of names
    106  *	    	  	    which match the pattern on the search path.
    107  *
    108  *	Dir_FindFile	    Searches for a file on a given search path.
    109  *	    	  	    If it exists, the entire path is returned.
    110  *	    	  	    Otherwise NULL is returned.
    111  *
    112  *	Dir_FindHereOrAbove Search for a path in the current directory and
    113  *			    then all the directories above it in turn until
    114  *			    the path is found or we reach the root ("/").
    115  *
    116  *	Dir_MTime 	    Return the modification time of a node. The file
    117  *	    	  	    is searched for along the default search path.
    118  *	    	  	    The path and mtime fields of the node are filled
    119  *	    	  	    in.
    120  *
    121  *	Dir_AddDir	    Add a directory to a search path.
    122  *
    123  *	Dir_MakeFlags	    Given a search path and a command flag, create
    124  *	    	  	    a string with each of the directories in the path
    125  *	    	  	    preceded by the command flag and all of them
    126  *	    	  	    separated by a space.
    127  *
    128  *	Dir_Destroy	    Destroy an element of a search path. Frees up all
    129  *	    	  	    things that can be freed for the element as long
    130  *	    	  	    as the element is no longer referenced by any other
    131  *	    	  	    search path.
    132  *	Dir_ClearPath	    Resets a search path to the empty list.
    133  *
    134  * For debugging:
    135  *	Dir_PrintDirectories	Print stats about the directory cache.
    136  */
    137 
    138 #include <sys/types.h>
    139 #include <sys/stat.h>
    140 
    141 #include <dirent.h>
    142 #include <errno.h>
    143 #include <stdio.h>
    144 
    145 #include "make.h"
    146 #include "hash.h"
    147 #include "dir.h"
    148 
    149 /*
    150  *	A search path consists of a Lst of Path structures. A Path structure
    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 Path 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 Lst          dirSearchPath;	/* main search path */
    220 
    221 static Lst   openDirectories;	/* the list of all open directories */
    222 
    223 /*
    224  * Variables for gathering statistics on the efficiency of the hashing
    225  * mechanism.
    226  */
    227 static int    hits,	      /* Found in directory cache */
    228 	      misses,	      /* Sad, but not evil misses */
    229 	      nearmisses,     /* Found under search path */
    230 	      bigmisses;      /* Sought by itself */
    231 
    232 static Path    	  *dot;	    /* contents of current directory */
    233 static Path    	  *cur;	    /* contents of current directory, if not dot */
    234 static Path	  *dotLast; /* a fake path entry indicating we need to
    235 			     * look for . last */
    236 static Hash_Table mtimes;   /* Results of doing a last-resort stat in
    237 			     * Dir_FindFile -- if we have to go to the
    238 			     * system to find the file, we might as well
    239 			     * have its mtime on record. XXX: If this is done
    240 			     * way early, there's a chance other rules will
    241 			     * have already updated the file, in which case
    242 			     * we'll update it again. Generally, there won't
    243 			     * be two rules to update a single file, so this
    244 			     * should be ok, but... */
    245 
    246 
    247 static int DirFindName(ClientData, ClientData);
    248 static int DirMatchFiles(const char *, Path *, Lst);
    249 static void DirExpandCurly(const char *, const char *, Lst, Lst);
    250 static void DirExpandInt(const char *, Lst, Lst);
    251 static int DirPrintWord(ClientData, ClientData);
    252 static int DirPrintDir(ClientData, ClientData);
    253 static char *DirLookup(Path *, const char *, const char *, Boolean);
    254 static char *DirLookupSubdir(Path *, const char *);
    255 static char *DirFindDot(Boolean, const char *, const char *);
    256 static char *DirLookupAbs(Path *, const char *, const char *);
    257 
    258 /*-
    259  *-----------------------------------------------------------------------
    260  * Dir_Init --
    261  *	initialize things for this module
    262  *
    263  * Results:
    264  *	none
    265  *
    266  * Side Effects:
    267  *	some directories may be opened.
    268  *-----------------------------------------------------------------------
    269  */
    270 void
    271 Dir_Init (const char *cdname)
    272 {
    273     dirSearchPath = Lst_Init (FALSE);
    274     openDirectories = Lst_Init (FALSE);
    275     Hash_InitTable(&mtimes, 0);
    276 
    277     Dir_InitCur(cdname);
    278 
    279     dotLast = (Path *) emalloc (sizeof (Path));
    280     dotLast->refCount = 1;
    281     dotLast->hits = 0;
    282     dotLast->name = estrdup(".DOTLAST");
    283     Hash_InitTable (&dotLast->files, -1);
    284 }
    285 
    286 /*
    287  * Called by Dir_Init() and whenever .CURDIR is assigned to.
    288  */
    289 void
    290 Dir_InitCur (const char *cdname)
    291 {
    292     Path *p;
    293 
    294     if (cdname != NULL) {
    295 	/*
    296 	 * Our build directory is not the same as our source directory.
    297 	 * Keep this one around too.
    298 	 */
    299 	if ((p = Dir_AddDir(NULL, cdname))) {
    300 	    p->refCount += 1;
    301 	    if (cur && cur != p) {
    302 		/*
    303 		 * We've been here before, cleanup.
    304 		 */
    305 		cur->refCount -= 1;
    306 		Dir_Destroy((ClientData) cur);
    307 	    }
    308 	    cur = p;
    309 	}
    310     }
    311 }
    312 
    313 /*-
    314  *-----------------------------------------------------------------------
    315  * Dir_InitDot --
    316  *	(re)initialize "dot" (current/object directory) path hash
    317  *
    318  * Results:
    319  *	none
    320  *
    321  * Side Effects:
    322  *	some directories may be opened.
    323  *-----------------------------------------------------------------------
    324  */
    325 void
    326 Dir_InitDot(void)
    327 {
    328     if (dot != NULL) {
    329 	LstNode ln;
    330 
    331 	/* Remove old entry from openDirectories, but do not destroy. */
    332 	ln = Lst_Member (openDirectories, (ClientData)dot);
    333 	(void) Lst_Remove (openDirectories, ln);
    334     }
    335 
    336     dot = Dir_AddDir (NULL, ".");
    337 
    338     if (dot == NULL) {
    339 	Error("Cannot open `.' (%s)", strerror(errno));
    340 	exit(1);
    341     }
    342 
    343     /*
    344      * We always need to have dot around, so we increment its reference count
    345      * to make sure it's not destroyed.
    346      */
    347     dot->refCount += 1;
    348     Dir_SetPATH();			/* initialize */
    349 }
    350 
    351 /*-
    352  *-----------------------------------------------------------------------
    353  * Dir_End --
    354  *	cleanup things for this module
    355  *
    356  * Results:
    357  *	none
    358  *
    359  * Side Effects:
    360  *	none
    361  *-----------------------------------------------------------------------
    362  */
    363 void
    364 Dir_End(void)
    365 {
    366 #ifdef CLEANUP
    367     if (cur) {
    368 	cur->refCount -= 1;
    369 	Dir_Destroy((ClientData) cur);
    370     }
    371     dot->refCount -= 1;
    372     dotLast->refCount -= 1;
    373     Dir_Destroy((ClientData) dotLast);
    374     Dir_Destroy((ClientData) dot);
    375     Dir_ClearPath(dirSearchPath);
    376     Lst_Destroy(dirSearchPath, NOFREE);
    377     Dir_ClearPath(openDirectories);
    378     Lst_Destroy(openDirectories, NOFREE);
    379     Hash_DeleteTable(&mtimes);
    380 #endif
    381 }
    382 
    383 /*
    384  * We want ${.PATH} to indicate the order in which we will actually
    385  * search, so we rebuild it after any .PATH: target.
    386  * This is the simplest way to deal with the effect of .DOTLAST.
    387  */
    388 void
    389 Dir_SetPATH (void)
    390 {
    391     LstNode       ln;		/* a list element */
    392     Path *p;
    393     Boolean	  hasLastDot = FALSE;	/* true we should search dot last */
    394 
    395     Var_Delete(".PATH", VAR_GLOBAL);
    396 
    397     if (Lst_Open (dirSearchPath) == SUCCESS) {
    398 	if ((ln = Lst_First (dirSearchPath)) != NILLNODE) {
    399 	    p = (Path *) Lst_Datum (ln);
    400 	    if (p == dotLast) {
    401 		hasLastDot = TRUE;
    402 		Var_Append(".PATH", dotLast->name, VAR_GLOBAL);
    403 	    }
    404 	}
    405 
    406 	if (!hasLastDot) {
    407 	    if (dot)
    408 		Var_Append(".PATH", dot->name, VAR_GLOBAL);
    409 	    if (cur)
    410 		Var_Append(".PATH", cur->name, VAR_GLOBAL);
    411 	}
    412 
    413 	while ((ln = Lst_Next (dirSearchPath)) != NILLNODE) {
    414 	    p = (Path *) Lst_Datum (ln);
    415 	    if (p == dotLast)
    416 		continue;
    417 	    if (p == dot && hasLastDot)
    418 		continue;
    419 	    Var_Append(".PATH", p->name, VAR_GLOBAL);
    420 	}
    421 
    422 	if (hasLastDot) {
    423 	    if (dot)
    424 		Var_Append(".PATH", dot->name, VAR_GLOBAL);
    425 	    if (cur)
    426 		Var_Append(".PATH", cur->name, VAR_GLOBAL);
    427 	}
    428 	Lst_Close(dirSearchPath);
    429     }
    430 }
    431 
    432 /*-
    433  *-----------------------------------------------------------------------
    434  * DirFindName --
    435  *	See if the Path structure describes the same directory as the
    436  *	given one by comparing their names. Called from Dir_AddDir via
    437  *	Lst_Find when searching the list of open directories.
    438  *
    439  * Input:
    440  *	p		Current name
    441  *	dname		Desired name
    442  *
    443  * Results:
    444  *	0 if it is the same. Non-zero otherwise
    445  *
    446  * Side Effects:
    447  *	None
    448  *-----------------------------------------------------------------------
    449  */
    450 static int
    451 DirFindName(ClientData p, ClientData dname)
    452 {
    453     return (strcmp (((Path *)p)->name, (char *) dname));
    454 }
    455 
    456 /*-
    457  *-----------------------------------------------------------------------
    458  * Dir_HasWildcards  --
    459  *	see if the given name has any wildcard characters in it
    460  *	be careful not to expand unmatching brackets or braces.
    461  *	XXX: This code is not 100% correct. ([^]] fails etc.)
    462  *	I really don't think that make(1) should be expanding
    463  *	patterns, because then you have to set a mechanism for
    464  *	escaping the expansion!
    465  *
    466  * Input:
    467  *	name		name to check
    468  *
    469  * Results:
    470  *	returns TRUE if the word should be expanded, FALSE otherwise
    471  *
    472  * Side Effects:
    473  *	none
    474  *-----------------------------------------------------------------------
    475  */
    476 Boolean
    477 Dir_HasWildcards(char *name)
    478 {
    479     char *cp;
    480     int wild = 0, brace = 0, bracket = 0;
    481 
    482     for (cp = name; *cp; cp++) {
    483 	switch(*cp) {
    484 	case '{':
    485 		brace++;
    486 		wild = 1;
    487 		break;
    488 	case '}':
    489 		brace--;
    490 		break;
    491 	case '[':
    492 		bracket++;
    493 		wild = 1;
    494 		break;
    495 	case ']':
    496 		bracket--;
    497 		break;
    498 	case '?':
    499 	case '*':
    500 		wild = 1;
    501 		break;
    502 	default:
    503 		break;
    504 	}
    505     }
    506     return wild && bracket == 0 && brace == 0;
    507 }
    508 
    509 /*-
    510  *-----------------------------------------------------------------------
    511  * DirMatchFiles --
    512  * 	Given a pattern and a Path structure, see if any files
    513  *	match the pattern and add their names to the 'expansions' list if
    514  *	any do. This is incomplete -- it doesn't take care of patterns like
    515  *	src / *src / *.c properly (just *.c on any of the directories), but it
    516  *	will do for now.
    517  *
    518  * Input:
    519  *	pattern		Pattern to look for
    520  *	p		Directory to search
    521  *	expansion	Place to store the results
    522  *
    523  * Results:
    524  *	Always returns 0
    525  *
    526  * Side Effects:
    527  *	File names are added to the expansions lst. The directory will be
    528  *	fully hashed when this is done.
    529  *-----------------------------------------------------------------------
    530  */
    531 static int
    532 DirMatchFiles(const char *pattern, Path *p, Lst expansions)
    533 {
    534     Hash_Search	  search;   	/* Index into the directory's table */
    535     Hash_Entry	  *entry;   	/* Current entry in the table */
    536     Boolean 	  isDot;    	/* TRUE if the directory being searched is . */
    537 
    538     isDot = (*p->name == '.' && p->name[1] == '\0');
    539 
    540     for (entry = Hash_EnumFirst(&p->files, &search);
    541 	 entry != (Hash_Entry *)NULL;
    542 	 entry = Hash_EnumNext(&search))
    543     {
    544 	/*
    545 	 * See if the file matches the given pattern. Note we follow the UNIX
    546 	 * convention that dot files will only be found if the pattern
    547 	 * begins with a dot (note also that as a side effect of the hashing
    548 	 * scheme, .* won't match . or .. since they aren't hashed).
    549 	 */
    550 	if (Str_Match(entry->name, pattern) &&
    551 	    ((entry->name[0] != '.') ||
    552 	     (pattern[0] == '.')))
    553 	{
    554 	    (void)Lst_AtEnd(expansions,
    555 			    (isDot ? estrdup(entry->name) :
    556 			     str_concat(p->name, entry->name,
    557 					STR_ADDSLASH)));
    558 	}
    559     }
    560     return (0);
    561 }
    562 
    563 /*-
    564  *-----------------------------------------------------------------------
    565  * DirExpandCurly --
    566  *	Expand curly braces like the C shell. Does this recursively.
    567  *	Note the special case: if after the piece of the curly brace is
    568  *	done there are no wildcard characters in the result, the result is
    569  *	placed on the list WITHOUT CHECKING FOR ITS EXISTENCE.
    570  *
    571  * Input:
    572  *	word		Entire word to expand
    573  *	brace		First curly brace in it
    574  *	path		Search path to use
    575  *	expansions	Place to store the expansions
    576  *
    577  * Results:
    578  *	None.
    579  *
    580  * Side Effects:
    581  *	The given list is filled with the expansions...
    582  *
    583  *-----------------------------------------------------------------------
    584  */
    585 static void
    586 DirExpandCurly(const char *word, const char *brace, Lst path, Lst expansions)
    587 {
    588     const char   *end;	    	/* Character after the closing brace */
    589     const char   *cp;	    	/* Current position in brace clause */
    590     const char   *start;   	/* Start of current piece of brace clause */
    591     int	    	  bracelevel;	/* Number of braces we've seen. If we see a
    592 				 * right brace when this is 0, we've hit the
    593 				 * end of the clause. */
    594     char    	 *file;    	/* Current expansion */
    595     int	    	  otherLen; 	/* The length of the other pieces of the
    596 				 * expansion (chars before and after the
    597 				 * clause in 'word') */
    598     char    	 *cp2;	    	/* Pointer for checking for wildcards in
    599 				 * expansion before calling Dir_Expand */
    600 
    601     start = brace+1;
    602 
    603     /*
    604      * Find the end of the brace clause first, being wary of nested brace
    605      * clauses.
    606      */
    607     for (end = start, bracelevel = 0; *end != '\0'; end++) {
    608 	if (*end == '{') {
    609 	    bracelevel++;
    610 	} else if ((*end == '}') && (bracelevel-- == 0)) {
    611 	    break;
    612 	}
    613     }
    614     if (*end == '\0') {
    615 	Error("Unterminated {} clause \"%s\"", start);
    616 	return;
    617     } else {
    618 	end++;
    619     }
    620     otherLen = brace - word + strlen(end);
    621 
    622     for (cp = start; cp < end; cp++) {
    623 	/*
    624 	 * Find the end of this piece of the clause.
    625 	 */
    626 	bracelevel = 0;
    627 	while (*cp != ',') {
    628 	    if (*cp == '{') {
    629 		bracelevel++;
    630 	    } else if ((*cp == '}') && (bracelevel-- <= 0)) {
    631 		break;
    632 	    }
    633 	    cp++;
    634 	}
    635 	/*
    636 	 * Allocate room for the combination and install the three pieces.
    637 	 */
    638 	file = emalloc(otherLen + cp - start + 1);
    639 	if (brace != word) {
    640 	    strncpy(file, word, brace-word);
    641 	}
    642 	if (cp != start) {
    643 	    strncpy(&file[brace-word], start, cp-start);
    644 	}
    645 	strcpy(&file[(brace-word)+(cp-start)], end);
    646 
    647 	/*
    648 	 * See if the result has any wildcards in it. If we find one, call
    649 	 * Dir_Expand right away, telling it to place the result on our list
    650 	 * of expansions.
    651 	 */
    652 	for (cp2 = file; *cp2 != '\0'; cp2++) {
    653 	    switch(*cp2) {
    654 	    case '*':
    655 	    case '?':
    656 	    case '{':
    657 	    case '[':
    658 		Dir_Expand(file, path, expansions);
    659 		goto next;
    660 	    }
    661 	}
    662 	if (*cp2 == '\0') {
    663 	    /*
    664 	     * Hit the end w/o finding any wildcards, so stick the expansion
    665 	     * on the end of the list.
    666 	     */
    667 	    (void)Lst_AtEnd(expansions, file);
    668 	} else {
    669 	next:
    670 	    free(file);
    671 	}
    672 	start = cp+1;
    673     }
    674 }
    675 
    676 
    677 /*-
    678  *-----------------------------------------------------------------------
    679  * DirExpandInt --
    680  *	Internal expand routine. Passes through the directories in the
    681  *	path one by one, calling DirMatchFiles for each. NOTE: This still
    682  *	doesn't handle patterns in directories...
    683  *
    684  * Input:
    685  *	word		Word to expand
    686  *	path		Path on which to look
    687  *	expansions	Place to store the result
    688  *
    689  * Results:
    690  *	None.
    691  *
    692  * Side Effects:
    693  *	Things are added to the expansions list.
    694  *
    695  *-----------------------------------------------------------------------
    696  */
    697 static void
    698 DirExpandInt(const char *word, Lst path, Lst expansions)
    699 {
    700     LstNode 	  ln;	    	/* Current node */
    701     Path	  *p;	    	/* Directory in the node */
    702 
    703     if (Lst_Open(path) == SUCCESS) {
    704 	while ((ln = Lst_Next(path)) != NILLNODE) {
    705 	    p = (Path *)Lst_Datum(ln);
    706 	    DirMatchFiles(word, p, expansions);
    707 	}
    708 	Lst_Close(path);
    709     }
    710 }
    711 
    712 /*-
    713  *-----------------------------------------------------------------------
    714  * DirPrintWord --
    715  *	Print a word in the list of expansions. Callback for Dir_Expand
    716  *	when DEBUG(DIR), via Lst_ForEach.
    717  *
    718  * Results:
    719  *	=== 0
    720  *
    721  * Side Effects:
    722  *	The passed word is printed, followed by a space.
    723  *
    724  *-----------------------------------------------------------------------
    725  */
    726 static int
    727 DirPrintWord(ClientData word, ClientData dummy)
    728 {
    729     printf("%s ", (char *) word);
    730 
    731     return(dummy ? 0 : 0);
    732 }
    733 
    734 /*-
    735  *-----------------------------------------------------------------------
    736  * Dir_Expand  --
    737  *	Expand the given word into a list of words by globbing it looking
    738  *	in the directories on the given search path.
    739  *
    740  * Input:
    741  *	word		the word to expand
    742  *	path		the list of directories in which to find the
    743  *			resulting files
    744  *	expansions	the list on which to place the results
    745  *
    746  * Results:
    747  *	A list of words consisting of the files which exist along the search
    748  *	path matching the given pattern.
    749  *
    750  * Side Effects:
    751  *	Directories may be opened. Who knows?
    752  *-----------------------------------------------------------------------
    753  */
    754 void
    755 Dir_Expand(const char *word, Lst path, Lst expansions)
    756 {
    757     const char    	  *cp;
    758 
    759     if (DEBUG(DIR)) {
    760 	printf("Expanding \"%s\"... ", word);
    761     }
    762 
    763     cp = strchr(word, '{');
    764     if (cp) {
    765 	DirExpandCurly(word, cp, path, expansions);
    766     } else {
    767 	cp = strchr(word, '/');
    768 	if (cp) {
    769 	    /*
    770 	     * The thing has a directory component -- find the first wildcard
    771 	     * in the string.
    772 	     */
    773 	    for (cp = word; *cp; cp++) {
    774 		if (*cp == '?' || *cp == '[' || *cp == '*' || *cp == '{') {
    775 		    break;
    776 		}
    777 	    }
    778 	    if (*cp == '{') {
    779 		/*
    780 		 * This one will be fun.
    781 		 */
    782 		DirExpandCurly(word, cp, path, expansions);
    783 		return;
    784 	    } else if (*cp != '\0') {
    785 		/*
    786 		 * Back up to the start of the component
    787 		 */
    788 		char  *dirpath;
    789 
    790 		while (cp > word && *cp != '/') {
    791 		    cp--;
    792 		}
    793 		if (cp != word) {
    794 		    char sc;
    795 		    /*
    796 		     * If the glob isn't in the first component, try and find
    797 		     * all the components up to the one with a wildcard.
    798 		     */
    799 		    sc = cp[1];
    800 		    ((char *)UNCONST(cp))[1] = '\0';
    801 		    dirpath = Dir_FindFile(word, path);
    802 		    ((char *)UNCONST(cp))[1] = sc;
    803 		    /*
    804 		     * dirpath is null if can't find the leading component
    805 		     * XXX: Dir_FindFile won't find internal components.
    806 		     * i.e. if the path contains ../Etc/Object and we're
    807 		     * looking for Etc, it won't be found. Ah well.
    808 		     * Probably not important.
    809 		     */
    810 		    if (dirpath != (char *)NULL) {
    811 			char *dp = &dirpath[strlen(dirpath) - 1];
    812 			if (*dp == '/')
    813 			    *dp = '\0';
    814 			path = Lst_Init(FALSE);
    815 			(void) Dir_AddDir(path, dirpath);
    816 			DirExpandInt(cp+1, path, expansions);
    817 			Lst_Destroy(path, NOFREE);
    818 		    }
    819 		} else {
    820 		    /*
    821 		     * Start the search from the local directory
    822 		     */
    823 		    DirExpandInt(word, path, expansions);
    824 		}
    825 	    } else {
    826 		/*
    827 		 * Return the file -- this should never happen.
    828 		 */
    829 		DirExpandInt(word, path, expansions);
    830 	    }
    831 	} else {
    832 	    /*
    833 	     * First the files in dot
    834 	     */
    835 	    DirMatchFiles(word, dot, expansions);
    836 
    837 	    /*
    838 	     * Then the files in every other directory on the path.
    839 	     */
    840 	    DirExpandInt(word, path, expansions);
    841 	}
    842     }
    843     if (DEBUG(DIR)) {
    844 	Lst_ForEach(expansions, DirPrintWord, (ClientData) 0);
    845 	fputc('\n', stdout);
    846     }
    847 }
    848 
    849 /*-
    850  *-----------------------------------------------------------------------
    851  * DirLookup  --
    852  *	Find if the file with the given name exists in the given path.
    853  *
    854  * Results:
    855  *	The path to the file or NULL. This path is guaranteed to be in a
    856  *	different part of memory than name and so may be safely free'd.
    857  *
    858  * Side Effects:
    859  *	None.
    860  *-----------------------------------------------------------------------
    861  */
    862 static char *
    863 #if __GNUC__
    864 DirLookup(Path *p, const char *name __attribute__((unused)), const char *cp,
    865           Boolean hasSlash __attribute__((unused)))
    866 #else
    867 DirLookup(Path *p, const char *name, const char *cp, Boolean hasSlash)
    868 #endif
    869 {
    870     char *file;		/* the current filename to check */
    871 
    872     if (DEBUG(DIR)) {
    873 	printf("   %s ...\n", p->name);
    874     }
    875 
    876     if (Hash_FindEntry (&p->files, cp) == (Hash_Entry *)NULL)
    877 	return NULL;
    878 
    879     file = str_concat (p->name, cp, STR_ADDSLASH);
    880     if (DEBUG(DIR)) {
    881 	printf("   returning %s\n", file);
    882     }
    883     p->hits += 1;
    884     hits += 1;
    885     return file;
    886 }
    887 
    888 
    889 /*-
    890  *-----------------------------------------------------------------------
    891  * DirLookupSubdir  --
    892  *	Find if the file with the given name exists in the given path.
    893  *
    894  * Results:
    895  *	The path to the file or NULL. This path is guaranteed to be in a
    896  *	different part of memory than name and so may be safely free'd.
    897  *
    898  * Side Effects:
    899  *	If the file is found, it is added in the modification times hash
    900  *	table.
    901  *-----------------------------------------------------------------------
    902  */
    903 static char *
    904 DirLookupSubdir(Path *p, const char *name)
    905 {
    906     struct stat	  stb;		/* Buffer for stat, if necessary */
    907     Hash_Entry	 *entry;	/* Entry for mtimes table */
    908     char 	 *file;		/* the current filename to check */
    909 
    910     if (p != dot) {
    911 	file = str_concat (p->name, name, STR_ADDSLASH);
    912     } else {
    913 	/*
    914 	 * Checking in dot -- DON'T put a leading ./ on the thing.
    915 	 */
    916 	file = estrdup(name);
    917     }
    918 
    919     if (DEBUG(DIR)) {
    920 	printf("checking %s ...\n", file);
    921     }
    922 
    923     if (stat (file, &stb) == 0) {
    924 	/*
    925 	 * Save the modification time so if it's needed, we don't have
    926 	 * to fetch it again.
    927 	 */
    928 	if (DEBUG(DIR)) {
    929 	    printf("   Caching %s for %s\n", Targ_FmtTime(stb.st_mtime),
    930 		    file);
    931 	}
    932 	entry = Hash_CreateEntry(&mtimes, (char *) file,
    933 				 (Boolean *)NULL);
    934 	Hash_SetValue(entry, (long)stb.st_mtime);
    935 	nearmisses += 1;
    936 	return (file);
    937     }
    938     free (file);
    939     return NULL;
    940 }
    941 
    942 /*-
    943  *-----------------------------------------------------------------------
    944  * DirLookupAbs  --
    945  *	Find if the file with the given name exists in the given path.
    946  *
    947  * Results:
    948  *	The path to the file, the empty string or NULL. If the file is
    949  *	the empty string, the search should be terminated.
    950  *	This path is guaranteed to be in a different part of memory
    951  *	than name and so may be safely free'd.
    952  *
    953  * Side Effects:
    954  *	None.
    955  *-----------------------------------------------------------------------
    956  */
    957 static char *
    958 DirLookupAbs(Path *p, const char *name, const char *cp)
    959 {
    960 	char *p1;		/* pointer into p->name */
    961 	const char *p2;		/* pointer into name */
    962 
    963 	if (DEBUG(DIR)) {
    964 		printf("   %s ...\n", p->name);
    965 	}
    966 
    967 	/*
    968 	 * If the file has a leading path component and that component
    969 	 * exactly matches the entire name of the current search
    970 	 * directory, we can attempt another cache lookup. And if we don't
    971 	 * have a hit, we can safely assume the file does not exist at all.
    972 	 */
    973 	for (p1 = p->name, p2 = name; *p1 && *p1 == *p2; p1++, p2++) {
    974 		continue;
    975 	}
    976 	if (*p1 != '\0' || p2 != cp - 1) {
    977 		return NULL;
    978 	}
    979 
    980 	if (Hash_FindEntry (&p->files, cp) == (Hash_Entry *)NULL) {
    981 		if (DEBUG(DIR)) {
    982 			printf("   must be here but isn't -- returning\n");
    983 		}
    984 		/* Return empty string: terminates search */
    985 		return estrdup("");
    986 	}
    987 
    988 	p->hits += 1;
    989 	hits += 1;
    990 	if (DEBUG(DIR)) {
    991 		printf("   returning %s\n", name);
    992 	}
    993 	return (estrdup (name));
    994 }
    995 
    996 /*-
    997  *-----------------------------------------------------------------------
    998  * DirFindDot  --
    999  *	Find the file given on "." or curdir
   1000  *
   1001  * Results:
   1002  *	The path to the file or NULL. This path is guaranteed to be in a
   1003  *	different part of memory than name and so may be safely free'd.
   1004  *
   1005  * Side Effects:
   1006  *	Hit counts change
   1007  *-----------------------------------------------------------------------
   1008  */
   1009 static char *
   1010 #if __GNUC__
   1011 DirFindDot(Boolean hasSlash __attribute__((unused)), const char *name,
   1012            const char *cp)
   1013 #else
   1014 DirFindDot(Boolean hasSlash, const char *name, const char *cp)
   1015 #endif
   1016 {
   1017 
   1018 	if (Hash_FindEntry (&dot->files, cp) != (Hash_Entry *)NULL) {
   1019 	    if (DEBUG(DIR)) {
   1020 		printf("   in '.'\n");
   1021 	    }
   1022 	    hits += 1;
   1023 	    dot->hits += 1;
   1024 	    return (estrdup (name));
   1025 	}
   1026 	if (cur &&
   1027 	    Hash_FindEntry (&cur->files, cp) != (Hash_Entry *)NULL) {
   1028 	    if (DEBUG(DIR)) {
   1029 		printf("   in ${.CURDIR} = %s\n", cur->name);
   1030 	    }
   1031 	    hits += 1;
   1032 	    cur->hits += 1;
   1033 	    return str_concat (cur->name, cp, STR_ADDSLASH);
   1034 	}
   1035 
   1036 	return NULL;
   1037 }
   1038 
   1039 /*-
   1040  *-----------------------------------------------------------------------
   1041  * Dir_FindFile  --
   1042  *	Find the file with the given name along the given search path.
   1043  *
   1044  * Input:
   1045  *	name		the file to find
   1046  *	path		the Lst of directories to search
   1047  *
   1048  * Results:
   1049  *	The path to the file or NULL. This path is guaranteed to be in a
   1050  *	different part of memory than name and so may be safely free'd.
   1051  *
   1052  * Side Effects:
   1053  *	If the file is found in a directory which is not on the path
   1054  *	already (either 'name' is absolute or it is a relative path
   1055  *	[ dir1/.../dirn/file ] which exists below one of the directories
   1056  *	already on the search path), its directory is added to the end
   1057  *	of the path on the assumption that there will be more files in
   1058  *	that directory later on. Sometimes this is true. Sometimes not.
   1059  *-----------------------------------------------------------------------
   1060  */
   1061 char *
   1062 Dir_FindFile(const char *name, Lst path)
   1063 {
   1064     LstNode       ln;			/* a list element */
   1065     char	  *file;		/* the current filename to check */
   1066     Path	  *p;			/* current path member */
   1067     const char	  *cp;			/* index of first slash, if any */
   1068     Boolean	  hasLastDot = FALSE;	/* true we should search dot last */
   1069     Boolean	  hasSlash;		/* true if 'name' contains a / */
   1070     struct stat	  stb;			/* Buffer for stat, if necessary */
   1071     Hash_Entry	  *entry;		/* Entry for mtimes table */
   1072 
   1073     /*
   1074      * Find the final component of the name and note whether it has a
   1075      * slash in it (the name, I mean)
   1076      */
   1077     cp = strrchr (name, '/');
   1078     if (cp) {
   1079 	hasSlash = TRUE;
   1080 	cp += 1;
   1081     } else {
   1082 	hasSlash = FALSE;
   1083 	cp = name;
   1084     }
   1085 
   1086     if (DEBUG(DIR)) {
   1087 	printf("Searching for %s ...", name);
   1088     }
   1089 
   1090     if (Lst_Open (path) == FAILURE) {
   1091 	if (DEBUG(DIR)) {
   1092 	    printf("couldn't open path, file not found\n");
   1093 	}
   1094 	misses += 1;
   1095 	return ((char *) NULL);
   1096     }
   1097 
   1098     if ((ln = Lst_First (path)) != NILLNODE) {
   1099 	p = (Path *) Lst_Datum (ln);
   1100 	if (p == dotLast) {
   1101 	    hasLastDot = TRUE;
   1102             if (DEBUG(DIR))
   1103 		printf("[dot last]...");
   1104 	}
   1105     }
   1106     if (DEBUG(DIR)) {
   1107 	printf("\n");
   1108     }
   1109 
   1110     /*
   1111      * If there's no leading directory components or if the leading
   1112      * directory component is exactly `./', consult the cached contents
   1113      * of each of the directories on the search path.
   1114      */
   1115     if ((!hasSlash || (cp - name == 2 && *name == '.'))) {
   1116 	    /*
   1117 	     * We look through all the directories on the path seeking one which
   1118 	     * contains the final component of the given name.  If such a beast
   1119 	     * is found, we concatenate the directory name and the final
   1120 	     * component and return the resulting string. If we don't find any
   1121 	     * such thing, we go on to phase two...
   1122 	     *
   1123 	     * No matter what, we always look for the file in the current
   1124 	     * directory before anywhere else (unless we found the magic
   1125 	     * DOTLAST path, in which case we search it last) and we *do not*
   1126 	     * add the ./ to it if it exists.
   1127 	     * This is so there are no conflicts between what the user
   1128 	     * specifies (fish.c) and what pmake finds (./fish.c).
   1129 	     */
   1130 	    if (!hasLastDot &&
   1131 			(file = DirFindDot(hasSlash, name, cp)) != NULL) {
   1132 		    Lst_Close (path);
   1133 		    return file;
   1134 	    }
   1135 
   1136 	    while ((ln = Lst_Next (path)) != NILLNODE) {
   1137 		p = (Path *) Lst_Datum (ln);
   1138 		if (p == dotLast)
   1139 		    continue;
   1140 		if ((file = DirLookup(p, name, cp, hasSlash)) != NULL) {
   1141 		    Lst_Close (path);
   1142 			return file;
   1143 		}
   1144 	    }
   1145 
   1146 	    if (hasLastDot &&
   1147 			(file = DirFindDot(hasSlash, name, cp)) != NULL) {
   1148 		    Lst_Close (path);
   1149 		    return file;
   1150 	    }
   1151     }
   1152     Lst_Close (path);
   1153 
   1154     /*
   1155      * We didn't find the file on any directory in the search path.
   1156      * If the name doesn't contain a slash, that means it doesn't exist.
   1157      * If it *does* contain a slash, however, there is still hope: it
   1158      * could be in a subdirectory of one of the members of the search
   1159      * path. (eg. /usr/include and sys/types.h. The above search would
   1160      * fail to turn up types.h in /usr/include, but it *is* in
   1161      * /usr/include/sys/types.h).
   1162      * [ This no longer applies: If we find such a beast, we assume there
   1163      * will be more (what else can we assume?) and add all but the last
   1164      * component of the resulting name onto the search path (at the
   1165      * end).]
   1166      * This phase is only performed if the file is *not* absolute.
   1167      */
   1168     if (!hasSlash) {
   1169 	if (DEBUG(DIR)) {
   1170 	    printf("   failed.\n");
   1171 	}
   1172 	misses += 1;
   1173 	return ((char *) NULL);
   1174     }
   1175 
   1176     if (name[0] != '/') {
   1177 	Boolean	checkedDot = FALSE;
   1178 
   1179 	if (DEBUG(DIR)) {
   1180 	    printf("   Trying subdirectories...\n");
   1181 	}
   1182 
   1183 	if (!hasLastDot) {
   1184 		if (dot) {
   1185 			checkedDot = TRUE;
   1186 			if ((file = DirLookupSubdir(dot, name)) != NULL)
   1187 				return file;
   1188 		}
   1189 		if (cur && (file = DirLookupSubdir(cur, name)) != NULL)
   1190 			return file;
   1191 	}
   1192 
   1193 	(void) Lst_Open (path);
   1194 	while ((ln = Lst_Next (path)) != NILLNODE) {
   1195 	    p = (Path *) Lst_Datum (ln);
   1196 	    if (p == dotLast)
   1197 		continue;
   1198 	    if (p == dot) {
   1199 		    if (checkedDot)
   1200 			    continue;
   1201 		checkedDot = TRUE;
   1202 	    }
   1203 	    if ((file = DirLookupSubdir(p, name)) != NULL) {
   1204 		Lst_Close (path);
   1205 		return file;
   1206 	    }
   1207 	}
   1208 	Lst_Close (path);
   1209 
   1210 	if (hasLastDot) {
   1211 		if (dot && !checkedDot) {
   1212 			checkedDot = TRUE;
   1213 			if ((file = DirLookupSubdir(dot, name)) != NULL)
   1214 				return file;
   1215 		}
   1216 		if (cur && (file = DirLookupSubdir(cur, name)) != NULL)
   1217 			return file;
   1218 	}
   1219 
   1220 	if (checkedDot) {
   1221 	    /*
   1222 	     * Already checked by the given name, since . was in the path,
   1223 	     * so no point in proceeding...
   1224 	     */
   1225 	    if (DEBUG(DIR)) {
   1226 		printf("   Checked . already, returning NULL\n");
   1227 	    }
   1228 	    return(NULL);
   1229 	}
   1230 
   1231     } else { /* name[0] == '/' */
   1232 
   1233 	/*
   1234 	 * For absolute names, compare directory path prefix against the
   1235 	 * the directory path of each member on the search path for an exact
   1236 	 * match. If we have an exact match on any member of the search path,
   1237 	 * use the cached contents of that member to lookup the final file
   1238 	 * component. If that lookup fails we can safely assume that the
   1239 	 * file does not exist at all.  This is signified by DirLookupAbs()
   1240 	 * returning an empty string.
   1241 	 */
   1242 	if (DEBUG(DIR)) {
   1243 	    printf("   Trying exact path matches...\n");
   1244 	}
   1245 
   1246 	if (!hasLastDot && cur && (file = DirLookupAbs(cur, name, cp)) != NULL)
   1247 	    return *file?file:NULL;
   1248 
   1249 	(void) Lst_Open (path);
   1250 	while ((ln = Lst_Next (path)) != NILLNODE) {
   1251 	    p = (Path *) Lst_Datum (ln);
   1252 	    if (p == dotLast)
   1253 		continue;
   1254 	    if ((file = DirLookupAbs(p, name, cp)) != NULL) {
   1255 		Lst_Close (path);
   1256 		return *file?file:NULL;
   1257 	    }
   1258 	}
   1259 	Lst_Close (path);
   1260 
   1261 	if (hasLastDot && cur && (file = DirLookupAbs(cur, name, cp)) != NULL)
   1262 	    return *file?file:NULL;
   1263     }
   1264 
   1265     /*
   1266      * Didn't find it that way, either. Sigh. Phase 3. Add its directory
   1267      * onto the search path in any case, just in case, then look for the
   1268      * thing in the hash table. If we find it, grand. We return a new
   1269      * copy of the name. Otherwise we sadly return a NULL pointer. Sigh.
   1270      * Note that if the directory holding the file doesn't exist, this will
   1271      * do an extra search of the final directory on the path. Unless something
   1272      * weird happens, this search won't succeed and life will be groovy.
   1273      *
   1274      * Sigh. We cannot add the directory onto the search path because
   1275      * of this amusing case:
   1276      * $(INSTALLDIR)/$(FILE): $(FILE)
   1277      *
   1278      * $(FILE) exists in $(INSTALLDIR) but not in the current one.
   1279      * When searching for $(FILE), we will find it in $(INSTALLDIR)
   1280      * b/c we added it here. This is not good...
   1281      */
   1282 #ifdef notdef
   1283     cp[-1] = '\0';
   1284     (void) Dir_AddDir (path, name);
   1285     cp[-1] = '/';
   1286 
   1287     bigmisses += 1;
   1288     ln = Lst_Last (path);
   1289     if (ln == NILLNODE) {
   1290 	return ((char *) NULL);
   1291     } else {
   1292 	p = (Path *) Lst_Datum (ln);
   1293     }
   1294 
   1295     if (Hash_FindEntry (&p->files, cp) != (Hash_Entry *)NULL) {
   1296 	return (estrdup (name));
   1297     } else {
   1298 	return ((char *) NULL);
   1299     }
   1300 #else /* !notdef */
   1301     if (DEBUG(DIR)) {
   1302 	printf("   Looking for \"%s\" ...\n", name);
   1303     }
   1304 
   1305     bigmisses += 1;
   1306     entry = Hash_FindEntry(&mtimes, name);
   1307     if (entry != (Hash_Entry *)NULL) {
   1308 	if (DEBUG(DIR)) {
   1309 	    printf("   got it (in mtime cache)\n");
   1310 	}
   1311 	return(estrdup(name));
   1312     } else if (stat (name, &stb) == 0) {
   1313 	entry = Hash_CreateEntry(&mtimes, name, (Boolean *)NULL);
   1314 	if (DEBUG(DIR)) {
   1315 	    printf("   Caching %s for %s\n", Targ_FmtTime(stb.st_mtime),
   1316 		    name);
   1317 	}
   1318 	Hash_SetValue(entry, (long)stb.st_mtime);
   1319 	return (estrdup (name));
   1320     } else {
   1321 	if (DEBUG(DIR)) {
   1322 	    printf("   failed. Returning NULL\n");
   1323 	}
   1324 	return ((char *)NULL);
   1325     }
   1326 #endif /* notdef */
   1327 }
   1328 
   1329 
   1330 /*-
   1331  *-----------------------------------------------------------------------
   1332  * Dir_FindHereOrAbove  --
   1333  *	search for a path starting at a given directory and then working
   1334  *	our way up towards the root.
   1335  *
   1336  * Input:
   1337  *	here		starting directory
   1338  *	search_path	the path we are looking for
   1339  *	result		the result of a successful search is placed here
   1340  *	rlen		the length of the result buffer
   1341  *			(typically MAXPATHLEN + 1)
   1342  *
   1343  * Results:
   1344  *	0 on failure, 1 on success [in which case the found path is put
   1345  *	in the result buffer].
   1346  *
   1347  * Side Effects:
   1348  *-----------------------------------------------------------------------
   1349  */
   1350 int
   1351 Dir_FindHereOrAbove(char *here, char *search_path, char *result, int rlen) {
   1352 
   1353 	struct stat st;
   1354 	char dirbase[MAXPATHLEN + 1], *db_end;
   1355         char try[MAXPATHLEN + 1], *try_end;
   1356 
   1357 	/* copy out our starting point */
   1358 	snprintf(dirbase, sizeof(dirbase), "%s", here);
   1359 	db_end = dirbase + strlen(dirbase);
   1360 
   1361 	/* loop until we determine a result */
   1362 	while (1) {
   1363 
   1364 		/* try and stat(2) it ... */
   1365 		snprintf(try, sizeof(try), "%s/%s", dirbase, search_path);
   1366 		if (stat(try, &st) != -1) {
   1367 			/*
   1368 			 * success!  if we found a file, chop off
   1369 			 * the filename so we return a directory.
   1370 			 */
   1371 			if ((st.st_mode & S_IFMT) != S_IFDIR) {
   1372 				try_end = try + strlen(try);
   1373 				while (try_end > try && *try_end != '/')
   1374 					try_end--;
   1375 				if (try_end > try)
   1376 					*try_end = 0;	/* chop! */
   1377 			}
   1378 
   1379 			/*
   1380 			 * done!
   1381 			 */
   1382 			snprintf(result, rlen, "%s", try);
   1383 			return(1);
   1384 		}
   1385 
   1386 		/*
   1387 		 * nope, we didn't find it.  if we used up dirbase we've
   1388 		 * reached the root and failed.
   1389 		 */
   1390 		if (db_end == dirbase)
   1391 			break;		/* failed! */
   1392 
   1393 		/*
   1394 		 * truncate dirbase from the end to move up a dir
   1395 		 */
   1396 		while (db_end > dirbase && *db_end != '/')
   1397 			db_end--;
   1398 		*db_end = 0;		/* chop! */
   1399 
   1400 	} /* while (1) */
   1401 
   1402 	/*
   1403 	 * we failed...
   1404 	 */
   1405 	return(0);
   1406 }
   1407 
   1408 /*-
   1409  *-----------------------------------------------------------------------
   1410  * Dir_MTime  --
   1411  *	Find the modification time of the file described by gn along the
   1412  *	search path dirSearchPath.
   1413  *
   1414  * Input:
   1415  *	gn		the file whose modification time is desired
   1416  *
   1417  * Results:
   1418  *	The modification time or 0 if it doesn't exist
   1419  *
   1420  * Side Effects:
   1421  *	The modification time is placed in the node's mtime slot.
   1422  *	If the node didn't have a path entry before, and Dir_FindFile
   1423  *	found one for it, the full name is placed in the path slot.
   1424  *-----------------------------------------------------------------------
   1425  */
   1426 int
   1427 Dir_MTime(GNode *gn)
   1428 {
   1429     char          *fullName;  /* the full pathname of name */
   1430     struct stat	  stb;	      /* buffer for finding the mod time */
   1431     Hash_Entry	  *entry;
   1432 
   1433     if (gn->type & OP_ARCHV) {
   1434 	return Arch_MTime (gn);
   1435     } else if (gn->type & OP_PHONY) {
   1436 	gn->mtime = 0;
   1437 	return 0;
   1438     } else if (gn->path == (char *)NULL) {
   1439 	if (gn->type & OP_NOPATH)
   1440 	    fullName = NULL;
   1441 	else
   1442 	    fullName = Dir_FindFile (gn->name, dirSearchPath);
   1443     } else {
   1444 	fullName = gn->path;
   1445     }
   1446 
   1447     if (fullName == (char *)NULL) {
   1448 	fullName = estrdup(gn->name);
   1449     }
   1450 
   1451     entry = Hash_FindEntry(&mtimes, fullName);
   1452     if (entry != (Hash_Entry *)NULL) {
   1453 	/*
   1454 	 * Only do this once -- the second time folks are checking to
   1455 	 * see if the file was actually updated, so we need to actually go
   1456 	 * to the file system.
   1457 	 */
   1458 	if (DEBUG(DIR)) {
   1459 	    printf("Using cached time %s for %s\n",
   1460 		    Targ_FmtTime((time_t)(long)Hash_GetValue(entry)), fullName);
   1461 	}
   1462 	stb.st_mtime = (time_t)(long)Hash_GetValue(entry);
   1463 	Hash_DeleteEntry(&mtimes, entry);
   1464     } else if (stat (fullName, &stb) < 0) {
   1465 	if (gn->type & OP_MEMBER) {
   1466 	    if (fullName != gn->path)
   1467 		free(fullName);
   1468 	    return Arch_MemMTime (gn);
   1469 	} else {
   1470 	    stb.st_mtime = 0;
   1471 	}
   1472     }
   1473     if (fullName && gn->path == (char *)NULL) {
   1474 	gn->path = fullName;
   1475     }
   1476 
   1477     gn->mtime = stb.st_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_ForEach of its list of paths...
   1487  *
   1488  * Input:
   1489  *	path		the path to which the directory should be
   1490  *			added
   1491  *	name		the name of the directory to add
   1492  *
   1493  * Results:
   1494  *	none
   1495  *
   1496  * Side Effects:
   1497  *	A structure is added to the list and the directory is
   1498  *	read and hashed.
   1499  *-----------------------------------------------------------------------
   1500  */
   1501 Path *
   1502 Dir_AddDir(Lst path, const char *name)
   1503 {
   1504     LstNode       ln = NILLNODE; /* node in case Path structure is found */
   1505     Path	  *p = NULL;  /* pointer to new Path structure */
   1506     DIR     	  *d;	      /* for reading directory */
   1507     struct dirent *dp;	      /* entry in directory */
   1508 
   1509     if (strcmp(name, ".DOTLAST") == 0) {
   1510 	ln = Lst_Find (path, (ClientData)UNCONST(name), DirFindName);
   1511 	if (ln != NILLNODE)
   1512 	    return (Path *) Lst_Datum(ln);
   1513 	else {
   1514 	    dotLast->refCount += 1;
   1515 	    (void)Lst_AtFront(path, (ClientData)dotLast);
   1516 	}
   1517     }
   1518 
   1519     if (path)
   1520 	ln = Lst_Find (openDirectories, (ClientData)UNCONST(name), DirFindName);
   1521     if (ln != NILLNODE) {
   1522 	p = (Path *)Lst_Datum (ln);
   1523 	if (Lst_Member(path, (ClientData)p) == NILLNODE) {
   1524 	    p->refCount += 1;
   1525 	    (void)Lst_AtEnd (path, (ClientData)p);
   1526 	}
   1527     } else {
   1528 	if (DEBUG(DIR)) {
   1529 	    printf("Caching %s ...", name);
   1530 	    fflush(stdout);
   1531 	}
   1532 
   1533 	if ((d = opendir (name)) != (DIR *) NULL) {
   1534 	    p = (Path *) emalloc (sizeof (Path));
   1535 	    p->name = estrdup (name);
   1536 	    p->hits = 0;
   1537 	    p->refCount = 1;
   1538 	    Hash_InitTable (&p->files, -1);
   1539 
   1540 	    while ((dp = readdir (d)) != (struct dirent *) 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(&p->files, dp->d_name, (Boolean *)NULL);
   1552 	    }
   1553 	    (void) closedir (d);
   1554 	    (void)Lst_AtEnd (openDirectories, (ClientData)p);
   1555 	    if (path != NULL)
   1556 		(void)Lst_AtEnd (path, (ClientData)p);
   1557 	}
   1558 	if (DEBUG(DIR)) {
   1559 	    printf("done\n");
   1560 	}
   1561     }
   1562     return p;
   1563 }
   1564 
   1565 /*-
   1566  *-----------------------------------------------------------------------
   1567  * Dir_CopyDir --
   1568  *	Callback function for duplicating a search path via Lst_Duplicate.
   1569  *	Ups the reference count for the directory.
   1570  *
   1571  * Results:
   1572  *	Returns the Path it was given.
   1573  *
   1574  * Side Effects:
   1575  *	The refCount of the path is incremented.
   1576  *
   1577  *-----------------------------------------------------------------------
   1578  */
   1579 ClientData
   1580 Dir_CopyDir(ClientData p)
   1581 {
   1582     ((Path *) p)->refCount += 1;
   1583 
   1584     return ((ClientData)p);
   1585 }
   1586 
   1587 /*-
   1588  *-----------------------------------------------------------------------
   1589  * Dir_MakeFlags --
   1590  *	Make a string by taking all the directories in the given search
   1591  *	path and preceding them by the given flag. Used by the suffix
   1592  *	module to create variables for compilers based on suffix search
   1593  *	paths.
   1594  *
   1595  * Input:
   1596  *	flag		flag which should precede each directory
   1597  *	path		list of directories
   1598  *
   1599  * Results:
   1600  *	The string mentioned above. Note that there is no space between
   1601  *	the given flag and each directory. The empty string is returned if
   1602  *	Things don't go well.
   1603  *
   1604  * Side Effects:
   1605  *	None
   1606  *-----------------------------------------------------------------------
   1607  */
   1608 char *
   1609 Dir_MakeFlags(const char *flag, Lst path)
   1610 {
   1611     char	  *str;	  /* the string which will be returned */
   1612     char	  *s1, *s2;/* the current directory preceded by 'flag' */
   1613     LstNode	  ln;	  /* the node of the current directory */
   1614     Path	  *p;	  /* the structure describing the current directory */
   1615 
   1616     str = estrdup ("");
   1617 
   1618     if (Lst_Open (path) == SUCCESS) {
   1619 	while ((ln = Lst_Next (path)) != NILLNODE) {
   1620 	    p = (Path *) Lst_Datum (ln);
   1621 	    s2 = str_concat (flag, p->name, 0);
   1622 	    str = str_concat (s1 = str, s2, STR_ADDSPACE);
   1623 	    free(s1);
   1624 	    free(s2);
   1625 	}
   1626 	Lst_Close (path);
   1627     }
   1628 
   1629     return (str);
   1630 }
   1631 
   1632 /*-
   1633  *-----------------------------------------------------------------------
   1634  * Dir_Destroy --
   1635  *	Nuke a directory descriptor, if possible. Callback procedure
   1636  *	for the suffixes module when destroying a search path.
   1637  *
   1638  * Input:
   1639  *	pp		The directory descriptor to nuke
   1640  *
   1641  * Results:
   1642  *	None.
   1643  *
   1644  * Side Effects:
   1645  *	If no other path references this directory (refCount == 0),
   1646  *	the Path and all its data are freed.
   1647  *
   1648  *-----------------------------------------------------------------------
   1649  */
   1650 void
   1651 Dir_Destroy(ClientData pp)
   1652 {
   1653     Path    	  *p = (Path *) pp;
   1654     p->refCount -= 1;
   1655 
   1656     if (p->refCount == 0) {
   1657 	LstNode	ln;
   1658 
   1659 	ln = Lst_Member (openDirectories, (ClientData)p);
   1660 	(void) Lst_Remove (openDirectories, ln);
   1661 
   1662 	Hash_DeleteTable (&p->files);
   1663 	free((Address)p->name);
   1664 	free((Address)p);
   1665     }
   1666 }
   1667 
   1668 /*-
   1669  *-----------------------------------------------------------------------
   1670  * Dir_ClearPath --
   1671  *	Clear out all elements of the given search path. This is different
   1672  *	from destroying the list, notice.
   1673  *
   1674  * Input:
   1675  *	path		Path to clear
   1676  *
   1677  * Results:
   1678  *	None.
   1679  *
   1680  * Side Effects:
   1681  *	The path is set to the empty list.
   1682  *
   1683  *-----------------------------------------------------------------------
   1684  */
   1685 void
   1686 Dir_ClearPath(Lst path)
   1687 {
   1688     Path    *p;
   1689     while (!Lst_IsEmpty(path)) {
   1690 	p = (Path *)Lst_DeQueue(path);
   1691 	Dir_Destroy((ClientData) p);
   1692     }
   1693 }
   1694 
   1695 
   1696 /*-
   1697  *-----------------------------------------------------------------------
   1698  * Dir_Concat --
   1699  *	Concatenate two paths, adding the second to the end of the first.
   1700  *	Makes sure to avoid duplicates.
   1701  *
   1702  * Input:
   1703  *	path1		Dest
   1704  *	path2		Source
   1705  *
   1706  * Results:
   1707  *	None
   1708  *
   1709  * Side Effects:
   1710  *	Reference counts for added dirs are upped.
   1711  *
   1712  *-----------------------------------------------------------------------
   1713  */
   1714 void
   1715 Dir_Concat(Lst path1, Lst path2)
   1716 {
   1717     LstNode ln;
   1718     Path    *p;
   1719 
   1720     for (ln = Lst_First(path2); ln != NILLNODE; ln = Lst_Succ(ln)) {
   1721 	p = (Path *)Lst_Datum(ln);
   1722 	if (Lst_Member(path1, (ClientData)p) == NILLNODE) {
   1723 	    p->refCount += 1;
   1724 	    (void)Lst_AtEnd(path1, (ClientData)p);
   1725 	}
   1726     }
   1727 }
   1728 
   1729 /********** DEBUG INFO **********/
   1730 void
   1731 Dir_PrintDirectories(void)
   1732 {
   1733     LstNode	ln;
   1734     Path	*p;
   1735 
   1736     printf ("#*** Directory Cache:\n");
   1737     printf ("# Stats: %d hits %d misses %d near misses %d losers (%d%%)\n",
   1738 	      hits, misses, nearmisses, bigmisses,
   1739 	      (hits+bigmisses+nearmisses ?
   1740 	       hits * 100 / (hits + bigmisses + nearmisses) : 0));
   1741     printf ("# %-20s referenced\thits\n", "directory");
   1742     if (Lst_Open (openDirectories) == SUCCESS) {
   1743 	while ((ln = Lst_Next (openDirectories)) != NILLNODE) {
   1744 	    p = (Path *) Lst_Datum (ln);
   1745 	    printf ("# %-20s %10d\t%4d\n", p->name, p->refCount, p->hits);
   1746 	}
   1747 	Lst_Close (openDirectories);
   1748     }
   1749 }
   1750 
   1751 static int
   1752 DirPrintDir(ClientData p, ClientData dummy)
   1753 {
   1754     printf ("%s ", ((Path *) p)->name);
   1755     return (dummy ? 0 : 0);
   1756 }
   1757 
   1758 void
   1759 Dir_PrintPath(Lst path)
   1760 {
   1761     Lst_ForEach (path, DirPrintDir, (ClientData)0);
   1762 }
   1763