mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
make sure to only pass handshake messages that keys are available for
This commit is contained in:
parent
cd78ea9020
commit
3f40b2f19a
1 changed files with 23 additions and 2 deletions
|
@ -135,6 +135,27 @@ func toEncryptionLevel(n uint8) protocol.EncryptionLevel {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func maxEncLevel(cs handshake.CryptoSetup, encLevel protocol.EncryptionLevel) protocol.EncryptionLevel {
|
||||||
|
switch encLevel {
|
||||||
|
case protocol.EncryptionInitial:
|
||||||
|
return protocol.EncryptionInitial
|
||||||
|
case protocol.EncryptionHandshake:
|
||||||
|
// Handshake opener not available. We can't possibly read a Handshake handshake message.
|
||||||
|
if opener, err := cs.GetHandshakeOpener(); err != nil || opener == nil {
|
||||||
|
return protocol.EncryptionInitial
|
||||||
|
}
|
||||||
|
return protocol.EncryptionHandshake
|
||||||
|
case protocol.Encryption1RTT:
|
||||||
|
// 1-RTT opener not available. We can't possibly read a post-handshake message.
|
||||||
|
if opener, err := cs.Get1RTTOpener(); err != nil || opener == nil {
|
||||||
|
return maxEncLevel(cs, protocol.EncryptionHandshake)
|
||||||
|
}
|
||||||
|
return protocol.Encryption1RTT
|
||||||
|
default:
|
||||||
|
panic("unexpected encryption level")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// PrefixLen is the number of bytes used for configuration
|
// PrefixLen is the number of bytes used for configuration
|
||||||
const PrefixLen = 2
|
const PrefixLen = 2
|
||||||
|
|
||||||
|
@ -230,7 +251,7 @@ messageLoop:
|
||||||
if len(b) > 0 && b[0] == messageToReplace {
|
if len(b) > 0 && b[0] == messageToReplace {
|
||||||
fmt.Println("replacing message to the server", messageType(b[0]).String())
|
fmt.Println("replacing message to the server", messageType(b[0]).String())
|
||||||
b = data
|
b = data
|
||||||
encLevel = messageToReplaceEncLevel
|
encLevel = maxEncLevel(server, messageToReplaceEncLevel)
|
||||||
}
|
}
|
||||||
server.HandleMessage(b, encLevel)
|
server.HandleMessage(b, encLevel)
|
||||||
case c := <-sChunkChan:
|
case c := <-sChunkChan:
|
||||||
|
@ -239,7 +260,7 @@ messageLoop:
|
||||||
if len(b) > 0 && b[0] == messageToReplace {
|
if len(b) > 0 && b[0] == messageToReplace {
|
||||||
fmt.Println("replacing message to the client", messageType(b[0]).String())
|
fmt.Println("replacing message to the client", messageType(b[0]).String())
|
||||||
b = data
|
b = data
|
||||||
encLevel = messageToReplaceEncLevel
|
encLevel = maxEncLevel(client, messageToReplaceEncLevel)
|
||||||
}
|
}
|
||||||
client.HandleMessage(b, encLevel)
|
client.HandleMessage(b, encLevel)
|
||||||
case <-done: // test done
|
case <-done: // test done
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue