Title: [264707] branches/safari-610.1.23-branch/Source/WebKit
Revision
264707
Author
alanc...@apple.com
Date
2020-07-22 11:00:21 -0700 (Wed, 22 Jul 2020)

Log Message

Cherry-pick r264678. rdar://problem/65944685

    [macOS] Layout tests exiting early with crashes
    https://bugs.webkit.org/show_bug.cgi?id=214612
    <rdar://problem/65897905>

    Reviewed by Brent Fulgham.

    This is caused by the WebContent process making a syscall not allowed by the sandbox.

    * WebProcess/com.apple.WebProcess.sb.in:

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@264678 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-610.1.23-branch/Source/WebKit/ChangeLog (264706 => 264707)


--- branches/safari-610.1.23-branch/Source/WebKit/ChangeLog	2020-07-22 18:00:18 UTC (rev 264706)
+++ branches/safari-610.1.23-branch/Source/WebKit/ChangeLog	2020-07-22 18:00:21 UTC (rev 264707)
@@ -1,5 +1,34 @@
 2020-07-22  Alan Coon  <alanc...@apple.com>
 
+        Cherry-pick r264678. rdar://problem/65944685
+
+    [macOS] Layout tests exiting early with crashes
+    https://bugs.webkit.org/show_bug.cgi?id=214612
+    <rdar://problem/65897905>
+    
+    Reviewed by Brent Fulgham.
+    
+    This is caused by the WebContent process making a syscall not allowed by the sandbox.
+    
+    * WebProcess/com.apple.WebProcess.sb.in:
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@264678 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2020-07-21  Per Arne Vollan  <pvol...@apple.com>
+
+            [macOS] Layout tests exiting early with crashes
+            https://bugs.webkit.org/show_bug.cgi?id=214612
+            <rdar://problem/65897905>
+
+            Reviewed by Brent Fulgham.
+
+            This is caused by the WebContent process making a syscall not allowed by the sandbox.
+
+            * WebProcess/com.apple.WebProcess.sb.in:
+
+2020-07-22  Alan Coon  <alanc...@apple.com>
+
         Cherry-pick r264659. rdar://problem/65944694
 
     [Cocoa] Adopt VTRegisterSupplementalVideoDecoderIfAvailable

Modified: branches/safari-610.1.23-branch/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in (264706 => 264707)


--- branches/safari-610.1.23-branch/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2020-07-22 18:00:18 UTC (rev 264706)
+++ branches/safari-610.1.23-branch/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2020-07-22 18:00:21 UTC (rev 264707)
@@ -1159,8 +1159,9 @@
 
     (if (equal? (param "CPU") "arm64")
         (allow syscall-unix
+            (syscall-number SYS_fileport_makefd)
+            (syscall-number SYS_guarded_open_dprotected_np) ;; <rdar://problem/65897905>
             (syscall-number SYS_mremap_encrypted)
-            (syscall-number SYS_fileport_makefd)
         )
     )
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to