1 /* $NetBSD: dir.c,v 1.69 2017/01/31 06:54:23 sjg Exp $ */
4 * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
7 * This code is derived from software contributed to Berkeley by
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * Copyright (c) 1988, 1989 by Adam de Boor
37 * Copyright (c) 1989 by Berkeley Softworks
38 * All rights reserved.
40 * This code is derived from software contributed to Berkeley by
43 * Redistribution and use in source and binary forms, with or without
44 * modification, are permitted provided that the following conditions
46 * 1. Redistributions of source code must retain the above copyright
47 * notice, this list of conditions and the following disclaimer.
48 * 2. Redistributions in binary form must reproduce the above copyright
49 * notice, this list of conditions and the following disclaimer in the
50 * documentation and/or other materials provided with the distribution.
51 * 3. All advertising materials mentioning features or use of this software
52 * must display the following acknowledgement:
53 * This product includes software developed by the University of
54 * California, Berkeley and its contributors.
55 * 4. Neither the name of the University nor the names of its contributors
56 * may be used to endorse or promote products derived from this software
57 * without specific prior written permission.
59 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
60 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
61 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
62 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
63 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
64 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
65 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
66 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
67 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
68 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
73 static char rcsid
[] = "$NetBSD: dir.c,v 1.69 2017/01/31 06:54:23 sjg Exp $";
75 #include <sys/cdefs.h>
78 static char sccsid
[] = "@(#)dir.c 8.2 (Berkeley) 1/2/94";
80 __RCSID("$NetBSD: dir.c,v 1.69 2017/01/31 06:54:23 sjg Exp $");
87 * Directory searching using wildcards and/or normal names...
88 * Used both for source wildcarding in the Makefile and for finding
91 * The interface for this module is:
92 * Dir_Init Initialize the module.
94 * Dir_InitCur Set the cur Path.
96 * Dir_InitDot Set the dot Path.
98 * Dir_End Cleanup the module.
100 * Dir_SetPATH Set ${.PATH} to reflect state of dirSearchPath.
102 * Dir_HasWildcards Returns TRUE if the name given it needs to
103 * be wildcard-expanded.
105 * Dir_Expand Given a pattern and a path, return a Lst of names
106 * which match the pattern on the search path.
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.
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 ("/").
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
121 * Dir_AddDir Add a directory to a search path.
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.
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
132 * Dir_ClearPath Resets a search path to the empty list.
135 * Dir_PrintDirectories Print stats about the directory cache.
138 #include <sys/types.h>
139 #include <sys/stat.h>
151 * A search path consists of a Lst of Path structures. A Path structure
152 * has in it the name of the directory and a hash table of all the files
153 * in the directory. This is used to cut down on the number of system
154 * calls necessary to find implicit dependents and their like. Since
155 * these searches are made before any actions are taken, we need not
156 * worry about the directory changing due to creation commands. If this
157 * hampers the style of some makefiles, they must be changed.
159 * A list of all previously-read directories is kept in the
160 * openDirectories Lst. This list is checked first before a directory
163 * The need for the caching of whole directories is brought about by
164 * the multi-level transformation code in suff.c, which tends to search
165 * for far more files than regular make does. In the initial
166 * implementation, the amount of time spent performing "stat" calls was
167 * truly astronomical. The problem with hashing at the start is,
168 * of course, that pmake doesn't then detect changes to these directories
169 * during the course of the make. Three possibilities suggest themselves:
171 * 1) just use stat to test for a file's existence. As mentioned
172 * above, this is very inefficient due to the number of checks
173 * engendered by the multi-level transformation code.
174 * 2) use readdir() and company to search the directories, keeping
175 * them open between checks. I have tried this and while it
176 * didn't slow down the process too much, it could severely
177 * affect the amount of parallelism available as each directory
178 * open would take another file descriptor out of play for
179 * handling I/O for another job. Given that it is only recently
180 * that UNIX OS's have taken to allowing more than 20 or 32
181 * file descriptors for a process, this doesn't seem acceptable
183 * 3) record the mtime of the directory in the Path structure and
184 * verify the directory hasn't changed since the contents were
185 * hashed. This will catch the creation or deletion of files,
186 * but not the updating of files. However, since it is the
187 * creation and deletion that is the problem, this could be
188 * a good thing to do. Unfortunately, if the directory (say ".")
189 * were fairly large and changed fairly frequently, the constant
190 * rehashing could seriously degrade performance. It might be
191 * good in such cases to keep track of the number of rehashes
192 * and if the number goes over a (small) limit, resort to using
195 * An additional thing to consider is that pmake is used primarily
196 * to create C programs and until recently pcc-based compilers refused
197 * to allow you to specify where the resulting object file should be
198 * placed. This forced all objects to be created in the current
199 * directory. This isn't meant as a full excuse, just an explanation of
200 * some of the reasons for the caching used here.
202 * One more note: the location of a target's file is only performed
203 * on the downward traversal of the graph and then only for terminal
204 * nodes in the graph. This could be construed as wrong in some cases,
205 * but prevents inadvertent modification of files when the "installed"
206 * directory for a file is provided in the search path.
208 * Another data structure maintained by this module is an mtime
209 * cache used when the searching of cached directories fails to find
210 * a file. In the past, Dir_FindFile would simply perform an access()
211 * call in such a case to determine if the file could be found using
212 * just the name given. When this hit, however, all that was gained
213 * was the knowledge that the file existed. Given that an access() is
214 * essentially a stat() without the copyout() call, and that the same
215 * filesystem overhead would have to be incurred in Dir_MTime, it made
216 * sense to replace the access() with a stat() and record the mtime
217 * in a cache for when Dir_MTime was actually called.
220 Lst dirSearchPath
; /* main search path */
222 static Lst openDirectories
; /* the list of all open directories */
225 * Variables for gathering statistics on the efficiency of the hashing
228 static int hits
, /* Found in directory cache */
229 misses
, /* Sad, but not evil misses */
230 nearmisses
, /* Found under search path */
231 bigmisses
; /* Sought by itself */
233 static Path
*dot
; /* contents of current directory */
234 static Path
*cur
; /* contents of current directory, if not dot */
235 static Path
*dotLast
; /* a fake path entry indicating we need to
237 static Hash_Table mtimes
; /* Results of doing a last-resort stat in
238 * Dir_FindFile -- if we have to go to the
239 * system to find the file, we might as well
240 * have its mtime on record. XXX: If this is done
241 * way early, there's a chance other rules will
242 * have already updated the file, in which case
243 * we'll update it again. Generally, there won't
244 * be two rules to update a single file, so this
245 * should be ok, but... */
247 static Hash_Table lmtimes
; /* same as mtimes but for lstat */
249 static int DirFindName(const void *, const void *);
250 static int DirMatchFiles(const char *, Path
*, Lst
);
251 static void DirExpandCurly(const char *, const char *, Lst
, Lst
);
252 static void DirExpandInt(const char *, Lst
, Lst
);
253 static int DirPrintWord(void *, void *);
254 static int DirPrintDir(void *, void *);
255 static char *DirLookup(Path
*, const char *, const char *, Boolean
);
256 static char *DirLookupSubdir(Path
*, const char *);
257 static char *DirFindDot(Boolean
, const char *, const char *);
258 static char *DirLookupAbs(Path
*, const char *, const char *);
262 * We use stat(2) a lot, cache the results
263 * mtime and mode are all we care about.
270 /* minimize changes below */
272 Hash_GetTimeValue(Hash_Entry
*entry
)
274 struct cache_st
*cst
;
276 cst
= entry
->clientPtr
;
284 cached_stats(Hash_Table
*htp
, const char *pathname
, struct stat
*st
, int flags
)
287 struct cache_st
*cst
;
290 if (!pathname
|| !pathname
[0])
293 entry
= Hash_FindEntry(htp
, pathname
);
295 if (entry
&& (flags
& CST_UPDATE
) == 0) {
296 cst
= entry
->clientPtr
;
298 memset(st
, 0, sizeof(*st
));
299 st
->st_mtime
= cst
->mtime
;
300 st
->st_mode
= cst
->mode
;
304 rc
= (flags
& CST_LSTAT
) ? lstat(pathname
, st
) : stat(pathname
, st
);
308 if (st
->st_mtime
== 0)
309 st
->st_mtime
= 1; /* avoid confusion with missing file */
312 entry
= Hash_CreateEntry(htp
, pathname
, NULL
);
313 if (!entry
->clientPtr
)
314 entry
->clientPtr
= bmake_malloc(sizeof(*cst
));
315 cst
= entry
->clientPtr
;
316 cst
->mtime
= st
->st_mtime
;
317 cst
->mode
= st
->st_mode
;
323 cached_stat(const char *pathname
, void *st
)
325 return cached_stats(&mtimes
, pathname
, st
, 0);
329 cached_lstat(const char *pathname
, void *st
)
331 return cached_stats(&lmtimes
, pathname
, st
, CST_LSTAT
);
335 *-----------------------------------------------------------------------
337 * initialize things for this module
343 * some directories may be opened.
344 *-----------------------------------------------------------------------
347 Dir_Init(const char *cdname
)
350 dirSearchPath
= Lst_Init(FALSE
);
351 openDirectories
= Lst_Init(FALSE
);
352 Hash_InitTable(&mtimes
, 0);
353 Hash_InitTable(&lmtimes
, 0);
358 dotLast
= bmake_malloc(sizeof(Path
));
359 dotLast
->refCount
= 1;
361 dotLast
->name
= bmake_strdup(".DOTLAST");
362 Hash_InitTable(&dotLast
->files
, -1);
366 * Called by Dir_Init() and whenever .CURDIR is assigned to.
369 Dir_InitCur(const char *cdname
)
373 if (cdname
!= NULL
) {
375 * Our build directory is not the same as our source directory.
376 * Keep this one around too.
378 if ((p
= Dir_AddDir(NULL
, cdname
))) {
380 if (cur
&& cur
!= p
) {
382 * We've been here before, cleanup.
393 *-----------------------------------------------------------------------
395 * (re)initialize "dot" (current/object directory) path hash
401 * some directories may be opened.
402 *-----------------------------------------------------------------------
410 /* Remove old entry from openDirectories, but do not destroy. */
411 ln
= Lst_Member(openDirectories
, dot
);
412 (void)Lst_Remove(openDirectories
, ln
);
415 dot
= Dir_AddDir(NULL
, ".");
418 Error("Cannot open `.' (%s)", strerror(errno
));
423 * We always need to have dot around, so we increment its reference count
424 * to make sure it's not destroyed.
427 Dir_SetPATH(); /* initialize */
431 *-----------------------------------------------------------------------
433 * cleanup things for this module
440 *-----------------------------------------------------------------------
451 dotLast
->refCount
-= 1;
452 Dir_Destroy(dotLast
);
454 Dir_ClearPath(dirSearchPath
);
455 Lst_Destroy(dirSearchPath
, NULL
);
456 Dir_ClearPath(openDirectories
);
457 Lst_Destroy(openDirectories
, NULL
);
458 Hash_DeleteTable(&mtimes
);
463 * We want ${.PATH} to indicate the order in which we will actually
464 * search, so we rebuild it after any .PATH: target.
465 * This is the simplest way to deal with the effect of .DOTLAST.
470 LstNode ln
; /* a list element */
472 Boolean hasLastDot
= FALSE
; /* true we should search dot last */
474 Var_Delete(".PATH", VAR_GLOBAL
);
476 if (Lst_Open(dirSearchPath
) == SUCCESS
) {
477 if ((ln
= Lst_First(dirSearchPath
)) != NULL
) {
478 p
= (Path
*)Lst_Datum(ln
);
481 Var_Append(".PATH", dotLast
->name
, VAR_GLOBAL
);
487 Var_Append(".PATH", dot
->name
, VAR_GLOBAL
);
489 Var_Append(".PATH", cur
->name
, VAR_GLOBAL
);
492 while ((ln
= Lst_Next(dirSearchPath
)) != NULL
) {
493 p
= (Path
*)Lst_Datum(ln
);
496 if (p
== dot
&& hasLastDot
)
498 Var_Append(".PATH", p
->name
, VAR_GLOBAL
);
503 Var_Append(".PATH", dot
->name
, VAR_GLOBAL
);
505 Var_Append(".PATH", cur
->name
, VAR_GLOBAL
);
507 Lst_Close(dirSearchPath
);
512 *-----------------------------------------------------------------------
514 * See if the Path structure describes the same directory as the
515 * given one by comparing their names. Called from Dir_AddDir via
516 * Lst_Find when searching the list of open directories.
523 * 0 if it is the same. Non-zero otherwise
527 *-----------------------------------------------------------------------
530 DirFindName(const void *p
, const void *dname
)
532 return (strcmp(((const Path
*)p
)->name
, dname
));
536 *-----------------------------------------------------------------------
537 * Dir_HasWildcards --
538 * see if the given name has any wildcard characters in it
539 * be careful not to expand unmatching brackets or braces.
540 * XXX: This code is not 100% correct. ([^]] fails etc.)
541 * I really don't think that make(1) should be expanding
542 * patterns, because then you have to set a mechanism for
543 * escaping the expansion!
549 * returns TRUE if the word should be expanded, FALSE otherwise
553 *-----------------------------------------------------------------------
556 Dir_HasWildcards(char *name
)
559 int wild
= 0, brace
= 0, bracket
= 0;
561 for (cp
= name
; *cp
; cp
++) {
585 return wild
&& bracket
== 0 && brace
== 0;
589 *-----------------------------------------------------------------------
591 * Given a pattern and a Path structure, see if any files
592 * match the pattern and add their names to the 'expansions' list if
593 * any do. This is incomplete -- it doesn't take care of patterns like
594 * src / *src / *.c properly (just *.c on any of the directories), but it
598 * pattern Pattern to look for
599 * p Directory to search
600 * expansion Place to store the results
606 * File names are added to the expansions lst. The directory will be
607 * fully hashed when this is done.
608 *-----------------------------------------------------------------------
611 DirMatchFiles(const char *pattern
, Path
*p
, Lst expansions
)
613 Hash_Search search
; /* Index into the directory's table */
614 Hash_Entry
*entry
; /* Current entry in the table */
615 Boolean isDot
; /* TRUE if the directory being searched is . */
617 isDot
= (*p
->name
== '.' && p
->name
[1] == '\0');
619 for (entry
= Hash_EnumFirst(&p
->files
, &search
);
621 entry
= Hash_EnumNext(&search
))
624 * See if the file matches the given pattern. Note we follow the UNIX
625 * convention that dot files will only be found if the pattern
626 * begins with a dot (note also that as a side effect of the hashing
627 * scheme, .* won't match . or .. since they aren't hashed).
629 if (Str_Match(entry
->name
, pattern
) &&
630 ((entry
->name
[0] != '.') ||
631 (pattern
[0] == '.')))
633 (void)Lst_AtEnd(expansions
,
634 (isDot
? bmake_strdup(entry
->name
) :
635 str_concat(p
->name
, entry
->name
,
643 *-----------------------------------------------------------------------
645 * Expand curly braces like the C shell. Does this recursively.
646 * Note the special case: if after the piece of the curly brace is
647 * done there are no wildcard characters in the result, the result is
648 * placed on the list WITHOUT CHECKING FOR ITS EXISTENCE.
651 * word Entire word to expand
652 * brace First curly brace in it
653 * path Search path to use
654 * expansions Place to store the expansions
660 * The given list is filled with the expansions...
662 *-----------------------------------------------------------------------
665 DirExpandCurly(const char *word
, const char *brace
, Lst path
, Lst expansions
)
667 const char *end
; /* Character after the closing brace */
668 const char *cp
; /* Current position in brace clause */
669 const char *start
; /* Start of current piece of brace clause */
670 int bracelevel
; /* Number of braces we've seen. If we see a
671 * right brace when this is 0, we've hit the
672 * end of the clause. */
673 char *file
; /* Current expansion */
674 int otherLen
; /* The length of the other pieces of the
675 * expansion (chars before and after the
676 * clause in 'word') */
677 char *cp2
; /* Pointer for checking for wildcards in
678 * expansion before calling Dir_Expand */
683 * Find the end of the brace clause first, being wary of nested brace
686 for (end
= start
, bracelevel
= 0; *end
!= '\0'; end
++) {
689 } else if ((*end
== '}') && (bracelevel
-- == 0)) {
694 Error("Unterminated {} clause \"%s\"", start
);
699 otherLen
= brace
- word
+ strlen(end
);
701 for (cp
= start
; cp
< end
; cp
++) {
703 * Find the end of this piece of the clause.
709 } else if ((*cp
== '}') && (bracelevel
-- <= 0)) {
715 * Allocate room for the combination and install the three pieces.
717 file
= bmake_malloc(otherLen
+ cp
- start
+ 1);
719 strncpy(file
, word
, brace
-word
);
722 strncpy(&file
[brace
-word
], start
, cp
-start
);
724 strcpy(&file
[(brace
-word
)+(cp
-start
)], end
);
727 * See if the result has any wildcards in it. If we find one, call
728 * Dir_Expand right away, telling it to place the result on our list
731 for (cp2
= file
; *cp2
!= '\0'; cp2
++) {
737 Dir_Expand(file
, path
, expansions
);
743 * Hit the end w/o finding any wildcards, so stick the expansion
744 * on the end of the list.
746 (void)Lst_AtEnd(expansions
, file
);
757 *-----------------------------------------------------------------------
759 * Internal expand routine. Passes through the directories in the
760 * path one by one, calling DirMatchFiles for each. NOTE: This still
761 * doesn't handle patterns in directories...
764 * word Word to expand
765 * path Path on which to look
766 * expansions Place to store the result
772 * Things are added to the expansions list.
774 *-----------------------------------------------------------------------
777 DirExpandInt(const char *word
, Lst path
, Lst expansions
)
779 LstNode ln
; /* Current node */
780 Path
*p
; /* Directory in the node */
782 if (Lst_Open(path
) == SUCCESS
) {
783 while ((ln
= Lst_Next(path
)) != NULL
) {
784 p
= (Path
*)Lst_Datum(ln
);
785 DirMatchFiles(word
, p
, expansions
);
792 *-----------------------------------------------------------------------
794 * Print a word in the list of expansions. Callback for Dir_Expand
795 * when DEBUG(DIR), via Lst_ForEach.
801 * The passed word is printed, followed by a space.
803 *-----------------------------------------------------------------------
806 DirPrintWord(void *word
, void *dummy
)
808 fprintf(debug_file
, "%s ", (char *)word
);
810 return(dummy
? 0 : 0);
814 *-----------------------------------------------------------------------
816 * Expand the given word into a list of words by globbing it looking
817 * in the directories on the given search path.
820 * word the word to expand
821 * path the list of directories in which to find the
823 * expansions the list on which to place the results
826 * A list of words consisting of the files which exist along the search
827 * path matching the given pattern.
830 * Directories may be opened. Who knows?
831 *-----------------------------------------------------------------------
834 Dir_Expand(const char *word
, Lst path
, Lst expansions
)
839 fprintf(debug_file
, "Expanding \"%s\"... ", word
);
842 cp
= strchr(word
, '{');
844 DirExpandCurly(word
, cp
, path
, expansions
);
846 cp
= strchr(word
, '/');
849 * The thing has a directory component -- find the first wildcard
852 for (cp
= word
; *cp
; cp
++) {
853 if (*cp
== '?' || *cp
== '[' || *cp
== '*' || *cp
== '{') {
859 * This one will be fun.
861 DirExpandCurly(word
, cp
, path
, expansions
);
863 } else if (*cp
!= '\0') {
865 * Back up to the start of the component
869 while (cp
> word
&& *cp
!= '/') {
875 * If the glob isn't in the first component, try and find
876 * all the components up to the one with a wildcard.
879 ((char *)UNCONST(cp
))[1] = '\0';
880 dirpath
= Dir_FindFile(word
, path
);
881 ((char *)UNCONST(cp
))[1] = sc
;
883 * dirpath is null if can't find the leading component
884 * XXX: Dir_FindFile won't find internal components.
885 * i.e. if the path contains ../Etc/Object and we're
886 * looking for Etc, it won't be found. Ah well.
887 * Probably not important.
889 if (dirpath
!= NULL
) {
890 char *dp
= &dirpath
[strlen(dirpath
) - 1];
893 path
= Lst_Init(FALSE
);
894 (void)Dir_AddDir(path
, dirpath
);
895 DirExpandInt(cp
+1, path
, expansions
);
896 Lst_Destroy(path
, NULL
);
900 * Start the search from the local directory
902 DirExpandInt(word
, path
, expansions
);
906 * Return the file -- this should never happen.
908 DirExpandInt(word
, path
, expansions
);
912 * First the files in dot
914 DirMatchFiles(word
, dot
, expansions
);
917 * Then the files in every other directory on the path.
919 DirExpandInt(word
, path
, expansions
);
923 Lst_ForEach(expansions
, DirPrintWord
, NULL
);
924 fprintf(debug_file
, "\n");
929 *-----------------------------------------------------------------------
931 * Find if the file with the given name exists in the given path.
934 * The path to the file or NULL. This path is guaranteed to be in a
935 * different part of memory than name and so may be safely free'd.
939 *-----------------------------------------------------------------------
942 DirLookup(Path
*p
, const char *name MAKE_ATTR_UNUSED
, const char *cp
,
943 Boolean hasSlash MAKE_ATTR_UNUSED
)
945 char *file
; /* the current filename to check */
948 fprintf(debug_file
, " %s ...\n", p
->name
);
951 if (Hash_FindEntry(&p
->files
, cp
) == NULL
)
954 file
= str_concat(p
->name
, cp
, STR_ADDSLASH
);
956 fprintf(debug_file
, " returning %s\n", file
);
965 *-----------------------------------------------------------------------
967 * Find if the file with the given name exists in the given path.
970 * The path to the file or NULL. This path is guaranteed to be in a
971 * different part of memory than name and so may be safely free'd.
974 * If the file is found, it is added in the modification times hash
976 *-----------------------------------------------------------------------
979 DirLookupSubdir(Path
*p
, const char *name
)
981 struct stat stb
; /* Buffer for stat, if necessary */
982 char *file
; /* the current filename to check */
985 file
= str_concat(p
->name
, name
, STR_ADDSLASH
);
988 * Checking in dot -- DON'T put a leading ./ on the thing.
990 file
= bmake_strdup(name
);
994 fprintf(debug_file
, "checking %s ...\n", file
);
997 if (cached_stat(file
, &stb
) == 0) {
999 * Save the modification time so if it's needed, we don't have
1000 * to fetch it again.
1003 fprintf(debug_file
, " Caching %s for %s\n", Targ_FmtTime(stb
.st_mtime
),
1014 *-----------------------------------------------------------------------
1016 * Find if the file with the given name exists in the given path.
1019 * The path to the file, the empty string or NULL. If the file is
1020 * the empty string, the search should be terminated.
1021 * This path is guaranteed to be in a different part of memory
1022 * than name and so may be safely free'd.
1026 *-----------------------------------------------------------------------
1029 DirLookupAbs(Path
*p
, const char *name
, const char *cp
)
1031 char *p1
; /* pointer into p->name */
1032 const char *p2
; /* pointer into name */
1035 fprintf(debug_file
, " %s ...\n", p
->name
);
1039 * If the file has a leading path component and that component
1040 * exactly matches the entire name of the current search
1041 * directory, we can attempt another cache lookup. And if we don't
1042 * have a hit, we can safely assume the file does not exist at all.
1044 for (p1
= p
->name
, p2
= name
; *p1
&& *p1
== *p2
; p1
++, p2
++) {
1047 if (*p1
!= '\0' || p2
!= cp
- 1) {
1051 if (Hash_FindEntry(&p
->files
, cp
) == NULL
) {
1053 fprintf(debug_file
, " must be here but isn't -- returning\n");
1055 /* Return empty string: terminates search */
1056 return bmake_strdup("");
1062 fprintf(debug_file
, " returning %s\n", name
);
1064 return (bmake_strdup(name
));
1068 *-----------------------------------------------------------------------
1070 * Find the file given on "." or curdir
1073 * The path to the file or NULL. This path is guaranteed to be in a
1074 * different part of memory than name and so may be safely free'd.
1078 *-----------------------------------------------------------------------
1081 DirFindDot(Boolean hasSlash MAKE_ATTR_UNUSED
, const char *name
, const char *cp
)
1084 if (Hash_FindEntry(&dot
->files
, cp
) != NULL
) {
1086 fprintf(debug_file
, " in '.'\n");
1090 return (bmake_strdup(name
));
1093 Hash_FindEntry(&cur
->files
, cp
) != NULL
) {
1095 fprintf(debug_file
, " in ${.CURDIR} = %s\n", cur
->name
);
1099 return str_concat(cur
->name
, cp
, STR_ADDSLASH
);
1106 *-----------------------------------------------------------------------
1108 * Find the file with the given name along the given search path.
1111 * name the file to find
1112 * path the Lst of directories to search
1115 * The path to the file or NULL. This path is guaranteed to be in a
1116 * different part of memory than name and so may be safely free'd.
1119 * If the file is found in a directory which is not on the path
1120 * already (either 'name' is absolute or it is a relative path
1121 * [ dir1/.../dirn/file ] which exists below one of the directories
1122 * already on the search path), its directory is added to the end
1123 * of the path on the assumption that there will be more files in
1124 * that directory later on. Sometimes this is true. Sometimes not.
1125 *-----------------------------------------------------------------------
1128 Dir_FindFile(const char *name
, Lst path
)
1130 LstNode ln
; /* a list element */
1131 char *file
; /* the current filename to check */
1132 Path
*p
; /* current path member */
1133 const char *cp
; /* Terminal name of file */
1134 Boolean hasLastDot
= FALSE
; /* true we should search dot last */
1135 Boolean hasSlash
; /* true if 'name' contains a / */
1136 struct stat stb
; /* Buffer for stat, if necessary */
1137 Hash_Entry
*entry
; /* Entry for mtimes table */
1138 const char *trailing_dot
= ".";
1141 * Find the final component of the name and note whether it has a
1142 * slash in it (the name, I mean)
1144 cp
= strrchr(name
, '/');
1154 fprintf(debug_file
, "Searching for %s ...", name
);
1157 if (Lst_Open(path
) == FAILURE
) {
1159 fprintf(debug_file
, "couldn't open path, file not found\n");
1165 if ((ln
= Lst_First(path
)) != NULL
) {
1166 p
= (Path
*)Lst_Datum(ln
);
1170 fprintf(debug_file
, "[dot last]...");
1174 fprintf(debug_file
, "\n");
1178 * If there's no leading directory components or if the leading
1179 * directory component is exactly `./', consult the cached contents
1180 * of each of the directories on the search path.
1182 if (!hasSlash
|| (cp
- name
== 2 && *name
== '.')) {
1184 * We look through all the directories on the path seeking one which
1185 * contains the final component of the given name. If such a beast
1186 * is found, we concatenate the directory name and the final
1187 * component and return the resulting string. If we don't find any
1188 * such thing, we go on to phase two...
1190 * No matter what, we always look for the file in the current
1191 * directory before anywhere else (unless we found the magic
1192 * DOTLAST path, in which case we search it last) and we *do not*
1193 * add the ./ to it if it exists.
1194 * This is so there are no conflicts between what the user
1195 * specifies (fish.c) and what pmake finds (./fish.c).
1198 (file
= DirFindDot(hasSlash
, name
, cp
)) != NULL
) {
1203 while ((ln
= Lst_Next(path
)) != NULL
) {
1204 p
= (Path
*)Lst_Datum(ln
);
1207 if ((file
= DirLookup(p
, name
, cp
, hasSlash
)) != NULL
) {
1214 (file
= DirFindDot(hasSlash
, name
, cp
)) != NULL
) {
1222 * We didn't find the file on any directory in the search path.
1223 * If the name doesn't contain a slash, that means it doesn't exist.
1224 * If it *does* contain a slash, however, there is still hope: it
1225 * could be in a subdirectory of one of the members of the search
1226 * path. (eg. /usr/include and sys/types.h. The above search would
1227 * fail to turn up types.h in /usr/include, but it *is* in
1228 * /usr/include/sys/types.h).
1229 * [ This no longer applies: If we find such a beast, we assume there
1230 * will be more (what else can we assume?) and add all but the last
1231 * component of the resulting name onto the search path (at the
1233 * This phase is only performed if the file is *not* absolute.
1237 fprintf(debug_file
, " failed.\n");
1244 /* we were given a trailing "/" */
1248 if (name
[0] != '/') {
1249 Boolean checkedDot
= FALSE
;
1252 fprintf(debug_file
, " Trying subdirectories...\n");
1258 if ((file
= DirLookupSubdir(dot
, name
)) != NULL
)
1261 if (cur
&& (file
= DirLookupSubdir(cur
, name
)) != NULL
)
1265 (void)Lst_Open(path
);
1266 while ((ln
= Lst_Next(path
)) != NULL
) {
1267 p
= (Path
*)Lst_Datum(ln
);
1275 if ((file
= DirLookupSubdir(p
, name
)) != NULL
) {
1283 if (dot
&& !checkedDot
) {
1285 if ((file
= DirLookupSubdir(dot
, name
)) != NULL
)
1288 if (cur
&& (file
= DirLookupSubdir(cur
, name
)) != NULL
)
1294 * Already checked by the given name, since . was in the path,
1295 * so no point in proceeding...
1298 fprintf(debug_file
, " Checked . already, returning NULL\n");
1303 } else { /* name[0] == '/' */
1306 * For absolute names, compare directory path prefix against the
1307 * the directory path of each member on the search path for an exact
1308 * match. If we have an exact match on any member of the search path,
1309 * use the cached contents of that member to lookup the final file
1310 * component. If that lookup fails we can safely assume that the
1311 * file does not exist at all. This is signified by DirLookupAbs()
1312 * returning an empty string.
1315 fprintf(debug_file
, " Trying exact path matches...\n");
1318 if (!hasLastDot
&& cur
&& (file
= DirLookupAbs(cur
, name
, cp
)) != NULL
)
1319 return *file
?file
:NULL
;
1321 (void)Lst_Open(path
);
1322 while ((ln
= Lst_Next(path
)) != NULL
) {
1323 p
= (Path
*)Lst_Datum(ln
);
1326 if ((file
= DirLookupAbs(p
, name
, cp
)) != NULL
) {
1328 return *file
?file
:NULL
;
1333 if (hasLastDot
&& cur
&& (file
= DirLookupAbs(cur
, name
, cp
)) != NULL
)
1334 return *file
?file
:NULL
;
1338 * Didn't find it that way, either. Sigh. Phase 3. Add its directory
1339 * onto the search path in any case, just in case, then look for the
1340 * thing in the hash table. If we find it, grand. We return a new
1341 * copy of the name. Otherwise we sadly return a NULL pointer. Sigh.
1342 * Note that if the directory holding the file doesn't exist, this will
1343 * do an extra search of the final directory on the path. Unless something
1344 * weird happens, this search won't succeed and life will be groovy.
1346 * Sigh. We cannot add the directory onto the search path because
1347 * of this amusing case:
1348 * $(INSTALLDIR)/$(FILE): $(FILE)
1350 * $(FILE) exists in $(INSTALLDIR) but not in the current one.
1351 * When searching for $(FILE), we will find it in $(INSTALLDIR)
1352 * b/c we added it here. This is not good...
1355 if (cp
== traling_dot
) {
1356 cp
= strrchr(name
, '/');
1360 (void)Dir_AddDir(path
, name
);
1364 ln
= Lst_Last(path
);
1368 p
= (Path
*)Lst_Datum(ln
);
1371 if (Hash_FindEntry(&p
->files
, cp
) != NULL
) {
1372 return (bmake_strdup(name
));
1378 fprintf(debug_file
, " Looking for \"%s\" ...\n", name
);
1382 entry
= Hash_FindEntry(&mtimes
, name
);
1383 if (entry
!= NULL
) {
1385 fprintf(debug_file
, " got it (in mtime cache)\n");
1387 return(bmake_strdup(name
));
1388 } else if (cached_stat(name
, &stb
) == 0) {
1390 fprintf(debug_file
, " Caching %s for %s\n", Targ_FmtTime(stb
.st_mtime
),
1393 return (bmake_strdup(name
));
1396 fprintf(debug_file
, " failed. Returning NULL\n");
1405 *-----------------------------------------------------------------------
1406 * Dir_FindHereOrAbove --
1407 * search for a path starting at a given directory and then working
1408 * our way up towards the root.
1411 * here starting directory
1412 * search_path the path we are looking for
1413 * result the result of a successful search is placed here
1414 * rlen the length of the result buffer
1415 * (typically MAXPATHLEN + 1)
1418 * 0 on failure, 1 on success [in which case the found path is put
1419 * in the result buffer].
1422 *-----------------------------------------------------------------------
1425 Dir_FindHereOrAbove(char *here
, char *search_path
, char *result
, int rlen
) {
1428 char dirbase
[MAXPATHLEN
+ 1], *db_end
;
1429 char try[MAXPATHLEN
+ 1], *try_end
;
1431 /* copy out our starting point */
1432 snprintf(dirbase
, sizeof(dirbase
), "%s", here
);
1433 db_end
= dirbase
+ strlen(dirbase
);
1435 /* loop until we determine a result */
1438 /* try and stat(2) it ... */
1439 snprintf(try, sizeof(try), "%s/%s", dirbase
, search_path
);
1440 if (cached_stat(try, &st
) != -1) {
1442 * success! if we found a file, chop off
1443 * the filename so we return a directory.
1445 if ((st
.st_mode
& S_IFMT
) != S_IFDIR
) {
1446 try_end
= try + strlen(try);
1447 while (try_end
> try && *try_end
!= '/')
1450 *try_end
= 0; /* chop! */
1456 snprintf(result
, rlen
, "%s", try);
1461 * nope, we didn't find it. if we used up dirbase we've
1462 * reached the root and failed.
1464 if (db_end
== dirbase
)
1465 break; /* failed! */
1468 * truncate dirbase from the end to move up a dir
1470 while (db_end
> dirbase
&& *db_end
!= '/')
1472 *db_end
= 0; /* chop! */
1483 *-----------------------------------------------------------------------
1485 * Find the modification time of the file described by gn along the
1486 * search path dirSearchPath.
1489 * gn the file whose modification time is desired
1492 * The modification time or 0 if it doesn't exist
1495 * The modification time is placed in the node's mtime slot.
1496 * If the node didn't have a path entry before, and Dir_FindFile
1497 * found one for it, the full name is placed in the path slot.
1498 *-----------------------------------------------------------------------
1501 Dir_MTime(GNode
*gn
, Boolean recheck
)
1503 char *fullName
; /* the full pathname of name */
1504 struct stat stb
; /* buffer for finding the mod time */
1507 if (gn
->type
& OP_ARCHV
) {
1508 return Arch_MTime(gn
);
1509 } else if (gn
->type
& OP_PHONY
) {
1512 } else if (gn
->path
== NULL
) {
1513 if (gn
->type
& OP_NOPATH
)
1516 fullName
= Dir_FindFile(gn
->name
, Suff_FindPath(gn
));
1517 if (fullName
== NULL
&& gn
->flags
& FROM_DEPEND
&&
1518 !Lst_IsEmpty(gn
->iParents
)) {
1521 cp
= strrchr(gn
->name
, '/');
1524 * This is an implied source, and it may have moved,
1525 * see if we can find it via the current .PATH
1529 fullName
= Dir_FindFile(cp
, Suff_FindPath(gn
));
1532 * Put the found file in gn->path
1533 * so that we give that to the compiler.
1535 gn
->path
= bmake_strdup(fullName
);
1536 if (!Job_RunTarget(".STALE", gn
->fname
))
1538 "%s: %s, %d: ignoring stale %s for %s, "
1539 "found %s\n", progname
, gn
->fname
, gn
->lineno
,
1540 makeDependfile
, gn
->name
, fullName
);
1545 fprintf(debug_file
, "Found '%s' as '%s'\n",
1546 gn
->name
, fullName
? fullName
: "(not found)" );
1549 fullName
= gn
->path
;
1552 if (fullName
== NULL
) {
1553 fullName
= bmake_strdup(gn
->name
);
1557 entry
= Hash_FindEntry(&mtimes
, fullName
);
1560 if (entry
!= NULL
) {
1561 stb
.st_mtime
= Hash_GetTimeValue(entry
);
1563 fprintf(debug_file
, "Using cached time %s for %s\n",
1564 Targ_FmtTime(stb
.st_mtime
), fullName
);
1566 } else if (cached_stats(&mtimes
, fullName
, &stb
, recheck
? CST_UPDATE
: 0) < 0) {
1567 if (gn
->type
& OP_MEMBER
) {
1568 if (fullName
!= gn
->path
)
1570 return Arch_MemMTime(gn
);
1576 if (fullName
&& gn
->path
== NULL
) {
1577 gn
->path
= fullName
;
1580 gn
->mtime
= stb
.st_mtime
;
1585 *-----------------------------------------------------------------------
1587 * Add the given name to the end of the given path. The order of
1588 * the arguments is backwards so ParseDoDependency can do a
1589 * Lst_ForEach of its list of paths...
1592 * path the path to which the directory should be
1594 * name the name of the directory to add
1600 * A structure is added to the list and the directory is
1602 *-----------------------------------------------------------------------
1605 Dir_AddDir(Lst path
, const char *name
)
1607 LstNode ln
= NULL
; /* node in case Path structure is found */
1608 Path
*p
= NULL
; /* pointer to new Path structure */
1609 DIR *d
; /* for reading directory */
1610 struct dirent
*dp
; /* entry in directory */
1612 if (strcmp(name
, ".DOTLAST") == 0) {
1613 ln
= Lst_Find(path
, name
, DirFindName
);
1615 return (Path
*)Lst_Datum(ln
);
1617 dotLast
->refCount
+= 1;
1618 (void)Lst_AtFront(path
, dotLast
);
1623 ln
= Lst_Find(openDirectories
, name
, DirFindName
);
1625 p
= (Path
*)Lst_Datum(ln
);
1626 if (path
&& Lst_Member(path
, p
) == NULL
) {
1628 (void)Lst_AtEnd(path
, p
);
1632 fprintf(debug_file
, "Caching %s ...", name
);
1635 if ((d
= opendir(name
)) != NULL
) {
1636 p
= bmake_malloc(sizeof(Path
));
1637 p
->name
= bmake_strdup(name
);
1640 Hash_InitTable(&p
->files
, -1);
1642 while ((dp
= readdir(d
)) != NULL
) {
1643 #if defined(sun) && defined(d_ino) /* d_ino is a sunos4 #define for d_fileno */
1645 * The sun directory library doesn't check for a 0 inode
1646 * (0-inode slots just take up space), so we have to do
1649 if (dp
->d_fileno
== 0) {
1652 #endif /* sun && d_ino */
1653 (void)Hash_CreateEntry(&p
->files
, dp
->d_name
, NULL
);
1656 (void)Lst_AtEnd(openDirectories
, p
);
1658 (void)Lst_AtEnd(path
, p
);
1661 fprintf(debug_file
, "done\n");
1668 *-----------------------------------------------------------------------
1670 * Callback function for duplicating a search path via Lst_Duplicate.
1671 * Ups the reference count for the directory.
1674 * Returns the Path it was given.
1677 * The refCount of the path is incremented.
1679 *-----------------------------------------------------------------------
1682 Dir_CopyDir(void *p
)
1684 ((Path
*)p
)->refCount
+= 1;
1690 *-----------------------------------------------------------------------
1692 * Make a string by taking all the directories in the given search
1693 * path and preceding them by the given flag. Used by the suffix
1694 * module to create variables for compilers based on suffix search
1698 * flag flag which should precede each directory
1699 * path list of directories
1702 * The string mentioned above. Note that there is no space between
1703 * the given flag and each directory. The empty string is returned if
1704 * Things don't go well.
1708 *-----------------------------------------------------------------------
1711 Dir_MakeFlags(const char *flag
, Lst path
)
1713 char *str
; /* the string which will be returned */
1714 char *s1
, *s2
;/* the current directory preceded by 'flag' */
1715 LstNode ln
; /* the node of the current directory */
1716 Path
*p
; /* the structure describing the current directory */
1718 str
= bmake_strdup("");
1720 if (Lst_Open(path
) == SUCCESS
) {
1721 while ((ln
= Lst_Next(path
)) != NULL
) {
1722 p
= (Path
*)Lst_Datum(ln
);
1723 s2
= str_concat(flag
, p
->name
, 0);
1724 str
= str_concat(s1
= str
, s2
, STR_ADDSPACE
);
1735 *-----------------------------------------------------------------------
1737 * Nuke a directory descriptor, if possible. Callback procedure
1738 * for the suffixes module when destroying a search path.
1741 * pp The directory descriptor to nuke
1747 * If no other path references this directory (refCount == 0),
1748 * the Path and all its data are freed.
1750 *-----------------------------------------------------------------------
1753 Dir_Destroy(void *pp
)
1755 Path
*p
= (Path
*)pp
;
1758 if (p
->refCount
== 0) {
1761 ln
= Lst_Member(openDirectories
, p
);
1762 (void)Lst_Remove(openDirectories
, ln
);
1764 Hash_DeleteTable(&p
->files
);
1771 *-----------------------------------------------------------------------
1773 * Clear out all elements of the given search path. This is different
1774 * from destroying the list, notice.
1777 * path Path to clear
1783 * The path is set to the empty list.
1785 *-----------------------------------------------------------------------
1788 Dir_ClearPath(Lst path
)
1791 while (!Lst_IsEmpty(path
)) {
1792 p
= (Path
*)Lst_DeQueue(path
);
1799 *-----------------------------------------------------------------------
1801 * Concatenate two paths, adding the second to the end of the first.
1802 * Makes sure to avoid duplicates.
1812 * Reference counts for added dirs are upped.
1814 *-----------------------------------------------------------------------
1817 Dir_Concat(Lst path1
, Lst path2
)
1822 for (ln
= Lst_First(path2
); ln
!= NULL
; ln
= Lst_Succ(ln
)) {
1823 p
= (Path
*)Lst_Datum(ln
);
1824 if (Lst_Member(path1
, p
) == NULL
) {
1826 (void)Lst_AtEnd(path1
, p
);
1831 /********** DEBUG INFO **********/
1833 Dir_PrintDirectories(void)
1838 fprintf(debug_file
, "#*** Directory Cache:\n");
1839 fprintf(debug_file
, "# Stats: %d hits %d misses %d near misses %d losers (%d%%)\n",
1840 hits
, misses
, nearmisses
, bigmisses
,
1841 (hits
+bigmisses
+nearmisses
?
1842 hits
* 100 / (hits
+ bigmisses
+ nearmisses
) : 0));
1843 fprintf(debug_file
, "# %-20s referenced\thits\n", "directory");
1844 if (Lst_Open(openDirectories
) == SUCCESS
) {
1845 while ((ln
= Lst_Next(openDirectories
)) != NULL
) {
1846 p
= (Path
*)Lst_Datum(ln
);
1847 fprintf(debug_file
, "# %-20s %10d\t%4d\n", p
->name
, p
->refCount
, p
->hits
);
1849 Lst_Close(openDirectories
);
1854 DirPrintDir(void *p
, void *dummy
)
1856 fprintf(debug_file
, "%s ", ((Path
*)p
)->name
);
1857 return (dummy
? 0 : 0);
1861 Dir_PrintPath(Lst path
)
1863 Lst_ForEach(path
, DirPrintDir
, NULL
);