Skip to content

Commit b7aeed3

Browse files
committed
Make version negotiation packets use network byte order
@t8m pointed out that versino negotiation packets weren't guaranteeing network byte ordering in the array of supported versions. Convert the client to use network byte order on send and receipt. Reviewed-by: Tomas Mraz <[email protected]> Reviewed-by: Saša Nedvědický <[email protected]> (Merged from openssl#25968)
1 parent fad2d57 commit b7aeed3

File tree

2 files changed

+18
-12
lines changed

2 files changed

+18
-12
lines changed

ssl/quic/quic_channel.c

+12-9
Original file line numberDiff line numberDiff line change
@@ -2166,8 +2166,8 @@ static void ch_rx_handle_packet(QUIC_CHANNEL *ch, int channel_only)
21662166
uint32_t enc_level;
21672167
int old_have_processed_any_pkt = ch->have_processed_any_pkt;
21682168
OSSL_QTX_IOVEC iovec;
2169-
uint32_t *supported_ver;
2170-
size_t remaining_len;
2169+
PACKET vpkt;
2170+
unsigned long supported_ver;
21712171

21722172
assert(ch->qrx_pkt != NULL);
21732173

@@ -2281,14 +2281,20 @@ static void ch_rx_handle_packet(QUIC_CHANNEL *ch, int channel_only)
22812281
* needs to be traversed so that we can find a matching
22822282
* version
22832283
*/
2284-
supported_ver = (uint32_t *)ch->qrx_pkt->hdr->data;
2285-
remaining_len = ch->qrx_pkt->hdr->len;
2286-
while (remaining_len > 0) {
2284+
if (!PACKET_buf_init(&vpkt, ch->qrx_pkt->hdr->data,
2285+
ch->qrx_pkt->hdr->len))
2286+
return;
2287+
2288+
while (PACKET_remaining(&vpkt) > 0) {
22872289
/*
22882290
* We only support quic version 1 at the moment, so
22892291
* look to see if thats offered
22902292
*/
2291-
if (*supported_ver == QUIC_VERSION_1) {
2293+
if (!PACKET_get_net_4(&vpkt, &supported_ver))
2294+
return;
2295+
2296+
supported_ver = ntohl(supported_ver);
2297+
if (supported_ver == QUIC_VERSION_1) {
22922298
/*
22932299
* If the server supports version 1, set it as
22942300
* the packetisers version
@@ -2304,9 +2310,6 @@ static void ch_rx_handle_packet(QUIC_CHANNEL *ch, int channel_only)
23042310
0, "handling ver negotiation packet");
23052311
return;
23062312
}
2307-
/* move to the next supported ver */
2308-
supported_ver++;
2309-
remaining_len -= sizeof(uint32_t);
23102313
}
23112314

23122315
/*

ssl/quic/quic_port.c

+6-3
Original file line numberDiff line numberDiff line change
@@ -784,6 +784,7 @@ static void port_send_version_negotiation(QUIC_PORT *port, BIO_ADDR *peer,
784784
WPACKET wpkt;
785785
uint32_t supported_versions[1];
786786
size_t written;
787+
size_t i;
787788

788789
memset(&hdr, 0, sizeof(QUIC_PKT_HDR));
789790
/*
@@ -825,8 +826,10 @@ static void port_send_version_negotiation(QUIC_PORT *port, BIO_ADDR *peer,
825826
/*
826827
* Add the array of supported versions to the end of the packet
827828
*/
828-
if (!WPACKET_memcpy(&wpkt, supported_versions, sizeof(supported_versions)))
829-
return;
829+
for (i = 0; i < OSSL_NELEM(supported_versions); i++) {
830+
if (!WPACKET_put_bytes_u32(&wpkt, htonl(supported_versions[i])))
831+
return;
832+
}
830833

831834
if (!WPACKET_get_total_written(&wpkt, &msg[0].data_len))
832835
return;
@@ -967,7 +970,7 @@ static void port_default_packet_handler(QUIC_URXE *e, void *arg,
967970
/*
968971
* If we don't get a supported version, respond with a ver
969972
* negotiation packet, and discard
970-
* TODO: Rate limit the reception of these
973+
* TODO(QUIC SERVER): Rate limit the reception of these
971974
*/
972975
port_send_version_negotiation(port, &e->peer, &hdr);
973976
goto undesirable;

0 commit comments

Comments
 (0)