Merge from vendor branch LESS:
[dragonfly.git] / usr.bin / make / dir.c
1 /*
2  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
3  * Copyright (c) 1988, 1989 by Adam de Boor
4  * Copyright (c) 1989 by Berkeley Softworks
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. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  * @(#)dir.c    8.2 (Berkeley) 1/2/94
39  * $FreeBSD: src/usr.bin/make/dir.c,v 1.10.2.1 2001/02/13 03:13:57 will Exp $
40  * $DragonFly: src/usr.bin/make/dir.c,v 1.3 2003/11/03 19:31:30 eirikn Exp $
41  */
42
43 /*-
44  * dir.c --
45  *      Directory searching using wildcards and/or normal names...
46  *      Used both for source wildcarding in the Makefile and for finding
47  *      implicit sources.
48  *
49  * The interface for this module is:
50  *      Dir_Init            Initialize the module.
51  *
52  *      Dir_End             Cleanup the module.
53  *
54  *      Dir_HasWildcards    Returns TRUE if the name given it needs to
55  *                          be wildcard-expanded.
56  *
57  *      Dir_Expand          Given a pattern and a path, return a Lst of names
58  *                          which match the pattern on the search path.
59  *
60  *      Dir_FindFile        Searches for a file on a given search path.
61  *                          If it exists, the entire path is returned.
62  *                          Otherwise NULL is returned.
63  *
64  *      Dir_MTime           Return the modification time of a node. The file
65  *                          is searched for along the default search path.
66  *                          The path and mtime fields of the node are filled
67  *                          in.
68  *
69  *      Dir_AddDir          Add a directory to a search path.
70  *
71  *      Dir_MakeFlags       Given a search path and a command flag, create
72  *                          a string with each of the directories in the path
73  *                          preceded by the command flag and all of them
74  *                          separated by a space.
75  *
76  *      Dir_Destroy         Destroy an element of a search path. Frees up all
77  *                          things that can be freed for the element as long
78  *                          as the element is no longer referenced by any other
79  *                          search path.
80  *      Dir_ClearPath       Resets a search path to the empty list.
81  *
82  * For debugging:
83  *      Dir_PrintDirectories    Print stats about the directory cache.
84  */
85
86 #include <stdio.h>
87 #include <sys/types.h>
88 #include <dirent.h>
89 #include <sys/stat.h>
90 #include "make.h"
91 #include "hash.h"
92 #include "dir.h"
93
94 /*
95  *      A search path consists of a Lst of Path structures. A Path structure
96  *      has in it the name of the directory and a hash table of all the files
97  *      in the directory. This is used to cut down on the number of system
98  *      calls necessary to find implicit dependents and their like. Since
99  *      these searches are made before any actions are taken, we need not
100  *      worry about the directory changing due to creation commands. If this
101  *      hampers the style of some makefiles, they must be changed.
102  *
103  *      A list of all previously-read directories is kept in the
104  *      openDirectories Lst. This list is checked first before a directory
105  *      is opened.
106  *
107  *      The need for the caching of whole directories is brought about by
108  *      the multi-level transformation code in suff.c, which tends to search
109  *      for far more files than regular make does. In the initial
110  *      implementation, the amount of time spent performing "stat" calls was
111  *      truly astronomical. The problem with hashing at the start is,
112  *      of course, that pmake doesn't then detect changes to these directories
113  *      during the course of the make. Three possibilities suggest themselves:
114  *
115  *          1) just use stat to test for a file's existence. As mentioned
116  *             above, this is very inefficient due to the number of checks
117  *             engendered by the multi-level transformation code.
118  *          2) use readdir() and company to search the directories, keeping
119  *             them open between checks. I have tried this and while it
120  *             didn't slow down the process too much, it could severely
121  *             affect the amount of parallelism available as each directory
122  *             open would take another file descriptor out of play for
123  *             handling I/O for another job. Given that it is only recently
124  *             that UNIX OS's have taken to allowing more than 20 or 32
125  *             file descriptors for a process, this doesn't seem acceptable
126  *             to me.
127  *          3) record the mtime of the directory in the Path structure and
128  *             verify the directory hasn't changed since the contents were
129  *             hashed. This will catch the creation or deletion of files,
130  *             but not the updating of files. However, since it is the
131  *             creation and deletion that is the problem, this could be
132  *             a good thing to do. Unfortunately, if the directory (say ".")
133  *             were fairly large and changed fairly frequently, the constant
134  *             rehashing could seriously degrade performance. It might be
135  *             good in such cases to keep track of the number of rehashes
136  *             and if the number goes over a (small) limit, resort to using
137  *             stat in its place.
138  *
139  *      An additional thing to consider is that pmake is used primarily
140  *      to create C programs and until recently pcc-based compilers refused
141  *      to allow you to specify where the resulting object file should be
142  *      placed. This forced all objects to be created in the current
143  *      directory. This isn't meant as a full excuse, just an explanation of
144  *      some of the reasons for the caching used here.
145  *
146  *      One more note: the location of a target's file is only performed
147  *      on the downward traversal of the graph and then only for terminal
148  *      nodes in the graph. This could be construed as wrong in some cases,
149  *      but prevents inadvertent modification of files when the "installed"
150  *      directory for a file is provided in the search path.
151  *
152  *      Another data structure maintained by this module is an mtime
153  *      cache used when the searching of cached directories fails to find
154  *      a file. In the past, Dir_FindFile would simply perform an access()
155  *      call in such a case to determine if the file could be found using
156  *      just the name given. When this hit, however, all that was gained
157  *      was the knowledge that the file existed. Given that an access() is
158  *      essentially a stat() without the copyout() call, and that the same
159  *      filesystem overhead would have to be incurred in Dir_MTime, it made
160  *      sense to replace the access() with a stat() and record the mtime
161  *      in a cache for when Dir_MTime was actually called.
162  */
163
164 Lst          dirSearchPath;     /* main search path */
165
166 static Lst   openDirectories;   /* the list of all open directories */
167
168 /*
169  * Variables for gathering statistics on the efficiency of the hashing
170  * mechanism.
171  */
172 static int    hits,           /* Found in directory cache */
173               misses,         /* Sad, but not evil misses */
174               nearmisses,     /* Found under search path */
175               bigmisses;      /* Sought by itself */
176
177 static Path       *dot;     /* contents of current directory */
178 static Hash_Table mtimes;   /* Results of doing a last-resort stat in
179                              * Dir_FindFile -- if we have to go to the
180                              * system to find the file, we might as well
181                              * have its mtime on record. XXX: If this is done
182                              * way early, there's a chance other rules will
183                              * have already updated the file, in which case
184                              * we'll update it again. Generally, there won't
185                              * be two rules to update a single file, so this
186                              * should be ok, but... */
187
188
189 static int DirFindName(ClientData, ClientData);
190 static int DirMatchFiles(char *, Path *, Lst);
191 static void DirExpandCurly(char *, char *, Lst, Lst);
192 static void DirExpandInt(char *, Lst, Lst);
193 static int DirPrintWord(ClientData, ClientData);
194 static int DirPrintDir(ClientData, ClientData);
195
196 /*-
197  *-----------------------------------------------------------------------
198  * Dir_Init --
199  *      initialize things for this module
200  *
201  * Results:
202  *      none
203  *
204  * Side Effects:
205  *      some directories may be opened.
206  *-----------------------------------------------------------------------
207  */
208 void
209 Dir_Init ()
210 {
211     dirSearchPath = Lst_Init (FALSE);
212     openDirectories = Lst_Init (FALSE);
213     Hash_InitTable(&mtimes, 0);
214
215     /*
216      * Since the Path structure is placed on both openDirectories and
217      * the path we give Dir_AddDir (which in this case is openDirectories),
218      * we need to remove "." from openDirectories and what better time to
219      * do it than when we have to fetch the thing anyway?
220      */
221     Dir_AddDir (openDirectories, ".");
222     dot = (Path *) Lst_DeQueue (openDirectories);
223     if (dot == (Path *) NULL)
224         err(1, "cannot open current directory");
225
226     /*
227      * We always need to have dot around, so we increment its reference count
228      * to make sure it's not destroyed.
229      */
230     dot->refCount += 1;
231 }
232
233 /*-
234  *-----------------------------------------------------------------------
235  * Dir_End --
236  *      cleanup things for this module
237  *
238  * Results:
239  *      none
240  *
241  * Side Effects:
242  *      none
243  *-----------------------------------------------------------------------
244  */
245 void
246 Dir_End()
247 {
248     dot->refCount -= 1;
249     Dir_Destroy((ClientData) dot);
250     Dir_ClearPath(dirSearchPath);
251     Lst_Destroy(dirSearchPath, NOFREE);
252     Dir_ClearPath(openDirectories);
253     Lst_Destroy(openDirectories, NOFREE);
254     Hash_DeleteTable(&mtimes);
255 }
256
257 /*-
258  *-----------------------------------------------------------------------
259  * DirFindName --
260  *      See if the Path structure describes the same directory as the
261  *      given one by comparing their names. Called from Dir_AddDir via
262  *      Lst_Find when searching the list of open directories.
263  *
264  * Results:
265  *      0 if it is the same. Non-zero otherwise
266  *
267  * Side Effects:
268  *      None
269  *-----------------------------------------------------------------------
270  */
271 static int
272 DirFindName (p, dname)
273     ClientData    p;          /* Current name */
274     ClientData    dname;      /* Desired name */
275 {
276     return (strcmp (((Path *)p)->name, (char *) dname));
277 }
278
279 /*-
280  *-----------------------------------------------------------------------
281  * Dir_HasWildcards  --
282  *      see if the given name has any wildcard characters in it
283  *
284  * Results:
285  *      returns TRUE if the word should be expanded, FALSE otherwise
286  *
287  * Side Effects:
288  *      none
289  *-----------------------------------------------------------------------
290  */
291 Boolean
292 Dir_HasWildcards (name)
293     char          *name;        /* name to check */
294 {
295     register char *cp;
296
297     for (cp = name; *cp; cp++) {
298         switch(*cp) {
299         case '{':
300         case '[':
301         case '?':
302         case '*':
303             return (TRUE);
304         }
305     }
306     return (FALSE);
307 }
308
309 /*-
310  *-----------------------------------------------------------------------
311  * DirMatchFiles --
312  *      Given a pattern and a Path structure, see if any files
313  *      match the pattern and add their names to the 'expansions' list if
314  *      any do. This is incomplete -- it doesn't take care of patterns like
315  *      src / *src / *.c properly (just *.c on any of the directories), but it
316  *      will do for now.
317  *
318  * Results:
319  *      Always returns 0
320  *
321  * Side Effects:
322  *      File names are added to the expansions lst. The directory will be
323  *      fully hashed when this is done.
324  *-----------------------------------------------------------------------
325  */
326 static int
327 DirMatchFiles (pattern, p, expansions)
328     char          *pattern;     /* Pattern to look for */
329     Path          *p;           /* Directory to search */
330     Lst           expansions;   /* Place to store the results */
331 {
332     Hash_Search   search;       /* Index into the directory's table */
333     Hash_Entry    *entry;       /* Current entry in the table */
334     Boolean       isDot;        /* TRUE if the directory being searched is . */
335
336     isDot = (*p->name == '.' && p->name[1] == '\0');
337
338     for (entry = Hash_EnumFirst(&p->files, &search);
339          entry != (Hash_Entry *)NULL;
340          entry = Hash_EnumNext(&search))
341     {
342         /*
343          * See if the file matches the given pattern. Note we follow the UNIX
344          * convention that dot files will only be found if the pattern
345          * begins with a dot (note also that as a side effect of the hashing
346          * scheme, .* won't match . or .. since they aren't hashed).
347          */
348         if (Str_Match(entry->name, pattern) &&
349             ((entry->name[0] != '.') ||
350              (pattern[0] == '.')))
351         {
352             (void)Lst_AtEnd(expansions,
353                             (isDot ? estrdup(entry->name) :
354                              str_concat(p->name, entry->name,
355                                         STR_ADDSLASH)));
356         }
357     }
358     return (0);
359 }
360
361 /*-
362  *-----------------------------------------------------------------------
363  * DirExpandCurly --
364  *      Expand curly braces like the C shell. Does this recursively.
365  *      Note the special case: if after the piece of the curly brace is
366  *      done there are no wildcard characters in the result, the result is
367  *      placed on the list WITHOUT CHECKING FOR ITS EXISTENCE.
368  *
369  * Results:
370  *      None.
371  *
372  * Side Effects:
373  *      The given list is filled with the expansions...
374  *
375  *-----------------------------------------------------------------------
376  */
377 static void
378 DirExpandCurly(word, brace, path, expansions)
379     char          *word;        /* Entire word to expand */
380     char          *brace;       /* First curly brace in it */
381     Lst           path;         /* Search path to use */
382     Lst           expansions;   /* Place to store the expansions */
383 {
384     char          *end;         /* Character after the closing brace */
385     char          *cp;          /* Current position in brace clause */
386     char          *start;       /* Start of current piece of brace clause */
387     int           bracelevel;   /* Number of braces we've seen. If we see a
388                                  * right brace when this is 0, we've hit the
389                                  * end of the clause. */
390     char          *file;        /* Current expansion */
391     int           otherLen;     /* The length of the other pieces of the
392                                  * expansion (chars before and after the
393                                  * clause in 'word') */
394     char          *cp2;         /* Pointer for checking for wildcards in
395                                  * expansion before calling Dir_Expand */
396
397     start = brace+1;
398
399     /*
400      * Find the end of the brace clause first, being wary of nested brace
401      * clauses.
402      */
403     for (end = start, bracelevel = 0; *end != '\0'; end++) {
404         if (*end == '{') {
405             bracelevel++;
406         } else if ((*end == '}') && (bracelevel-- == 0)) {
407             break;
408         }
409     }
410     if (*end == '\0') {
411         Error("Unterminated {} clause \"%s\"", start);
412         return;
413     } else {
414         end++;
415     }
416     otherLen = brace - word + strlen(end);
417
418     for (cp = start; cp < end; cp++) {
419         /*
420          * Find the end of this piece of the clause.
421          */
422         bracelevel = 0;
423         while (*cp != ',') {
424             if (*cp == '{') {
425                 bracelevel++;
426             } else if ((*cp == '}') && (bracelevel-- <= 0)) {
427                 break;
428             }
429             cp++;
430         }
431         /*
432          * Allocate room for the combination and install the three pieces.
433          */
434         file = emalloc(otherLen + cp - start + 1);
435         if (brace != word) {
436             strncpy(file, word, brace-word);
437         }
438         if (cp != start) {
439             strncpy(&file[brace-word], start, cp-start);
440         }
441         strcpy(&file[(brace-word)+(cp-start)], end);
442
443         /*
444          * See if the result has any wildcards in it. If we find one, call
445          * Dir_Expand right away, telling it to place the result on our list
446          * of expansions.
447          */
448         for (cp2 = file; *cp2 != '\0'; cp2++) {
449             switch(*cp2) {
450             case '*':
451             case '?':
452             case '{':
453             case '[':
454                 Dir_Expand(file, path, expansions);
455                 goto next;
456             }
457         }
458         if (*cp2 == '\0') {
459             /*
460              * Hit the end w/o finding any wildcards, so stick the expansion
461              * on the end of the list.
462              */
463             (void)Lst_AtEnd(expansions, file);
464         } else {
465         next:
466             free(file);
467         }
468         start = cp+1;
469     }
470 }
471
472
473 /*-
474  *-----------------------------------------------------------------------
475  * DirExpandInt --
476  *      Internal expand routine. Passes through the directories in the
477  *      path one by one, calling DirMatchFiles for each. NOTE: This still
478  *      doesn't handle patterns in directories...
479  *
480  * Results:
481  *      None.
482  *
483  * Side Effects:
484  *      Things are added to the expansions list.
485  *
486  *-----------------------------------------------------------------------
487  */
488 static void
489 DirExpandInt(word, path, expansions)
490     char          *word;        /* Word to expand */
491     Lst           path;         /* Path on which to look */
492     Lst           expansions;   /* Place to store the result */
493 {
494     LstNode       ln;           /* Current node */
495     Path          *p;           /* Directory in the node */
496
497     if (Lst_Open(path) == SUCCESS) {
498         while ((ln = Lst_Next(path)) != NILLNODE) {
499             p = (Path *)Lst_Datum(ln);
500             DirMatchFiles(word, p, expansions);
501         }
502         Lst_Close(path);
503     }
504 }
505
506 /*-
507  *-----------------------------------------------------------------------
508  * DirPrintWord --
509  *      Print a word in the list of expansions. Callback for Dir_Expand
510  *      when DEBUG(DIR), via Lst_ForEach.
511  *
512  * Results:
513  *      === 0
514  *
515  * Side Effects:
516  *      The passed word is printed, followed by a space.
517  *
518  *-----------------------------------------------------------------------
519  */
520 static int
521 DirPrintWord(word, dummy)
522     ClientData  word;
523     ClientData  dummy;
524 {
525     printf("%s ", (char *) word);
526
527     return(dummy ? 0 : 0);
528 }
529
530 /*-
531  *-----------------------------------------------------------------------
532  * Dir_Expand  --
533  *      Expand the given word into a list of words by globbing it looking
534  *      in the directories on the given search path.
535  *
536  * Results:
537  *      A list of words consisting of the files which exist along the search
538  *      path matching the given pattern.
539  *
540  * Side Effects:
541  *      Directories may be opened. Who knows?
542  *-----------------------------------------------------------------------
543  */
544 void
545 Dir_Expand (word, path, expansions)
546     char    *word;      /* the word to expand */
547     Lst     path;       /* the list of directories in which to find
548                          * the resulting files */
549     Lst     expansions; /* the list on which to place the results */
550 {
551     char          *cp;
552
553     if (DEBUG(DIR)) {
554         printf("expanding \"%s\"...", word);
555     }
556
557     cp = strchr(word, '{');
558     if (cp) {
559         DirExpandCurly(word, cp, path, expansions);
560     } else {
561         cp = strchr(word, '/');
562         if (cp) {
563             /*
564              * The thing has a directory component -- find the first wildcard
565              * in the string.
566              */
567             for (cp = word; *cp; cp++) {
568                 if (*cp == '?' || *cp == '[' || *cp == '*' || *cp == '{') {
569                     break;
570                 }
571             }
572             if (*cp == '{') {
573                 /*
574                  * This one will be fun.
575                  */
576                 DirExpandCurly(word, cp, path, expansions);
577                 return;
578             } else if (*cp != '\0') {
579                 /*
580                  * Back up to the start of the component
581                  */
582                 char  *dirpath;
583
584                 while (cp > word && *cp != '/') {
585                     cp--;
586                 }
587                 if (cp != word) {
588                     char sc;
589                     /*
590                      * If the glob isn't in the first component, try and find
591                      * all the components up to the one with a wildcard.
592                      */
593                     sc = cp[1];
594                     cp[1] = '\0';
595                     dirpath = Dir_FindFile(word, path);
596                     cp[1] = sc;
597                     /*
598                      * dirpath is null if can't find the leading component
599                      * XXX: Dir_FindFile won't find internal components.
600                      * i.e. if the path contains ../Etc/Object and we're
601                      * looking for Etc, it won't be found. Ah well.
602                      * Probably not important.
603                      */
604                     if (dirpath != (char *)NULL) {
605                         char *dp = &dirpath[strlen(dirpath) - 1];
606                         if (*dp == '/')
607                             *dp = '\0';
608                         path = Lst_Init(FALSE);
609                         Dir_AddDir(path, dirpath);
610                         DirExpandInt(cp+1, path, expansions);
611                         Lst_Destroy(path, NOFREE);
612                     }
613                 } else {
614                     /*
615                      * Start the search from the local directory
616                      */
617                     DirExpandInt(word, path, expansions);
618                 }
619             } else {
620                 /*
621                  * Return the file -- this should never happen.
622                  */
623                 DirExpandInt(word, path, expansions);
624             }
625         } else {
626             /*
627              * First the files in dot
628              */
629             DirMatchFiles(word, dot, expansions);
630
631             /*
632              * Then the files in every other directory on the path.
633              */
634             DirExpandInt(word, path, expansions);
635         }
636     }
637     if (DEBUG(DIR)) {
638         Lst_ForEach(expansions, DirPrintWord, (ClientData) 0);
639         fputc('\n', stdout);
640     }
641 }
642
643 /*-
644  *-----------------------------------------------------------------------
645  * Dir_FindFile  --
646  *      Find the file with the given name along the given search path.
647  *
648  * Results:
649  *      The path to the file or NULL. This path is guaranteed to be in a
650  *      different part of memory than name and so may be safely free'd.
651  *
652  * Side Effects:
653  *      If the file is found in a directory which is not on the path
654  *      already (either 'name' is absolute or it is a relative path
655  *      [ dir1/.../dirn/file ] which exists below one of the directories
656  *      already on the search path), its directory is added to the end
657  *      of the path on the assumption that there will be more files in
658  *      that directory later on. Sometimes this is true. Sometimes not.
659  *-----------------------------------------------------------------------
660  */
661 char *
662 Dir_FindFile (name, path)
663     char          *name;    /* the file to find */
664     Lst           path;     /* the Lst of directories to search */
665 {
666     register char *p1;      /* pointer into p->name */
667     register char *p2;      /* pointer into name */
668     LstNode       ln;       /* a list element */
669     register char *file;    /* the current filename to check */
670     register Path *p;       /* current path member */
671     register char *cp;      /* index of first slash, if any */
672     Boolean       hasSlash; /* true if 'name' contains a / */
673     struct stat   stb;      /* Buffer for stat, if necessary */
674     Hash_Entry    *entry;   /* Entry for mtimes table */
675
676     /*
677      * Find the final component of the name and note whether it has a
678      * slash in it (the name, I mean)
679      */
680     cp = strrchr (name, '/');
681     if (cp) {
682         hasSlash = TRUE;
683         cp += 1;
684     } else {
685         hasSlash = FALSE;
686         cp = name;
687     }
688
689     if (DEBUG(DIR)) {
690         printf("Searching for %s...", name);
691     }
692     /*
693      * No matter what, we always look for the file in the current directory
694      * before anywhere else and we *do not* add the ./ to it if it exists.
695      * This is so there are no conflicts between what the user specifies
696      * (fish.c) and what pmake finds (./fish.c).
697      */
698     if ((!hasSlash || (cp - name == 2 && *name == '.')) &&
699         (Hash_FindEntry (&dot->files, cp) != (Hash_Entry *)NULL)) {
700             if (DEBUG(DIR)) {
701                 printf("in '.'\n");
702             }
703             hits += 1;
704             dot->hits += 1;
705             return (estrdup (name));
706     }
707
708     if (Lst_Open (path) == FAILURE) {
709         if (DEBUG(DIR)) {
710             printf("couldn't open path, file not found\n");
711         }
712         misses += 1;
713         return ((char *) NULL);
714     }
715
716     /*
717      * We look through all the directories on the path seeking one which
718      * contains the final component of the given name and whose final
719      * component(s) match the name's initial component(s). If such a beast
720      * is found, we concatenate the directory name and the final component
721      * and return the resulting string. If we don't find any such thing,
722      * we go on to phase two...
723      */
724     while ((ln = Lst_Next (path)) != NILLNODE) {
725         p = (Path *) Lst_Datum (ln);
726         if (DEBUG(DIR)) {
727             printf("%s...", p->name);
728         }
729         if (Hash_FindEntry (&p->files, cp) != (Hash_Entry *)NULL) {
730             if (DEBUG(DIR)) {
731                 printf("here...");
732             }
733             if (hasSlash) {
734                 /*
735                  * If the name had a slash, its initial components and p's
736                  * final components must match. This is false if a mismatch
737                  * is encountered before all of the initial components
738                  * have been checked (p2 > name at the end of the loop), or
739                  * we matched only part of one of the components of p
740                  * along with all the rest of them (*p1 != '/').
741                  */
742                 p1 = p->name + strlen (p->name) - 1;
743                 p2 = cp - 2;
744                 while (p2 >= name && p1 >= p->name && *p1 == *p2) {
745                     p1 -= 1; p2 -= 1;
746                 }
747                 if (p2 >= name || (p1 >= p->name && *p1 != '/')) {
748                     if (DEBUG(DIR)) {
749                         printf("component mismatch -- continuing...");
750                     }
751                     continue;
752                 }
753             }
754             file = str_concat (p->name, cp, STR_ADDSLASH);
755             if (DEBUG(DIR)) {
756                 printf("returning %s\n", file);
757             }
758             Lst_Close (path);
759             p->hits += 1;
760             hits += 1;
761             return (file);
762         } else if (hasSlash) {
763             /*
764              * If the file has a leading path component and that component
765              * exactly matches the entire name of the current search
766              * directory, we assume the file doesn't exist and return NULL.
767              */
768             for (p1 = p->name, p2 = name; *p1 && *p1 == *p2; p1++, p2++) {
769                 continue;
770             }
771             if (*p1 == '\0' && p2 == cp - 1) {
772                 if (DEBUG(DIR)) {
773                     printf("must be here but isn't -- returing NULL\n");
774                 }
775                 Lst_Close (path);
776                 return ((char *) NULL);
777             }
778         }
779     }
780
781     /*
782      * We didn't find the file on any existing members of the directory.
783      * If the name doesn't contain a slash, that means it doesn't exist.
784      * If it *does* contain a slash, however, there is still hope: it
785      * could be in a subdirectory of one of the members of the search
786      * path. (eg. /usr/include and sys/types.h. The above search would
787      * fail to turn up types.h in /usr/include, but it *is* in
788      * /usr/include/sys/types.h) If we find such a beast, we assume there
789      * will be more (what else can we assume?) and add all but the last
790      * component of the resulting name onto the search path (at the
791      * end). This phase is only performed if the file is *not* absolute.
792      */
793     if (!hasSlash) {
794         if (DEBUG(DIR)) {
795             printf("failed.\n");
796         }
797         misses += 1;
798         return ((char *) NULL);
799     }
800
801     if (*name != '/') {
802         Boolean checkedDot = FALSE;
803
804         if (DEBUG(DIR)) {
805             printf("failed. Trying subdirectories...");
806         }
807         (void) Lst_Open (path);
808         while ((ln = Lst_Next (path)) != NILLNODE) {
809             p = (Path *) Lst_Datum (ln);
810             if (p != dot) {
811                 file = str_concat (p->name, name, STR_ADDSLASH);
812             } else {
813                 /*
814                  * Checking in dot -- DON'T put a leading ./ on the thing.
815                  */
816                 file = estrdup(name);
817                 checkedDot = TRUE;
818             }
819             if (DEBUG(DIR)) {
820                 printf("checking %s...", file);
821             }
822
823
824             if (stat (file, &stb) == 0) {
825                 if (DEBUG(DIR)) {
826                     printf("got it.\n");
827                 }
828
829                 Lst_Close (path);
830
831                 /*
832                  * We've found another directory to search. We know there's
833                  * a slash in 'file' because we put one there. We nuke it after
834                  * finding it and call Dir_AddDir to add this new directory
835                  * onto the existing search path. Once that's done, we restore
836                  * the slash and triumphantly return the file name, knowing
837                  * that should a file in this directory every be referenced
838                  * again in such a manner, we will find it without having to do
839                  * numerous numbers of access calls. Hurrah!
840                  */
841                 cp = strrchr (file, '/');
842                 *cp = '\0';
843                 Dir_AddDir (path, file);
844                 *cp = '/';
845
846                 /*
847                  * Save the modification time so if it's needed, we don't have
848                  * to fetch it again.
849                  */
850                 if (DEBUG(DIR)) {
851                     printf("Caching %s for %s\n", Targ_FmtTime(stb.st_mtime),
852                             file);
853                 }
854                 entry = Hash_CreateEntry(&mtimes, (char *) file,
855                                          (Boolean *)NULL);
856                 Hash_SetValue(entry, (long)stb.st_mtime);
857                 nearmisses += 1;
858                 return (file);
859             } else {
860                 free (file);
861             }
862         }
863
864         if (DEBUG(DIR)) {
865             printf("failed. ");
866         }
867         Lst_Close (path);
868
869         if (checkedDot) {
870             /*
871              * Already checked by the given name, since . was in the path,
872              * so no point in proceeding...
873              */
874             if (DEBUG(DIR)) {
875                 printf("Checked . already, returning NULL\n");
876             }
877             return(NULL);
878         }
879     }
880
881     /*
882      * Didn't find it that way, either. Sigh. Phase 3. Add its directory
883      * onto the search path in any case, just in case, then look for the
884      * thing in the hash table. If we find it, grand. We return a new
885      * copy of the name. Otherwise we sadly return a NULL pointer. Sigh.
886      * Note that if the directory holding the file doesn't exist, this will
887      * do an extra search of the final directory on the path. Unless something
888      * weird happens, this search won't succeed and life will be groovy.
889      *
890      * Sigh. We cannot add the directory onto the search path because
891      * of this amusing case:
892      * $(INSTALLDIR)/$(FILE): $(FILE)
893      *
894      * $(FILE) exists in $(INSTALLDIR) but not in the current one.
895      * When searching for $(FILE), we will find it in $(INSTALLDIR)
896      * b/c we added it here. This is not good...
897      */
898 #ifdef notdef
899     cp[-1] = '\0';
900     Dir_AddDir (path, name);
901     cp[-1] = '/';
902
903     bigmisses += 1;
904     ln = Lst_Last (path);
905     if (ln == NILLNODE) {
906         return ((char *) NULL);
907     } else {
908         p = (Path *) Lst_Datum (ln);
909     }
910
911     if (Hash_FindEntry (&p->files, cp) != (Hash_Entry *)NULL) {
912         return (estrdup (name));
913     } else {
914         return ((char *) NULL);
915     }
916 #else /* !notdef */
917     if (DEBUG(DIR)) {
918         printf("Looking for \"%s\"...", name);
919     }
920
921     bigmisses += 1;
922     entry = Hash_FindEntry(&mtimes, name);
923     if (entry != (Hash_Entry *)NULL) {
924         if (DEBUG(DIR)) {
925             printf("got it (in mtime cache)\n");
926         }
927         return(estrdup(name));
928     } else if (stat (name, &stb) == 0) {
929         entry = Hash_CreateEntry(&mtimes, name, (Boolean *)NULL);
930         if (DEBUG(DIR)) {
931             printf("Caching %s for %s\n", Targ_FmtTime(stb.st_mtime),
932                     name);
933         }
934         Hash_SetValue(entry, (long)stb.st_mtime);
935         return (estrdup (name));
936     } else {
937         if (DEBUG(DIR)) {
938             printf("failed. Returning NULL\n");
939         }
940         return ((char *)NULL);
941     }
942 #endif /* notdef */
943 }
944
945 /*-
946  *-----------------------------------------------------------------------
947  * Dir_MTime  --
948  *      Find the modification time of the file described by gn along the
949  *      search path dirSearchPath.
950  *
951  * Results:
952  *      The modification time or 0 if it doesn't exist
953  *
954  * Side Effects:
955  *      The modification time is placed in the node's mtime slot.
956  *      If the node didn't have a path entry before, and Dir_FindFile
957  *      found one for it, the full name is placed in the path slot.
958  *-----------------------------------------------------------------------
959  */
960 int
961 Dir_MTime (gn)
962     GNode         *gn;        /* the file whose modification time is
963                                * desired */
964 {
965     char          *fullName;  /* the full pathname of name */
966     struct stat   stb;        /* buffer for finding the mod time */
967     Hash_Entry    *entry;
968
969     if (gn->type & OP_ARCHV) {
970         return Arch_MTime (gn);
971     } else if (gn->path == (char *)NULL) {
972         fullName = Dir_FindFile (gn->name, dirSearchPath);
973     } else {
974         fullName = gn->path;
975     }
976
977     if (fullName == (char *)NULL) {
978         fullName = estrdup(gn->name);
979     }
980
981     entry = Hash_FindEntry(&mtimes, fullName);
982     if (entry != (Hash_Entry *)NULL) {
983         /*
984          * Only do this once -- the second time folks are checking to
985          * see if the file was actually updated, so we need to actually go
986          * to the file system.
987          */
988         if (DEBUG(DIR)) {
989             printf("Using cached time %s for %s\n",
990                     Targ_FmtTime((time_t)(long)Hash_GetValue(entry)), fullName);
991         }
992         stb.st_mtime = (time_t)(long)Hash_GetValue(entry);
993         Hash_DeleteEntry(&mtimes, entry);
994     } else if (stat (fullName, &stb) < 0) {
995         if (gn->type & OP_MEMBER) {
996             if (fullName != gn->path)
997                 free(fullName);
998             return Arch_MemMTime (gn);
999         } else {
1000             stb.st_mtime = 0;
1001         }
1002     }
1003     if (fullName && gn->path == (char *)NULL) {
1004         gn->path = fullName;
1005     }
1006
1007     gn->mtime = stb.st_mtime;
1008     return (gn->mtime);
1009 }
1010
1011 /*-
1012  *-----------------------------------------------------------------------
1013  * Dir_AddDir --
1014  *      Add the given name to the end of the given path. The order of
1015  *      the arguments is backwards so ParseDoDependency can do a
1016  *      Lst_ForEach of its list of paths...
1017  *
1018  * Results:
1019  *      none
1020  *
1021  * Side Effects:
1022  *      A structure is added to the list and the directory is
1023  *      read and hashed.
1024  *-----------------------------------------------------------------------
1025  */
1026 void
1027 Dir_AddDir (path, name)
1028     Lst           path;       /* the path to which the directory should be
1029                                * added */
1030     char          *name;      /* the name of the directory to add */
1031 {
1032     LstNode       ln;         /* node in case Path structure is found */
1033     register Path *p;         /* pointer to new Path structure */
1034     DIR           *d;         /* for reading directory */
1035     register struct dirent *dp; /* entry in directory */
1036
1037     ln = Lst_Find (openDirectories, (ClientData)name, DirFindName);
1038     if (ln != NILLNODE) {
1039         p = (Path *)Lst_Datum (ln);
1040         if (Lst_Member(path, (ClientData)p) == NILLNODE) {
1041             p->refCount += 1;
1042             (void)Lst_AtEnd (path, (ClientData)p);
1043         }
1044     } else {
1045         if (DEBUG(DIR)) {
1046             printf("Caching %s...", name);
1047             fflush(stdout);
1048         }
1049
1050         if ((d = opendir (name)) != (DIR *) NULL) {
1051             p = (Path *) emalloc (sizeof (Path));
1052             p->name = estrdup (name);
1053             p->hits = 0;
1054             p->refCount = 1;
1055             Hash_InitTable (&p->files, -1);
1056
1057             while ((dp = readdir (d)) != (struct dirent *) NULL) {
1058 #if defined(sun) && defined(d_ino) /* d_ino is a sunos4 #define for d_fileno */
1059                 /*
1060                  * The sun directory library doesn't check for a 0 inode
1061                  * (0-inode slots just take up space), so we have to do
1062                  * it ourselves.
1063                  */
1064                 if (dp->d_fileno == 0) {
1065                     continue;
1066                 }
1067 #endif /* sun && d_ino */
1068
1069                 /* Skip the '.' and '..' entries by checking for them
1070                  * specifically instead of assuming readdir() reuturns them in
1071                  * that order when first going through a directory.  This is
1072                  * needed for XFS over NFS filesystems since SGI does not
1073                  * guarantee that these are * the first two entries returned
1074                  * from readdir().
1075                  */
1076                 if (ISDOT(dp->d_name) || ISDOTDOT(dp->d_name))
1077                         continue;
1078
1079                 (void)Hash_CreateEntry(&p->files, dp->d_name, (Boolean *)NULL);
1080             }
1081             (void) closedir (d);
1082             (void)Lst_AtEnd (openDirectories, (ClientData)p);
1083             (void)Lst_AtEnd (path, (ClientData)p);
1084         }
1085         if (DEBUG(DIR)) {
1086             printf("done\n");
1087         }
1088     }
1089 }
1090
1091 /*-
1092  *-----------------------------------------------------------------------
1093  * Dir_CopyDir --
1094  *      Callback function for duplicating a search path via Lst_Duplicate.
1095  *      Ups the reference count for the directory.
1096  *
1097  * Results:
1098  *      Returns the Path it was given.
1099  *
1100  * Side Effects:
1101  *      The refCount of the path is incremented.
1102  *
1103  *-----------------------------------------------------------------------
1104  */
1105 ClientData
1106 Dir_CopyDir(p)
1107     ClientData p;
1108 {
1109     ((Path *) p)->refCount += 1;
1110
1111     return ((ClientData)p);
1112 }
1113
1114 /*-
1115  *-----------------------------------------------------------------------
1116  * Dir_MakeFlags --
1117  *      Make a string by taking all the directories in the given search
1118  *      path and preceding them by the given flag. Used by the suffix
1119  *      module to create variables for compilers based on suffix search
1120  *      paths.
1121  *
1122  * Results:
1123  *      The string mentioned above. Note that there is no space between
1124  *      the given flag and each directory. The empty string is returned if
1125  *      Things don't go well.
1126  *
1127  * Side Effects:
1128  *      None
1129  *-----------------------------------------------------------------------
1130  */
1131 char *
1132 Dir_MakeFlags (flag, path)
1133     char          *flag;  /* flag which should precede each directory */
1134     Lst           path;   /* list of directories */
1135 {
1136     char          *str;   /* the string which will be returned */
1137     char          *tstr;  /* the current directory preceded by 'flag' */
1138     LstNode       ln;     /* the node of the current directory */
1139     Path          *p;     /* the structure describing the current directory */
1140
1141     str = estrdup ("");
1142
1143     if (Lst_Open (path) == SUCCESS) {
1144         while ((ln = Lst_Next (path)) != NILLNODE) {
1145             p = (Path *) Lst_Datum (ln);
1146             tstr = str_concat (flag, p->name, 0);
1147             str = str_concat (str, tstr, STR_ADDSPACE | STR_DOFREE);
1148         }
1149         Lst_Close (path);
1150     }
1151
1152     return (str);
1153 }
1154
1155 /*-
1156  *-----------------------------------------------------------------------
1157  * Dir_Destroy --
1158  *      Nuke a directory descriptor, if possible. Callback procedure
1159  *      for the suffixes module when destroying a search path.
1160  *
1161  * Results:
1162  *      None.
1163  *
1164  * Side Effects:
1165  *      If no other path references this directory (refCount == 0),
1166  *      the Path and all its data are freed.
1167  *
1168  *-----------------------------------------------------------------------
1169  */
1170 void
1171 Dir_Destroy (pp)
1172     ClientData    pp;       /* The directory descriptor to nuke */
1173 {
1174     Path          *p = (Path *) pp;
1175     p->refCount -= 1;
1176
1177     if (p->refCount == 0) {
1178         LstNode ln;
1179
1180         ln = Lst_Member (openDirectories, (ClientData)p);
1181         (void) Lst_Remove (openDirectories, ln);
1182
1183         Hash_DeleteTable (&p->files);
1184         free((Address)p->name);
1185         free((Address)p);
1186     }
1187 }
1188
1189 /*-
1190  *-----------------------------------------------------------------------
1191  * Dir_ClearPath --
1192  *      Clear out all elements of the given search path. This is different
1193  *      from destroying the list, notice.
1194  *
1195  * Results:
1196  *      None.
1197  *
1198  * Side Effects:
1199  *      The path is set to the empty list.
1200  *
1201  *-----------------------------------------------------------------------
1202  */
1203 void
1204 Dir_ClearPath(path)
1205     Lst     path;       /* Path to clear */
1206 {
1207     Path    *p;
1208     while (!Lst_IsEmpty(path)) {
1209         p = (Path *)Lst_DeQueue(path);
1210         Dir_Destroy((ClientData) p);
1211     }
1212 }
1213
1214
1215 /*-
1216  *-----------------------------------------------------------------------
1217  * Dir_Concat --
1218  *      Concatenate two paths, adding the second to the end of the first.
1219  *      Makes sure to avoid duplicates.
1220  *
1221  * Results:
1222  *      None
1223  *
1224  * Side Effects:
1225  *      Reference counts for added dirs are upped.
1226  *
1227  *-----------------------------------------------------------------------
1228  */
1229 void
1230 Dir_Concat(path1, path2)
1231     Lst     path1;      /* Dest */
1232     Lst     path2;      /* Source */
1233 {
1234     LstNode ln;
1235     Path    *p;
1236
1237     for (ln = Lst_First(path2); ln != NILLNODE; ln = Lst_Succ(ln)) {
1238         p = (Path *)Lst_Datum(ln);
1239         if (Lst_Member(path1, (ClientData)p) == NILLNODE) {
1240             p->refCount += 1;
1241             (void)Lst_AtEnd(path1, (ClientData)p);
1242         }
1243     }
1244 }
1245
1246 /********** DEBUG INFO **********/
1247 void
1248 Dir_PrintDirectories()
1249 {
1250     LstNode     ln;
1251     Path        *p;
1252
1253     printf ("#*** Directory Cache:\n");
1254     printf ("# Stats: %d hits %d misses %d near misses %d losers (%d%%)\n",
1255               hits, misses, nearmisses, bigmisses,
1256               (hits+bigmisses+nearmisses ?
1257                hits * 100 / (hits + bigmisses + nearmisses) : 0));
1258     printf ("# %-20s referenced\thits\n", "directory");
1259     if (Lst_Open (openDirectories) == SUCCESS) {
1260         while ((ln = Lst_Next (openDirectories)) != NILLNODE) {
1261             p = (Path *) Lst_Datum (ln);
1262             printf ("# %-20s %10d\t%4d\n", p->name, p->refCount, p->hits);
1263         }
1264         Lst_Close (openDirectories);
1265     }
1266 }
1267
1268 static int DirPrintDir (p, dummy)
1269     ClientData  p;
1270     ClientData  dummy;
1271 {
1272     printf ("%s ", ((Path *) p)->name);
1273     return (dummy ? 0 : 0);
1274 }
1275
1276 void
1277 Dir_PrintPath (path)
1278     Lst path;
1279 {
1280     Lst_ForEach (path, DirPrintDir, (ClientData)0);
1281 }