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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
|
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/platform/media/url_index.h"
#include <algorithm>
#include <set>
#include <utility>
#include "base/feature_list.h"
#include "base/location.h"
#include "base/task/single_thread_task_runner.h"
#include "base/time/time.h"
#include "media/base/media_switches.h"
#include "third_party/blink/renderer/platform/media/resource_multi_buffer_data_provider.h"
#include "third_party/blink/renderer/platform/weborigin/security_origin.h"
#include "third_party/blink/renderer/platform/wtf/functional.h"
namespace blink {
const int kBlockSizeShift = 15; // 1<<15 == 32kb
const int kUrlMappingTimeoutSeconds = 300;
ResourceMultiBuffer::ResourceMultiBuffer(
UrlData* url_data,
int block_shift,
scoped_refptr<base::SingleThreadTaskRunner> task_runner)
: MultiBuffer(block_shift, url_data->url_index_->lru_),
url_data_(url_data),
task_runner_(std::move(task_runner)) {}
ResourceMultiBuffer::~ResourceMultiBuffer() = default;
std::unique_ptr<MultiBuffer::DataProvider> ResourceMultiBuffer::CreateWriter(
const MultiBufferBlockId& pos,
bool is_client_audio_element) {
auto writer = std::make_unique<ResourceMultiBufferDataProvider>(
url_data_, pos, is_client_audio_element, task_runner_);
writer->Start();
return writer;
}
bool ResourceMultiBuffer::RangeSupported() const {
return url_data_->range_supported_;
}
void ResourceMultiBuffer::OnEmpty() {
url_data_->OnEmpty();
}
UrlData::UrlData(base::PassKey<UrlIndex>,
const KURL& url,
CorsMode cors_mode,
base::WeakPtr<UrlIndex> url_index,
CacheMode cache_lookup_mode,
scoped_refptr<base::SingleThreadTaskRunner> task_runner)
: UrlData(url,
cors_mode,
url_index,
cache_lookup_mode,
std::move(task_runner)) {}
UrlData::UrlData(const KURL& url,
CorsMode cors_mode,
base::WeakPtr<UrlIndex> url_index,
CacheMode cache_lookup_mode,
scoped_refptr<base::SingleThreadTaskRunner> task_runner)
: url_(url),
have_data_origin_(false),
cors_mode_(cors_mode),
has_access_control_(false),
url_index_(url_index),
length_(kPositionNotSpecified),
range_supported_(false),
cacheable_(false),
cache_lookup_mode_(cache_lookup_mode),
multibuffer_(this, url_index_->block_shift_, std::move(task_runner)) {}
UrlData::~UrlData() = default;
std::pair<KURL, UrlData::CorsMode> UrlData::key() const {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return std::make_pair(url(), cors_mode());
}
void UrlData::set_valid_until(base::Time valid_until) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
valid_until_ = valid_until;
}
void UrlData::MergeFrom(const scoped_refptr<UrlData>& other) {
// We're merging from another UrlData that refers to the *same*
// resource, so when we merge the metadata, we can use the most
// optimistic values.
if (ValidateDataOrigin(other->data_origin_)) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
valid_until_ = std::max(valid_until_, other->valid_until_);
// set_length() will not override the length if already known.
set_length(other->length_);
cacheable_ |= other->cacheable_;
cache_lookup_mode_ = other->cache_lookup_mode_;
range_supported_ |= other->range_supported_;
if (last_modified_.is_null()) {
last_modified_ = other->last_modified_;
}
bytes_read_from_cache_ += other->bytes_read_from_cache_;
// is_cors_corss_origin_ will not relax from true to false.
set_is_cors_cross_origin(other->is_cors_cross_origin_);
has_access_control_ |= other->has_access_control_;
multibuffer()->MergeFrom(other->multibuffer());
}
}
void UrlData::set_cacheable(bool cacheable) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
cacheable_ = cacheable;
}
void UrlData::set_length(int64_t length) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
if (length != kPositionNotSpecified) {
length_ = length;
}
}
void UrlData::set_is_cors_cross_origin(bool is_cors_cross_origin) {
if (is_cors_cross_origin_)
return;
is_cors_cross_origin_ = is_cors_cross_origin;
}
void UrlData::set_has_access_control() {
has_access_control_ = true;
}
void UrlData::set_mime_type(std::string mime_type) {
mime_type_ = std::move(mime_type);
}
void UrlData::set_passed_timing_allow_origin_check(
bool passed_timing_allow_origin_check) {
passed_timing_allow_origin_check_ = passed_timing_allow_origin_check;
}
void UrlData::RedirectTo(const scoped_refptr<UrlData>& url_data) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
// Copy any cached data over to the new location.
url_data->multibuffer()->MergeFrom(multibuffer());
std::vector<RedirectCB> redirect_callbacks;
redirect_callbacks.swap(redirect_callbacks_);
for (RedirectCB& cb : redirect_callbacks) {
std::move(cb).Run(url_data);
}
}
void UrlData::Fail() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
// Handled similar to a redirect.
std::vector<RedirectCB> redirect_callbacks;
redirect_callbacks.swap(redirect_callbacks_);
for (RedirectCB& cb : redirect_callbacks) {
std::move(cb).Run(nullptr);
}
}
void UrlData::OnRedirect(RedirectCB cb) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
redirect_callbacks_.push_back(std::move(cb));
}
void UrlData::Use() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
last_used_ = base::Time::Now();
}
bool UrlData::ValidateDataOrigin(const KURL& origin) {
if (!have_data_origin_) {
data_origin_ = origin;
have_data_origin_ = true;
return true;
}
if (cors_mode_ == UrlData::CORS_UNSPECIFIED) {
// If both origins are null return true, otherwise
// SecurityOrigin::AreSameOrigin will create a unique nonce for each.
if (data_origin_.IsNull() && origin.IsNull()) {
return true;
}
return SecurityOrigin::SecurityOrigin::AreSameOrigin(data_origin_, origin);
}
// The actual cors checks is done in the net layer.
return true;
}
void UrlData::OnEmpty() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
if (url_index_) {
url_index_->RemoveUrlData(this);
}
}
bool UrlData::FullyCached() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
if (length_ == kPositionNotSpecified)
return false;
// Check that the first unavailable block in the cache is after the
// end of the file.
return (multibuffer()->FindNextUnavailable(0) << kBlockSizeShift) >= length_;
}
bool UrlData::Valid() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
base::Time now = base::Time::Now();
if (!range_supported_ && !FullyCached())
return false;
// When ranges are not supported, we cannot re-use cached data.
if (valid_until_ > now)
return true;
if (now - last_used_ < base::Seconds(kUrlMappingTimeoutSeconds))
return true;
return false;
}
void UrlData::set_last_modified(base::Time last_modified) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
last_modified_ = last_modified;
}
void UrlData::set_etag(const std::string& etag) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
etag_ = etag;
}
void UrlData::set_range_supported() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
range_supported_ = true;
}
ResourceMultiBuffer* UrlData::multibuffer() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return &multibuffer_;
}
size_t UrlData::CachedSize() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return multibuffer()->map().size();
}
UrlIndex::UrlIndex(ResourceFetchContext* fetch_context,
scoped_refptr<base::SingleThreadTaskRunner> task_runner)
: UrlIndex(fetch_context, kBlockSizeShift, std::move(task_runner)) {}
UrlIndex::UrlIndex(ResourceFetchContext* fetch_context,
int block_shift,
scoped_refptr<base::SingleThreadTaskRunner> task_runner)
: fetch_context_(fetch_context),
lru_(base::MakeRefCounted<MultiBuffer::GlobalLRU>(task_runner)),
block_shift_(block_shift),
memory_pressure_listener_(FROM_HERE,
WTF::BindRepeating(&UrlIndex::OnMemoryPressure,
WTF::Unretained(this))),
task_runner_(std::move(task_runner)) {}
UrlIndex::~UrlIndex() = default;
void UrlIndex::RemoveUrlData(const scoped_refptr<UrlData>& url_data) {
DCHECK(url_data->multibuffer()->map().empty());
auto i = indexed_data_.find(url_data->key());
if (i != indexed_data_.end() && i->value == url_data) {
indexed_data_.erase(i);
}
}
scoped_refptr<UrlData> UrlIndex::GetByUrl(const KURL& url,
UrlData::CorsMode cors_mode,
UrlData::CacheMode cache_mode) {
if (cache_mode == UrlData::kNormal) {
auto i = indexed_data_.find(std::make_pair(url, cors_mode));
if (i != indexed_data_.end() && i->value->Valid()) {
return i->value;
}
}
return NewUrlData(url, cors_mode, cache_mode);
}
scoped_refptr<UrlData> UrlIndex::NewUrlData(
const KURL& url,
UrlData::CorsMode cors_mode,
UrlData::CacheMode cache_lookup_mode) {
return base::MakeRefCounted<UrlData>(base::PassKey<UrlIndex>(), url,
cors_mode, weak_factory_.GetWeakPtr(),
cache_lookup_mode, task_runner_);
}
void UrlIndex::OnMemoryPressure(
base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level) {
switch (memory_pressure_level) {
case base::MemoryPressureListener::MEMORY_PRESSURE_LEVEL_NONE:
break;
case base::MemoryPressureListener::MEMORY_PRESSURE_LEVEL_MODERATE:
lru_->TryFree(128); // try to free 128 32kb blocks if possible
break;
case base::MemoryPressureListener::MEMORY_PRESSURE_LEVEL_CRITICAL:
lru_->TryFreeAll(); // try to free as many blocks as possible
break;
}
}
namespace {
bool IsStrongEtag(const std::string& etag) {
return etag.size() > 2 && etag[0] == '"';
}
bool IsNewDataForSameResource(const scoped_refptr<UrlData>& new_entry,
const scoped_refptr<UrlData>& old_entry) {
if (IsStrongEtag(new_entry->etag()) && IsStrongEtag(old_entry->etag())) {
if (new_entry->etag() != old_entry->etag())
return true;
}
if (!new_entry->last_modified().is_null()) {
if (new_entry->last_modified() != old_entry->last_modified())
return true;
}
return false;
}
} // namespace
scoped_refptr<UrlData> UrlIndex::TryInsert(
const scoped_refptr<UrlData>& url_data) {
auto iter = indexed_data_.find(url_data->key());
if (iter == indexed_data_.end()) {
// If valid and not already indexed, index it.
if (url_data->Valid()) {
indexed_data_.insert(url_data->key(), url_data);
}
return url_data;
}
// A UrlData instance for the same key is already indexed.
// If the indexed instance is the same as |url_data|,
// nothing needs to be done.
if (iter->value == url_data) {
return url_data;
}
// The indexed instance is different.
// Check if it should be replaced with |url_data|.
if (IsNewDataForSameResource(url_data, iter->value)) {
if (url_data->Valid()) {
iter->value = url_data;
}
return url_data;
}
// If the url data should bypass the cache lookup, we want to not merge it.
if (url_data->cache_lookup_mode() == UrlData::kCacheDisabled) {
return url_data;
}
if (url_data->Valid()) {
if ((!iter->value->Valid() ||
url_data->CachedSize() > iter->value->CachedSize())) {
iter->value = url_data;
} else {
iter->value->MergeFrom(url_data);
}
}
return iter->value;
}
} // namespace blink
|