WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
176943
Storage Access API: UI process should update network process about granted access
https://bugs.webkit.org/show_bug.cgi?id=176943
Summary
Storage Access API: UI process should update network process about granted ac...
John Wilander
Reported
2017-09-14 13:03:29 PDT
The UI process needs to tell the network process asynchronously about newly granted storage access. When done, the network process needs to reply so that the UI process can notify web processes.
Attachments
Patch
(57.20 KB, patch)
2017-11-03 13:16 PDT
,
John Wilander
no flags
Details
Formatted Diff
Diff
Patch
(59.29 KB, patch)
2017-11-03 14:00 PDT
,
John Wilander
no flags
Details
Formatted Diff
Diff
Archive of layout-test-results from ews104 for mac-elcapitan-wk2
(1.25 MB, application/zip)
2017-11-03 14:56 PDT
,
Build Bot
no flags
Details
Patch
(59.33 KB, patch)
2017-11-03 15:12 PDT
,
John Wilander
no flags
Details
Formatted Diff
Diff
Archive of layout-test-results from ews121 for ios-simulator-wk2
(1.11 MB, application/zip)
2017-11-03 17:49 PDT
,
Build Bot
no flags
Details
Patch
(77.35 KB, patch)
2017-11-16 16:22 PST
,
John Wilander
no flags
Details
Formatted Diff
Diff
Patch for landing
(77.43 KB, patch)
2017-11-17 16:28 PST
,
John Wilander
no flags
Details
Formatted Diff
Diff
Show Obsolete
(6)
View All
Add attachment
proposed patch, testcase, etc.
Radar WebKit Bug Importer
Comment 1
2017-09-14 13:04:19 PDT
<
rdar://problem/34440612
>
John Wilander
Comment 2
2017-11-03 13:16:10 PDT
Created
attachment 325942
[details]
Patch
John Wilander
Comment 3
2017-11-03 14:00:03 PDT
Created
attachment 325958
[details]
Patch
Build Bot
Comment 4
2017-11-03 14:56:36 PDT
Comment on
attachment 325958
[details]
Patch
Attachment 325958
[details]
did not pass mac-wk2-ews (mac-wk2): Output:
http://webkit-queues.webkit.org/results/5095424
New failing tests: http/tests/storageAccess/request-and-grant-storage-access-cross-origin-sandboxed-iframe-from-prevalent-domain-with-non-recent-user-interaction.html
Build Bot
Comment 5
2017-11-03 14:56:37 PDT
Created
attachment 325967
[details]
Archive of layout-test-results from ews104 for mac-elcapitan-wk2 The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. Bot: ews104 Port: mac-elcapitan-wk2 Platform: Mac OS X 10.11.6
John Wilander
Comment 6
2017-11-03 15:12:57 PDT
Created
attachment 325970
[details]
Patch
Alex Christensen
Comment 7
2017-11-03 15:35:50 PDT
Comment on
attachment 325970
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=325970&action=review
> Source/WebKit/NetworkProcess/NetworkProcessCreationParameters.h:101 > + bool storageAccessAPIEnabled;
We should consider moving these to WebsiteDataStoreParameters
> Source/WebKit/UIProcess/WebResourceLoadStatisticsStore.cpp:354 > + statistics.mostRecentUserInteractionTime = WallTime::now() - Seconds::fromHours(25);
25 hours should be given a name.
> Source/WebKit/UIProcess/WebsiteData/WebsiteDataStore.cpp:1343 > + }, [this] (const String& resourceDomain, const String& firstPartyDomain, bool value, WTF::Function<void(bool wasGranted)>&& callback) {
These should probably all have protectedThis = makeRef(*this). Also, consider using CompletionHandler instead of Function to ensure it is called only once.
Build Bot
Comment 8
2017-11-03 17:49:43 PDT
Comment on
attachment 325970
[details]
Patch
Attachment 325970
[details]
did not pass ios-sim-ews (ios-simulator-wk2): Output:
http://webkit-queues.webkit.org/results/5098429
New failing tests: http/tests/resourceLoadStatistics/remove-partitioning-from-redirect.html http/tests/resourceLoadStatistics/add-partitioning-to-redirect.html
Build Bot
Comment 9
2017-11-03 17:49:44 PDT
Created
attachment 325995
[details]
Archive of layout-test-results from ews121 for ios-simulator-wk2 The attached test failures were seen while running run-webkit-tests on the ios-sim-ews. Bot: ews121 Port: ios-simulator-wk2 Platform: Mac OS X 10.12.6
John Wilander
Comment 10
2017-11-16 16:22:00 PST
Created
attachment 327126
[details]
Patch
John Wilander
Comment 11
2017-11-16 16:22:41 PST
I asked if Alex could have a look at the additional changes I did for testing.
John Wilander
Comment 12
2017-11-16 16:23:08 PST
The test failure on iOS Simulator should be fixed now too.
Alex Christensen
Comment 13
2017-11-17 16:10:39 PST
Comment on
attachment 327126
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=327126&action=review
> Source/WebCore/platform/network/NetworkStorageSession.h:161 > + HashMap<String, HashSet<String>> m_storageAccess;
I would give this a better name like m_domainsGrantedStorageAccess. It took a bit of reading to realize that the key is the top domain and the value is the set of domains that have been granted storage access on that domain.
> Source/WebCore/platform/network/cf/NetworkStorageSessionCFNet.cpp:301 > + auto accessEntry = m_storageAccess.add(firstPartyDomain, HashSet<String>()); > + accessEntry.iterator->value.add(resourceDomain);
HashSet has a constructor that takes a std::initializer_list. Using it could make this one line.
> Source/WebKit/NetworkProcess/NetworkProcess.cpp:339 > + parentProcessConnection()->send(Messages::NetworkProcessProxy::StorageAccessRequestResult(true, contextId), 0); > + } else > + parentProcessConnection()->send(Messages::NetworkProcessProxy::StorageAccessRequestResult(false, contextId), 0);
Should the value be true or shouldGrantStorage? The else should have an ASSERT_NOT_REACHED in it. We could make one call to send to reduce duplication. Just make a local bool.
> Source/WebKit/UIProcess/WebCookieManagerProxy.cpp:292 > +#if PLATFORM(COCOA) > + processPool()->sendToNetworkingProcess(Messages::NetworkProcess::SetStorageAccessAPIEnabled(enabled));
I'm not sure there's anything cocoa-specific about the storage access API enabled bool.
> Source/WebKit/UIProcess/WebResourceLoadStatisticsStore.h:142 > + WebResourceLoadStatisticsStore(const String&, Function<void(const String&)>&& testingCallback, UpdatePrevalentDomainsToPartitionOrBlockCookiesHandler&&, UpdateStorageAccessForPrevalentDomainsHandler&&, RemovePrevalentDomainsHandler&&);
There's a growing number of these callback functions. Maybe a better design would be to pass one client. Probably not necessary for this patch, though.
John Wilander
Comment 14
2017-11-17 16:28:45 PST
Created
attachment 327265
[details]
Patch for landing
John Wilander
Comment 15
2017-11-17 16:30:19 PST
Thanks for the review, Alex! I fixed everything but the Cocoa check (storage access deals with partitioned cookies which are Cocoa-only as far as I know) and the redesign of the callback parameters.
WebKit Commit Bot
Comment 16
2017-11-17 17:27:28 PST
Comment on
attachment 327265
[details]
Patch for landing Clearing flags on attachment: 327265 Committed
r225006
: <
https://trac.webkit.org/changeset/225006
>
WebKit Commit Bot
Comment 17
2017-11-17 17:27:29 PST
All reviewed patches have been landed. Closing bug.
WebKit Commit Bot
Comment 18
2017-11-17 17:55:34 PST
Re-opened since this is blocked by
bug 179857
John Wilander
Comment 19
2017-11-18 18:06:44 PST
Chris Dumez solved the issue in
https://trac.webkit.org/changeset/225010/webkit
. Thanks, Chris!
Chris Dumez
Comment 20
2018-06-01 13:07:11 PDT
Comment on
attachment 327265
[details]
Patch for landing View in context:
https://bugs.webkit.org/attachment.cgi?id=327265&action=review
> Source/WebKit/UIProcess/WebsiteData/WebsiteDataStore.cpp:1344 > + }, [this, protectedThis = makeRef(*this)] (const String& resourceDomain, const String& firstPartyDomain, bool value, WTF::Function<void(bool wasGranted)>&& callback) {
This is not OK and causes massive leaks. WebsiteDataStore refs m_resourceLoadStatistics and m_resourceLoadStatistics refs the data store via those callbacks. -> ref cycle.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug