Changeset 238630 in webkit
- Timestamp:
- Nov 28, 2018, 1:09:09 PM (6 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r238625 r238630 1 2018-11-28 Alex Christensen <achristensen@webkit.org> 2 3 Move logCookieInformation bool from NetworkProcess to NetworkSession 4 https://bugs.webkit.org/show_bug.cgi?id=192049 5 6 Reviewed by Chris Dumez. 7 8 Part of an effort to remove globals in the NetworkProcess. 9 10 * NetworkProcess/NetworkConnectionToWebProcess.cpp: 11 (WebKit::NetworkConnectionToWebProcess::cookiesForDOM): 12 (WebKit::NetworkConnectionToWebProcess::setCookiesFromDOM): 13 * NetworkProcess/NetworkProcess.cpp: 14 (WebKit::NetworkProcess::initializeNetworkProcess): 15 * NetworkProcess/NetworkProcess.h: 16 (WebKit::NetworkProcess::shouldLogCookieInformation const): Deleted. 17 * NetworkProcess/NetworkProcessCreationParameters.cpp: 18 (WebKit::NetworkProcessCreationParameters::encode const): 19 (WebKit::NetworkProcessCreationParameters::decode): 20 * NetworkProcess/NetworkProcessCreationParameters.h: 21 * NetworkProcess/NetworkResourceLoader.cpp: 22 (WebKit::NetworkResourceLoader::didFinishLoading): 23 (WebKit::NetworkResourceLoader::sendResultForCacheEntry): 24 (WebKit::NetworkResourceLoader::shouldLogCookieInformation): 25 (WebKit::NetworkResourceLoader::logCookieInformation const): 26 (WebKit::logBlockedCookieInformation): 27 (WebKit::logCookieInformationInternal): 28 (WebKit::NetworkResourceLoader::logCookieInformation): 29 * NetworkProcess/NetworkResourceLoader.h: 30 * NetworkProcess/NetworkSession.h: 31 (WebKit::NetworkSession::logCookieInformation const): 32 * NetworkProcess/NetworkSessionCreationParameters.h: 33 (WebKit::NetworkSessionCreationParameters::encode const): 34 (WebKit::NetworkSessionCreationParameters::decode): 35 * NetworkProcess/cocoa/NetworkDataTaskCocoa.mm: 36 (WebKit::NetworkDataTaskCocoa::NetworkDataTaskCocoa): 37 (WebKit::NetworkDataTaskCocoa::willPerformHTTPRedirection): 38 * NetworkProcess/cocoa/NetworkSessionCocoa.h: 39 * NetworkProcess/cocoa/NetworkSessionCocoa.mm: 40 (WebKit::NetworkSessionCocoa::NetworkSessionCocoa): 41 * UIProcess/Cocoa/WebProcessPoolCocoa.mm: 42 (WebKit::WebProcessPool::platformInitializeNetworkProcess): 43 * UIProcess/WebsiteData/Cocoa/WebsiteDataStoreCocoa.mm: 44 (WebKit::WebsiteDataStore::parameters): 45 1 46 2018-11-28 Ryan Haddad <ryanhaddad@apple.com> 2 47 -
trunk/Source/WebKit/NetworkProcess/NetworkConnectionToWebProcess.cpp
r238283 r238630 44 44 #include "NetworkResourceLoader.h" 45 45 #include "NetworkResourceLoaderMessages.h" 46 #include "NetworkSession.h" 46 47 #include "NetworkSocketStream.h" 47 48 #include "NetworkSocketStreamMessages.h" … … 456 457 std::tie(cookieString, secureCookiesAccessed) = networkStorageSession.cookiesForDOM(firstParty, sameSiteInfo, url, frameID, pageID, includeSecureCookies); 457 458 #if ENABLE(RESOURCE_LOAD_STATISTICS) && !RELEASE_LOG_DISABLED 458 if (NetworkProcess::singleton().shouldLogCookieInformation()) 459 NetworkResourceLoader::logCookieInformation("NetworkConnectionToWebProcess::cookiesForDOM", reinterpret_cast<const void*>(this), networkStorageSession, firstParty, sameSiteInfo, url, emptyString(), frameID, pageID, std::nullopt); 459 if (auto session = SessionTracker::networkSession(sessionID)) { 460 if (session->shouldLogCookieInformation()) 461 NetworkResourceLoader::logCookieInformation("NetworkConnectionToWebProcess::cookiesForDOM", reinterpret_cast<const void*>(this), networkStorageSession, firstParty, sameSiteInfo, url, emptyString(), frameID, pageID, std::nullopt); 462 } 460 463 #endif 461 464 } … … 466 469 networkStorageSession.setCookiesFromDOM(firstParty, sameSiteInfo, url, frameID, pageID, cookieString); 467 470 #if ENABLE(RESOURCE_LOAD_STATISTICS) && !RELEASE_LOG_DISABLED 468 if (NetworkProcess::singleton().shouldLogCookieInformation()) 469 NetworkResourceLoader::logCookieInformation("NetworkConnectionToWebProcess::setCookiesFromDOM", reinterpret_cast<const void*>(this), networkStorageSession, firstParty, sameSiteInfo, url, emptyString(), frameID, pageID, std::nullopt); 471 if (auto session = SessionTracker::networkSession(sessionID)) { 472 if (session->shouldLogCookieInformation()) 473 NetworkResourceLoader::logCookieInformation("NetworkConnectionToWebProcess::setCookiesFromDOM", reinterpret_cast<const void*>(this), networkStorageSession, firstParty, sameSiteInfo, url, emptyString(), frameID, pageID, std::nullopt); 474 } 470 475 #endif 471 476 } -
trunk/Source/WebKit/NetworkProcess/NetworkProcess.cpp
r238283 r238630 322 322 NetworkStorageSession::switchToNewTestingSession(); 323 323 324 #if ENABLE(RESOURCE_LOAD_STATISTICS) && !RELEASE_LOG_DISABLED325 m_logCookieInformation = parameters.logCookieInformation;326 #endif327 328 324 SessionTracker::setSession(PAL::SessionID::defaultSessionID(), NetworkSession::create(NetworkSessionCreationParameters())); 329 325 -
trunk/Source/WebKit/NetworkProcess/NetworkProcess.h
r238283 r238630 177 177 void preconnectTo(const WebCore::URL&, WebCore::StoredCredentialsPolicy); 178 178 179 #if ENABLE(RESOURCE_LOAD_STATISTICS) && !RELEASE_LOG_DISABLED180 bool shouldLogCookieInformation() const { return m_logCookieInformation; }181 #endif182 183 179 void setSessionIsControlledByAutomation(PAL::SessionID, bool); 184 180 bool sessionIsControlledByAutomation(PAL::SessionID) const; … … 363 359 bool m_canHandleHTTPSServerTrustEvaluation; 364 360 Seconds m_loadThrottleLatency; 365 #if ENABLE(RESOURCE_LOAD_STATISTICS) && !RELEASE_LOG_DISABLED366 bool m_logCookieInformation { false };367 #endif368 361 369 362 RefPtr<NetworkCache::Cache> m_cache; -
trunk/Source/WebKit/NetworkProcess/NetworkProcessCreationParameters.cpp
r238283 r238630 93 93 encoder << cookiePersistentStorageFile; 94 94 #endif 95 #if ENABLE(RESOURCE_LOAD_STATISTICS) && !RELEASE_LOG_DISABLED96 encoder << logCookieInformation;97 #endif98 95 #if ENABLE(NETWORK_CAPTURE) 99 96 encoder << recordReplayMode; … … 234 231 #endif 235 232 236 #if ENABLE(RESOURCE_LOAD_STATISTICS) && !RELEASE_LOG_DISABLED237 if (!decoder.decode(result.logCookieInformation))238 return false;239 #endif240 241 233 #if ENABLE(NETWORK_CAPTURE) 242 234 if (!decoder.decode(result.recordReplayMode)) -
trunk/Source/WebKit/NetworkProcess/NetworkProcessCreationParameters.h
r238283 r238630 108 108 #endif 109 109 110 #if ENABLE(RESOURCE_LOAD_STATISTICS) && !RELEASE_LOG_DISABLED111 bool logCookieInformation { false };112 #endif113 114 110 #if ENABLE(NETWORK_CAPTURE) 115 111 String recordReplayMode; -
trunk/Source/WebKit/NetworkProcess/NetworkResourceLoader.cpp
r237895 r238630 551 551 552 552 #if ENABLE(RESOURCE_LOAD_STATISTICS) && !RELEASE_LOG_DISABLED 553 if (shouldLogCookieInformation( ))553 if (shouldLogCookieInformation(sessionID())) 554 554 logCookieInformation(); 555 555 #endif … … 886 886 887 887 #if ENABLE(RESOURCE_LOAD_STATISTICS) && !RELEASE_LOG_DISABLED 888 if (shouldLogCookieInformation( ))888 if (shouldLogCookieInformation(sessionID())) 889 889 logCookieInformation(); 890 890 #endif … … 985 985 986 986 #if ENABLE(RESOURCE_LOAD_STATISTICS) && !RELEASE_LOG_DISABLED 987 bool NetworkResourceLoader::shouldLogCookieInformation() 988 { 989 return NetworkProcess::singleton().shouldLogCookieInformation(); 987 bool NetworkResourceLoader::shouldLogCookieInformation(const PAL::SessionID& sessionID) 988 { 989 if (auto session = SessionTracker::networkSession(sessionID)) 990 return session->shouldLogCookieInformation(); 991 return false; 990 992 } 991 993 … … 1002 1004 void NetworkResourceLoader::logCookieInformation() const 1003 1005 { 1004 ASSERT(shouldLogCookieInformation( ));1006 ASSERT(shouldLogCookieInformation(sessionID())); 1005 1007 1006 1008 auto networkStorageSession = WebCore::NetworkStorageSession::storageSession(sessionID()); … … 1012 1014 static void logBlockedCookieInformation(const String& label, const void* loggedObject, const WebCore::NetworkStorageSession& networkStorageSession, const WebCore::URL& firstParty, const SameSiteInfo& sameSiteInfo, const WebCore::URL& url, const String& referrer, std::optional<uint64_t> frameID, std::optional<uint64_t> pageID, std::optional<uint64_t> identifier) 1013 1015 { 1014 ASSERT(NetworkResourceLoader::shouldLogCookieInformation( ));1016 ASSERT(NetworkResourceLoader::shouldLogCookieInformation(networkStorageSession.sessionID())); 1015 1017 1016 1018 auto escapedURL = escapeForJSON(url.string()); … … 1039 1041 static void logCookieInformationInternal(const String& label, const void* loggedObject, const WebCore::NetworkStorageSession& networkStorageSession, const WebCore::URL& firstParty, const WebCore::SameSiteInfo& sameSiteInfo, const WebCore::URL& url, const String& referrer, std::optional<uint64_t> frameID, std::optional<uint64_t> pageID, std::optional<uint64_t> identifier) 1040 1042 { 1041 ASSERT(NetworkResourceLoader::shouldLogCookieInformation( ));1043 ASSERT(NetworkResourceLoader::shouldLogCookieInformation(networkStorageSession.sessionID())); 1042 1044 1043 1045 Vector<WebCore::Cookie> cookies; … … 1100 1102 void NetworkResourceLoader::logCookieInformation(const String& label, const void* loggedObject, const NetworkStorageSession& networkStorageSession, const URL& firstParty, const SameSiteInfo& sameSiteInfo, const URL& url, const String& referrer, std::optional<uint64_t> frameID, std::optional<uint64_t> pageID, std::optional<uint64_t> identifier) 1101 1103 { 1102 ASSERT(shouldLogCookieInformation( ));1104 ASSERT(shouldLogCookieInformation(networkStorageSession.sessionID())); 1103 1105 1104 1106 if (networkStorageSession.shouldBlockCookies(firstParty, url, frameID, pageID)) -
trunk/Source/WebKit/NetworkProcess/NetworkResourceLoader.h
r237895 r238630 113 113 114 114 #if ENABLE(RESOURCE_LOAD_STATISTICS) && !RELEASE_LOG_DISABLED 115 static bool shouldLogCookieInformation( );115 static bool shouldLogCookieInformation(const PAL::SessionID&); 116 116 static void logCookieInformation(const String& label, const void* loggedObject, const WebCore::NetworkStorageSession&, const WebCore::URL& firstParty, const WebCore::SameSiteInfo&, const WebCore::URL&, const String& referrer, std::optional<uint64_t> frameID, std::optional<uint64_t> pageID, std::optional<uint64_t> identifier); 117 117 #endif -
trunk/Source/WebKit/NetworkProcess/NetworkSession.h
r234990 r238630 48 48 virtual void invalidateAndCancel(); 49 49 virtual void clearCredentials() { }; 50 virtual bool shouldLogCookieInformation() const { return false; } 50 51 51 52 PAL::SessionID sessionID() const { return m_sessionID; } -
trunk/Source/WebKit/NetworkProcess/NetworkSessionCreationParameters.h
r238051 r238630 56 56 String sourceApplicationBundleIdentifier; 57 57 String sourceApplicationSecondaryIdentifier; 58 bool shouldLogCookieInformation { false }; 58 59 #endif 59 60 #if USE(CURL) … … 71 72 encoder << sourceApplicationBundleIdentifier; 72 73 encoder << sourceApplicationSecondaryIdentifier; 74 encoder << shouldLogCookieInformation; 73 75 #endif 74 76 #if USE(CURL) … … 107 109 if (!sourceApplicationSecondaryIdentifier) 108 110 return std::nullopt; 111 112 std::optional<bool> shouldLogCookieInformation; 113 decoder >> shouldLogCookieInformation; 114 if (!shouldLogCookieInformation) 115 return std::nullopt; 109 116 #endif 110 117 … … 124 131 , WTFMove(*sourceApplicationBundleIdentifier) 125 132 , WTFMove(*sourceApplicationSecondaryIdentifier) 133 , WTFMove(*shouldLogCookieInformation) 126 134 #endif 127 135 #if USE(CURL) -
trunk/Source/WebKit/NetworkProcess/cocoa/NetworkDataTaskCocoa.mm
r238615 r238630 230 230 if (shouldBlockCookies) { 231 231 #if !RELEASE_LOG_DISABLED 232 if ( NetworkProcess::singleton().shouldLogCookieInformation())232 if (m_session->shouldLogCookieInformation()) 233 233 RELEASE_LOG_IF(isAlwaysOnLoggingAllowed(), Network, "%p - NetworkDataTaskCocoa::logCookieInformation: pageID = %llu, frameID = %llu, taskID = %lu: Blocking cookies for URL %s", this, pageID, frameID, (unsigned long)[m_task taskIdentifier], nsRequest.URL.absoluteString.UTF8String); 234 234 #else … … 347 347 shouldBlockCookies = m_session->networkStorageSession().shouldBlockCookies(request, m_frameID, m_pageID); 348 348 #if !RELEASE_LOG_DISABLED 349 if ( NetworkProcess::singleton().shouldLogCookieInformation())349 if (m_session->shouldLogCookieInformation()) 350 350 RELEASE_LOG_IF(isAlwaysOnLoggingAllowed(), Network, "%p - NetworkDataTaskCocoa::willPerformHTTPRedirection::logCookieInformation: pageID = %llu, frameID = %llu, taskID = %lu: %s cookies for redirect URL %s", this, m_pageID, m_frameID, (unsigned long)[m_task taskIdentifier], (shouldBlockCookies ? "Blocking" : "Not blocking"), request.url().string().utf8().data()); 351 351 #else … … 363 363 if (!shouldBlockCookies) { 364 364 #if !RELEASE_LOG_DISABLED 365 if ( NetworkProcess::singleton().shouldLogCookieInformation())365 if (m_session->shouldLogCookieInformation()) 366 366 RELEASE_LOG_IF(isAlwaysOnLoggingAllowed(), Network, "%p - NetworkDataTaskCocoa::willPerformHTTPRedirection::logCookieInformation: pageID = %llu, frameID = %llu, taskID = %lu: Not partitioning cookies for redirect URL %s", this, m_pageID, m_frameID, (unsigned long)[m_task taskIdentifier], request.url().string().utf8().data()); 367 367 #else -
trunk/Source/WebKit/NetworkProcess/cocoa/NetworkSessionCocoa.h
r237266 r238630 71 71 void invalidateAndCancel() override; 72 72 void clearCredentials() override; 73 bool shouldLogCookieInformation() const override { return m_shouldLogCookieInformation; } 73 74 74 75 HashMap<NetworkDataTaskCocoa::TaskIdentifier, NetworkDataTaskCocoa*> m_dataTaskMapWithCredentials; … … 83 84 String m_boundInterfaceIdentifier; 84 85 RetainPtr<CFDictionaryRef> m_proxyConfiguration; 86 bool m_shouldLogCookieInformation { false }; 85 87 86 88 String m_sourceApplicationBundleIdentifier; -
trunk/Source/WebKit/NetworkProcess/cocoa/NetworkSessionCocoa.mm
r237266 r238630 645 645 , m_boundInterfaceIdentifier(parameters.boundInterfaceIdentifier) 646 646 , m_proxyConfiguration(parameters.proxyConfiguration) 647 , m_shouldLogCookieInformation(parameters.shouldLogCookieInformation) 647 648 { 648 649 ASSERT(hasProcessPrivilege(ProcessPrivilege::CanAccessRawCookies)); -
trunk/Source/WebKit/UIProcess/Cocoa/WebProcessPoolCocoa.mm
r237774 r238630 295 295 parameters.suppressesConnectionTerminationOnSystemChange = m_configuration->suppressesConnectionTerminationOnSystemChange(); 296 296 297 #if ENABLE(RESOURCE_LOAD_STATISTICS) && !RELEASE_LOG_DISABLED298 parameters.logCookieInformation = [defaults boolForKey:WebKitLogCookieInformationDefaultsKey];299 #endif300 301 297 #if ENABLE(NETWORK_CAPTURE) 302 298 parameters.recordReplayMode = [defaults stringForKey:WebKitRecordReplayModeDefaultsKey]; -
trunk/Source/WebKit/UIProcess/WebsiteData/Cocoa/WebsiteDataStoreCocoa.mm
r237266 r238630 58 58 resolveDirectoriesIfNecessary(); 59 59 60 #if ENABLE(RESOURCE_LOAD_STATISTICS) && !RELEASE_LOG_DISABLED 61 static NSString * const WebKitLogCookieInformationDefaultsKey = @"WebKitLogCookieInformation"; 62 bool shouldLogCookieInformation = [[NSUserDefaults standardUserDefaults] boolForKey:WebKitLogCookieInformationDefaultsKey]; 63 #else 64 bool shouldLogCookieInformation = false; 65 #endif 66 60 67 WebsiteDataStoreParameters parameters; 61 68 parameters.networkSessionParameters = { … … 66 73 m_configuration.sourceApplicationBundleIdentifier, 67 74 m_configuration.sourceApplicationSecondaryIdentifier, 75 shouldLogCookieInformation, 68 76 }; 69 77
Note:
See TracChangeset
for help on using the changeset viewer.