fix: PSK extension w/o session cache crashing

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-22 17:20:03 -06:00
parent 6d2506f52f
commit a308f9b946
No known key found for this signature in database
GPG key ID: 9E2F8986D76F8B5D

View file

@ -1445,6 +1445,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