Changeset 245599 in webkit


Ignore:
Timestamp:
May 21, 2019 4:30:48 PM (5 years ago)
Author:
pvollan@apple.com
Message:

Sandbox violation is making the WebContent process crash
https://bugs.webkit.org/show_bug.cgi?id=198089
<rdar://problem/50999499>

Reviewed by Brent Fulgham.

A new syscall rule needs to be added to the sandbox on iOS and macOS.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r245597 r245599  
     12019-05-21  Per Arne Vollan  <pvollan@apple.com>
     2
     3        Sandbox violation is making the WebContent process crash
     4        https://bugs.webkit.org/show_bug.cgi?id=198089
     5        <rdar://problem/50999499>
     6
     7        Reviewed by Brent Fulgham.
     8
     9        A new syscall rule needs to be added to the sandbox on iOS and macOS.
     10
     11        * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
     12        * WebProcess/com.apple.WebProcess.sb.in:
     13
    1142019-05-21  Alex Christensen  <achristensen@webkit.org>
    215
  • trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb

    r245542 r245599  
    610610        (syscall-number SYS_fsetxattr) ;; <rdar://problem/49795964>
    611611        (syscall-number SYS_abort_with_payload) ;; <rdar://problem/50967271>
     612        (syscall-number SYS_kqueue_workloop_ctl) ;; <rdar://problem/50999499>
    612613    )
    613614)
  • trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in

    r245533 r245599  
    999999        (syscall-number SYS_getgroups)
    10001000        (syscall-number SYS_fgetattrlist) ;; <rdar://problem/50931110>
     1001        (syscall-number SYS_kqueue_workloop_ctl) ;; <rdar://problem/50999499>
    10011002    )
    10021003)
Note: See TracChangeset for help on using the changeset viewer.