Title: [287844] trunk/Source/WebKit
Revision
287844
Author
[email protected]
Date
2022-01-10 10:41:26 -0800 (Mon, 10 Jan 2022)

Log Message

[MacCatalyst] Add syscalls from iOS sandbox
https://bugs.webkit.org/show_bug.cgi?id=234970
<rdar://problem/87262730>

Reviewed by Darin Adler.

Add syscalls from iOS sandbox that are not in the MacCatalyst sandbox, since these are potentially
still needed on MacCatalyst.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (287843 => 287844)


--- trunk/Source/WebKit/ChangeLog	2022-01-10 18:36:58 UTC (rev 287843)
+++ trunk/Source/WebKit/ChangeLog	2022-01-10 18:41:26 UTC (rev 287844)
@@ -1,3 +1,16 @@
+2022-01-10  Per Arne Vollan  <[email protected]>
+
+        [MacCatalyst] Add syscalls from iOS sandbox
+        https://bugs.webkit.org/show_bug.cgi?id=234970
+        <rdar://problem/87262730>
+
+        Reviewed by Darin Adler.
+
+        Add syscalls from iOS sandbox that are not in the MacCatalyst sandbox, since these are potentially
+        still needed on MacCatalyst.
+
+        * WebProcess/com.apple.WebProcess.sb.in:
+
 2022-01-09  Sam Weinig  <[email protected]>
 
         Remove support for Direct2D

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


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2022-01-10 18:36:58 UTC (rev 287843)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2022-01-10 18:41:26 UTC (rev 287844)
@@ -2021,7 +2021,21 @@
         SYS_sigaction
         SYS_sysctl
         SYS_unlink
-        SYS_write))
+        SYS_write
+#if !PLATFORM(MAC)
+        SYS_abort_with_payload
+        SYS_dup
+        SYS_fgetattrlist
+        SYS_fstat64_extended
+        SYS_kqueue
+        SYS_mkdirat
+        SYS_open_dprotected_np
+        SYS_psynch_rw_rdlock
+        SYS_rmdir
+        SYS_setrlimit
+        SYS_ulock_wait2
+#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