mirror of
https://github.com/nginx/nginx.git
synced 2024-12-12 02:09:04 +08:00
QUIC: added missing checks for limits in stream frames parsing.
This commit is contained in:
parent
db4c8fe45f
commit
f184bc0a0a
@ -1003,6 +1003,10 @@ ngx_quic_parse_frame(ngx_quic_header_t *pkt, u_char *start, u_char *end,
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (f->u.streams_blocked.limit > 0x1000000000000000) {
|
||||
goto error;
|
||||
}
|
||||
|
||||
f->u.streams_blocked.bidi =
|
||||
(f->type == NGX_QUIC_FT_STREAMS_BLOCKED) ? 1 : 0;
|
||||
break;
|
||||
@ -1015,6 +1019,10 @@ ngx_quic_parse_frame(ngx_quic_header_t *pkt, u_char *start, u_char *end,
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (f->u.max_streams.limit > 0x1000000000000000) {
|
||||
goto error;
|
||||
}
|
||||
|
||||
f->u.max_streams.bidi = (f->type == NGX_QUIC_FT_MAX_STREAMS) ? 1 : 0;
|
||||
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user