1 /* 2 * Copyright (C) 2006 Alexey Proskuryakov (ap (at) webkit.org) 3 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 4 * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ 5 * Copyright (C) 2009 Google Inc. All rights reserved. 6 * Copyright (C) 2011 Apple Inc. All Rights Reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 12 * 1. Redistributions of source code must retain the above copyright 13 * notice, this list of conditions and the following disclaimer. 14 * 2. Redistributions in binary form must reproduce the above copyright 15 * notice, this list of conditions and the following disclaimer in the 16 * documentation and/or other materials provided with the distribution. 17 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of 18 * its contributors may be used to endorse or promote products derived 19 * from this software without specific prior written permission. 20 * 21 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY 22 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 23 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 24 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY 25 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 26 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 27 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 28 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 31 */ 32 33 #include "config.h" 34 #include "core/platform/network/HTTPParsers.h" 35 36 #include "core/page/ContentSecurityPolicy.h" 37 #include "wtf/DateMath.h" 38 #include "wtf/text/CString.h" 39 #include "wtf/text/StringBuilder.h" 40 #include "wtf/text/WTFString.h" 41 #include "wtf/unicode/CharacterNames.h" 42 43 using namespace WTF; 44 45 namespace WebCore { 46 47 // true if there is more to parse, after incrementing pos past whitespace. 48 // Note: Might return pos == str.length() 49 static inline bool skipWhiteSpace(const String& str, unsigned& pos, bool fromHttpEquivMeta) 50 { 51 unsigned len = str.length(); 52 53 if (fromHttpEquivMeta) { 54 while (pos < len && str[pos] <= ' ') 55 ++pos; 56 } else { 57 while (pos < len && (str[pos] == '\t' || str[pos] == ' ')) 58 ++pos; 59 } 60 61 return pos < len; 62 } 63 64 // Returns true if the function can match the whole token (case insensitive) 65 // incrementing pos on match, otherwise leaving pos unchanged. 66 // Note: Might return pos == str.length() 67 static inline bool skipToken(const String& str, unsigned& pos, const char* token) 68 { 69 unsigned len = str.length(); 70 unsigned current = pos; 71 72 while (current < len && *token) { 73 if (toASCIILower(str[current]) != *token++) 74 return false; 75 ++current; 76 } 77 78 if (*token) 79 return false; 80 81 pos = current; 82 return true; 83 } 84 85 // True if the expected equals sign is seen and there is more to follow. 86 static inline bool skipEquals(const String& str, unsigned &pos) 87 { 88 return skipWhiteSpace(str, pos, false) && str[pos++] == '=' && skipWhiteSpace(str, pos, false); 89 } 90 91 // True if a value present, incrementing pos to next space or semicolon, if any. 92 // Note: might return pos == str.length(). 93 static inline bool skipValue(const String& str, unsigned& pos) 94 { 95 unsigned start = pos; 96 unsigned len = str.length(); 97 while (pos < len) { 98 if (str[pos] == ' ' || str[pos] == '\t' || str[pos] == ';') 99 break; 100 ++pos; 101 } 102 return pos != start; 103 } 104 105 bool isValidHTTPHeaderValue(const String& name) 106 { 107 // FIXME: This should really match name against 108 // field-value in section 4.2 of RFC 2616. 109 110 return !name.contains('\r') && !name.contains('\n'); 111 } 112 113 // See RFC 2616, Section 2.2. 114 bool isValidHTTPToken(const String& characters) 115 { 116 if (characters.isEmpty()) 117 return false; 118 for (unsigned i = 0; i < characters.length(); ++i) { 119 UChar c = characters[i]; 120 if (c <= 0x20 || c >= 0x7F 121 || c == '(' || c == ')' || c == '<' || c == '>' || c == '@' 122 || c == ',' || c == ';' || c == ':' || c == '\\' || c == '"' 123 || c == '/' || c == '[' || c == ']' || c == '?' || c == '=' 124 || c == '{' || c == '}') 125 return false; 126 } 127 return true; 128 } 129 130 static const size_t maxInputSampleSize = 128; 131 static String trimInputSample(const char* p, size_t length) 132 { 133 String s = String(p, std::min<size_t>(length, maxInputSampleSize)); 134 if (length > maxInputSampleSize) 135 s.append(horizontalEllipsis); 136 return s; 137 } 138 139 ContentDispositionType contentDispositionType(const String& contentDisposition) 140 { 141 if (contentDisposition.isEmpty()) 142 return ContentDispositionNone; 143 144 Vector<String> parameters; 145 contentDisposition.split(';', parameters); 146 147 if (parameters.isEmpty()) 148 return ContentDispositionNone; 149 150 String dispositionType = parameters[0]; 151 dispositionType.stripWhiteSpace(); 152 153 if (equalIgnoringCase(dispositionType, "inline")) 154 return ContentDispositionInline; 155 156 // Some broken sites just send bogus headers like 157 // 158 // Content-Disposition: ; filename="file" 159 // Content-Disposition: filename="file" 160 // Content-Disposition: name="file" 161 // 162 // without a disposition token... screen those out. 163 if (!isValidHTTPToken(dispositionType)) 164 return ContentDispositionNone; 165 166 // We have a content-disposition of "attachment" or unknown. 167 // RFC 2183, section 2.8 says that an unknown disposition 168 // value should be treated as "attachment" 169 return ContentDispositionAttachment; 170 } 171 172 bool parseHTTPRefresh(const String& refresh, bool fromHttpEquivMeta, double& delay, String& url) 173 { 174 unsigned len = refresh.length(); 175 unsigned pos = 0; 176 177 if (!skipWhiteSpace(refresh, pos, fromHttpEquivMeta)) 178 return false; 179 180 while (pos != len && refresh[pos] != ',' && refresh[pos] != ';') 181 ++pos; 182 183 if (pos == len) { // no URL 184 url = String(); 185 bool ok; 186 delay = refresh.stripWhiteSpace().toDouble(&ok); 187 return ok; 188 } else { 189 bool ok; 190 delay = refresh.left(pos).stripWhiteSpace().toDouble(&ok); 191 if (!ok) 192 return false; 193 194 ++pos; 195 skipWhiteSpace(refresh, pos, fromHttpEquivMeta); 196 unsigned urlStartPos = pos; 197 if (refresh.find("url", urlStartPos, false) == urlStartPos) { 198 urlStartPos += 3; 199 skipWhiteSpace(refresh, urlStartPos, fromHttpEquivMeta); 200 if (refresh[urlStartPos] == '=') { 201 ++urlStartPos; 202 skipWhiteSpace(refresh, urlStartPos, fromHttpEquivMeta); 203 } else 204 urlStartPos = pos; // e.g. "Refresh: 0; url.html" 205 } 206 207 unsigned urlEndPos = len; 208 209 if (refresh[urlStartPos] == '"' || refresh[urlStartPos] == '\'') { 210 UChar quotationMark = refresh[urlStartPos]; 211 urlStartPos++; 212 while (urlEndPos > urlStartPos) { 213 urlEndPos--; 214 if (refresh[urlEndPos] == quotationMark) 215 break; 216 } 217 218 // https://bugs.webkit.org/show_bug.cgi?id=27868 219 // Sometimes there is no closing quote for the end of the URL even though there was an opening quote. 220 // If we looped over the entire alleged URL string back to the opening quote, just go ahead and use everything 221 // after the opening quote instead. 222 if (urlEndPos == urlStartPos) 223 urlEndPos = len; 224 } 225 226 url = refresh.substring(urlStartPos, urlEndPos - urlStartPos).stripWhiteSpace(); 227 return true; 228 } 229 } 230 231 double parseDate(const String& value) 232 { 233 return parseDateFromNullTerminatedCharacters(value.utf8().data()); 234 } 235 236 // FIXME: This function doesn't comply with RFC 6266. 237 // For example, this function doesn't handle the interaction between " and ; 238 // that arises from quoted-string, nor does this function properly unquote 239 // attribute values. Further this function appears to process parameter names 240 // in a case-sensitive manner. (There are likely other bugs as well.) 241 String filenameFromHTTPContentDisposition(const String& value) 242 { 243 Vector<String> keyValuePairs; 244 value.split(';', keyValuePairs); 245 246 unsigned length = keyValuePairs.size(); 247 for (unsigned i = 0; i < length; i++) { 248 size_t valueStartPos = keyValuePairs[i].find('='); 249 if (valueStartPos == notFound) 250 continue; 251 252 String key = keyValuePairs[i].left(valueStartPos).stripWhiteSpace(); 253 254 if (key.isEmpty() || key != "filename") 255 continue; 256 257 String value = keyValuePairs[i].substring(valueStartPos + 1).stripWhiteSpace(); 258 259 // Remove quotes if there are any 260 if (value[0] == '\"') 261 value = value.substring(1, value.length() - 2); 262 263 return value; 264 } 265 266 return String(); 267 } 268 269 String extractMIMETypeFromMediaType(const String& mediaType) 270 { 271 StringBuilder mimeType; 272 unsigned length = mediaType.length(); 273 mimeType.reserveCapacity(length); 274 for (unsigned i = 0; i < length; i++) { 275 UChar c = mediaType[i]; 276 277 if (c == ';') 278 break; 279 280 // While RFC 2616 does not allow it, other browsers allow multiple values in the HTTP media 281 // type header field, Content-Type. In such cases, the media type string passed here may contain 282 // the multiple values separated by commas. For now, this code ignores text after the first comma, 283 // which prevents it from simply failing to parse such types altogether. Later for better 284 // compatibility we could consider using the first or last valid MIME type instead. 285 // See https://bugs.webkit.org/show_bug.cgi?id=25352 for more discussion. 286 if (c == ',') 287 break; 288 289 // FIXME: The following is not correct. RFC 2616 allows linear white space before and 290 // after the MIME type, but not within the MIME type itself. And linear white space 291 // includes only a few specific ASCII characters; a small subset of isSpaceOrNewline. 292 // See https://bugs.webkit.org/show_bug.cgi?id=8644 for a bug tracking part of this. 293 if (isSpaceOrNewline(c)) 294 continue; 295 296 mimeType.append(c); 297 } 298 299 if (mimeType.length() == length) 300 return mediaType; 301 return mimeType.toString(); 302 } 303 304 String extractCharsetFromMediaType(const String& mediaType) 305 { 306 unsigned int pos, len; 307 findCharsetInMediaType(mediaType, pos, len); 308 return mediaType.substring(pos, len); 309 } 310 311 void findCharsetInMediaType(const String& mediaType, unsigned int& charsetPos, unsigned int& charsetLen, unsigned int start) 312 { 313 charsetPos = start; 314 charsetLen = 0; 315 316 size_t pos = start; 317 unsigned length = mediaType.length(); 318 319 while (pos < length) { 320 pos = mediaType.find("charset", pos, false); 321 if (pos == notFound || pos == 0) { 322 charsetLen = 0; 323 return; 324 } 325 326 // is what we found a beginning of a word? 327 if (mediaType[pos-1] > ' ' && mediaType[pos-1] != ';') { 328 pos += 7; 329 continue; 330 } 331 332 pos += 7; 333 334 // skip whitespace 335 while (pos != length && mediaType[pos] <= ' ') 336 ++pos; 337 338 if (mediaType[pos++] != '=') // this "charset" substring wasn't a parameter name, but there may be others 339 continue; 340 341 while (pos != length && (mediaType[pos] <= ' ' || mediaType[pos] == '"' || mediaType[pos] == '\'')) 342 ++pos; 343 344 // we don't handle spaces within quoted parameter values, because charset names cannot have any 345 unsigned endpos = pos; 346 while (pos != length && mediaType[endpos] > ' ' && mediaType[endpos] != '"' && mediaType[endpos] != '\'' && mediaType[endpos] != ';') 347 ++endpos; 348 349 charsetPos = pos; 350 charsetLen = endpos - pos; 351 return; 352 } 353 } 354 355 ContentSecurityPolicy::ReflectedXSSDisposition parseXSSProtectionHeader(const String& header, String& failureReason, unsigned& failurePosition, String& reportURL) 356 { 357 DEFINE_STATIC_LOCAL(String, failureReasonInvalidToggle, ("expected 0 or 1")); 358 DEFINE_STATIC_LOCAL(String, failureReasonInvalidSeparator, ("expected semicolon")); 359 DEFINE_STATIC_LOCAL(String, failureReasonInvalidEquals, ("expected equals sign")); 360 DEFINE_STATIC_LOCAL(String, failureReasonInvalidMode, ("invalid mode directive")); 361 DEFINE_STATIC_LOCAL(String, failureReasonInvalidReport, ("invalid report directive")); 362 DEFINE_STATIC_LOCAL(String, failureReasonDuplicateMode, ("duplicate mode directive")); 363 DEFINE_STATIC_LOCAL(String, failureReasonDuplicateReport, ("duplicate report directive")); 364 DEFINE_STATIC_LOCAL(String, failureReasonInvalidDirective, ("unrecognized directive")); 365 366 unsigned pos = 0; 367 368 if (!skipWhiteSpace(header, pos, false)) 369 return ContentSecurityPolicy::ReflectedXSSUnset; 370 371 if (header[pos] == '0') 372 return ContentSecurityPolicy::AllowReflectedXSS; 373 374 if (header[pos++] != '1') { 375 failureReason = failureReasonInvalidToggle; 376 return ContentSecurityPolicy::ReflectedXSSInvalid; 377 } 378 379 ContentSecurityPolicy::ReflectedXSSDisposition result = ContentSecurityPolicy::FilterReflectedXSS; 380 bool modeDirectiveSeen = false; 381 bool reportDirectiveSeen = false; 382 383 while (1) { 384 // At end of previous directive: consume whitespace, semicolon, and whitespace. 385 if (!skipWhiteSpace(header, pos, false)) 386 return result; 387 388 if (header[pos++] != ';') { 389 failureReason = failureReasonInvalidSeparator; 390 failurePosition = pos; 391 return ContentSecurityPolicy::ReflectedXSSInvalid; 392 } 393 394 if (!skipWhiteSpace(header, pos, false)) 395 return result; 396 397 // At start of next directive. 398 if (skipToken(header, pos, "mode")) { 399 if (modeDirectiveSeen) { 400 failureReason = failureReasonDuplicateMode; 401 failurePosition = pos; 402 return ContentSecurityPolicy::ReflectedXSSInvalid; 403 } 404 modeDirectiveSeen = true; 405 if (!skipEquals(header, pos)) { 406 failureReason = failureReasonInvalidEquals; 407 failurePosition = pos; 408 return ContentSecurityPolicy::ReflectedXSSInvalid; 409 } 410 if (!skipToken(header, pos, "block")) { 411 failureReason = failureReasonInvalidMode; 412 failurePosition = pos; 413 return ContentSecurityPolicy::ReflectedXSSInvalid; 414 } 415 result = ContentSecurityPolicy::BlockReflectedXSS; 416 } else if (skipToken(header, pos, "report")) { 417 if (reportDirectiveSeen) { 418 failureReason = failureReasonDuplicateReport; 419 failurePosition = pos; 420 return ContentSecurityPolicy::ReflectedXSSInvalid; 421 } 422 reportDirectiveSeen = true; 423 if (!skipEquals(header, pos)) { 424 failureReason = failureReasonInvalidEquals; 425 failurePosition = pos; 426 return ContentSecurityPolicy::ReflectedXSSInvalid; 427 } 428 size_t startPos = pos; 429 if (!skipValue(header, pos)) { 430 failureReason = failureReasonInvalidReport; 431 failurePosition = pos; 432 return ContentSecurityPolicy::ReflectedXSSInvalid; 433 } 434 reportURL = header.substring(startPos, pos - startPos); 435 failurePosition = startPos; // If later semantic check deems unacceptable. 436 } else { 437 failureReason = failureReasonInvalidDirective; 438 failurePosition = pos; 439 return ContentSecurityPolicy::ReflectedXSSInvalid; 440 } 441 } 442 } 443 444 ContentTypeOptionsDisposition parseContentTypeOptionsHeader(const String& header) 445 { 446 if (header.stripWhiteSpace().lower() == "nosniff") 447 return ContentTypeOptionsNosniff; 448 return ContentTypeOptionsNone; 449 } 450 451 String extractReasonPhraseFromHTTPStatusLine(const String& statusLine) 452 { 453 size_t spacePos = statusLine.find(' '); 454 // Remove status code from the status line. 455 spacePos = statusLine.find(' ', spacePos + 1); 456 return statusLine.substring(spacePos + 1); 457 } 458 459 XFrameOptionsDisposition parseXFrameOptionsHeader(const String& header) 460 { 461 XFrameOptionsDisposition result = XFrameOptionsNone; 462 463 if (header.isEmpty()) 464 return result; 465 466 Vector<String> headers; 467 header.split(',', headers); 468 469 for (size_t i = 0; i < headers.size(); i++) { 470 String currentHeader = headers[i].stripWhiteSpace(); 471 XFrameOptionsDisposition currentValue = XFrameOptionsNone; 472 if (equalIgnoringCase(currentHeader, "deny")) 473 currentValue = XFrameOptionsDeny; 474 else if (equalIgnoringCase(currentHeader, "sameorigin")) 475 currentValue = XFrameOptionsSameOrigin; 476 else if (equalIgnoringCase(currentHeader, "allowall")) 477 currentValue = XFrameOptionsAllowAll; 478 else 479 currentValue = XFrameOptionsInvalid; 480 481 if (result == XFrameOptionsNone) 482 result = currentValue; 483 else if (result != currentValue) 484 return XFrameOptionsConflict; 485 } 486 return result; 487 } 488 489 bool parseRange(const String& range, long long& rangeOffset, long long& rangeEnd, long long& rangeSuffixLength) 490 { 491 // The format of "Range" header is defined in RFC 2616 Section 14.35.1. 492 // http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.1 493 // We don't support multiple range requests. 494 495 rangeOffset = rangeEnd = rangeSuffixLength = -1; 496 497 // The "bytes" unit identifier should be present. 498 static const char bytesStart[] = "bytes="; 499 if (!range.startsWith(bytesStart, false)) 500 return false; 501 String byteRange = range.substring(sizeof(bytesStart) - 1); 502 503 // The '-' character needs to be present. 504 int index = byteRange.find('-'); 505 if (index == -1) 506 return false; 507 508 // If the '-' character is at the beginning, the suffix length, which specifies the last N bytes, is provided. 509 // Example: 510 // -500 511 if (!index) { 512 String suffixLengthString = byteRange.substring(index + 1).stripWhiteSpace(); 513 bool ok; 514 long long value = suffixLengthString.toInt64Strict(&ok); 515 if (ok) 516 rangeSuffixLength = value; 517 return true; 518 } 519 520 // Otherwise, the first-byte-position and the last-byte-position are provied. 521 // Examples: 522 // 0-499 523 // 500- 524 String firstBytePosStr = byteRange.left(index).stripWhiteSpace(); 525 bool ok; 526 long long firstBytePos = firstBytePosStr.toInt64Strict(&ok); 527 if (!ok) 528 return false; 529 530 String lastBytePosStr = byteRange.substring(index + 1).stripWhiteSpace(); 531 long long lastBytePos = -1; 532 if (!lastBytePosStr.isEmpty()) { 533 lastBytePos = lastBytePosStr.toInt64Strict(&ok); 534 if (!ok) 535 return false; 536 } 537 538 if (firstBytePos < 0 || !(lastBytePos == -1 || lastBytePos >= firstBytePos)) 539 return false; 540 541 rangeOffset = firstBytePos; 542 rangeEnd = lastBytePos; 543 return true; 544 } 545 546 // HTTP/1.1 - RFC 2616 547 // http://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html#sec5.1 548 // Request-Line = Method SP Request-URI SP HTTP-Version CRLF 549 size_t parseHTTPRequestLine(const char* data, size_t length, String& failureReason, String& method, String& url, HTTPVersion& httpVersion) 550 { 551 method = String(); 552 url = String(); 553 httpVersion = Unknown; 554 555 const char* space1 = 0; 556 const char* space2 = 0; 557 const char* p; 558 size_t consumedLength; 559 560 for (p = data, consumedLength = 0; consumedLength < length; p++, consumedLength++) { 561 if (*p == ' ') { 562 if (!space1) 563 space1 = p; 564 else if (!space2) 565 space2 = p; 566 } else if (*p == '\n') 567 break; 568 } 569 570 // Haven't finished header line. 571 if (consumedLength == length) { 572 failureReason = "Incomplete Request Line"; 573 return 0; 574 } 575 576 // RequestLine does not contain 3 parts. 577 if (!space1 || !space2) { 578 failureReason = "Request Line does not appear to contain: <Method> <Url> <HTTPVersion>."; 579 return 0; 580 } 581 582 // The line must end with "\r\n". 583 const char* end = p + 1; 584 if (*(end - 2) != '\r') { 585 failureReason = "Request line does not end with CRLF"; 586 return 0; 587 } 588 589 // Request Method. 590 method = String(data, space1 - data); // For length subtract 1 for space, but add 1 for data being the first character. 591 592 // Request URI. 593 url = String(space1 + 1, space2 - space1 - 1); // For length subtract 1 for space. 594 595 // HTTP Version. 596 String httpVersionString(space2 + 1, end - space2 - 3); // For length subtract 1 for space, and 2 for "\r\n". 597 if (httpVersionString.length() != 8 || !httpVersionString.startsWith("HTTP/1.")) 598 httpVersion = Unknown; 599 else if (httpVersionString[7] == '0') 600 httpVersion = HTTP_1_0; 601 else if (httpVersionString[7] == '1') 602 httpVersion = HTTP_1_1; 603 else 604 httpVersion = Unknown; 605 606 return end - data; 607 } 608 609 size_t parseHTTPHeader(const char* start, size_t length, String& failureReason, AtomicString& nameStr, String& valueStr) 610 { 611 const char* p = start; 612 const char* end = start + length; 613 614 Vector<char> name; 615 Vector<char> value; 616 nameStr = AtomicString(); 617 valueStr = String(); 618 619 for (; p < end; p++) { 620 switch (*p) { 621 case '\r': 622 if (name.isEmpty()) { 623 if (p + 1 < end && *(p + 1) == '\n') 624 return (p + 2) - start; 625 failureReason = "CR doesn't follow LF at " + trimInputSample(p, end - p); 626 return 0; 627 } 628 failureReason = "Unexpected CR in name at " + trimInputSample(name.data(), name.size()); 629 return 0; 630 case '\n': 631 failureReason = "Unexpected LF in name at " + trimInputSample(name.data(), name.size()); 632 return 0; 633 case ':': 634 break; 635 default: 636 name.append(*p); 637 continue; 638 } 639 if (*p == ':') { 640 ++p; 641 break; 642 } 643 } 644 645 for (; p < end && *p == 0x20; p++) { } 646 647 for (; p < end; p++) { 648 switch (*p) { 649 case '\r': 650 break; 651 case '\n': 652 failureReason = "Unexpected LF in value at " + trimInputSample(value.data(), value.size()); 653 return 0; 654 default: 655 value.append(*p); 656 } 657 if (*p == '\r') { 658 ++p; 659 break; 660 } 661 } 662 if (p >= end || *p != '\n') { 663 failureReason = "CR doesn't follow LF after value at " + trimInputSample(p, end - p); 664 return 0; 665 } 666 nameStr = AtomicString::fromUTF8(name.data(), name.size()); 667 valueStr = String::fromUTF8(value.data(), value.size()); 668 if (nameStr.isNull()) { 669 failureReason = "Invalid UTF-8 sequence in header name"; 670 return 0; 671 } 672 if (valueStr.isNull()) { 673 failureReason = "Invalid UTF-8 sequence in header value"; 674 return 0; 675 } 676 return p - start; 677 } 678 679 size_t parseHTTPRequestBody(const char* data, size_t length, Vector<unsigned char>& body) 680 { 681 body.clear(); 682 body.append(data, length); 683 684 return length; 685 } 686 687 } 688