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
|
/*
* Copyright (C) 2013-2022 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 "StorageAreaMap.h"
#include "Logging.h"
#include "NetworkProcessConnection.h"
#include "NetworkStorageManagerMessages.h"
#include "StorageAreaImpl.h"
#include "StorageAreaMapMessages.h"
#include "StorageNamespaceImpl.h"
#include "WebPage.h"
#include "WebProcess.h"
#include <WebCore/ClientOrigin.h>
#include <WebCore/DOMWindow.h>
#include <WebCore/Document.h>
#include <WebCore/EventNames.h>
#include <WebCore/LocalDOMWindow.h>
#include <WebCore/LocalFrame.h>
#include <WebCore/Page.h>
#include <WebCore/SecurityOriginData.h>
#include <WebCore/Storage.h>
#include <WebCore/StorageEventDispatcher.h>
#include <WebCore/StorageMap.h>
#include <WebCore/StorageType.h>
namespace WebKit {
using namespace WebCore;
StorageAreaMap::StorageAreaMap(StorageNamespaceImpl& storageNamespace, Ref<const WebCore::SecurityOrigin>&& securityOrigin)
: m_identifier(StorageAreaMapIdentifier::generate())
, m_namespace(storageNamespace)
, m_securityOrigin(WTFMove(securityOrigin))
, m_quotaInBytes(storageNamespace.quotaInBytes())
, m_type(storageNamespace.storageType())
{
WebProcess::singleton().registerStorageAreaMap(*this);
}
StorageAreaMap::~StorageAreaMap()
{
disconnect();
WebProcess::singleton().unregisterStorageAreaMap(*this);
}
unsigned StorageAreaMap::length()
{
return ensureMap().length();
}
String StorageAreaMap::key(unsigned index)
{
return ensureMap().key(index);
}
String StorageAreaMap::item(const String& key)
{
return ensureMap().getItem(key);
}
void StorageAreaMap::setItem(LocalFrame& sourceFrame, StorageAreaImpl* sourceArea, const String& key, const String& value, bool& quotaException)
{
auto& map = ensureMap();
ASSERT(!map.isShared());
String oldValue;
quotaException = false;
map.setItem(key, value, oldValue, quotaException);
if (quotaException)
return;
if (oldValue == value)
return;
m_pendingValueChanges.add(key);
if (!m_remoteAreaIdentifier) {
RELEASE_LOG_ERROR(Storage, "StorageAreaMap::setItem failed because storage map ID is invalid");
return;
}
auto callback = [weakThis = WeakPtr { *this }, seed = m_currentSeed, key](bool hasError, auto&& allItems) mutable {
if (weakThis)
weakThis->didSetItem(seed, key, hasError, WTFMove(allItems));
};
auto& connection = WebProcess::singleton().ensureNetworkProcessConnection().connection();
connection.sendWithAsyncReply(Messages::NetworkStorageManager::SetItem(*m_remoteAreaIdentifier, sourceArea->identifier(), key, value, sourceFrame.document()->url().string()), WTFMove(callback));
}
void StorageAreaMap::removeItem(WebCore::LocalFrame& sourceFrame, StorageAreaImpl* sourceArea, const String& key)
{
auto& map = ensureMap();
ASSERT(!map.isShared());
String oldValue;
map.removeItem(key, oldValue);
if (oldValue.isNull())
return;
m_pendingValueChanges.add(key);
if (!m_remoteAreaIdentifier) {
RELEASE_LOG_ERROR(Storage, "StorageAreaMap::removeItem failed because storage map ID is invalid");
return;
}
auto callback = [weakThis = WeakPtr { *this }, seed = m_currentSeed, key](bool hasError, auto&& allItems) mutable {
if (weakThis)
weakThis->didRemoveItem(seed, key, hasError, WTFMove(allItems));
};
WebProcess::singleton().ensureNetworkProcessConnection().connection().sendWithAsyncReply(Messages::NetworkStorageManager::RemoveItem(*m_remoteAreaIdentifier, sourceArea->identifier(), key, sourceFrame.document()->url().string()), WTFMove(callback));
}
void StorageAreaMap::clear(WebCore::LocalFrame& sourceFrame, StorageAreaImpl* sourceArea)
{
ensureMap().clear();
m_pendingValueChanges.clear();
++m_currentSeed;
m_hasPendingClear = true;
if (!m_remoteAreaIdentifier) {
RELEASE_LOG_ERROR(Storage, "StorageAreaMap::clear failed because storage map ID is invalid");
return;
}
auto callback = [weakThis = WeakPtr { *this }, seed = m_currentSeed]() mutable {
if (weakThis)
weakThis->didClear(seed);
};
WebProcess::singleton().ensureNetworkProcessConnection().connection().sendWithAsyncReply(Messages::NetworkStorageManager::Clear(*m_remoteAreaIdentifier, sourceArea->identifier(), sourceFrame.document()->url().string()), WTFMove(callback));
}
bool StorageAreaMap::contains(const String& key)
{
return ensureMap().contains(key);
}
StorageMap& StorageAreaMap::ensureMap()
{
connectSync();
if (!m_map)
m_map = makeUnique<StorageMap>(m_quotaInBytes);
return *m_map;
}
void StorageAreaMap::didSetItem(uint64_t mapSeed, const String& key, bool hasError, HashMap<String, String>&& remoteItems)
{
if (m_currentSeed != mapSeed)
return;
ASSERT(m_pendingValueChanges.contains(key));
m_pendingValueChanges.remove(key);
if (hasError)
syncItems(WTFMove(remoteItems));
}
void StorageAreaMap::didRemoveItem(uint64_t mapSeed, const String& key, bool hasError, HashMap<String, String>&& remoteItems)
{
if (m_currentSeed != mapSeed)
return;
ASSERT(m_pendingValueChanges.contains(key));
m_pendingValueChanges.remove(key);
if (hasError)
syncItems(WTFMove(remoteItems));
}
void StorageAreaMap::didClear(uint64_t mapSeed)
{
if (m_currentSeed != mapSeed)
return;
ASSERT(m_hasPendingClear);
m_hasPendingClear = false;
}
void StorageAreaMap::applyChange(const String& key, const String& newValue)
{
ASSERT(!m_map || !m_map->isShared());
// A null key means clear.
if (!key) {
syncItems(HashMap<String, String> { });
return;
}
syncOneItem(key, newValue);
}
void StorageAreaMap::dispatchStorageEvent(const std::optional<StorageAreaImplIdentifier>& storageAreaImplID, const String& key, const String& oldValue, const String& newValue, const String& urlString, uint64_t messageIdentifier)
{
if (messageIdentifier < m_lastHandledMessageIdentifier)
return;
m_lastHandledMessageIdentifier = messageIdentifier;
if (!storageAreaImplID) {
// This storage event originates from another process so we need to apply the change to our storage area map.
applyChange(key, newValue);
}
if (type() == StorageType::Session)
dispatchSessionStorageEvent(storageAreaImplID, key, oldValue, newValue, urlString);
else
dispatchLocalStorageEvent(storageAreaImplID, key, oldValue, newValue, urlString);
}
void StorageAreaMap::clearCache(uint64_t messageIdentifier)
{
if (messageIdentifier < m_lastHandledMessageIdentifier)
return;
m_lastHandledMessageIdentifier = messageIdentifier;
syncItems(HashMap<String, String> { });
}
void StorageAreaMap::dispatchSessionStorageEvent(const std::optional<StorageAreaImplIdentifier>& storageAreaImplID, const String& key, const String& oldValue, const String& newValue, const String& urlString)
{
// Namespace IDs for session storage namespaces are equivalent to web page IDs
// so we can get the right page here.
auto* webPage = WebProcess::singleton().webPage(m_namespace.sessionStoragePageID());
if (!webPage)
return;
auto* page = webPage->corePage();
if (!page)
return;
StorageEventDispatcher::dispatchSessionStorageEvents(key, oldValue, newValue, *page, m_securityOrigin, urlString, [storageAreaImplID](auto& storage) {
return static_cast<StorageAreaImpl&>(storage.area()).identifier() == storageAreaImplID;
});
}
void StorageAreaMap::dispatchLocalStorageEvent(const std::optional<StorageAreaImplIdentifier>& storageAreaImplID, const String& key, const String& oldValue, const String& newValue, const String& urlString)
{
ASSERT(isLocalStorage(type()));
StorageEventDispatcher::dispatchLocalStorageEvents(key, oldValue, newValue, nullptr, m_securityOrigin, urlString, [storageAreaImplID](auto& storage) {
return static_cast<StorageAreaImpl&>(storage.area()).identifier() == storageAreaImplID;
});
}
StorageType StorageAreaMap::computeStorageType() const
{
auto type = m_type;
if ((type == StorageType::Local || type == StorageType::TransientLocal) && m_namespace.topLevelOrigin())
type = StorageType::TransientLocal;
return type;
}
WebCore::ClientOrigin StorageAreaMap::clientOrigin() const
{
auto originData = m_securityOrigin->data();
auto topOriginData = m_namespace.topLevelOrigin() ? m_namespace.topLevelOrigin()->data() : originData;
return WebCore::ClientOrigin { topOriginData, originData };
}
void StorageAreaMap::sendConnectMessage(SendMode mode)
{
m_isWaitingForConnectReply = true;
auto& ipcConnection = WebProcess::singleton().ensureNetworkProcessConnection().connection();
auto namespaceIdentifier = m_namespace.storageNamespaceID();
auto origin = clientOrigin();
auto type = computeStorageType();
if (mode == SendMode::Sync) {
auto sendResult = ipcConnection.sendSync(Messages::NetworkStorageManager::ConnectToStorageAreaSync(type, m_identifier, namespaceIdentifier, origin), 0);
auto [remoteAreaIdentifier, items, messageIdentifier] = sendResult.takeReplyOr(StorageAreaIdentifier { }, HashMap<String, String> { }, 0);
didConnect(remoteAreaIdentifier, WTFMove(items), messageIdentifier);
return;
}
auto completionHandler = [this, weakThis = WeakPtr { *this }](auto remoteAreaIdentifier, auto items, auto messageIdentifier) mutable {
if (weakThis)
return didConnect(remoteAreaIdentifier, WTFMove(items), messageIdentifier);
};
ipcConnection.sendWithAsyncReply(Messages::NetworkStorageManager::ConnectToStorageArea(type, m_identifier, namespaceIdentifier, origin), WTFMove(completionHandler));
}
void StorageAreaMap::connectSync()
{
if (m_remoteAreaIdentifier)
return;
sendConnectMessage(SendMode::Sync);
}
void StorageAreaMap::connect()
{
if (m_remoteAreaIdentifier)
return;
sendConnectMessage(SendMode::Async);
}
void StorageAreaMap::didConnect(StorageAreaIdentifier remoteAreaIdentifier, HashMap<String, String>&& items, uint64_t messageIdentifier)
{
m_isWaitingForConnectReply = false;
if (messageIdentifier < m_lastHandledMessageIdentifier)
return;
m_lastHandledMessageIdentifier = messageIdentifier;
if (!remoteAreaIdentifier.isValid())
return;
m_remoteAreaIdentifier = remoteAreaIdentifier;
m_map = makeUnique<StorageMap>(m_quotaInBytes);
m_map->importItems(WTFMove(items));
}
void StorageAreaMap::disconnect()
{
if (!m_remoteAreaIdentifier) {
auto* networkProcessConnection = WebProcess::singleton().existingNetworkProcessConnection();
if (m_isWaitingForConnectReply && networkProcessConnection)
networkProcessConnection->connection().send(Messages::NetworkStorageManager::CancelConnectToStorageArea(computeStorageType(), m_namespace.storageNamespaceID(), clientOrigin()), 0);
return;
}
if (auto* networkProcessConnection = WebProcess::singleton().existingNetworkProcessConnection())
networkProcessConnection->connection().send(Messages::NetworkStorageManager::DisconnectFromStorageArea(*m_remoteAreaIdentifier), 0);
m_remoteAreaIdentifier = { };
m_lastHandledMessageIdentifier = 0;
}
void StorageAreaMap::incrementUseCount()
{
++m_useCount;
}
void StorageAreaMap::decrementUseCount()
{
if (!--m_useCount)
m_namespace.destroyStorageAreaMap(*this);
}
void StorageAreaMap::syncOneItem(const String& key, const String& value)
{
// Once the pending value change request is handled by remote area, this item will be changed.
if (!m_map || m_pendingValueChanges.contains(key))
return;
if (!value) {
String oldValue;
m_map->removeItem(key, oldValue);
return;
}
m_map->setItemIgnoringQuota(key, value);
}
void StorageAreaMap::syncItems(HashMap<String, String>&& items)
{
// Once the pending clear request is handled by remote area, these items will be gone.
if (!m_map || m_hasPendingClear)
return;
auto oldMap = std::exchange(m_map, makeUnique<StorageMap>(m_quotaInBytes));
m_map->importItems(WTFMove(items));
for (auto change : m_pendingValueChanges) {
String value = oldMap->getItem(change.key);
if (!value.isNull())
m_map->setItemIgnoringQuota(change.key, value);
else {
String oldValue;
m_map->removeItem(change.key, oldValue);
}
}
}
} // namespace WebKit
|