quic: always use empty session ID (#297)

This commit is contained in:
Gaukas Wang 2024-05-03 07:39:15 -07:00 committed by GitHub
parent 1f5d7d7824
commit 4f713392d1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2672,12 +2672,21 @@ func (uconn *UConn) ApplyPreset(p *ClientHelloSpec) error {
hello.CipherSuites[i] = GetBoringGREASEValue(uconn.greaseSeed, ssl_grease_cipher) hello.CipherSuites[i] = GetBoringGREASEValue(uconn.greaseSeed, ssl_grease_cipher)
} }
} }
var sessionID [32]byte
_, err = io.ReadFull(uconn.config.rand(), sessionID[:]) // A random session ID is used to detect when the server accepted a ticket
if err != nil { // and is resuming a session (see RFC 5077). In TLS 1.3, it's always set as
return err // a compatibility measure (see RFC 8446, Section 4.1.2).
//
// The session ID is not set for QUIC connections (see RFC 9001, Section 8.4).
if uconn.quic == nil {
var sessionID [32]byte
_, err = io.ReadFull(uconn.config.rand(), sessionID[:])
if err != nil {
return err
}
uconn.HandshakeState.Hello.SessionId = sessionID[:]
} }
uconn.HandshakeState.Hello.SessionId = sessionID[:]
uconn.Extensions = make([]TLSExtension, len(p.Extensions)) uconn.Extensions = make([]TLSExtension, len(p.Extensions))
copy(uconn.Extensions, p.Extensions) copy(uconn.Extensions, p.Extensions)