1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879
|
/*
* Copyright (C) 2023 The Chromium Authors.
* Copyright (C) 2023 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google LLC nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "HTMLDocumentParserFastPath.h"
#include "Document.h"
#include "DocumentFragment.h"
#include "ElementAncestorIteratorInlines.h"
#include "ElementTraversal.h"
#include "FragmentScriptingPermission.h"
#include "HTMLAnchorElement.h"
#include "HTMLBRElement.h"
#include "HTMLButtonElement.h"
#include "HTMLDivElement.h"
#include "HTMLEntityParser.h"
#include "HTMLInputElement.h"
#include "HTMLLIElement.h"
#include "HTMLLabelElement.h"
#include "HTMLNameCache.h"
#include "HTMLNames.h"
#include "HTMLOListElement.h"
#include "HTMLParagraphElement.h"
#include "HTMLSelectElement.h"
#include "HTMLSpanElement.h"
#include "HTMLUListElement.h"
#include "NodeName.h"
#include "ParsingUtilities.h"
#include "QualifiedName.h"
#include "Settings.h"
#include <span>
#include <wtf/Vector.h>
#include <wtf/text/AtomString.h>
#include <wtf/text/StringParsingBuffer.h>
namespace WebCore {
// Captures the potential outcomes for fast path html parser.
enum class HTMLFastPathResult : uint8_t {
Succeeded,
FailedTracingEnabled,
FailedParserContentPolicy,
FailedInForm,
FailedUnsupportedContextTag,
FailedOptionWithChild,
FailedDidntReachEndOfInput,
FailedContainsNull,
FailedParsingTagName,
FailedParsingQuotedAttributeValue,
FailedParsingUnquotedAttributeValue,
FailedParsingQuotedEscapedAttributeValue,
FailedParsingUnquotedEscapedAttributeValue,
FailedParsingCharacterReference,
FailedEndOfInputReached,
FailedParsingAttributes,
FailedParsingSpecificElements,
FailedParsingElement,
FailedUnsupportedTag,
FailedEndOfInputReachedForContainer,
FailedUnexpectedTagNameCloseState,
FailedEndTagNameMismatch,
FailedShadowRoots,
FailedOnAttribute,
FailedMaxDepth,
FailedBigText,
FailedCssPseudoDirEnabledAndDirAttributeDirty
};
template<typename CharacterType> static inline bool isQuoteCharacter(CharacterType character)
{
return character == '"' || character == '\'';
}
template<typename CharacterType> static inline bool isValidUnquotedAttributeValueChar(CharacterType character)
{
return isASCIIAlphanumeric(character) || character == '_' || character == '-';
}
// https://html.spec.whatwg.org/#syntax-attribute-name
template<typename CharacterType> static inline bool isValidAttributeNameChar(CharacterType character)
{
if (character == '=') // Early return for the most common way to end an attribute.
return false;
return isASCIIAlphanumeric(character) || character == '-';
}
template<typename CharacterType> static inline bool isCharAfterTagNameOrAttribute(CharacterType character)
{
return character == ' ' || character == '>' || isASCIIWhitespace(character) || character == '/';
}
template<typename CharacterType> static inline bool isCharAfterUnquotedAttribute(CharacterType character)
{
return character == ' ' || character == '>' || isASCIIWhitespace(character);
}
template<typename T> static bool insertInUniquedSortedVector(Vector<T>& vector, const T& value)
{
auto it = std::lower_bound(vector.begin(), vector.end(), value);
if (UNLIKELY(it != vector.end() && *it == value))
return false;
vector.insert(it - vector.begin(), value);
return true;
}
#define FOR_EACH_SUPPORTED_TAG(APPLY) \
APPLY(a, A) \
APPLY(b, B) \
APPLY(br, Br) \
APPLY(button, Button) \
APPLY(div, Div) \
APPLY(footer, Footer) \
APPLY(i, I) \
APPLY(input, Input) \
APPLY(li, Li) \
APPLY(label, Label) \
APPLY(option, Option) \
APPLY(ol, Ol) \
APPLY(p, P) \
APPLY(select, Select) \
APPLY(span, Span) \
APPLY(strong, Strong) \
APPLY(ul, Ul)
// This HTML parser is used as a fast-path for setting innerHTML.
// It is faster than the general parser by only supporting a subset of valid
// HTML. This way, it can be spec-compliant without following the algorithm
// described in the spec. Unsupported features or parse errors lead to bailout,
// falling back to the general HTML parser.
// It differs from the general HTML parser in the following ways.
//
// Implementation:
// - It uses recursive descent for better CPU branch prediction.
// - It merges tokenization with parsing.
// - Whenever possible, tokens are represented as subsequences of the original
// input, avoiding allocating memory for them.
//
// Restrictions:
// - No auto-closing of tags.
// - Wrong nesting of HTML elements (for example nested <p>) leads to bailout
// instead of fix-up.
// - No custom elements, no "is"-attribute.
// - Unquoted attribute names are very restricted.
// - Many tags are unsupported, but we could support more. For example, <table>
// because of the complex re-parenting rules
// - No '\0'. The handling of '\0' varies depending upon where it is found
// and in general the correct handling complicates things.
// - Fails if an attribute name starts with 'on'. Such attributes are generally
// events that may be fired. Allowing this could be problematic if the fast
// path fails. For example, the 'onload' event of an <img> would be called
// multiple times if parsing fails.
// - Fails if a text is encountered larger than Text::defaultLengthLimit. This
// requires special processing.
// - Fails if a deep hierarchy is encountered. This is both to avoid a crash,
// but also at a certain depth elements get added as siblings vs children (see
// use of Settings::defaultMaximumHTMLParserDOMTreeDepth).
// - Fails if an <img> is encountered. Image elements request the image early
// on, resulting in network connections. Additionally, loading the image
// may consume preloaded resources.
template<typename CharacterType>
class HTMLFastPathParser {
using CharacterSpan = std::span<const CharacterType>;
static_assert(std::is_same_v<CharacterType, UChar> || std::is_same_v<CharacterType, LChar>);
public:
HTMLFastPathParser(CharacterSpan source, Document& document, DocumentFragment& fragment)
: m_document(document)
, m_fragment(fragment)
, m_parsingBuffer(source.data(), source.size())
{
}
bool parse(Element& contextElement)
{
// This switch checks that the context element is supported and applies the
// same restrictions regarding content as the fast-path parser does for a
// corresponding nested tag.
// This is to ensure that we preserve correct HTML structure with respect
// to the context tag.
switch (contextElement.elementName()) {
#define TAG_CASE(TagName, TagClassName) \
case ElementNames::HTML::TagName: \
if constexpr (!TagInfo::TagClassName::isVoid) { \
parseCompleteInput<typename TagInfo::TagClassName>(); \
return !parsingFailed(); \
} \
break;
FOR_EACH_SUPPORTED_TAG(TAG_CASE)
default:
break;
#undef TAG_CASE
}
didFail(HTMLFastPathResult::FailedUnsupportedContextTag);
return false;
}
HTMLFastPathResult parseResult() const { return m_parseResult; }
private:
Document& m_document;
DocumentFragment& m_fragment;
StringParsingBuffer<CharacterType> m_parsingBuffer;
HTMLFastPathResult m_parseResult { HTMLFastPathResult::Succeeded };
bool m_insideOfTagA { false };
// Used to limit how deep a hierarchy can be created. Also note that
// HTMLConstructionSite ends up flattening when this depth is reached.
unsigned m_elementDepth { 0 };
// 32 matches that used by HTMLToken::Attribute.
Vector<CharacterType, 32> m_charBuffer;
Vector<UChar> m_ucharBuffer;
// The inline capacity matches HTMLToken::AttributeList.
Vector<Attribute, 10> m_attributeBuffer;
Vector<AtomStringImpl*> m_attributeNames;
enum class PermittedParents : uint8_t {
PhrasingOrFlowContent, // allowed in phrasing content or flow content
FlowContent, // only allowed in flow content, not in phrasing content
Special, // only allowed for special parents
};
enum class PhrasingContent : bool { No, Yes };
struct TagInfo {
template<typename T, PermittedParents parents>
struct Tag {
using HTMLElementClass = T;
static constexpr PermittedParents permittedParents = parents;
static Ref<HTMLElementClass> create(Document& document)
{
return HTMLElementClass::create(document);
}
static constexpr bool allowedInPhrasingOrFlowContent()
{
return permittedParents == PermittedParents::PhrasingOrFlowContent;
}
static constexpr bool allowedInFlowContent()
{
return permittedParents == PermittedParents::PhrasingOrFlowContent || permittedParents == PermittedParents::FlowContent;
}
};
template<typename T, PermittedParents parents>
struct VoidTag : Tag<T, parents> {
static constexpr bool isVoid = true;
};
template<typename T, PermittedParents parents>
struct ContainerTag : Tag<T, parents> {
static constexpr bool isVoid = false;
static RefPtr<HTMLElement> parseChild(HTMLFastPathParser& self)
{
return self.parseElement<PhrasingContent::No>();
}
};
// A tag that can only contain phrasing content. If a tag is considered phrasing content itself is decided by
// `allowedInPhrasingContent`.
template<typename T, PermittedParents parents>
struct ContainsPhrasingContentTag : ContainerTag<T, parents> {
static constexpr bool isVoid = false;
static RefPtr<HTMLElement> parseChild(HTMLFastPathParser& self)
{
return self.parseElement<PhrasingContent::Yes>();
}
};
struct A : ContainerTag<HTMLAnchorElement, PermittedParents::FlowContent> {
static constexpr ElementName tagName = ElementNames::HTML::a;
static constexpr CharacterType tagNameCharacters[] = { 'a' };
static RefPtr<HTMLElement> parseChild(HTMLFastPathParser& self)
{
ASSERT(!self.m_insideOfTagA);
self.m_insideOfTagA = true;
auto result = ContainerTag<HTMLAnchorElement, PermittedParents::FlowContent>::parseChild(self);
self.m_insideOfTagA = false;
return result;
}
};
struct AWithPhrasingContent : ContainsPhrasingContentTag<HTMLAnchorElement, PermittedParents::PhrasingOrFlowContent> {
static constexpr ElementName tagName = ElementNames::HTML::a;
static constexpr CharacterType tagNameCharacters[] = { 'a' };
static RefPtr<HTMLElement> parseChild(HTMLFastPathParser& self)
{
ASSERT(!self.m_insideOfTagA);
self.m_insideOfTagA = true;
auto result = ContainsPhrasingContentTag<HTMLAnchorElement, PermittedParents::PhrasingOrFlowContent>::parseChild(self);
self.m_insideOfTagA = false;
return result;
}
};
struct B : ContainsPhrasingContentTag<HTMLElement, PermittedParents::PhrasingOrFlowContent> {
static constexpr ElementName tagName = ElementNames::HTML::b;
static constexpr CharacterType tagNameCharacters[] = { 'b' };
static Ref<HTMLElement> create(Document& document)
{
return HTMLElement::create(HTMLNames::bTag, document);
}
};
struct Br : VoidTag<HTMLBRElement, PermittedParents::PhrasingOrFlowContent> {
static constexpr ElementName tagName = ElementNames::HTML::br;
static constexpr CharacterType tagNameCharacters[] = { 'b', 'r' };
};
struct Button : ContainsPhrasingContentTag<HTMLButtonElement, PermittedParents::PhrasingOrFlowContent> {
static constexpr ElementName tagName = ElementNames::HTML::button;
static constexpr CharacterType tagNameCharacters[] = { 'b', 'u', 't', 't', 'o', 'n' };
};
struct Div : ContainerTag<HTMLDivElement, PermittedParents::FlowContent> {
static constexpr ElementName tagName = ElementNames::HTML::div;
static constexpr CharacterType tagNameCharacters[] = { 'd', 'i', 'v' };
};
struct Footer : ContainerTag<HTMLElement, PermittedParents::FlowContent> {
static constexpr ElementName tagName = ElementNames::HTML::footer;
static constexpr CharacterType tagNameCharacters[] = { 'f', 'o', 'o', 't', 'e', 'r' };
static Ref<HTMLElement> create(Document& document)
{
return HTMLElement::create(HTMLNames::footerTag, document);
}
};
struct I : ContainsPhrasingContentTag<HTMLElement, PermittedParents::PhrasingOrFlowContent> {
static constexpr ElementName tagName = ElementNames::HTML::i;
static constexpr CharacterType tagNameCharacters[] = { 'i' };
static Ref<HTMLElement> create(Document& document)
{
return HTMLElement::create(HTMLNames::iTag, document);
}
};
struct Input : VoidTag<HTMLInputElement, PermittedParents::PhrasingOrFlowContent> {
static constexpr ElementName tagName = ElementNames::HTML::input;
static constexpr CharacterType tagNameCharacters[] = { 'i', 'n', 'p', 'u', 't' };
static Ref<HTMLInputElement> create(Document& document)
{
return HTMLInputElement::create(HTMLNames::inputTag, document, /* form */ nullptr, /* createdByParser */ true);
}
};
struct Li : ContainerTag<HTMLLIElement, PermittedParents::Special> {
static constexpr ElementName tagName = ElementNames::HTML::li;
static constexpr CharacterType tagNameCharacters[] = { 'l', 'i' };
};
struct Label : ContainsPhrasingContentTag<HTMLLabelElement, PermittedParents::PhrasingOrFlowContent> {
static constexpr ElementName tagName = ElementNames::HTML::label;
static constexpr CharacterType tagNameCharacters[] = { 'l', 'a', 'b', 'e', 'l' };
};
struct Option : ContainerTag<HTMLOptionElement, PermittedParents::Special> {
static constexpr ElementName tagName = ElementNames::HTML::option;
static constexpr CharacterType tagNameCharacters[] = { 'o', 'p', 't', 'i', 'o', 'n' };
static RefPtr<HTMLElement> parseChild(HTMLFastPathParser& self)
{
// <option> can only contain a text content.
return self.didFail(HTMLFastPathResult::FailedOptionWithChild, nullptr);
}
};
struct Ol : ContainerTag<HTMLOListElement, PermittedParents::FlowContent> {
static constexpr ElementName tagName = ElementNames::HTML::ol;
static constexpr CharacterType tagNameCharacters[] = { 'o', 'l' };
static RefPtr<HTMLElement> parseChild(HTMLFastPathParser& self)
{
return self.parseSpecificElements<Li>();
}
};
struct P : ContainsPhrasingContentTag<HTMLParagraphElement, PermittedParents::FlowContent> {
static constexpr ElementName tagName = ElementNames::HTML::p;
static constexpr CharacterType tagNameCharacters[] = { 'p' };
};
struct Select : ContainerTag<HTMLSelectElement, PermittedParents::PhrasingOrFlowContent> {
static constexpr ElementName tagName = ElementNames::HTML::select;
static constexpr CharacterType tagNameCharacters[] = { 's', 'e', 'l', 'e', 'c', 't' };
static RefPtr<HTMLElement> parseChild(HTMLFastPathParser& self)
{
return self.parseSpecificElements<Option>();
}
};
struct Span : ContainsPhrasingContentTag<HTMLSpanElement, PermittedParents::PhrasingOrFlowContent> {
static constexpr ElementName tagName = ElementNames::HTML::span;
static constexpr CharacterType tagNameCharacters[] = { 's', 'p', 'a', 'n' };
};
struct Strong : ContainsPhrasingContentTag<HTMLElement, PermittedParents::PhrasingOrFlowContent> {
static constexpr ElementName tagName = ElementNames::HTML::strong;
static constexpr CharacterType tagNameCharacters[] = { 's', 't', 'r', 'o', 'n', 'g' };
static Ref<HTMLElement> create(Document& document)
{
return HTMLElement::create(HTMLNames::strongTag, document);
}
};
struct Ul : ContainerTag<HTMLUListElement, PermittedParents::FlowContent> {
static constexpr ElementName tagName = ElementNames::HTML::ul;
static constexpr CharacterType tagNameCharacters[] = { 'u', 'l' };
static RefPtr<HTMLElement> parseChild(HTMLFastPathParser& self)
{
return self.parseSpecificElements<Li>();
}
};
};
template<typename ParentTag> void parseCompleteInput()
{
parseChildren<ParentTag>(m_fragment);
if (m_parsingBuffer.hasCharactersRemaining())
didFail(HTMLFastPathResult::FailedDidntReachEndOfInput);
}
// We first try to scan text as an unmodified subsequence of the input.
// However, if there are escape sequences, we have to copy the text to a
// separate buffer and we might go outside of `Char` range if we are in an
// `LChar` parser.
String scanText()
{
auto* start = m_parsingBuffer.position();
while (m_parsingBuffer.hasCharactersRemaining() && *m_parsingBuffer != '<') {
// '&' indicates escape sequences, '\r' might require
// https://infra.spec.whatwg.org/#normalize-newlines
if (*m_parsingBuffer == '&' || *m_parsingBuffer == '\r') {
m_parsingBuffer.setPosition(start);
return scanEscapedText();
}
if (UNLIKELY(*m_parsingBuffer == '\0'))
return didFail(HTMLFastPathResult::FailedContainsNull, String());
m_parsingBuffer.advance();
}
unsigned length = m_parsingBuffer.position() - start;
if (UNLIKELY(length >= Text::defaultLengthLimit))
return didFail(HTMLFastPathResult::FailedBigText, String());
return length ? String(start, length) : String();
}
// Slow-path of `scanText()`, which supports escape sequences by copying to a
// separate buffer.
String scanEscapedText()
{
m_ucharBuffer.resize(0);
while (m_parsingBuffer.hasCharactersRemaining() && *m_parsingBuffer != '<') {
if (*m_parsingBuffer == '&') {
scanHTMLCharacterReference(m_ucharBuffer);
if (parsingFailed())
return { };
} else if (*m_parsingBuffer == '\r') {
// Normalize "\r\n" to "\n" according to https://infra.spec.whatwg.org/#normalize-newlines.
m_parsingBuffer.advance();
if (m_parsingBuffer.hasCharactersRemaining() && *m_parsingBuffer == '\n')
m_parsingBuffer.advance();
m_ucharBuffer.append('\n');
} else if (UNLIKELY(*m_parsingBuffer == '\0'))
return didFail(HTMLFastPathResult::FailedContainsNull, String());
else
m_ucharBuffer.append(m_parsingBuffer.consume());
}
if (UNLIKELY(m_ucharBuffer.size() >= Text::defaultLengthLimit))
return didFail(HTMLFastPathResult::FailedBigText, String());
return m_ucharBuffer.isEmpty() ? String() : String(std::exchange(m_ucharBuffer, { }));
}
// Scan a tagName and convert to lowercase if necessary.
ElementName scanTagName()
{
auto* start = m_parsingBuffer.position();
skipWhile<isASCIILower>(m_parsingBuffer);
if (m_parsingBuffer.atEnd() || !isCharAfterTagNameOrAttribute(*m_parsingBuffer)) {
// Try parsing a case-insensitive tagName.
m_charBuffer.resize(0);
m_parsingBuffer.setPosition(start);
while (m_parsingBuffer.hasCharactersRemaining()) {
auto c = *m_parsingBuffer;
if (isASCIIUpper(c))
c = toASCIILowerUnchecked(c);
else if (!isASCIILower(c))
break;
m_parsingBuffer.advance();
m_charBuffer.append(c);
}
if (m_parsingBuffer.atEnd() || !isCharAfterTagNameOrAttribute(*m_parsingBuffer))
return didFail(HTMLFastPathResult::FailedParsingTagName, ElementName::Unknown);
skipWhile<isASCIIWhitespace>(m_parsingBuffer);
return findHTMLElementName({ m_charBuffer.data(), m_charBuffer.size() });
}
auto tagName = findHTMLElementName({ start, static_cast<size_t>(m_parsingBuffer.position() - start) });
skipWhile<isASCIIWhitespace>(m_parsingBuffer);
return tagName;
}
QualifiedName scanAttributeName()
{
// First look for all lower case. This path doesn't require any mapping of
// input. This path could handle other valid attribute name chars, but they
// are not as common, so it only looks for lowercase.
auto* start = m_parsingBuffer.position();
skipWhile<isASCIILower>(m_parsingBuffer);
if (UNLIKELY(m_parsingBuffer.atEnd()))
return didFail(HTMLFastPathResult::FailedEndOfInputReached, nullQName());
CharacterSpan attributeName;
if (UNLIKELY(isValidAttributeNameChar(*m_parsingBuffer))) {
// At this point name does not contain lowercase. It may contain upper-case,
// which requires mapping. Assume it does.
m_parsingBuffer.setPosition(start);
m_charBuffer.resize(0);
// isValidAttributeNameChar() returns false if end of input is reached.
do {
auto c = m_parsingBuffer.consume();
if (isASCIIUpper(c))
c = toASCIILowerUnchecked(c);
m_charBuffer.append(c);
} while (m_parsingBuffer.hasCharactersRemaining() && isValidAttributeNameChar(*m_parsingBuffer));
attributeName = m_charBuffer.span();
} else
attributeName = { start, static_cast<size_t>(m_parsingBuffer.position() - start) };
if (attributeName.empty())
return nullQName();
if (attributeName.size() > 2 && attributeName[0] == 'o' && attributeName[1] == 'n') {
// These attributes likely contain script that may be executed at random
// points, which could cause problems if parsing via the fast path
// fails. For example, an image's onload event.
return nullQName();
}
if (attributeName.size() == 2 && attributeName[0] == 'i' && attributeName[1] == 's')
return nullQName();
return HTMLNameCache::makeAttributeQualifiedName(attributeName);
}
AtomString scanAttributeValue()
{
skipWhile<isASCIIWhitespace>(m_parsingBuffer);
auto* start = m_parsingBuffer.position();
size_t length = 0;
if (m_parsingBuffer.hasCharactersRemaining() && isQuoteCharacter(*m_parsingBuffer)) {
auto quoteChar = m_parsingBuffer.consume();
start = m_parsingBuffer.position();
for (; m_parsingBuffer.hasCharactersRemaining() && *m_parsingBuffer != quoteChar; m_parsingBuffer.advance()) {
if (*m_parsingBuffer == '&' || *m_parsingBuffer == '\r') {
m_parsingBuffer.setPosition(start - 1);
return scanEscapedAttributeValue();
}
}
if (m_parsingBuffer.atEnd())
return didFail(HTMLFastPathResult::FailedParsingQuotedAttributeValue, emptyAtom());
length = m_parsingBuffer.position() - start;
if (m_parsingBuffer.consume() != quoteChar)
return didFail(HTMLFastPathResult::FailedParsingQuotedAttributeValue, emptyAtom());
} else {
skipWhile<isValidUnquotedAttributeValueChar>(m_parsingBuffer);
length = m_parsingBuffer.position() - start;
if (m_parsingBuffer.atEnd() || !isCharAfterUnquotedAttribute(*m_parsingBuffer))
return didFail(HTMLFastPathResult::FailedParsingUnquotedAttributeValue, emptyAtom());
}
return HTMLNameCache::makeAttributeValue({ start, length });
}
// Slow path for scanning an attribute value. Used for special cases such
// as '&' and '\r'.
AtomString scanEscapedAttributeValue()
{
skipWhile<isASCIIWhitespace>(m_parsingBuffer);
m_ucharBuffer.resize(0);
if (UNLIKELY(!m_parsingBuffer.hasCharactersRemaining() || !isQuoteCharacter(*m_parsingBuffer)))
return didFail(HTMLFastPathResult::FailedParsingUnquotedEscapedAttributeValue, emptyAtom());
auto quoteChar = m_parsingBuffer.consume();
if (m_parsingBuffer.hasCharactersRemaining() && *m_parsingBuffer != quoteChar) {
if (parsingFailed())
return emptyAtom();
auto c = *m_parsingBuffer;
if (c == '&')
scanHTMLCharacterReference(m_ucharBuffer);
else if (c == '\r') {
m_parsingBuffer.advance();
// Normalize "\r\n" to "\n" according to https://infra.spec.whatwg.org/#normalize-newlines.
if (m_parsingBuffer.hasCharactersRemaining() && *m_parsingBuffer == '\n')
m_parsingBuffer.advance();
m_ucharBuffer.append('\n');
} else {
m_ucharBuffer.append(c);
m_parsingBuffer.advance();
}
}
if (UNLIKELY(m_parsingBuffer.atEnd() || m_parsingBuffer.consume() != quoteChar))
return didFail(HTMLFastPathResult::FailedParsingQuotedEscapedAttributeValue, emptyAtom());
return HTMLNameCache::makeAttributeValue({ m_ucharBuffer.data(), m_ucharBuffer.size() });
}
void scanHTMLCharacterReference(Vector<UChar>& out)
{
ASSERT(*m_parsingBuffer == '&');
m_parsingBuffer.advance();
if (LIKELY(m_parsingBuffer.lengthRemaining() >= 2)) {
if (auto entity = consumeHTMLEntity(m_parsingBuffer); !entity.failed()) {
out.append(entity.span());
return;
}
}
out.append('&');
}
bool parsingFailed() const { return m_parseResult != HTMLFastPathResult::Succeeded; }
void didFail(HTMLFastPathResult result)
{
if (m_parseResult == HTMLFastPathResult::Succeeded)
m_parseResult = result;
}
template<typename ReturnValueType> ReturnValueType didFail(HTMLFastPathResult result, ReturnValueType returnValue)
{
didFail(result);
return returnValue;
}
template<typename ParentTag> void parseChildren(ContainerNode& parent)
{
while (true) {
auto text = scanText();
if (parsingFailed())
return;
if (!text.isNull())
parent.parserAppendChild(Text::create(m_document, WTFMove(text)));
if (m_parsingBuffer.atEnd())
return;
ASSERT(*m_parsingBuffer == '<');
m_parsingBuffer.advance();
if (m_parsingBuffer.hasCharactersRemaining() && *m_parsingBuffer == '/') {
// We assume that we found the closing tag. The tagName will be checked by the caller `parseContainerElement()`.
return;
}
if (++m_elementDepth == Settings::defaultMaximumHTMLParserDOMTreeDepth)
return didFail(HTMLFastPathResult::FailedMaxDepth);
auto child = ParentTag::parseChild(*this);
--m_elementDepth;
if (parsingFailed())
return;
ASSERT(child);
parent.parserAppendChild(*child);
}
}
void parseAttributes(HTMLElement& parent)
{
m_attributeBuffer.resize(0);
m_attributeNames.resize(0);
bool hasDuplicateAttributes = false;
while (true) {
auto attributeName = scanAttributeName();
if (attributeName == nullQName()) {
if (m_parsingBuffer.hasCharactersRemaining()) {
if (*m_parsingBuffer == '>') {
m_parsingBuffer.advance();
break;
}
if (*m_parsingBuffer == '/') {
m_parsingBuffer.advance();
skipWhile<isASCIIWhitespace>(m_parsingBuffer);
if (m_parsingBuffer.atEnd() || m_parsingBuffer.consume() != '>')
return didFail(HTMLFastPathResult::FailedParsingAttributes);
break;
}
}
return didFail(HTMLFastPathResult::FailedParsingAttributes);
}
skipWhile<isASCIIWhitespace>(m_parsingBuffer);
AtomString attributeValue { emptyAtom() };
if (skipExactly(m_parsingBuffer, '=')) {
attributeValue = scanAttributeValue();
skipWhile<isASCIIWhitespace>(m_parsingBuffer);
}
if (UNLIKELY(!insertInUniquedSortedVector(m_attributeNames, attributeName.localName().impl()))) {
hasDuplicateAttributes = true;
continue;
}
m_attributeBuffer.append(Attribute { WTFMove(attributeName), WTFMove(attributeValue) });
}
parent.parserSetAttributes(m_attributeBuffer);
if (UNLIKELY(hasDuplicateAttributes))
parent.setHasDuplicateAttribute(true);
}
template<typename... Tags> RefPtr<HTMLElement> parseSpecificElements()
{
auto tagName = scanTagName();
return parseSpecificElements<Tags...>(tagName);
}
template<void* = nullptr> RefPtr<HTMLElement> parseSpecificElements(ElementName)
{
return didFail(HTMLFastPathResult::FailedParsingSpecificElements, nullptr);
}
template<typename Tag, typename... OtherTags> RefPtr<HTMLElement> parseSpecificElements(ElementName tagName)
{
if (tagName == Tag::tagName)
return parseElementAfterTagName<Tag>();
return parseSpecificElements<OtherTags...>(tagName);
}
template<PhrasingContent phrasingContent> RefPtr<HTMLElement> parseElement()
{
auto tagName = scanTagName();
// HTML has complicated rules around auto-closing tags and re-parenting
// DOM nodes. We avoid complications with auto-closing rules by disallowing
// certain nesting. In particular, we bail out if non-phrasing-content
// elements are nested into elements that require phrasing content.
// Similarly, we disallow nesting <a> tags. But tables for example have
// complex re-parenting rules that cannot be captured in this way, so we
// cannot support them.
switch (tagName) {
#define TAG_CASE(TagName, TagClassName) \
case ElementNames::HTML::TagName: \
if constexpr (std::is_same_v<typename TagInfo::A, typename TagInfo::TagClassName>) { \
/* <a> tags must not be nested, because HTML parsing would auto-close */ \
/* the outer one when encountering a nested one. */ \
if (!m_insideOfTagA) { \
if constexpr (phrasingContent == PhrasingContent::No) \
return parseElementAfterTagName<typename TagInfo::A>(); \
else \
return parseElementAfterTagName<typename TagInfo::AWithPhrasingContent>(); \
} \
} else if constexpr (phrasingContent == PhrasingContent::No ? TagInfo::TagClassName::allowedInFlowContent() : TagInfo::TagClassName::allowedInPhrasingOrFlowContent()) \
return parseElementAfterTagName<typename TagInfo::TagClassName>(); \
break;
FOR_EACH_SUPPORTED_TAG(TAG_CASE)
#undef TAG_CASE
default:
break;
}
return didFail(HTMLFastPathResult::FailedUnsupportedTag, nullptr);
}
template<typename Tag> Ref<typename Tag::HTMLElementClass> parseElementAfterTagName()
{
if constexpr (Tag::isVoid)
return parseVoidElement(Tag::create(m_document));
else
return parseContainerElement<Tag>(Tag::create(m_document));
}
template<typename Tag> Ref<typename Tag::HTMLElementClass> parseContainerElement(Ref<typename Tag::HTMLElementClass>&& element)
{
parseAttributes(element);
if (parsingFailed())
return WTFMove(element);
element->beginParsingChildren();
parseChildren<Tag>(element);
if (parsingFailed() || m_parsingBuffer.atEnd())
return didFail(HTMLFastPathResult::FailedEndOfInputReachedForContainer, element);
// parseChildren<Tag>(element) stops after the (hopefully) closing tag's `<`
// and fails if the the current char is not '/'.
ASSERT(*m_parsingBuffer == '/');
m_parsingBuffer.advance();
if (UNLIKELY(!skipCharactersExactly(m_parsingBuffer, Tag::tagNameCharacters))) {
if (!skipLettersExactlyIgnoringASCIICase(m_parsingBuffer, Tag::tagNameCharacters))
return didFail(HTMLFastPathResult::FailedEndTagNameMismatch, element);
}
skipWhile<isASCIIWhitespace>(m_parsingBuffer);
if (m_parsingBuffer.atEnd() || m_parsingBuffer.consume() != '>')
return didFail(HTMLFastPathResult::FailedUnexpectedTagNameCloseState, element);
element->finishParsingChildren();
return WTFMove(element);
}
template<typename HTMLElementType> Ref<HTMLElementType> parseVoidElement(Ref<HTMLElementType>&& element)
{
parseAttributes(element);
if (!parsingFailed()) {
element->beginParsingChildren();
element->finishParsingChildren();
}
return WTFMove(element);
}
};
static bool canUseFastPath(Element& contextElement, OptionSet<ParserContentPolicy> policy)
{
// We could probably allow other content policies too, as we do not support scripts or plugins anyway.
if (!policy.contains(ParserContentPolicy::AllowScriptingContent))
return false;
// If we are within a form element, we would need to create associations, which we do not. Therefore, we do not
// support this case. See HTMLConstructionSite::initFragmentParsing() and HTMLConstructionSite::createElement()
// for the corresponding code on the slow-path.
if (!contextElement.document().isTemplateDocument() && lineageOfType<HTMLFormElement>(contextElement).first())
return false;
return true;
}
template<typename CharacterType>
static bool tryFastParsingHTMLFragmentImpl(const std::span<const CharacterType>& source, Document& document, DocumentFragment& fragment, Element& contextElement)
{
HTMLFastPathParser parser { source, document, fragment };
bool success = parser.parse(contextElement);
if (!success && fragment.hasChildNodes())
fragment.removeChildren();
return success;
}
bool tryFastParsingHTMLFragment(const String& source, Document& document, DocumentFragment& fragment, Element& contextElement, OptionSet<ParserContentPolicy> policy)
{
if (!canUseFastPath(contextElement, policy))
return false;
if (source.is8Bit())
return tryFastParsingHTMLFragmentImpl(source.span8(), document, fragment, contextElement);
return tryFastParsingHTMLFragmentImpl(source.span16(), document, fragment, contextElement);
}
#undef FOR_EACH_SUPPORTED_TAG
} // namespace WebCore
|