Overflow detection in ngx_http_parse_chunked().

This commit is contained in:
Ruslan Ermilov 2015-03-17 00:26:27 +03:00
parent c04312f3eb
commit 37115f7595
1 changed files with 8 additions and 4 deletions

View File

@ -2104,6 +2104,10 @@ ngx_http_parse_chunked(ngx_http_request_t *r, ngx_buf_t *b,
goto invalid;
case sw_chunk_size:
if (ctx->size > NGX_MAX_OFF_T_VALUE / 16) {
goto invalid;
}
if (ch >= '0' && ch <= '9') {
ctx->size = ctx->size * 16 + (ch - '0');
break;
@ -2253,6 +2257,10 @@ data:
ctx->state = state;
b->pos = pos;
if (ctx->size > NGX_MAX_OFF_T_VALUE - 5) {
goto invalid;
}
switch (state) {
case sw_chunk_start:
@ -2289,10 +2297,6 @@ data:
}
if (ctx->size < 0 || ctx->length < 0) {
goto invalid;
}
return rc;
done: