Changeset 275539 in webkit


Ignore:
Timestamp:
Apr 6, 2021 12:41:12 PM (3 years ago)
Author:
Brent Fulgham
Message:

[macOS] Allow access to 'com.apple.system.logger' in the Base System
https://bugs.webkit.org/show_bug.cgi?id=224241
<rdar://problem/75960194>

Reviewed by Alex Christensen.

Deeper testing has revealed that some test configurations used internally require access to 'com.apple.system.logger' in the base
system to support certain diagnostic operations outside the normal user release logging paths.

This patch restores access to the 'com.apple.system.logger' endpoint when running in the Base System.

  • WebProcess/com.apple.WebProcess.sb.in:
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r275537 r275539  
     12021-04-06  Brent Fulgham  <bfulgham@apple.com>
     2
     3        [macOS] Allow access to 'com.apple.system.logger' in the Base System
     4        https://bugs.webkit.org/show_bug.cgi?id=224241
     5        <rdar://problem/75960194>
     6
     7        Reviewed by Alex Christensen.
     8
     9        Deeper testing has revealed that some test configurations used internally require access to 'com.apple.system.logger' in the base
     10        system to support certain diagnostic operations outside the normal user release logging paths.
     11
     12        This patch restores access to the 'com.apple.system.logger' endpoint when running in the Base System.
     13
     14        * WebProcess/com.apple.WebProcess.sb.in:
     15
    1162021-04-06  Eric Carlson  <eric.carlson@apple.com>
    217
  • trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in

    r275433 r275539  
    1 ; Copyright (C) 2010-2020 Apple Inc. All rights reserved.
     1; Copyright (C) 2010-2021 Apple Inc. All rights reserved.
    22;
    33; Redistribution and use in source and binary forms, with or without
     
    14341434    (global-name "com.apple.system.logger")
    14351435    (with no-report))
     1436(with-filter (uid 0)
     1437    (allow mach-lookup
     1438        (global-name "com.apple.system.logger"))
     1439)
    14361440
    14371441(if (defined? 'vnode-type)
Note: See TracChangeset for help on using the changeset viewer.