Title: [252261] trunk/Source/WebKit
Revision
252261
Author
pvol...@apple.com
Date
2019-11-08 13:35:12 -0800 (Fri, 08 Nov 2019)

Log Message

[macOS] [iOS] Add logging and telemetry to mach lookup rules
https://bugs.webkit.org/show_bug.cgi?id=203999

Reviewed by Brent Fulgham.

Add logging and telemetry to help determine if mach lookups to a set of services can be denied in the WebContent process.

No new tests, since this only adds logging and telemetry.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (252260 => 252261)


--- trunk/Source/WebKit/ChangeLog	2019-11-08 21:34:49 UTC (rev 252260)
+++ trunk/Source/WebKit/ChangeLog	2019-11-08 21:35:12 UTC (rev 252261)
@@ -1,3 +1,16 @@
+2019-11-08  Per Arne Vollan  <pvol...@apple.com>
+
+        [macOS] [iOS] Add logging and telemetry to mach lookup rules
+        https://bugs.webkit.org/show_bug.cgi?id=203999
+
+        Reviewed by Brent Fulgham.
+
+        Add logging and telemetry to help determine if mach lookups to a set of services can be denied in the WebContent process.
+
+        No new tests, since this only adds logging and telemetry.
+
+        * WebProcess/com.apple.WebProcess.sb.in:
+
 2019-11-08  Alex Christensen  <achristen...@webkit.org>
 
         Make DownloadID an ObjectIdentifier

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


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2019-11-08 21:34:49 UTC (rev 252260)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2019-11-08 21:35:12 UTC (rev 252261)
@@ -587,6 +587,22 @@
 (allow mach-lookup
        (global-name "com.apple.webinspector"))
 
+(allow mach-lookup
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101500
+    (with report) (with telemetry)
+#endif
+    (global-name "com.apple.audio.AudioComponentRegistrar")
+    (global-name "com.apple.awdd")
+    (global-name "com.apple.cfprefsd.agent")
+    (global-name "com.apple.cookied")
+    (global-name "com.apple.diagnosticd")
+    (global-name "com.apple.iconservices")
+    (global-name "com.apple.iconservices.store")
+    (global-name "com.apple.mobileassetd")
+    (global-name "com.apple.powerlog.plxpclogger.xpc")
+    (global-name "com.apple.system.logger")
+)
+
 ;; Various services required by AppKit and other frameworks
 (allow mach-lookup
 #if __MAC_OS_X_VERSION_MIN_REQUIRED < 101400
@@ -595,28 +611,18 @@
        (global-name "com.apple.PowerManagement.control")
        (global-name "com.apple.SystemConfiguration.configd")
        (global-name "com.apple.analyticsd")
-       (global-name "com.apple.audio.AudioComponentRegistrar")
        (global-name "com.apple.assertiond.processassertionconnection")
        (global-name "com.apple.audio.SystemSoundServer-OSX")
        (global-name "com.apple.audio.audiohald")
-       (global-name "com.apple.awdd")
-       (global-name "com.apple.cfprefsd.agent")
        (global-name "com.apple.cfprefsd.daemon")
        (global-name "com.apple.cmio.registerassistantservice") ;; Needed by CoreMedia for plugin drivers
-       (global-name "com.apple.cookied")
        (global-name "com.apple.coreservices.launchservicesd")
-       (global-name "com.apple.diagnosticd")
        (global-name "com.apple.fonts")
-       (global-name "com.apple.iconservices")
-       (global-name "com.apple.iconservices.store")
        (global-name "com.apple.mediaremoted.xpc")
        (global-name "com.apple.logd")
        (global-name "com.apple.logd.events")
        (global-name "com.apple.lsd.mapdb")
        (global-name "com.apple.lskdd") ;; <rdar://problem/49123855>
-       (global-name "com.apple.mobileassetd")
-       (global-name "com.apple.powerlog.plxpclogger.xpc")
-       (global-name "com.apple.system.logger")
        (global-name "com.apple.tccd")
        (global-name "com.apple.tccd.system")
        (global-name "com.apple.trustd.agent")
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to