Title: [243329] trunk/Source/WebKit
- Revision
- 243329
- Author
- [email protected]
- Date
- 2019-03-21 14:16:37 -0700 (Thu, 21 Mar 2019)
Log Message
[iOS][macOS] Fix sandbox call violations
https://bugs.webkit.org/show_bug.cgi?id=195809
<rdar://problem/48829655>
Reviewed by Brent Fulgham.
An additional syscall needs to be added to the sandbox allow list.
* Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
* WebProcess/com.apple.WebProcess.sb.in:
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (243328 => 243329)
--- trunk/Source/WebKit/ChangeLog 2019-03-21 21:15:29 UTC (rev 243328)
+++ trunk/Source/WebKit/ChangeLog 2019-03-21 21:16:37 UTC (rev 243329)
@@ -1,3 +1,16 @@
+2019-03-21 Per Arne Vollan <[email protected]>
+
+ [iOS][macOS] Fix sandbox call violations
+ https://bugs.webkit.org/show_bug.cgi?id=195809
+ <rdar://problem/48829655>
+
+ Reviewed by Brent Fulgham.
+
+ An additional syscall needs to be added to the sandbox allow list.
+
+ * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
+ * WebProcess/com.apple.WebProcess.sb.in:
+
2019-03-21 Eric Carlson <[email protected]>
Add UI process WebRTC runtime logging.
Modified: trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb (243328 => 243329)
--- trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb 2019-03-21 21:15:29 UTC (rev 243328)
+++ trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb 2019-03-21 21:16:37 UTC (rev 243329)
@@ -597,5 +597,6 @@
(syscall-number SYS_open_dprotected_np)
(syscall-number SYS_pread_nocancel)
(syscall-number SYS___semwait_signal_nocancel)
+ (syscall-number SYS_kdebug_trace_string) ;; Needed for performance sampling, see <rdar://problem/48829655>.
)
)
Modified: trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in (243328 => 243329)
--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in 2019-03-21 21:15:29 UTC (rev 243328)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in 2019-03-21 21:16:37 UTC (rev 243329)
@@ -959,6 +959,7 @@
(syscall-number SYS_kdebug_typefilter)
(syscall-number SYS_gettid) ;; Needed for base system, see <rdar://problem/48651255>
(syscall-number SYS_memorystatus_control) ;; Needed for memory measurement infrastructure, see <rdar://problem/48647263>
+ (syscall-number SYS_kdebug_trace_string) ;; Needed for performance sampling, see <rdar://problem/48829655>.
)
)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes