blob: 7f97d1afbd3a4cf757d0951ce1fc9feb2578b88b [file] [log] [blame]
Mehdi Amini27814982016-04-02 03:28:26 +00001//===-CachePruning.cpp - LLVM Cache Directory Pruning ---------------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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 Amini27814982016-04-02 03:28:26 +00006//
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 Amini045d4752016-04-18 21:54:00 +000015#include "llvm/Support/Debug.h"
NAKAMURA Takumif5e36ad2016-05-14 14:21:39 +000016#include "llvm/Support/Errc.h"
Peter Collingbourned1eac7b2017-03-16 03:42:00 +000017#include "llvm/Support/Error.h"
Mehdi Amini27814982016-04-02 03:28:26 +000018#include "llvm/Support/FileSystem.h"
19#include "llvm/Support/Path.h"
20#include "llvm/Support/raw_ostream.h"
21
Mehdi Amini045d4752016-04-18 21:54:00 +000022#define DEBUG_TYPE "cache-pruning"
23
Mehdi Amini27814982016-04-02 03:28:26 +000024#include <set>
Vassil Vassilev2ec8b152016-09-14 08:55:18 +000025#include <system_error>
Mehdi Amini27814982016-04-02 03:28:26 +000026
27using namespace llvm;
28
Bob Haarman481d2242018-08-22 00:52:16 +000029namespace {
30struct 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 {
38 if (Time < Other.Time)
39 return true;
40 else if (Other.Time < Time)
41 return false;
42 if (Other.Size < Size)
43 return true;
44 else if (Size < Other.Size)
45 return false;
46 return Path < Other.Path;
47 }
48};
49} // anonymous namespace
50
Mehdi Amini27814982016-04-02 03:28:26 +000051/// Write a new timestamp file with the given path. This is used for the pruning
52/// interval option.
53static void writeTimestampFile(StringRef TimestampFile) {
54 std::error_code EC;
55 raw_fd_ostream Out(TimestampFile.str(), EC, sys::fs::F_None);
56}
57
Peter Collingbourned1eac7b2017-03-16 03:42:00 +000058static Expected<std::chrono::seconds> parseDuration(StringRef Duration) {
59 if (Duration.empty())
60 return make_error<StringError>("Duration must not be empty",
61 inconvertibleErrorCode());
62
63 StringRef NumStr = Duration.slice(0, Duration.size()-1);
64 uint64_t Num;
65 if (NumStr.getAsInteger(0, Num))
66 return make_error<StringError>("'" + NumStr + "' not an integer",
67 inconvertibleErrorCode());
68
69 switch (Duration.back()) {
70 case 's':
71 return std::chrono::seconds(Num);
72 case 'm':
73 return std::chrono::minutes(Num);
74 case 'h':
75 return std::chrono::hours(Num);
76 default:
77 return make_error<StringError>("'" + Duration +
78 "' must end with one of 's', 'm' or 'h'",
79 inconvertibleErrorCode());
80 }
81}
82
83Expected<CachePruningPolicy>
84llvm::parseCachePruningPolicy(StringRef PolicyStr) {
85 CachePruningPolicy Policy;
86 std::pair<StringRef, StringRef> P = {"", PolicyStr};
87 while (!P.second.empty()) {
88 P = P.second.split(':');
89
90 StringRef Key, Value;
91 std::tie(Key, Value) = P.first.split('=');
92 if (Key == "prune_interval") {
93 auto DurationOrErr = parseDuration(Value);
94 if (!DurationOrErr)
Peter Collingbourne255c6e12017-03-16 03:54:38 +000095 return DurationOrErr.takeError();
Peter Collingbourned1eac7b2017-03-16 03:42:00 +000096 Policy.Interval = *DurationOrErr;
97 } else if (Key == "prune_after") {
98 auto DurationOrErr = parseDuration(Value);
99 if (!DurationOrErr)
Peter Collingbourne255c6e12017-03-16 03:54:38 +0000100 return DurationOrErr.takeError();
Peter Collingbourned1eac7b2017-03-16 03:42:00 +0000101 Policy.Expiration = *DurationOrErr;
102 } else if (Key == "cache_size") {
Peter Collingbourne15ab17202017-06-23 17:17:47 +0000103 if (Value.back() != '%')
104 return make_error<StringError>("'" + Value + "' must be a percentage",
105 inconvertibleErrorCode());
Peter Collingbourne8d292232017-06-23 17:05:03 +0000106 StringRef SizeStr = Value.drop_back();
Peter Collingbourned1eac7b2017-03-16 03:42:00 +0000107 uint64_t Size;
108 if (SizeStr.getAsInteger(0, Size))
109 return make_error<StringError>("'" + SizeStr + "' not an integer",
110 inconvertibleErrorCode());
111 if (Size > 100)
112 return make_error<StringError>("'" + SizeStr +
113 "' must be between 0 and 100",
114 inconvertibleErrorCode());
Peter Collingbourne8d292232017-06-23 17:05:03 +0000115 Policy.MaxSizePercentageOfAvailableSpace = Size;
116 } else if (Key == "cache_size_bytes") {
117 uint64_t Mult = 1;
Peter Collingbourne30aaa2f2017-06-23 17:13:51 +0000118 switch (tolower(Value.back())) {
Peter Collingbourne8d292232017-06-23 17:05:03 +0000119 case 'k':
120 Mult = 1024;
121 Value = Value.drop_back();
122 break;
123 case 'm':
124 Mult = 1024 * 1024;
125 Value = Value.drop_back();
126 break;
127 case 'g':
128 Mult = 1024 * 1024 * 1024;
129 Value = Value.drop_back();
130 break;
131 }
132 uint64_t Size;
133 if (Value.getAsInteger(0, Size))
134 return make_error<StringError>("'" + Value + "' not an integer",
135 inconvertibleErrorCode());
136 Policy.MaxSizeBytes = Size * Mult;
Peter Collingbourne048ac832017-11-22 18:27:31 +0000137 } else if (Key == "cache_size_files") {
138 if (Value.getAsInteger(0, Policy.MaxSizeFiles))
139 return make_error<StringError>("'" + Value + "' not an integer",
140 inconvertibleErrorCode());
Peter Collingbourned1eac7b2017-03-16 03:42:00 +0000141 } else {
142 return make_error<StringError>("Unknown key: '" + Key + "'",
143 inconvertibleErrorCode());
144 }
145 }
146
147 return Policy;
148}
149
Mehdi Amini27814982016-04-02 03:28:26 +0000150/// Prune the cache of files that haven't been accessed in a long time.
Peter Collingbournecead56f2017-03-15 22:54:18 +0000151bool llvm::pruneCache(StringRef Path, CachePruningPolicy Policy) {
Pavel Labath757ca882016-10-24 10:59:17 +0000152 using namespace std::chrono;
153
Mehdi Amini721800d2016-04-21 06:43:45 +0000154 if (Path.empty())
155 return false;
156
157 bool isPathDir;
158 if (sys::fs::is_directory(Path, isPathDir))
159 return false;
160
161 if (!isPathDir)
162 return false;
Mehdi Amini27814982016-04-02 03:28:26 +0000163
Peter Collingbourne8d292232017-06-23 17:05:03 +0000164 Policy.MaxSizePercentageOfAvailableSpace =
165 std::min(Policy.MaxSizePercentageOfAvailableSpace, 100u);
Peter Collingbournecead56f2017-03-15 22:54:18 +0000166
167 if (Policy.Expiration == seconds(0) &&
Peter Collingbourne8d292232017-06-23 17:05:03 +0000168 Policy.MaxSizePercentageOfAvailableSpace == 0 &&
Peter Collingbourne048ac832017-11-22 18:27:31 +0000169 Policy.MaxSizeBytes == 0 && Policy.MaxSizeFiles == 0) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000170 LLVM_DEBUG(dbgs() << "No pruning settings set, exit early\n");
Mehdi Amini27814982016-04-02 03:28:26 +0000171 // Nothing will be pruned, early exit
172 return false;
Mehdi Amini045d4752016-04-18 21:54:00 +0000173 }
Mehdi Amini27814982016-04-02 03:28:26 +0000174
175 // Try to stat() the timestamp file.
Mehdi Amini721800d2016-04-21 06:43:45 +0000176 SmallString<128> TimestampFile(Path);
177 sys::path::append(TimestampFile, "llvmcache.timestamp");
Mehdi Amini27814982016-04-02 03:28:26 +0000178 sys::fs::file_status FileStatus;
Ben Dunbobbinbb534b12017-12-22 18:32:15 +0000179 const auto CurrentTime = system_clock::now();
NAKAMURA Takumif5e36ad2016-05-14 14:21:39 +0000180 if (auto EC = sys::fs::status(TimestampFile, FileStatus)) {
181 if (EC == errc::no_such_file_or_directory) {
Mehdi Amini27814982016-04-02 03:28:26 +0000182 // If the timestamp file wasn't there, create one now.
183 writeTimestampFile(TimestampFile);
184 } else {
185 // Unknown error?
186 return false;
187 }
188 } else {
Ben Dunbobbinbb534b12017-12-22 18:32:15 +0000189 if (!Policy.Interval)
190 return false;
Ben Dunbobbincac52142017-11-17 14:42:18 +0000191 if (Policy.Interval != seconds(0)) {
Mehdi Amini27814982016-04-02 03:28:26 +0000192 // Check whether the time stamp is older than our pruning interval.
193 // If not, do nothing.
Ben Dunbobbinbb534b12017-12-22 18:32:15 +0000194 const auto TimeStampModTime = FileStatus.getLastModificationTime();
Mehdi Amini045d4752016-04-18 21:54:00 +0000195 auto TimeStampAge = CurrentTime - TimeStampModTime;
Ben Dunbobbinbb534b12017-12-22 18:32:15 +0000196 if (TimeStampAge <= *Policy.Interval) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000197 LLVM_DEBUG(dbgs() << "Timestamp file too recent ("
198 << duration_cast<seconds>(TimeStampAge).count()
199 << "s old), do not prune.\n");
Mehdi Amini27814982016-04-02 03:28:26 +0000200 return false;
Mehdi Amini045d4752016-04-18 21:54:00 +0000201 }
Mehdi Amini27814982016-04-02 03:28:26 +0000202 }
203 // Write a new timestamp file so that nobody else attempts to prune.
204 // There is a benign race condition here, if two processes happen to
205 // notice at the same time that the timestamp is out-of-date.
206 writeTimestampFile(TimestampFile);
207 }
208
Bob Haarman481d2242018-08-22 00:52:16 +0000209 // Keep track of files to delete to get below the size limit.
210 // Order by time of last use so that recently used files are preserved.
211 std::set<FileInfo> FileInfos;
Mehdi Amini27814982016-04-02 03:28:26 +0000212 uint64_t TotalSize = 0;
Mehdi Amini27814982016-04-02 03:28:26 +0000213
214 // Walk the entire directory cache, looking for unused files.
215 std::error_code EC;
216 SmallString<128> CachePathNative;
217 sys::path::native(Path, CachePathNative);
Mehdi Amini27814982016-04-02 03:28:26 +0000218 // Walk all of the files within this directory.
219 for (sys::fs::directory_iterator File(CachePathNative, EC), FileEnd;
220 File != FileEnd && !EC; File.increment(EC)) {
Peter Collingbourne25a17ba2017-03-20 16:41:57 +0000221 // Ignore any files not beginning with the string "llvmcache-". This
222 // includes the timestamp file as well as any files created by the user.
223 // This acts as a safeguard against data loss if the user specifies the
224 // wrong directory as their cache directory.
225 if (!sys::path::filename(File->path()).startswith("llvmcache-"))
Mehdi Amini27814982016-04-02 03:28:26 +0000226 continue;
227
228 // Look at this file. If we can't stat it, there's nothing interesting
229 // there.
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000230 ErrorOr<sys::fs::basic_file_status> StatusOrErr = File->status();
231 if (!StatusOrErr) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000232 LLVM_DEBUG(dbgs() << "Ignore " << File->path() << " (can't stat)\n");
Mehdi Amini27814982016-04-02 03:28:26 +0000233 continue;
Mehdi Amini045d4752016-04-18 21:54:00 +0000234 }
Mehdi Amini27814982016-04-02 03:28:26 +0000235
236 // If the file hasn't been used recently enough, delete it
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000237 const auto FileAccessTime = StatusOrErr->getLastAccessedTime();
Mehdi Amini045d4752016-04-18 21:54:00 +0000238 auto FileAge = CurrentTime - FileAccessTime;
Peter Collingbourne048ac832017-11-22 18:27:31 +0000239 if (Policy.Expiration != seconds(0) && FileAge > Policy.Expiration) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000240 LLVM_DEBUG(dbgs() << "Remove " << File->path() << " ("
241 << duration_cast<seconds>(FileAge).count()
242 << "s old)\n");
Mehdi Amini27814982016-04-02 03:28:26 +0000243 sys::fs::remove(File->path());
244 continue;
245 }
246
247 // Leave it here for now, but add it to the list of size-based pruning.
Peter Collingbourne0dfdb442017-10-10 22:19:46 +0000248 TotalSize += StatusOrErr->getSize();
Bob Haarman481d2242018-08-22 00:52:16 +0000249 FileInfos.insert({FileAccessTime, StatusOrErr->getSize(), File->path()});
Mehdi Amini27814982016-04-02 03:28:26 +0000250 }
251
Bob Haarman481d2242018-08-22 00:52:16 +0000252 auto FileInfo = FileInfos.begin();
253 size_t NumFiles = FileInfos.size();
Peter Collingbourne048ac832017-11-22 18:27:31 +0000254
255 auto RemoveCacheFile = [&]() {
256 // Remove the file.
Bob Haarman481d2242018-08-22 00:52:16 +0000257 sys::fs::remove(FileInfo->Path);
Peter Collingbourne048ac832017-11-22 18:27:31 +0000258 // Update size
Bob Haarman481d2242018-08-22 00:52:16 +0000259 TotalSize -= FileInfo->Size;
Peter Collingbourne048ac832017-11-22 18:27:31 +0000260 NumFiles--;
Bob Haarman481d2242018-08-22 00:52:16 +0000261 LLVM_DEBUG(dbgs() << " - Remove " << FileInfo->Path << " (size "
262 << FileInfo->Size << "), new occupancy is " << TotalSize
263 << "%\n");
264 ++FileInfo;
Peter Collingbourne048ac832017-11-22 18:27:31 +0000265 };
266
267 // Prune for number of files.
268 if (Policy.MaxSizeFiles)
269 while (NumFiles > Policy.MaxSizeFiles)
270 RemoveCacheFile();
271
Mehdi Amini27814982016-04-02 03:28:26 +0000272 // Prune for size now if needed
Peter Collingbourne048ac832017-11-22 18:27:31 +0000273 if (Policy.MaxSizePercentageOfAvailableSpace > 0 || Policy.MaxSizeBytes > 0) {
Mehdi Amini27814982016-04-02 03:28:26 +0000274 auto ErrOrSpaceInfo = sys::fs::disk_space(Path);
275 if (!ErrOrSpaceInfo) {
276 report_fatal_error("Can't get available size");
277 }
278 sys::fs::space_info SpaceInfo = ErrOrSpaceInfo.get();
279 auto AvailableSpace = TotalSize + SpaceInfo.free;
Peter Collingbourne8d292232017-06-23 17:05:03 +0000280
281 if (Policy.MaxSizePercentageOfAvailableSpace == 0)
282 Policy.MaxSizePercentageOfAvailableSpace = 100;
283 if (Policy.MaxSizeBytes == 0)
284 Policy.MaxSizeBytes = AvailableSpace;
285 auto TotalSizeTarget = std::min<uint64_t>(
286 AvailableSpace * Policy.MaxSizePercentageOfAvailableSpace / 100ull,
287 Policy.MaxSizeBytes);
288
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000289 LLVM_DEBUG(dbgs() << "Occupancy: " << ((100 * TotalSize) / AvailableSpace)
290 << "% target is: "
291 << Policy.MaxSizePercentageOfAvailableSpace << "%, "
292 << Policy.MaxSizeBytes << " bytes\n");
Peter Collingbourne8d292232017-06-23 17:05:03 +0000293
Peter Collingbourne048ac832017-11-22 18:27:31 +0000294 // Remove the oldest accessed files first, till we get below the threshold.
Bob Haarman481d2242018-08-22 00:52:16 +0000295 while (TotalSize > TotalSizeTarget && FileInfo != FileInfos.end())
Peter Collingbourne048ac832017-11-22 18:27:31 +0000296 RemoveCacheFile();
Mehdi Amini27814982016-04-02 03:28:26 +0000297 }
298 return true;
299}