2022-08-01 12:48:33 +00:00
|
|
|
package quic
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/lucas-clemente/quic-go"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/rs/zerolog"
|
2022-08-17 15:46:49 +00:00
|
|
|
|
|
|
|
"github.com/cloudflare/cloudflared/packet"
|
2022-08-01 12:48:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type datagramV2Type byte
|
|
|
|
|
|
|
|
const (
|
2022-09-05 14:09:53 +00:00
|
|
|
udp datagramV2Type = iota
|
2022-08-01 12:48:33 +00:00
|
|
|
ip
|
2022-09-05 14:09:53 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
typeIDLen = 1
|
2022-08-17 17:23:04 +00:00
|
|
|
// Same as sessionDemuxChan capacity
|
2022-08-29 17:49:07 +00:00
|
|
|
packetChanCapacity = 128
|
2022-08-01 12:48:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func suffixType(b []byte, datagramType datagramV2Type) ([]byte, error) {
|
2022-09-01 17:50:25 +00:00
|
|
|
if len(b)+typeIDLen > MaxDatagramFrameSize {
|
2022-08-01 12:48:33 +00:00
|
|
|
return nil, fmt.Errorf("datagram size %d exceeds max frame size %d", len(b), MaxDatagramFrameSize)
|
|
|
|
}
|
|
|
|
b = append(b, byte(datagramType))
|
|
|
|
return b, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Maximum application payload to send to / receive from QUIC datagram frame
|
|
|
|
func (dm *DatagramMuxerV2) mtu() int {
|
|
|
|
return maxDatagramPayloadSize
|
|
|
|
}
|
|
|
|
|
|
|
|
type DatagramMuxerV2 struct {
|
|
|
|
session quic.Connection
|
|
|
|
logger *zerolog.Logger
|
2022-08-17 15:46:49 +00:00
|
|
|
sessionDemuxChan chan<- *packet.Session
|
2022-08-17 17:23:04 +00:00
|
|
|
packetDemuxChan chan packet.RawPacket
|
2022-08-01 12:48:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewDatagramMuxerV2(
|
|
|
|
quicSession quic.Connection,
|
|
|
|
log *zerolog.Logger,
|
2022-08-17 15:46:49 +00:00
|
|
|
sessionDemuxChan chan<- *packet.Session,
|
2022-08-17 17:23:04 +00:00
|
|
|
) *DatagramMuxerV2 {
|
2022-08-01 12:48:33 +00:00
|
|
|
logger := log.With().Uint8("datagramVersion", 2).Logger()
|
|
|
|
return &DatagramMuxerV2{
|
|
|
|
session: quicSession,
|
|
|
|
logger: &logger,
|
|
|
|
sessionDemuxChan: sessionDemuxChan,
|
2022-08-17 17:23:04 +00:00
|
|
|
packetDemuxChan: make(chan packet.RawPacket, packetChanCapacity),
|
2022-08-01 12:48:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-17 17:23:04 +00:00
|
|
|
// SendToSession suffix the session ID and datagram version to the payload so the other end of the QUIC connection can
|
2022-08-01 12:48:33 +00:00
|
|
|
// demultiplex the payload from multiple datagram sessions
|
2022-08-17 15:46:49 +00:00
|
|
|
func (dm *DatagramMuxerV2) SendToSession(session *packet.Session) error {
|
|
|
|
if len(session.Payload) > dm.mtu() {
|
2022-08-25 10:05:01 +00:00
|
|
|
packetTooBigDropped.Inc()
|
2022-08-17 15:46:49 +00:00
|
|
|
return fmt.Errorf("origin UDP payload has %d bytes, which exceeds transport MTU %d", len(session.Payload), dm.mtu())
|
2022-08-01 12:48:33 +00:00
|
|
|
}
|
2022-08-17 15:46:49 +00:00
|
|
|
msgWithID, err := suffixSessionID(session.ID, session.Payload)
|
2022-08-01 12:48:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "Failed to suffix session ID to datagram, it will be dropped")
|
|
|
|
}
|
|
|
|
msgWithIDAndType, err := suffixType(msgWithID, udp)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "Failed to suffix datagram type, it will be dropped")
|
|
|
|
}
|
|
|
|
if err := dm.session.SendMessage(msgWithIDAndType); err != nil {
|
|
|
|
return errors.Wrap(err, "Failed to send datagram back to edge")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-08-17 17:23:04 +00:00
|
|
|
// SendPacket suffix the datagram type to the packet. The other end of the QUIC connection can demultiplex by parsing
|
2022-08-01 12:48:33 +00:00
|
|
|
// the payload as IP and look at the source and destination.
|
2022-08-17 17:23:04 +00:00
|
|
|
func (dm *DatagramMuxerV2) SendPacket(pk packet.RawPacket) error {
|
|
|
|
payloadWithVersion, err := suffixType(pk.Data, ip)
|
2022-08-01 12:48:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "Failed to suffix datagram type, it will be dropped")
|
|
|
|
}
|
|
|
|
if err := dm.session.SendMessage(payloadWithVersion); err != nil {
|
|
|
|
return errors.Wrap(err, "Failed to send datagram back to edge")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Demux reads datagrams from the QUIC connection and demuxes depending on whether it's a session or packet
|
|
|
|
func (dm *DatagramMuxerV2) ServeReceive(ctx context.Context) error {
|
|
|
|
for {
|
|
|
|
msg, err := dm.session.ReceiveMessage()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := dm.demux(ctx, msg); err != nil {
|
|
|
|
dm.logger.Error().Err(err).Msg("Failed to demux datagram")
|
|
|
|
if err == context.Canceled {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-17 17:23:04 +00:00
|
|
|
func (dm *DatagramMuxerV2) ReceivePacket(ctx context.Context) (packet.RawPacket, error) {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return packet.RawPacket{}, ctx.Err()
|
|
|
|
case pk := <-dm.packetDemuxChan:
|
|
|
|
return pk, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-01 12:48:33 +00:00
|
|
|
func (dm *DatagramMuxerV2) demux(ctx context.Context, msgWithType []byte) error {
|
2022-09-01 17:50:25 +00:00
|
|
|
if len(msgWithType) < typeIDLen {
|
|
|
|
return fmt.Errorf("QUIC datagram should have at least %d byte", typeIDLen)
|
2022-08-01 12:48:33 +00:00
|
|
|
}
|
2022-09-01 17:50:25 +00:00
|
|
|
msgType := datagramV2Type(msgWithType[len(msgWithType)-typeIDLen])
|
|
|
|
msg := msgWithType[0 : len(msgWithType)-typeIDLen]
|
2022-08-01 12:48:33 +00:00
|
|
|
switch msgType {
|
|
|
|
case udp:
|
2022-08-17 17:23:04 +00:00
|
|
|
return dm.handleSession(ctx, msg)
|
2022-08-01 12:48:33 +00:00
|
|
|
case ip:
|
2022-08-17 17:23:04 +00:00
|
|
|
return dm.handlePacket(ctx, msg)
|
2022-08-01 12:48:33 +00:00
|
|
|
default:
|
|
|
|
return fmt.Errorf("Unexpected datagram type %d", msgType)
|
|
|
|
}
|
|
|
|
}
|
2022-08-17 17:23:04 +00:00
|
|
|
|
|
|
|
func (dm *DatagramMuxerV2) handleSession(ctx context.Context, session []byte) error {
|
|
|
|
sessionID, payload, err := extractSessionID(session)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
sessionDatagram := packet.Session{
|
|
|
|
ID: sessionID,
|
|
|
|
Payload: payload,
|
|
|
|
}
|
|
|
|
select {
|
|
|
|
case dm.sessionDemuxChan <- &sessionDatagram:
|
|
|
|
return nil
|
|
|
|
case <-ctx.Done():
|
|
|
|
return ctx.Err()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dm *DatagramMuxerV2) handlePacket(ctx context.Context, pk []byte) error {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return ctx.Err()
|
|
|
|
case dm.packetDemuxChan <- packet.RawPacket{
|
|
|
|
Data: pk,
|
|
|
|
}:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|