Title: [258496] trunk/Source/WebKit
Revision
258496
Author
[email protected]
Date
2020-03-16 08:26:05 -0700 (Mon, 16 Mar 2020)

Log Message

[iOS] Add telemetry for message filtering
https://bugs.webkit.org/show_bug.cgi?id=208925
<rdar://problem/58885485>

Reviewed by Darin Adler.

On iOS, add telemetry for message filtering in the WebContent process' sandbox.

No new tests, no behavior change.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (258495 => 258496)


--- trunk/Source/WebKit/ChangeLog	2020-03-16 15:19:53 UTC (rev 258495)
+++ trunk/Source/WebKit/ChangeLog	2020-03-16 15:26:05 UTC (rev 258496)
@@ -1,5 +1,19 @@
 2020-03-16  Per Arne Vollan  <[email protected]>
 
+        [iOS] Add telemetry for message filtering
+        https://bugs.webkit.org/show_bug.cgi?id=208925
+        <rdar://problem/58885485>
+
+        Reviewed by Darin Adler.
+
+        On iOS, add telemetry for message filtering in the WebContent process' sandbox.
+
+        No new tests, no behavior change.
+
+        * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
+
+2020-03-16  Per Arne Vollan  <[email protected]>
+
         [Cocoa] Limit set of classes that can be decoded when a preference has changed
         https://bugs.webkit.org/show_bug.cgi?id=208012
 

Modified: trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb (258495 => 258496)


--- trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2020-03-16 15:19:53 UTC (rev 258495)
+++ trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2020-03-16 15:26:05 UTC (rev 258496)
@@ -1061,3 +1061,20 @@
         (syscall-number SYS_shared_region_map_and_slide_2_np) ;; <rdar://problem/60294880>
     )
 )
+
+(when (defined? 'mach-bootstrap)
+    (allow mach-bootstrap
+        (apply-message-filter
+            (allow xpc-message-send (with report) (with telemetry))
+            (allow xpc-message-send (message-number 206))
+            (allow xpc-message-send (message-number 207))
+            (allow xpc-message-send (message-number 711))
+            (allow xpc-message-send (message-number 712))
+            (allow xpc-message-send (message-number 718))
+            (allow xpc-message-send (message-number 800))
+            (allow xpc-message-send (message-number 803))
+            (allow xpc-message-send (message-number 804))
+            (allow xpc-message-send (message-number 805))
+        )
+    )
+)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to