Title: [277208] trunk/Source/WebKit
Revision
277208
Author
bfulg...@apple.com
Date
2021-05-07 15:55:19 -0700 (Fri, 07 May 2021)

Log Message

[iOS] [GPU] Silence warning about com.apple.fontservicesd
https://bugs.webkit.org/show_bug.cgi?id=225520
<rdar://problem/77536616>

Reviewed by Per Arne Vollan.

We silenced the warnings about blocked connections to 'com.apple.fontservicesd' in the WebContent process in Bug 220320. We should
have done the same to the GPU Process to avoid spurious reports and telemetry.

* Resources/SandboxProfiles/ios/com.apple.WebKit.GPU.sb:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (277207 => 277208)


--- trunk/Source/WebKit/ChangeLog	2021-05-07 22:33:16 UTC (rev 277207)
+++ trunk/Source/WebKit/ChangeLog	2021-05-07 22:55:19 UTC (rev 277208)
@@ -1,3 +1,16 @@
+2021-05-07  Brent Fulgham  <bfulg...@apple.com>
+
+        [iOS] [GPU] Silence warning about com.apple.fontservicesd
+        https://bugs.webkit.org/show_bug.cgi?id=225520
+        <rdar://problem/77536616>
+
+        Reviewed by Per Arne Vollan.
+
+        We silenced the warnings about blocked connections to 'com.apple.fontservicesd' in the WebContent process in Bug 220320. We should
+        have done the same to the GPU Process to avoid spurious reports and telemetry.
+
+        * Resources/SandboxProfiles/ios/com.apple.WebKit.GPU.sb:
+
 2021-05-07  Commit Queue  <commit-qu...@webkit.org>
 
         Unreviewed, reverting r277201.

Modified: trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.GPU.sb (277207 => 277208)


--- trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.GPU.sb	2021-05-07 22:33:16 UTC (rev 277207)
+++ trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.GPU.sb	2021-05-07 22:55:19 UTC (rev 277208)
@@ -905,6 +905,11 @@
 (allow mach-lookup (with telemetry-backtrace)
     (global-name "com.apple.analyticsd"))
 
+;; Silence reports about things we do not want access to:
+(deny mach-lookup (with no-report)
+    (global-name "com.apple.fontservicesd")
+)
+
 (deny file-write-create (vnode-type SYMLINK))
 (deny file-read-xattr file-write-xattr (xattr-regex #"^com\.apple\.security\.private\."))
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to