Title: [231879] trunk/Source/WebKit
Revision
231879
Author
bfulg...@apple.com
Date
2018-05-16 17:28:29 -0700 (Wed, 16 May 2018)

Log Message

REGRESSION(r229093)[macOS] Allow network-outbound for syslog use
https://bugs.webkit.org/show_bug.cgi?id=185703
<rdar://problem/39778918>

Reviewed by Eric Carlson.

In r229093 I removed the 'network-outbound' permission for syslog use.
Further testing has shown that this is still needed for subsystem
logging in our bundle loading code.

This patch re-enabled network-outbound for syslog.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (231878 => 231879)


--- trunk/Source/WebKit/ChangeLog	2018-05-16 23:38:15 UTC (rev 231878)
+++ trunk/Source/WebKit/ChangeLog	2018-05-17 00:28:29 UTC (rev 231879)
@@ -1,3 +1,19 @@
+2018-05-16  Brent Fulgham  <bfulg...@apple.com>
+
+        REGRESSION(r229093)[macOS] Allow network-outbound for syslog use
+        https://bugs.webkit.org/show_bug.cgi?id=185703
+        <rdar://problem/39778918>
+
+        Reviewed by Eric Carlson.
+
+        In r229093 I removed the 'network-outbound' permission for syslog use.
+        Further testing has shown that this is still needed for subsystem
+        logging in our bundle loading code.
+
+        This patch re-enabled network-outbound for syslog.
+
+        * WebProcess/com.apple.WebProcess.sb.in:
+
 2018-05-16  Andy VanWagoner  <andy@vanwagoner.family>
 
         Add support for Intl NumberFormat formatToParts

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


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2018-05-16 23:38:15 UTC (rev 231878)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2018-05-17 00:28:29 UTC (rev 231879)
@@ -645,6 +645,8 @@
        ;; Note: This is needed for some media playback features. <rdar://problem/38191574>
        ;; Remove this permission when <rdar://problem/38240572> is fixed.
        (literal "/private/var/run/mDNSResponder")
+       ;; ObjC map_images needs to send logging data to syslog. <rdar://problem/39778918>
+       (literal "/private/var/run/syslog")
        (remote tcp))
 
 #if !PLATFORM(MAC) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to