Changeset 219076 in webkit
- Timestamp:
- Jul 3, 2017, 10:20:25 AM (8 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r219075 r219076 1 2017-07-03 Alex Christensen <achristensen@webkit.org> 2 3 REGRESSION(r215096) Queries of URLs with non-special schemes should not percent-encode single quotes 4 https://bugs.webkit.org/show_bug.cgi?id=174051 5 6 Reviewed by Tim Horton. 7 8 In r215096 I added ' to the set of characters to be percent-encoded in queries, 9 but for interoperability and compatibility we need to do this only for special schemes, like http. 10 11 Covered by new API tests. 12 13 * platform/URLParser.cpp: 14 (WebCore::isC0Control): 15 (WebCore::shouldPercentEncodeQueryByte): 16 (WebCore::URLParser::utf8QueryEncode): 17 (WebCore::URLParser::encodeQuery): 18 1 19 2017-07-03 Chris Fleizach <cfleizach@apple.com> 2 20 -
trunk/Source/WebCore/platform/URLParser.cpp
r219073 r219076 192 192 ForbiddenHost, // '%' 193 193 0, // '&' 194 QueryPercent, // '''194 0, // ''' 195 195 0, // '(' 196 196 0, // ')' … … 421 421 template<typename CharacterType> ALWAYS_INLINE static bool isValidSchemeCharacter(CharacterType character) { return character <= 'z' && characterClassTable[character] & ValidScheme; } 422 422 template<typename CharacterType> ALWAYS_INLINE static bool isForbiddenHostCodePoint(CharacterType character) { return character <= ']' && characterClassTable[character] & ForbiddenHost; } 423 static bool shouldPercentEncodeQueryByte(uint8_t byte) { return characterClassTable[byte] & QueryPercent; } 423 ALWAYS_INLINE static bool shouldPercentEncodeQueryByte(uint8_t byte, const bool& urlIsSpecial) 424 { 425 if (characterClassTable[byte] & QueryPercent) 426 return true; 427 if (byte == '\'' && urlIsSpecial) 428 return true; 429 return false; 430 } 424 431 425 432 template<typename CharacterType, URLParser::ReportSyntaxViolation reportSyntaxViolation> … … 579 586 UChar32 codePoint = *iterator; 580 587 if (LIKELY(isASCII(codePoint))) { 581 if (UNLIKELY(shouldPercentEncodeQueryByte(codePoint ))) {588 if (UNLIKELY(shouldPercentEncodeQueryByte(codePoint, m_urlIsSpecial))) { 582 589 syntaxViolation(iterator); 583 590 percentEncodeByte(codePoint); … … 599 606 for (int32_t i = 0; i < offset; ++i) { 600 607 auto byte = buffer[i]; 601 if (shouldPercentEncodeQueryByte(byte ))608 if (shouldPercentEncodeQueryByte(byte, m_urlIsSpecial)) 602 609 percentEncodeByte(byte); 603 610 else … … 627 634 break; 628 635 } 629 if (UNLIKELY(shouldPercentEncodeQueryByte(byte ))) {636 if (UNLIKELY(shouldPercentEncodeQueryByte(byte, m_urlIsSpecial))) { 630 637 syntaxViolation(iterator); 631 638 break; … … 640 647 ASSERT(m_didSeeSyntaxViolation); 641 648 uint8_t byte = data[i]; 642 if (shouldPercentEncodeQueryByte(byte ))649 if (shouldPercentEncodeQueryByte(byte, m_urlIsSpecial)) 643 650 percentEncodeByte(byte); 644 651 else -
trunk/Tools/ChangeLog
r219073 r219076 1 2017-07-03 Alex Christensen <achristensen@webkit.org> 2 3 REGRESSION(r215096) Queries of URLs with non-special schemes should not percent-encode single quotes 4 https://bugs.webkit.org/show_bug.cgi?id=174051 5 6 Reviewed by Tim Horton. 7 8 * TestWebKitAPI/Tests/WebCore/URLParser.cpp: 9 (TestWebKitAPI::TEST_F): 10 1 11 2017-07-03 Matt Lewis <jlewis3@apple.com> 2 12 -
trunk/Tools/TestWebKitAPI/Tests/WebCore/URLParser.cpp
r219073 r219076 1 /*1 /* 2 2 * Copyright (C) 2016 Apple Inc. All rights reserved. 3 3 * … … 1299 1299 checkURL(makeString("asdf://host/path?", withUmlauts, "#fragment"), "http://example.com/?doesntmatter", iso88591, {"asdf", "", "", "host", 0, "/path", "%C3%9C%D0%B0%D1%91", "fragment", "asdf://host/path?%C3%9C%D0%B0%D1%91#fragment"}); 1300 1300 1301 checkURL("http://host/?query=foo'bar", UTF8Encoding(), {"http", "", "", "host", 0, "/", "query=foo%27bar", "", "http://host/?query=foo%27bar"}); 1301 checkURL("http://host/pa'th?qu'ery#fr'agment", UTF8Encoding(), {"http", "", "", "host", 0, "/pa'th", "qu%27ery", "fr'agment", "http://host/pa'th?qu%27ery#fr'agment"}); 1302 checkURL("asdf://host/pa'th?qu'ery#fr'agment", UTF8Encoding(), {"asdf", "", "", "host", 0, "/pa'th", "qu'ery", "fr'agment", "asdf://host/pa'th?qu'ery#fr'agment"}); 1302 1303 // FIXME: Add more tests with other encodings and things like non-ascii characters, emoji and unmatched surrogate pairs. 1303 1304 }
Note:
See TracChangeset
for help on using the changeset viewer.