Title: [274790] trunk/Source/WebKit
Revision
274790
Author
[email protected]
Date
2021-03-22 13:32:13 -0700 (Mon, 22 Mar 2021)

Log Message

Allow additional fcntl
https://bugs.webkit.org/show_bug.cgi?id=223590
<rdar://problem/75702241>

Reviewed by Brent Fulgham.

An additional fcntl is being used and should be allowed.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (274789 => 274790)


--- trunk/Source/WebKit/ChangeLog	2021-03-22 20:30:12 UTC (rev 274789)
+++ trunk/Source/WebKit/ChangeLog	2021-03-22 20:32:13 UTC (rev 274790)
@@ -1,3 +1,16 @@
+2021-03-22  Per Arne  <[email protected]>
+
+        Allow additional fcntl
+        https://bugs.webkit.org/show_bug.cgi?id=223590
+        <rdar://problem/75702241>
+
+        Reviewed by Brent Fulgham.
+
+        An additional fcntl is being used and should be allowed.
+
+        * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
+        * WebProcess/com.apple.WebProcess.sb.in:
+
 2021-03-22  Youenn Fablet  <[email protected]>
 
         RealtimeMediaSource does not need to be a WeakPtr

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


--- trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2021-03-22 20:30:12 UTC (rev 274789)
+++ trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2021-03-22 20:32:13 UTC (rev 274790)
@@ -1354,7 +1354,8 @@
         (fcntl-command F_OFD_SETLK))
 
     (allow system-fcntl
-        (fcntl-command F_GETPROTECTIONCLASS))
+        (fcntl-command F_GETPROTECTIONCLASS)
+        (fcntl-command F_SETPROTECTIONCLASS))
 )
 
 (when (defined? 'process-codesigning*)

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


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-03-22 20:30:12 UTC (rev 274789)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-03-22 20:32:13 UTC (rev 274790)
@@ -1583,7 +1583,8 @@
         (fcntl-command F_OFD_SETLK))
 
     (allow system-fcntl
-        (fcntl-command F_GETPROTECTIONCLASS))
+        (fcntl-command F_GETPROTECTIONCLASS)
+        (fcntl-command F_SETPROTECTIONCLASS))
 )
 
 (when (defined? 'process-codesigning*)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to