Title: [231702] trunk/Source/WebKit
Revision
231702
Author
[email protected]
Date
2018-05-11 09:01:30 -0700 (Fri, 11 May 2018)

Log Message

REGRESSION(r231057): Encrypted media content playback failures
https://bugs.webkit.org/show_bug.cgi?id=185537
<rdar://problem/40038478>

Reviewed by Eric Carlson.

Put access to the SecurityServer back in the sandbox so we can validate the
signatures of media encoder/decoders.

* WebProcess/com.apple.WebProcess.sb.in:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (231701 => 231702)


--- trunk/Source/WebKit/ChangeLog	2018-05-11 13:09:27 UTC (rev 231701)
+++ trunk/Source/WebKit/ChangeLog	2018-05-11 16:01:30 UTC (rev 231702)
@@ -1,3 +1,16 @@
+2018-05-10  Brent Fulgham  <[email protected]>
+
+        REGRESSION(r231057): Encrypted media content playback failures
+        https://bugs.webkit.org/show_bug.cgi?id=185537
+        <rdar://problem/40038478>
+
+        Reviewed by Eric Carlson.
+
+        Put access to the SecurityServer back in the sandbox so we can validate the
+        signatures of media encoder/decoders.
+
+        * WebProcess/com.apple.WebProcess.sb.in:
+
 2018-05-11  Youenn Fablet  <[email protected]>
 
         NetworkCORSPreflightChecker should proceed when having a ProtectionSpaceAuthenticationSchemeServerTrustEvaluationRequested challenge

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


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2018-05-11 13:09:27 UTC (rev 231701)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2018-05-11 16:01:30 UTC (rev 231702)
@@ -606,6 +606,10 @@
        (global-name "com.apple.xpcd")
 )
 
+;; Needed to support encrypted media playback <rdar://problem/40038478>
+(allow mach-lookup
+    (global-name "com.apple.SecurityServer"))
+
 (allow file-read* file-write* (subpath "/private/var/db/mds/system")) ;; FIXME: This should be removed when <rdar://problem/9538414> is fixed.
 
 (allow file-read*
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to