Title: [274504] trunk/Source/WebKit
Revision
274504
Author
pvol...@apple.com
Date
2021-03-16 12:00:12 -0700 (Tue, 16 Mar 2021)

Log Message

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:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (274503 => 274504)


--- trunk/Source/WebKit/ChangeLog	2021-03-16 18:46:33 UTC (rev 274503)
+++ trunk/Source/WebKit/ChangeLog	2021-03-16 19:00:12 UTC (rev 274504)
@@ -1,3 +1,15 @@
+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  Alex Christensen  <achristen...@webkit.org>
 
         Terminate network process when making new WebProcessPool in Lutron App

Modified: trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in (274503 => 274504)


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-03-16 18:46:33 UTC (rev 274503)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-03-16 19:00:12 UTC (rev 274504)
@@ -1542,6 +1542,7 @@
 (allow system-fsctl
     (fsctl-command (_IO "h" 47))) ;; See <rdar://74387453>
 
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000
 (when (defined? 'file-ioctl)
     (deny file-ioctl (with telemetry))
     (allow file-ioctl (literal "/dev/dtracehelper"))
@@ -1608,6 +1609,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