Changeset 245817 in webkit
- Timestamp:
- May 28, 2019, 10:33:58 AM (7 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in (modified) (4 diffs)
-
WebProcess/com.apple.WebProcess.sb.in (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r245807 r245817 1 2019-05-28 Brent Fulgham <bfulgham@apple.com> 2 3 Update sandbox rules for more News use cases 4 https://bugs.webkit.org/show_bug.cgi?id=198236 5 <rdar://problem/50054027> 6 7 Reviewed by Alexey Proskuryakov. 8 9 Update the WebContent and Network process sandboxes so that News has the same set of allowed 10 service access as regular WebKit views. 11 12 * NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in: 13 * WebProcess/com.apple.WebProcess.sb.in: 14 1 15 2019-05-27 Carlos Garcia Campos <cgarcia@igalia.com> 2 16 -
trunk/Source/WebKit/NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in
r243531 r245817 1 ; Copyright (C) 2013-201 7Apple Inc. All rights reserved.1 ; Copyright (C) 2013-2019 Apple Inc. All rights reserved. 2 2 ; 3 3 ; Redistribution and use in source and binary forms, with or without … … 44 44 (deny iokit-get-properties) 45 45 46 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300 46 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300 || PLATFORM(IOSMAC) 47 47 (deny mach-lookup (xpc-service-name-prefix "")) 48 48 #endif … … 58 58 (literal (string-append (param "HOME_DIR") home-relative-literal))) 59 59 60 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300 60 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300 || PLATFORM(IOSMAC) 61 61 ;; CFNetwork 62 62 (allow file-read-data (path "/private/var/db/nsurlstoraged/dafsaData.bin")) … … 153 153 (global-name "com.apple.PowerManagement.control") 154 154 (global-name "com.apple.SystemConfiguration.configd") 155 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300 155 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300 || PLATFORM(IOSMAC) 156 156 (global-name "com.apple.analyticsd") 157 157 #endif -
trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in
r245599 r245817 1 ; Copyright (C) 2010-201 8Apple Inc. All rights reserved.1 ; Copyright (C) 2010-2019 Apple Inc. All rights reserved. 2 2 ; 3 3 ; Redistribution and use in source and binary forms, with or without … … 115 115 (allow mach-lookup 116 116 (global-name "com.apple.cvmsServ")) 117 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400 117 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400 || PLATFORM(IOSMAC) 118 118 (allow file-read* 119 119 (prefix "/private/var/db/CVMS/cvmsCodeSignObj")) … … 637 637 (global-name "com.apple.tccd.system") 638 638 (global-name "com.apple.trustd.agent") 639 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400 639 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400 || PLATFORM(IOSMAC) 640 640 (global-name "com.apple.CARenderServer") ; Needed for [CAContext remoteContextWithOptions] 641 641 #else … … 649 649 #endif 650 650 651 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400 651 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400 || PLATFORM(IOSMAC) 652 652 (deny mach-lookup (with no-log) 653 653 (global-name "com.apple.ViewBridgeAuxiliary")
Note:
See TracChangeset
for help on using the changeset viewer.