Changeset 285903 in webkit
- Timestamp:
- Nov 16, 2021, 5:08:34 PM (5 years ago)
- Location:
- branches/safari-613.1.9-branch/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
-
branches/safari-613.1.9-branch/Source/WebKit/ChangeLog
r285895 r285903 1 2021-11-16 Russell Epstein <repstein@apple.com> 2 3 Cherry-pick r285886. rdar://problem/85473581 4 5 [iOS] Limit graphics related IOKit method filtering 6 https://bugs.webkit.org/show_bug.cgi?id=233209 7 <rdar://problem/85473581> 8 9 Reviewed by Brent Fulgham. 10 11 Limit graphics related IOKit method filtering based on OS version. This patch also adds an entitlement which 12 will enable a replacement for the disabled filtering. 13 14 * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb.in: 15 * Scripts/process-entitlements.sh: 16 17 18 git-svn-id: https://svn.webkit.org/repository/webkit/trunk@285886 268f45cc-cd09-0410-ab3c-d52691b4dbfc 19 20 2021-11-16 Per Arne Vollan <pvollan@apple.com> 21 22 [iOS] Limit graphics related IOKit method filtering 23 https://bugs.webkit.org/show_bug.cgi?id=233209 24 <rdar://problem/85473581> 25 26 Reviewed by Brent Fulgham. 27 28 Limit graphics related IOKit method filtering based on OS version. This patch also adds an entitlement which 29 will enable a replacement for the disabled filtering. 30 31 * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb.in: 32 * Scripts/process-entitlements.sh: 33 1 34 2021-11-16 Russell Epstein <repstein@apple.com> 2 35 -
branches/safari-613.1.9-branch/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb.in
r285894 r285903 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 -
branches/safari-613.1.9-branch/Source/WebKit/Scripts/process-entitlements.sh
r285774 r285903 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.