⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 287069 in webkit


Ignore:
Timestamp:
Dec 15, 2021, 2:16:10 AM (5 years ago)
Author:
pvollan@apple.com
Message:

[iOS][WP] Add access to required syscall
https://bugs.webkit.org/show_bug.cgi?id=234336
<rdar://86502081>

Reviewed by Tim Horton.

Add required syscall to the WebContent process' sandbox on iOS. This syscall was blocked in
https://trac.webkit.org/changeset/286673/webkit.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r287059 r287069  
     12021-12-15  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [iOS][WP] Add access to required syscall
     4        https://bugs.webkit.org/show_bug.cgi?id=234336
     5        <rdar://86502081>
     6
     7        Reviewed by Tim Horton.
     8
     9        Add required syscall to the WebContent process' sandbox on iOS. This syscall was blocked in
     10        https://trac.webkit.org/changeset/286673/webkit.
     11
     12        * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb.in:
     13
    1142021-12-14  Jean-Yves Avenard  <jya@apple.com>
    215
  • trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb.in

    r286979 r287069  
    16381638                (allow mach-message-send (kernel-mig-routine mach_port_is_connection_for_service))
    16391639            )
     1640
     1641            (if (and gizmo? (defined? 'mach_make_memory_entry))
     1642                (allow mach-message-send (kernel-mig-routine mach_make_memory_entry)))
     1643            (if (and gizmo? (defined? 'mach_make_memory_entry_64))
     1644                (allow mach-message-send (kernel-mig-routine mach_make_memory_entry_64)))
    16401645        )
    16411646    )
Note: See TracChangeset for help on using the changeset viewer.