Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 1 | //===-CachePruning.cpp - LLVM Cache Directory Pruning ---------------------===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 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 |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file implements the pruning of a directory based on least recently used. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | #include "llvm/Support/CachePruning.h" |
| 14 | |
Mehdi Amini | 045d475 | 2016-04-18 21:54:00 +0000 | [diff] [blame] | 15 | #include "llvm/Support/Debug.h" |
NAKAMURA Takumi | f5e36ad | 2016-05-14 14:21:39 +0000 | [diff] [blame] | 16 | #include "llvm/Support/Errc.h" |
Peter Collingbourne | d1eac7b | 2017-03-16 03:42:00 +0000 | [diff] [blame] | 17 | #include "llvm/Support/Error.h" |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 18 | #include "llvm/Support/FileSystem.h" |
| 19 | #include "llvm/Support/Path.h" |
| 20 | #include "llvm/Support/raw_ostream.h" |
| 21 | |
Mehdi Amini | 045d475 | 2016-04-18 21:54:00 +0000 | [diff] [blame] | 22 | #define DEBUG_TYPE "cache-pruning" |
| 23 | |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 24 | #include <set> |
Vassil Vassilev | 2ec8b15 | 2016-09-14 08:55:18 +0000 | [diff] [blame] | 25 | #include <system_error> |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 26 | |
| 27 | using namespace llvm; |
| 28 | |
Bob Haarman | 481d224 | 2018-08-22 00:52:16 +0000 | [diff] [blame] | 29 | namespace { |
| 30 | struct FileInfo { |
| 31 | sys::TimePoint<> Time; |
| 32 | uint64_t Size; |
| 33 | std::string Path; |
| 34 | |
| 35 | /// Used to determine which files to prune first. Also used to determine |
| 36 | /// set membership, so must take into account all fields. |
| 37 | bool operator<(const FileInfo &Other) const { |
Fangrui Song | a0f9c4f | 2019-04-21 06:17:40 +0000 | [diff] [blame] | 38 | return std::tie(Time, Other.Size, Path) < |
| 39 | std::tie(Other.Time, Size, Other.Path); |
Bob Haarman | 481d224 | 2018-08-22 00:52:16 +0000 | [diff] [blame] | 40 | } |
| 41 | }; |
| 42 | } // anonymous namespace |
| 43 | |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 44 | /// Write a new timestamp file with the given path. This is used for the pruning |
| 45 | /// interval option. |
| 46 | static void writeTimestampFile(StringRef TimestampFile) { |
| 47 | std::error_code EC; |
Fangrui Song | d9b948b | 2019-08-05 05:43:48 +0000 | [diff] [blame] | 48 | raw_fd_ostream Out(TimestampFile.str(), EC, sys::fs::OF_None); |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 49 | } |
| 50 | |
Peter Collingbourne | d1eac7b | 2017-03-16 03:42:00 +0000 | [diff] [blame] | 51 | static Expected<std::chrono::seconds> parseDuration(StringRef Duration) { |
| 52 | if (Duration.empty()) |
| 53 | return make_error<StringError>("Duration must not be empty", |
| 54 | inconvertibleErrorCode()); |
| 55 | |
| 56 | StringRef NumStr = Duration.slice(0, Duration.size()-1); |
| 57 | uint64_t Num; |
| 58 | if (NumStr.getAsInteger(0, Num)) |
| 59 | return make_error<StringError>("'" + NumStr + "' not an integer", |
| 60 | inconvertibleErrorCode()); |
| 61 | |
| 62 | switch (Duration.back()) { |
| 63 | case 's': |
| 64 | return std::chrono::seconds(Num); |
| 65 | case 'm': |
| 66 | return std::chrono::minutes(Num); |
| 67 | case 'h': |
| 68 | return std::chrono::hours(Num); |
| 69 | default: |
| 70 | return make_error<StringError>("'" + Duration + |
| 71 | "' must end with one of 's', 'm' or 'h'", |
| 72 | inconvertibleErrorCode()); |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | Expected<CachePruningPolicy> |
| 77 | llvm::parseCachePruningPolicy(StringRef PolicyStr) { |
| 78 | CachePruningPolicy Policy; |
| 79 | std::pair<StringRef, StringRef> P = {"", PolicyStr}; |
| 80 | while (!P.second.empty()) { |
| 81 | P = P.second.split(':'); |
| 82 | |
| 83 | StringRef Key, Value; |
| 84 | std::tie(Key, Value) = P.first.split('='); |
| 85 | if (Key == "prune_interval") { |
| 86 | auto DurationOrErr = parseDuration(Value); |
| 87 | if (!DurationOrErr) |
Peter Collingbourne | 255c6e1 | 2017-03-16 03:54:38 +0000 | [diff] [blame] | 88 | return DurationOrErr.takeError(); |
Peter Collingbourne | d1eac7b | 2017-03-16 03:42:00 +0000 | [diff] [blame] | 89 | Policy.Interval = *DurationOrErr; |
| 90 | } else if (Key == "prune_after") { |
| 91 | auto DurationOrErr = parseDuration(Value); |
| 92 | if (!DurationOrErr) |
Peter Collingbourne | 255c6e1 | 2017-03-16 03:54:38 +0000 | [diff] [blame] | 93 | return DurationOrErr.takeError(); |
Peter Collingbourne | d1eac7b | 2017-03-16 03:42:00 +0000 | [diff] [blame] | 94 | Policy.Expiration = *DurationOrErr; |
| 95 | } else if (Key == "cache_size") { |
Peter Collingbourne | 15ab1720 | 2017-06-23 17:17:47 +0000 | [diff] [blame] | 96 | if (Value.back() != '%') |
| 97 | return make_error<StringError>("'" + Value + "' must be a percentage", |
| 98 | inconvertibleErrorCode()); |
Peter Collingbourne | 8d29223 | 2017-06-23 17:05:03 +0000 | [diff] [blame] | 99 | StringRef SizeStr = Value.drop_back(); |
Peter Collingbourne | d1eac7b | 2017-03-16 03:42:00 +0000 | [diff] [blame] | 100 | uint64_t Size; |
| 101 | if (SizeStr.getAsInteger(0, Size)) |
| 102 | return make_error<StringError>("'" + SizeStr + "' not an integer", |
| 103 | inconvertibleErrorCode()); |
| 104 | if (Size > 100) |
| 105 | return make_error<StringError>("'" + SizeStr + |
| 106 | "' must be between 0 and 100", |
| 107 | inconvertibleErrorCode()); |
Peter Collingbourne | 8d29223 | 2017-06-23 17:05:03 +0000 | [diff] [blame] | 108 | Policy.MaxSizePercentageOfAvailableSpace = Size; |
| 109 | } else if (Key == "cache_size_bytes") { |
| 110 | uint64_t Mult = 1; |
Peter Collingbourne | 30aaa2f | 2017-06-23 17:13:51 +0000 | [diff] [blame] | 111 | switch (tolower(Value.back())) { |
Peter Collingbourne | 8d29223 | 2017-06-23 17:05:03 +0000 | [diff] [blame] | 112 | case 'k': |
| 113 | Mult = 1024; |
| 114 | Value = Value.drop_back(); |
| 115 | break; |
| 116 | case 'm': |
| 117 | Mult = 1024 * 1024; |
| 118 | Value = Value.drop_back(); |
| 119 | break; |
| 120 | case 'g': |
| 121 | Mult = 1024 * 1024 * 1024; |
| 122 | Value = Value.drop_back(); |
| 123 | break; |
| 124 | } |
| 125 | uint64_t Size; |
| 126 | if (Value.getAsInteger(0, Size)) |
| 127 | return make_error<StringError>("'" + Value + "' not an integer", |
| 128 | inconvertibleErrorCode()); |
| 129 | Policy.MaxSizeBytes = Size * Mult; |
Peter Collingbourne | 048ac83 | 2017-11-22 18:27:31 +0000 | [diff] [blame] | 130 | } else if (Key == "cache_size_files") { |
| 131 | if (Value.getAsInteger(0, Policy.MaxSizeFiles)) |
| 132 | return make_error<StringError>("'" + Value + "' not an integer", |
| 133 | inconvertibleErrorCode()); |
Peter Collingbourne | d1eac7b | 2017-03-16 03:42:00 +0000 | [diff] [blame] | 134 | } else { |
| 135 | return make_error<StringError>("Unknown key: '" + Key + "'", |
| 136 | inconvertibleErrorCode()); |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | return Policy; |
| 141 | } |
| 142 | |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 143 | /// Prune the cache of files that haven't been accessed in a long time. |
Peter Collingbourne | cead56f | 2017-03-15 22:54:18 +0000 | [diff] [blame] | 144 | bool llvm::pruneCache(StringRef Path, CachePruningPolicy Policy) { |
Pavel Labath | 757ca88 | 2016-10-24 10:59:17 +0000 | [diff] [blame] | 145 | using namespace std::chrono; |
| 146 | |
Mehdi Amini | 721800d | 2016-04-21 06:43:45 +0000 | [diff] [blame] | 147 | if (Path.empty()) |
| 148 | return false; |
| 149 | |
| 150 | bool isPathDir; |
| 151 | if (sys::fs::is_directory(Path, isPathDir)) |
| 152 | return false; |
| 153 | |
| 154 | if (!isPathDir) |
| 155 | return false; |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 156 | |
Peter Collingbourne | 8d29223 | 2017-06-23 17:05:03 +0000 | [diff] [blame] | 157 | Policy.MaxSizePercentageOfAvailableSpace = |
| 158 | std::min(Policy.MaxSizePercentageOfAvailableSpace, 100u); |
Peter Collingbourne | cead56f | 2017-03-15 22:54:18 +0000 | [diff] [blame] | 159 | |
| 160 | if (Policy.Expiration == seconds(0) && |
Peter Collingbourne | 8d29223 | 2017-06-23 17:05:03 +0000 | [diff] [blame] | 161 | Policy.MaxSizePercentageOfAvailableSpace == 0 && |
Peter Collingbourne | 048ac83 | 2017-11-22 18:27:31 +0000 | [diff] [blame] | 162 | Policy.MaxSizeBytes == 0 && Policy.MaxSizeFiles == 0) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 163 | LLVM_DEBUG(dbgs() << "No pruning settings set, exit early\n"); |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 164 | // Nothing will be pruned, early exit |
| 165 | return false; |
Mehdi Amini | 045d475 | 2016-04-18 21:54:00 +0000 | [diff] [blame] | 166 | } |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 167 | |
| 168 | // Try to stat() the timestamp file. |
Mehdi Amini | 721800d | 2016-04-21 06:43:45 +0000 | [diff] [blame] | 169 | SmallString<128> TimestampFile(Path); |
| 170 | sys::path::append(TimestampFile, "llvmcache.timestamp"); |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 171 | sys::fs::file_status FileStatus; |
Ben Dunbobbin | bb534b1 | 2017-12-22 18:32:15 +0000 | [diff] [blame] | 172 | const auto CurrentTime = system_clock::now(); |
NAKAMURA Takumi | f5e36ad | 2016-05-14 14:21:39 +0000 | [diff] [blame] | 173 | if (auto EC = sys::fs::status(TimestampFile, FileStatus)) { |
| 174 | if (EC == errc::no_such_file_or_directory) { |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 175 | // If the timestamp file wasn't there, create one now. |
| 176 | writeTimestampFile(TimestampFile); |
| 177 | } else { |
| 178 | // Unknown error? |
| 179 | return false; |
| 180 | } |
| 181 | } else { |
Ben Dunbobbin | bb534b1 | 2017-12-22 18:32:15 +0000 | [diff] [blame] | 182 | if (!Policy.Interval) |
| 183 | return false; |
Ben Dunbobbin | cac5214 | 2017-11-17 14:42:18 +0000 | [diff] [blame] | 184 | if (Policy.Interval != seconds(0)) { |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 185 | // Check whether the time stamp is older than our pruning interval. |
| 186 | // If not, do nothing. |
Ben Dunbobbin | bb534b1 | 2017-12-22 18:32:15 +0000 | [diff] [blame] | 187 | const auto TimeStampModTime = FileStatus.getLastModificationTime(); |
Mehdi Amini | 045d475 | 2016-04-18 21:54:00 +0000 | [diff] [blame] | 188 | auto TimeStampAge = CurrentTime - TimeStampModTime; |
Ben Dunbobbin | bb534b1 | 2017-12-22 18:32:15 +0000 | [diff] [blame] | 189 | if (TimeStampAge <= *Policy.Interval) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 190 | LLVM_DEBUG(dbgs() << "Timestamp file too recent (" |
| 191 | << duration_cast<seconds>(TimeStampAge).count() |
| 192 | << "s old), do not prune.\n"); |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 193 | return false; |
Mehdi Amini | 045d475 | 2016-04-18 21:54:00 +0000 | [diff] [blame] | 194 | } |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 195 | } |
| 196 | // Write a new timestamp file so that nobody else attempts to prune. |
| 197 | // There is a benign race condition here, if two processes happen to |
| 198 | // notice at the same time that the timestamp is out-of-date. |
| 199 | writeTimestampFile(TimestampFile); |
| 200 | } |
| 201 | |
Bob Haarman | 481d224 | 2018-08-22 00:52:16 +0000 | [diff] [blame] | 202 | // Keep track of files to delete to get below the size limit. |
| 203 | // Order by time of last use so that recently used files are preserved. |
| 204 | std::set<FileInfo> FileInfos; |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 205 | uint64_t TotalSize = 0; |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 206 | |
| 207 | // Walk the entire directory cache, looking for unused files. |
| 208 | std::error_code EC; |
| 209 | SmallString<128> CachePathNative; |
| 210 | sys::path::native(Path, CachePathNative); |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 211 | // Walk all of the files within this directory. |
| 212 | for (sys::fs::directory_iterator File(CachePathNative, EC), FileEnd; |
| 213 | File != FileEnd && !EC; File.increment(EC)) { |
Peter Collingbourne | 25a17ba | 2017-03-20 16:41:57 +0000 | [diff] [blame] | 214 | // Ignore any files not beginning with the string "llvmcache-". This |
| 215 | // includes the timestamp file as well as any files created by the user. |
| 216 | // This acts as a safeguard against data loss if the user specifies the |
| 217 | // wrong directory as their cache directory. |
| 218 | if (!sys::path::filename(File->path()).startswith("llvmcache-")) |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 219 | continue; |
| 220 | |
| 221 | // Look at this file. If we can't stat it, there's nothing interesting |
| 222 | // there. |
Peter Collingbourne | 0dfdb44 | 2017-10-10 22:19:46 +0000 | [diff] [blame] | 223 | ErrorOr<sys::fs::basic_file_status> StatusOrErr = File->status(); |
| 224 | if (!StatusOrErr) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 225 | LLVM_DEBUG(dbgs() << "Ignore " << File->path() << " (can't stat)\n"); |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 226 | continue; |
Mehdi Amini | 045d475 | 2016-04-18 21:54:00 +0000 | [diff] [blame] | 227 | } |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 228 | |
| 229 | // If the file hasn't been used recently enough, delete it |
Peter Collingbourne | 0dfdb44 | 2017-10-10 22:19:46 +0000 | [diff] [blame] | 230 | const auto FileAccessTime = StatusOrErr->getLastAccessedTime(); |
Mehdi Amini | 045d475 | 2016-04-18 21:54:00 +0000 | [diff] [blame] | 231 | auto FileAge = CurrentTime - FileAccessTime; |
Peter Collingbourne | 048ac83 | 2017-11-22 18:27:31 +0000 | [diff] [blame] | 232 | if (Policy.Expiration != seconds(0) && FileAge > Policy.Expiration) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 233 | LLVM_DEBUG(dbgs() << "Remove " << File->path() << " (" |
| 234 | << duration_cast<seconds>(FileAge).count() |
| 235 | << "s old)\n"); |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 236 | sys::fs::remove(File->path()); |
| 237 | continue; |
| 238 | } |
| 239 | |
| 240 | // Leave it here for now, but add it to the list of size-based pruning. |
Peter Collingbourne | 0dfdb44 | 2017-10-10 22:19:46 +0000 | [diff] [blame] | 241 | TotalSize += StatusOrErr->getSize(); |
Bob Haarman | 481d224 | 2018-08-22 00:52:16 +0000 | [diff] [blame] | 242 | FileInfos.insert({FileAccessTime, StatusOrErr->getSize(), File->path()}); |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 243 | } |
| 244 | |
Bob Haarman | 481d224 | 2018-08-22 00:52:16 +0000 | [diff] [blame] | 245 | auto FileInfo = FileInfos.begin(); |
| 246 | size_t NumFiles = FileInfos.size(); |
Peter Collingbourne | 048ac83 | 2017-11-22 18:27:31 +0000 | [diff] [blame] | 247 | |
| 248 | auto RemoveCacheFile = [&]() { |
| 249 | // Remove the file. |
Bob Haarman | 481d224 | 2018-08-22 00:52:16 +0000 | [diff] [blame] | 250 | sys::fs::remove(FileInfo->Path); |
Peter Collingbourne | 048ac83 | 2017-11-22 18:27:31 +0000 | [diff] [blame] | 251 | // Update size |
Bob Haarman | 481d224 | 2018-08-22 00:52:16 +0000 | [diff] [blame] | 252 | TotalSize -= FileInfo->Size; |
Peter Collingbourne | 048ac83 | 2017-11-22 18:27:31 +0000 | [diff] [blame] | 253 | NumFiles--; |
Bob Haarman | 481d224 | 2018-08-22 00:52:16 +0000 | [diff] [blame] | 254 | LLVM_DEBUG(dbgs() << " - Remove " << FileInfo->Path << " (size " |
| 255 | << FileInfo->Size << "), new occupancy is " << TotalSize |
| 256 | << "%\n"); |
| 257 | ++FileInfo; |
Peter Collingbourne | 048ac83 | 2017-11-22 18:27:31 +0000 | [diff] [blame] | 258 | }; |
| 259 | |
| 260 | // Prune for number of files. |
| 261 | if (Policy.MaxSizeFiles) |
| 262 | while (NumFiles > Policy.MaxSizeFiles) |
| 263 | RemoveCacheFile(); |
| 264 | |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 265 | // Prune for size now if needed |
Peter Collingbourne | 048ac83 | 2017-11-22 18:27:31 +0000 | [diff] [blame] | 266 | if (Policy.MaxSizePercentageOfAvailableSpace > 0 || Policy.MaxSizeBytes > 0) { |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 267 | auto ErrOrSpaceInfo = sys::fs::disk_space(Path); |
| 268 | if (!ErrOrSpaceInfo) { |
| 269 | report_fatal_error("Can't get available size"); |
| 270 | } |
| 271 | sys::fs::space_info SpaceInfo = ErrOrSpaceInfo.get(); |
| 272 | auto AvailableSpace = TotalSize + SpaceInfo.free; |
Peter Collingbourne | 8d29223 | 2017-06-23 17:05:03 +0000 | [diff] [blame] | 273 | |
| 274 | if (Policy.MaxSizePercentageOfAvailableSpace == 0) |
| 275 | Policy.MaxSizePercentageOfAvailableSpace = 100; |
| 276 | if (Policy.MaxSizeBytes == 0) |
| 277 | Policy.MaxSizeBytes = AvailableSpace; |
| 278 | auto TotalSizeTarget = std::min<uint64_t>( |
| 279 | AvailableSpace * Policy.MaxSizePercentageOfAvailableSpace / 100ull, |
| 280 | Policy.MaxSizeBytes); |
| 281 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 282 | LLVM_DEBUG(dbgs() << "Occupancy: " << ((100 * TotalSize) / AvailableSpace) |
| 283 | << "% target is: " |
| 284 | << Policy.MaxSizePercentageOfAvailableSpace << "%, " |
| 285 | << Policy.MaxSizeBytes << " bytes\n"); |
Peter Collingbourne | 8d29223 | 2017-06-23 17:05:03 +0000 | [diff] [blame] | 286 | |
Peter Collingbourne | 048ac83 | 2017-11-22 18:27:31 +0000 | [diff] [blame] | 287 | // Remove the oldest accessed files first, till we get below the threshold. |
Bob Haarman | 481d224 | 2018-08-22 00:52:16 +0000 | [diff] [blame] | 288 | while (TotalSize > TotalSizeTarget && FileInfo != FileInfos.end()) |
Peter Collingbourne | 048ac83 | 2017-11-22 18:27:31 +0000 | [diff] [blame] | 289 | RemoveCacheFile(); |
Mehdi Amini | 2781498 | 2016-04-02 03:28:26 +0000 | [diff] [blame] | 290 | } |
| 291 | return true; |
| 292 | } |