Changeset 251897 in webkit


Ignore:
Timestamp:
Oct 31, 2019 5:31:57 PM (4 years ago)
Author:
pvollan@apple.com
Message:

[iOS] Fix mach lookup sandbox violations in the Mail app
https://bugs.webkit.org/show_bug.cgi?id=203697

Reviewed by Alexey Proskuryakov.

Allow mach lookup to the services "com.apple.logd.events" and "com.apple.distributed_notifications@1v3",
which are seen when running the Mail application. Also allow "com.apple.aggregated", which was previously
allowed, and is showing up in reports.

  • Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r251896 r251897  
     12019-10-31  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [iOS] Fix mach lookup sandbox violations in the Mail app
     4        https://bugs.webkit.org/show_bug.cgi?id=203697
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        Allow mach lookup to the services "com.apple.logd.events" and "com.apple.distributed_notifications@1v3",
     9        which are seen when running the Mail application. Also allow "com.apple.aggregated", which was previously
     10        allowed, and is showing up in reports.
     11
     12        * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
     13
    1142019-10-31  Tim Horton  <timothy_horton@apple.com>
    215
  • trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb

    r251824 r251897  
    610610
    611611(allow mach-lookup
    612     (global-name "com.apple.logd"))
    613 
    614 (deny mach-lookup (with send-signal SIGKILL)
    615     (global-name "com.apple.logd.events"))
    616 
    617 (allow mach-lookup
     612    (global-name "com.apple.logd")
     613    (global-name "com.apple.logd.events")
     614    (global-name "com.apple.distributed_notifications@1v3")
     615    (global-name "com.apple.aggregated")
    618616    (global-name "com.apple.cfprefsd.daemon"))
    619617
Note: See TracChangeset for help on using the changeset viewer.