Changeset 286009 in webkit
- Timestamp:
- Nov 18, 2021, 9:45:08 AM (5 years ago)
- Location:
- branches/safari-613.1.8-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.8-branch/Source/WebKit/ChangeLog
r286008 r286009 1 2021-11-18 Alan Coon <alancoon@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-18 Alan Coon <alancoon@apple.com> 2 35 -
branches/safari-613.1.8-branch/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb.in
r286007 r286009 263 263 ) 264 264 (allow iokit-async-external-method 265 #if PLATFORM(IOS) 265 #if PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED < 160000 266 266 (iokit-method-number 267 267 43 … … 271 271 ) 272 272 (allow iokit-external-method 273 #if PLATFORM(IOS) 273 #if PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED < 160000 274 274 (iokit-method-number 275 275 0 -
branches/safari-613.1.8-branch/Source/WebKit/Scripts/process-entitlements.sh
r284077 r286009 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 … … 59 63 then 60 64 plistbuddy Add :com.apple.security.cs.jit-write-allowlist bool YES 65 fi 66 67 if (( "${TARGET_MAC_OS_X_VERSION_MAJOR}" >= 130000 )) 68 then 69 plistbuddy Add :com.apple.private.gpu-restricted bool YES 61 70 fi 62 71 … … 280 289 plistbuddy Add :com.apple.private.coremedia.extensions.audiorecording.allow bool YES 281 290 plistbuddy Add :com.apple.private.coremedia.pidinheritance.allow bool YES 291 plistbuddy Add :com.apple.private.gpu-restricted bool YES 282 292 plistbuddy Add :com.apple.private.memorystatus bool YES 283 293 plistbuddy Add :com.apple.private.network.socket-delegate bool YES … … 308 318 plistbuddy Add :com.apple.private.allow-explicit-graphics-priority bool YES 309 319 plistbuddy Add :com.apple.private.coremedia.extensions.audiorecording.allow bool YES 320 plistbuddy Add :com.apple.private.gpu-restricted bool YES 310 321 plistbuddy Add :com.apple.private.mediaexperience.startrecordinginthebackground.allow bool YES 311 322 plistbuddy Add :com.apple.private.coremedia.pidinheritance.allow bool YES
Note:
See TracChangeset
for help on using the changeset viewer.