diff options
author | Alexander Tkachev | 2019-08-25 14:02:02 +0700 |
---|---|---|
committer | Filippos Karapetis | 2019-08-25 12:15:14 +0300 |
commit | 24b1ec0dedf31097396741aa811dfabf9335b397 (patch) | |
tree | ba2e9c4c387aa953cd09fe6534bf4712526396be /backends/networking | |
parent | 0c479251c794f536c9bcaf18c2ce10fcb1537be2 (diff) | |
download | scummvm-rg350-24b1ec0dedf31097396741aa811dfabf9335b397.tar.gz scummvm-rg350-24b1ec0dedf31097396741aa811dfabf9335b397.tar.bz2 scummvm-rg350-24b1ec0dedf31097396741aa811dfabf9335b397.zip |
CLOUD: Handle HTTP response headers case-insensitively
RFC 2616 states that HTTP headers are not case-sensitive and also allows
arbitrary number of whitespace characters around header value. Previous
implementation was dependant on headers to be in "Title-Case" and to
have only one space before header value. That has lead to cloud sync
failure on Debian x64 (user's network environment was probably the
reason though).
This commit adds a new method, which parses headers name-value pairs
into HashMap. To ensure case-insensitivity, all headers names are
converted to lowercase, and thus code that uses this method should
specify headers in lowercase. All usages of raw headers contents were
updated to use this method.
Diffstat (limited to 'backends/networking')
-rw-r--r-- | backends/networking/curl/curlrequest.cpp | 17 | ||||
-rw-r--r-- | backends/networking/curl/networkreadstream.cpp | 72 | ||||
-rw-r--r-- | backends/networking/curl/networkreadstream.h | 8 |
3 files changed, 83 insertions, 14 deletions
diff --git a/backends/networking/curl/curlrequest.cpp b/backends/networking/curl/curlrequest.cpp index a9de30cfe9..cb117b7b7b 100644 --- a/backends/networking/curl/curlrequest.cpp +++ b/backends/networking/curl/curlrequest.cpp @@ -71,20 +71,9 @@ void CurlRequest::restart() { Common::String CurlRequest::date() const { if (_stream) { - Common::String headers = _stream->responseHeaders(); - const char *cstr = headers.c_str(); - const char *position = strstr(cstr, "Date: "); - - if (position) { - Common::String result = ""; - char c; - for (const char *i = position + 6; c = *i, c != 0; ++i) { - if (c == '\n' || c == '\r') - break; - result += c; - } - return result; - } + Common::HashMap<Common::String, Common::String> headers = _stream->responseHeadersMap(); + if (headers.contains("date")) + return headers["date"]; } return ""; } diff --git a/backends/networking/curl/networkreadstream.cpp b/backends/networking/curl/networkreadstream.cpp index ac8800b22a..dee48856bf 100644 --- a/backends/networking/curl/networkreadstream.cpp +++ b/backends/networking/curl/networkreadstream.cpp @@ -240,6 +240,78 @@ Common::String NetworkReadStream::responseHeaders() const { return _responseHeaders; } +Common::HashMap<Common::String, Common::String> NetworkReadStream::responseHeadersMap() const { + // HTTP headers are described at RFC 2616: https://tools.ietf.org/html/rfc2616#section-4.2 + // this implementation tries to follow it, but for simplicity it does not support multi-line header values + + Common::HashMap<Common::String, Common::String> headers; + Common::String headerName, headerValue, trailingWhitespace; + char c; + bool readingName = true; + + for (uint i = 0; i < _responseHeaders.size(); ++i) { + c = _responseHeaders[i]; + + if (readingName) { + if (c == ' ' || c == '\r' || c == '\n' || c == '\t') { + // header names should not contain any whitespace, this is invalid + // ignore what's been before + headerName = ""; + continue; + } + if (c == ':') { + if (!headerName.empty()) { + readingName = false; + } + continue; + } + headerName += c; + continue; + } + + // reading value: + if (c == ' ' || c == '\t') { + if (headerValue.empty()) { + // skip leading whitespace + continue; + } else { + // accumulate trailing whitespace + trailingWhitespace += c; + continue; + } + } + + if (c == '\r' || c == '\n') { + // not sure if RFC allows empty values, we'll ignore such + if (!headerName.empty() && !headerValue.empty()) { + // add header value + // RFC allows header with the same name to be sent multiple times + // and requires it to be equivalent of just listing all header values separated with comma + // so if header already was met, we'll add new value to the old one + headerName.toLowercase(); + if (headers.contains(headerName)) { + headers[headerName] += "," + headerValue; + } else { + headers[headerName] = headerValue; + } + } + + headerName = ""; + headerValue = ""; + trailingWhitespace = ""; + readingName = true; + continue; + } + + // if we meet non-whitespace character, turns out those "trailing" whitespace characters were not so trailing + headerValue += trailingWhitespace; + trailingWhitespace = ""; + headerValue += c; + } + + return headers; +} + uint32 NetworkReadStream::fillWithSendingContents(char *bufferToFill, uint32 maxSize) { uint32 sendSize = _sendingContentsSize - _sendingContentsPos; if (sendSize > maxSize) diff --git a/backends/networking/curl/networkreadstream.h b/backends/networking/curl/networkreadstream.h index b83ab27400..7d19286f85 100644 --- a/backends/networking/curl/networkreadstream.h +++ b/backends/networking/curl/networkreadstream.h @@ -136,6 +136,14 @@ public: */ Common::String responseHeaders() const; + /** + * Return response headers as HashMap. All header names in + * it are lowercase. + * + * @note This method should be called when eos() == true. + */ + Common::HashMap<Common::String, Common::String> responseHeadersMap() const; + /** Returns a number in range [0, 1], where 1 is "complete". */ double getProgress() const; |