Changeset 255072 in webkit


Ignore:
Timestamp:
Jan 24, 2020 7:58:45 AM (4 years ago)
Author:
Brent Fulgham
Message:

[iOS] Add missing sysctl-read permission (already available in macOS sandbox)
https://bugs.webkit.org/show_bug.cgi?id=206713
<rdar://problem/57665153>

Reviewed by Per Arne Vollan.

Correct a sandbox violation encountered when attempting to log the system hostname.
This was already handled properly on macOS, but the rule was not added to the iOS sandbox.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r255070 r255072  
     12020-01-24  Brent Fulgham  <bfulgham@apple.com>
     2
     3        [iOS] Add missing sysctl-read permission (already available in macOS sandbox)
     4        https://bugs.webkit.org/show_bug.cgi?id=206713
     5        <rdar://problem/57665153>
     6
     7        Reviewed by Per Arne Vollan.
     8
     9        Correct a sandbox violation encountered when attempting to log the system hostname.
     10        This was already handled properly on macOS, but the rule was not added to the iOS sandbox.
     11
     12        * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
     13
    1142020-01-24  Adrian Perez de Castro  <aperez@igalia.com>
    215
  • trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb

    r255038 r255072  
    817817        "kern.secure_kernel" ;; Needed by XPC bundle resolution
    818818        "kern.version"
    819         "vm.footprint_suspend"))
     819        "vm.footprint_suspend")
     820    (sysctl-name-regex #"^net.routetable") ;; <rdar://problem/57665153>
     821)
    820822
    821823(allow iokit-get-properties
Note: See TracChangeset for help on using the changeset viewer.