Title: [291297] trunk/Source/WebKit
Revision
291297
Author
pvol...@apple.com
Date
2022-03-15 09:52:02 -0700 (Tue, 15 Mar 2022)

Log Message

[macOS][WP] Add required syscall
https://bugs.webkit.org/show_bug.cgi?id=237846
<rdar://90249455>

Reviewed by Brent Fulgham.

Add required syscall to the WebContent process' sandbox on macOS.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (291296 => 291297)


--- trunk/Source/WebKit/ChangeLog	2022-03-15 16:40:55 UTC (rev 291296)
+++ trunk/Source/WebKit/ChangeLog	2022-03-15 16:52:02 UTC (rev 291297)
@@ -1,3 +1,15 @@
+2022-03-15  Per Arne Vollan  <pvol...@apple.com>
+
+        [macOS][WP] Add required syscall
+        https://bugs.webkit.org/show_bug.cgi?id=237846
+        <rdar://90249455>
+
+        Reviewed by Brent Fulgham.
+
+        Add required syscall to the WebContent process' sandbox on macOS.
+
+        * WebProcess/com.apple.WebProcess.sb.in:
+
 2022-03-15  Jer Noble  <jer.no...@apple.com>
 
         [Cocoa] Adopt AVAssetPrefersSandboxedParsingOptionKey

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


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2022-03-15 16:40:55 UTC (rev 291296)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2022-03-15 16:52:02 UTC (rev 291297)
@@ -2009,6 +2009,8 @@
 #if !PLATFORM(MAC) || __MAC_OS_X_VERSION_MIN_REQUIRED < 120000
         SYS_rmdir
 #endif
+        ;; FIXME: SYS_setsockopt can be removed when contentfiltering has moved to the Network process
+        SYS_setsockopt ;; <rdar://90249455>
         SYS_shm_open
         SYS_sigaction
         SYS_sysctl
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to