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
|
/*
* Copyright (C) 2010-2023 Apple Inc. All rights reserved.
* Copyright (C) 2014 Google 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:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS 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 APPLE INC. OR ITS 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 "HTMLParserIdioms.h"
#include "Decimal.h"
#include "ParsingUtilities.h"
#include "QualifiedName.h"
#include <limits>
#include <wtf/MathExtras.h>
#include <wtf/URL.h>
#include <wtf/Vector.h>
#include <wtf/dtoa.h>
#if PLATFORM(COCOA)
#include <wtf/cocoa/RuntimeApplicationChecksCocoa.h>
#endif
namespace WebCore {
String serializeForNumberType(const Decimal& number)
{
if (number.isZero()) {
// Decimal::toString appends exponent, e.g. "0e-18"
return number.isNegative() ? "-0"_s : "0"_s;
}
return number.toString();
}
String serializeForNumberType(double number)
{
// According to HTML5, "the best representation of the number n as a floating
// point number" is a string produced by applying ToString() to n.
return String::number(number);
}
Decimal parseToDecimalForNumberType(StringView string, const Decimal& fallbackValue)
{
// https://html.spec.whatwg.org/#floating-point-numbers and parseToDoubleForNumberType
if (string.isEmpty())
return fallbackValue;
// String::toDouble() accepts leading + and whitespace characters, which are not valid here.
const UChar firstCharacter = string[0];
if (firstCharacter != '-' && firstCharacter != '.' && !isASCIIDigit(firstCharacter))
return fallbackValue;
const Decimal value = Decimal::fromString(string);
if (!value.isFinite())
return fallbackValue;
// Numbers are considered finite IEEE 754 Double-precision floating point values.
const Decimal doubleMax = Decimal::fromDouble(std::numeric_limits<double>::max());
if (value < -doubleMax || value > doubleMax)
return fallbackValue;
// We return +0 for -0 case.
return value.isZero() ? Decimal(0) : value;
}
Decimal parseToDecimalForNumberType(StringView string)
{
return parseToDecimalForNumberType(string, Decimal::nan());
}
double parseToDoubleForNumberType(StringView string, double fallbackValue)
{
// https://html.spec.whatwg.org/#floating-point-numbers
if (string.isEmpty())
return fallbackValue;
// String::toDouble() accepts leading + and whitespace characters, which are not valid here.
UChar firstCharacter = string[0];
if (firstCharacter != '-' && firstCharacter != '.' && !isASCIIDigit(firstCharacter))
return fallbackValue;
bool allowStringsThatEndWithFullStop = false;
#if PLATFORM(COCOA)
if (!linkedOnOrAfterSDKWithBehavior(SDKAlignedBehavior::DoesNotParseStringEndingWithFullStopAsFloatingPointNumber))
allowStringsThatEndWithFullStop = true;
#endif
if (string.endsWith('.') && !allowStringsThatEndWithFullStop)
return fallbackValue;
bool valid = false;
double value = string.toDouble(valid);
if (!valid)
return fallbackValue;
// NaN and infinity are considered valid by StringView::toDouble, but not valid here.
if (!std::isfinite(value))
return fallbackValue;
// Numbers are considered finite IEEE 754 Double-precision floating point values.
ASSERT(-std::numeric_limits<double>::max() <= value || value < std::numeric_limits<double>::max());
// The following expression converts -0 to +0.
return value ? value : 0;
}
double parseToDoubleForNumberType(StringView string)
{
return parseToDoubleForNumberType(string, std::numeric_limits<double>::quiet_NaN());
}
template <typename CharacterType>
static Expected<int, HTMLIntegerParsingError> parseHTMLIntegerInternal(const CharacterType* position, const CharacterType* end)
{
while (position < end && isASCIIWhitespace(*position))
++position;
if (position == end)
return makeUnexpected(HTMLIntegerParsingError::Other);
bool isNegative = false;
if (*position == '-') {
isNegative = true;
++position;
} else if (*position == '+')
++position;
if (position == end || !isASCIIDigit(*position))
return makeUnexpected(HTMLIntegerParsingError::Other);
constexpr int intMax = std::numeric_limits<int>::max();
constexpr int base = 10;
constexpr int maxMultiplier = intMax / base;
unsigned result = 0;
do {
int digitValue = *position - '0';
if (result > maxMultiplier || (result == maxMultiplier && digitValue > (intMax % base) + isNegative))
return makeUnexpected(isNegative ? HTMLIntegerParsingError::NegativeOverflow : HTMLIntegerParsingError::PositiveOverflow);
result = base * result + digitValue;
++position;
} while (position < end && isASCIIDigit(*position));
return isNegative ? -result : result;
}
// https://html.spec.whatwg.org/multipage/infrastructure.html#rules-for-parsing-integers
Expected<int, HTMLIntegerParsingError> parseHTMLInteger(StringView input)
{
unsigned length = input.length();
if (!length)
return makeUnexpected(HTMLIntegerParsingError::Other);
if (LIKELY(input.is8Bit())) {
auto* start = input.characters8();
return parseHTMLIntegerInternal(start, start + length);
}
auto* start = input.characters16();
return parseHTMLIntegerInternal(start, start + length);
}
// https://html.spec.whatwg.org/multipage/infrastructure.html#rules-for-parsing-non-negative-integers
Expected<unsigned, HTMLIntegerParsingError> parseHTMLNonNegativeInteger(StringView input)
{
auto optionalSignedResult = parseHTMLInteger(input);
if (!optionalSignedResult)
return makeUnexpected(WTFMove(optionalSignedResult.error()));
if (optionalSignedResult.value() < 0)
return makeUnexpected(HTMLIntegerParsingError::NegativeOverflow);
return static_cast<unsigned>(optionalSignedResult.value());
}
template <typename CharacterType>
static std::optional<int> parseValidHTMLNonNegativeIntegerInternal(const CharacterType* position, const CharacterType* end)
{
// A string is a valid non-negative integer if it consists of one or more ASCII digits.
for (auto* c = position; c < end; ++c) {
if (!isASCIIDigit(*c))
return std::nullopt;
}
auto optionalSignedValue = parseHTMLIntegerInternal(position, end);
if (!optionalSignedValue || optionalSignedValue.value() < 0)
return std::nullopt;
return optionalSignedValue.value();
}
// https://html.spec.whatwg.org/#valid-non-negative-integer
std::optional<int> parseValidHTMLNonNegativeInteger(StringView input)
{
if (input.isEmpty())
return std::nullopt;
if (LIKELY(input.is8Bit())) {
auto* start = input.characters8();
return parseValidHTMLNonNegativeIntegerInternal(start, start + input.length());
}
auto* start = input.characters16();
return parseValidHTMLNonNegativeIntegerInternal(start, start + input.length());
}
template <typename CharacterType>
static std::optional<double> parseValidHTMLFloatingPointNumberInternal(const CharacterType* position, size_t length)
{
ASSERT(length > 0);
// parseDouble() allows the string to start with a '+' or to end with a '.' but those
// are not valid floating point numbers as per HTML.
if (*position == '+' || *(position + length - 1) == '.')
return std::nullopt;
size_t parsedLength = 0;
double number = parseDouble(position, length, parsedLength);
return parsedLength == length && std::isfinite(number) ? number : std::optional<double>();
}
// https://html.spec.whatwg.org/#valid-floating-point-number
std::optional<double> parseValidHTMLFloatingPointNumber(StringView input)
{
if (input.isEmpty())
return std::nullopt;
if (LIKELY(input.is8Bit())) {
auto* start = input.characters8();
return parseValidHTMLFloatingPointNumberInternal(start, input.length());
}
auto* start = input.characters16();
return parseValidHTMLFloatingPointNumberInternal(start, input.length());
}
static inline bool isHTMLSpaceOrDelimiter(UChar character)
{
return isASCIIWhitespace(character) || character == ',' || character == ';';
}
static inline bool isNumberStart(UChar character)
{
return isASCIIDigit(character) || character == '.' || character == '-';
}
// https://html.spec.whatwg.org/multipage/infrastructure.html#rules-for-parsing-floating-point-number-values
template <typename CharacterType>
static Vector<double> parseHTMLListOfOfFloatingPointNumberValuesInternal(const CharacterType* position, const CharacterType* end)
{
Vector<double> numbers;
// This skips past any leading delimiters.
while (position < end && isHTMLSpaceOrDelimiter(*position))
++position;
while (position < end) {
// This skips past leading garbage.
while (position < end && !(isHTMLSpaceOrDelimiter(*position) || isNumberStart(*position)))
++position;
const CharacterType* numberStart = position;
while (position < end && !isHTMLSpaceOrDelimiter(*position))
++position;
size_t parsedLength = 0;
double number = parseDouble(numberStart, position - numberStart, parsedLength);
numbers.append(parsedLength > 0 && std::isfinite(number) ? number : 0);
// This skips past the delimiter.
while (position < end && isHTMLSpaceOrDelimiter(*position))
++position;
}
return numbers;
}
Vector<double> parseHTMLListOfOfFloatingPointNumberValues(StringView input)
{
if (LIKELY(input.is8Bit())) {
auto* start = input.characters8();
return parseHTMLListOfOfFloatingPointNumberValuesInternal(start, start + input.length());
}
auto* start = input.characters16();
return parseHTMLListOfOfFloatingPointNumberValuesInternal(start, start + input.length());
}
static bool threadSafeEqual(const StringImpl& a, const StringImpl& b)
{
if (&a == &b)
return true;
if (a.hash() != b.hash())
return false;
return equal(a, b);
}
bool threadSafeMatch(const QualifiedName& a, const QualifiedName& b)
{
return threadSafeEqual(*a.localName().impl(), *b.localName().impl());
}
String parseCORSSettingsAttribute(const AtomString& value)
{
if (value.isNull())
return String();
if (equalLettersIgnoringASCIICase(value, "use-credentials"_s))
return "use-credentials"_s;
return "anonymous"_s;
}
// https://html.spec.whatwg.org/multipage/semantics.html#attr-meta-http-equiv-refresh
template <typename CharacterType>
static bool parseHTTPRefreshInternal(const CharacterType* position, const CharacterType* end, double& parsedDelay, String& parsedURL)
{
while (position < end && isASCIIWhitespace(*position))
++position;
unsigned time = 0;
const CharacterType* numberStart = position;
while (position < end && isASCIIDigit(*position))
++position;
StringView timeString(numberStart, position - numberStart);
if (timeString.isEmpty()) {
if (position >= end || *position != '.')
return false;
} else {
auto optionalNumber = parseHTMLNonNegativeInteger(timeString);
if (!optionalNumber)
return false;
time = optionalNumber.value();
}
while (position < end && (isASCIIDigit(*position) || *position == '.'))
++position;
if (position == end) {
parsedDelay = time;
return true;
}
if (*position != ';' && *position != ',' && !isASCIIWhitespace(*position))
return false;
parsedDelay = time;
while (position < end && isASCIIWhitespace(*position))
++position;
if (position < end && (*position == ';' || *position == ','))
++position;
while (position < end && isASCIIWhitespace(*position))
++position;
if (position == end)
return true;
if (*position == 'U' || *position == 'u') {
StringView url(position, end - position);
++position;
if (position < end && (*position == 'R' || *position == 'r'))
++position;
else {
parsedURL = url.toString();
return true;
}
if (position < end && (*position == 'L' || *position == 'l'))
++position;
else {
parsedURL = url.toString();
return true;
}
while (position < end && isASCIIWhitespace(*position))
++position;
if (position < end && *position == '=')
++position;
else {
parsedURL = url.toString();
return true;
}
while (position < end && isASCIIWhitespace(*position))
++position;
}
CharacterType quote;
if (position < end && (*position == '\'' || *position == '"')) {
quote = *position;
++position;
} else
quote = '\0';
StringView url(position, end - position);
if (quote != '\0') {
size_t index = url.find(quote);
if (index != notFound)
url = url.left(index);
}
parsedURL = url.toString();
return true;
}
bool parseMetaHTTPEquivRefresh(StringView input, double& delay, String& url)
{
if (LIKELY(input.is8Bit())) {
auto* start = input.characters8();
return parseHTTPRefreshInternal(start, start + input.length(), delay, url);
}
auto* start = input.characters16();
return parseHTTPRefreshInternal(start, start + input.length(), delay, url);
}
// https://html.spec.whatwg.org/#rules-for-parsing-a-hash-name-reference
AtomString parseHTMLHashNameReference(StringView usemap)
{
size_t numberSignIndex = usemap.find('#');
if (numberSignIndex == notFound)
return nullAtom();
return usemap.substring(numberSignIndex + 1).toAtomString();
}
struct HTMLDimensionParsingResult {
double number;
unsigned parsedLength;
};
template <typename CharacterType>
static std::optional<HTMLDimensionParsingResult> parseHTMLDimensionNumber(const CharacterType* position, unsigned length)
{
if (!length || !position)
return std::nullopt;
const auto* begin = position;
const auto* end = position + length;
skipWhile<isASCIIWhitespace>(position, end);
if (position == end)
return std::nullopt;
auto* start = position;
skipWhile<isASCIIDigit>(position, end);
if (start == position)
return std::nullopt;
if (skipExactly(position, end, '.'))
skipWhile<isASCIIDigit>(position, end);
size_t parsedLength = 0;
double number = parseDouble(start, position - start, parsedLength);
if (!(parsedLength && std::isfinite(number)))
return std::nullopt;
HTMLDimensionParsingResult result;
result.number = number;
result.parsedLength = position - begin;
return result;
}
enum class IsMultiLength : bool { No, Yes };
static std::optional<HTMLDimension> parseHTMLDimensionInternal(StringView dimensionString, IsMultiLength isMultiLength)
{
std::optional<HTMLDimensionParsingResult> result;
auto length = dimensionString.length();
if (dimensionString.is8Bit())
result = parseHTMLDimensionNumber(dimensionString.characters8(), length);
else
result = parseHTMLDimensionNumber(dimensionString.characters16(), length);
if (!result)
return std::nullopt;
// The relative_length is not supported, here to make sure number + * does not map to number
if (isMultiLength == IsMultiLength::Yes && result->parsedLength < length && dimensionString[result->parsedLength] == '*')
return std::nullopt;
HTMLDimension dimension;
dimension.number = result->number;
dimension.type = HTMLDimension::Type::Pixel;
if (result->parsedLength < dimensionString.length() && dimensionString[result->parsedLength] == '%')
dimension.type = HTMLDimension::Type::Percentage;
return dimension;
}
std::optional<HTMLDimension> parseHTMLDimension(StringView dimensionString)
{
return parseHTMLDimensionInternal(dimensionString, IsMultiLength::No);
}
std::optional<HTMLDimension> parseHTMLMultiLength(StringView multiLengthString)
{
return parseHTMLDimensionInternal(multiLengthString, IsMultiLength::Yes);
}
}
|