QUIC: added missing checks for limits in stream frames parsing.
This commit is contained in:
parent
4f66362f15
commit
977a00685d
1 changed files with 8 additions and 0 deletions
|
@ -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 a new issue