Changeset 254548 in webkit


Ignore:
Timestamp:
Jan 14, 2020 5:39:11 PM (4 years ago)
Author:
Brent Fulgham
Message:

Expand WebContent process sandbox with additional syscall
https://bugs.webkit.org/show_bug.cgi?id=206260
<rdar://problem/58580997>

Reviewed by Per Arne Vollan.

Testing shows that we will improve performance on some platforms by supporting an additional Syscall.

This patch revises our sandboxes so that WebKit can use this fast path if available.

No new tests. No change in test result behavior.

  • 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

    r254539 r254548  
     12020-01-14  Brent Fulgham  <bfulgham@apple.com>
     2
     3        Expand WebContent process sandbox with additional syscall
     4        https://bugs.webkit.org/show_bug.cgi?id=206260
     5        <rdar://problem/58580997>
     6
     7        Reviewed by Per Arne Vollan.
     8
     9        Testing shows that we will improve performance on some platforms by supporting an additional Syscall.
     10
     11        This patch revises our sandboxes so that WebKit can use this fast path if available.
     12
     13        No new tests. No change in test result behavior.
     14
     15        * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
     16        * WebProcess/com.apple.WebProcess.sb.in:
     17
    1182020-01-14  Commit Queue  <commit-queue@webkit.org>
    219
  • trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb

    r254436 r254548  
    11271127        (syscall-number SYS_psynch_rw_rdlock) ;; <rdar://problem/51134351>
    11281128        (syscall-number SYS_faccessat) ;; <rdar://problem/56998930>
     1129        (syscall-number SYS_objc_bp_assist_cfg_np) ;; <rdar://problem/55924791>
    11291130    )
    11301131)
  • trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in

    r254351 r254548  
    10221022        (syscall-number SYS_faccessat) ;; <rdar://problem/56690456>
    10231023        (syscall-number SYS_fsetxattr) ;; <rdar://problem/56332491>
     1024        (syscall-number SYS_objc_bp_assist_cfg_np) ;; <rdar://problem/55924791>
    10241025    )
    10251026)
Note: See TracChangeset for help on using the changeset viewer.