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
|
// 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.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/390223051): Remove C-library calls to fix the errors.
#pragma allow_unsafe_libc_calls
#endif
#include "storage/browser/blob/blob_data_builder.h"
#include <stddef.h>
#include <stdint.h>
#include <memory>
#include <utility>
#include "base/files/file.h"
#include "base/memory/ptr_util.h"
#include "base/numerics/safe_conversions.h"
#include "base/numerics/safe_math.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/time/time.h"
#include "components/file_access/scoped_file_access_delegate.h"
#include "storage/browser/blob/blob_entry.h"
#include "storage/browser/blob/blob_storage_registry.h"
#include "storage/browser/blob/shareable_blob_data_item.h"
#include "third_party/blink/public/common/blob/blob_utils.h"
using base::FilePath;
namespace storage {
BlobDataBuilder::FutureData::FutureData(FutureData&&) = default;
BlobDataBuilder::FutureData& BlobDataBuilder::FutureData::operator=(
FutureData&&) = default;
BlobDataBuilder::FutureData::~FutureData() = default;
bool BlobDataBuilder::FutureData::Populate(base::span<const uint8_t> data,
size_t offset) const {
DCHECK(data.data());
base::span<uint8_t> target = GetDataToPopulate(offset, data.size());
if (!target.data())
return false;
DCHECK_EQ(target.size(), data.size());
std::memcpy(target.data(), data.data(), data.size());
return true;
}
base::span<uint8_t> BlobDataBuilder::FutureData::GetDataToPopulate(
size_t offset,
size_t length) const {
// We lazily allocate our data buffer by waiting until the first
// PopulateFutureData call.
// Why? The reason we have the AppendFutureData method is to create our Blob
// record when the Renderer tells us about the blob without actually
// allocating the memory yet, as we might not have the quota yet. So we don't
// want to allocate the memory until we're actually receiving the data (which
// the browser process only does when it has quota).
if (item_->type() == BlobDataItem::Type::kBytesDescription) {
item_->AllocateBytes();
}
DCHECK_EQ(item_->type(), BlobDataItem::Type::kBytes);
base::CheckedNumeric<size_t> checked_end = offset;
checked_end += length;
if (!checked_end.IsValid() || checked_end.ValueOrDie() > item_->length()) {
DVLOG(1) << "Invalid offset or length.";
return base::span<uint8_t>();
}
return item_->mutable_bytes().subspan(offset, length);
}
BlobDataBuilder::FutureData::FutureData(scoped_refptr<BlobDataItem> item)
: item_(item) {}
BlobDataBuilder::FutureFile::FutureFile(FutureFile&&) = default;
BlobDataBuilder::FutureFile& BlobDataBuilder::FutureFile::operator=(
FutureFile&&) = default;
BlobDataBuilder::FutureFile::~FutureFile() = default;
bool BlobDataBuilder::FutureFile::Populate(
scoped_refptr<ShareableFileReference> file_reference,
const base::Time& expected_modification_time) {
if (!item_) {
DVLOG(1) << "File item already populated";
return false;
}
DCHECK_EQ(item_->type(), BlobDataItem::Type::kFile);
item_->PopulateFile(file_reference->path(), expected_modification_time,
file_reference);
item_ = nullptr;
return true;
}
BlobDataBuilder::FutureFile::FutureFile(scoped_refptr<BlobDataItem> item)
: item_(item) {}
BlobDataBuilder::BlobDataBuilder(const std::string& uuid) : uuid_(uuid) {}
BlobDataBuilder::~BlobDataBuilder() = default;
void BlobDataBuilder::AppendData(base::span<const uint8_t> data) {
if (!data.size())
return;
auto item = BlobDataItem::CreateBytes(data);
auto shareable_item = base::MakeRefCounted<ShareableBlobDataItem>(
std::move(item), ShareableBlobDataItem::QUOTA_NEEDED);
// Even though we already prepopulate this data, we treat it as needing
// transport anyway since we do need to allocate memory quota.
pending_transport_items_.push_back(shareable_item);
items_.push_back(std::move(shareable_item));
total_size_ += data.size();
total_memory_size_ += data.size();
transport_quota_needed_ += data.size();
found_memory_transport_ = true;
}
BlobDataBuilder::FutureData BlobDataBuilder::AppendFutureData(size_t length) {
CHECK_NE(length, 0u);
auto item = BlobDataItem::CreateBytesDescription(length);
auto shareable_item = base::MakeRefCounted<ShareableBlobDataItem>(
item, ShareableBlobDataItem::QUOTA_NEEDED);
pending_transport_items_.push_back(shareable_item);
items_.push_back(std::move(shareable_item));
total_size_ += length;
total_memory_size_ += length;
transport_quota_needed_ += length;
found_memory_transport_ = true;
return FutureData(std::move(item));
}
BlobDataBuilder::FutureFile BlobDataBuilder::AppendFutureFile(
uint64_t offset,
uint64_t length,
uint64_t file_id) {
CHECK_NE(length, 0ull);
DCHECK_NE(length, blink::BlobUtils::kUnknownSize);
auto item = BlobDataItem::CreateFutureFile(offset, length, file_id);
auto shareable_item = base::MakeRefCounted<ShareableBlobDataItem>(
item, ShareableBlobDataItem::QUOTA_NEEDED);
pending_transport_items_.push_back(shareable_item);
items_.push_back(std::move(shareable_item));
total_size_ += length;
transport_quota_needed_ += length;
found_file_transport_ = true;
return FutureFile(std::move(item));
}
void BlobDataBuilder::AppendFile(
const FilePath& file_path,
uint64_t offset,
uint64_t length,
const base::Time& expected_modification_time,
file_access::ScopedFileAccessDelegate::RequestFilesAccessIOCallback
file_access) {
auto item = BlobDataItem::CreateFile(
file_path, offset, length, expected_modification_time,
ShareableFileReference::Get(file_path), std::move(file_access));
DCHECK(!item->IsFutureFileItem()) << file_path.value();
auto shareable_item = base::MakeRefCounted<ShareableBlobDataItem>(
std::move(item), ShareableBlobDataItem::POPULATED_WITHOUT_QUOTA);
items_.push_back(std::move(shareable_item));
total_size_ += length;
}
void BlobDataBuilder::AppendBlob(const std::string& uuid,
uint64_t offset,
uint64_t length,
const BlobStorageRegistry& blob_registry) {
DCHECK_GT(length, 0ul);
const BlobEntry* ref_entry = blob_registry.GetEntry(uuid);
// Self-references or non-existing blob references are invalid.
if (!ref_entry || uuid == uuid_) {
has_blob_errors_ = true;
return;
}
dependent_blob_uuids_.insert(uuid);
if (BlobStatusIsError(ref_entry->status())) {
has_blob_errors_ = true;
return;
}
// If we're referencing a blob with unknown size, the caller needs to provide
// an explicit length for how much of the blob to reference.
if (ref_entry->total_size() == blink::BlobUtils::kUnknownSize &&
length == blink::BlobUtils::kUnknownSize) {
has_blob_errors_ = true;
return;
}
if (length == blink::BlobUtils::kUnknownSize) {
length = ref_entry->total_size() - offset;
}
total_size_ += length;
// If we're referencing the whole blob, then we don't need to slice.
if (offset == 0 && length == ref_entry->total_size()) {
for (const auto& shareable_item : ref_entry->items()) {
if (shareable_item->item()->type() == BlobDataItem::Type::kBytes ||
shareable_item->item()->type() ==
BlobDataItem::Type::kBytesDescription) {
total_memory_size_ += shareable_item->item()->length();
}
items_.push_back(shareable_item);
}
return;
}
// Validate our reference has good offset & length.
uint64_t end_byte;
if (!base::CheckAdd(offset, length).AssignIfValid(&end_byte) ||
end_byte > ref_entry->total_size()) {
has_blob_errors_ = true;
return;
}
// If `ref_entry` is a blob with unknown size it must always consist of a
// single file item, and as such we can just add a reference to the same file.
if (ref_entry->total_size() == blink::BlobUtils::kUnknownSize) {
CHECK_EQ(ref_entry->items().size(), 1u);
const scoped_refptr<BlobDataItem>& source_item =
ref_entry->items()[0]->item();
CHECK_EQ(source_item->type(), BlobDataItem::Type::kFile);
CHECK(!source_item->IsFutureFileItem());
items_.push_back(base::MakeRefCounted<ShareableBlobDataItem>(
BlobDataItem::CreateFile(
source_item->path(), source_item->offset() + offset, length,
source_item->expected_modification_time(), source_item->file_ref_,
source_item->file_access_),
ShareableBlobDataItem::POPULATED_WITHOUT_QUOTA));
return;
}
SliceBlob(ref_entry, offset, length);
}
void BlobDataBuilder::SliceBlob(const BlobEntry* source,
uint64_t slice_offset,
uint64_t slice_size) {
const auto& source_items = source->items();
const auto& offsets = source->offsets();
DCHECK_LE(slice_offset + slice_size, source->total_size());
size_t item_index =
std::upper_bound(offsets.begin(), offsets.end(), slice_offset) -
offsets.begin();
uint64_t item_offset =
item_index == 0 ? slice_offset : slice_offset - offsets[item_index - 1];
size_t num_items = source_items.size();
// Read starting from 'first_item_index' and 'item_offset'.
for (uint64_t total_sliced = 0;
item_index < num_items && total_sliced < slice_size; item_index++) {
const scoped_refptr<BlobDataItem>& source_item =
source_items[item_index]->item();
uint64_t source_length = source_item->length();
BlobDataItem::Type type = source_item->type();
DCHECK_NE(source_length, blink::BlobUtils::kUnknownSize);
DCHECK_NE(source_length, 0ull);
uint64_t read_size =
std::min(source_length - item_offset, slice_size - total_sliced);
total_sliced += read_size;
bool reusing_blob_item = (read_size == source_length);
if (reusing_blob_item) {
// We can share the entire item.
items_.push_back(source_items[item_index]);
if (type == BlobDataItem::Type::kBytes ||
type == BlobDataItem::Type::kBytesDescription) {
total_memory_size_ += source_length;
}
continue;
}
bool need_copy = false;
scoped_refptr<BlobDataItem> data_item;
ShareableBlobDataItem::State state =
ShareableBlobDataItem::POPULATED_WITHOUT_QUOTA;
switch (type) {
case BlobDataItem::Type::kBytesDescription:
case BlobDataItem::Type::kBytes: {
need_copy = true;
copy_quota_needed_ += read_size;
total_memory_size_ += read_size;
// Since we don't have quota yet for memory, we create temporary items
// for this data. When our blob is finished constructing, all dependent
// blobs are done, and we have enough memory quota, we'll copy the data
// over.
data_item = BlobDataItem::CreateBytesDescription(
base::checked_cast<size_t>(read_size));
state = ShareableBlobDataItem::QUOTA_NEEDED;
break;
}
case BlobDataItem::Type::kFile: {
data_item = BlobDataItem::CreateFile(
source_item->path(), source_item->offset() + item_offset, read_size,
source_item->expected_modification_time(), source_item->file_ref_,
source_item->file_access_);
if (source_item->IsFutureFileItem()) {
// The source file isn't a real file yet (path is fake), so store the
// items we need to copy from later.
need_copy = true;
}
break;
}
case BlobDataItem::Type::kFileFilesystem: {
data_item = BlobDataItem::CreateFileFilesystem(
source_item->filesystem_url(), source_item->offset() + item_offset,
read_size, source_item->expected_modification_time(),
source_item->file_system_context(), source_item->file_access_);
break;
}
case BlobDataItem::Type::kReadableDataHandle: {
data_item = BlobDataItem::CreateReadableDataHandle(
source_item->data_handle_, source_item->offset() + item_offset,
read_size);
break;
}
}
items_.push_back(new ShareableBlobDataItem(std::move(data_item), state));
if (need_copy) {
copies_.push_back(
ItemCopyEntry(source_items[item_index], item_offset, items_.back()));
}
item_offset = 0;
}
}
void BlobDataBuilder::AppendBlob(const std::string& uuid,
const BlobStorageRegistry& blob_registry) {
AppendBlob(uuid, 0, blink::BlobUtils::kUnknownSize, blob_registry);
}
void BlobDataBuilder::AppendFileSystemFile(
const FileSystemURL& url,
uint64_t offset,
uint64_t length,
const base::Time& expected_modification_time,
scoped_refptr<FileSystemContext> file_system_context,
file_access::ScopedFileAccessDelegate::RequestFilesAccessIOCallback
file_access) {
DCHECK_GT(length, 0ul);
auto item = BlobDataItem::CreateFileFilesystem(
url, offset, length, expected_modification_time,
std::move(file_system_context), std::move(file_access));
auto shareable_item = base::MakeRefCounted<ShareableBlobDataItem>(
std::move(item), ShareableBlobDataItem::POPULATED_WITHOUT_QUOTA);
items_.push_back(std::move(shareable_item));
total_size_ += length;
}
void BlobDataBuilder::AppendReadableDataHandle(
scoped_refptr<DataHandle> data_handle,
uint64_t offset,
uint64_t length) {
if (length == 0ul)
return;
auto item = BlobDataItem::CreateReadableDataHandle(std::move(data_handle),
offset, length);
total_size_ += item->length();
auto shareable_item = base::MakeRefCounted<ShareableBlobDataItem>(
std::move(item), ShareableBlobDataItem::POPULATED_WITHOUT_QUOTA);
items_.push_back(std::move(shareable_item));
}
void BlobDataBuilder::AppendMojoDataItem(mojom::BlobDataItemPtr item_ptr) {
if (item_ptr->size == 0ul)
return;
auto item = BlobDataItem::CreateMojoDataItem(std::move(item_ptr));
total_size_ += item->length();
auto shareable_item = base::MakeRefCounted<ShareableBlobDataItem>(
std::move(item), ShareableBlobDataItem::POPULATED_WITHOUT_QUOTA);
items_.push_back(std::move(shareable_item));
}
std::unique_ptr<BlobDataSnapshot> BlobDataBuilder::CreateSnapshot() const {
std::vector<scoped_refptr<BlobDataItem>> items;
items.reserve(items_.size());
for (const auto& item : items_)
items.push_back(item->item());
return base::WrapUnique(new BlobDataSnapshot(
uuid_, content_type_, content_disposition_, std::move(items)));
}
void PrintTo(const BlobDataBuilder& x, std::ostream* os) {
DCHECK(os);
*os << "<BlobDataBuilder>{uuid: " << x.uuid()
<< ", content_type: " << x.content_type_
<< ", content_disposition: " << x.content_disposition_ << ", items: [";
for (const auto& item : x.items_) {
PrintTo(*item->item(), os);
*os << ", ";
}
*os << "]}";
}
} // namespace storage
|