Title: [256740] trunk/Source/WebKit
Revision
256740
Author
[email protected]
Date
2020-02-17 10:18:40 -0800 (Mon, 17 Feb 2020)

Log Message

[iOS] Add telemetry with backtrace for specific rules
https://bugs.webkit.org/show_bug.cgi?id=207494

Reviewed by Brent Fulgham.

For specific sandbox mach lookup rules in the WebContent process, add telemetry with backtrace.

No new tests, no behavior change.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (256739 => 256740)


--- trunk/Source/WebKit/ChangeLog	2020-02-17 18:02:00 UTC (rev 256739)
+++ trunk/Source/WebKit/ChangeLog	2020-02-17 18:18:40 UTC (rev 256740)
@@ -1,3 +1,16 @@
+2020-02-17  Per Arne Vollan  <[email protected]>
+
+        [iOS] Add telemetry with backtrace for specific rules
+        https://bugs.webkit.org/show_bug.cgi?id=207494
+
+        Reviewed by Brent Fulgham.
+
+        For specific sandbox mach lookup rules in the WebContent process, add telemetry with backtrace.
+
+        No new tests, no behavior change.
+
+        * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
+
 2020-02-17  Antti Koivisto  <[email protected]>
 
         [macOS] Add trace points for layer flush runloop observer

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


--- trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2020-02-17 18:02:00 UTC (rev 256739)
+++ trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2020-02-17 18:18:40 UTC (rev 256740)
@@ -115,7 +115,7 @@
         (allow file-read* asset-access-filter)
         (if (memq 'with-media-playback options)
             (play-media asset-access-filter))
-        (allow mach-lookup (with report) (with telemetry)
+        (allow mach-lookup (with telemetry-backtrace) (with telemetry)
                (global-name "com.apple.mobileassetd" "com.apple.mobileassetd.v2"))
         (mobile-preferences-read "com.apple.MobileAsset")))
 
@@ -353,7 +353,7 @@
         "com.apple.mt"
         "com.apple.preferences.sounds")
 
-    (allow mach-lookup (with report) (with telemetry)
+    (allow mach-lookup (with telemetry-backtrace) (with telemetry)
         (global-name "com.apple.frontboard.systemappservices")                 ; -[UIViewServiceInterface _createProcessAssertion] -> SBSProcessIDForDisplayIdentifier()
     )
 
@@ -544,7 +544,7 @@
 (allow ipc-posix-shm-read*
        (ipc-posix-name-prefix "apple.cfprefs."))
  
-(allow mach-lookup (with report) (with telemetry)
+(allow mach-lookup (with telemetry-backtrace) (with telemetry)
     (global-name "com.apple.lsd.open")
     (global-name "com.apple.lsd.mapdb"))
 
@@ -669,7 +669,7 @@
 ;; <rdar://problem/7344719&26323449> LaunchServices app icons
 (allow file-read*
     (well-known-system-group-container-subpath "/systemgroup.com.apple.lsd.iconscache"))
-(allow mach-lookup (with report) (with telemetry)
+(allow mach-lookup (with telemetry-backtrace) (with telemetry)
     (xpc-service-name "com.apple.iconservices")
     (global-name "com.apple.iconservices"))
 
@@ -828,7 +828,7 @@
 (allow mach-lookup
        (global-name "com.apple.webinspector"))
 
-(allow mach-lookup (with report) (with telemetry)
+(allow mach-lookup (with telemetry-backtrace) (with telemetry)
     (global-name "com.apple.PowerManagement.control"))
 
 (deny file-write-create (vnode-type SYMLINK))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to