1 /* $NetBSD: dir.c,v 1.71 2017/04/16 21:14:47 riastradh Exp $ */ 2 3 /* 4 * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. 5 * All rights reserved. 6 * 7 * This code is derived from software contributed to Berkeley by 8 * Adam de Boor. 9 * 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions 12 * are met: 13 * 1. Redistributions of source code must retain the above copyright 14 * notice, this list of conditions and the following disclaimer. 15 * 2. Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in the 17 * documentation and/or other materials provided with the distribution. 18 * 3. Neither the name of the University nor the names of its contributors 19 * may be used to endorse or promote products derived from this software 20 * without specific prior written permission. 21 * 22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 32 * SUCH DAMAGE. 33 */ 34 35 /* 36 * Copyright (c) 1988, 1989 by Adam de Boor 37 * Copyright (c) 1989 by Berkeley Softworks 38 * All rights reserved. 39 * 40 * This code is derived from software contributed to Berkeley by 41 * Adam de Boor. 42 * 43 * Redistribution and use in source and binary forms, with or without 44 * modification, are permitted provided that the following conditions 45 * are met: 46 * 1. Redistributions of source code must retain the above copyright 47 * notice, this list of conditions and the following disclaimer. 48 * 2. Redistributions in binary form must reproduce the above copyright 49 * notice, this list of conditions and the following disclaimer in the 50 * documentation and/or other materials provided with the distribution. 51 * 3. All advertising materials mentioning features or use of this software 52 * must display the following acknowledgement: 53 * This product includes software developed by the University of 54 * California, Berkeley and its contributors. 55 * 4. Neither the name of the University nor the names of its contributors 56 * may be used to endorse or promote products derived from this software 57 * without specific prior written permission. 58 * 59 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 60 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 61 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 62 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 63 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 64 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 65 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 66 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 67 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 68 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 69 * SUCH DAMAGE. 70 */ 71 72 #ifndef MAKE_NATIVE 73 static char rcsid[] = "$NetBSD: dir.c,v 1.71 2017/04/16 21:14:47 riastradh Exp $"; 74 #else 75 #include <sys/cdefs.h> 76 #ifndef lint 77 #if 0 78 static char sccsid[] = "@(#)dir.c 8.2 (Berkeley) 1/2/94"; 79 #else 80 __RCSID("$NetBSD: dir.c,v 1.71 2017/04/16 21:14:47 riastradh Exp $"); 81 #endif 82 #endif /* not lint */ 83 #endif 84 85 /*- 86 * dir.c -- 87 * Directory searching using wildcards and/or normal names... 88 * Used both for source wildcarding in the Makefile and for finding 89 * implicit sources. 90 * 91 * The interface for this module is: 92 * Dir_Init Initialize the module. 93 * 94 * Dir_InitCur Set the cur Path. 95 * 96 * Dir_InitDot Set the dot Path. 97 * 98 * Dir_End Cleanup the module. 99 * 100 * Dir_SetPATH Set ${.PATH} to reflect state of dirSearchPath. 101 * 102 * Dir_HasWildcards Returns TRUE if the name given it needs to 103 * be wildcard-expanded. 104 * 105 * Dir_Expand Given a pattern and a path, return a Lst of names 106 * which match the pattern on the search path. 107 * 108 * Dir_FindFile Searches for a file on a given search path. 109 * If it exists, the entire path is returned. 110 * Otherwise NULL is returned. 111 * 112 * Dir_FindHereOrAbove Search for a path in the current directory and 113 * then all the directories above it in turn until 114 * the path is found or we reach the root ("/"). 115 * 116 * Dir_MTime Return the modification time of a node. The file 117 * is searched for along the default search path. 118 * The path and mtime fields of the node are filled 119 * in. 120 * 121 * Dir_AddDir Add a directory to a search path. 122 * 123 * Dir_MakeFlags Given a search path and a command flag, create 124 * a string with each of the directories in the path 125 * preceded by the command flag and all of them 126 * separated by a space. 127 * 128 * Dir_Destroy Destroy an element of a search path. Frees up all 129 * things that can be freed for the element as long 130 * as the element is no longer referenced by any other 131 * search path. 132 * Dir_ClearPath Resets a search path to the empty list. 133 * 134 * For debugging: 135 * Dir_PrintDirectories Print stats about the directory cache. 136 */ 137 138 #include <sys/types.h> 139 #include <sys/stat.h> 140 141 #include <dirent.h> 142 #include <errno.h> 143 #include <stdio.h> 144 145 #include "make.h" 146 #include "hash.h" 147 #include "dir.h" 148 #include "job.h" 149 150 /* 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. 158 * 159 * A list of all previously-read directories is kept in the 160 * openDirectories Lst. This list is checked first before a directory 161 * is opened. 162 * 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: 170 * 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 182 * to me. 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 193 * stat in its place. 194 * 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. 201 * 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. 207 * 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. 218 */ 219 220 Lst dirSearchPath; /* main search path */ 221 222 static Lst openDirectories; /* the list of all open directories */ 223 224 /* 225 * Variables for gathering statistics on the efficiency of the hashing 226 * mechanism. 227 */ 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 */ 232 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 236 * look for . last */ 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... */ 246 247 static Hash_Table lmtimes; /* same as mtimes but for lstat */ 248 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 *); 259 260 261 /* 262 * We use stat(2) a lot, cache the results 263 * mtime and mode are all we care about. 264 */ 265 struct cache_st { 266 time_t mtime; 267 mode_t mode; 268 }; 269 270 /* minimize changes below */ 271 static time_t 272 Hash_GetTimeValue(Hash_Entry *entry) 273 { 274 struct cache_st *cst; 275 276 cst = entry->clientPtr; 277 return cst->mtime; 278 } 279 280 #define CST_LSTAT 1 281 #define CST_UPDATE 2 282 283 static int 284 cached_stats(Hash_Table *htp, const char *pathname, struct stat *st, int flags) 285 { 286 Hash_Entry *entry; 287 struct cache_st *cst; 288 int rc; 289 290 if (!pathname || !pathname[0]) 291 return -1; 292 293 entry = Hash_FindEntry(htp, pathname); 294 295 if (entry && (flags & CST_UPDATE) == 0) { 296 cst = entry->clientPtr; 297 298 memset(st, 0, sizeof(*st)); 299 st->st_mtime = cst->mtime; 300 st->st_mode = cst->mode; 301 return 0; 302 } 303 304 rc = (flags & CST_LSTAT) ? lstat(pathname, st) : stat(pathname, st); 305 if (rc == -1) 306 return -1; 307 308 if (st->st_mtime == 0) 309 st->st_mtime = 1; /* avoid confusion with missing file */ 310 311 if (!entry) 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; 318 319 return 0; 320 } 321 322 int 323 cached_stat(const char *pathname, void *st) 324 { 325 return cached_stats(&mtimes, pathname, st, 0); 326 } 327 328 int 329 cached_lstat(const char *pathname, void *st) 330 { 331 return cached_stats(&lmtimes, pathname, st, CST_LSTAT); 332 } 333 334 /*- 335 *----------------------------------------------------------------------- 336 * Dir_Init -- 337 * initialize things for this module 338 * 339 * Results: 340 * none 341 * 342 * Side Effects: 343 * some directories may be opened. 344 *----------------------------------------------------------------------- 345 */ 346 void 347 Dir_Init(const char *cdname) 348 { 349 if (!cdname) { 350 dirSearchPath = Lst_Init(FALSE); 351 openDirectories = Lst_Init(FALSE); 352 Hash_InitTable(&mtimes, 0); 353 Hash_InitTable(&lmtimes, 0); 354 return; 355 } 356 Dir_InitCur(cdname); 357 358 dotLast = bmake_malloc(sizeof(Path)); 359 dotLast->refCount = 1; 360 dotLast->hits = 0; 361 dotLast->name = bmake_strdup(".DOTLAST"); 362 Hash_InitTable(&dotLast->files, -1); 363 } 364 365 /* 366 * Called by Dir_Init() and whenever .CURDIR is assigned to. 367 */ 368 void 369 Dir_InitCur(const char *cdname) 370 { 371 Path *p; 372 373 if (cdname != NULL) { 374 /* 375 * Our build directory is not the same as our source directory. 376 * Keep this one around too. 377 */ 378 if ((p = Dir_AddDir(NULL, cdname))) { 379 p->refCount += 1; 380 if (cur && cur != p) { 381 /* 382 * We've been here before, cleanup. 383 */ 384 cur->refCount -= 1; 385 Dir_Destroy(cur); 386 } 387 cur = p; 388 } 389 } 390 } 391 392 /*- 393 *----------------------------------------------------------------------- 394 * Dir_InitDot -- 395 * (re)initialize "dot" (current/object directory) path hash 396 * 397 * Results: 398 * none 399 * 400 * Side Effects: 401 * some directories may be opened. 402 *----------------------------------------------------------------------- 403 */ 404 void 405 Dir_InitDot(void) 406 { 407 if (dot != NULL) { 408 LstNode ln; 409 410 /* Remove old entry from openDirectories, but do not destroy. */ 411 ln = Lst_Member(openDirectories, dot); 412 (void)Lst_Remove(openDirectories, ln); 413 } 414 415 dot = Dir_AddDir(NULL, "."); 416 417 if (dot == NULL) { 418 Error("Cannot open `.' (%s)", strerror(errno)); 419 exit(1); 420 } 421 422 /* 423 * We always need to have dot around, so we increment its reference count 424 * to make sure it's not destroyed. 425 */ 426 dot->refCount += 1; 427 Dir_SetPATH(); /* initialize */ 428 } 429 430 /*- 431 *----------------------------------------------------------------------- 432 * Dir_End -- 433 * cleanup things for this module 434 * 435 * Results: 436 * none 437 * 438 * Side Effects: 439 * none 440 *----------------------------------------------------------------------- 441 */ 442 void 443 Dir_End(void) 444 { 445 #ifdef CLEANUP 446 if (cur) { 447 cur->refCount -= 1; 448 Dir_Destroy(cur); 449 } 450 dot->refCount -= 1; 451 dotLast->refCount -= 1; 452 Dir_Destroy(dotLast); 453 Dir_Destroy(dot); 454 Dir_ClearPath(dirSearchPath); 455 Lst_Destroy(dirSearchPath, NULL); 456 Dir_ClearPath(openDirectories); 457 Lst_Destroy(openDirectories, NULL); 458 Hash_DeleteTable(&mtimes); 459 #endif 460 } 461 462 /* 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. 466 */ 467 void 468 Dir_SetPATH(void) 469 { 470 LstNode ln; /* a list element */ 471 Path *p; 472 Boolean hasLastDot = FALSE; /* true we should search dot last */ 473 474 Var_Delete(".PATH", VAR_GLOBAL); 475 476 if (Lst_Open(dirSearchPath) == SUCCESS) { 477 if ((ln = Lst_First(dirSearchPath)) != NULL) { 478 p = (Path *)Lst_Datum(ln); 479 if (p == dotLast) { 480 hasLastDot = TRUE; 481 Var_Append(".PATH", dotLast->name, VAR_GLOBAL); 482 } 483 } 484 485 if (!hasLastDot) { 486 if (dot) 487 Var_Append(".PATH", dot->name, VAR_GLOBAL); 488 if (cur) 489 Var_Append(".PATH", cur->name, VAR_GLOBAL); 490 } 491 492 while ((ln = Lst_Next(dirSearchPath)) != NULL) { 493 p = (Path *)Lst_Datum(ln); 494 if (p == dotLast) 495 continue; 496 if (p == dot && hasLastDot) 497 continue; 498 Var_Append(".PATH", p->name, VAR_GLOBAL); 499 } 500 501 if (hasLastDot) { 502 if (dot) 503 Var_Append(".PATH", dot->name, VAR_GLOBAL); 504 if (cur) 505 Var_Append(".PATH", cur->name, VAR_GLOBAL); 506 } 507 Lst_Close(dirSearchPath); 508 } 509 } 510 511 /*- 512 *----------------------------------------------------------------------- 513 * DirFindName -- 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. 517 * 518 * Input: 519 * p Current name 520 * dname Desired name 521 * 522 * Results: 523 * 0 if it is the same. Non-zero otherwise 524 * 525 * Side Effects: 526 * None 527 *----------------------------------------------------------------------- 528 */ 529 static int 530 DirFindName(const void *p, const void *dname) 531 { 532 return (strcmp(((const Path *)p)->name, dname)); 533 } 534 535 /*- 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! 544 * 545 * Input: 546 * name name to check 547 * 548 * Results: 549 * returns TRUE if the word should be expanded, FALSE otherwise 550 * 551 * Side Effects: 552 * none 553 *----------------------------------------------------------------------- 554 */ 555 Boolean 556 Dir_HasWildcards(char *name) 557 { 558 char *cp; 559 int wild = 0, brace = 0, bracket = 0; 560 561 for (cp = name; *cp; cp++) { 562 switch(*cp) { 563 case '{': 564 brace++; 565 wild = 1; 566 break; 567 case '}': 568 brace--; 569 break; 570 case '[': 571 bracket++; 572 wild = 1; 573 break; 574 case ']': 575 bracket--; 576 break; 577 case '?': 578 case '*': 579 wild = 1; 580 break; 581 default: 582 break; 583 } 584 } 585 return wild && bracket == 0 && brace == 0; 586 } 587 588 /*- 589 *----------------------------------------------------------------------- 590 * DirMatchFiles -- 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 595 * will do for now. 596 * 597 * Input: 598 * pattern Pattern to look for 599 * p Directory to search 600 * expansion Place to store the results 601 * 602 * Results: 603 * Always returns 0 604 * 605 * Side Effects: 606 * File names are added to the expansions lst. The directory will be 607 * fully hashed when this is done. 608 *----------------------------------------------------------------------- 609 */ 610 static int 611 DirMatchFiles(const char *pattern, Path *p, Lst expansions) 612 { 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 . */ 616 617 isDot = (*p->name == '.' && p->name[1] == '\0'); 618 619 for (entry = Hash_EnumFirst(&p->files, &search); 620 entry != NULL; 621 entry = Hash_EnumNext(&search)) 622 { 623 /* 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). 628 */ 629 if (Str_Match(entry->name, pattern) && 630 ((entry->name[0] != '.') || 631 (pattern[0] == '.'))) 632 { 633 (void)Lst_AtEnd(expansions, 634 (isDot ? bmake_strdup(entry->name) : 635 str_concat(p->name, entry->name, 636 STR_ADDSLASH))); 637 } 638 } 639 return (0); 640 } 641 642 /*- 643 *----------------------------------------------------------------------- 644 * DirExpandCurly -- 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. 649 * 650 * Input: 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 655 * 656 * Results: 657 * None. 658 * 659 * Side Effects: 660 * The given list is filled with the expansions... 661 * 662 *----------------------------------------------------------------------- 663 */ 664 static void 665 DirExpandCurly(const char *word, const char *brace, Lst path, Lst expansions) 666 { 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 */ 679 680 start = brace+1; 681 682 /* 683 * Find the end of the brace clause first, being wary of nested brace 684 * clauses. 685 */ 686 for (end = start, bracelevel = 0; *end != '\0'; end++) { 687 if (*end == '{') { 688 bracelevel++; 689 } else if ((*end == '}') && (bracelevel-- == 0)) { 690 break; 691 } 692 } 693 if (*end == '\0') { 694 Error("Unterminated {} clause \"%s\"", start); 695 return; 696 } else { 697 end++; 698 } 699 otherLen = brace - word + strlen(end); 700 701 for (cp = start; cp < end; cp++) { 702 /* 703 * Find the end of this piece of the clause. 704 */ 705 bracelevel = 0; 706 while (*cp != ',') { 707 if (*cp == '{') { 708 bracelevel++; 709 } else if ((*cp == '}') && (bracelevel-- <= 0)) { 710 break; 711 } 712 cp++; 713 } 714 /* 715 * Allocate room for the combination and install the three pieces. 716 */ 717 file = bmake_malloc(otherLen + cp - start + 1); 718 if (brace != word) { 719 strncpy(file, word, brace-word); 720 } 721 if (cp != start) { 722 strncpy(&file[brace-word], start, cp-start); 723 } 724 strcpy(&file[(brace-word)+(cp-start)], end); 725 726 /* 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 729 * of expansions. 730 */ 731 for (cp2 = file; *cp2 != '\0'; cp2++) { 732 switch(*cp2) { 733 case '*': 734 case '?': 735 case '{': 736 case '[': 737 Dir_Expand(file, path, expansions); 738 goto next; 739 } 740 } 741 if (*cp2 == '\0') { 742 /* 743 * Hit the end w/o finding any wildcards, so stick the expansion 744 * on the end of the list. 745 */ 746 (void)Lst_AtEnd(expansions, file); 747 } else { 748 next: 749 free(file); 750 } 751 start = cp+1; 752 } 753 } 754 755 756 /*- 757 *----------------------------------------------------------------------- 758 * DirExpandInt -- 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... 762 * 763 * Input: 764 * word Word to expand 765 * path Path on which to look 766 * expansions Place to store the result 767 * 768 * Results: 769 * None. 770 * 771 * Side Effects: 772 * Things are added to the expansions list. 773 * 774 *----------------------------------------------------------------------- 775 */ 776 static void 777 DirExpandInt(const char *word, Lst path, Lst expansions) 778 { 779 LstNode ln; /* Current node */ 780 Path *p; /* Directory in the node */ 781 782 if (Lst_Open(path) == SUCCESS) { 783 while ((ln = Lst_Next(path)) != NULL) { 784 p = (Path *)Lst_Datum(ln); 785 DirMatchFiles(word, p, expansions); 786 } 787 Lst_Close(path); 788 } 789 } 790 791 /*- 792 *----------------------------------------------------------------------- 793 * DirPrintWord -- 794 * Print a word in the list of expansions. Callback for Dir_Expand 795 * when DEBUG(DIR), via Lst_ForEach. 796 * 797 * Results: 798 * === 0 799 * 800 * Side Effects: 801 * The passed word is printed, followed by a space. 802 * 803 *----------------------------------------------------------------------- 804 */ 805 static int 806 DirPrintWord(void *word, void *dummy MAKE_ATTR_UNUSED) 807 { 808 fprintf(debug_file, "%s ", (char *)word); 809 810 return 0; 811 } 812 813 /*- 814 *----------------------------------------------------------------------- 815 * Dir_Expand -- 816 * Expand the given word into a list of words by globbing it looking 817 * in the directories on the given search path. 818 * 819 * Input: 820 * word the word to expand 821 * path the list of directories in which to find the 822 * resulting files 823 * expansions the list on which to place the results 824 * 825 * Results: 826 * A list of words consisting of the files which exist along the search 827 * path matching the given pattern. 828 * 829 * Side Effects: 830 * Directories may be opened. Who knows? 831 *----------------------------------------------------------------------- 832 */ 833 void 834 Dir_Expand(const char *word, Lst path, Lst expansions) 835 { 836 const char *cp; 837 838 if (DEBUG(DIR)) { 839 fprintf(debug_file, "Expanding \"%s\"... ", word); 840 } 841 842 cp = strchr(word, '{'); 843 if (cp) { 844 DirExpandCurly(word, cp, path, expansions); 845 } else { 846 cp = strchr(word, '/'); 847 if (cp) { 848 /* 849 * The thing has a directory component -- find the first wildcard 850 * in the string. 851 */ 852 for (cp = word; *cp; cp++) { 853 if (*cp == '?' || *cp == '[' || *cp == '*' || *cp == '{') { 854 break; 855 } 856 } 857 if (*cp == '{') { 858 /* 859 * This one will be fun. 860 */ 861 DirExpandCurly(word, cp, path, expansions); 862 return; 863 } else if (*cp != '\0') { 864 /* 865 * Back up to the start of the component 866 */ 867 char *dirpath; 868 869 while (cp > word && *cp != '/') { 870 cp--; 871 } 872 if (cp != word) { 873 char sc; 874 /* 875 * If the glob isn't in the first component, try and find 876 * all the components up to the one with a wildcard. 877 */ 878 sc = cp[1]; 879 ((char *)UNCONST(cp))[1] = '\0'; 880 dirpath = Dir_FindFile(word, path); 881 ((char *)UNCONST(cp))[1] = sc; 882 /* 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. 888 */ 889 if (dirpath != NULL) { 890 char *dp = &dirpath[strlen(dirpath) - 1]; 891 if (*dp == '/') 892 *dp = '\0'; 893 path = Lst_Init(FALSE); 894 (void)Dir_AddDir(path, dirpath); 895 DirExpandInt(cp+1, path, expansions); 896 Lst_Destroy(path, NULL); 897 } 898 } else { 899 /* 900 * Start the search from the local directory 901 */ 902 DirExpandInt(word, path, expansions); 903 } 904 } else { 905 /* 906 * Return the file -- this should never happen. 907 */ 908 DirExpandInt(word, path, expansions); 909 } 910 } else { 911 /* 912 * First the files in dot 913 */ 914 DirMatchFiles(word, dot, expansions); 915 916 /* 917 * Then the files in every other directory on the path. 918 */ 919 DirExpandInt(word, path, expansions); 920 } 921 } 922 if (DEBUG(DIR)) { 923 Lst_ForEach(expansions, DirPrintWord, NULL); 924 fprintf(debug_file, "\n"); 925 } 926 } 927 928 /*- 929 *----------------------------------------------------------------------- 930 * DirLookup -- 931 * Find if the file with the given name exists in the given path. 932 * 933 * Results: 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. 936 * 937 * Side Effects: 938 * None. 939 *----------------------------------------------------------------------- 940 */ 941 static char * 942 DirLookup(Path *p, const char *name MAKE_ATTR_UNUSED, const char *cp, 943 Boolean hasSlash MAKE_ATTR_UNUSED) 944 { 945 char *file; /* the current filename to check */ 946 947 if (DEBUG(DIR)) { 948 fprintf(debug_file, " %s ...\n", p->name); 949 } 950 951 if (Hash_FindEntry(&p->files, cp) == NULL) 952 return NULL; 953 954 file = str_concat(p->name, cp, STR_ADDSLASH); 955 if (DEBUG(DIR)) { 956 fprintf(debug_file, " returning %s\n", file); 957 } 958 p->hits += 1; 959 hits += 1; 960 return file; 961 } 962 963 964 /*- 965 *----------------------------------------------------------------------- 966 * DirLookupSubdir -- 967 * Find if the file with the given name exists in the given path. 968 * 969 * Results: 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. 972 * 973 * Side Effects: 974 * If the file is found, it is added in the modification times hash 975 * table. 976 *----------------------------------------------------------------------- 977 */ 978 static char * 979 DirLookupSubdir(Path *p, const char *name) 980 { 981 struct stat stb; /* Buffer for stat, if necessary */ 982 char *file; /* the current filename to check */ 983 984 if (p != dot) { 985 file = str_concat(p->name, name, STR_ADDSLASH); 986 } else { 987 /* 988 * Checking in dot -- DON'T put a leading ./ on the thing. 989 */ 990 file = bmake_strdup(name); 991 } 992 993 if (DEBUG(DIR)) { 994 fprintf(debug_file, "checking %s ...\n", file); 995 } 996 997 if (cached_stat(file, &stb) == 0) { 998 /* 999 * Save the modification time so if it's needed, we don't have 1000 * to fetch it again. 1001 */ 1002 if (DEBUG(DIR)) { 1003 fprintf(debug_file, " Caching %s for %s\n", Targ_FmtTime(stb.st_mtime), 1004 file); 1005 } 1006 nearmisses += 1; 1007 return (file); 1008 } 1009 free(file); 1010 return NULL; 1011 } 1012 1013 /*- 1014 *----------------------------------------------------------------------- 1015 * DirLookupAbs -- 1016 * Find if the file with the given name exists in the given path. 1017 * 1018 * Results: 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. 1023 * 1024 * Side Effects: 1025 * None. 1026 *----------------------------------------------------------------------- 1027 */ 1028 static char * 1029 DirLookupAbs(Path *p, const char *name, const char *cp) 1030 { 1031 char *p1; /* pointer into p->name */ 1032 const char *p2; /* pointer into name */ 1033 1034 if (DEBUG(DIR)) { 1035 fprintf(debug_file, " %s ...\n", p->name); 1036 } 1037 1038 /* 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. 1043 */ 1044 for (p1 = p->name, p2 = name; *p1 && *p1 == *p2; p1++, p2++) { 1045 continue; 1046 } 1047 if (*p1 != '\0' || p2 != cp - 1) { 1048 return NULL; 1049 } 1050 1051 if (Hash_FindEntry(&p->files, cp) == NULL) { 1052 if (DEBUG(DIR)) { 1053 fprintf(debug_file, " must be here but isn't -- returning\n"); 1054 } 1055 /* Return empty string: terminates search */ 1056 return bmake_strdup(""); 1057 } 1058 1059 p->hits += 1; 1060 hits += 1; 1061 if (DEBUG(DIR)) { 1062 fprintf(debug_file, " returning %s\n", name); 1063 } 1064 return (bmake_strdup(name)); 1065 } 1066 1067 /*- 1068 *----------------------------------------------------------------------- 1069 * DirFindDot -- 1070 * Find the file given on "." or curdir 1071 * 1072 * Results: 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. 1075 * 1076 * Side Effects: 1077 * Hit counts change 1078 *----------------------------------------------------------------------- 1079 */ 1080 static char * 1081 DirFindDot(Boolean hasSlash MAKE_ATTR_UNUSED, const char *name, const char *cp) 1082 { 1083 1084 if (Hash_FindEntry(&dot->files, cp) != NULL) { 1085 if (DEBUG(DIR)) { 1086 fprintf(debug_file, " in '.'\n"); 1087 } 1088 hits += 1; 1089 dot->hits += 1; 1090 return (bmake_strdup(name)); 1091 } 1092 if (cur && 1093 Hash_FindEntry(&cur->files, cp) != NULL) { 1094 if (DEBUG(DIR)) { 1095 fprintf(debug_file, " in ${.CURDIR} = %s\n", cur->name); 1096 } 1097 hits += 1; 1098 cur->hits += 1; 1099 return str_concat(cur->name, cp, STR_ADDSLASH); 1100 } 1101 1102 return NULL; 1103 } 1104 1105 /*- 1106 *----------------------------------------------------------------------- 1107 * Dir_FindFile -- 1108 * Find the file with the given name along the given search path. 1109 * 1110 * Input: 1111 * name the file to find 1112 * path the Lst of directories to search 1113 * 1114 * Results: 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. 1117 * 1118 * Side Effects: 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 *----------------------------------------------------------------------- 1126 */ 1127 char * 1128 Dir_FindFile(const char *name, Lst path) 1129 { 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 = "."; 1139 1140 /* 1141 * Find the final component of the name and note whether it has a 1142 * slash in it (the name, I mean) 1143 */ 1144 cp = strrchr(name, '/'); 1145 if (cp) { 1146 hasSlash = TRUE; 1147 cp += 1; 1148 } else { 1149 hasSlash = FALSE; 1150 cp = name; 1151 } 1152 1153 if (DEBUG(DIR)) { 1154 fprintf(debug_file, "Searching for %s ...", name); 1155 } 1156 1157 if (Lst_Open(path) == FAILURE) { 1158 if (DEBUG(DIR)) { 1159 fprintf(debug_file, "couldn't open path, file not found\n"); 1160 } 1161 misses += 1; 1162 return NULL; 1163 } 1164 1165 if ((ln = Lst_First(path)) != NULL) { 1166 p = (Path *)Lst_Datum(ln); 1167 if (p == dotLast) { 1168 hasLastDot = TRUE; 1169 if (DEBUG(DIR)) 1170 fprintf(debug_file, "[dot last]..."); 1171 } 1172 } 1173 if (DEBUG(DIR)) { 1174 fprintf(debug_file, "\n"); 1175 } 1176 1177 /* 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. 1181 */ 1182 if (!hasSlash || (cp - name == 2 && *name == '.')) { 1183 /* 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... 1189 * 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). 1196 */ 1197 if (!hasLastDot && 1198 (file = DirFindDot(hasSlash, name, cp)) != NULL) { 1199 Lst_Close(path); 1200 return file; 1201 } 1202 1203 while ((ln = Lst_Next(path)) != NULL) { 1204 p = (Path *)Lst_Datum(ln); 1205 if (p == dotLast) 1206 continue; 1207 if ((file = DirLookup(p, name, cp, hasSlash)) != NULL) { 1208 Lst_Close(path); 1209 return file; 1210 } 1211 } 1212 1213 if (hasLastDot && 1214 (file = DirFindDot(hasSlash, name, cp)) != NULL) { 1215 Lst_Close(path); 1216 return file; 1217 } 1218 } 1219 Lst_Close(path); 1220 1221 /* 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 1232 * end).] 1233 * This phase is only performed if the file is *not* absolute. 1234 */ 1235 if (!hasSlash) { 1236 if (DEBUG(DIR)) { 1237 fprintf(debug_file, " failed.\n"); 1238 } 1239 misses += 1; 1240 return NULL; 1241 } 1242 1243 if (*cp == '\0') { 1244 /* we were given a trailing "/" */ 1245 cp = trailing_dot; 1246 } 1247 1248 if (name[0] != '/') { 1249 Boolean checkedDot = FALSE; 1250 1251 if (DEBUG(DIR)) { 1252 fprintf(debug_file, " Trying subdirectories...\n"); 1253 } 1254 1255 if (!hasLastDot) { 1256 if (dot) { 1257 checkedDot = TRUE; 1258 if ((file = DirLookupSubdir(dot, name)) != NULL) 1259 return file; 1260 } 1261 if (cur && (file = DirLookupSubdir(cur, name)) != NULL) 1262 return file; 1263 } 1264 1265 (void)Lst_Open(path); 1266 while ((ln = Lst_Next(path)) != NULL) { 1267 p = (Path *)Lst_Datum(ln); 1268 if (p == dotLast) 1269 continue; 1270 if (p == dot) { 1271 if (checkedDot) 1272 continue; 1273 checkedDot = TRUE; 1274 } 1275 if ((file = DirLookupSubdir(p, name)) != NULL) { 1276 Lst_Close(path); 1277 return file; 1278 } 1279 } 1280 Lst_Close(path); 1281 1282 if (hasLastDot) { 1283 if (dot && !checkedDot) { 1284 checkedDot = TRUE; 1285 if ((file = DirLookupSubdir(dot, name)) != NULL) 1286 return file; 1287 } 1288 if (cur && (file = DirLookupSubdir(cur, name)) != NULL) 1289 return file; 1290 } 1291 1292 if (checkedDot) { 1293 /* 1294 * Already checked by the given name, since . was in the path, 1295 * so no point in proceeding... 1296 */ 1297 if (DEBUG(DIR)) { 1298 fprintf(debug_file, " Checked . already, returning NULL\n"); 1299 } 1300 return NULL; 1301 } 1302 1303 } else { /* name[0] == '/' */ 1304 1305 /* 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. 1313 */ 1314 if (DEBUG(DIR)) { 1315 fprintf(debug_file, " Trying exact path matches...\n"); 1316 } 1317 1318 if (!hasLastDot && cur && ((file = DirLookupAbs(cur, name, cp)) 1319 != NULL)) { 1320 if (file[0] == '\0') { 1321 free(file); 1322 return NULL; 1323 } 1324 return file; 1325 } 1326 1327 (void)Lst_Open(path); 1328 while ((ln = Lst_Next(path)) != NULL) { 1329 p = (Path *)Lst_Datum(ln); 1330 if (p == dotLast) 1331 continue; 1332 if ((file = DirLookupAbs(p, name, cp)) != NULL) { 1333 Lst_Close(path); 1334 if (file[0] == '\0') { 1335 free(file); 1336 return NULL; 1337 } 1338 return file; 1339 } 1340 } 1341 Lst_Close(path); 1342 1343 if (hasLastDot && cur && ((file = DirLookupAbs(cur, name, cp)) 1344 != NULL)) { 1345 if (file[0] == '\0') { 1346 free(file); 1347 return NULL; 1348 } 1349 return file; 1350 } 1351 } 1352 1353 /* 1354 * Didn't find it that way, either. Sigh. Phase 3. Add its directory 1355 * onto the search path in any case, just in case, then look for the 1356 * thing in the hash table. If we find it, grand. We return a new 1357 * copy of the name. Otherwise we sadly return a NULL pointer. Sigh. 1358 * Note that if the directory holding the file doesn't exist, this will 1359 * do an extra search of the final directory on the path. Unless something 1360 * weird happens, this search won't succeed and life will be groovy. 1361 * 1362 * Sigh. We cannot add the directory onto the search path because 1363 * of this amusing case: 1364 * $(INSTALLDIR)/$(FILE): $(FILE) 1365 * 1366 * $(FILE) exists in $(INSTALLDIR) but not in the current one. 1367 * When searching for $(FILE), we will find it in $(INSTALLDIR) 1368 * b/c we added it here. This is not good... 1369 */ 1370 #ifdef notdef 1371 if (cp == traling_dot) { 1372 cp = strrchr(name, '/'); 1373 cp += 1; 1374 } 1375 cp[-1] = '\0'; 1376 (void)Dir_AddDir(path, name); 1377 cp[-1] = '/'; 1378 1379 bigmisses += 1; 1380 ln = Lst_Last(path); 1381 if (ln == NULL) { 1382 return NULL; 1383 } else { 1384 p = (Path *)Lst_Datum(ln); 1385 } 1386 1387 if (Hash_FindEntry(&p->files, cp) != NULL) { 1388 return (bmake_strdup(name)); 1389 } else { 1390 return NULL; 1391 } 1392 #else /* !notdef */ 1393 if (DEBUG(DIR)) { 1394 fprintf(debug_file, " Looking for \"%s\" ...\n", name); 1395 } 1396 1397 bigmisses += 1; 1398 entry = Hash_FindEntry(&mtimes, name); 1399 if (entry != NULL) { 1400 if (DEBUG(DIR)) { 1401 fprintf(debug_file, " got it (in mtime cache)\n"); 1402 } 1403 return(bmake_strdup(name)); 1404 } else if (cached_stat(name, &stb) == 0) { 1405 if (DEBUG(DIR)) { 1406 fprintf(debug_file, " Caching %s for %s\n", Targ_FmtTime(stb.st_mtime), 1407 name); 1408 } 1409 return (bmake_strdup(name)); 1410 } else { 1411 if (DEBUG(DIR)) { 1412 fprintf(debug_file, " failed. Returning NULL\n"); 1413 } 1414 return NULL; 1415 } 1416 #endif /* notdef */ 1417 } 1418 1419 1420 /*- 1421 *----------------------------------------------------------------------- 1422 * Dir_FindHereOrAbove -- 1423 * search for a path starting at a given directory and then working 1424 * our way up towards the root. 1425 * 1426 * Input: 1427 * here starting directory 1428 * search_path the path we are looking for 1429 * result the result of a successful search is placed here 1430 * rlen the length of the result buffer 1431 * (typically MAXPATHLEN + 1) 1432 * 1433 * Results: 1434 * 0 on failure, 1 on success [in which case the found path is put 1435 * in the result buffer]. 1436 * 1437 * Side Effects: 1438 *----------------------------------------------------------------------- 1439 */ 1440 int 1441 Dir_FindHereOrAbove(char *here, char *search_path, char *result, int rlen) { 1442 1443 struct stat st; 1444 char dirbase[MAXPATHLEN + 1], *db_end; 1445 char try[MAXPATHLEN + 1], *try_end; 1446 1447 /* copy out our starting point */ 1448 snprintf(dirbase, sizeof(dirbase), "%s", here); 1449 db_end = dirbase + strlen(dirbase); 1450 1451 /* loop until we determine a result */ 1452 while (1) { 1453 1454 /* try and stat(2) it ... */ 1455 snprintf(try, sizeof(try), "%s/%s", dirbase, search_path); 1456 if (cached_stat(try, &st) != -1) { 1457 /* 1458 * success! if we found a file, chop off 1459 * the filename so we return a directory. 1460 */ 1461 if ((st.st_mode & S_IFMT) != S_IFDIR) { 1462 try_end = try + strlen(try); 1463 while (try_end > try && *try_end != '/') 1464 try_end--; 1465 if (try_end > try) 1466 *try_end = 0; /* chop! */ 1467 } 1468 1469 /* 1470 * done! 1471 */ 1472 snprintf(result, rlen, "%s", try); 1473 return(1); 1474 } 1475 1476 /* 1477 * nope, we didn't find it. if we used up dirbase we've 1478 * reached the root and failed. 1479 */ 1480 if (db_end == dirbase) 1481 break; /* failed! */ 1482 1483 /* 1484 * truncate dirbase from the end to move up a dir 1485 */ 1486 while (db_end > dirbase && *db_end != '/') 1487 db_end--; 1488 *db_end = 0; /* chop! */ 1489 1490 } /* while (1) */ 1491 1492 /* 1493 * we failed... 1494 */ 1495 return(0); 1496 } 1497 1498 /*- 1499 *----------------------------------------------------------------------- 1500 * Dir_MTime -- 1501 * Find the modification time of the file described by gn along the 1502 * search path dirSearchPath. 1503 * 1504 * Input: 1505 * gn the file whose modification time is desired 1506 * 1507 * Results: 1508 * The modification time or 0 if it doesn't exist 1509 * 1510 * Side Effects: 1511 * The modification time is placed in the node's mtime slot. 1512 * If the node didn't have a path entry before, and Dir_FindFile 1513 * found one for it, the full name is placed in the path slot. 1514 *----------------------------------------------------------------------- 1515 */ 1516 int 1517 Dir_MTime(GNode *gn, Boolean recheck) 1518 { 1519 char *fullName; /* the full pathname of name */ 1520 struct stat stb; /* buffer for finding the mod time */ 1521 Hash_Entry *entry; 1522 1523 if (gn->type & OP_ARCHV) { 1524 return Arch_MTime(gn); 1525 } else if (gn->type & OP_PHONY) { 1526 gn->mtime = 0; 1527 return 0; 1528 } else if (gn->path == NULL) { 1529 if (gn->type & OP_NOPATH) 1530 fullName = NULL; 1531 else { 1532 fullName = Dir_FindFile(gn->name, Suff_FindPath(gn)); 1533 if (fullName == NULL && gn->flags & FROM_DEPEND && 1534 !Lst_IsEmpty(gn->iParents)) { 1535 char *cp; 1536 1537 cp = strrchr(gn->name, '/'); 1538 if (cp) { 1539 /* 1540 * This is an implied source, and it may have moved, 1541 * see if we can find it via the current .PATH 1542 */ 1543 cp++; 1544 1545 fullName = Dir_FindFile(cp, Suff_FindPath(gn)); 1546 if (fullName) { 1547 /* 1548 * Put the found file in gn->path 1549 * so that we give that to the compiler. 1550 */ 1551 gn->path = bmake_strdup(fullName); 1552 if (!Job_RunTarget(".STALE", gn->fname)) 1553 fprintf(stdout, 1554 "%s: %s, %d: ignoring stale %s for %s, " 1555 "found %s\n", progname, gn->fname, gn->lineno, 1556 makeDependfile, gn->name, fullName); 1557 } 1558 } 1559 } 1560 if (DEBUG(DIR)) 1561 fprintf(debug_file, "Found '%s' as '%s'\n", 1562 gn->name, fullName ? fullName : "(not found)" ); 1563 } 1564 } else { 1565 fullName = gn->path; 1566 } 1567 1568 if (fullName == NULL) { 1569 fullName = bmake_strdup(gn->name); 1570 } 1571 1572 if (!recheck) 1573 entry = Hash_FindEntry(&mtimes, fullName); 1574 else 1575 entry = NULL; 1576 if (entry != NULL) { 1577 stb.st_mtime = Hash_GetTimeValue(entry); 1578 if (DEBUG(DIR)) { 1579 fprintf(debug_file, "Using cached time %s for %s\n", 1580 Targ_FmtTime(stb.st_mtime), fullName); 1581 } 1582 } else if (cached_stats(&mtimes, fullName, &stb, recheck ? CST_UPDATE : 0) < 0) { 1583 if (gn->type & OP_MEMBER) { 1584 if (fullName != gn->path) 1585 free(fullName); 1586 return Arch_MemMTime(gn); 1587 } else { 1588 stb.st_mtime = 0; 1589 } 1590 } 1591 1592 if (fullName && gn->path == NULL) { 1593 gn->path = fullName; 1594 } 1595 1596 gn->mtime = stb.st_mtime; 1597 return (gn->mtime); 1598 } 1599 1600 /*- 1601 *----------------------------------------------------------------------- 1602 * Dir_AddDir -- 1603 * Add the given name to the end of the given path. The order of 1604 * the arguments is backwards so ParseDoDependency can do a 1605 * Lst_ForEach of its list of paths... 1606 * 1607 * Input: 1608 * path the path to which the directory should be 1609 * added 1610 * name the name of the directory to add 1611 * 1612 * Results: 1613 * none 1614 * 1615 * Side Effects: 1616 * A structure is added to the list and the directory is 1617 * read and hashed. 1618 *----------------------------------------------------------------------- 1619 */ 1620 Path * 1621 Dir_AddDir(Lst path, const char *name) 1622 { 1623 LstNode ln = NULL; /* node in case Path structure is found */ 1624 Path *p = NULL; /* pointer to new Path structure */ 1625 DIR *d; /* for reading directory */ 1626 struct dirent *dp; /* entry in directory */ 1627 1628 if (strcmp(name, ".DOTLAST") == 0) { 1629 ln = Lst_Find(path, name, DirFindName); 1630 if (ln != NULL) 1631 return (Path *)Lst_Datum(ln); 1632 else { 1633 dotLast->refCount += 1; 1634 (void)Lst_AtFront(path, dotLast); 1635 } 1636 } 1637 1638 if (path) 1639 ln = Lst_Find(openDirectories, name, DirFindName); 1640 if (ln != NULL) { 1641 p = (Path *)Lst_Datum(ln); 1642 if (path && Lst_Member(path, p) == NULL) { 1643 p->refCount += 1; 1644 (void)Lst_AtEnd(path, p); 1645 } 1646 } else { 1647 if (DEBUG(DIR)) { 1648 fprintf(debug_file, "Caching %s ...", name); 1649 } 1650 1651 if ((d = opendir(name)) != NULL) { 1652 p = bmake_malloc(sizeof(Path)); 1653 p->name = bmake_strdup(name); 1654 p->hits = 0; 1655 p->refCount = 1; 1656 Hash_InitTable(&p->files, -1); 1657 1658 while ((dp = readdir(d)) != NULL) { 1659 #if defined(sun) && defined(d_ino) /* d_ino is a sunos4 #define for d_fileno */ 1660 /* 1661 * The sun directory library doesn't check for a 0 inode 1662 * (0-inode slots just take up space), so we have to do 1663 * it ourselves. 1664 */ 1665 if (dp->d_fileno == 0) { 1666 continue; 1667 } 1668 #endif /* sun && d_ino */ 1669 (void)Hash_CreateEntry(&p->files, dp->d_name, NULL); 1670 } 1671 (void)closedir(d); 1672 (void)Lst_AtEnd(openDirectories, p); 1673 if (path != NULL) 1674 (void)Lst_AtEnd(path, p); 1675 } 1676 if (DEBUG(DIR)) { 1677 fprintf(debug_file, "done\n"); 1678 } 1679 } 1680 return p; 1681 } 1682 1683 /*- 1684 *----------------------------------------------------------------------- 1685 * Dir_CopyDir -- 1686 * Callback function for duplicating a search path via Lst_Duplicate. 1687 * Ups the reference count for the directory. 1688 * 1689 * Results: 1690 * Returns the Path it was given. 1691 * 1692 * Side Effects: 1693 * The refCount of the path is incremented. 1694 * 1695 *----------------------------------------------------------------------- 1696 */ 1697 void * 1698 Dir_CopyDir(void *p) 1699 { 1700 ((Path *)p)->refCount += 1; 1701 1702 return (p); 1703 } 1704 1705 /*- 1706 *----------------------------------------------------------------------- 1707 * Dir_MakeFlags -- 1708 * Make a string by taking all the directories in the given search 1709 * path and preceding them by the given flag. Used by the suffix 1710 * module to create variables for compilers based on suffix search 1711 * paths. 1712 * 1713 * Input: 1714 * flag flag which should precede each directory 1715 * path list of directories 1716 * 1717 * Results: 1718 * The string mentioned above. Note that there is no space between 1719 * the given flag and each directory. The empty string is returned if 1720 * Things don't go well. 1721 * 1722 * Side Effects: 1723 * None 1724 *----------------------------------------------------------------------- 1725 */ 1726 char * 1727 Dir_MakeFlags(const char *flag, Lst path) 1728 { 1729 char *str; /* the string which will be returned */ 1730 char *s1, *s2;/* the current directory preceded by 'flag' */ 1731 LstNode ln; /* the node of the current directory */ 1732 Path *p; /* the structure describing the current directory */ 1733 1734 str = bmake_strdup(""); 1735 1736 if (Lst_Open(path) == SUCCESS) { 1737 while ((ln = Lst_Next(path)) != NULL) { 1738 p = (Path *)Lst_Datum(ln); 1739 s2 = str_concat(flag, p->name, 0); 1740 str = str_concat(s1 = str, s2, STR_ADDSPACE); 1741 free(s1); 1742 free(s2); 1743 } 1744 Lst_Close(path); 1745 } 1746 1747 return (str); 1748 } 1749 1750 /*- 1751 *----------------------------------------------------------------------- 1752 * Dir_Destroy -- 1753 * Nuke a directory descriptor, if possible. Callback procedure 1754 * for the suffixes module when destroying a search path. 1755 * 1756 * Input: 1757 * pp The directory descriptor to nuke 1758 * 1759 * Results: 1760 * None. 1761 * 1762 * Side Effects: 1763 * If no other path references this directory (refCount == 0), 1764 * the Path and all its data are freed. 1765 * 1766 *----------------------------------------------------------------------- 1767 */ 1768 void 1769 Dir_Destroy(void *pp) 1770 { 1771 Path *p = (Path *)pp; 1772 p->refCount -= 1; 1773 1774 if (p->refCount == 0) { 1775 LstNode ln; 1776 1777 ln = Lst_Member(openDirectories, p); 1778 (void)Lst_Remove(openDirectories, ln); 1779 1780 Hash_DeleteTable(&p->files); 1781 free(p->name); 1782 free(p); 1783 } 1784 } 1785 1786 /*- 1787 *----------------------------------------------------------------------- 1788 * Dir_ClearPath -- 1789 * Clear out all elements of the given search path. This is different 1790 * from destroying the list, notice. 1791 * 1792 * Input: 1793 * path Path to clear 1794 * 1795 * Results: 1796 * None. 1797 * 1798 * Side Effects: 1799 * The path is set to the empty list. 1800 * 1801 *----------------------------------------------------------------------- 1802 */ 1803 void 1804 Dir_ClearPath(Lst path) 1805 { 1806 Path *p; 1807 while (!Lst_IsEmpty(path)) { 1808 p = (Path *)Lst_DeQueue(path); 1809 Dir_Destroy(p); 1810 } 1811 } 1812 1813 1814 /*- 1815 *----------------------------------------------------------------------- 1816 * Dir_Concat -- 1817 * Concatenate two paths, adding the second to the end of the first. 1818 * Makes sure to avoid duplicates. 1819 * 1820 * Input: 1821 * path1 Dest 1822 * path2 Source 1823 * 1824 * Results: 1825 * None 1826 * 1827 * Side Effects: 1828 * Reference counts for added dirs are upped. 1829 * 1830 *----------------------------------------------------------------------- 1831 */ 1832 void 1833 Dir_Concat(Lst path1, Lst path2) 1834 { 1835 LstNode ln; 1836 Path *p; 1837 1838 for (ln = Lst_First(path2); ln != NULL; ln = Lst_Succ(ln)) { 1839 p = (Path *)Lst_Datum(ln); 1840 if (Lst_Member(path1, p) == NULL) { 1841 p->refCount += 1; 1842 (void)Lst_AtEnd(path1, p); 1843 } 1844 } 1845 } 1846 1847 /********** DEBUG INFO **********/ 1848 void 1849 Dir_PrintDirectories(void) 1850 { 1851 LstNode ln; 1852 Path *p; 1853 1854 fprintf(debug_file, "#*** Directory Cache:\n"); 1855 fprintf(debug_file, "# Stats: %d hits %d misses %d near misses %d losers (%d%%)\n", 1856 hits, misses, nearmisses, bigmisses, 1857 (hits+bigmisses+nearmisses ? 1858 hits * 100 / (hits + bigmisses + nearmisses) : 0)); 1859 fprintf(debug_file, "# %-20s referenced\thits\n", "directory"); 1860 if (Lst_Open(openDirectories) == SUCCESS) { 1861 while ((ln = Lst_Next(openDirectories)) != NULL) { 1862 p = (Path *)Lst_Datum(ln); 1863 fprintf(debug_file, "# %-20s %10d\t%4d\n", p->name, p->refCount, p->hits); 1864 } 1865 Lst_Close(openDirectories); 1866 } 1867 } 1868 1869 static int 1870 DirPrintDir(void *p, void *dummy MAKE_ATTR_UNUSED) 1871 { 1872 fprintf(debug_file, "%s ", ((Path *)p)->name); 1873 return 0; 1874 } 1875 1876 void 1877 Dir_PrintPath(Lst path) 1878 { 1879 Lst_ForEach(path, DirPrintDir, NULL); 1880 } 1881