1 //===--- PrecompiledPreamble.cpp - Build precompiled preambles --*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // Helper class to build precompiled preamble.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "clang/Frontend/PrecompiledPreamble.h"
14 #include "clang/AST/DeclObjC.h"
15 #include "clang/Basic/FileManager.h"
16 #include "clang/Basic/LangStandard.h"
17 #include "clang/Basic/TargetInfo.h"
18 #include "clang/Frontend/CompilerInstance.h"
19 #include "clang/Frontend/CompilerInvocation.h"
20 #include "clang/Frontend/FrontendActions.h"
21 #include "clang/Frontend/FrontendOptions.h"
22 #include "clang/Lex/HeaderSearch.h"
23 #include "clang/Lex/Lexer.h"
24 #include "clang/Lex/Preprocessor.h"
25 #include "clang/Lex/PreprocessorOptions.h"
26 #include "clang/Serialization/ASTWriter.h"
27 #include "llvm/ADT/SmallString.h"
28 #include "llvm/ADT/StringExtras.h"
29 #include "llvm/ADT/StringSet.h"
30 #include "llvm/ADT/iterator_range.h"
31 #include "llvm/Config/llvm-config.h"
32 #include "llvm/Support/CrashRecoveryContext.h"
33 #include "llvm/Support/FileSystem.h"
34 #include "llvm/Support/Path.h"
35 #include "llvm/Support/Process.h"
36 #include "llvm/Support/VirtualFileSystem.h"
37 #include <limits>
38 #include <mutex>
39 #include <utility>
40 
41 using namespace clang;
42 
43 namespace {
44 
45 StringRef getInMemoryPreamblePath() {
46 #if defined(LLVM_ON_UNIX)
47   return "/__clang_tmp/___clang_inmemory_preamble___";
48 #elif defined(_WIN32)
49   return "C:\\__clang_tmp\\___clang_inmemory_preamble___";
50 #else
51 #warning "Unknown platform. Defaulting to UNIX-style paths for in-memory PCHs"
52   return "/__clang_tmp/___clang_inmemory_preamble___";
53 #endif
54 }
55 
56 IntrusiveRefCntPtr<llvm::vfs::FileSystem>
57 createVFSOverlayForPreamblePCH(StringRef PCHFilename,
58                                std::unique_ptr<llvm::MemoryBuffer> PCHBuffer,
59                                IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) {
60   // We want only the PCH file from the real filesystem to be available,
61   // so we create an in-memory VFS with just that and overlay it on top.
62   IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> PCHFS(
63       new llvm::vfs::InMemoryFileSystem());
64   PCHFS->addFile(PCHFilename, 0, std::move(PCHBuffer));
65   IntrusiveRefCntPtr<llvm::vfs::OverlayFileSystem> Overlay(
66       new llvm::vfs::OverlayFileSystem(VFS));
67   Overlay->pushOverlay(PCHFS);
68   return Overlay;
69 }
70 
71 class PreambleDependencyCollector : public DependencyCollector {
72 public:
73   // We want to collect all dependencies for correctness. Avoiding the real
74   // system dependencies (e.g. stl from /usr/lib) would probably be a good idea,
75   // but there is no way to distinguish between those and the ones that can be
76   // spuriously added by '-isystem' (e.g. to suppress warnings from those
77   // headers).
78   bool needSystemDependencies() override { return true; }
79 };
80 
81 // Collects files whose existence would invalidate the preamble.
82 // Collecting *all* of these would make validating it too slow though, so we
83 // just find all the candidates for 'file not found' diagnostics.
84 //
85 // A caveat that may be significant for generated files: we'll omit files under
86 // search path entries whose roots don't exist when the preamble is built.
87 // These are pruned by InitHeaderSearch and so we don't see the search path.
88 // It would be nice to include them but we don't want to duplicate all the rest
89 // of the InitHeaderSearch logic to reconstruct them.
90 class MissingFileCollector : public PPCallbacks {
91   llvm::StringSet<> &Out;
92   const HeaderSearch &Search;
93   const SourceManager &SM;
94 
95 public:
96   MissingFileCollector(llvm::StringSet<> &Out, const HeaderSearch &Search,
97                        const SourceManager &SM)
98       : Out(Out), Search(Search), SM(SM) {}
99 
100   void InclusionDirective(SourceLocation HashLoc, const Token &IncludeTok,
101                           StringRef FileName, bool IsAngled,
102                           CharSourceRange FilenameRange, const FileEntry *File,
103                           StringRef SearchPath, StringRef RelativePath,
104                           const Module *Imported,
105                           SrcMgr::CharacteristicKind FileType) override {
106     // File is null if it wasn't found.
107     // (We have some false negatives if PP recovered e.g. <foo> -> "foo")
108     if (File != nullptr)
109       return;
110 
111     // If it's a rare absolute include, we know the full path already.
112     if (llvm::sys::path::is_absolute(FileName)) {
113       Out.insert(FileName);
114       return;
115     }
116 
117     // Reconstruct the filenames that would satisfy this directive...
118     llvm::SmallString<256> Buf;
119     auto NotFoundRelativeTo = [&](const DirectoryEntry *DE) {
120       Buf = DE->getName();
121       llvm::sys::path::append(Buf, FileName);
122       llvm::sys::path::remove_dots(Buf, /*remove_dot_dot=*/true);
123       Out.insert(Buf);
124     };
125     // ...relative to the including file.
126     if (!IsAngled) {
127       if (const FileEntry *IncludingFile =
128               SM.getFileEntryForID(SM.getFileID(IncludeTok.getLocation())))
129         if (IncludingFile->getDir())
130           NotFoundRelativeTo(IncludingFile->getDir());
131     }
132     // ...relative to the search paths.
133     for (const auto &Dir : llvm::make_range(
134              IsAngled ? Search.angled_dir_begin() : Search.search_dir_begin(),
135              Search.search_dir_end())) {
136       // No support for frameworks or header maps yet.
137       if (Dir.isNormalDir())
138         NotFoundRelativeTo(Dir.getDir());
139     }
140   }
141 };
142 
143 /// Keeps a track of files to be deleted in destructor.
144 class TemporaryFiles {
145 public:
146   // A static instance to be used by all clients.
147   static TemporaryFiles &getInstance();
148 
149 private:
150   // Disallow constructing the class directly.
151   TemporaryFiles() = default;
152   // Disallow copy.
153   TemporaryFiles(const TemporaryFiles &) = delete;
154 
155 public:
156   ~TemporaryFiles();
157 
158   /// Adds \p File to a set of tracked files.
159   void addFile(StringRef File);
160 
161   /// Remove \p File from disk and from the set of tracked files.
162   void removeFile(StringRef File);
163 
164 private:
165   std::mutex Mutex;
166   llvm::StringSet<> Files;
167 };
168 
169 TemporaryFiles &TemporaryFiles::getInstance() {
170   static TemporaryFiles Instance;
171   return Instance;
172 }
173 
174 TemporaryFiles::~TemporaryFiles() {
175   std::lock_guard<std::mutex> Guard(Mutex);
176   for (const auto &File : Files)
177     llvm::sys::fs::remove(File.getKey());
178 }
179 
180 void TemporaryFiles::addFile(StringRef File) {
181   std::lock_guard<std::mutex> Guard(Mutex);
182   auto IsInserted = Files.insert(File).second;
183   (void)IsInserted;
184   assert(IsInserted && "File has already been added");
185 }
186 
187 void TemporaryFiles::removeFile(StringRef File) {
188   std::lock_guard<std::mutex> Guard(Mutex);
189   auto WasPresent = Files.erase(File);
190   (void)WasPresent;
191   assert(WasPresent && "File was not tracked");
192   llvm::sys::fs::remove(File);
193 }
194 
195 class PrecompilePreambleAction : public ASTFrontendAction {
196 public:
197   PrecompilePreambleAction(std::string *InMemStorage,
198                            PreambleCallbacks &Callbacks)
199       : InMemStorage(InMemStorage), Callbacks(Callbacks) {}
200 
201   std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
202                                                  StringRef InFile) override;
203 
204   bool hasEmittedPreamblePCH() const { return HasEmittedPreamblePCH; }
205 
206   void setEmittedPreamblePCH(ASTWriter &Writer) {
207     this->HasEmittedPreamblePCH = true;
208     Callbacks.AfterPCHEmitted(Writer);
209   }
210 
211   bool BeginSourceFileAction(CompilerInstance &CI) override {
212     assert(CI.getLangOpts().CompilingPCH);
213     return ASTFrontendAction::BeginSourceFileAction(CI);
214   }
215 
216   bool shouldEraseOutputFiles() override { return !hasEmittedPreamblePCH(); }
217   bool hasCodeCompletionSupport() const override { return false; }
218   bool hasASTFileSupport() const override { return false; }
219   TranslationUnitKind getTranslationUnitKind() override { return TU_Prefix; }
220 
221 private:
222   friend class PrecompilePreambleConsumer;
223 
224   bool HasEmittedPreamblePCH = false;
225   std::string *InMemStorage;
226   PreambleCallbacks &Callbacks;
227 };
228 
229 class PrecompilePreambleConsumer : public PCHGenerator {
230 public:
231   PrecompilePreambleConsumer(PrecompilePreambleAction &Action,
232                              const Preprocessor &PP,
233                              InMemoryModuleCache &ModuleCache,
234                              StringRef isysroot,
235                              std::unique_ptr<raw_ostream> Out)
236       : PCHGenerator(PP, ModuleCache, "", isysroot,
237                      std::make_shared<PCHBuffer>(),
238                      ArrayRef<std::shared_ptr<ModuleFileExtension>>(),
239                      /*AllowASTWithErrors=*/true),
240         Action(Action), Out(std::move(Out)) {}
241 
242   bool HandleTopLevelDecl(DeclGroupRef DG) override {
243     Action.Callbacks.HandleTopLevelDecl(DG);
244     return true;
245   }
246 
247   void HandleTranslationUnit(ASTContext &Ctx) override {
248     PCHGenerator::HandleTranslationUnit(Ctx);
249     if (!hasEmittedPCH())
250       return;
251 
252     // Write the generated bitstream to "Out".
253     *Out << getPCH();
254     // Make sure it hits disk now.
255     Out->flush();
256     // Free the buffer.
257     llvm::SmallVector<char, 0> Empty;
258     getPCH() = std::move(Empty);
259 
260     Action.setEmittedPreamblePCH(getWriter());
261   }
262 
263   bool shouldSkipFunctionBody(Decl *D) override {
264     return Action.Callbacks.shouldSkipFunctionBody(D);
265   }
266 
267 private:
268   PrecompilePreambleAction &Action;
269   std::unique_ptr<raw_ostream> Out;
270 };
271 
272 std::unique_ptr<ASTConsumer>
273 PrecompilePreambleAction::CreateASTConsumer(CompilerInstance &CI,
274                                             StringRef InFile) {
275   std::string Sysroot;
276   if (!GeneratePCHAction::ComputeASTConsumerArguments(CI, Sysroot))
277     return nullptr;
278 
279   std::unique_ptr<llvm::raw_ostream> OS;
280   if (InMemStorage) {
281     OS = std::make_unique<llvm::raw_string_ostream>(*InMemStorage);
282   } else {
283     std::string OutputFile;
284     OS = GeneratePCHAction::CreateOutputFile(CI, InFile, OutputFile);
285   }
286   if (!OS)
287     return nullptr;
288 
289   if (!CI.getFrontendOpts().RelocatablePCH)
290     Sysroot.clear();
291 
292   return std::make_unique<PrecompilePreambleConsumer>(
293       *this, CI.getPreprocessor(), CI.getModuleCache(), Sysroot, std::move(OS));
294 }
295 
296 template <class T> bool moveOnNoError(llvm::ErrorOr<T> Val, T &Output) {
297   if (!Val)
298     return false;
299   Output = std::move(*Val);
300   return true;
301 }
302 
303 } // namespace
304 
305 PreambleBounds clang::ComputePreambleBounds(const LangOptions &LangOpts,
306                                             const llvm::MemoryBuffer *Buffer,
307                                             unsigned MaxLines) {
308   return Lexer::ComputePreamble(Buffer->getBuffer(), LangOpts, MaxLines);
309 }
310 
311 llvm::ErrorOr<PrecompiledPreamble> PrecompiledPreamble::Build(
312     const CompilerInvocation &Invocation,
313     const llvm::MemoryBuffer *MainFileBuffer, PreambleBounds Bounds,
314     DiagnosticsEngine &Diagnostics,
315     IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS,
316     std::shared_ptr<PCHContainerOperations> PCHContainerOps, bool StoreInMemory,
317     PreambleCallbacks &Callbacks) {
318   assert(VFS && "VFS is null");
319 
320   auto PreambleInvocation = std::make_shared<CompilerInvocation>(Invocation);
321   FrontendOptions &FrontendOpts = PreambleInvocation->getFrontendOpts();
322   PreprocessorOptions &PreprocessorOpts =
323       PreambleInvocation->getPreprocessorOpts();
324 
325   llvm::Optional<TempPCHFile> TempFile;
326   if (!StoreInMemory) {
327     // Create a temporary file for the precompiled preamble. In rare
328     // circumstances, this can fail.
329     llvm::ErrorOr<PrecompiledPreamble::TempPCHFile> PreamblePCHFile =
330         PrecompiledPreamble::TempPCHFile::CreateNewPreamblePCHFile();
331     if (!PreamblePCHFile)
332       return BuildPreambleError::CouldntCreateTempFile;
333     TempFile = std::move(*PreamblePCHFile);
334   }
335 
336   PCHStorage Storage = StoreInMemory ? PCHStorage(InMemoryPreamble())
337                                      : PCHStorage(std::move(*TempFile));
338 
339   // Save the preamble text for later; we'll need to compare against it for
340   // subsequent reparses.
341   std::vector<char> PreambleBytes(MainFileBuffer->getBufferStart(),
342                                   MainFileBuffer->getBufferStart() +
343                                       Bounds.Size);
344   bool PreambleEndsAtStartOfLine = Bounds.PreambleEndsAtStartOfLine;
345 
346   // Tell the compiler invocation to generate a temporary precompiled header.
347   FrontendOpts.ProgramAction = frontend::GeneratePCH;
348   FrontendOpts.OutputFile =
349       std::string(StoreInMemory ? getInMemoryPreamblePath()
350                                 : Storage.asFile().getFilePath());
351   PreprocessorOpts.PrecompiledPreambleBytes.first = 0;
352   PreprocessorOpts.PrecompiledPreambleBytes.second = false;
353   // Inform preprocessor to record conditional stack when building the preamble.
354   PreprocessorOpts.GeneratePreamble = true;
355 
356   // Create the compiler instance to use for building the precompiled preamble.
357   std::unique_ptr<CompilerInstance> Clang(
358       new CompilerInstance(std::move(PCHContainerOps)));
359 
360   // Recover resources if we crash before exiting this method.
361   llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance> CICleanup(
362       Clang.get());
363 
364   Clang->setInvocation(std::move(PreambleInvocation));
365   Clang->setDiagnostics(&Diagnostics);
366 
367   // Create the target instance.
368   Clang->setTarget(TargetInfo::CreateTargetInfo(
369       Clang->getDiagnostics(), Clang->getInvocation().TargetOpts));
370   if (!Clang->hasTarget())
371     return BuildPreambleError::CouldntCreateTargetInfo;
372 
373   // Inform the target of the language options.
374   //
375   // FIXME: We shouldn't need to do this, the target should be immutable once
376   // created. This complexity should be lifted elsewhere.
377   Clang->getTarget().adjust(Clang->getLangOpts());
378 
379   if (Clang->getFrontendOpts().Inputs.size() != 1 ||
380       Clang->getFrontendOpts().Inputs[0].getKind().getFormat() !=
381           InputKind::Source ||
382       Clang->getFrontendOpts().Inputs[0].getKind().getLanguage() ==
383           Language::LLVM_IR) {
384     return BuildPreambleError::BadInputs;
385   }
386 
387   // Clear out old caches and data.
388   Diagnostics.Reset();
389   ProcessWarningOptions(Diagnostics, Clang->getDiagnosticOpts());
390 
391   VFS =
392       createVFSFromCompilerInvocation(Clang->getInvocation(), Diagnostics, VFS);
393 
394   // Create a file manager object to provide access to and cache the filesystem.
395   Clang->setFileManager(new FileManager(Clang->getFileSystemOpts(), VFS));
396 
397   // Create the source manager.
398   Clang->setSourceManager(
399       new SourceManager(Diagnostics, Clang->getFileManager()));
400 
401   auto PreambleDepCollector = std::make_shared<PreambleDependencyCollector>();
402   Clang->addDependencyCollector(PreambleDepCollector);
403 
404   Clang->getLangOpts().CompilingPCH = true;
405 
406   // Remap the main source file to the preamble buffer.
407   StringRef MainFilePath = FrontendOpts.Inputs[0].getFile();
408   auto PreambleInputBuffer = llvm::MemoryBuffer::getMemBufferCopy(
409       MainFileBuffer->getBuffer().slice(0, Bounds.Size), MainFilePath);
410   if (PreprocessorOpts.RetainRemappedFileBuffers) {
411     // MainFileBuffer will be deleted by unique_ptr after leaving the method.
412     PreprocessorOpts.addRemappedFile(MainFilePath, PreambleInputBuffer.get());
413   } else {
414     // In that case, remapped buffer will be deleted by CompilerInstance on
415     // BeginSourceFile, so we call release() to avoid double deletion.
416     PreprocessorOpts.addRemappedFile(MainFilePath,
417                                      PreambleInputBuffer.release());
418   }
419 
420   std::unique_ptr<PrecompilePreambleAction> Act;
421   Act.reset(new PrecompilePreambleAction(
422       StoreInMemory ? &Storage.asMemory().Data : nullptr, Callbacks));
423   Callbacks.BeforeExecute(*Clang);
424   if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0]))
425     return BuildPreambleError::BeginSourceFileFailed;
426 
427   std::unique_ptr<PPCallbacks> DelegatedPPCallbacks =
428       Callbacks.createPPCallbacks();
429   if (DelegatedPPCallbacks)
430     Clang->getPreprocessor().addPPCallbacks(std::move(DelegatedPPCallbacks));
431   if (auto CommentHandler = Callbacks.getCommentHandler())
432     Clang->getPreprocessor().addCommentHandler(CommentHandler);
433   llvm::StringSet<> MissingFiles;
434   Clang->getPreprocessor().addPPCallbacks(
435       std::make_unique<MissingFileCollector>(
436           MissingFiles, Clang->getPreprocessor().getHeaderSearchInfo(),
437           Clang->getSourceManager()));
438 
439   if (llvm::Error Err = Act->Execute())
440     return errorToErrorCode(std::move(Err));
441 
442   // Run the callbacks.
443   Callbacks.AfterExecute(*Clang);
444 
445   Act->EndSourceFile();
446 
447   if (!Act->hasEmittedPreamblePCH())
448     return BuildPreambleError::CouldntEmitPCH;
449 
450   // Keep track of all of the files that the source manager knows about,
451   // so we can verify whether they have changed or not.
452   llvm::StringMap<PrecompiledPreamble::PreambleFileHash> FilesInPreamble;
453 
454   SourceManager &SourceMgr = Clang->getSourceManager();
455   for (auto &Filename : PreambleDepCollector->getDependencies()) {
456     auto FileOrErr = Clang->getFileManager().getFile(Filename);
457     if (!FileOrErr ||
458         *FileOrErr == SourceMgr.getFileEntryForID(SourceMgr.getMainFileID()))
459       continue;
460     auto File = *FileOrErr;
461     if (time_t ModTime = File->getModificationTime()) {
462       FilesInPreamble[File->getName()] =
463           PrecompiledPreamble::PreambleFileHash::createForFile(File->getSize(),
464                                                                ModTime);
465     } else {
466       const llvm::MemoryBuffer *Buffer = SourceMgr.getMemoryBufferForFile(File);
467       FilesInPreamble[File->getName()] =
468           PrecompiledPreamble::PreambleFileHash::createForMemoryBuffer(Buffer);
469     }
470   }
471 
472   return PrecompiledPreamble(
473       std::move(Storage), std::move(PreambleBytes), PreambleEndsAtStartOfLine,
474       std::move(FilesInPreamble), std::move(MissingFiles));
475 }
476 
477 PreambleBounds PrecompiledPreamble::getBounds() const {
478   return PreambleBounds(PreambleBytes.size(), PreambleEndsAtStartOfLine);
479 }
480 
481 std::size_t PrecompiledPreamble::getSize() const {
482   switch (Storage.getKind()) {
483   case PCHStorage::Kind::Empty:
484     assert(false && "Calling getSize() on invalid PrecompiledPreamble. "
485                     "Was it std::moved?");
486     return 0;
487   case PCHStorage::Kind::InMemory:
488     return Storage.asMemory().Data.size();
489   case PCHStorage::Kind::TempFile: {
490     uint64_t Result;
491     if (llvm::sys::fs::file_size(Storage.asFile().getFilePath(), Result))
492       return 0;
493 
494     assert(Result <= std::numeric_limits<std::size_t>::max() &&
495            "file size did not fit into size_t");
496     return Result;
497   }
498   }
499   llvm_unreachable("Unhandled storage kind");
500 }
501 
502 bool PrecompiledPreamble::CanReuse(const CompilerInvocation &Invocation,
503                                    const llvm::MemoryBuffer *MainFileBuffer,
504                                    PreambleBounds Bounds,
505                                    llvm::vfs::FileSystem *VFS) const {
506 
507   assert(
508       Bounds.Size <= MainFileBuffer->getBufferSize() &&
509       "Buffer is too large. Bounds were calculated from a different buffer?");
510 
511   auto PreambleInvocation = std::make_shared<CompilerInvocation>(Invocation);
512   PreprocessorOptions &PreprocessorOpts =
513       PreambleInvocation->getPreprocessorOpts();
514 
515   // We've previously computed a preamble. Check whether we have the same
516   // preamble now that we did before, and that there's enough space in
517   // the main-file buffer within the precompiled preamble to fit the
518   // new main file.
519   if (PreambleBytes.size() != Bounds.Size ||
520       PreambleEndsAtStartOfLine != Bounds.PreambleEndsAtStartOfLine ||
521       !std::equal(PreambleBytes.begin(), PreambleBytes.end(),
522                   MainFileBuffer->getBuffer().begin()))
523     return false;
524   // The preamble has not changed. We may be able to re-use the precompiled
525   // preamble.
526 
527   // Check that none of the files used by the preamble have changed.
528   // First, make a record of those files that have been overridden via
529   // remapping or unsaved_files.
530   std::map<llvm::sys::fs::UniqueID, PreambleFileHash> OverriddenFiles;
531   llvm::StringSet<> OverriddenAbsPaths; // Either by buffers or files.
532   for (const auto &R : PreprocessorOpts.RemappedFiles) {
533     llvm::vfs::Status Status;
534     if (!moveOnNoError(VFS->status(R.second), Status)) {
535       // If we can't stat the file we're remapping to, assume that something
536       // horrible happened.
537       return false;
538     }
539     // If a mapped file was previously missing, then it has changed.
540     llvm::SmallString<128> MappedPath(R.first);
541     if (!VFS->makeAbsolute(MappedPath))
542       OverriddenAbsPaths.insert(MappedPath);
543 
544     OverriddenFiles[Status.getUniqueID()] = PreambleFileHash::createForFile(
545         Status.getSize(), llvm::sys::toTimeT(Status.getLastModificationTime()));
546   }
547 
548   // OverridenFileBuffers tracks only the files not found in VFS.
549   llvm::StringMap<PreambleFileHash> OverridenFileBuffers;
550   for (const auto &RB : PreprocessorOpts.RemappedFileBuffers) {
551     const PrecompiledPreamble::PreambleFileHash PreambleHash =
552         PreambleFileHash::createForMemoryBuffer(RB.second);
553     llvm::vfs::Status Status;
554     if (moveOnNoError(VFS->status(RB.first), Status))
555       OverriddenFiles[Status.getUniqueID()] = PreambleHash;
556     else
557       OverridenFileBuffers[RB.first] = PreambleHash;
558 
559     llvm::SmallString<128> MappedPath(RB.first);
560     if (!VFS->makeAbsolute(MappedPath))
561       OverriddenAbsPaths.insert(MappedPath);
562   }
563 
564   // Check whether anything has changed.
565   for (const auto &F : FilesInPreamble) {
566     auto OverridenFileBuffer = OverridenFileBuffers.find(F.first());
567     if (OverridenFileBuffer != OverridenFileBuffers.end()) {
568       // The file's buffer was remapped and the file was not found in VFS.
569       // Check whether it matches up with the previous mapping.
570       if (OverridenFileBuffer->second != F.second)
571         return false;
572       continue;
573     }
574 
575     llvm::vfs::Status Status;
576     if (!moveOnNoError(VFS->status(F.first()), Status)) {
577       // If the file's buffer is not remapped and we can't stat it,
578       // assume that something horrible happened.
579       return false;
580     }
581 
582     std::map<llvm::sys::fs::UniqueID, PreambleFileHash>::iterator Overridden =
583         OverriddenFiles.find(Status.getUniqueID());
584     if (Overridden != OverriddenFiles.end()) {
585       // This file was remapped; check whether the newly-mapped file
586       // matches up with the previous mapping.
587       if (Overridden->second != F.second)
588         return false;
589       continue;
590     }
591 
592     // Neither the file's buffer nor the file itself was remapped;
593     // check whether it has changed on disk.
594     if (Status.getSize() != uint64_t(F.second.Size) ||
595         llvm::sys::toTimeT(Status.getLastModificationTime()) !=
596             F.second.ModTime)
597       return false;
598   }
599   for (const auto &F : MissingFiles) {
600     // A missing file may be "provided" by an override buffer or file.
601     if (OverriddenAbsPaths.count(F.getKey()))
602       return false;
603     // If a file previously recorded as missing exists as a regular file, then
604     // consider the preamble out-of-date.
605     if (auto Status = VFS->status(F.getKey())) {
606       if (Status->isRegularFile())
607         return false;
608     }
609   }
610   return true;
611 }
612 
613 void PrecompiledPreamble::AddImplicitPreamble(
614     CompilerInvocation &CI, IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS,
615     llvm::MemoryBuffer *MainFileBuffer) const {
616   PreambleBounds Bounds(PreambleBytes.size(), PreambleEndsAtStartOfLine);
617   configurePreamble(Bounds, CI, VFS, MainFileBuffer);
618 }
619 
620 void PrecompiledPreamble::OverridePreamble(
621     CompilerInvocation &CI, IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS,
622     llvm::MemoryBuffer *MainFileBuffer) const {
623   auto Bounds = ComputePreambleBounds(*CI.getLangOpts(), MainFileBuffer, 0);
624   configurePreamble(Bounds, CI, VFS, MainFileBuffer);
625 }
626 
627 PrecompiledPreamble::PrecompiledPreamble(
628     PCHStorage Storage, std::vector<char> PreambleBytes,
629     bool PreambleEndsAtStartOfLine,
630     llvm::StringMap<PreambleFileHash> FilesInPreamble,
631     llvm::StringSet<> MissingFiles)
632     : Storage(std::move(Storage)), FilesInPreamble(std::move(FilesInPreamble)),
633       MissingFiles(std::move(MissingFiles)),
634       PreambleBytes(std::move(PreambleBytes)),
635       PreambleEndsAtStartOfLine(PreambleEndsAtStartOfLine) {
636   assert(this->Storage.getKind() != PCHStorage::Kind::Empty);
637 }
638 
639 llvm::ErrorOr<PrecompiledPreamble::TempPCHFile>
640 PrecompiledPreamble::TempPCHFile::CreateNewPreamblePCHFile() {
641   // FIXME: This is a hack so that we can override the preamble file during
642   // crash-recovery testing, which is the only case where the preamble files
643   // are not necessarily cleaned up.
644   if (const char *TmpFile = ::getenv("CINDEXTEST_PREAMBLE_FILE"))
645     return TempPCHFile(TmpFile);
646 
647   llvm::SmallString<64> File;
648   // Using a version of createTemporaryFile with a file descriptor guarantees
649   // that we would never get a race condition in a multi-threaded setting
650   // (i.e., multiple threads getting the same temporary path).
651   int FD;
652   auto EC = llvm::sys::fs::createTemporaryFile("preamble", "pch", FD, File);
653   if (EC)
654     return EC;
655   // We only needed to make sure the file exists, close the file right away.
656   llvm::sys::Process::SafelyCloseFileDescriptor(FD);
657   return TempPCHFile(std::string(std::move(File).str()));
658 }
659 
660 PrecompiledPreamble::TempPCHFile::TempPCHFile(std::string FilePath)
661     : FilePath(std::move(FilePath)) {
662   TemporaryFiles::getInstance().addFile(*this->FilePath);
663 }
664 
665 PrecompiledPreamble::TempPCHFile::TempPCHFile(TempPCHFile &&Other) {
666   FilePath = std::move(Other.FilePath);
667   Other.FilePath = None;
668 }
669 
670 PrecompiledPreamble::TempPCHFile &PrecompiledPreamble::TempPCHFile::
671 operator=(TempPCHFile &&Other) {
672   RemoveFileIfPresent();
673 
674   FilePath = std::move(Other.FilePath);
675   Other.FilePath = None;
676   return *this;
677 }
678 
679 PrecompiledPreamble::TempPCHFile::~TempPCHFile() { RemoveFileIfPresent(); }
680 
681 void PrecompiledPreamble::TempPCHFile::RemoveFileIfPresent() {
682   if (FilePath) {
683     TemporaryFiles::getInstance().removeFile(*FilePath);
684     FilePath = None;
685   }
686 }
687 
688 llvm::StringRef PrecompiledPreamble::TempPCHFile::getFilePath() const {
689   assert(FilePath && "TempPCHFile doesn't have a FilePath. Had it been moved?");
690   return *FilePath;
691 }
692 
693 PrecompiledPreamble::PCHStorage::PCHStorage(TempPCHFile File)
694     : StorageKind(Kind::TempFile) {
695   new (&asFile()) TempPCHFile(std::move(File));
696 }
697 
698 PrecompiledPreamble::PCHStorage::PCHStorage(InMemoryPreamble Memory)
699     : StorageKind(Kind::InMemory) {
700   new (&asMemory()) InMemoryPreamble(std::move(Memory));
701 }
702 
703 PrecompiledPreamble::PCHStorage::PCHStorage(PCHStorage &&Other) : PCHStorage() {
704   *this = std::move(Other);
705 }
706 
707 PrecompiledPreamble::PCHStorage &PrecompiledPreamble::PCHStorage::
708 operator=(PCHStorage &&Other) {
709   destroy();
710 
711   StorageKind = Other.StorageKind;
712   switch (StorageKind) {
713   case Kind::Empty:
714     // do nothing;
715     break;
716   case Kind::TempFile:
717     new (&asFile()) TempPCHFile(std::move(Other.asFile()));
718     break;
719   case Kind::InMemory:
720     new (&asMemory()) InMemoryPreamble(std::move(Other.asMemory()));
721     break;
722   }
723 
724   Other.setEmpty();
725   return *this;
726 }
727 
728 PrecompiledPreamble::PCHStorage::~PCHStorage() { destroy(); }
729 
730 PrecompiledPreamble::PCHStorage::Kind
731 PrecompiledPreamble::PCHStorage::getKind() const {
732   return StorageKind;
733 }
734 
735 PrecompiledPreamble::TempPCHFile &PrecompiledPreamble::PCHStorage::asFile() {
736   assert(getKind() == Kind::TempFile);
737   return *reinterpret_cast<TempPCHFile *>(Storage.buffer);
738 }
739 
740 const PrecompiledPreamble::TempPCHFile &
741 PrecompiledPreamble::PCHStorage::asFile() const {
742   return const_cast<PCHStorage *>(this)->asFile();
743 }
744 
745 PrecompiledPreamble::InMemoryPreamble &
746 PrecompiledPreamble::PCHStorage::asMemory() {
747   assert(getKind() == Kind::InMemory);
748   return *reinterpret_cast<InMemoryPreamble *>(Storage.buffer);
749 }
750 
751 const PrecompiledPreamble::InMemoryPreamble &
752 PrecompiledPreamble::PCHStorage::asMemory() const {
753   return const_cast<PCHStorage *>(this)->asMemory();
754 }
755 
756 void PrecompiledPreamble::PCHStorage::destroy() {
757   switch (StorageKind) {
758   case Kind::Empty:
759     return;
760   case Kind::TempFile:
761     asFile().~TempPCHFile();
762     return;
763   case Kind::InMemory:
764     asMemory().~InMemoryPreamble();
765     return;
766   }
767 }
768 
769 void PrecompiledPreamble::PCHStorage::setEmpty() {
770   destroy();
771   StorageKind = Kind::Empty;
772 }
773 
774 PrecompiledPreamble::PreambleFileHash
775 PrecompiledPreamble::PreambleFileHash::createForFile(off_t Size,
776                                                      time_t ModTime) {
777   PreambleFileHash Result;
778   Result.Size = Size;
779   Result.ModTime = ModTime;
780   Result.MD5 = {};
781   return Result;
782 }
783 
784 PrecompiledPreamble::PreambleFileHash
785 PrecompiledPreamble::PreambleFileHash::createForMemoryBuffer(
786     const llvm::MemoryBuffer *Buffer) {
787   PreambleFileHash Result;
788   Result.Size = Buffer->getBufferSize();
789   Result.ModTime = 0;
790 
791   llvm::MD5 MD5Ctx;
792   MD5Ctx.update(Buffer->getBuffer().data());
793   MD5Ctx.final(Result.MD5);
794 
795   return Result;
796 }
797 
798 void PrecompiledPreamble::configurePreamble(
799     PreambleBounds Bounds, CompilerInvocation &CI,
800     IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS,
801     llvm::MemoryBuffer *MainFileBuffer) const {
802   assert(VFS);
803 
804   auto &PreprocessorOpts = CI.getPreprocessorOpts();
805 
806   // Remap main file to point to MainFileBuffer.
807   auto MainFilePath = CI.getFrontendOpts().Inputs[0].getFile();
808   PreprocessorOpts.addRemappedFile(MainFilePath, MainFileBuffer);
809 
810   // Configure ImpicitPCHInclude.
811   PreprocessorOpts.PrecompiledPreambleBytes.first = Bounds.Size;
812   PreprocessorOpts.PrecompiledPreambleBytes.second =
813       Bounds.PreambleEndsAtStartOfLine;
814   PreprocessorOpts.DisablePCHValidation = true;
815 
816   setupPreambleStorage(Storage, PreprocessorOpts, VFS);
817 }
818 
819 void PrecompiledPreamble::setupPreambleStorage(
820     const PCHStorage &Storage, PreprocessorOptions &PreprocessorOpts,
821     IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS) {
822   if (Storage.getKind() == PCHStorage::Kind::TempFile) {
823     const TempPCHFile &PCHFile = Storage.asFile();
824     PreprocessorOpts.ImplicitPCHInclude = std::string(PCHFile.getFilePath());
825 
826     // Make sure we can access the PCH file even if we're using a VFS
827     IntrusiveRefCntPtr<llvm::vfs::FileSystem> RealFS =
828         llvm::vfs::getRealFileSystem();
829     auto PCHPath = PCHFile.getFilePath();
830     if (VFS == RealFS || VFS->exists(PCHPath))
831       return;
832     auto Buf = RealFS->getBufferForFile(PCHPath);
833     if (!Buf) {
834       // We can't read the file even from RealFS, this is clearly an error,
835       // but we'll just leave the current VFS as is and let clang's code
836       // figure out what to do with missing PCH.
837       return;
838     }
839 
840     // We have a slight inconsistency here -- we're using the VFS to
841     // read files, but the PCH was generated in the real file system.
842     VFS = createVFSOverlayForPreamblePCH(PCHPath, std::move(*Buf), VFS);
843   } else {
844     assert(Storage.getKind() == PCHStorage::Kind::InMemory);
845     // For in-memory preamble, we have to provide a VFS overlay that makes it
846     // accessible.
847     StringRef PCHPath = getInMemoryPreamblePath();
848     PreprocessorOpts.ImplicitPCHInclude = std::string(PCHPath);
849 
850     auto Buf = llvm::MemoryBuffer::getMemBuffer(Storage.asMemory().Data);
851     VFS = createVFSOverlayForPreamblePCH(PCHPath, std::move(Buf), VFS);
852   }
853 }
854 
855 void PreambleCallbacks::BeforeExecute(CompilerInstance &CI) {}
856 void PreambleCallbacks::AfterExecute(CompilerInstance &CI) {}
857 void PreambleCallbacks::AfterPCHEmitted(ASTWriter &Writer) {}
858 void PreambleCallbacks::HandleTopLevelDecl(DeclGroupRef DG) {}
859 std::unique_ptr<PPCallbacks> PreambleCallbacks::createPPCallbacks() {
860   return nullptr;
861 }
862 CommentHandler *PreambleCallbacks::getCommentHandler() { return nullptr; }
863 
864 static llvm::ManagedStatic<BuildPreambleErrorCategory> BuildPreambleErrCategory;
865 
866 std::error_code clang::make_error_code(BuildPreambleError Error) {
867   return std::error_code(static_cast<int>(Error), *BuildPreambleErrCategory);
868 }
869 
870 const char *BuildPreambleErrorCategory::name() const noexcept {
871   return "build-preamble.error";
872 }
873 
874 std::string BuildPreambleErrorCategory::message(int condition) const {
875   switch (static_cast<BuildPreambleError>(condition)) {
876   case BuildPreambleError::CouldntCreateTempFile:
877     return "Could not create temporary file for PCH";
878   case BuildPreambleError::CouldntCreateTargetInfo:
879     return "CreateTargetInfo() return null";
880   case BuildPreambleError::BeginSourceFileFailed:
881     return "BeginSourceFile() return an error";
882   case BuildPreambleError::CouldntEmitPCH:
883     return "Could not emit PCH";
884   case BuildPreambleError::BadInputs:
885     return "Command line arguments must contain exactly one source file";
886   }
887   llvm_unreachable("unexpected BuildPreambleError");
888 }
889