Title: [272585] trunk/Source/WebKit
Revision
272585
Author
[email protected]
Date
2021-02-09 10:03:28 -0800 (Tue, 09 Feb 2021)

Log Message

[macOS] Deny mach-lookup to the service 'com.apple.trustd.agent'
https://bugs.webkit.org/show_bug.cgi?id=221611
<rdar://problem/68935818>

Reviewed by Brent Fulgham.

Deny mach-lookup to the service 'com.apple.trustd.agent' in the WebContent process on macOS.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (272584 => 272585)


--- trunk/Source/WebKit/ChangeLog	2021-02-09 17:57:55 UTC (rev 272584)
+++ trunk/Source/WebKit/ChangeLog	2021-02-09 18:03:28 UTC (rev 272585)
@@ -1,3 +1,15 @@
+2021-02-09  Per Arne  <[email protected]>
+
+        [macOS] Deny mach-lookup to the service 'com.apple.trustd.agent'
+        https://bugs.webkit.org/show_bug.cgi?id=221611
+        <rdar://problem/68935818>
+
+        Reviewed by Brent Fulgham.
+
+        Deny mach-lookup to the service 'com.apple.trustd.agent' in the WebContent process on macOS.
+
+        * WebProcess/com.apple.WebProcess.sb.in:
+
 2021-02-09  Wenson Hsieh  <[email protected]>
 
         REGRESSION (r271660): Unable to interact with page after long-pressing image on images.google.com

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


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-02-09 17:57:55 UTC (rev 272584)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-02-09 18:03:28 UTC (rev 272585)
@@ -1076,23 +1076,20 @@
 #endif
     (ipc-posix-name-regex #"^AudioIO"))
 
-;; Still actively in use
+#if !ENABLE(SET_WEBCONTENT_PROCESS_INFORMATION_IN_NETWORK_PROCESS)
 (allow mach-lookup
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000
-    (with report) (with telemetry-backtrace)
-#endif
-#if !ENABLE(SET_WEBCONTENT_PROCESS_INFORMATION_IN_NETWORK_PROCESS)
     (global-name "com.apple.coreservices.launchservicesd")
+)
 #endif
+
 #if __MAC_OS_X_VERSION_MIN_REQUIRED <= 110000
+(allow mach-lookup
     (global-name "com.apple.tccd.system")
+)
 #endif
-    (global-name "com.apple.trustd.agent")
-)
 
 #if __MAC_OS_X_VERSION_MIN_REQUIRED <= 110000
 (allow mach-lookup
-    (with report)
     (global-name "com.apple.mobileassetd")
 )
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to