Changeset 150853 in webkit
- Timestamp:
- May 28, 2013, 4:26:48 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 5 added
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r150849 r150853 1 2013-05-28 Alexey Proskuryakov <ap@apple.com> 2 3 Freeze when loading a particular page on washingtonpost.com with NetworkProcess enabled 4 https://bugs.webkit.org/show_bug.cgi?id=116887 5 <rdar://problem/12965959> 6 7 Reviewed by Darin Adler. 8 9 * http/tests/uri/curly-braces-escaping-expected.txt: Added. 10 * http/tests/uri/curly-braces-escaping.html: Added. 11 * http/tests/uri/resources/echo-uri.php: Added. 12 1 13 2013-05-28 Brent Fulgham <bfulgham@apple.com> 2 14 -
trunk/Source/WebCore/ChangeLog
r150837 r150853 1 2013-05-28 Alexey Proskuryakov <ap@apple.com> 2 3 Freeze when loading a particular page on washingtonpost.com with NetworkProcess enabled 4 https://bugs.webkit.org/show_bug.cgi?id=116887 5 <rdar://problem/12965959> 6 7 Reviewed by Darin Adler. 8 9 Test: http/tests/uri/curly-braces-escaping.html 10 11 The issue was that WebKit used an incorrect accessor to get a string out of CFURL, 12 unlike WebCore. 13 14 Centralized code for converting between CFURLs and strings in a place that WebKit 15 can use directly. 16 17 * WebCore.exp.in: 18 * WebCore.vcproj/WebCore.vcproj: 19 * WebCore.vcxproj/WebCore.vcxproj: 20 * WebCore.vcxproj/WebCore.vcxproj.filters: 21 * WebCore.xcodeproj/project.pbxproj: 22 Keeping things building. 23 24 * platform/KURL.cpp: (WebCore::KURL::copyToBuffer): 25 * platform/KURL.h: 26 Updated for a new typedef name. The code was using Vector<char, 512> and CharBuffer 27 inconsistently, and now URLs use URLCharBuffer. 28 29 * platform/cf/CFURLExtras.cpp: Added. 30 (WebCore::createCFURLFromBuffer): 31 (WebCore::getURLBytes): 32 * platform/cf/CFURLExtras.h: Added. 33 * platform/cf/KURLCFNet.cpp: 34 (WebCore::KURL::KURL): 35 (WebCore::KURL::createCFURL): 36 Extracted code for CFURL string manipulation that is not logcally part of KURL. 37 38 * platform/mac/KURLMac.mm: 39 (WebCore::KURL::KURL): Use the new getURLBytes function. 40 (WebCore::KURL::operator NSURL *): Added a comment. 41 (WebCore::KURL::createCFURL): Added a comment, and updated for new names and 42 signatures. 43 44 * platform/network/cf/ResourceErrorCF.cpp: (WebCore::ResourceError::platformLazyInit): 45 Added a FIXME. We are still using CFURLGetString here. The difficulty is getting 46 encodings right. 47 1 48 2013-05-28 Anders Carlsson <andersca@apple.com> 2 49 -
trunk/Source/WebCore/WebCore.exp.in
r150796 r150853 168 168 __ZN7WebCore11SQLResultOkE 169 169 __ZN7WebCore11URLWithDataEP6NSDataP5NSURL 170 __ZN7WebCore11getURLBytesEPK7__CFURLRN3WTF7CStringE 171 __ZN7WebCore11getURLBytesEPK7__CFURLRN3WTF6VectorIcLm512ENS3_15CrashOnOverflowEEE 170 172 __ZN7WebCore11iBeamCursorEv 171 173 __ZN7WebCore11memoryCacheEv … … 718 720 __ZN7WebCore21UserContentURLPattern5parseERKN3WTF6StringE 719 721 __ZN7WebCore21WindowsLatin1EncodingEv 722 __ZN7WebCore21createCFURLFromBufferEPKcmPK7__CFURL 720 723 __ZN7WebCore21findEventWithKeyStateEPNS_5EventE 721 724 __ZN7WebCore21getCachedDOMStructureEPNS_17JSDOMGlobalObjectEPKN3JSC9ClassInfoE -
trunk/Source/WebCore/WebCore.vcproj/WebCore.vcproj
r150837 r150853 29723 29723 > 29724 29724 <File 29725 RelativePath="..\platform\cf\CFURLExtras.cpp" 29726 > 29727 </File> 29728 <File 29729 RelativePath="..\platform\cf\CFURLExtras.h" 29730 > 29731 </File> 29732 <File 29725 29733 RelativePath="..\platform\cf\FileSystemCF.cpp" 29726 29734 > -
trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj
r150837 r150853 4222 4222 <ClCompile Include="..\platform\win\WidgetWin.cpp" /> 4223 4223 <ClCompile Include="..\platform\win\WindowMessageBroadcaster.cpp" /> 4224 <ClCompile Include="..\platform\cf\CFURLExtras.cpp" /> 4224 4225 <ClCompile Include="..\platform\cf\FileSystemCF.cpp" /> 4225 4226 <ClCompile Include="..\platform\cf\KURLCFNet.cpp" /> … … 11609 11610 <ClInclude Include="..\platform\win\WindowMessageListener.h" /> 11610 11611 <ClInclude Include="..\platform\win\WindowsTouch.h" /> 11612 <ClInclude Include="..\platform\cf\CFURLExtras.h" /> 11611 11613 <ClInclude Include="..\platform\cf\win\CertificateCFWin.h" /> 11612 11614 <ClInclude Include="..\platform\graphics\BitmapImage.h" /> -
trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj.filters
r150837 r150853 5179 5179 <Filter>page</Filter> 5180 5180 </ClCompile> 5181 <ClCompile Include="..\platform\cf\CFURLExtras.cpp"> 5182 <Filter>platform\cf</Filter> 5183 </ClCompile> 5181 5184 <ClCompile Include="..\platform\cf\SharedBufferCF.cpp"> 5182 5185 <Filter>platform\cf</Filter> … … 12682 12685 <ClInclude Include="..\svg\SVGAnimatedTypeAnimator.h"> 12683 12686 <Filter>rendering\svg</Filter> 12687 </ClInclude> 12688 <ClInclude Include="..\platform\cf\CFURLExtras.h"> 12689 <Filter>platform\cf</Filter> 12684 12690 </ClInclude> 12685 12691 <ClInclude Include="..\platform\cf\win\CertificateCFWin.h"> -
trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj
r150837 r150853 5420 5420 E1A643F20EC0972500779668 /* WorkerScriptController.h in Headers */ = {isa = PBXBuildFile; fileRef = E1A643F10EC0972500779668 /* WorkerScriptController.h */; }; 5421 5421 E1A643FD0EC097A000779668 /* WorkerScriptController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1A643FC0EC097A000779668 /* WorkerScriptController.cpp */; }; 5422 E1A8E56617552B2A007488E7 /* CFURLExtras.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1A8E56417552B2A007488E7 /* CFURLExtras.cpp */; }; 5423 E1A8E56717552B2A007488E7 /* CFURLExtras.h in Headers */ = {isa = PBXBuildFile; fileRef = E1A8E56517552B2A007488E7 /* CFURLExtras.h */; settings = {ATTRIBUTES = (Private, ); }; }; 5422 5424 E1ACAF4C0E791AAF0087D12B /* DOMMessagePort.mm in Sources */ = {isa = PBXBuildFile; fileRef = E1ACAF4A0E791AAF0087D12B /* DOMMessagePort.mm */; }; 5423 5425 E1ACAF4D0E791AAF0087D12B /* DOMMessagePort.h in Headers */ = {isa = PBXBuildFile; fileRef = E1ACAF4B0E791AAF0087D12B /* DOMMessagePort.h */; }; … … 12202 12204 E1A643F10EC0972500779668 /* WorkerScriptController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WorkerScriptController.h; sourceTree = "<group>"; }; 12203 12205 E1A643FC0EC097A000779668 /* WorkerScriptController.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WorkerScriptController.cpp; sourceTree = "<group>"; }; 12206 E1A8E56417552B2A007488E7 /* CFURLExtras.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CFURLExtras.cpp; sourceTree = "<group>"; }; 12207 E1A8E56517552B2A007488E7 /* CFURLExtras.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CFURLExtras.h; sourceTree = "<group>"; }; 12204 12208 E1AB1EA814E9E27D00449E13 /* FileList.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = FileList.idl; path = fileapi/FileList.idl; sourceTree = "<group>"; }; 12205 12209 E1AB1EAB14E9E2EF00449E13 /* DirectoryEntry.idl */ = {isa = PBXFileReference; lastKnownFileType = text; name = DirectoryEntry.idl; path = Modules/filesystem/DirectoryEntry.idl; sourceTree = "<group>"; }; … … 13405 13409 isa = PBXGroup; 13406 13410 children = ( 13411 E1A8E56417552B2A007488E7 /* CFURLExtras.cpp */, 13412 E1A8E56517552B2A007488E7 /* CFURLExtras.h */, 13407 13413 5160306B0CC4362300C8AC25 /* FileSystemCF.cpp */, 13408 13414 1A98956A0AA78F80005EF5EF /* KURLCFNet.cpp */, … … 20917 20923 29D7BCFA1444AF7D0070619C /* AccessibilitySpinButton.h in Headers */, 20918 20924 AAC08CF315F941FD00F1E188 /* AccessibilitySVGRoot.h in Headers */, 20925 E1A8E56717552B2A007488E7 /* CFURLExtras.h in Headers */, 20919 20926 29A8122B0FBB9C1D00510293 /* AccessibilityTable.h in Headers */, 20920 20927 29A812320FBB9C1D00510293 /* AccessibilityTableCell.h in Headers */, … … 26200 26207 1AF8E1C3125673E000230FF7 /* ProxyServerCFNet.cpp in Sources */, 26201 26208 FF945ECB161F7F3600971BC8 /* PseudoElement.cpp in Sources */, 26209 E1A8E56617552B2A007488E7 /* CFURLExtras.cpp in Sources */, 26202 26210 0081FEFF16B0A2B6008AAA7A /* PublicSuffixMac.mm in Sources */, 26203 26211 E4D687770ED7AE3D006EA978 /* PurgeableBufferMac.cpp in Sources */, -
trunk/Source/WebCore/platform/KURL.cpp
r149925 r150853 1696 1696 } 1697 1697 1698 void KURL::copyToBuffer( CharBuffer& buffer) const1698 void KURL::copyToBuffer(Vector<char, 512>& buffer) const 1699 1699 { 1700 1700 // FIXME: This throws away the high bytes of all the characters in the string! -
trunk/Source/WebCore/platform/cf/KURLCFNet.cpp
r150606 r150853 27 27 #include "KURL.h" 28 28 29 #include <wtf/RetainPtr.h>29 #include "CFURLExtras.h" 30 30 #include <CoreFoundation/CFURL.h> 31 #include <wtf/text/CString.h> 31 32 32 33 using namespace std; 33 34 34 35 namespace WebCore { 35 36 typedef Vector<char, 512> CharBuffer;37 38 RetainPtr<CFURLRef> createCFURLFromBuffer(const CharBuffer&);39 36 40 37 KURL::KURL(CFURLRef url) … … 45 42 } 46 43 47 CFIndex bytesLength = CFURLGetBytes(url, 0, 0); 48 Vector<char, 512> buffer(bytesLength + 1); 49 char* bytes = &buffer[0]; 50 CFURLGetBytes(url, reinterpret_cast<UInt8*>(bytes), bytesLength); 51 bytes[bytesLength] = '\0'; 52 parse(bytes); 53 } 54 55 RetainPtr<CFURLRef> createCFURLFromBuffer(const CharBuffer& buffer) 56 { 57 // NOTE: We use UTF-8 here since this encoding is used when computing strings when returning URL components 58 // (e.g calls to NSURL -path). However, this function is not tolerant of illegal UTF-8 sequences, which 59 // could either be a malformed string or bytes in a different encoding, like Shift-JIS, so we fall back 60 // onto using ISO Latin-1 in those cases. 61 RetainPtr<CFURLRef> result = adoptCF(CFURLCreateAbsoluteURLWithBytes(0, reinterpret_cast<const UInt8*>(buffer.data()), buffer.size(), kCFStringEncodingUTF8, 0, true)); 62 if (!result) 63 result = adoptCF(CFURLCreateAbsoluteURLWithBytes(0, reinterpret_cast<const UInt8*>(buffer.data()), buffer.size(), kCFStringEncodingISOLatin1, 0, true)); 64 return result; 44 // FIXME: Why is it OK to ignore base URL here? 45 CString urlBytes; 46 getURLBytes(url, urlBytes); 47 parse(urlBytes.data()); 65 48 } 66 49 … … 71 54 // Currently it throws away the high bytes of the characters in the string in that case, 72 55 // which is clearly wrong. 73 CharBuffer buffer;56 URLCharBuffer buffer; 74 57 copyToBuffer(buffer); 75 58 return createCFURLFromBuffer(buffer); -
trunk/Source/WebCore/platform/mac/KURLMac.mm
r150606 r150853 27 27 #import "KURL.h" 28 28 29 #import "CFURLExtras.h" 29 30 #import "FoundationExtras.h" 30 #import <CoreFoundation/CFURL.h> 31 32 using namespace WTF; 31 #import <wtf/text/CString.h> 33 32 34 33 namespace WebCore { 35 36 typedef Vector<char, 512> CharBuffer;37 extern RetainPtr<CFURLRef> createCFURLFromBuffer(const CharBuffer& buffer);38 34 39 35 KURL::KURL(NSURL *url) … … 44 40 } 45 41 46 CFIndex bytesLength = CFURLGetBytes(reinterpret_cast<CFURLRef>(url), 0, 0); 47 Vector<char, 512> buffer(bytesLength + 1); 48 char* bytes = &buffer[0]; 49 CFURLGetBytes(reinterpret_cast<CFURLRef>(url), reinterpret_cast<UInt8*>(bytes), bytesLength); 50 bytes[bytesLength] = '\0'; 51 parse(bytes); 42 // FIXME: Why is it OK to ignore base URL here? 43 CString urlBytes; 44 getURLBytes(reinterpret_cast<CFURLRef>(url), urlBytes); 45 parse(urlBytes.data()); 52 46 } 53 47 54 48 KURL::operator NSURL *() const 55 49 { 50 // Creating a toll-free bridged CFURL, because a real NSURL would not preserve the original string. 51 // We'll need fidelity when round-tripping via CFURLGetBytes(). 56 52 return HardAutorelease(createCFURL().leakRef()); 57 53 } 58 54 59 // We use the toll-free bridge between NSURL and CFURL to60 // create a CFURLRef supporting both empty and null values.61 55 RetainPtr<CFURLRef> KURL::createCFURL() const 62 56 { … … 65 59 66 60 if (isEmpty()) { 61 // We use the toll-free bridge between NSURL and CFURL to 62 // create a CFURLRef supporting both empty and null values. 67 63 RetainPtr<NSURL> emptyNSURL = adoptNS([[NSURL alloc] initWithString:@""]); 68 64 return reinterpret_cast<CFURLRef>(emptyNSURL.get()); 69 65 } 70 66 71 CharBuffer buffer;67 URLCharBuffer buffer; 72 68 copyToBuffer(buffer); 73 return createCFURLFromBuffer(buffer );69 return createCFURLFromBuffer(buffer.data(), buffer.size()); 74 70 } 75 71 -
trunk/Source/WebCore/platform/network/cf/ResourceErrorCF.cpp
r149980 r150853 108 108 RetainPtr<CFURLRef> absoluteURLRef = adoptCF(CFURLCopyAbsoluteURL(failingURL)); 109 109 if (absoluteURLRef.get()) { 110 // FIXME: CFURLGetString returns a normalized URL which is different from what is actually used by CFNetwork. 111 // We should use CFURLGetBytes instead. 110 112 failingURLString = CFURLGetString(absoluteURLRef.get()); 111 113 m_failingURL = String(failingURLString); -
trunk/Source/WebKit2/ChangeLog
r150838 r150853 1 2013-05-28 Alexey Proskuryakov <ap@apple.com> 2 3 Freeze when loading a particular page on washingtonpost.com with NetworkProcess enabled 4 https://bugs.webkit.org/show_bug.cgi?id=116887 5 <rdar://problem/12965959> 6 7 Reviewed by Darin Adler. 8 9 * Shared/cf/ArgumentCodersCF.cpp: 10 (CoreIPC::encode): 11 (CoreIPC::decode): 12 Fix for the bug: use good shared WebCore code to manipulate CFURLs. Also, added 13 a FIXME about empty URLs. 14 15 * Shared/API/c/cf/WKURLCF.cpp: (WKURLCreateWithCFURL): Fixed to not use 16 CFURLGetString, as that could prevent loading certain resources, like ones with 17 curly braces in resource specifiers. We want KURL normalization, not CFURL one. 18 1 19 2013-05-28 Tim Horton <timothy_horton@apple.com> 2 20 -
trunk/Source/WebKit2/Shared/API/c/cf/WKURLCF.cpp
r130948 r150853 28 28 29 29 #include "WKAPICast.h" 30 #include <WebCore/CFURLExtras.h> 30 31 #include <wtf/PassRefPtr.h> 31 32 #include <wtf/RefPtr.h> 32 #include <wtf/RetainPtr.h>33 33 #include <wtf/text/CString.h> 34 34 #include <wtf/text/WTFString.h> … … 42 42 return 0; 43 43 44 String urlString(CFURLGetString(cfURL)); 45 return toCopiedURLAPI(urlString); 44 CString urlBytes; 45 getURLBytes(cfURL, urlBytes); 46 47 return toCopiedURLAPI(urlBytes.data()); 46 48 } 47 49 -
trunk/Source/WebKit2/Shared/cf/ArgumentCodersCF.cpp
r149255 r150853 30 30 #include "ArgumentEncoder.h" 31 31 #include "DataReference.h" 32 #include <WebCore/CFURLExtras.h> 32 33 #include <wtf/Vector.h> 33 34 … … 35 36 #import <Foundation/Foundation.h> 36 37 #endif 38 39 using namespace WebCore; 37 40 38 41 namespace CoreIPC { … … 501 504 encode(encoder, baseURL); 502 505 503 encode(encoder, CFURLGetString(url)); 506 URLCharBuffer urlBytes; 507 getURLBytes(url, urlBytes); 508 CoreIPC::DataReference dataReference(reinterpret_cast<const uint8_t*>(urlBytes.data()), urlBytes.size()); 509 encoder << dataReference; 504 510 } 505 511 … … 515 521 } 516 522 517 RetainPtr<CFStringRef> string;518 if (!decode (decoder, string))523 CoreIPC::DataReference urlBytes; 524 if (!decoder.decode(urlBytes)) 519 525 return false; 520 526 … … 522 528 // FIXME: Move this to ArgumentCodersCFMac.mm and change this file back to be C++ 523 529 // instead of Objective-C++. 524 if ( !CFStringGetLength(string.get())) {530 if (urlBytes.isEmpty()) { 525 531 // CFURL can't hold an empty URL, unlike NSURL. 532 // FIXME: This discards base URL, which seems incorrect. 526 533 result = reinterpret_cast<CFURLRef>([NSURL URLWithString:@""]); 527 534 return true; 528 535 } 529 536 #endif 530 531 CFURLRef url = CFURLCreateWithString(0, string.get(), baseURL.get()); 532 if (!url) 533 return false; 534 535 result = adoptCF(url); 536 return true; 537 538 result = createCFURLFromBuffer(reinterpret_cast<const char*>(urlBytes.data()), urlBytes.size(), baseURL.get()); 539 return result; 537 540 } 538 541
Note:
See TracChangeset
for help on using the changeset viewer.