Title: [261977] trunk/Source/WebKit
Revision
261977
Author
[email protected]
Date
2020-05-20 17:52:35 -0700 (Wed, 20 May 2020)

Log Message

[iOS] Fix message filter sandbox violation
https://bugs.webkit.org/show_bug.cgi?id=212100
<rdar://problem/63407155>

Reviewed by Brent Fulgham.

A message needs to be added to the message filter in the WebContent sandbox on iOS.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (261976 => 261977)


--- trunk/Source/WebKit/ChangeLog	2020-05-21 00:35:02 UTC (rev 261976)
+++ trunk/Source/WebKit/ChangeLog	2020-05-21 00:52:35 UTC (rev 261977)
@@ -1,3 +1,15 @@
+2020-05-20  Per Arne Vollan  <[email protected]>
+
+        [iOS] Fix message filter sandbox violation
+        https://bugs.webkit.org/show_bug.cgi?id=212100
+        <rdar://problem/63407155>
+
+        Reviewed by Brent Fulgham.
+
+        A message needs to be added to the message filter in the WebContent sandbox on iOS.
+
+        * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
+
 2020-05-20  Sam Weinig  <[email protected]>
 
         Replace Color::getHSL() with sRGBToHSL to ensure it at least gives somewhat sensible results for ExtendedColors and reduce code duplication

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


--- trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2020-05-21 00:35:02 UTC (rev 261976)
+++ trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2020-05-21 00:52:35 UTC (rev 261977)
@@ -1276,6 +1276,7 @@
                 io_connect_async_method
                 io_connect_map_memory_into_task
                 io_connect_method
+                (when (defined? 'io_connect_set_notification_port) io_connect_set_notification_port)
                 io_connect_set_notification_port_64
                 io_iterator_next
                 io_registry_entry_from_path
@@ -1315,6 +1316,8 @@
                 thread_resume
                 thread_set_exception_ports
                 thread_suspend
+                (when (defined? 'vm_copy) vm_copy)
+                (when (defined? 'vm_remap_external) vm_remap_external)
                 )
             )
         )
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to