fix: PSK extension w/o session cache crashing (#177)

Fixes a bug causing client to crash (SIGSEGV) WHEN PSK extension is set with empty session cache AND server sends HelloRetryRequest.
This commit is contained in:
Gaukas Wang 2023-03-30 09:14:55 -06:00 committed by GitHub
parent 3721531ea9
commit 7aa684a354
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1859,6 +1859,9 @@ type FakePreSharedKeyExtension struct {
}
func (e *FakePreSharedKeyExtension) writeToUConn(uc *UConn) error {
if session, ok := uc.config.ClientSessionCache.Get(clientSessionCacheKey(uc.conn.RemoteAddr(), uc.config)); !ok || session == nil {
return nil // don't write the extension if there is no session
}
uc.HandshakeState.Hello.PskIdentities = e.PskIdentities
uc.HandshakeState.Hello.PskBinders = e.PskBinders
return nil