Add a client connection ID to version negotiation packet creation
This CL adds a new client_connection_id parameter to the functions that build version negotiation packets, and pass it through to AppendIetfConnectionIds instead of EmptyQuicConnectionId. All callers of this function call it with EmptyQuicConnectionId. To verify this we have a DCHECK that makes sure client_connection_id is empty when the disabled flag quic_do_not_override_connection_id is false. This CL also adds QuicVersion::SupportsClientConnectionIds which subsequent CLs will build on.
gfe-relnote: no functional change, add function parameter that is always empty, not flag-protected
PiperOrigin-RevId: 250551156
Change-Id: I378c67df16fc262145c5c88a76ca5440f72a29d8
diff --git a/quic/core/quic_framer_test.cc b/quic/core/quic_framer_test.cc
index 0201c8e..13e4482 100644
--- a/quic/core/quic_framer_test.cc
+++ b/quic/core/quic_framer_test.cc
@@ -6625,13 +6625,55 @@
QuicConnectionId connection_id = FramerTestConnectionId();
std::unique_ptr<QuicEncryptedPacket> data(
- framer_.BuildVersionNegotiationPacket(
- connection_id, framer_.transport_version() > QUIC_VERSION_43,
+ QuicFramer::BuildVersionNegotiationPacket(
+ connection_id, EmptyQuicConnectionId(),
+ framer_.transport_version() > QUIC_VERSION_43,
SupportedVersions(GetParam())));
test::CompareCharArraysWithHexError("constructed packet", data->data(),
data->length(), AsChars(p), p_size);
}
+TEST_P(QuicFramerTest, BuildVersionNegotiationPacketWithClientConnectionId) {
+ if (framer_.transport_version() <= QUIC_VERSION_43) {
+ // The GQUIC encoding does not support encoding client connection IDs.
+ return;
+ }
+
+ // Client connection IDs cannot be used unless this flag is true.
+ SetQuicRestartFlag(quic_do_not_override_connection_id, true);
+
+ unsigned char type_byte = 0x80;
+ if (GetQuicReloadableFlag(quic_send_version_negotiation_fixed_bit)) {
+ type_byte = 0xC0;
+ }
+ // clang-format off
+ unsigned char packet[] = {
+ // type (long header)
+ type_byte,
+ // version tag
+ 0x00, 0x00, 0x00, 0x00,
+ // connection ID lengths
+ 0x55,
+ // client/destination connection ID
+ 0xFE, 0xDC, 0xBA, 0x98, 0x76, 0x54, 0x32, 0x11,
+ // server/source connection ID
+ 0xFE, 0xDC, 0xBA, 0x98, 0x76, 0x54, 0x32, 0x10,
+ // version tag
+ QUIC_VERSION_BYTES,
+ };
+ // clang-format on
+
+ QuicConnectionId server_connection_id = FramerTestConnectionId();
+ QuicConnectionId client_connection_id = FramerTestConnectionIdPlusOne();
+ std::unique_ptr<QuicEncryptedPacket> data(
+ QuicFramer::BuildVersionNegotiationPacket(server_connection_id,
+ client_connection_id, true,
+ SupportedVersions(GetParam())));
+ test::CompareCharArraysWithHexError("constructed packet", data->data(),
+ data->length(), AsChars(packet),
+ QUIC_ARRAYSIZE(packet));
+}
+
TEST_P(QuicFramerTest, BuildAckFramePacketOneAckBlock) {
QuicFramerPeer::SetPerspective(&framer_, Perspective::IS_CLIENT);
QuicPacketHeader header;