Changeset 242600 in webkit


Ignore:
Timestamp:
Mar 7, 2019 9:46:12 AM (5 years ago)
Author:
pvollan@apple.com
Message:

[iOS] Disable permissive call logging in sandbox
https://bugs.webkit.org/show_bug.cgi?id=195288
<rdar://problem/47683804>

Reviewed by Brent Fulgham.

As on macOS, we should enable strict call filtering in sandbox on iOS.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r242599 r242600  
     12019-03-07  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [iOS] Disable permissive call logging in sandbox
     4        https://bugs.webkit.org/show_bug.cgi?id=195288
     5        <rdar://problem/47683804>
     6
     7        Reviewed by Brent Fulgham.
     8
     9        As on macOS, we should enable strict call filtering in sandbox on iOS.
     10
     11        * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
     12
    1132019-03-07  Youenn Fablet  <youenn@apple.com>
    214
  • trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb

    r242107 r242600  
    543543
    544544(when (defined? 'syscall-unix)
    545     (allow syscall-unix (with report))
     545    (deny syscall-unix (with send-signal SIGKILL))
    546546    (allow syscall-unix
    547547        (syscall-number SYS_exit)
     
    686686        (syscall-number SYS_fsetattrlist)
    687687        (syscall-number SYS_guarded_open_dprotected_np) ; <rdar://problem/48166729>
     688        (syscall-number SYS_mremap_encrypted)
     689        (syscall-number SYS_dup2)
     690        (syscall-number SYS_fileport_makefd)
     691        (syscall-number SYS_os_fault_with_payload)
     692        (syscall-number SYS_persona)
     693        (syscall-number SYS_work_interval_ctl)
    688694    )
    689695)
Note: See TracChangeset for help on using the changeset viewer.