1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/disk_cache/cache_util.h"
#include <limits>
#include "base/files/file_enumerator.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/files/safe_base_name.h"
#include "base/functional/bind.h"
#include "base/location.h"
#include "base/metrics/field_trial_params.h"
#include "base/numerics/clamped_math.h"
#include "base/numerics/ostream_operators.h"
#include "base/strings/strcat.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/bind_post_task.h"
#include "base/task/thread_pool.h"
#include "base/threading/thread_restrictions.h"
#include "build/build_config.h"
namespace {
const int kMaxOldFolders = 100;
// Returns a fully qualified name from path and name, using a given name prefix
// and index number. For instance, if the arguments are "/foo", "bar" and 5, it
// will return "/foo/old_bar_005".
base::FilePath GetPrefixedName(const base::FilePath& path,
const base::SafeBaseName& basename,
int index) {
const std::string index_str = base::StringPrintf("_%03d", index);
const base::FilePath::StringType filename = base::StrCat({
FILE_PATH_LITERAL("old_"), basename.path().value(),
#if BUILDFLAG(IS_WIN)
base::ASCIIToWide(index_str)
#else
index_str
#endif
});
return path.Append(filename);
}
base::FilePath GetTempCacheName(const base::FilePath& dirname,
const base::SafeBaseName& basename) {
// We'll attempt to have up to kMaxOldFolders folders for deletion.
for (int i = 0; i < kMaxOldFolders; i++) {
base::FilePath to_delete = GetPrefixedName(dirname, basename, i);
if (!base::PathExists(to_delete))
return to_delete;
}
return base::FilePath();
}
void CleanupTemporaryDirectories(const base::FilePath& path) {
const base::FilePath dirname = path.DirName();
const std::optional<base::SafeBaseName> basename =
base::SafeBaseName::Create(path);
if (!basename.has_value()) {
return;
}
for (int i = 0; i < kMaxOldFolders; i++) {
base::FilePath to_delete = GetPrefixedName(dirname, *basename, i);
disk_cache::DeleteCache(to_delete, /*remove_folder=*/true);
}
}
bool MoveDirectoryToTemporaryDirectory(const base::FilePath& path) {
const base::FilePath dirname = path.DirName();
const std::optional<base::SafeBaseName> basename =
base::SafeBaseName::Create(path);
if (!basename.has_value()) {
return false;
}
const base::FilePath destination = GetTempCacheName(dirname, *basename);
if (destination.empty()) {
return false;
}
return disk_cache::MoveCache(path, destination);
}
// In order to process a potentially large number of files, we'll rename the
// cache directory to old_ + original_name + number, (located on the same parent
// directory), and use a worker thread to delete all the files on all the stale
// cache directories. The whole process can still fail if we are not able to
// rename the cache directory (for instance due to a sharing violation), and in
// that case a cache for this profile (on the desired path) cannot be created.
bool CleanupDirectoryInternal(const base::FilePath& path) {
const base::FilePath path_to_pass = path.StripTrailingSeparators();
bool result = MoveDirectoryToTemporaryDirectory(path_to_pass);
base::ThreadPool::PostTask(
FROM_HERE,
{base::MayBlock(), base::TaskPriority::BEST_EFFORT,
base::TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN},
base::BindOnce(&CleanupTemporaryDirectories, path_to_pass));
return result;
}
int64_t PreferredCacheSizeInternal(int64_t available) {
using disk_cache::kDefaultCacheSize;
// Return 80% of the available space if there is not enough space to use
// kDefaultCacheSize.
if (available < kDefaultCacheSize * 10 / 8)
return available * 8 / 10;
// Return kDefaultCacheSize if it uses 10% to 80% of the available space.
if (available < kDefaultCacheSize * 10)
return kDefaultCacheSize;
// Return 10% of the available space if the target size
// (2.5 * kDefaultCacheSize) is more than 10%.
if (available < static_cast<int64_t>(kDefaultCacheSize) * 25)
return available / 10;
// Return the target size (2.5 * kDefaultCacheSize) if it uses 10% to 1%
// of the available space.
if (available < static_cast<int64_t>(kDefaultCacheSize) * 250)
return kDefaultCacheSize * 5 / 2;
// Return 1% of the available space.
return available / 100;
}
} // namespace
namespace disk_cache {
const int kDefaultCacheSize = 80 * 1024 * 1024;
BASE_FEATURE(kChangeDiskCacheSizeExperiment,
"ChangeDiskCacheSize",
// See go/change-disk-cache-size-results-2024 for an explanation of why the
// state of this feature varies by platform.
#if BUILDFLAG(IS_WIN)
base::FEATURE_DISABLED_BY_DEFAULT
#else
base::FEATURE_ENABLED_BY_DEFAULT
#endif
);
void DeleteCache(const base::FilePath& path, bool remove_folder) {
if (remove_folder) {
if (!base::DeletePathRecursively(path))
LOG(WARNING) << "Unable to delete cache folder.";
return;
}
base::FileEnumerator iter(
path,
/* recursive */ false,
base::FileEnumerator::FILES | base::FileEnumerator::DIRECTORIES);
for (base::FilePath file = iter.Next(); !file.value().empty();
file = iter.Next()) {
if (!base::DeletePathRecursively(file)) {
LOG(WARNING) << "Unable to delete cache.";
return;
}
}
}
void CleanupDirectory(const base::FilePath& path,
base::OnceCallback<void(bool)> callback) {
auto task_runner = base::ThreadPool::CreateSequencedTaskRunner(
{base::MayBlock(), base::TaskPriority::USER_BLOCKING,
base::TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN});
task_runner->PostTaskAndReplyWithResult(
FROM_HERE, base::BindOnce(CleanupDirectoryInternal, path),
std::move(callback));
}
bool CleanupDirectorySync(const base::FilePath& path) {
base::ScopedAllowBlocking allow_blocking;
return CleanupDirectoryInternal(path);
}
// Returns the preferred maximum number of bytes for the cache given the
// number of available bytes.
int PreferredCacheSize(int64_t available, net::CacheType type) {
// Percent of cache size to use, relative to the default size. "100" means to
// use 100% of the default size.
int percent_relative_size = 100;
if (base::FeatureList::IsEnabled(
disk_cache::kChangeDiskCacheSizeExperiment) &&
type == net::DISK_CACHE) {
percent_relative_size = base::GetFieldTrialParamByFeatureAsInt(
disk_cache::kChangeDiskCacheSizeExperiment, "percent_relative_size",
400 /* default value */);
}
// Cap scaling, as a safety check, to avoid overflow.
if (percent_relative_size > 400)
percent_relative_size = 400;
else if (percent_relative_size < 100)
percent_relative_size = 100;
base::ClampedNumeric<int64_t> scaled_default_disk_cache_size =
(base::ClampedNumeric<int64_t>(disk_cache::kDefaultCacheSize) *
percent_relative_size) /
100;
base::ClampedNumeric<int64_t> preferred_cache_size =
scaled_default_disk_cache_size;
// If available disk space is known, use it to compute a better value for
// preferred_cache_size.
if (available >= 0) {
preferred_cache_size = PreferredCacheSizeInternal(available);
// If the preferred cache size is less than 20% of the available space,
// scale for the field trial, capping the scaled value at 20% of the
// available space.
if (preferred_cache_size < available / 5) {
const base::ClampedNumeric<int64_t> clamped_available(available);
preferred_cache_size =
std::min((preferred_cache_size * percent_relative_size) / 100,
clamped_available / 5);
}
}
// Limit cache size to somewhat less than kint32max to avoid potential
// integer overflows in cache backend implementations.
//
// Note: the 4x limit is of course far below that; historically it came
// from the blockfile backend with the following explanation:
// "Let's not use more than the default size while we tune-up the performance
// of bigger caches. "
base::ClampedNumeric<int64_t> size_limit = scaled_default_disk_cache_size * 4;
// Native code entries can be large, so we would like a larger cache.
// Make the size limit 50% larger in that case.
if (type == net::GENERATED_NATIVE_CODE_CACHE) {
size_limit = (size_limit / 2) * 3;
} else if (type == net::GENERATED_WEBUI_BYTE_CODE_CACHE) {
size_limit = std::min(
size_limit, base::ClampedNumeric<int64_t>(kMaxWebUICodeCacheSize));
}
DCHECK_LT(size_limit, std::numeric_limits<int32_t>::max());
return static_cast<int32_t>(std::min(preferred_cache_size, size_limit));
}
} // namespace disk_cache
|