Title: [276400] branches/safari-611-branch/Source/WebKit
Revision
276400
Author
[email protected]
Date
2021-04-21 16:39:13 -0700 (Wed, 21 Apr 2021)

Log Message

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

    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-branch/Source/WebKit/ChangeLog (276399 => 276400)


--- branches/safari-611-branch/Source/WebKit/ChangeLog	2021-04-21 23:39:10 UTC (rev 276399)
+++ branches/safari-611-branch/Source/WebKit/ChangeLog	2021-04-21 23:39:13 UTC (rev 276400)
@@ -1,3 +1,31 @@
+2021-04-21  Ruben Turcios  <[email protected]>
+
+        Cherry-pick r274504. rdar://problem/76962959
+
+    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  <[email protected]>
+
+            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-04-16  Russell Epstein  <[email protected]>
 
         Cherry-pick r275485. rdar://problem/76412930

Modified: branches/safari-611-branch/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in (276399 => 276400)


--- branches/safari-611-branch/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-04-21 23:39:10 UTC (rev 276399)
+++ branches/safari-611-branch/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-04-21 23:39:13 UTC (rev 276400)
@@ -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
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to