Title: [282963] trunk/Source/WebKit
Revision
282963
Author
[email protected]
Date
2021-09-23 09:02:34 -0700 (Thu, 23 Sep 2021)

Log Message

Fix incorrect mach service name in sandboxes
https://bugs.webkit.org/show_bug.cgi?id=230640
<rdar://55258216>

Reviewed by Brent Fulgham.

Authentication related rules are using incorrect service names in sandboxes.

* NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in:
* WebAuthnProcess/mac/com.apple.WebKit.WebAuthnProcess.sb.in:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (282962 => 282963)


--- trunk/Source/WebKit/ChangeLog	2021-09-23 15:49:52 UTC (rev 282962)
+++ trunk/Source/WebKit/ChangeLog	2021-09-23 16:02:34 UTC (rev 282963)
@@ -1,3 +1,16 @@
+2021-09-23  Per Arne Vollan  <[email protected]>
+
+        Fix incorrect mach service name in sandboxes
+        https://bugs.webkit.org/show_bug.cgi?id=230640
+        <rdar://55258216>
+
+        Reviewed by Brent Fulgham.
+
+        Authentication related rules are using incorrect service names in sandboxes.
+
+        * NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in:
+        * WebAuthnProcess/mac/com.apple.WebKit.WebAuthnProcess.sb.in:
+
 2021-09-23  Jean-Yves Avenard  <[email protected]>
 
         Opus and Vorbis codecs aren't available on iPad.

Modified: trunk/Source/WebKit/NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in (282962 => 282963)


--- trunk/Source/WebKit/NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in	2021-09-23 15:49:52 UTC (rev 282962)
+++ trunk/Source/WebKit/NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in	2021-09-23 16:02:34 UTC (rev 282963)
@@ -370,7 +370,7 @@
 (allow mach-lookup
        (global-name "com.apple.ctkd.token-client")
        (global-name "com.apple.securityd.xpc") 
-       (global-name "com.apple.CoreAuthentication.agent.libxpc")
+       (global-name "com.apple.CoreAuthentication.agent")
        (global-name "com.apple.ocspd")
        (global-name "com.apple.SecurityServer"))
 

Modified: trunk/Source/WebKit/WebAuthnProcess/mac/com.apple.WebKit.WebAuthnProcess.sb.in (282962 => 282963)


--- trunk/Source/WebKit/WebAuthnProcess/mac/com.apple.WebKit.WebAuthnProcess.sb.in	2021-09-23 15:49:52 UTC (rev 282962)
+++ trunk/Source/WebKit/WebAuthnProcess/mac/com.apple.WebKit.WebAuthnProcess.sb.in	2021-09-23 16:02:34 UTC (rev 282963)
@@ -459,5 +459,5 @@
 
 ;; Allow accesses to LocalAuthentication and RemoteService
 (allow mach-lookup
-    (global-name "com.apple.CoreAuthentication.agent.libxpc")
+    (global-name "com.apple.CoreAuthentication.agent")
     (global-name "com.apple.remoted"))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to