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
|
/*
* Copyright (C) 2010 Google Inc. All rights reserved.
* Copyright (C) 2014-2025 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "BlobResourceHandleBase.h"
#include "AsyncFileStream.h"
#include "FileStream.h"
#include "HTTPHeaderNames.h"
#include "ResourceRequest.h"
#include "ResourceResponse.h"
#include <wtf/MainThread.h>
namespace WebCore {
static constexpr int httpOK = 200;
static constexpr int httpPartialContent = 206;
static constexpr auto httpOKText = "OK"_s;
static constexpr auto httpPartialContentText = "Partial Content"_s;
BlobResourceHandleBase::BlobResourceHandleBase(bool async, RefPtr<BlobData>&& blobData)
: m_blobData(WTFMove(blobData))
{
if (async)
m_stream = makeUnique<AsyncFileStream>(*this);
else
m_stream = makeUnique<FileStream>();
}
BlobResourceHandleBase::~BlobResourceHandleBase() = default;
auto BlobResourceHandleBase::adjustAndValidateRangeBounds() -> std::optional<Error>
{
if (!m_range->start) {
if (!m_range->end)
return Error::RangeError;
// m_range->end indicates the last bytes to read.
if (*m_range->end > m_totalSize) {
m_range->start = 0;
m_range->end = m_totalSize ? (m_totalSize - 1) : 0;
} else {
m_range->start = m_totalSize - *m_range->end;
m_range->end = *m_range->start + *m_range->end - 1;
}
} else {
if (*m_range->start >= m_totalSize)
return Error::RangeError;
if (m_range->end && *m_range->start > *m_range->end)
return Error::RangeError;
if (!m_range->end || *m_range->end >= m_totalSize)
m_range->end = m_totalSize ? (m_totalSize - 1) : 0;
else
m_range->end = *m_range->end;
}
return { };
}
void BlobResourceHandleBase::closeFileIfOpen()
{
if (m_isFileOpen) {
m_isFileOpen = false;
asyncStream()->close();
}
}
void BlobResourceHandleBase::clearAsyncStream()
{
m_stream = std::unique_ptr<AsyncFileStream>();
}
BlobData* BlobResourceHandleBase::blobData() const
{
return m_blobData.get();
}
FileStream* BlobResourceHandleBase::syncStream() const
{
return std::get<std::unique_ptr<FileStream>>(m_stream).get();
}
AsyncFileStream* BlobResourceHandleBase::asyncStream() const
{
return std::get<std::unique_ptr<AsyncFileStream>>(m_stream).get();
}
void BlobResourceHandleBase::start()
{
if (!async()) {
doStart();
return;
}
// Finish this async call quickly and return.
callOnMainThread([protectedThis = Ref { *this }]() mutable {
protectedThis->doStart();
});
}
void BlobResourceHandleBase::doStart()
{
ASSERT(isMainThread());
// Do not continue if the request is aborted or an error occurs.
if (erroredOrAborted()) {
clearStream();
return;
}
if (!equalLettersIgnoringASCIICase(firstRequest().httpMethod(), "get"_s)) {
didFail(Error::MethodNotAllowed);
return;
}
// If the blob data is not found, fail now.
if (!m_blobData) {
didFail(Error::NotFoundError);
return;
}
// Parse the "Range" header we care about.
if (String range = firstRequest().httpHeaderField(HTTPHeaderName::Range); !range.isNull()) {
m_range = parseRange(range, RangeAllowWhitespace::Yes);
if (!m_range) {
didFail(Error::RangeError);
return;
}
m_isRangeRequest = true;
}
if (async())
getSizeForNext();
else {
for (size_t i = 0; i < m_blobData->items().size() && !erroredOrAborted(); ++i)
getSizeForNext();
if (auto error = seek()) {
didFail(*error);
return;
}
dispatchDidReceiveResponse();
}
}
void BlobResourceHandleBase::getSizeForNext()
{
ASSERT(isMainThread());
// Do we finish validating and counting size for all items?
if (m_sizeItemCount >= m_blobData->items().size()) {
if (auto error = seek()) {
didFail(*error);
return;
}
// Start reading if in asynchronous mode.
if (async())
dispatchDidReceiveResponse();
return;
}
const BlobDataItem& item = m_blobData->items().at(m_sizeItemCount);
switch (item.type()) {
case BlobDataItem::Type::Data:
didGetSize(item.length());
break;
case BlobDataItem::Type::File: {
// Files know their sizes, but asking the stream to verify that the file wasn't modified.
RefPtr file = item.file();
if (async())
asyncStream()->getSize(file->path(), file->expectedModificationTime());
else
didGetSize(syncStream()->getSize(file->path(), file->expectedModificationTime()));
break;
}
default:
ASSERT_NOT_REACHED();
}
}
void BlobResourceHandleBase::didGetSize(long long size)
{
ASSERT(isMainThread());
if (erroredOrAborted()) {
clearStream();
return;
}
// If the size is -1, it means the file has been moved or changed. Fail now.
if (size == -1) {
didFail(Error::NotFoundError);
return;
}
// The size passed back is the size of the whole file. If the underlying item is a sliced file, we need to use the slice length.
const BlobDataItem& item = m_blobData->items().at(m_sizeItemCount);
uint64_t updatedSize = static_cast<uint64_t>(item.length());
// Cache the size.
m_itemLengthList.append(updatedSize);
// Count the size.
m_totalSize += updatedSize;
m_totalRemainingSize += updatedSize;
++m_sizeItemCount;
// Continue with the next item.
getSizeForNext();
}
auto BlobResourceHandleBase::seek() -> std::optional<Error>
{
ASSERT(isMainThread());
// Bail out if the range is not provided.
if (!m_isRangeRequest)
return { };
if (auto error = adjustAndValidateRangeBounds())
return error;
// Skip the initial items that are not in the range.
Checked<uint64_t> offset = *m_range->start;
for (m_readItemCount = 0; m_readItemCount < m_blobData->items().size() && offset.value() >= lengthOfItemBeingRead(); ++m_readItemCount)
offset -= lengthOfItemBeingRead();
// Set the offset that need to jump to for the first item in the range.
m_currentItemReadSize = offset.value();
// Adjust the total remaining size in order not to go beyond the range.
Checked<uint64_t> rangeSize = *m_range->end;
rangeSize -= *m_range->start;
rangeSize += 1uz;
if (m_totalRemainingSize > rangeSize.value())
m_totalRemainingSize = rangeSize.value();
return { };
}
void BlobResourceHandleBase::readAsync()
{
ASSERT(isMainThread());
if (erroredOrAborted())
return;
while (m_totalRemainingSize && m_readItemCount < m_blobData->items().size()) {
const BlobDataItem& item = m_blobData->items().at(m_readItemCount);
switch (item.type()) {
case BlobDataItem::Type::Data:
if (!readDataAsync(item))
return; // error occurred
break;
case BlobDataItem::Type::File:
readFileAsync(item);
return;
}
}
didFinish();
}
bool BlobResourceHandleBase::readDataAsync(const BlobDataItem& item)
{
ASSERT(isMainThread());
ASSERT(item.data());
ASSERT(m_currentItemReadSize <= static_cast<uint64_t>(item.length()));
uint64_t bytesToRead = static_cast<uint64_t>(item.length()) - m_currentItemReadSize;
if (bytesToRead > m_totalRemainingSize)
bytesToRead = m_totalRemainingSize;
auto data = item.protectedData()->span().subspan(item.offset() + m_currentItemReadSize, bytesToRead);
m_currentItemReadSize = 0;
return consumeData(data);
}
void BlobResourceHandleBase::readFileAsync(const BlobDataItem& item)
{
ASSERT(isMainThread());
if (m_isFileOpen) {
asyncStream()->read(buffer().mutableSpan());
return;
}
uint64_t bytesToRead = lengthOfItemBeingRead() - m_currentItemReadSize;
if (bytesToRead > m_totalRemainingSize)
bytesToRead = static_cast<int>(m_totalRemainingSize);
asyncStream()->openForRead(item.protectedFile()->path(), item.offset() + m_currentItemReadSize, bytesToRead);
m_isFileOpen = true;
m_currentItemReadSize = 0;
}
void BlobResourceHandleBase::didOpen(bool success)
{
ASSERT(async());
if (erroredOrAborted()) {
clearStream();
return;
}
if (!success) {
didFail(Error::NotReadableError);
return;
}
// Continue the reading.
readAsync();
}
void BlobResourceHandleBase::didRead(int bytesRead)
{
if (erroredOrAborted()) {
clearStream();
return;
}
if (bytesRead < 0) {
didFail(Error::NotReadableError);
return;
}
if (consumeData(m_buffer.subspan(0, bytesRead)))
readAsync();
}
bool BlobResourceHandleBase::consumeData(std::span<const uint8_t> data)
{
ASSERT(async());
m_totalRemainingSize -= data.size();
// Notify the client.
if (!data.empty()) {
if (!didReceiveData(data))
return false;
}
if (m_isFileOpen) {
// When the current item is a file item, the reading is completed only if bytesRead is 0.
if (data.empty()) {
closeFileIfOpen();
// Move to the next item.
++m_readItemCount;
}
} else {
// Otherwise, we read the current text item as a whole and move to the next item.
++m_readItemCount;
}
return true;
}
void BlobResourceHandleBase::dispatchDidReceiveResponse()
{
ASSERT(isMainThread());
if (shouldAbortDispatchDidReceiveResponse())
return;
ResourceResponse response(URL { firstRequest().url() }, extractMIMETypeFromMediaType(m_blobData->contentType()), m_totalRemainingSize, String());
response.setHTTPStatusCode(m_isRangeRequest ? httpPartialContent : httpOK);
response.setHTTPStatusText(m_isRangeRequest ? httpPartialContentText : httpOKText);
response.setHTTPHeaderField(HTTPHeaderName::ContentType, m_blobData->contentType());
response.setTextEncodingName(extractCharsetFromMediaType(m_blobData->contentType()).toString());
response.setHTTPHeaderField(HTTPHeaderName::ContentLength, String::number(m_totalRemainingSize));
addPolicyContainerHeaders(response, m_blobData->policyContainer());
if (m_isRangeRequest)
response.setHTTPHeaderField(HTTPHeaderName::ContentRange, ParsedContentRange(*m_range->start, *m_range->end, m_totalSize).headerValue());
// FIXME: If a resource identified with a blob: URL is a File object, user agents must use that file's name attribute,
// as if the response had a Content-Disposition header with the filename parameter set to the File's name attribute.
// Notably, this will affect a name suggested in "File Save As".
didReceiveResponse(WTFMove(response));
}
} // namespace WebCore
|