Title: [274536] branches/safari-611.1.21.1-branch/Source/WebKit
Revision
274536
Author
alanc...@apple.com
Date
2021-03-16 17:03:56 -0700 (Tue, 16 Mar 2021)

Log Message

Cherry-pick r274504. rdar://problem/75482851

    The WebContent process crashes when launching Safari
    https://bugs.webkit.org/show_bug.cgi?id=223264
    <rdar://75482851>

    Reviewed by Brent Fulgham.

    The WebContent process crashes when launching Safari on older OSes, because of unavailable sandbox features.

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

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

Modified Paths

Diff

Modified: branches/safari-611.1.21.1-branch/Source/WebKit/ChangeLog (274535 => 274536)


--- branches/safari-611.1.21.1-branch/Source/WebKit/ChangeLog	2021-03-16 23:54:01 UTC (rev 274535)
+++ branches/safari-611.1.21.1-branch/Source/WebKit/ChangeLog	2021-03-17 00:03:56 UTC (rev 274536)
@@ -1,3 +1,31 @@
+2021-03-16  Alan Coon  <alanc...@apple.com>
+
+        Cherry-pick r274504. rdar://problem/75482851
+
+    The WebContent process crashes when launching Safari
+    https://bugs.webkit.org/show_bug.cgi?id=223264
+    <rdar://75482851>
+    
+    Reviewed by Brent Fulgham.
+    
+    The WebContent process crashes when launching Safari on older OSes, because of unavailable sandbox features.
+    
+    * WebProcess/com.apple.WebProcess.sb.in:
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@274504 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2021-03-16  Per Arne Vollan  <pvol...@apple.com>
+
+            The WebContent process crashes when launching Safari
+            https://bugs.webkit.org/show_bug.cgi?id=223264
+            <rdar://75482851>
+
+            Reviewed by Brent Fulgham.
+
+            The WebContent process crashes when launching Safari on older OSes, because of unavailable sandbox features.
+
+            * WebProcess/com.apple.WebProcess.sb.in:
+
 2021-03-16  Ruben Turcios  <rubent...@apple.com>
 
         Cherry-pick r274462. rdar://problem/75485338

Modified: branches/safari-611.1.21.1-branch/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in (274535 => 274536)


--- branches/safari-611.1.21.1-branch/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-03-16 23:54:01 UTC (rev 274535)
+++ branches/safari-611.1.21.1-branch/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-03-17 00:03:56 UTC (rev 274536)
@@ -1416,6 +1416,7 @@
     )
 )
 
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000
 (when (defined? 'file-ioctl)
     (deny file-ioctl (with telemetry))
     (allow file-ioctl (literal "/dev/dtracehelper"))
@@ -1482,6 +1483,7 @@
     ;; setsockopt
     (deny socket-option-set (with telemetry))
 )
+#endif
 
 (when (defined? 'syscall-unix)
     (deny syscall-unix (with send-signal SIGKILL))
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to