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 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_BINDINGS_PARKABLE_STRING_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_BINDINGS_PARKABLE_STRING_H_
#include <memory>
#include <utility>
#include "base/check_op.h"
#include "base/dcheck_is_on.h"
#include "base/gtest_prod_util.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/synchronization/lock.h"
#include "base/thread_annotations.h"
#include "base/time/time.h"
#include "third_party/blink/renderer/platform/bindings/buildflags.h"
#include "third_party/blink/renderer/platform/disk_data_metadata.h"
#include "third_party/blink/renderer/platform/platform_export.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
#include "third_party/blink/renderer/platform/wtf/size_assertions.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
#include "third_party/blink/renderer/platform/wtf/thread_safe_ref_counted.h"
#include "third_party/blink/renderer/platform/wtf/threading.h"
// ParkableString represents a string that may be parked in memory, that it its
// underlying memory address may change. Its content can be retrieved with the
// |ToString()| method.
// As a consequence, the inner pointer should never be cached, and only touched
// through a string returned by the |ToString()| method.
// It is safe to call `ToString()` and destroy ParkableStrings from any thread,
// although the interactions with the ParkableStringManager must always be
// performed on the main thread.
namespace blink {
class Digestor;
class DiskDataAllocator;
class WebProcessMemoryDump;
struct BackgroundTaskParams;
// A parked string is parked by calling |Park()|, and unparked by calling
// |ToString()| on a parked string.
// |Lock()| does *not* unpark a string.
class PLATFORM_EXPORT ParkableStringImpl
: public WTF::ThreadSafeRefCounted<ParkableStringImpl> {
public:
enum class ParkingMode {
kSynchronousOnly,
kCompress,
kToDisk,
kCompressThenToDisk
};
enum class AgeOrParkResult {
kSuccessOrTransientFailure,
kNonTransientFailure
};
enum class Age { kYoung = 0, kOld = 1, kVeryOld = 2 };
enum class CompressionAlgorithm {
kZlib = 0,
kSnappy = 1,
#if BUILDFLAG(HAS_ZSTD_COMPRESSION)
kZstd = 2
#endif
};
constexpr static size_t kDigestSize = 32; // SHA256.
using SecureDigest = Vector<uint8_t, kDigestSize>;
// Computes a secure hash of a |string|, to be passed to |MakeParkable()|.
//
// TODO(lizeb): This is the "right" way of hashing a string. Move this code
// into WTF, and make sure it's the only way that is used.
static std::unique_ptr<SecureDigest> HashString(StringImpl* string);
// Updates a digest to include the string width. This should be called after
// the Digestor has consumed all of the bytes of a string. Afterward, the
// digest can be used in MakeParkable.
static void UpdateDigestWithEncoding(Digestor* digestor, bool is_8bit);
// Not all ParkableStringImpls are actually parkable.
static scoped_refptr<ParkableStringImpl> MakeNonParkable(
scoped_refptr<StringImpl>&& impl);
// |digest| is as returned by |HashString()|, hence not nullptr.
static scoped_refptr<ParkableStringImpl> MakeParkable(
scoped_refptr<StringImpl>&& impl,
std::unique_ptr<SecureDigest> digest);
static CompressionAlgorithm GetCompressionAlgorithm();
ParkableStringImpl(const ParkableStringImpl&) = delete;
ParkableStringImpl& operator=(const ParkableStringImpl&) = delete;
void Lock();
void Unlock();
// The returned string may be used as a normal one, as long as the
// returned value (or a copy of it) is alive.
const String& ToString();
// See the matching String methods.
bool is_8bit() const {
if (!may_be_parked())
return string_.Is8Bit();
return metadata_->is_8bit_;
}
unsigned length() const {
if (!may_be_parked())
return string_.length();
return metadata_->length_;
}
size_t CharactersSizeInBytes() const;
size_t MemoryFootprintForDump() const;
struct MemoryUsage {
size_t this_size;
raw_ptr<const void> string_impl;
size_t string_impl_size;
};
MemoryUsage MemoryUsageForSnapshot() const;
// Returns true iff the string can be parked. This does not mean that the
// string can be parked now, merely that it is eligible to be parked at some
// point.
bool may_be_parked() const { return !!metadata_; }
// Note: Public member functions below must only be called on strings for
// which |may_be_parked()| returns true. Otherwise, these will either trigger
// a DCHECK() or crash.
// Tries to either age or park a string:
//
// - If the string is already old, tries to park it.
// - If it is very old and parked, tries to write it to disk.
// - Otherwise, tries to age it.
//
// The action doesn't necessarily succeed. either due to a temporary
// or potentially lasting condition.
//
// As parking may be synchronous, this can call back into
// ParkableStringManager.
AgeOrParkResult MaybeAgeOrParkString();
// A parked string cannot be accessed until it has been |Unpark()|-ed.
//
// Parking may be synchronous, and will be if compressed data is already
// available. If |mode| is |kIfCompressedDataExists|, then parking will always
// be synchronous.
//
// Must not be called if |may_be_parked()| returns false.
//
// Returns true if the string is being parked or has been parked.
bool Park(ParkingMode mode);
// Returns true if the string is parked, takes the lock inside.
bool is_parked() const LOCKS_EXCLUDED(metadata_->lock_);
bool is_on_disk() const LOCKS_EXCLUDED(metadata_->lock_);
// Returns whether synchronous parking is possible, that is the string was
// parked in the past.
bool has_compressed_data() const { return !!metadata_->compressed_; }
bool has_on_disk_data() const { return !!metadata_->on_disk_metadata_; }
// Returns the compressed size, must not be called unless the string has a
// compressed representation.
size_t compressed_size() const {
DCHECK(has_compressed_data());
return metadata_->compressed_->size();
}
// Returns the on-disk size, must not be called unless the string has data
// on-disk.
size_t on_disk_size() const {
DCHECK(has_on_disk_data());
return metadata_->on_disk_metadata_->size();
}
Age age_for_testing() {
base::AutoLock locker(metadata_->lock_);
return metadata_->age_;
}
bool background_task_in_progress_for_testing() const {
return metadata_->background_task_in_progress_;
}
const SecureDigest* digest() const {
AssertOnValidThread();
DCHECK(metadata_);
return &metadata_->digest_;
}
void Release() const LOCKS_EXCLUDED(metadata_->lock_) {
if (!may_be_parked()) {
if (RefCountedThreadSafeBase::Release()) {
delete this;
}
return;
}
base::ReleasableAutoLock locker(&metadata_->lock_);
if (HasOneRef()) {
// Release the lock early because, if we are in the main thread,
// `ParkableStringManager::RemoveOnMainThread()` will try to take the lock
// inside a locked scope.
locker.Release();
ReleaseAndRemoveIfNeeded();
return;
}
RefCountedThreadSafeBase::Release();
}
private:
enum class State : uint8_t;
enum class Status : uint8_t;
friend class ParkableStringManager;
// |digest| is as returned by calling HashString() on |impl|, or nullptr for
// a non-parkable instance.
ParkableStringImpl(scoped_refptr<StringImpl>&& impl,
std::unique_ptr<SecureDigest> digest);
~ParkableStringImpl();
// Note: Private member functions below must only be called on strings for
// which |may_be_parked()| returns true. Otherwise, these will either trigger
// a DCHECK() or crash.
// Doesn't make the string young. May be called from any thread.
void LockWithoutMakingYoung() {
base::AutoLock locker(metadata_->lock_);
metadata_->lock_depth_ += 1;
}
void MakeYoung() EXCLUSIVE_LOCKS_REQUIRED(metadata_->lock_) {
metadata_->age_ = Age::kYoung;
}
// Whether the string is referenced or locked. The return value is valid as
// long as |lock_| is held.
Status CurrentStatus() const EXCLUSIVE_LOCKS_REQUIRED(metadata_->lock_);
bool CanParkNow() const EXCLUSIVE_LOCKS_REQUIRED(metadata_->lock_);
bool ParkInternal(ParkingMode mode)
EXCLUSIVE_LOCKS_REQUIRED(metadata_->lock_);
void Unpark() EXCLUSIVE_LOCKS_REQUIRED(metadata_->lock_);
String UnparkInternal() EXCLUSIVE_LOCKS_REQUIRED(metadata_->lock_);
// Called by `Release()` when the ref count would reach 0 to post or execute
// the removal of the entry from the `ParkableStringManager` on the Main
// thread. The removal can be cancelled if the Main Thread takes a new
// reference on the string before the posted task is executed.
void ReleaseAndRemoveIfNeeded() const;
void PostBackgroundCompressionTask(ParkingMode mode);
static void CompressInBackground(std::unique_ptr<BackgroundTaskParams>);
// Called on the main thread after compression is done.
// |params| is the same as the one passed to
// |PostBackgroundCompressionTask()|,
// |compressed| is the compressed data, nullptr if compression failed.
// |parking_thread_time| is the CPU time used by the background compression
// task.
void OnParkingCompleteOnMainThread(
std::unique_ptr<BackgroundTaskParams> params,
std::unique_ptr<Vector<uint8_t>> compressed,
base::TimeDelta parking_thread_time);
void PostBackgroundWritingTask(std::unique_ptr<ReservedChunk> reserved_chunk)
EXCLUSIVE_LOCKS_REQUIRED(metadata_->lock_);
static void WriteToDiskInBackground(std::unique_ptr<BackgroundTaskParams>,
DiskDataAllocator* data_allocator);
// Called on the main thread after writing is done.
// |params| is the same as the one passed to PostBackgroundWritingTask()|,
// |metadata| is the on-disk metadata, nullptr if writing failed.
// |writing_time| is the elapsed background thread time used by disk writing.
void OnWritingCompleteOnMainThread(
std::unique_ptr<BackgroundTaskParams> params,
std::unique_ptr<DiskDataMetadata> metadata,
base::TimeDelta writing_time);
void DiscardUncompressedData() EXCLUSIVE_LOCKS_REQUIRED(metadata_->lock_);
void DiscardCompressedData() EXCLUSIVE_LOCKS_REQUIRED(metadata_->lock_);
int lock_depth_for_testing() {
base::AutoLock locker_(metadata_->lock_);
return metadata_->lock_depth_;
}
// Returns true if the string is parked. Doesn't take the lock inside but
// expects it to be held before entering.
bool is_parked_no_lock() const EXCLUSIVE_LOCKS_REQUIRED(metadata_->lock_);
bool is_on_disk_no_lock() const EXCLUSIVE_LOCKS_REQUIRED(metadata_->lock_);
bool is_compression_failed_no_lock() const
EXCLUSIVE_LOCKS_REQUIRED(metadata_->lock_);
// Metadata only used for parkable ParkableStrings.
struct ParkableMetadata {
ParkableMetadata(String string, std::unique_ptr<SecureDigest> digest);
ParkableMetadata(const ParkableMetadata&) = delete;
ParkableMetadata& operator=(const ParkableMetadata&) = delete;
// `lock_` protects access to the metadata and prevents concurrent
// execution of parking and unparking operations.
base::Lock lock_;
unsigned int lock_depth_ GUARDED_BY(lock_);
State state_ GUARDED_BY(lock_);
bool background_task_in_progress_{false};
bool compression_failed_ GUARDED_BY(lock_);
std::unique_ptr<Vector<uint8_t>> compressed_;
std::unique_ptr<DiskDataMetadata> on_disk_metadata_;
const SecureDigest digest_;
base::TimeTicks last_disk_parking_time_;
// A string can be young, old or very old. It starts young, and ages with
// |MaybeAgeOrParkString()|.
//
// Transitions are:
// Young -> Old -> Very old: By calling |MaybeAgeOrParkString()|.
// (Old | Very Old) -> Young: When the string is accessed, either by
// |Lock()|-ing it or calling |ToString()|.
//
// Thread safety: it is typically not safe to guard only one part of a
// bitfield with a mutex, but this is correct here, as the other members are
// const (and never change).
Age age_ : 3 GUARDED_BY(lock_);
const bool is_8bit_ : 1;
const unsigned length_;
};
// Access to `string_` is guarded by `metadata_->lock_` with 2 exceptions:
// 1. There is no lock in unparkable ParkableStringImpls.
// 2. Concurrent `AsanPoisonString()` and `AsanUnpoisonString()` are
// prevented through lock levels.
String string_;
const std::unique_ptr<ParkableMetadata> metadata_;
#if DCHECK_IS_ON()
const base::PlatformThreadId owning_thread_;
#endif
void AssertOnValidThread() const {
#if DCHECK_IS_ON()
DCHECK_EQ(owning_thread_, CurrentThread());
#endif
}
public:
FRIEND_TEST_ALL_PREFIXES(ParkableStringTest, Equality);
FRIEND_TEST_ALL_PREFIXES(ParkableStringTest, EqualityNoUnparking);
FRIEND_TEST_ALL_PREFIXES(ParkableStringTest, LockUnlock);
FRIEND_TEST_ALL_PREFIXES(ParkableStringTest, LockParkedString);
FRIEND_TEST_ALL_PREFIXES(ParkableStringTest, ReportMemoryDump);
FRIEND_TEST_ALL_PREFIXES(ParkableStringTest, MemoryFootprintForDump);
};
#if !DCHECK_IS_ON()
// 3 pointers:
// - vtable (from RefCounted)
// - string_.Impl()
// - metadata_
ASSERT_SIZE(ParkableStringImpl, void* [3]);
#endif
class PLATFORM_EXPORT ParkableString final {
DISALLOW_NEW();
public:
ParkableString() : impl_(nullptr) {}
explicit ParkableString(scoped_refptr<StringImpl>&& impl);
ParkableString(scoped_refptr<StringImpl>&& impl,
std::unique_ptr<ParkableStringImpl::SecureDigest> digest);
ParkableString(const ParkableString& rhs) : impl_(rhs.impl_) {}
~ParkableString();
// Locks a string. A string is unlocked when the number of Lock()/Unlock()
// calls match. A locked string cannot be parked.
// Can be called from any thread.
void Lock() const;
// Unlocks a string.
// Can be called from any thread.
void Unlock() const;
void OnMemoryDump(WebProcessMemoryDump* pmd, const String& name) const;
// See the matching String methods.
bool Is8Bit() const;
bool IsNull() const { return !impl_; }
unsigned length() const { return impl_ ? impl_->length() : 0; }
bool may_be_parked() const { return impl_ && impl_->may_be_parked(); }
ParkableStringImpl* Impl() const { return impl_ ? impl_.get() : nullptr; }
// Returns an unparked version of the string.
// The string is guaranteed to be valid for
// max(lifetime of a copy of the returned reference, current thread task).
const String& ToString() const;
size_t CharactersSizeInBytes() const;
// Causes the string to be unparked. Note that the pointer must not be
// cached.
base::span<const char> SpanChar() const {
return base::as_chars(ToString().Span8());
}
const base::span<const uint16_t> SpanUint16() const {
return ToString().SpanUint16();
}
private:
scoped_refptr<ParkableStringImpl> impl_;
};
static_assert(sizeof(ParkableString) == sizeof(void*),
"ParkableString should be small");
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_BINDINGS_PARKABLE_STRING_H_
|