RESOLVED FIXED 159039
Integrate WebKit's CFURLConnection with App Transport Security
https://bugs.webkit.org/show_bug.cgi?id=159039
Summary Integrate WebKit's CFURLConnection with App Transport Security
Oliver Hunt
Reported 2016-06-22 14:35:55 PDT
Integrate WebKit's CFURLConnection with App Transport Security
Attachments
Patch (2.16 KB, patch)
2016-06-22 14:37 PDT, Oliver Hunt
no flags
Patch (2.57 KB, patch)
2016-06-22 14:57 PDT, Oliver Hunt
no flags
Patch (2.61 KB, patch)
2016-06-22 15:00 PDT, Oliver Hunt
no flags
Patch (2.71 KB, patch)
2016-06-22 15:33 PDT, Oliver Hunt
no flags
Oliver Hunt
Comment 1 2016-06-22 14:37:43 PDT
Alex Christensen
Comment 2 2016-06-22 14:45:18 PDT
Comment on attachment 281870 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=281870&action=review > Source/WebCore/platform/network/mac/ResourceHandleMac.mm:134 > + extern const CFStringRef _kCFURLConnectionPropertyATSContext; This should probably go in CFNetworkSPI.h. > Source/WebCore/platform/network/mac/ResourceHandleMac.mm:233 > + [propertyDictionary setObject:@{@"NSAllowsArbitraryLoadsInWebContent": @""} forKey:(NSString *)_kCFURLConnectionPropertyATSContext]; What does @"" mean here?
Alex Christensen
Comment 3 2016-06-22 14:47:56 PDT
Is there a radar associated with this?
Oliver Hunt
Comment 4 2016-06-22 14:57:13 PDT
Oliver Hunt
Comment 5 2016-06-22 14:59:47 PDT
Oliver Hunt
Comment 6 2016-06-22 15:00:56 PDT
Alex Christensen
Comment 7 2016-06-22 15:29:03 PDT
Comment on attachment 281876 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=281876&action=review > Source/WebCore/platform/network/mac/ResourceHandleMac.mm:231 > + [propertyDictionary setObject:@{@"NSAllowsArbitraryLoadsInWebContent": @""} forKey:(NSString *)_kCFURLConnectionPropertyATSContext]; This needs to be surrounded by an #if PLATFORM(IOS) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101100) Or something similar. Is this even needed on Mac?
Oliver Hunt
Comment 8 2016-06-22 15:33:05 PDT
WebKit Commit Bot
Comment 9 2016-06-22 16:23:58 PDT
Comment on attachment 281879 [details] Patch Clearing flags on attachment: 281879 Committed r202356: <http://trac.webkit.org/changeset/202356>
WebKit Commit Bot
Comment 10 2016-06-22 16:24:02 PDT
All reviewed patches have been landed. Closing bug.
David Kilzer (:ddkilzer)
Comment 11 2016-06-23 10:17:33 PDT
Comment on attachment 281879 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=281879&action=review > Source/WebCore/platform/network/mac/ResourceHandleMac.mm:230 > +#if TARGET_OS_IPHONE || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101100) Kind of weird to use TARGET_OS_IPHONE instead of PLATFORM(IOS) here. Should we be checking for iOS 10 here as well? (The property is probably ignored on older builds, so it's probably not necessary to add a version check.
Oliver Hunt
Comment 12 2016-06-23 10:21:01 PDT
(In reply to comment #11) > Comment on attachment 281879 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=281879&action=review > > > Source/WebCore/platform/network/mac/ResourceHandleMac.mm:230 > > +#if TARGET_OS_IPHONE || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101100) > > Kind of weird to use TARGET_OS_IPHONE instead of PLATFORM(IOS) here. > > Should we be checking for iOS 10 here as well? (The property is probably > ignored on older builds, so it's probably not necessary to add a version > check. I used identical guards to the definition point to avoid any chance of things going wrong :) And yeah, it's a no-op option elsewhere :)
Note You need to log in before you can comment on or make changes to this bug.