Changeset 242710 in webkit
- Timestamp:
- Mar 11, 2019, 9:50:32 AM (6 years ago)
- Location:
- trunk
- Files:
-
- 23 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r242709 r242710 1 2019-03-11 Alex Christensen <achristensen@webkit.org> 2 3 Unreviewed, rolling out r242698. 4 5 API test crashes on bots. 6 7 Reverted changeset: 8 9 "Add a WKContentRuleList variant that uses copied memory 10 instead of mmap'd shared memory for class A containerized 11 apps" 12 https://bugs.webkit.org/show_bug.cgi?id=195511 13 https://trac.webkit.org/changeset/242698 14 1 15 2019-03-11 Michael Catanzaro <mcatanzaro@igalia.com> 2 16 -
trunk/Source/WebKit/NetworkProcess/NetworkContentRuleListManager.cpp
r242698 r242710 67 67 } 68 68 69 void NetworkContentRuleListManager::addContentRuleLists(UserContentControllerIdentifier identifier, Vector<std::pair<String, WebCompiledContentRuleListData>>&& contentRuleLists)69 void NetworkContentRuleListManager::addContentRuleLists(UserContentControllerIdentifier identifier, const Vector<std::pair<String, WebCompiledContentRuleListData>>& contentRuleLists) 70 70 { 71 71 auto& backend = *m_contentExtensionBackends.ensure(identifier, [] { … … 73 73 }).iterator->value; 74 74 75 for (auto&& contentRuleList : contentRuleLists) { 76 auto compiledContentRuleList = WebCompiledContentRuleList::create(WTFMove(contentRuleList.second)); 75 for (const auto& contentRuleList : contentRuleLists) { 76 WebCompiledContentRuleListData contentRuleListData = contentRuleList.second; 77 auto compiledContentRuleList = WebCompiledContentRuleList::create(WTFMove(contentRuleListData)); 77 78 backend.addContentExtension(contentRuleList.first, WTFMove(compiledContentRuleList), ContentExtensions::ContentExtension::ShouldCompileCSS::No); 78 79 } -
trunk/Source/WebKit/NetworkProcess/NetworkContentRuleListManager.h
r242698 r242710 52 52 53 53 private: 54 void addContentRuleLists(UserContentControllerIdentifier, Vector<std::pair<String, WebCompiledContentRuleListData>>&&);54 void addContentRuleLists(UserContentControllerIdentifier, const Vector<std::pair<String, WebCompiledContentRuleListData>>&); 55 55 void removeContentRuleList(UserContentControllerIdentifier, const String& name); 56 56 void removeAllContentRuleLists(UserContentControllerIdentifier); -
trunk/Source/WebKit/NetworkProcess/cache/NetworkCacheFileSystem.cpp
r242698 r242710 146 146 } 147 147 148 static String& pathRegisteredAsUnsafeToMemoryMapForTesting()149 {150 static NeverDestroyed<String> path;151 return path.get();152 }153 154 void registerPathAsUnsafeToMemoryMapForTesting(const String& path)155 {156 pathRegisteredAsUnsafeToMemoryMapForTesting() = path;157 }158 159 160 148 bool isSafeToUseMemoryMapForPath(const String& path) 161 149 { 162 if (path == pathRegisteredAsUnsafeToMemoryMapForTesting())163 return false;164 165 150 #if PLATFORM(IOS_FAMILY) && !PLATFORM(IOS_FAMILY_SIMULATOR) 166 151 struct { -
trunk/Source/WebKit/NetworkProcess/cache/NetworkCacheFileSystem.h
r242698 r242710 44 44 45 45 bool isSafeToUseMemoryMapForPath(const String& path); 46 void registerPathAsUnsafeToMemoryMapForTesting(const String&);47 46 48 47 } -
trunk/Source/WebKit/Shared/WebCompiledContentRuleList.cpp
r242698 r242710 45 45 } 46 46 47 bool WebCompiledContentRuleList::usesCopiedMemory() const48 {49 return WTF::holds_alternative<RefPtr<WebCore::SharedBuffer>>(m_data.data);50 }51 52 47 bool WebCompiledContentRuleList::conditionsApplyOnlyToDomain() const 53 48 { 54 return *reinterpret_cast< const uint32_t*>(reinterpret_cast<const uint8_t*>(m_data.dataPointer()) + m_data.conditionsApplyOnlyToDomainOffset);49 return *reinterpret_cast<uint32_t*>(reinterpret_cast<uint8_t*>(m_data.data->data()) + m_data.conditionsApplyOnlyToDomainOffset); 55 50 } 56 51 57 52 const WebCore::ContentExtensions::DFABytecode* WebCompiledContentRuleList::filtersWithoutConditionsBytecode() const 58 53 { 59 return static_cast<const WebCore::ContentExtensions::DFABytecode*>(m_data.data Pointer()) + m_data.filtersWithoutConditionsBytecodeOffset;54 return static_cast<const WebCore::ContentExtensions::DFABytecode*>(m_data.data->data()) + m_data.filtersWithoutConditionsBytecodeOffset; 60 55 } 61 56 … … 67 62 const WebCore::ContentExtensions::DFABytecode* WebCompiledContentRuleList::filtersWithConditionsBytecode() const 68 63 { 69 return static_cast<const WebCore::ContentExtensions::DFABytecode*>(m_data.data Pointer()) + m_data.filtersWithConditionsBytecodeOffset;64 return static_cast<const WebCore::ContentExtensions::DFABytecode*>(m_data.data->data()) + m_data.filtersWithConditionsBytecodeOffset; 70 65 } 71 66 … … 77 72 const WebCore::ContentExtensions::DFABytecode* WebCompiledContentRuleList::topURLFiltersBytecode() const 78 73 { 79 return static_cast<const WebCore::ContentExtensions::DFABytecode*>(m_data.data Pointer()) + m_data.topURLFiltersBytecodeOffset;74 return static_cast<const WebCore::ContentExtensions::DFABytecode*>(m_data.data->data()) + m_data.topURLFiltersBytecodeOffset; 80 75 } 81 76 … … 87 82 const WebCore::ContentExtensions::SerializedActionByte* WebCompiledContentRuleList::actions() const 88 83 { 89 return static_cast<const WebCore::ContentExtensions::SerializedActionByte*>(m_data.data Pointer()) + m_data.actionsOffset;84 return static_cast<const WebCore::ContentExtensions::SerializedActionByte*>(m_data.data->data()) + m_data.actionsOffset; 90 85 } 91 86 -
trunk/Source/WebKit/Shared/WebCompiledContentRuleList.h
r242698 r242710 39 39 virtual ~WebCompiledContentRuleList(); 40 40 41 const WebCompiledContentRuleListData&data() const { return m_data; }41 WebCompiledContentRuleListData data() const { return m_data; } 42 42 43 bool usesCopiedMemory() const;44 45 43 private: 46 44 WebCompiledContentRuleList(WebCompiledContentRuleListData&&); -
trunk/Source/WebKit/Shared/WebCompiledContentRuleListData.cpp
r242698 r242710 30 30 31 31 #include "ArgumentCoders.h" 32 #include "SharedBufferDataReference.h"33 32 34 33 namespace WebKit { 35 34 36 size_t WebCompiledContentRuleListData::size() const37 {38 return WTF::switchOn(data, [] (const auto& sharedMemoryOrBuffer) {39 return sharedMemoryOrBuffer->size();40 });41 }42 43 const void* WebCompiledContentRuleListData::dataPointer() const44 {45 return WTF::switchOn(data, [] (const auto& sharedMemoryOrBuffer) -> const void* {46 return sharedMemoryOrBuffer->data();47 });48 }49 50 35 void WebCompiledContentRuleListData::encode(IPC::Encoder& encoder) const 51 36 { 52 if (auto sharedMemory = WTF::get_if<RefPtr<SharedMemory>>(data)) { 53 encoder << true; 54 SharedMemory::Handle handle; 55 sharedMemory->get()->createHandle(handle, SharedMemory::Protection::ReadOnly); 56 encoder << handle; 57 } else { 58 encoder << false; 59 encoder << IPC::SharedBufferDataReference { *WTF::get<RefPtr<WebCore::SharedBuffer>>(data) }; 60 } 61 62 // fileData needs to be kept in the UIProcess, but it does not need to be serialized. 63 // FIXME: Move it to API::ContentRuleList 37 SharedMemory::Handle handle; 38 data->createHandle(handle, SharedMemory::Protection::ReadOnly); 39 encoder << handle; 64 40 65 41 encoder << conditionsApplyOnlyToDomainOffset; … … 77 53 { 78 54 WebCompiledContentRuleListData compiledContentRuleListData; 79 80 Optional<bool> hasSharedMemory; 81 decoder >> hasSharedMemory; 82 if (!hasSharedMemory) 55 SharedMemory::Handle handle; 56 if (!decoder.decode(handle)) 83 57 return WTF::nullopt; 84 if (*hasSharedMemory) { 85 SharedMemory::Handle handle; 86 if (!decoder.decode(handle)) 87 return WTF::nullopt; 88 compiledContentRuleListData.data = { SharedMemory::map(handle, SharedMemory::Protection::ReadOnly) }; 89 } else { 90 IPC::DataReference dataReference; 91 if (!decoder.decode(dataReference)) 92 return WTF::nullopt; 93 compiledContentRuleListData.data = { RefPtr<WebCore::SharedBuffer>(WebCore::SharedBuffer::create(dataReference.data(), dataReference.size())) }; 94 } 58 compiledContentRuleListData.data = SharedMemory::map(handle, SharedMemory::Protection::ReadOnly); 95 59 96 60 if (!decoder.decode(compiledContentRuleListData.conditionsApplyOnlyToDomainOffset)) -
trunk/Source/WebKit/Shared/WebCompiledContentRuleListData.h
r242698 r242710 30 30 #include "NetworkCacheData.h" 31 31 #include "SharedMemory.h" 32 #include <WebCore/SharedBuffer.h>33 32 #include <wtf/RefPtr.h> 34 #include <wtf/Variant.h>35 33 36 34 namespace IPC { … … 45 43 WebCompiledContentRuleListData() = default; 46 44 47 WebCompiledContentRuleListData( Variant<RefPtr<SharedMemory>, RefPtr<WebCore::SharedBuffer>>&& data, NetworkCache::Data fileData, unsigned conditionsApplyOnlyToDomainOffset, unsigned actionsOffset, unsigned actionsSize, unsigned filtersWithoutConditionsBytecodeOffset, unsigned filtersWithoutConditionsBytecodeSize, unsigned filtersWithConditionsBytecodeOffset, unsigned filtersWithConditionsBytecodeSize, unsigned topURLFiltersBytecodeOffset, unsigned topURLFiltersBytecodeSize)45 WebCompiledContentRuleListData(RefPtr<SharedMemory>&& data, NetworkCache::Data fileData, unsigned conditionsApplyOnlyToDomainOffset, unsigned actionsOffset, unsigned actionsSize, unsigned filtersWithoutConditionsBytecodeOffset, unsigned filtersWithoutConditionsBytecodeSize, unsigned filtersWithConditionsBytecodeOffset, unsigned filtersWithConditionsBytecodeSize, unsigned topURLFiltersBytecodeOffset, unsigned topURLFiltersBytecodeSize) 48 46 : data(WTFMove(data)) 49 47 , fileData(fileData) … … 63 61 static Optional<WebCompiledContentRuleListData> decode(IPC::Decoder&); 64 62 65 size_t size() const; 66 const void* dataPointer() const; 67 68 Variant<RefPtr<SharedMemory>, RefPtr<WebCore::SharedBuffer>> data; 63 RefPtr<SharedMemory> data; 69 64 NetworkCache::Data fileData; 70 65 unsigned conditionsApplyOnlyToDomainOffset { 0 }; -
trunk/Source/WebKit/UIProcess/API/APIContentRuleList.cpp
r242698 r242710 43 43 } 44 44 45 bool ContentRuleList::usesCopiedMemory() const46 {47 return m_compiledRuleList->usesCopiedMemory();48 }49 50 45 } // namespace API 51 46 -
trunk/Source/WebKit/UIProcess/API/APIContentRuleList.h
r242698 r242710 49 49 const WebKit::WebCompiledContentRuleList& compiledRuleList() const { return m_compiledRuleList.get(); } 50 50 51 bool usesCopiedMemory() const;52 53 51 private: 54 52 WTF::String m_name; -
trunk/Source/WebKit/UIProcess/API/APIContentRuleListStore.cpp
r242698 r242710 38 38 #include <WebCore/ContentExtensionParser.h> 39 39 #include <WebCore/QualifiedName.h> 40 #include <WebCore/SharedBuffer.h>41 40 #include <string> 42 41 #include <wtf/CompletionHandler.h> … … 158 157 } 159 158 160 template<typename T> void getData(const T&, const Function<bool(const uint8_t*, size_t)>&); 161 template<> void getData(const WebKit::NetworkCache::Data& data, const Function<bool(const uint8_t*, size_t)>& function) 162 { 163 data.apply(function); 164 } 165 template<> void getData(const WebCore::SharedBuffer& data, const Function<bool(const uint8_t*, size_t)>& function) 166 { 167 function(reinterpret_cast<const uint8_t*>(data.data()), data.size()); 168 } 169 170 template<typename T> 171 static Optional<ContentRuleListMetaData> decodeContentRuleListMetaData(const T& fileData) 159 static bool decodeContentRuleListMetaData(ContentRuleListMetaData& metaData, const WebKit::NetworkCache::Data& fileData) 172 160 { 173 161 bool success = false; 174 ContentRuleListMetaData metaData; 175 getData(fileData, [&metaData, &success, &fileData](const uint8_t* data, size_t size) { 162 fileData.apply([&metaData, &success, &fileData](const uint8_t* data, size_t size) { 176 163 // The file data should be mapped into one continuous memory segment so the size 177 164 // passed to the applier should always equal the data size. … … 197 184 return false; 198 185 }); 199 if (!success) 200 return WTF::nullopt; 201 return WTFMove(metaData); 202 } 203 204 #if !PLATFORM(COCOA) 205 RefPtr<WebCore::SharedBuffer> ContentRuleListStore::readContentsOfFile(const WTF::String& filePath) 206 { 207 ASSERT_NOT_REACHED(); 208 return nullptr; 209 } 210 #endif 211 212 struct MappedOrCopiedData { 213 ContentRuleListMetaData metaData; 214 Variant<WebKit::NetworkCache::Data, RefPtr<WebCore::SharedBuffer>> data; 215 216 const uint8_t* dataPointer() const 217 { 218 return WTF::switchOn(data, [] (const WebKit::NetworkCache::Data& data) { 219 return data.data(); 220 }, [] (const RefPtr<WebCore::SharedBuffer>& sharedBuffer) { 221 return reinterpret_cast<const uint8_t*>(sharedBuffer->data()); 222 }); 223 } 224 }; 225 226 static Optional<MappedOrCopiedData> openAndMapOrCopyContentRuleList(const WTF::String& path) 227 { 228 if (!WebKit::NetworkCache::isSafeToUseMemoryMapForPath(path)) { 229 RefPtr<WebCore::SharedBuffer> buffer = ContentRuleListStore::readContentsOfFile(path); 230 if (!buffer) 231 return WTF::nullopt; 232 auto metaData = decodeContentRuleListMetaData(*buffer); 233 if (!metaData) 234 return WTF::nullopt; 235 return {{ WTFMove(*metaData), { buffer.releaseNonNull() }}}; 236 } 237 238 WebKit::NetworkCache::Data fileData = mapFile(fileSystemRepresentation(path).data()); 186 return success; 187 } 188 189 static bool openAndMapContentRuleList(const WTF::String& path, ContentRuleListMetaData& metaData, WebKit::NetworkCache::Data& fileData) 190 { 191 fileData = mapFile(fileSystemRepresentation(path).data()); 239 192 if (fileData.isNull()) 240 return WTF::nullopt; 241 auto metaData = decodeContentRuleListMetaData(fileData); 242 if (!metaData) 243 return WTF::nullopt; 244 return {{ WTFMove(*metaData), { WTFMove(fileData) }}}; 193 return false; 194 195 if (!decodeContentRuleListMetaData(metaData, fileData)) 196 return false; 197 198 return true; 245 199 } 246 200 … … 259 213 } 260 214 261 static Expected<MappedOrCopiedData, std::error_code> compiledToFile(WTF::String&& json, Vector<WebCore::ContentExtensions::ContentExtensionRule>&& parsedRules, const WTF::String& finalFilePath)215 static std::error_code compiledToFile(WTF::String&& json, Vector<WebCore::ContentExtensions::ContentExtensionRule>&& parsedRules, const WTF::String& finalFilePath, ContentRuleListMetaData& metaData, WebKit::NetworkCache::Data& mappedData) 262 216 { 263 217 using namespace WebCore::ContentExtensions; … … 376 330 if (temporaryFileHandle == invalidPlatformFileHandle) { 377 331 WTFLogAlways("Content Rule List compiling failed: Opening temporary file failed."); 378 return makeUnexpected(ContentRuleListStore::Error::CompileFailed);332 return ContentRuleListStore::Error::CompileFailed; 379 333 } 380 334 … … 385 339 WTFLogAlways("Content Rule List compiling failed: Writing header to file failed."); 386 340 closeFile(temporaryFileHandle); 387 return makeUnexpected(ContentRuleListStore::Error::CompileFailed); 388 } 389 390 ContentRuleListMetaData metaData; 341 return ContentRuleListStore::Error::CompileFailed; 342 } 343 391 344 CompilationClient compilationClient(temporaryFileHandle, metaData); 392 345 … … 394 347 WTFLogAlways("Content Rule List compiling failed: Compiling failed."); 395 348 closeFile(temporaryFileHandle); 396 return makeUnexpected(compilerError);349 return compilerError; 397 350 } 398 351 if (compilationClient.hadErrorWhileWritingToFile()) { 399 352 WTFLogAlways("Content Rule List compiling failed: Writing to file failed."); 400 353 closeFile(temporaryFileHandle); 401 return makeUnexpected(ContentRuleListStore::Error::CompileFailed);402 } 403 404 automappedData = adoptAndMapFile(temporaryFileHandle, 0, metaData.fileSize());354 return ContentRuleListStore::Error::CompileFailed; 355 } 356 357 mappedData = adoptAndMapFile(temporaryFileHandle, 0, metaData.fileSize()); 405 358 if (mappedData.isNull()) { 406 359 WTFLogAlways("Content Rule List compiling failed: Mapping file failed."); 407 return makeUnexpected(ContentRuleListStore::Error::CompileFailed);360 return ContentRuleListStore::Error::CompileFailed; 408 361 } 409 362 410 363 if (!moveFile(temporaryFilePath, finalFilePath)) { 411 364 WTFLogAlways("Content Rule List compiling failed: Moving file failed."); 412 return makeUnexpected(ContentRuleListStore::Error::CompileFailed); 413 } 414 415 if (!isSafeToUseMemoryMapForPath(finalFilePath)) { 416 auto contents = ContentRuleListStore::readContentsOfFile(finalFilePath); 417 if (!contents) 418 return makeUnexpected(ContentRuleListStore::Error::CompileFailed); 419 return {{ WTFMove(metaData), WTFMove(contents) }}; 420 } 421 422 return {{ WTFMove(metaData), WTFMove(mappedData) }}; 423 } 424 425 static Ref<API::ContentRuleList> createExtension(const WTF::String& identifier, MappedOrCopiedData&& data) 426 { 427 RefPtr<WebKit::SharedMemory> sharedMemory; 428 if (auto mappedFileData = WTF::get_if<WebKit::NetworkCache::Data>(data.data)) { 429 sharedMemory = mappedFileData->tryCreateSharedMemory(); 430 431 // Content extensions are always compiled to files, and at this point the file 432 // has been already mapped, therefore tryCreateSharedMemory() cannot fail. 433 ASSERT(sharedMemory); 434 } 435 auto mappedOrCopiedFileData = sharedMemory ? 436 Variant<RefPtr<WebKit::SharedMemory>, RefPtr<WebCore::SharedBuffer>> { sharedMemory } 437 : Variant<RefPtr<WebKit::SharedMemory>, RefPtr<WebCore::SharedBuffer>> { WTFMove(WTF::get<RefPtr<WebCore::SharedBuffer>>(data.data)) }; 438 439 const size_t headerAndSourceSize = ContentRuleListFileHeaderSize + data.metaData.sourceSize; 365 return ContentRuleListStore::Error::CompileFailed; 366 } 367 368 return { }; 369 } 370 371 static Ref<API::ContentRuleList> createExtension(const WTF::String& identifier, const ContentRuleListMetaData& metaData, const WebKit::NetworkCache::Data& fileData) 372 { 373 // Content extensions are always compiled to files, and at this point the file 374 // has been already mapped, therefore tryCreateSharedMemory() cannot fail. 375 auto sharedMemory = fileData.tryCreateSharedMemory(); 376 ASSERT(sharedMemory); 377 378 const size_t headerAndSourceSize = ContentRuleListFileHeaderSize + metaData.sourceSize; 440 379 auto compiledContentRuleListData = WebKit::WebCompiledContentRuleListData( 441 WTFMove( mappedOrCopiedFileData),442 WTF::holds_alternative<WebKit::NetworkCache::Data>(data.data) ? WTF::get<WebKit::NetworkCache::Data>(data.data) : WebKit::NetworkCache::Data { },380 WTFMove(sharedMemory), 381 fileData, 443 382 ConditionsApplyOnlyToDomainOffset, 444 383 headerAndSourceSize, 445 data.metaData.actionsSize,384 metaData.actionsSize, 446 385 headerAndSourceSize 447 + data.metaData.actionsSize,448 data.metaData.filtersWithoutConditionsBytecodeSize,386 + metaData.actionsSize, 387 metaData.filtersWithoutConditionsBytecodeSize, 449 388 headerAndSourceSize 450 + data.metaData.actionsSize451 + data.metaData.filtersWithoutConditionsBytecodeSize,452 data.metaData.filtersWithConditionsBytecodeSize,389 + metaData.actionsSize 390 + metaData.filtersWithoutConditionsBytecodeSize, 391 metaData.filtersWithConditionsBytecodeSize, 453 392 headerAndSourceSize 454 + data.metaData.actionsSize455 + data.metaData.filtersWithoutConditionsBytecodeSize456 + data.metaData.filtersWithConditionsBytecodeSize,457 data.metaData.conditionedFiltersBytecodeSize393 + metaData.actionsSize 394 + metaData.filtersWithoutConditionsBytecodeSize 395 + metaData.filtersWithConditionsBytecodeSize, 396 metaData.conditionedFiltersBytecodeSize 458 397 ); 459 398 auto compiledContentRuleList = WebKit::WebCompiledContentRuleList::create(WTFMove(compiledContentRuleListData)); … … 466 405 auto path = constructedPath(storePath, identifier, legacyFilename); 467 406 468 auto contentRuleList = openAndMapOrCopyContentRuleList(path); 469 if (!contentRuleList) { 407 ContentRuleListMetaData metaData; 408 WebKit::NetworkCache::Data fileData; 409 if (!openAndMapContentRuleList(path, metaData, fileData)) { 470 410 RunLoop::main().dispatch([protectedThis = WTFMove(protectedThis), completionHandler = WTFMove(completionHandler)] () mutable { 471 411 completionHandler(nullptr, Error::LookupFailed); … … 474 414 } 475 415 476 if ( contentRuleList->metaData.version != ContentRuleListStore::CurrentContentRuleListFileVersion) {416 if (metaData.version != ContentRuleListStore::CurrentContentRuleListFileVersion) { 477 417 RunLoop::main().dispatch([protectedThis = WTFMove(protectedThis), completionHandler = WTFMove(completionHandler)] () mutable { 478 418 completionHandler(nullptr, Error::VersionMismatch); … … 481 421 } 482 422 483 RunLoop::main().dispatch([protectedThis = WTFMove(protectedThis), identifier = identifier.isolatedCopy(), contentRuleList = WTFMove(*contentRuleList), completionHandler = WTFMove(completionHandler)] () mutable {484 completionHandler(createExtension(identifier, WTFMove(contentRuleList)), { });423 RunLoop::main().dispatch([protectedThis = WTFMove(protectedThis), identifier = identifier.isolatedCopy(), fileData = WTFMove(fileData), metaData = WTFMove(metaData), completionHandler = WTFMove(completionHandler)] () mutable { 424 completionHandler(createExtension(identifier, metaData, fileData), { }); 485 425 }); 486 426 }); … … 516 456 auto path = constructedPath(storePath, identifier, legacyFilename); 517 457 518 auto result = compiledToFile(WTFMove(json), WTFMove(parsedRules), path); 519 if (!result.has_value()) { 520 RunLoop::main().dispatch([protectedThis = WTFMove(protectedThis), error = WTFMove(result.error()), completionHandler = WTFMove(completionHandler)] () mutable { 458 ContentRuleListMetaData metaData; 459 WebKit::NetworkCache::Data fileData; 460 auto error = compiledToFile(WTFMove(json), WTFMove(parsedRules), path, metaData, fileData); 461 if (error) { 462 RunLoop::main().dispatch([protectedThis = WTFMove(protectedThis), error = WTFMove(error), completionHandler = WTFMove(completionHandler)] () mutable { 521 463 completionHandler(nullptr, error); 522 464 }); … … 524 466 } 525 467 526 RunLoop::main().dispatch([protectedThis = WTFMove(protectedThis), identifier = WTFMove(identifier), data = WTFMove(result.value()), completionHandler = WTFMove(completionHandler)] () mutable {527 auto contentRuleList = createExtension(identifier, WTFMove(data));528 completionHandler(contentRuleList .ptr(), { });468 RunLoop::main().dispatch([protectedThis = WTFMove(protectedThis), identifier = WTFMove(identifier), fileData = WTFMove(fileData), metaData = WTFMove(metaData), completionHandler = WTFMove(completionHandler)] () mutable { 469 RefPtr<API::ContentRuleList> contentRuleList = createExtension(identifier, metaData, fileData); 470 completionHandler(contentRuleList, { }); 529 471 }); 530 472 }); … … 576 518 }); 577 519 }; 578 579 auto contentRuleList = openAndMapOrCopyContentRuleList(path); 580 if (!contentRuleList) { 520 521 ContentRuleListMetaData metaData; 522 WebKit::NetworkCache::Data fileData; 523 if (!openAndMapContentRuleList(path, metaData, fileData)) { 581 524 complete({ }); 582 525 return; 583 526 } 584 527 585 switch ( contentRuleList->metaData.version) {528 switch (metaData.version) { 586 529 case 9: 587 530 case 10: 588 if (! contentRuleList->metaData.sourceSize) {531 if (!metaData.sourceSize) { 589 532 complete({ }); 590 533 return; 591 534 } 592 bool is8Bit = contentRuleList->dataPointer()[ContentRuleListFileHeaderSize];535 bool is8Bit = fileData.data()[ContentRuleListFileHeaderSize]; 593 536 size_t start = ContentRuleListFileHeaderSize + sizeof(bool); 594 size_t length = contentRuleList->metaData.sourceSize - sizeof(bool);537 size_t length = metaData.sourceSize - sizeof(bool); 595 538 if (is8Bit) 596 complete(WTF::String( contentRuleList->dataPointer() + start, length));539 complete(WTF::String(fileData.data() + start, length)); 597 540 else { 598 541 ASSERT(!(length % sizeof(UChar))); 599 complete(WTF::String(reinterpret_cast<const UChar*>( contentRuleList->dataPointer() + start), length / sizeof(UChar)));542 complete(WTF::String(reinterpret_cast<const UChar*>(fileData.data() + start), length / sizeof(UChar))); 600 543 } 601 544 return; -
trunk/Source/WebKit/UIProcess/API/APIContentRuleListStore.h
r242698 r242710 31 31 #include <system_error> 32 32 #include <wtf/text/WTFString.h> 33 34 namespace WebCore {35 class SharedBuffer;36 }37 33 38 34 namespace WTF { … … 77 73 void getContentRuleListSource(const WTF::String& identifier, CompletionHandler<void(WTF::String)>); 78 74 79 static RefPtr<WebCore::SharedBuffer> readContentsOfFile(const WTF::String& path);80 81 75 private: 82 76 WTF::String defaultStorePath(bool legacyFilename); -
trunk/Source/WebKit/UIProcess/API/Cocoa/APIContentRuleListStoreCocoa.mm
r242698 r242710 30 30 31 31 #include "SandboxUtilities.h" 32 #include <WebCore/SharedBuffer.h>33 32 34 33 namespace API { … … 65 64 } 66 65 67 RefPtr<WebCore::SharedBuffer> ContentRuleListStore::readContentsOfFile(const String& filePath)68 {69 ASSERT(!isMainThread());70 NSData *data = [NSData dataWithContentsOfURL:[NSURL fileURLWithPath:filePath isDirectory:NO]];71 if (!data)72 return nullptr;73 return WebCore::SharedBuffer::create(data);74 }75 76 66 } // namespace API 77 67 -
trunk/Source/WebKit/UIProcess/API/Cocoa/WKContentRuleListStore.mm
r242698 r242710 29 29 30 30 #import "APIContentRuleListStore.h" 31 #import "NetworkCacheFilesystem.h"32 31 #import "WKErrorInternal.h" 33 32 #import <wtf/BlockPtr.h> … … 127 126 // For testing only. 128 127 129 + (void)_registerPathAsUnsafeToMemoryMapForTesting:(NSString *)filename130 {131 WebKit::NetworkCache::registerPathAsUnsafeToMemoryMapForTesting(filename);132 }133 134 128 - (void)_removeAllContentRuleLists 135 129 { -
trunk/Source/WebKit/UIProcess/API/Cocoa/WKContentRuleListStorePrivate.h
r242698 r242710 32 32 - (void)_invalidateContentRuleListVersionForIdentifier:(NSString *)identifier; 33 33 - (void)_getContentRuleListSourceForIdentifier:(NSString *)identifier completionHandler:(void (^)(NSString*))completionHandler; 34 + (void)_registerPathAsUnsafeToMemoryMapForTesting:(NSString *)filename;35 34 36 35 // NS_RELEASES_ARGUMENT to keep peak memory usage low. -
trunk/Source/WebKit/UIProcess/API/Cocoa/_WKUserContentFilter.mm
r242698 r242710 57 57 } 58 58 59 - (BOOL)usesCopiedMemory60 {61 return _contentRuleList->_contentRuleList->usesCopiedMemory();62 }63 64 59 @end -
trunk/Source/WebKit/UIProcess/API/Cocoa/_WKUserContentFilterPrivate.h
r242698 r242710 31 31 32 32 - (id)_initWithWKContentRuleList:(WKContentRuleList*)contentRuleList WK_API_AVAILABLE(macosx(10.13), ios(11.0)); 33 @property (nonatomic, readonly) BOOL usesCopiedMemory;34 33 35 34 @end -
trunk/Source/WebKit/WebProcess/UserContent/WebUserContentController.cpp
r242698 r242710 349 349 350 350 #if ENABLE(CONTENT_EXTENSIONS) 351 void WebUserContentController::addContentRuleLists(Vector<std::pair<String, WebCompiledContentRuleListData>>&& contentRuleLists) 352 { 353 for (auto&& contentRuleList : contentRuleLists) { 354 auto compiledContentRuleList = WebCompiledContentRuleList::create(WTFMove(contentRuleList.second)); 351 void WebUserContentController::addContentRuleLists(const Vector<std::pair<String, WebCompiledContentRuleListData>>& contentRuleLists) 352 { 353 for (const auto& contentRuleList : contentRuleLists) { 354 WebCompiledContentRuleListData contentRuleListData = contentRuleList.second; 355 auto compiledContentRuleList = WebCompiledContentRuleList::create(WTFMove(contentRuleListData)); 355 356 356 357 m_contentExtensionBackend.addContentExtension(contentRuleList.first, WTFMove(compiledContentRuleList)); -
trunk/Source/WebKit/WebProcess/UserContent/WebUserContentController.h
r242698 r242710 70 70 void addUserScriptMessageHandlers(const Vector<WebScriptMessageHandlerData>&); 71 71 #if ENABLE(CONTENT_EXTENSIONS) 72 void addContentRuleLists( Vector<std::pair<String, WebCompiledContentRuleListData>>&&);72 void addContentRuleLists(const Vector<std::pair<String, WebCompiledContentRuleListData>>&); 73 73 #endif 74 74 -
trunk/Source/WebKit/WebProcess/WebPage/WebPage.cpp
r242698 r242710 638 638 m_userContentController->addUserScriptMessageHandlers(parameters.messageHandlers); 639 639 #if ENABLE(CONTENT_EXTENSIONS) 640 m_userContentController->addContentRuleLists( WTFMove(parameters.contentRuleLists));640 m_userContentController->addContentRuleLists(parameters.contentRuleLists); 641 641 #endif 642 642 -
trunk/Tools/ChangeLog
r242709 r242710 1 2019-03-11 Alex Christensen <achristensen@webkit.org> 2 3 Unreviewed, rolling out r242698. 4 5 API test crashes on bots. 6 7 Reverted changeset: 8 9 "Add a WKContentRuleList variant that uses copied memory 10 instead of mmap'd shared memory for class A containerized 11 apps" 12 https://bugs.webkit.org/show_bug.cgi?id=195511 13 https://trac.webkit.org/changeset/242698 14 1 15 2019-03-11 Michael Catanzaro <mcatanzaro@igalia.com> 2 16 -
trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WKContentExtensionStore.mm
r242698 r242710 29 29 #import "PlatformUtilities.h" 30 30 #import "Test.h" 31 #import "TestWKWebView.h"32 31 #import <WebKit/WKContentRuleList.h> 33 32 #import <WebKit/WKContentRuleListStorePrivate.h> 34 #import <WebKit/_WKUserContentFilterPrivate.h>35 33 #import <wtf/RetainPtr.h> 36 #import <wtf/text/StringBuilder.h>37 #import <wtf/text/StringConcatenate.h>38 #import <wtf/text/StringConcatenateNumbers.h>39 34 40 35 class WKContentRuleListStoreTest : public testing::Test { … … 383 378 TestWebKitAPI::Util::run(&receivedAlert); 384 379 } 385 386 @interface TestSchemeHandlerSubresourceShouldBeBlocked : NSObject <WKURLSchemeHandler>387 @end388 @implementation TestSchemeHandlerSubresourceShouldBeBlocked389 - (void)webView:(WKWebView *)webView startURLSchemeTask:(id <WKURLSchemeTask>)task390 {391 EXPECT_TRUE([task.request.URL.path isEqualToString:@"/shouldload"]);392 [task didReceiveResponse:[[[NSURLResponse alloc] initWithURL:task.request.URL MIMEType:@"text/html" expectedContentLength:0 textEncodingName:nil] autorelease]];393 [task didFinish];394 }395 - (void)webView:(WKWebView *)webView stopURLSchemeTask:(id <WKURLSchemeTask>)task396 {397 EXPECT_TRUE(false);398 }399 @end400 401 TEST_F(WKContentRuleListStoreTest, UnsafeMMap)402 {403 NSString *tempDir = [NSTemporaryDirectory() stringByAppendingPathComponent:@"UnsafeMMapTest"];404 WKContentRuleListStore *store = [WKContentRuleListStore storeWithURL:[NSURL fileURLWithPath:tempDir isDirectory:YES]];405 NSString *identifier = @"TestRuleList";406 NSString *fileName = @"ContentRuleList-TestRuleList";407 NSString *filePath = [tempDir stringByAppendingPathComponent:fileName];408 NSString *ruleListSourceString = @"[{\"action\":{\"type\":\"block\"},\"trigger\":{\"url-filter\":\"blockedsubresource\"}}]";409 410 auto runTest = [&] (bool shouldUseCopiedMemory) {411 EXPECT_FALSE([[NSFileManager defaultManager] fileExistsAtPath:filePath]);412 413 __block bool doneCompiling = false;414 __block RetainPtr<WKContentRuleList> ruleList;415 [store compileContentRuleListForIdentifier:identifier encodedContentRuleList:ruleListSourceString completionHandler:^(WKContentRuleList *filter, NSError *error) {416 EXPECT_NOT_NULL(filter);417 EXPECT_NULL(error);418 doneCompiling = true;419 ruleList = filter;420 EXPECT_TRUE([[[[_WKUserContentFilter alloc] _initWithWKContentRuleList:filter] autorelease] usesCopiedMemory] == shouldUseCopiedMemory);421 }];422 TestWebKitAPI::Util::run(&doneCompiling);423 424 EXPECT_TRUE([[NSFileManager defaultManager] fileExistsAtPath:filePath]);425 426 auto handler = adoptNS([TestSchemeHandlerSubresourceShouldBeBlocked new]);427 auto configuration = adoptNS([WKWebViewConfiguration new]);428 [configuration setURLSchemeHandler:handler.get() forURLScheme:@"testmmap"];429 [[configuration userContentController] addContentRuleList:ruleList.get()];430 auto webView = adoptNS([[TestWKWebView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600) configuration:configuration.get()]);431 [webView synchronouslyLoadHTMLString:@"<html>main resource content</html>" baseURL:[NSURL URLWithString:@"testmmap://webkit.org/mainresource"]];432 433 auto loadingShouldSucceed = [&] (NSString *resourcePath, NSString *shouldSucceed) {434 __block bool doneEvaluating = false;435 [webView evaluateJavaScript:[NSString stringWithFormat:@"var caught = false; var xhr = new XMLHttpRequest(); xhr.open('GET', '%@', false); try{ xhr.send() } catch(e) { caught = true; }; caught != %@ ? 'success' : 'failure'", resourcePath, shouldSucceed] completionHandler:^(id result, NSError *error) {436 EXPECT_NULL(error);437 EXPECT_TRUE([@"success" isEqualToString:result]);438 doneEvaluating = true;439 }];440 TestWebKitAPI::Util::run(&doneEvaluating);441 };442 loadingShouldSucceed(@"/shouldload", @"true");443 loadingShouldSucceed(@"/blockedsubresource", @"false");444 445 [[configuration userContentController] removeContentRuleList:ruleList.get()];446 447 __block bool doneLookingUp = false;448 [store lookUpContentRuleListForIdentifier:identifier completionHandler:^(WKContentRuleList *filter, NSError *error) {449 EXPECT_NOT_NULL(filter);450 EXPECT_NULL(error);451 452 doneLookingUp = true;453 454 EXPECT_TRUE([[[[_WKUserContentFilter alloc] _initWithWKContentRuleList:filter] autorelease] usesCopiedMemory] == shouldUseCopiedMemory);455 ruleList = filter;456 }];457 TestWebKitAPI::Util::run(&doneLookingUp);458 459 [[configuration userContentController] addContentRuleList:ruleList.get()];460 loadingShouldSucceed(@"/shouldload", @"true");461 loadingShouldSucceed(@"/blockedsubresource", @"false");462 463 __block bool doneCheckingSource = false;464 [store _getContentRuleListSourceForIdentifier:identifier completionHandler:^(NSString *source) {465 EXPECT_TRUE([source isEqualToString:ruleListSourceString]);466 doneCheckingSource = true;467 }];468 TestWebKitAPI::Util::run(&doneCheckingSource);469 470 __block bool doneRemoving = false;471 [store removeContentRuleListForIdentifier:identifier completionHandler:^(NSError *error) {472 EXPECT_NULL(error);473 doneRemoving = true;474 }];475 TestWebKitAPI::Util::run(&doneRemoving);476 477 EXPECT_FALSE([[NSFileManager defaultManager] fileExistsAtPath:filePath]);478 };479 480 runTest(false);481 [WKContentRuleListStore _registerPathAsUnsafeToMemoryMapForTesting:filePath];482 runTest(true);483 }
Note:
See TracChangeset
for help on using the changeset viewer.