Title: [274837] branches/safari-611.1.21.2-branch/Source/WebKit
Revision
274837
Author
[email protected]
Date
2021-03-22 18:11:46 -0700 (Mon, 22 Mar 2021)

Log Message

Cherry-pick r274790. rdar://problem/75712662

    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:

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@274790 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-611.1.21.2-branch/Source/WebKit/ChangeLog (274836 => 274837)


--- branches/safari-611.1.21.2-branch/Source/WebKit/ChangeLog	2021-03-23 01:07:30 UTC (rev 274836)
+++ branches/safari-611.1.21.2-branch/Source/WebKit/ChangeLog	2021-03-23 01:11:46 UTC (rev 274837)
@@ -1,3 +1,35 @@
+2021-03-22  Russell Epstein  <[email protected]>
+
+        Cherry-pick r274790. rdar://problem/75712662
+
+    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:
+    
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@274790 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    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-15  Alan Coon  <[email protected]>
 
         Cherry-pick r274439. rdar://problem/75450678

Modified: branches/safari-611.1.21.2-branch/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb (274836 => 274837)


--- branches/safari-611.1.21.2-branch/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2021-03-23 01:07:30 UTC (rev 274836)
+++ branches/safari-611.1.21.2-branch/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2021-03-23 01:11:46 UTC (rev 274837)
@@ -1316,7 +1316,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: branches/safari-611.1.21.2-branch/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in (274836 => 274837)


--- branches/safari-611.1.21.2-branch/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-03-23 01:07:30 UTC (rev 274836)
+++ branches/safari-611.1.21.2-branch/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-03-23 01:11:46 UTC (rev 274837)
@@ -1453,7 +1453,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