mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
Fix encryption of stream data
This commit splits up handling of the crypto stream and the other streams in the framer, crypto setup, and the packer. - Crypto stream data is handled separately and should never be sent unencrypted or FW-secure. Fixes #544. - Non-crypto stream data is only sent with FW encryption on the server and only with non-FW or FW encryption on the client. Fixes #611. The crypto stream is current excluded from flow control (#657), but that shouldn't be an issue in practice for now.
This commit is contained in:
parent
4ea2ccd526
commit
e43b91f633
10 changed files with 183 additions and 135 deletions
|
@ -45,6 +45,28 @@ func (f *streamFramer) HasFramesForRetransmission() bool {
|
|||
return len(f.retransmissionQueue) > 0
|
||||
}
|
||||
|
||||
func (f *streamFramer) HasCryptoStreamFrame() bool {
|
||||
// TODO(#657): Flow control
|
||||
cs, _ := f.streamsMap.GetOrOpenStream(1)
|
||||
return cs.lenOfDataForWriting() > 0
|
||||
}
|
||||
|
||||
// TODO(lclemente): This is somewhat duplicate with the normal path for generating frames.
|
||||
// TODO(#657): Flow control
|
||||
func (f *streamFramer) PopCryptoStreamFrame(maxLen protocol.ByteCount) *frames.StreamFrame {
|
||||
if !f.HasCryptoStreamFrame() {
|
||||
return nil
|
||||
}
|
||||
cs, _ := f.streamsMap.GetOrOpenStream(1)
|
||||
frame := &frames.StreamFrame{
|
||||
StreamID: 1,
|
||||
Offset: cs.writeOffset,
|
||||
}
|
||||
frameHeaderBytes, _ := frame.MinLength(protocol.VersionWhatever) // can never error
|
||||
frame.Data = cs.getDataForWriting(maxLen - frameHeaderBytes)
|
||||
return frame
|
||||
}
|
||||
|
||||
func (f *streamFramer) maybePopFramesForRetransmission(maxLen protocol.ByteCount) (res []*frames.StreamFrame, currentLen protocol.ByteCount) {
|
||||
for len(f.retransmissionQueue) > 0 {
|
||||
frame := f.retransmissionQueue[0]
|
||||
|
@ -76,7 +98,7 @@ func (f *streamFramer) maybePopNormalFrames(maxBytes protocol.ByteCount) (res []
|
|||
var currentLen protocol.ByteCount
|
||||
|
||||
fn := func(s *stream) (bool, error) {
|
||||
if s == nil {
|
||||
if s == nil || s.streamID == 1 /* crypto stream is handled separately */ {
|
||||
return true, nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue