Title: [266424] branches/safari-610-branch/Source/WebKit
Revision
266424
Author
[email protected]
Date
2020-09-01 18:18:55 -0700 (Tue, 01 Sep 2020)

Log Message

Cherry-pick r266216. rdar://problem/68161715

    [macOS] Stop logging sandbox violations of com.apple.CoreDisplay.Notification
    https://bugs.webkit.org/show_bug.cgi?id=215869

    Reviewed by Darin Adler.

    On macOS, stop logging mach-lookup sandbox violations of com.apple.CoreDisplay.Notification for performance reasons.

    No new tests, since there is no change in behavior. The service was already being denied in the sandbox.

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

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@266216 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-610-branch/Source/WebKit/ChangeLog (266423 => 266424)


--- branches/safari-610-branch/Source/WebKit/ChangeLog	2020-09-02 01:18:53 UTC (rev 266423)
+++ branches/safari-610-branch/Source/WebKit/ChangeLog	2020-09-02 01:18:55 UTC (rev 266424)
@@ -1,3 +1,34 @@
+2020-09-01  Alan Coon  <[email protected]>
+
+        Cherry-pick r266216. rdar://problem/68161715
+
+    [macOS] Stop logging sandbox violations of com.apple.CoreDisplay.Notification
+    https://bugs.webkit.org/show_bug.cgi?id=215869
+    
+    Reviewed by Darin Adler.
+    
+    On macOS, stop logging mach-lookup sandbox violations of com.apple.CoreDisplay.Notification for performance reasons.
+    
+    No new tests, since there is no change in behavior. The service was already being denied in the sandbox.
+    
+    * WebProcess/com.apple.WebProcess.sb.in:
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@266216 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2020-08-26  Per Arne Vollan  <[email protected]>
+
+            [macOS] Stop logging sandbox violations of com.apple.CoreDisplay.Notification
+            https://bugs.webkit.org/show_bug.cgi?id=215869
+
+            Reviewed by Darin Adler.
+
+            On macOS, stop logging mach-lookup sandbox violations of com.apple.CoreDisplay.Notification for performance reasons.
+
+            No new tests, since there is no change in behavior. The service was already being denied in the sandbox.
+
+            * WebProcess/com.apple.WebProcess.sb.in:
+
 2020-08-26  Alan Coon  <[email protected]>
 
         Cherry-pick r266168. rdar://problem/67836301

Modified: branches/safari-610-branch/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in (266423 => 266424)


--- branches/safari-610-branch/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2020-09-02 01:18:53 UTC (rev 266423)
+++ branches/safari-610-branch/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2020-09-02 01:18:55 UTC (rev 266424)
@@ -765,6 +765,11 @@
     (global-name "com.apple.windowserver.active"))
 #endif
 
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000
+(deny mach-lookup (with no-log)
+    (global-name "com.apple.CoreDisplay.Notification))
+#endif
+
 #if __MAC_OS_X_VERSION_MIN_REQUIRED < 110000
 ;; Needed to support encrypted media playback <rdar://problem/40038478>
 (allow mach-lookup
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to