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
|
/*
* Copyright (C) 2010 Google Inc. All rights reserved.
* Copyright (C) 2016-2025 Apple Inc. All rights reserved.
* Copyright (C) 2016 Igalia S.L.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * 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.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 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 THE COPYRIGHT
* OWNER OR 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 "NetworkDataTaskBlob.h"
#include "AuthenticationManager.h"
#include "Download.h"
#include "Logging.h"
#include "NetworkProcess.h"
#include "NetworkSession.h"
#include "PrivateRelayed.h"
#include "WebErrors.h"
#include <WebCore/AsyncFileStream.h>
#include <WebCore/BlobRegistryImpl.h>
#include <WebCore/ParsedContentRange.h>
#include <WebCore/PolicyContainer.h>
#include <WebCore/ResourceError.h>
#include <WebCore/ResourceResponse.h>
#include <WebCore/SharedBuffer.h>
#include <wtf/RunLoop.h>
namespace WebKit {
using namespace WebCore;
static const unsigned bufferSize = 512 * 1024;
static const int httpOK = 200;
static const int httpPartialContent = 206;
static constexpr auto httpOKText = "OK"_s;
static constexpr auto httpPartialContentText = "Partial Content"_s;
static constexpr auto webKitBlobResourceDomain = "WebKitBlobResource"_s;
static RefPtr<BlobData> blobDataFrom(NetworkSession& session, const WebCore::ResourceRequest& request, const SecurityOrigin* topOrigin)
{
// We use request.firstPartyForCookies() to indicate if the request originated from the DOM or WebView API.
ASSERT(topOrigin || request.firstPartyForCookies().isEmpty());
std::optional<SecurityOriginData> topOriginData = topOrigin ? std::optional { topOrigin->data() } : std::nullopt;
if (!topOriginData && !request.firstPartyForCookies().isEmpty() && request.firstPartyForCookies().isValid()) {
RELEASE_LOG(Network, "Got request for blob without topOrigin but request specifies firstPartyForCookies");
topOriginData = SecurityOriginData::fromURLWithoutStrictOpaqueness(request.firstPartyForCookies());
}
return session.blobRegistry().blobDataFromURL(request.url(), topOriginData);
}
NetworkDataTaskBlob::NetworkDataTaskBlob(NetworkSession& session, NetworkDataTaskClient& client, const ResourceRequest& request, const Vector<RefPtr<WebCore::BlobDataFileReference>>& fileReferences, const RefPtr<SecurityOrigin>& topOrigin)
: NetworkDataTask(session, client, request, StoredCredentialsPolicy::DoNotUse, false, false, false)
, BlobResourceHandleBase(true /* async */, blobDataFrom(session, request, topOrigin.get()))
, m_fileReferences(fileReferences)
, m_networkProcess(session.networkProcess())
{
for (auto& fileReference : m_fileReferences)
fileReference->prepareForFileAccess();
LOG(NetworkSession, "%p - Created NetworkDataTaskBlob for %s", this, request.url().string().utf8().data());
}
NetworkDataTaskBlob::~NetworkDataTaskBlob()
{
for (auto& fileReference : m_fileReferences)
fileReference->revokeFileAccess();
clearStream();
}
void NetworkDataTaskBlob::clearStream()
{
if (m_state == State::Completed)
return;
m_state = State::Completed;
closeFileIfOpen();
clearAsyncStream();
}
void NetworkDataTaskBlob::resume()
{
ASSERT(m_state != State::Running);
if (m_state == State::Canceling || m_state == State::Completed)
return;
m_state = State::Running;
start();
}
void NetworkDataTaskBlob::cancel()
{
if (m_state == State::Canceling || m_state == State::Completed)
return;
m_state = State::Canceling;
closeFileIfOpen();
if (isDownload())
cleanDownloadFiles();
}
void NetworkDataTaskBlob::invalidateAndCancel()
{
cancel();
clearStream();
}
bool NetworkDataTaskBlob::erroredOrAborted() const
{
return m_state == State::Canceling || m_state == State::Completed || (!m_client && !isDownload());
}
void NetworkDataTaskBlob::didReceiveResponse(ResourceResponse&& response)
{
NetworkDataTask::didReceiveResponse(WTFMove(response), NegotiatedLegacyTLS::No, PrivateRelayed::No, std::nullopt, [this, protectedThis = Ref { *this }](PolicyAction policyAction) {
LOG(NetworkSession, "%p - NetworkDataTaskBlob::didReceiveResponse completionHandler (%s)", this, toString(policyAction).characters());
if (m_state == State::Canceling || m_state == State::Completed) {
clearStream();
return;
}
switch (policyAction) {
case PolicyAction::Use:
buffer().resize(bufferSize);
readAsync();
break;
case PolicyAction::LoadWillContinueInAnotherProcess:
ASSERT_NOT_REACHED();
break;
case PolicyAction::Ignore:
break;
case PolicyAction::Download:
download();
break;
}
});
}
bool NetworkDataTaskBlob::didReceiveData(std::span<const uint8_t> data)
{
ASSERT(!data.empty());
if (m_downloadFile) {
if (!writeDownload(data))
return false;
} else {
ASSERT(m_client);
protectedClient()->didReceiveData(SharedBuffer::create(data));
}
return true;
}
void NetworkDataTaskBlob::setPendingDownloadLocation(const String& filename, SandboxExtension::Handle&& sandboxExtensionHandle, bool allowOverwrite)
{
NetworkDataTask::setPendingDownloadLocation(filename, { }, allowOverwrite);
ASSERT(!m_sandboxExtension);
m_sandboxExtension = SandboxExtension::create(WTFMove(sandboxExtensionHandle));
if (RefPtr extension = m_sandboxExtension)
extension->consume();
if (allowOverwrite && FileSystem::fileExists(m_pendingDownloadLocation))
FileSystem::deleteFile(m_pendingDownloadLocation);
}
String NetworkDataTaskBlob::suggestedFilename() const
{
return m_suggestedFilename;
}
void NetworkDataTaskBlob::download()
{
ASSERT(isDownload());
ASSERT(m_pendingDownloadLocation);
ASSERT(m_session);
LOG(NetworkSession, "%p - NetworkDataTaskBlob::download to %s", this, m_pendingDownloadLocation.utf8().data());
m_downloadFile = FileSystem::openFile(m_pendingDownloadLocation, FileSystem::FileOpenMode::Truncate);
if (!m_downloadFile) {
didFailDownload(cancelledError(m_firstRequest));
return;
}
CheckedRef downloadManager = m_networkProcess->downloadManager();
Ref download = Download::create(downloadManager, *m_pendingDownloadID, *this, *checkedNetworkSession(), suggestedFilename());
downloadManager->dataTaskBecameDownloadTask(*m_pendingDownloadID, download.copyRef());
download->didCreateDestination(m_pendingDownloadLocation);
ASSERT(!m_client);
buffer().resize(bufferSize);
readAsync();
}
bool NetworkDataTaskBlob::writeDownload(std::span<const uint8_t> data)
{
ASSERT(isDownload());
auto bytesWritten = m_downloadFile.write(data);
if (bytesWritten != data.size()) {
didFailDownload(cancelledError(m_firstRequest));
return false;
}
m_downloadBytesWritten += *bytesWritten;
RefPtr download = m_networkProcess->checkedDownloadManager()->download(*m_pendingDownloadID);
ASSERT(download);
download->didReceiveData(*bytesWritten, m_downloadBytesWritten, totalSize());
return true;
}
void NetworkDataTaskBlob::cleanDownloadFiles()
{
m_downloadFile = { };
FileSystem::deleteFile(m_pendingDownloadLocation);
}
void NetworkDataTaskBlob::didFailDownload(const ResourceError& error)
{
LOG(NetworkSession, "%p - NetworkDataTaskBlob::didFailDownload", this);
clearStream();
cleanDownloadFiles();
if (RefPtr extension = std::exchange(m_sandboxExtension, nullptr))
extension->revoke();
if (RefPtr client = m_client.get())
client->didCompleteWithError(error);
else {
RefPtr download = m_networkProcess->checkedDownloadManager()->download(*m_pendingDownloadID);
ASSERT(download);
download->didFail(error, { });
}
}
void NetworkDataTaskBlob::didFinishDownload()
{
LOG(NetworkSession, "%p - NetworkDataTaskBlob::didFinishDownload", this);
ASSERT(isDownload());
m_downloadFile = { };
#if !HAVE(MODERN_DOWNLOADPROGRESS)
if (RefPtr extension = std::exchange(m_sandboxExtension, nullptr))
extension->revoke();
#endif
clearStream();
RefPtr download = m_networkProcess->checkedDownloadManager()->download(*m_pendingDownloadID);
ASSERT(download);
#if HAVE(MODERN_DOWNLOADPROGRESS)
if (m_sandboxExtension)
download->setSandboxExtension(std::exchange(m_sandboxExtension, nullptr));
#endif
download->didFinish();
}
void NetworkDataTaskBlob::didFail(Error errorCode)
{
ASSERT(!m_sandboxExtension);
Ref<NetworkDataTaskBlob> protectedThis(*this);
if (isDownload()) {
didFailDownload(ResourceError(webKitBlobResourceDomain, static_cast<int>(errorCode), m_firstRequest.url(), String()));
return;
}
LOG(NetworkSession, "%p - NetworkDataTaskBlob::didFail", this);
clearStream();
ASSERT(m_client);
protectedClient()->didCompleteWithError(ResourceError(webKitBlobResourceDomain, static_cast<int>(errorCode), m_firstRequest.url(), String()));
}
void NetworkDataTaskBlob::didFinish()
{
if (m_downloadFile) {
didFinishDownload();
return;
}
ASSERT(!m_sandboxExtension);
LOG(NetworkSession, "%p - NetworkDataTaskBlob::didFinish", this);
clearStream();
ASSERT(m_client);
protectedClient()->didCompleteWithError({ });
}
} // namespace WebKit
|