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.
This commit is contained in:
parent
0c479251c7
commit
24b1ec0ded
4 changed files with 97 additions and 44 deletions
|
@ -152,20 +152,10 @@ void GoogleDriveUploadRequest::startUploadCallback(Networking::JsonResponse resp
|
|||
const Networking::NetworkReadStream *stream = rq->getNetworkReadStream();
|
||||
if (stream) {
|
||||
long code = stream->httpResponseCode();
|
||||
Common::String headers = stream->responseHeaders();
|
||||
if (code == 200) {
|
||||
const char *cstr = headers.c_str();
|
||||
const char *position = strstr(cstr, "Location: ");
|
||||
|
||||
if (position) {
|
||||
Common::String result = "";
|
||||
char c;
|
||||
for (const char *i = position + 10; c = *i, c != 0; ++i) {
|
||||
if (c == '\n' || c == '\r')
|
||||
break;
|
||||
result += c;
|
||||
}
|
||||
_uploadUrl = result;
|
||||
Common::HashMap<Common::String, Common::String> headers = stream->responseHeadersMap();
|
||||
if (headers.contains("location")) {
|
||||
_uploadUrl = headers["location"];
|
||||
uploadNextPart();
|
||||
return;
|
||||
}
|
||||
|
@ -230,27 +220,21 @@ bool GoogleDriveUploadRequest::handleHttp308(const Networking::NetworkReadStream
|
|||
if (stream->httpResponseCode() != 308)
|
||||
return false; //seriously
|
||||
|
||||
Common::String headers = stream->responseHeaders();
|
||||
const char *cstr = headers.c_str();
|
||||
Common::HashMap<Common::String, Common::String> headers = stream->responseHeadersMap();
|
||||
if (headers.contains("range")) {
|
||||
Common::String range = headers["range"];
|
||||
for (int rangeTry = 0; rangeTry < 2; ++rangeTry) {
|
||||
const char *needle = (rangeTry == 0 ? "Range: 0-" : "Range: bytes=0-");
|
||||
uint32 needleLength = (rangeTry == 0 ? 9 : 15);
|
||||
const char *needle = (rangeTry == 0 ? "0-" : "bytes=0-"); //if it lost the first part, I refuse to talk with it
|
||||
uint32 needleLength = (rangeTry == 0 ? 2 : 8);
|
||||
|
||||
const char *position = strstr(cstr, needle); //if it lost the first part, I refuse to talk with it
|
||||
|
||||
if (position) {
|
||||
Common::String result = "";
|
||||
char c;
|
||||
for (const char *i = position + needleLength; c = *i, c != 0; ++i) {
|
||||
if (c == '\n' || c == '\r')
|
||||
break;
|
||||
result += c;
|
||||
}
|
||||
_serverReceivedBytes = result.asUint64() + 1;
|
||||
if (range.hasPrefix(needle)) {
|
||||
range.erase(0, needleLength);
|
||||
_serverReceivedBytes = range.asUint64() + 1;
|
||||
uploadNextPart();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -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 "";
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue