mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
new: support variable length quic frame padding (#10)
Add variable length QUIC frame padding support. Refactor how QUIC frames are defined in a QUIC Spec. Update documentation and examples. Added Chrome and Firefox parrots. Close #3.
This commit is contained in:
parent
5e966a9bec
commit
9d3fe2aa07
8 changed files with 1154 additions and 478 deletions
|
@ -1,12 +1,7 @@
|
|||
package quic
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"crypto/rand"
|
||||
"errors"
|
||||
|
||||
"github.com/gaukas/clienthellod"
|
||||
"github.com/refraction-networking/uquic/quicvarint"
|
||||
)
|
||||
|
||||
type InitialPacketSpec struct {
|
||||
|
@ -37,11 +32,11 @@ type InitialPacketSpec struct {
|
|||
// invalid since not assigned by the server.
|
||||
ClientTokenLength int
|
||||
|
||||
// QUICFrames specifies a list of QUIC frames to be sent in the first Initial
|
||||
// FrameBuilder specifies how the frames should be encapsulated for the first Initial
|
||||
// packet.
|
||||
//
|
||||
// If nil, it will be treated as a list with only a single QUICFrameCrypto.
|
||||
FrameOrder QUICFrames
|
||||
// If nil, there will be only one single Crypto frame in the first Initial packet.
|
||||
FrameBuilder QUICFrameBuilder
|
||||
}
|
||||
|
||||
func (ps *InitialPacketSpec) UpdateConfig(conf *Config) {
|
||||
|
@ -78,128 +73,3 @@ func (d *dummyTokenStore) Pop(key string) (token *ClientToken) {
|
|||
func (d *dummyTokenStore) Put(_ string, _ *ClientToken) {
|
||||
// Do nothing
|
||||
}
|
||||
|
||||
type QUICFrames []QUICFrame
|
||||
|
||||
func (qfs QUICFrames) MarshalWithCryptoData(cryptoData []byte) (payload []byte, err error) {
|
||||
if len(qfs) == 0 { // If no frames specified, send a single crypto frame
|
||||
qfs = QUICFrames{QUICFrameCrypto{0, 0}}
|
||||
return qfs.MarshalWithCryptoData(cryptoData)
|
||||
}
|
||||
|
||||
for _, frame := range qfs {
|
||||
var frameBytes []byte
|
||||
if offset, length, cryptoOK := frame.CryptoFrameInfo(); cryptoOK {
|
||||
if length == 0 {
|
||||
// calculate length: from offset to the end of cryptoData
|
||||
length = len(cryptoData) - offset
|
||||
}
|
||||
frameBytes = []byte{0x06} // CRYPTO frame type
|
||||
frameBytes = quicvarint.Append(frameBytes, uint64(offset))
|
||||
frameBytes = quicvarint.Append(frameBytes, uint64(length))
|
||||
frameCryptoData := make([]byte, length)
|
||||
copy(frameCryptoData, cryptoData[offset:]) // copy at most length bytes
|
||||
frameBytes = append(frameBytes, frameCryptoData...)
|
||||
} else { // Handle none crypto frames: read and append to payload
|
||||
frameBytes, err = frame.Read()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
payload = append(payload, frameBytes...)
|
||||
}
|
||||
return payload, nil
|
||||
}
|
||||
|
||||
func (qfs QUICFrames) MarshalWithFrames(frames []byte) (payload []byte, err error) {
|
||||
// parse frames
|
||||
r := bytes.NewReader(frames)
|
||||
qchframes, err := clienthellod.ReadAllFrames(r)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// parse crypto data
|
||||
cryptoData, err := clienthellod.ReassembleCRYPTOFrames(qchframes)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// marshal
|
||||
return qfs.MarshalWithCryptoData(cryptoData)
|
||||
}
|
||||
|
||||
type QUICFrame interface {
|
||||
// None crypto frames should return false for cryptoOK
|
||||
CryptoFrameInfo() (offset, length int, cryptoOK bool)
|
||||
|
||||
// None crypto frames should return the byte representation of the frame.
|
||||
// Crypto frames' behavior is undefined and unused.
|
||||
Read() ([]byte, error)
|
||||
}
|
||||
|
||||
// QUICFrameCrypto is used to specify the crypto frames containing the TLS ClientHello
|
||||
// to be sent in the first Initial packet.
|
||||
type QUICFrameCrypto struct {
|
||||
// Offset is used to specify the starting offset of the crypto frame.
|
||||
// Used when sending multiple crypto frames in a single packet.
|
||||
//
|
||||
// Multiple crypto frames in a single packet must not overlap and must
|
||||
// make up an entire crypto stream continuously.
|
||||
Offset int
|
||||
|
||||
// Length is used to specify the length of the crypto frame.
|
||||
//
|
||||
// Must be set if it is NOT the last crypto frame in a packet.
|
||||
Length int
|
||||
}
|
||||
|
||||
// CryptoFrameInfo() implements the QUICFrame interface.
|
||||
//
|
||||
// Crypto frames are later replaced by the crypto message using the information
|
||||
// returned by this function.
|
||||
func (q QUICFrameCrypto) CryptoFrameInfo() (offset, length int, cryptoOK bool) {
|
||||
return q.Offset, q.Length, true
|
||||
}
|
||||
|
||||
// Read() implements the QUICFrame interface.
|
||||
//
|
||||
// Crypto frames are later replaced by the crypto message, so they are not Read()-able.
|
||||
func (q QUICFrameCrypto) Read() ([]byte, error) {
|
||||
return nil, errors.New("crypto frames are not Read()-able")
|
||||
}
|
||||
|
||||
// QUICFramePadding is used to specify the padding frames to be sent in the first Initial
|
||||
// packet.
|
||||
type QUICFramePadding struct {
|
||||
// Length is used to specify the length of the padding frame.
|
||||
Length int
|
||||
}
|
||||
|
||||
// CryptoFrameInfo() implements the QUICFrame interface.
|
||||
func (q QUICFramePadding) CryptoFrameInfo() (offset, length int, cryptoOK bool) {
|
||||
return 0, 0, false
|
||||
}
|
||||
|
||||
// Read() implements the QUICFrame interface.
|
||||
//
|
||||
// Padding simply returns a slice of bytes of the specified length filled with 0.
|
||||
func (q QUICFramePadding) Read() ([]byte, error) {
|
||||
return make([]byte, q.Length), nil
|
||||
}
|
||||
|
||||
// QUICFramePing is used to specify the ping frames to be sent in the first Initial
|
||||
// packet.
|
||||
type QUICFramePing struct{}
|
||||
|
||||
// CryptoFrameInfo() implements the QUICFrame interface.
|
||||
func (q QUICFramePing) CryptoFrameInfo() (offset, length int, cryptoOK bool) {
|
||||
return 0, 0, false
|
||||
}
|
||||
|
||||
// Read() implements the QUICFrame interface.
|
||||
//
|
||||
// Ping simply returns a slice of bytes of size 1 with value 0x01(PING).
|
||||
func (q QUICFramePing) Read() ([]byte, error) {
|
||||
return []byte{0x01}, nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue