blob: d8db86a8f3b8e6df430639c5b1ab9db6e42a696e [file] [log] [blame]
/*
* Copyright (C) 2011 Google Inc. All rights reserved.
* Copyright (C) 2012 Intel Corporation. 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 Inc. 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 "core/platform/network/ParsedContentType.h"
#include "wtf/text/CString.h"
#include "wtf/text/StringBuilder.h"
namespace WebCore {
class DummyParsedContentType {
public:
void setContentType(const SubstringRange&) const { }
void setContentTypeParameter(const SubstringRange&, const SubstringRange&) const { }
};
static void skipSpaces(const String& input, unsigned& startIndex)
{
while (startIndex < input.length() && input[startIndex] == ' ')
++startIndex;
}
static bool isTokenCharacter(char c)
{
return isASCII(c) && c > ' ' && c != '"' && c != '(' && c != ')' && c != ',' && c != '/' && (c < ':' || c > '@') && (c < '[' || c > ']');
}
static SubstringRange parseToken(const String& input, unsigned& startIndex)
{
unsigned inputLength = input.length();
unsigned tokenStart = startIndex;
unsigned& tokenEnd = startIndex;
if (tokenEnd >= inputLength)
return SubstringRange();
while (tokenEnd < inputLength) {
if (!isTokenCharacter(input[tokenEnd]))
return SubstringRange(tokenStart, tokenEnd - tokenStart);
++tokenEnd;
}
return SubstringRange(tokenStart, tokenEnd - tokenStart);
}
static SubstringRange parseQuotedString(const String& input, unsigned& startIndex)
{
unsigned inputLength = input.length();
unsigned quotedStringStart = startIndex + 1;
unsigned& quotedStringEnd = startIndex;
if (quotedStringEnd >= inputLength)
return SubstringRange();
if (input[quotedStringEnd++] != '"' || quotedStringEnd >= inputLength)
return SubstringRange();
bool lastCharacterWasBackslash = false;
char currentCharacter;
while ((currentCharacter = input[quotedStringEnd++]) != '"' || lastCharacterWasBackslash) {
if (quotedStringEnd >= inputLength)
return SubstringRange();
if (currentCharacter == '\\' && !lastCharacterWasBackslash) {
lastCharacterWasBackslash = true;
continue;
}
if (lastCharacterWasBackslash)
lastCharacterWasBackslash = false;
}
return SubstringRange(quotedStringStart, quotedStringEnd - quotedStringStart - 1);
}
static String substringForRange(const String& string, const SubstringRange& range)
{
return string.substring(range.first, range.second);
}
// From http://tools.ietf.org/html/rfc2045#section-5.1:
//
// content := "Content-Type" ":" type "/" subtype
// *(";" parameter)
// ; Matching of media type and subtype
// ; is ALWAYS case-insensitive.
//
// type := discrete-type / composite-type
//
// discrete-type := "text" / "image" / "audio" / "video" /
// "application" / extension-token
//
// composite-type := "message" / "multipart" / extension-token
//
// extension-token := ietf-token / x-token
//
// ietf-token := <An extension token defined by a
// standards-track RFC and registered
// with IANA.>
//
// x-token := <The two characters "X-" or "x-" followed, with
// no intervening white space, by any token>
//
// subtype := extension-token / iana-token
//
// iana-token := <A publicly-defined extension token. Tokens
// of this form must be registered with IANA
// as specified in RFC 2048.>
//
// parameter := attribute "=" value
//
// attribute := token
// ; Matching of attributes
// ; is ALWAYS case-insensitive.
//
// value := token / quoted-string
//
// token := 1*<any (US-ASCII) CHAR except SPACE, CTLs,
// or tspecials>
//
// tspecials := "(" / ")" / "<" / ">" / "@" /
// "," / ";" / ":" / "\" / <">
// "/" / "[" / "]" / "?" / "="
// ; Must be in quoted-string,
// ; to use within parameter values
template <class ReceiverType>
bool parseContentType(const String& contentType, ReceiverType& receiver)
{
unsigned index = 0;
unsigned contentTypeLength = contentType.length();
skipSpaces(contentType, index);
if (index >= contentTypeLength) {
LOG_ERROR("Invalid Content-Type string '%s'", contentType.ascii().data());
return false;
}
// There should not be any quoted strings until we reach the parameters.
size_t semiColonIndex = contentType.find(';', index);
if (semiColonIndex == notFound) {
receiver.setContentType(SubstringRange(index, contentTypeLength - index));
return true;
}
receiver.setContentType(SubstringRange(index, semiColonIndex - index));
index = semiColonIndex + 1;
while (true) {
skipSpaces(contentType, index);
SubstringRange keyRange = parseToken(contentType, index);
if (!keyRange.second || index >= contentTypeLength) {
LOG_ERROR("Invalid Content-Type parameter name.");
return false;
}
// Should we tolerate spaces here?
if (contentType[index++] != '=' || index >= contentTypeLength) {
LOG_ERROR("Invalid Content-Type malformed parameter.");
return false;
}
// Should we tolerate spaces here?
String value;
SubstringRange valueRange;
if (contentType[index] == '"')
valueRange = parseQuotedString(contentType, index);
else
valueRange = parseToken(contentType, index);
if (!valueRange.second) {
LOG_ERROR("Invalid Content-Type, invalid parameter value.");
return false;
}
// Should we tolerate spaces here?
if (index < contentTypeLength && contentType[index++] != ';') {
LOG_ERROR("Invalid Content-Type, invalid character at the end of key/value parameter.");
return false;
}
receiver.setContentTypeParameter(keyRange, valueRange);
if (index >= contentTypeLength)
return true;
}
return true;
}
bool isValidContentType(const String& contentType)
{
if (contentType.contains('\r') || contentType.contains('\n'))
return false;
DummyParsedContentType parsedContentType = DummyParsedContentType();
return parseContentType<DummyParsedContentType>(contentType, parsedContentType);
}
ParsedContentType::ParsedContentType(const String& contentType)
: m_contentType(contentType.stripWhiteSpace())
{
parseContentType<ParsedContentType>(m_contentType, *this);
}
String ParsedContentType::charset() const
{
return parameterValueForName("charset");
}
String ParsedContentType::parameterValueForName(const String& name) const
{
return m_parameters.get(name);
}
size_t ParsedContentType::parameterCount() const
{
return m_parameters.size();
}
void ParsedContentType::setContentType(const SubstringRange& contentRange)
{
m_mimeType = substringForRange(m_contentType, contentRange).stripWhiteSpace();
}
void ParsedContentType::setContentTypeParameter(const SubstringRange& key, const SubstringRange& value)
{
m_parameters.set(substringForRange(m_contentType, key), substringForRange(m_contentType, value));
}
}