1 //===-Caching.cpp - LLVM Local File Cache ---------------------------------===// 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 // This file implements the localCache function, which simplifies creating, 10 // adding to, and querying a local file system cache. localCache takes care of 11 // periodically pruning older files from the cache using a CachePruningPolicy. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #include "llvm/Support/Caching.h" 16 #include "llvm/Support/Errc.h" 17 #include "llvm/Support/FileSystem.h" 18 #include "llvm/Support/MemoryBuffer.h" 19 #include "llvm/Support/Path.h" 20 21 #if !defined(_MSC_VER) && !defined(__MINGW32__) 22 #include <unistd.h> 23 #else 24 #include <io.h> 25 #endif 26 27 using namespace llvm; 28 29 Expected<FileCache> llvm::localCache(Twine CacheNameRef, 30 Twine TempFilePrefixRef, 31 Twine CacheDirectoryPathRef, 32 AddBufferFn AddBuffer) { 33 if (std::error_code EC = sys::fs::create_directories(CacheDirectoryPathRef)) 34 return errorCodeToError(EC); 35 36 // Create local copies which are safely captured-by-copy in lambdas 37 SmallString<64> CacheName, TempFilePrefix, CacheDirectoryPath; 38 CacheNameRef.toVector(CacheName); 39 TempFilePrefixRef.toVector(TempFilePrefix); 40 CacheDirectoryPathRef.toVector(CacheDirectoryPath); 41 42 return [=](unsigned Task, StringRef Key) -> Expected<AddStreamFn> { 43 // This choice of file name allows the cache to be pruned (see pruneCache() 44 // in include/llvm/Support/CachePruning.h). 45 SmallString<64> EntryPath; 46 sys::path::append(EntryPath, CacheDirectoryPath, "llvmcache-" + Key); 47 // First, see if we have a cache hit. 48 SmallString<64> ResultPath; 49 Expected<sys::fs::file_t> FDOrErr = sys::fs::openNativeFileForRead( 50 Twine(EntryPath), sys::fs::OF_UpdateAtime, &ResultPath); 51 std::error_code EC; 52 if (FDOrErr) { 53 ErrorOr<std::unique_ptr<MemoryBuffer>> MBOrErr = 54 MemoryBuffer::getOpenFile(*FDOrErr, EntryPath, 55 /*FileSize=*/-1, 56 /*RequiresNullTerminator=*/false); 57 sys::fs::closeFile(*FDOrErr); 58 if (MBOrErr) { 59 AddBuffer(Task, std::move(*MBOrErr)); 60 return AddStreamFn(); 61 } 62 EC = MBOrErr.getError(); 63 } else { 64 EC = errorToErrorCode(FDOrErr.takeError()); 65 } 66 67 // On Windows we can fail to open a cache file with a permission denied 68 // error. This generally means that another process has requested to delete 69 // the file while it is still open, but it could also mean that another 70 // process has opened the file without the sharing permissions we need. 71 // Since the file is probably being deleted we handle it in the same way as 72 // if the file did not exist at all. 73 if (EC != errc::no_such_file_or_directory && EC != errc::permission_denied) 74 return createStringError(EC, Twine("Failed to open cache file ") + 75 EntryPath + ": " + EC.message() + "\n"); 76 77 // This file stream is responsible for commiting the resulting file to the 78 // cache and calling AddBuffer to add it to the link. 79 struct CacheStream : CachedFileStream { 80 AddBufferFn AddBuffer; 81 sys::fs::TempFile TempFile; 82 unsigned Task; 83 84 CacheStream(std::unique_ptr<raw_pwrite_stream> OS, AddBufferFn AddBuffer, 85 sys::fs::TempFile TempFile, std::string EntryPath, 86 unsigned Task) 87 : CachedFileStream(std::move(OS), std::move(EntryPath)), 88 AddBuffer(std::move(AddBuffer)), TempFile(std::move(TempFile)), 89 Task(Task) {} 90 91 ~CacheStream() { 92 // TODO: Manually commit rather than using non-trivial destructor, 93 // allowing to replace report_fatal_errors with a return Error. 94 95 // Make sure the stream is closed before committing it. 96 OS.reset(); 97 98 // Open the file first to avoid racing with a cache pruner. 99 ErrorOr<std::unique_ptr<MemoryBuffer>> MBOrErr = 100 MemoryBuffer::getOpenFile( 101 sys::fs::convertFDToNativeFile(TempFile.FD), ObjectPathName, 102 /*FileSize=*/-1, /*RequiresNullTerminator=*/false); 103 if (!MBOrErr) 104 report_fatal_error(Twine("Failed to open new cache file ") + 105 TempFile.TmpName + ": " + 106 MBOrErr.getError().message() + "\n"); 107 108 // On POSIX systems, this will atomically replace the destination if 109 // it already exists. We try to emulate this on Windows, but this may 110 // fail with a permission denied error (for example, if the destination 111 // is currently opened by another process that does not give us the 112 // sharing permissions we need). Since the existing file should be 113 // semantically equivalent to the one we are trying to write, we give 114 // AddBuffer a copy of the bytes we wrote in that case. We do this 115 // instead of just using the existing file, because the pruner might 116 // delete the file before we get a chance to use it. 117 Error E = TempFile.keep(ObjectPathName); 118 E = handleErrors(std::move(E), [&](const ECError &E) -> Error { 119 std::error_code EC = E.convertToErrorCode(); 120 if (EC != errc::permission_denied) 121 return errorCodeToError(EC); 122 123 auto MBCopy = MemoryBuffer::getMemBufferCopy((*MBOrErr)->getBuffer(), 124 ObjectPathName); 125 MBOrErr = std::move(MBCopy); 126 127 // FIXME: should we consume the discard error? 128 consumeError(TempFile.discard()); 129 130 return Error::success(); 131 }); 132 133 if (E) 134 report_fatal_error(Twine("Failed to rename temporary file ") + 135 TempFile.TmpName + " to " + ObjectPathName + ": " + 136 toString(std::move(E)) + "\n"); 137 138 AddBuffer(Task, std::move(*MBOrErr)); 139 } 140 }; 141 142 return [=](size_t Task) -> Expected<std::unique_ptr<CachedFileStream>> { 143 // Write to a temporary to avoid race condition 144 SmallString<64> TempFilenameModel; 145 sys::path::append(TempFilenameModel, CacheDirectoryPath, 146 TempFilePrefix + "-%%%%%%.tmp.o"); 147 Expected<sys::fs::TempFile> Temp = sys::fs::TempFile::create( 148 TempFilenameModel, sys::fs::owner_read | sys::fs::owner_write); 149 if (!Temp) 150 return createStringError(errc::io_error, 151 toString(Temp.takeError()) + ": " + CacheName + 152 ": Can't get a temporary file"); 153 154 // This CacheStream will move the temporary file into the cache when done. 155 return std::make_unique<CacheStream>( 156 std::make_unique<raw_fd_ostream>(Temp->FD, /* ShouldClose */ false), 157 AddBuffer, std::move(*Temp), std::string(EntryPath.str()), Task); 158 }; 159 }; 160 } 161