mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 04:27:36 +03:00
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:
parent
3721531ea9
commit
7aa684a354
1 changed files with 3 additions and 0 deletions
|
@ -1859,6 +1859,9 @@ type FakePreSharedKeyExtension struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *FakePreSharedKeyExtension) writeToUConn(uc *UConn) error {
|
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.PskIdentities = e.PskIdentities
|
||||||
uc.HandshakeState.Hello.PskBinders = e.PskBinders
|
uc.HandshakeState.Hello.PskBinders = e.PskBinders
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue