Changeset 285886 in webkit
- Timestamp:
- Nov 16, 2021, 2:46:04 PM (5 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb.in (modified) (2 diffs)
-
Scripts/process-entitlements.sh (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r285881 r285886 1 2021-11-16 Per Arne Vollan <pvollan@apple.com> 2 3 [iOS] Limit graphics related IOKit method filtering 4 https://bugs.webkit.org/show_bug.cgi?id=233209 5 <rdar://problem/85473581> 6 7 Reviewed by Brent Fulgham. 8 9 Limit graphics related IOKit method filtering based on OS version. This patch also adds an entitlement which 10 will enable a replacement for the disabled filtering. 11 12 * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb.in: 13 * Scripts/process-entitlements.sh: 14 1 15 2021-11-16 Myles C. Maxfield <mmaxfield@apple.com> 2 16 -
trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb.in
r285878 r285886 262 262 ) 263 263 (allow iokit-async-external-method 264 #if PLATFORM(IOS) 264 #if PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED < 160000 265 265 (iokit-method-number 266 266 43 … … 270 270 ) 271 271 (allow iokit-external-method 272 #if PLATFORM(IOS) 272 #if PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED < 160000 273 273 (iokit-method-number 274 274 0 -
trunk/Source/WebKit/Scripts/process-entitlements.sh
r285869 r285886 33 33 plistbuddy add :com.apple.coreaudio.allow-vorbis-decode bool YES 34 34 fi 35 if (( "${TARGET_MAC_OS_X_VERSION_MAJOR}" >= 130000 )) 36 then 37 plistbuddy Add :com.apple.private.gpu-restricted bool YES 38 fi 35 39 fi 36 40 … … 60 64 plistbuddy Add :com.apple.private.security.message-filter bool YES 61 65 plistbuddy Add :com.apple.security.cs.jit-write-allowlist bool YES 66 fi 67 68 if (( "${TARGET_MAC_OS_X_VERSION_MAJOR}" >= 130000 )) 69 then 70 plistbuddy Add :com.apple.private.gpu-restricted bool YES 62 71 fi 63 72 … … 281 290 plistbuddy Add :com.apple.private.coremedia.extensions.audiorecording.allow bool YES 282 291 plistbuddy Add :com.apple.private.coremedia.pidinheritance.allow bool YES 292 plistbuddy Add :com.apple.private.gpu-restricted bool YES 283 293 plistbuddy Add :com.apple.private.memorystatus bool YES 284 294 plistbuddy Add :com.apple.private.network.socket-delegate bool YES … … 309 319 plistbuddy Add :com.apple.private.allow-explicit-graphics-priority bool YES 310 320 plistbuddy Add :com.apple.private.coremedia.extensions.audiorecording.allow bool YES 321 plistbuddy Add :com.apple.private.gpu-restricted bool YES 311 322 plistbuddy Add :com.apple.private.mediaexperience.startrecordinginthebackground.allow bool YES 312 323 plistbuddy Add :com.apple.private.mediaexperience.processassertionaudittokens.allow bool YES
Note:
See TracChangeset
for help on using the changeset viewer.