Bug 225171 - [Cocoa] Always extend access to local process HTTP/3 cache directory
Summary: [Cocoa] Always extend access to local process HTTP/3 cache directory
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKit Misc. (show other bugs)
Version: WebKit Nightly Build
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Brent Fulgham
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2021-04-28 16:26 PDT by Brent Fulgham
Modified: 2021-04-30 16:33 PDT (History)
7 users (show)

See Also:


Attachments
Patch (2.60 KB, patch)
2021-04-28 16:32 PDT, Brent Fulgham
no flags Details | Formatted Diff | Diff
Patch (3.17 KB, patch)
2021-04-29 16:18 PDT, Brent Fulgham
no flags Details | Formatted Diff | Diff
Patch (4.69 KB, patch)
2021-04-30 14:22 PDT, Brent Fulgham
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Brent Fulgham 2021-04-28 16:26:26 PDT
I've seen a number of sandbox violations triggered by the UIProcess not extending access to the cache path used for HTTP/3 negotiations. This seems to happen when the OS overrides the user Safari user setting, or toggles it externally without restarting the process.

Rather than trigger failures, lets just extend the path for all users (even if HTTP/3 is off), since it will eventually be on for everyone, and it doesn't expand the sandbox anywhere interesting.
Comment 1 Brent Fulgham 2021-04-28 16:28:07 PDT
<rdar://problem/76287224>
Comment 2 Brent Fulgham 2021-04-28 16:32:57 PDT
Created attachment 427306 [details]
Patch
Comment 3 Alex Christensen 2021-04-29 15:13:58 PDT
At the same time we should probably make defaultAlternativeServicesDirectory return the same directory as something else, like defaultNetworkCacheDirectory.  Otherwise, we will have a startup performance regression from additional directory operations.
Comment 4 Brent Fulgham 2021-04-29 16:18:09 PDT
Created attachment 427386 [details]
Patch
Comment 5 Alex Christensen 2021-04-29 17:19:50 PDT
Comment on attachment 427386 [details]
Patch

I think we should just return defaultNetworkCacheDirectory() instead of this.
Comment 6 Antti Koivisto 2021-04-30 06:30:48 PDT
I don't think we should have anything under NetworkCache directory that is not under control of the NetworkCache code. NetworkCache has habit of wiping out stuff that it doesn't recognize so it is pretty risky.
Comment 7 EWS 2021-04-30 08:15:47 PDT
Committed r276838 (237189@main): <https://commits.webkit.org/237189@main>

All reviewed patches have been landed. Closing bug and clearing flags on attachment 427306 [details].
Comment 8 Brent Fulgham 2021-04-30 09:36:37 PDT
Wow -- how did this get landed?
Comment 9 Alex Christensen 2021-04-30 09:41:35 PDT
I r+ cq+ your original patch.
Comment 10 Brent Fulgham 2021-04-30 09:52:24 PDT
(In reply to Alex Christensen from comment #9)
> I r+ cq+ your original patch.

Oh! Good. I was terrified I had somehow clobbered your and Antti's review stuff. Thanks.
Comment 11 Aakash Jain 2021-04-30 11:27:05 PDT
(In reply to EWS from comment #7)
> Committed r276838 (237189@main): <https://commits.webkit.org/237189@main>
This broke api test on iOS: TestWebKitAPI.WebKit.AlternativeServicesDefaultDirectoryCreation

History: https://results.webkit.org/?suite=api-tests&test=TestWebKitAPI.WebKit.AlternativeServicesDefaultDirectoryCreation
Comment 12 Ryan Haddad 2021-04-30 11:28:22 PDT
(In reply to Aakash Jain from comment #11)
> (In reply to EWS from comment #7)
> > Committed r276838 (237189@main): <https://commits.webkit.org/237189@main>
> This broke api test on iOS:
> TestWebKitAPI.WebKit.AlternativeServicesDefaultDirectoryCreation
> 
> History:
> https://results.webkit.org/?suite=api-tests&test=TestWebKitAPI.WebKit.
> AlternativeServicesDefaultDirectoryCreation
I just filed https://bugs.webkit.org/show_bug.cgi?id=225239 about this
Comment 13 Ryan Haddad 2021-04-30 12:51:47 PDT
Reverted r276838 for reason:

Caused TestWebKitAPI.WebKit.AlternativeServicesDefaultDirectoryCreation to fail

Committed r276850 (237201@main): <https://commits.webkit.org/237201@main>
Comment 14 Brent Fulgham 2021-04-30 14:22:16 PDT
Created attachment 427446 [details]
Patch
Comment 15 EWS 2021-04-30 16:33:16 PDT
Committed r276862 (237210@main): <https://commits.webkit.org/237210@main>

All reviewed patches have been landed. Closing bug and clearing flags on attachment 427446 [details].