Title: [274247] trunk/Source/WebKit
Revision
274247
Author
pvol...@apple.com
Date
2021-03-10 16:00:25 -0800 (Wed, 10 Mar 2021)

Log Message

[iOS] Adjust telemetry rule
https://bugs.webkit.org/show_bug.cgi?id=223045

Reviewed by Geoffrey Garen.

Adjust socket-option related telemetry rule on iOS.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (274246 => 274247)


--- trunk/Source/WebKit/ChangeLog	2021-03-10 23:42:46 UTC (rev 274246)
+++ trunk/Source/WebKit/ChangeLog	2021-03-11 00:00:25 UTC (rev 274247)
@@ -1,3 +1,14 @@
+2021-03-10  Per Arne Vollan  <pvol...@apple.com>
+
+        [iOS] Adjust telemetry rule
+        https://bugs.webkit.org/show_bug.cgi?id=223045
+
+        Reviewed by Geoffrey Garen.
+
+        Adjust socket-option related telemetry rule on iOS.
+
+        * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
+
 2021-03-10  Per Arne  <pvol...@apple.com>
 
         [iOS] Add additional telemetry to WebContent sandbox 

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


--- trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2021-03-10 23:42:46 UTC (rev 274246)
+++ trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2021-03-11 00:00:25 UTC (rev 274247)
@@ -1368,8 +1368,9 @@
     ;; getsockopt
     (allow socket-option-get (with telemetry))
     (allow socket-option-get
-        (socket-option-level SOL_SOCKET)
-            (socket-option-name SO_ERROR)) ;; libwebrtc; physical_socket_server.cc, ProcessEvents.  Called with fd=-1, so it fails.  Not technically needed, but the code needs changing
+        (require-all
+            (socket-option-level SOL_SOCKET)
+            (socket-option-name SO_ERROR))) ;; libwebrtc; physical_socket_server.cc, ProcessEvents.  Called with fd=-1, so it fails.  Not technically needed, but the code needs changing
 )
 
 (when (defined? 'socket-option-set)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to