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
|
/*
* Phusion Passenger - http://www.modrails.com/
* Copyright (c) 2010 Phusion
*
* "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include <google/dense_hash_map>
#include <string>
#include <map>
#include <cstdlib>
#include "StaticString.h"
namespace Passenger {
using namespace std;
using namespace google;
/**
* A parser for SCGI requests. It parses the request header and ignores the
* body data.
*
* You can use it by constructing a parser object, then feeding data to the
* parser until it has reached a final state.
*
* Example:
* @code
* ScgiRequestParser parser;
* char buf[1024 * 16];
* ssize_t size;
* unsigned in bytesAccepted;
*
* do {
* size = read(fd, buf, sizeof(buf));
* bytesAccepted = parser.feed(buf, size);
* } while (parser.acceptingInput());
* // Parser is done when its return value isn't equal to the input size.
*
* // Check whether a parse error occured.
* if (parser.getState() == ScgiRequestParser::ERROR) {
* bailOut();
* } else {
* // All good! Do something with the SCGI header that the parser parsed.
* processHeader(parser.getHeaderData());
*
* // If the last buffer passed to the parser also contains body data,
* // then the body data starts at 'buf + bytesAccepted'.
* if (bytesAccepted < size) {
* processBody(buf + bytesAccepted);
* }
* while (!end_of_file(fd)) {
* ... read(...) ...
* processBody(...);
* }
* }
* @endcode
*
* Parser properties:
* - A parser object can only process a single SCGI request. You must discard
* the existing parser object and create a new one if you want to process
* another SCGI request.
* - This parser checks whether the header netstring is valid. It will enter
* the error state if it encounters a parse error.
* - However, this parser does not perform any validation of the actual header
* contents. For example, it doesn't check that CONTENT_LENGTH is the first
* header, or that the SCGI header is present.
*/
class ScgiRequestParser {
public:
enum State {
READING_LENGTH_STRING,
READING_HEADER_DATA,
EXPECTING_COMMA,
DONE,
ERROR
};
enum ErrorReason {
NONE,
/** The length string is too large. */
LENGTH_STRING_TOO_LARGE,
/** The header is larger than the maxSize value provided to the constructor. */
LIMIT_REACHED,
/** The length string contains an invalid character. */
INVALID_LENGTH_STRING,
/** A header terminator character (",") was expected, but some else
* was encountered instead. */
HEADER_TERMINATOR_EXPECTED,
/** The header data itself contains errors. */
INVALID_HEADER_DATA
};
private:
typedef dense_hash_map<StaticString, StaticString, StaticString::Hash> HeaderMap;
unsigned long maxSize;
State state;
ErrorReason errorReason;
char lengthStringBuffer[sizeof("4294967296")];
unsigned int lengthStringBufferSize;
unsigned long headerSize;
string headerBuffer;
HeaderMap headers;
static inline bool isDigit(char byte) {
return byte >= '0' && byte <= '9';
}
/**
* Parse the given header data into key-value pairs.
*/
bool parseHeaderData(const string &data, HeaderMap &output) {
bool isName = true; // Whether we're currently expecting a name or a value.
const char *startOfString, *current, *end;
StaticString key, value;
if (data.size() == 0) {
return true;
}
startOfString = data.c_str();
end = data.c_str() + data.size();
if (*(end - 1) != '\0') {
return false;
}
for (current = data.c_str(); current != end; current++) {
if (isName && *current == '\0') {
key = StaticString(startOfString, current - startOfString);
if (key.empty()) {
return false;
}
startOfString = current + 1;
isName = false;
} else if (!isName && *current == '\0') {
value = StaticString(startOfString, current - startOfString);
startOfString = current + 1;
isName = true;
output[key] = value;
key = StaticString();
value = StaticString();
}
}
return isName;
}
/**
* Process the given data, which contains header data and possibly
* some body data as well.
*/
unsigned int readHeaderData(const char *data, unsigned int size) {
unsigned int bytesToRead;
// Calculate how many bytes of header data is left to be read.
// Do not read past the header data.
if (size < headerSize - headerBuffer.size()) {
bytesToRead = size;
} else {
bytesToRead = headerSize - headerBuffer.size();
}
// Append the newly received header data to the header data buffer.
headerBuffer.append(data, bytesToRead);
if (headerBuffer.size() == headerSize) {
// We've received all header data. Now attempt to parse this.
if (bytesToRead < size) {
if (data[bytesToRead] == ',') {
if (parseHeaderData(headerBuffer, headers)) {
state = DONE;
return bytesToRead + 1;
} else {
state = ERROR;
errorReason = INVALID_HEADER_DATA;
return bytesToRead;
}
} else {
state = ERROR;
errorReason = HEADER_TERMINATOR_EXPECTED;
return bytesToRead;
}
} else {
if (parseHeaderData(headerBuffer, headers)) {
state = EXPECTING_COMMA;
} else {
state = ERROR;
errorReason = INVALID_HEADER_DATA;
}
return bytesToRead;
}
} else {
// Not all header data has been received yet.
return bytesToRead;
}
}
public:
/**
* Create a new ScgiRequestParser, ready to parse a request.
*
* @param maxSize The maximum size that the SCGI data is allowed to
* be, or 0 if no limit is desired.
*/
ScgiRequestParser(unsigned long maxSize = 0) {
this->maxSize = maxSize;
state = READING_LENGTH_STRING;
errorReason = NONE;
lengthStringBufferSize = 0;
headerSize = 0;
headers.set_empty_key("");
}
/**
* Feed SCGI request data to the parser.
*
* @param data The data to feed.
* @param size The size of the data, in bytes.
* @return The number of recognized SCGI header bytes. If this value
* equals 'size', then it means all data in 'data' is part of
* the SCGI header. If this value is less than size, then it
* means only some data in 'data' is part of the SCGI header,
* and the remaining 'size - result' bytes are part of the
* request body.
* @pre size > 0
* @post result <= size
* @post if result <= size: getState() == DONE || getState() == ERROR
*/
unsigned int feed(const char *data, unsigned int size) {
unsigned int i;
switch (state) {
case READING_LENGTH_STRING:
// Keep processing length string data...
for (i = 0; i < size; i++) {
char byte = data[i];
if (lengthStringBufferSize == sizeof(lengthStringBuffer) - 1) {
// ...and abort if the length string is too long.
state = ERROR;
errorReason = LENGTH_STRING_TOO_LARGE;
return i;
} else if (!isDigit(byte)) {
if (byte == ':') {
// ...until the end of the length string has been reached.
state = READING_HEADER_DATA;
lengthStringBuffer[lengthStringBufferSize] = '\0';
headerSize = atol(lengthStringBuffer);
if (maxSize > 0 && headerSize > maxSize) {
state = ERROR;
errorReason = LIMIT_REACHED;
} else {
headerBuffer.reserve(headerSize);
// From here on, process the rest of the data that we've
// received, as header data.
return readHeaderData(data + i + 1, size - i - 1) + i + 1;
}
} else {
// ...until we encounter a parse error.
state = ERROR;
errorReason = INVALID_LENGTH_STRING;
return i;
}
} else {
lengthStringBuffer[lengthStringBufferSize] = byte;
lengthStringBufferSize++;
}
}
return i;
case READING_HEADER_DATA:
return readHeaderData(data, size);
case EXPECTING_COMMA:
if (data[0] == ',') {
state = DONE;
return 1;
} else {
state = ERROR;
errorReason = HEADER_TERMINATOR_EXPECTED;
return 0;
}
default:
return 0;
}
}
/**
* Get the raw header data that has been processed so far.
*/
string getHeaderData() const {
return headerBuffer;
}
/**
* Get the value of the header with the given name.
* Lookup is case-sensitive.
*
* Returns the empty string if there is no such header.
*
* @pre getState() == DONE
*/
StaticString getHeader(const StaticString &name) const {
HeaderMap::const_iterator it(headers.find(name));
if (it == headers.end()) {
return "";
} else {
return it->second;
}
}
/**
* Checks whether there is a header with the given name.
* Lookup is case-sensitive.
*
* @pre getState() == DONE
*/
bool hasHeader(const StaticString &name) const {
return headers.find(name) != headers.end();
}
/**
* Get the parser's current state.
*/
State getState() const {
return state;
}
/**
* Returns the reason why the parser entered the error state.
*
* @pre getState() == ERROR
*/
ErrorReason getErrorReason() const {
return errorReason;
}
/**
* Checks whether this parser is still capable of accepting input (that
* is, that this parser is not in a final state).
*/
bool acceptingInput() const {
return state != DONE && state != ERROR;
}
};
} // namespace Passenger
|