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 419 420 421 422 423 424 425 426
|
/*
* Copyright (C) 2025 Igalia, S.L. 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 "WebExtensionStorageSQLiteStore.h"
#include "Logging.h"
#include "WebExtensionDataType.h"
#include "WebExtensionSQLiteHelpers.h"
#include <wtf/CrossThreadCopier.h>
#include <wtf/TZoneMallocInlines.h>
#include <wtf/text/MakeString.h>
namespace WebKit {
#if ENABLE(WK_WEB_EXTENSIONS)
WTF_MAKE_TZONE_ALLOCATED_IMPL(WebExtensionStorageSQLiteStore);
static const SchemaVersion currentSchemaVersion = 2;
static String rowFilterStringFromRowKeys(Vector<String> keys)
{
Vector<String> escapedAndQuotedKeys;
for (String key : keys) {
String keyWithSingleQuotesEscaped = makeStringByReplacingAll(key, "'"_s, "''"_s);
escapedAndQuotedKeys.append(makeString("'"_s, keyWithSingleQuotesEscaped, "'"_s));
}
return makeStringByJoining(escapedAndQuotedKeys.span(), ", "_s);
}
WebExtensionStorageSQLiteStore::WebExtensionStorageSQLiteStore(const String& uniqueIdentifier, WebExtensionDataType storageType, const String& directory, UsesInMemoryDatabase useInMemoryDatabase)
: WebExtensionSQLiteStore(uniqueIdentifier, directory, static_cast<bool>(useInMemoryDatabase))
, m_storageType(storageType)
{
}
void WebExtensionStorageSQLiteStore::getAllKeys(CompletionHandler<void(Vector<String> keys, const String& errorMessage)>&& completionHandler)
{
queue()->dispatch([weakThis = ThreadSafeWeakPtr { *this }, uniqueIdentifier = crossThreadCopy(uniqueIdentifier()), completionHandler = WTFMove(completionHandler)]() mutable {
RefPtr protectedThis = weakThis.get();
if (!protectedThis) {
RELEASE_LOG_ERROR(Extensions, "Failed to retrieve all keys for extension %s.", uniqueIdentifier.utf8().data());
completionHandler({ }, "Failed to retrieve all keys"_s);
return;
}
String errorMessage;
auto keysArray = protectedThis->getAllKeysWithErrorMessage(errorMessage);
WorkQueue::protectedMain()->dispatch([keysArray = crossThreadCopy(keysArray), errorMessage = crossThreadCopy(errorMessage), completionHandler = WTFMove(completionHandler)]() mutable {
completionHandler(keysArray, errorMessage);
});
});
}
void WebExtensionStorageSQLiteStore::getValuesForKeys(Vector<String> keys, CompletionHandler<void(HashMap<String, String> results, const String& errorMessage)>&& completionHandler)
{
queue()->dispatch([weakThis = ThreadSafeWeakPtr { *this }, uniqueIdentifier = crossThreadCopy(uniqueIdentifier()), keys = crossThreadCopy(keys), completionHandler = WTFMove(completionHandler)]() mutable {
RefPtr protectedThis = weakThis.get();
if (!protectedThis) {
RELEASE_LOG_ERROR(Extensions, "Failed to retrieve values for keys: %s for extension %s.", rowFilterStringFromRowKeys(keys).utf8().data(), uniqueIdentifier.utf8().data());
completionHandler({ }, "Failed to retrieve values for keys"_s);
return;
}
String errorMessage;
auto results = keys.size() ? protectedThis->getValuesForKeysWithErrorMessage(keys, errorMessage) : protectedThis->getValuesForAllKeys(errorMessage);
WorkQueue::protectedMain()->dispatch([results = crossThreadCopy(results), errorMessage = crossThreadCopy(errorMessage), completionHandler = WTFMove(completionHandler)]() mutable {
completionHandler(results, errorMessage);
});
});
}
static size_t storageSizeOf(HashMap<String, String> map)
{
size_t totalStorage = 0;
for (const auto& key : map.keys())
totalStorage += key.sizeInBytes();
for (const auto& value : map.values())
totalStorage += value.sizeInBytes();
return totalStorage;
}
void WebExtensionStorageSQLiteStore::getStorageSizeForKeys(Vector<String> keys, CompletionHandler<void(size_t storageSize, const String& errorMessage)>&& completionHandler)
{
queue()->dispatch([protectedThis = Ref { *this }, uniqueIdentifier = crossThreadCopy(uniqueIdentifier()), keys = crossThreadCopy(keys), completionHandler = WTFMove(completionHandler)]() mutable {
String errorMessage;
if (!keys.isEmpty()) {
auto keysAndValues = protectedThis->getValuesForKeysWithErrorMessage(keys, errorMessage);
WorkQueue::protectedMain()->dispatch([keysAndValues = crossThreadCopy(keysAndValues), errorMessage = crossThreadCopy(errorMessage), completionHandler = WTFMove(completionHandler)]() mutable {
completionHandler(storageSizeOf(keysAndValues), errorMessage);
});
return;
}
// Return storage size for all keys if no keys are specified.
if (!protectedThis->openDatabaseIfNecessary(errorMessage, false)) {
WorkQueue::protectedMain()->dispatch([errorMessage = crossThreadCopy(errorMessage), completionHandler = WTFMove(completionHandler)]() mutable {
completionHandler(0, errorMessage);
});
return;
}
int64_t result = 0;
RefPtr<API::Error> error;
bool success = SQLiteDatabaseEnumerate(*(protectedThis->database()), error, "SELECT SUM(LENGTH(key) + LENGTH(value)) FROM extension_storage"_s, std::tie(result));
WorkQueue::protectedMain()->dispatch([success, result, error, completionHandler = WTFMove(completionHandler)]() mutable {
if (success)
completionHandler(result, { });
else {
RELEASE_LOG_ERROR(Extensions, "Failed to calculate storage size for keys: %s", error->localizedDescription().utf8().data());
completionHandler(0, error->localizedDescription());
}
});
});
}
static Vector<String> toVector(HashMap<String, String> map, bool mapKeys)
{
Vector<String> result;
if (mapKeys) {
for (const auto& key : map.keys())
result.append(key);
} else {
for (const auto& value : map.values())
result.append(value);
}
return result;
}
void WebExtensionStorageSQLiteStore::getStorageSizeForAllKeys(HashMap<String, String> additionalKeyedData, CompletionHandler<void(size_t storageSize, int numberOfKeysIncludingAdditionalKeyedData, HashMap<String, String> existingKeysAndValues, const String& errorMessage)>&& completionHandler)
{
getStorageSizeForKeys({ }, [this, protectedThis = Ref { *this }, additionalKeyedData, completionHandler = WTFMove(completionHandler)](size_t storageSize, const String& errorMessage) mutable {
if (!errorMessage.isEmpty()) {
completionHandler(0.0, 0, { }, errorMessage);
return;
}
queue()->dispatch([weakThis = ThreadSafeWeakPtr { *this }, uniqueIdentifier = crossThreadCopy(uniqueIdentifier()), storageSize, additionalKeyedData = crossThreadCopy(additionalKeyedData), completionHandler = WTFMove(completionHandler)]() mutable {
RefPtr protectedThis = weakThis.get();
if (!protectedThis) {
RELEASE_LOG_ERROR(Extensions, "Failed to calculate storage size for extension %s.", uniqueIdentifier.utf8().data());
completionHandler(0.0, 0, { }, makeString("Failed to calculate storage size"_s));
return;
}
String errorMessage;
auto oldValuesForAdditionalKeys = protectedThis->getValuesForKeysWithErrorMessage(toVector(additionalKeyedData, true), errorMessage);
auto oldStorageSizeForAdditionalKeys = storageSizeOf(oldValuesForAdditionalKeys);
auto newStorageSizeForAdditionalKeys = storageSizeOf(additionalKeyedData);
auto updatedStorageSize = storageSize - oldStorageSizeForAdditionalKeys + newStorageSizeForAdditionalKeys;
auto existingAndAdditionalKeys = protectedThis->getAllKeysWithErrorMessage(errorMessage);
existingAndAdditionalKeys.appendVector(toVector(additionalKeyedData, true));
WorkQueue::protectedMain()->dispatch([updatedStorageSize, existingAndAdditionalKeys = crossThreadCopy(existingAndAdditionalKeys), oldValuesForAdditionalKeys = crossThreadCopy(oldValuesForAdditionalKeys), errorMessage = crossThreadCopy(errorMessage), completionHandler = WTFMove(completionHandler)]() mutable {
completionHandler(updatedStorageSize, existingAndAdditionalKeys.size(), oldValuesForAdditionalKeys, errorMessage);
});
});
});
}
void WebExtensionStorageSQLiteStore::setKeyedData(HashMap<String, String> keyedData, CompletionHandler<void(Vector<String> keysSuccessfullySet, const String& errorMessage)>&& completionHandler)
{
queue()->dispatch([weakThis = ThreadSafeWeakPtr { *this }, keyedData = crossThreadCopy(keyedData), completionHandler = WTFMove(completionHandler)]() mutable {
RefPtr protectedThis = weakThis.get();
if (!protectedThis) {
completionHandler({ }, makeString("Failed to set keys: "_s, rowFilterStringFromRowKeys(toVector(keyedData, true))));
return;
}
String errorMessage;
if (!protectedThis->openDatabaseIfNecessary(errorMessage, true)) {
WorkQueue::protectedMain()->dispatch([errorMessage = crossThreadCopy(errorMessage), completionHandler = WTFMove(completionHandler)]() mutable {
completionHandler({ }, errorMessage);
});
return;
}
ASSERT(errorMessage.isEmpty());
Vector<String> keysSuccessfullySet;
for (auto key : keyedData.keys()) {
errorMessage = protectedThis->insertOrUpdateValue(keyedData.get(key), key, *(protectedThis->database()));
if (!errorMessage.isEmpty())
break;
keysSuccessfullySet.append(key);
}
WorkQueue::protectedMain()->dispatch([keysSuccessfullySet = crossThreadCopy(keysSuccessfullySet), errorMessage = crossThreadCopy(errorMessage), completionHandler = WTFMove(completionHandler)]() mutable {
completionHandler(keysSuccessfullySet, errorMessage);
});
});
}
void WebExtensionStorageSQLiteStore::deleteValuesForKeys(Vector<String> keys, CompletionHandler<void(const String& errorMessage)>&& completionHandler)
{
queue()->dispatch([weakThis = ThreadSafeWeakPtr { *this }, keys = crossThreadCopy(keys), completionHandler = WTFMove(completionHandler)]() mutable {
RefPtr protectedThis = weakThis.get();
if (!protectedThis) {
completionHandler(makeString("Failed to delete keys: "_s, rowFilterStringFromRowKeys(keys)));
return;
}
String errorMessage;
if (!protectedThis->openDatabaseIfNecessary(errorMessage, false)) {
WorkQueue::protectedMain()->dispatch([errorMessage = crossThreadCopy(errorMessage), completionHandler = WTFMove(completionHandler)]() mutable {
completionHandler(errorMessage);
});
return;
}
ASSERT(errorMessage.isEmpty());
DatabaseResult result = SQLiteDatabaseExecute(*(protectedThis->database()), makeString("DELETE FROM extension_storage WHERE key in ("_s, rowFilterStringFromRowKeys(keys), ")"_s));
if (result != SQLITE_DONE) {
RELEASE_LOG_ERROR(Extensions, "Failed to delete keys %s for extension %s.", rowFilterStringFromRowKeys(keys).utf8().data(), protectedThis->uniqueIdentifier().utf8().data());
errorMessage = makeString("Failed to delete keys "_s, rowFilterStringFromRowKeys(keys));
}
auto deleteDatabaseErrorMessage = protectedThis->deleteDatabaseIfEmpty();
WorkQueue::protectedMain()->dispatch([deleteDatabaseErrorMessage = crossThreadCopy(deleteDatabaseErrorMessage), errorMessage = crossThreadCopy(errorMessage), completionHandler = WTFMove(completionHandler)]() mutable {
// Errors from opening the database or deleting keys take precedence over an error deleting the database.
completionHandler(!errorMessage.isEmpty() ? errorMessage : deleteDatabaseErrorMessage);
});
});
}
String WebExtensionStorageSQLiteStore::insertOrUpdateValue(const String& value, const String& key, Ref<WebExtensionSQLiteDatabase> database)
{
assertIsCurrent(queue());
DatabaseResult result = SQLiteDatabaseExecute(database, "INSERT OR REPLACE INTO extension_storage (key, value) VALUES (?, ?)"_s, key, value);
if (result != SQLITE_DONE) {
RELEASE_LOG_ERROR(Extensions, "Failed to insert value %s for key %s for extension %s.", value.utf8().data(), key.utf8().data(), uniqueIdentifier().utf8().data());
return makeString("Failed to insert value "_s, value, " for key "_s, key);
}
return nullString();
}
HashMap<String, String> WebExtensionStorageSQLiteStore::getValuesForAllKeys(String& errorMessage)
{
assertIsCurrent(queue());
if (!openDatabaseIfNecessary(errorMessage, false))
return { };
ASSERT(errorMessage.isEmpty());
if (RefPtr rows = SQLiteDatabaseFetch(*database(), "SELECT * FROM extension_storage"_s))
return getKeysAndValuesFromRowIterator(*rows);
return { };
}
HashMap<String, String> WebExtensionStorageSQLiteStore::getKeysAndValuesFromRowIterator(Ref<WebExtensionSQLiteRowEnumerator> rows)
{
HashMap<String, String> results;
RefPtr row = rows->next();
while (row != nullptr) {
auto key = row->getString(0);
auto value = row->getString(1);
results.set(key, value);
row = rows->next();
}
return results;
}
Vector<String> WebExtensionStorageSQLiteStore::getAllKeysWithErrorMessage(String& errorMessage)
{
assertIsCurrent(queue());
if (!openDatabaseIfNecessary(errorMessage, false))
return { };
ASSERT(errorMessage.isEmpty());
Vector<String> keys;
if (RefPtr rows = SQLiteDatabaseFetch(*database(), "SELECT key FROM extension_storage"_s)) {
RefPtr row = rows->next();
while (row != nullptr) {
keys.append(row->getString(0));
row = rows->next();
}
}
return keys;
}
HashMap<String, String> WebExtensionStorageSQLiteStore::getValuesForKeysWithErrorMessage(Vector<String> keys, String& errorMessage)
{
assertIsCurrent(queue());
if (!openDatabaseIfNecessary(errorMessage, false))
return { };
ASSERT(errorMessage.isEmpty());
if (RefPtr rows = SQLiteDatabaseFetch(*database(), makeString("SELECT * FROM extension_storage WHERE key in ("_s, rowFilterStringFromRowKeys(keys), ")"_s)))
return getKeysAndValuesFromRowIterator(*rows);
return { };
}
// MARK: Database Schema
SchemaVersion WebExtensionStorageSQLiteStore::currentDatabaseSchemaVersion()
{
return currentSchemaVersion;
}
DatabaseResult WebExtensionStorageSQLiteStore::createFreshDatabaseSchema()
{
assertIsCurrent(queue());
ASSERT(database());
DatabaseResult result = SQLiteDatabaseExecute(*database(), "CREATE TABLE extension_storage (key TEXT PRIMARY KEY NOT NULL, value TEXT NOT NULL)"_s);
if (result != SQLITE_DONE)
RELEASE_LOG_ERROR(Extensions, "Failed to create the extension_storage table for extension %s: %s (%d)", uniqueIdentifier().utf8().data(), lastErrorMessage().data(), result);
return result;
}
SchemaVersion WebExtensionStorageSQLiteStore::migrateToCurrentSchemaVersionIfNeeded()
{
assertIsCurrent(queue());
auto databaseSchemaVersion = currentDatabaseSchemaVersion();
if (databaseSchemaVersion == 1 && currentSchemaVersion == 2) {
// Safari shipped with a database schema version of 2, but when migrating to WebKit, the version was
// incorrectly marked as 1. This mismatch would normally trigger a database schema reset, erasing
// all storage data. However, since the schema for version 2 (Safari) and version 1 (WebKit) are
// identical, we simply set the version and return the current version to avoid unnecessary data loss.
setDatabaseSchemaVersion(currentSchemaVersion);
}
return WebExtensionSQLiteStore::migrateToCurrentSchemaVersionIfNeeded();
}
DatabaseResult WebExtensionStorageSQLiteStore::resetDatabaseSchema()
{
assertIsCurrent(queue());
ASSERT(database());
DatabaseResult result = SQLiteDatabaseExecute(*database(), "DROP TABLE IF EXISTS extension_storage"_s);
if (result != SQLITE_DONE)
RELEASE_LOG_ERROR(Extensions, "Failed to reset database schema for extension %s: %s (%d)", uniqueIdentifier().utf8().data(), lastErrorMessage().data(), result);
return result;
}
bool WebExtensionStorageSQLiteStore::isDatabaseEmpty()
{
assertIsCurrent(queue());
ASSERT(database());
RefPtr rows = SQLiteDatabaseFetch(*database(), "SELECT COUNT(*) FROM extension_storage"_s);
if (RefPtr row = rows->next())
return !row->getInt64(0);
return true;
}
URL WebExtensionStorageSQLiteStore::databaseURL()
{
if (useInMemoryDatabase())
return WebExtensionSQLiteDatabase::inMemoryDatabaseURL();
String databaseName;
switch (m_storageType) {
case WebExtensionDataType::Local:
databaseName = "LocalStorage.db"_s;
break;
case WebExtensionDataType::Sync:
databaseName = "SyncStorage.db"_s;
break;
case WebExtensionDataType::Session:
// Session storage is kept in memory only.
ASSERT_NOT_REACHED();
return { };
}
ASSERT(!directory().isEmpty());
return URL(URL { makeString(directory().string(), "/"_s) }, databaseName);
}
#endif // ENABLE(WK_WEB_EXTENSIONS)
} // namespace WebKit
|