Title: [259573] trunk/Source/WebKit
Revision
259573
Author
pvol...@apple.com
Date
2020-04-06 09:54:08 -0700 (Mon, 06 Apr 2020)

Log Message

Add syscall to the WebContent sandbox
https://bugs.webkit.org/show_bug.cgi?id=210048

Reviewed by Brent Fulgham.

Add a required syscall to the WebContent sandbox on iOS and macOS.

* Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
* WebProcess/com.apple.WebProcess.sb.in:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (259572 => 259573)


--- trunk/Source/WebKit/ChangeLog	2020-04-06 15:41:48 UTC (rev 259572)
+++ trunk/Source/WebKit/ChangeLog	2020-04-06 16:54:08 UTC (rev 259573)
@@ -1,3 +1,15 @@
+2020-04-06  Per Arne Vollan  <pvol...@apple.com>
+
+        Add syscall to the WebContent sandbox
+        https://bugs.webkit.org/show_bug.cgi?id=210048
+
+        Reviewed by Brent Fulgham.
+
+        Add a required syscall to the WebContent sandbox on iOS and macOS.
+
+        * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
+        * WebProcess/com.apple.WebProcess.sb.in:
+
 2020-04-06  youenn fablet  <you...@apple.com>
 
         Add HEVC support in GPU Process for WebRTC

Modified: trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb (259572 => 259573)


--- trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2020-04-06 15:41:48 UTC (rev 259572)
+++ trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2020-04-06 16:54:08 UTC (rev 259573)
@@ -1056,6 +1056,7 @@
         (syscall-number SYS_objc_bp_assist_cfg_np) ;; <rdar://problem/55924791>
         (syscall-number SYS_shared_region_map_and_slide_2_np) ;; <rdar://problem/60294880>
         (syscall-number SYS_ulock_wait2) ;; <rdar://problem/58743778>
+        (syscall-number SYS_fstat64_extended) ;; <rdar://problem/61310019>
     )
 )
 

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


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2020-04-06 15:41:48 UTC (rev 259572)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2020-04-06 16:54:08 UTC (rev 259573)
@@ -1082,5 +1082,6 @@
 #if __MAC_OS_X_VERSION_MIN_REQUIRED > 101500
         (syscall-number SYS_objc_bp_assist_cfg_np) ;; <rdar://problem/55924791>
 #endif
+        (syscall-number SYS_fstat64_extended) ;; <rdar://problem/61310019>
     )
 )
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to