Changeset 256439 in webkit


Ignore:
Timestamp:
Feb 12, 2020 9:05:11 AM (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

    r256433 r256439  
     12020-02-12  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-02-12  Wenson Hsieh  <wenson_hsieh@apple.com>
    219
  • trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb

    r256371 r256439  
    11041104        (syscall-number SYS_psynch_rw_rdlock) ;; <rdar://problem/51134351>
    11051105        (syscall-number SYS_faccessat) ;; <rdar://problem/56998930>
     1106        (syscall-number SYS_objc_bp_assist_cfg_np) ;; <rdar://problem/55924791>
    11061107    )
    11071108)
  • trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in

    r255367 r256439  
    10221022        (syscall-number SYS_faccessat) ;; <rdar://problem/56690456>
    10231023        (syscall-number SYS_fsetxattr) ;; <rdar://problem/56332491>
     1024#if __MAC_OS_X_VERSION_MIN_REQUIRED > 101500
     1025        (syscall-number SYS_objc_bp_assist_cfg_np) ;; <rdar://problem/55924791>
     1026#endif
    10241027    )
    10251028)
Note: See TracChangeset for help on using the changeset viewer.