1 //===--- FileManager.cpp - File System Probing and Caching ----------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  This file implements the FileManager interface.
11 //
12 //===----------------------------------------------------------------------===//
13 //
14 // TODO: This should index all interesting directories with dirent calls.
15 //  getdirentries ?
16 //  opendir/readdir_r/closedir ?
17 //
18 //===----------------------------------------------------------------------===//
19 
20 #include "clang/Basic/FileManager.h"
21 #include "clang/Basic/FileSystemStatCache.h"
22 #include "llvm/ADT/SmallString.h"
23 #include "llvm/Config/llvm-config.h"
24 #include "llvm/ADT/STLExtras.h"
25 #include "llvm/Support/FileSystem.h"
26 #include "llvm/Support/MemoryBuffer.h"
27 #include "llvm/Support/Path.h"
28 #include "llvm/Support/raw_ostream.h"
29 #include <algorithm>
30 #include <cassert>
31 #include <climits>
32 #include <cstdint>
33 #include <cstdlib>
34 #include <string>
35 #include <utility>
36 
37 using namespace clang;
38 
39 /// NON_EXISTENT_DIR - A special value distinct from null that is used to
40 /// represent a dir name that doesn't exist on the disk.
41 #define NON_EXISTENT_DIR reinterpret_cast<DirectoryEntry*>((intptr_t)-1)
42 
43 /// NON_EXISTENT_FILE - A special value distinct from null that is used to
44 /// represent a filename that doesn't exist on the disk.
45 #define NON_EXISTENT_FILE reinterpret_cast<FileEntry*>((intptr_t)-1)
46 
47 //===----------------------------------------------------------------------===//
48 // Common logic.
49 //===----------------------------------------------------------------------===//
50 
51 FileManager::FileManager(const FileSystemOptions &FSO,
52                          IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS)
53     : FS(std::move(FS)), FileSystemOpts(FSO), SeenDirEntries(64),
54       SeenFileEntries(64), NextFileUID(0) {
55   NumDirLookups = NumFileLookups = 0;
56   NumDirCacheMisses = NumFileCacheMisses = 0;
57 
58   // If the caller doesn't provide a virtual file system, just grab the real
59   // file system.
60   if (!this->FS)
61     this->FS = llvm::vfs::getRealFileSystem();
62 }
63 
64 FileManager::~FileManager() = default;
65 
66 void FileManager::addStatCache(std::unique_ptr<FileSystemStatCache> statCache,
67                                bool AtBeginning) {
68   assert(statCache && "No stat cache provided?");
69   if (AtBeginning || !StatCache.get()) {
70     statCache->setNextStatCache(std::move(StatCache));
71     StatCache = std::move(statCache);
72     return;
73   }
74 
75   FileSystemStatCache *LastCache = StatCache.get();
76   while (LastCache->getNextStatCache())
77     LastCache = LastCache->getNextStatCache();
78 
79   LastCache->setNextStatCache(std::move(statCache));
80 }
81 
82 void FileManager::removeStatCache(FileSystemStatCache *statCache) {
83   if (!statCache)
84     return;
85 
86   if (StatCache.get() == statCache) {
87     // This is the first stat cache.
88     StatCache = StatCache->takeNextStatCache();
89     return;
90   }
91 
92   // Find the stat cache in the list.
93   FileSystemStatCache *PrevCache = StatCache.get();
94   while (PrevCache && PrevCache->getNextStatCache() != statCache)
95     PrevCache = PrevCache->getNextStatCache();
96 
97   assert(PrevCache && "Stat cache not found for removal");
98   PrevCache->setNextStatCache(statCache->takeNextStatCache());
99 }
100 
101 void FileManager::clearStatCaches() {
102   StatCache.reset();
103 }
104 
105 /// Retrieve the directory that the given file name resides in.
106 /// Filename can point to either a real file or a virtual file.
107 static const DirectoryEntry *getDirectoryFromFile(FileManager &FileMgr,
108                                                   StringRef Filename,
109                                                   bool CacheFailure) {
110   if (Filename.empty())
111     return nullptr;
112 
113   if (llvm::sys::path::is_separator(Filename[Filename.size() - 1]))
114     return nullptr; // If Filename is a directory.
115 
116   StringRef DirName = llvm::sys::path::parent_path(Filename);
117   // Use the current directory if file has no path component.
118   if (DirName.empty())
119     DirName = ".";
120 
121   return FileMgr.getDirectory(DirName, CacheFailure);
122 }
123 
124 /// Add all ancestors of the given path (pointing to either a file or
125 /// a directory) as virtual directories.
126 void FileManager::addAncestorsAsVirtualDirs(StringRef Path) {
127   StringRef DirName = llvm::sys::path::parent_path(Path);
128   if (DirName.empty())
129     DirName = ".";
130 
131   auto &NamedDirEnt =
132       *SeenDirEntries.insert(std::make_pair(DirName, nullptr)).first;
133 
134   // When caching a virtual directory, we always cache its ancestors
135   // at the same time.  Therefore, if DirName is already in the cache,
136   // we don't need to recurse as its ancestors must also already be in
137   // the cache.
138   if (NamedDirEnt.second && NamedDirEnt.second != NON_EXISTENT_DIR)
139     return;
140 
141   // Add the virtual directory to the cache.
142   auto UDE = llvm::make_unique<DirectoryEntry>();
143   UDE->Name = NamedDirEnt.first();
144   NamedDirEnt.second = UDE.get();
145   VirtualDirectoryEntries.push_back(std::move(UDE));
146 
147   // Recursively add the other ancestors.
148   addAncestorsAsVirtualDirs(DirName);
149 }
150 
151 const DirectoryEntry *FileManager::getDirectory(StringRef DirName,
152                                                 bool CacheFailure) {
153   // stat doesn't like trailing separators except for root directory.
154   // At least, on Win32 MSVCRT, stat() cannot strip trailing '/'.
155   // (though it can strip '\\')
156   if (DirName.size() > 1 &&
157       DirName != llvm::sys::path::root_path(DirName) &&
158       llvm::sys::path::is_separator(DirName.back()))
159     DirName = DirName.substr(0, DirName.size()-1);
160 #ifdef _WIN32
161   // Fixing a problem with "clang C:test.c" on Windows.
162   // Stat("C:") does not recognize "C:" as a valid directory
163   std::string DirNameStr;
164   if (DirName.size() > 1 && DirName.back() == ':' &&
165       DirName.equals_lower(llvm::sys::path::root_name(DirName))) {
166     DirNameStr = DirName.str() + '.';
167     DirName = DirNameStr;
168   }
169 #endif
170 
171   ++NumDirLookups;
172   auto &NamedDirEnt =
173       *SeenDirEntries.insert(std::make_pair(DirName, nullptr)).first;
174 
175   // See if there was already an entry in the map.  Note that the map
176   // contains both virtual and real directories.
177   if (NamedDirEnt.second)
178     return NamedDirEnt.second == NON_EXISTENT_DIR ? nullptr
179                                                   : NamedDirEnt.second;
180 
181   ++NumDirCacheMisses;
182 
183   // By default, initialize it to invalid.
184   NamedDirEnt.second = NON_EXISTENT_DIR;
185 
186   // Get the null-terminated directory name as stored as the key of the
187   // SeenDirEntries map.
188   StringRef InterndDirName = NamedDirEnt.first();
189 
190   // Check to see if the directory exists.
191   FileData Data;
192   if (getStatValue(InterndDirName, Data, false, nullptr /*directory lookup*/)) {
193     // There's no real directory at the given path.
194     if (!CacheFailure)
195       SeenDirEntries.erase(DirName);
196     return nullptr;
197   }
198 
199   // It exists.  See if we have already opened a directory with the
200   // same inode (this occurs on Unix-like systems when one dir is
201   // symlinked to another, for example) or the same path (on
202   // Windows).
203   DirectoryEntry &UDE = UniqueRealDirs[Data.UniqueID];
204 
205   NamedDirEnt.second = &UDE;
206   if (UDE.getName().empty()) {
207     // We don't have this directory yet, add it.  We use the string
208     // key from the SeenDirEntries map as the string.
209     UDE.Name  = InterndDirName;
210   }
211 
212   return &UDE;
213 }
214 
215 const FileEntry *FileManager::getFile(StringRef Filename, bool openFile,
216                                       bool CacheFailure) {
217   ++NumFileLookups;
218 
219   // See if there is already an entry in the map.
220   auto &NamedFileEnt =
221       *SeenFileEntries.insert(std::make_pair(Filename, nullptr)).first;
222 
223   // See if there is already an entry in the map.
224   if (NamedFileEnt.second) {
225     if (NamedFileEnt.second == NON_EXISTENT_FILE)
226       return nullptr;
227     // Entry exists: return it *unless* it wasn't opened and open is requested.
228     if (!(NamedFileEnt.second->DeferredOpen && openFile))
229       return NamedFileEnt.second;
230     // We previously stat()ed the file, but didn't open it: do that below.
231     // FIXME: the below does other redundant work too (stats the dir and file).
232   } else {
233     // By default, initialize it to invalid.
234     NamedFileEnt.second = NON_EXISTENT_FILE;
235   }
236 
237   ++NumFileCacheMisses;
238 
239   // Get the null-terminated file name as stored as the key of the
240   // SeenFileEntries map.
241   StringRef InterndFileName = NamedFileEnt.first();
242 
243   // Look up the directory for the file.  When looking up something like
244   // sys/foo.h we'll discover all of the search directories that have a 'sys'
245   // subdirectory.  This will let us avoid having to waste time on known-to-fail
246   // searches when we go to find sys/bar.h, because all the search directories
247   // without a 'sys' subdir will get a cached failure result.
248   const DirectoryEntry *DirInfo = getDirectoryFromFile(*this, Filename,
249                                                        CacheFailure);
250   if (DirInfo == nullptr) { // Directory doesn't exist, file can't exist.
251     if (!CacheFailure)
252       SeenFileEntries.erase(Filename);
253 
254     return nullptr;
255   }
256 
257   // FIXME: Use the directory info to prune this, before doing the stat syscall.
258   // FIXME: This will reduce the # syscalls.
259 
260   // Nope, there isn't.  Check to see if the file exists.
261   std::unique_ptr<llvm::vfs::File> F;
262   FileData Data;
263   if (getStatValue(InterndFileName, Data, true, openFile ? &F : nullptr)) {
264     // There's no real file at the given path.
265     if (!CacheFailure)
266       SeenFileEntries.erase(Filename);
267 
268     return nullptr;
269   }
270 
271   assert((openFile || !F) && "undesired open file");
272 
273   // It exists.  See if we have already opened a file with the same inode.
274   // This occurs when one dir is symlinked to another, for example.
275   FileEntry &UFE = UniqueRealFiles[Data.UniqueID];
276   UFE.DeferredOpen = !openFile;
277 
278   NamedFileEnt.second = &UFE;
279 
280   // If the name returned by getStatValue is different than Filename, re-intern
281   // the name.
282   if (Data.Name != Filename) {
283     auto &NamedFileEnt =
284         *SeenFileEntries.insert(std::make_pair(Data.Name, nullptr)).first;
285     if (!NamedFileEnt.second)
286       NamedFileEnt.second = &UFE;
287     else
288       assert(NamedFileEnt.second == &UFE &&
289              "filename from getStatValue() refers to wrong file");
290     InterndFileName = NamedFileEnt.first().data();
291   }
292 
293   // If we opened the file for the first time, record the resulting info.
294   // Do this even if the cache entry was valid, maybe we didn't previously open.
295   if (F && !UFE.File) {
296     if (auto PathName = F->getName()) {
297       llvm::SmallString<128> AbsPath(*PathName);
298       // This is not the same as `VFS::getRealPath()`, which resolves symlinks
299       // but can be very expensive on real file systems.
300       // FIXME: the semantic of RealPathName is unclear, and the name might be
301       // misleading. We need to clean up the interface here.
302       makeAbsolutePath(AbsPath);
303       llvm::sys::path::remove_dots(AbsPath, /*remove_dot_dot=*/true);
304       UFE.RealPathName = AbsPath.str();
305     }
306     UFE.File = std::move(F);
307     assert(!UFE.DeferredOpen && "we just opened it!");
308   }
309 
310   if (UFE.isValid()) { // Already have an entry with this inode, return it.
311 
312     // FIXME: this hack ensures that if we look up a file by a virtual path in
313     // the VFS that the getDir() will have the virtual path, even if we found
314     // the file by a 'real' path first. This is required in order to find a
315     // module's structure when its headers/module map are mapped in the VFS.
316     // We should remove this as soon as we can properly support a file having
317     // multiple names.
318     if (DirInfo != UFE.Dir && Data.IsVFSMapped)
319       UFE.Dir = DirInfo;
320 
321     // Always update the name to use the last name by which a file was accessed.
322     // FIXME: Neither this nor always using the first name is correct; we want
323     // to switch towards a design where we return a FileName object that
324     // encapsulates both the name by which the file was accessed and the
325     // corresponding FileEntry.
326     UFE.Name = InterndFileName;
327 
328     return &UFE;
329   }
330 
331   // Otherwise, we don't have this file yet, add it.
332   UFE.Name    = InterndFileName;
333   UFE.Size = Data.Size;
334   UFE.ModTime = Data.ModTime;
335   UFE.Dir     = DirInfo;
336   UFE.UID     = NextFileUID++;
337   UFE.UniqueID = Data.UniqueID;
338   UFE.IsNamedPipe = Data.IsNamedPipe;
339   UFE.InPCH = Data.InPCH;
340   UFE.IsValid = true;
341   // Note File and DeferredOpen were initialized above.
342 
343   return &UFE;
344 }
345 
346 const FileEntry *
347 FileManager::getVirtualFile(StringRef Filename, off_t Size,
348                             time_t ModificationTime) {
349   ++NumFileLookups;
350 
351   // See if there is already an entry in the map.
352   auto &NamedFileEnt =
353       *SeenFileEntries.insert(std::make_pair(Filename, nullptr)).first;
354 
355   // See if there is already an entry in the map.
356   if (NamedFileEnt.second && NamedFileEnt.second != NON_EXISTENT_FILE)
357     return NamedFileEnt.second;
358 
359   ++NumFileCacheMisses;
360 
361   // By default, initialize it to invalid.
362   NamedFileEnt.second = NON_EXISTENT_FILE;
363 
364   addAncestorsAsVirtualDirs(Filename);
365   FileEntry *UFE = nullptr;
366 
367   // Now that all ancestors of Filename are in the cache, the
368   // following call is guaranteed to find the DirectoryEntry from the
369   // cache.
370   const DirectoryEntry *DirInfo = getDirectoryFromFile(*this, Filename,
371                                                        /*CacheFailure=*/true);
372   assert(DirInfo &&
373          "The directory of a virtual file should already be in the cache.");
374 
375   // Check to see if the file exists. If so, drop the virtual file
376   FileData Data;
377   const char *InterndFileName = NamedFileEnt.first().data();
378   if (getStatValue(InterndFileName, Data, true, nullptr) == 0) {
379     Data.Size = Size;
380     Data.ModTime = ModificationTime;
381     UFE = &UniqueRealFiles[Data.UniqueID];
382 
383     NamedFileEnt.second = UFE;
384 
385     // If we had already opened this file, close it now so we don't
386     // leak the descriptor. We're not going to use the file
387     // descriptor anyway, since this is a virtual file.
388     if (UFE->File)
389       UFE->closeFile();
390 
391     // If we already have an entry with this inode, return it.
392     if (UFE->isValid())
393       return UFE;
394 
395     UFE->UniqueID = Data.UniqueID;
396     UFE->IsNamedPipe = Data.IsNamedPipe;
397     UFE->InPCH = Data.InPCH;
398   }
399 
400   if (!UFE) {
401     VirtualFileEntries.push_back(llvm::make_unique<FileEntry>());
402     UFE = VirtualFileEntries.back().get();
403     NamedFileEnt.second = UFE;
404   }
405 
406   UFE->Name    = InterndFileName;
407   UFE->Size    = Size;
408   UFE->ModTime = ModificationTime;
409   UFE->Dir     = DirInfo;
410   UFE->UID     = NextFileUID++;
411   UFE->IsValid = true;
412   UFE->File.reset();
413   UFE->DeferredOpen = false;
414   return UFE;
415 }
416 
417 bool FileManager::FixupRelativePath(SmallVectorImpl<char> &path) const {
418   StringRef pathRef(path.data(), path.size());
419 
420   if (FileSystemOpts.WorkingDir.empty()
421       || llvm::sys::path::is_absolute(pathRef))
422     return false;
423 
424   SmallString<128> NewPath(FileSystemOpts.WorkingDir);
425   llvm::sys::path::append(NewPath, pathRef);
426   path = NewPath;
427   return true;
428 }
429 
430 bool FileManager::makeAbsolutePath(SmallVectorImpl<char> &Path) const {
431   bool Changed = FixupRelativePath(Path);
432 
433   if (!llvm::sys::path::is_absolute(StringRef(Path.data(), Path.size()))) {
434     FS->makeAbsolute(Path);
435     Changed = true;
436   }
437 
438   return Changed;
439 }
440 
441 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>>
442 FileManager::getBufferForFile(const FileEntry *Entry, bool isVolatile,
443                               bool ShouldCloseOpenFile) {
444   uint64_t FileSize = Entry->getSize();
445   // If there's a high enough chance that the file have changed since we
446   // got its size, force a stat before opening it.
447   if (isVolatile)
448     FileSize = -1;
449 
450   StringRef Filename = Entry->getName();
451   // If the file is already open, use the open file descriptor.
452   if (Entry->File) {
453     auto Result =
454         Entry->File->getBuffer(Filename, FileSize,
455                                /*RequiresNullTerminator=*/true, isVolatile);
456     // FIXME: we need a set of APIs that can make guarantees about whether a
457     // FileEntry is open or not.
458     if (ShouldCloseOpenFile)
459       Entry->closeFile();
460     return Result;
461   }
462 
463   // Otherwise, open the file.
464 
465   if (FileSystemOpts.WorkingDir.empty())
466     return FS->getBufferForFile(Filename, FileSize,
467                                 /*RequiresNullTerminator=*/true, isVolatile);
468 
469   SmallString<128> FilePath(Entry->getName());
470   FixupRelativePath(FilePath);
471   return FS->getBufferForFile(FilePath, FileSize,
472                               /*RequiresNullTerminator=*/true, isVolatile);
473 }
474 
475 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>>
476 FileManager::getBufferForFile(StringRef Filename, bool isVolatile) {
477   if (FileSystemOpts.WorkingDir.empty())
478     return FS->getBufferForFile(Filename, -1, true, isVolatile);
479 
480   SmallString<128> FilePath(Filename);
481   FixupRelativePath(FilePath);
482   return FS->getBufferForFile(FilePath.c_str(), -1, true, isVolatile);
483 }
484 
485 /// getStatValue - Get the 'stat' information for the specified path,
486 /// using the cache to accelerate it if possible.  This returns true
487 /// if the path points to a virtual file or does not exist, or returns
488 /// false if it's an existent real file.  If FileDescriptor is NULL,
489 /// do directory look-up instead of file look-up.
490 bool FileManager::getStatValue(StringRef Path, FileData &Data, bool isFile,
491                                std::unique_ptr<llvm::vfs::File> *F) {
492   // FIXME: FileSystemOpts shouldn't be passed in here, all paths should be
493   // absolute!
494   if (FileSystemOpts.WorkingDir.empty())
495     return FileSystemStatCache::get(Path, Data, isFile, F,StatCache.get(), *FS);
496 
497   SmallString<128> FilePath(Path);
498   FixupRelativePath(FilePath);
499 
500   return FileSystemStatCache::get(FilePath.c_str(), Data, isFile, F,
501                                   StatCache.get(), *FS);
502 }
503 
504 bool FileManager::getNoncachedStatValue(StringRef Path,
505                                         llvm::vfs::Status &Result) {
506   SmallString<128> FilePath(Path);
507   FixupRelativePath(FilePath);
508 
509   llvm::ErrorOr<llvm::vfs::Status> S = FS->status(FilePath.c_str());
510   if (!S)
511     return true;
512   Result = *S;
513   return false;
514 }
515 
516 void FileManager::invalidateCache(const FileEntry *Entry) {
517   assert(Entry && "Cannot invalidate a NULL FileEntry");
518 
519   SeenFileEntries.erase(Entry->getName());
520 
521   // FileEntry invalidation should not block future optimizations in the file
522   // caches. Possible alternatives are cache truncation (invalidate last N) or
523   // invalidation of the whole cache.
524   UniqueRealFiles.erase(Entry->getUniqueID());
525 }
526 
527 void FileManager::GetUniqueIDMapping(
528                    SmallVectorImpl<const FileEntry *> &UIDToFiles) const {
529   UIDToFiles.clear();
530   UIDToFiles.resize(NextFileUID);
531 
532   // Map file entries
533   for (llvm::StringMap<FileEntry*, llvm::BumpPtrAllocator>::const_iterator
534          FE = SeenFileEntries.begin(), FEEnd = SeenFileEntries.end();
535        FE != FEEnd; ++FE)
536     if (FE->getValue() && FE->getValue() != NON_EXISTENT_FILE)
537       UIDToFiles[FE->getValue()->getUID()] = FE->getValue();
538 
539   // Map virtual file entries
540   for (const auto &VFE : VirtualFileEntries)
541     if (VFE && VFE.get() != NON_EXISTENT_FILE)
542       UIDToFiles[VFE->getUID()] = VFE.get();
543 }
544 
545 void FileManager::modifyFileEntry(FileEntry *File,
546                                   off_t Size, time_t ModificationTime) {
547   File->Size = Size;
548   File->ModTime = ModificationTime;
549 }
550 
551 StringRef FileManager::getCanonicalName(const DirectoryEntry *Dir) {
552   // FIXME: use llvm::sys::fs::canonical() when it gets implemented
553   llvm::DenseMap<const DirectoryEntry *, llvm::StringRef>::iterator Known
554     = CanonicalDirNames.find(Dir);
555   if (Known != CanonicalDirNames.end())
556     return Known->second;
557 
558   StringRef CanonicalName(Dir->getName());
559 
560   SmallString<4096> CanonicalNameBuf;
561   if (!FS->getRealPath(Dir->getName(), CanonicalNameBuf))
562     CanonicalName = StringRef(CanonicalNameBuf).copy(CanonicalNameStorage);
563 
564   CanonicalDirNames.insert(std::make_pair(Dir, CanonicalName));
565   return CanonicalName;
566 }
567 
568 void FileManager::PrintStats() const {
569   llvm::errs() << "\n*** File Manager Stats:\n";
570   llvm::errs() << UniqueRealFiles.size() << " real files found, "
571                << UniqueRealDirs.size() << " real dirs found.\n";
572   llvm::errs() << VirtualFileEntries.size() << " virtual files found, "
573                << VirtualDirectoryEntries.size() << " virtual dirs found.\n";
574   llvm::errs() << NumDirLookups << " dir lookups, "
575                << NumDirCacheMisses << " dir cache misses.\n";
576   llvm::errs() << NumFileLookups << " file lookups, "
577                << NumFileCacheMisses << " file cache misses.\n";
578 
579   //llvm::errs() << PagesMapped << BytesOfPagesMapped << FSLookups;
580 }
581