2021-08-03 09:04:02 +00:00
package quic
import (
"context"
"crypto/tls"
"errors"
"fmt"
"net"
"strings"
"github.com/lucas-clemente/quic-go/internal/protocol"
"github.com/lucas-clemente/quic-go/internal/utils"
"github.com/lucas-clemente/quic-go/logging"
)
type client struct {
2022-06-06 13:15:35 +00:00
sconn sendConn
2021-08-03 09:04:02 +00:00
// If the client is created with DialAddr, we create a packet conn.
// If it is started with Dial, we take a packet conn as a parameter.
createdPacketConn bool
use0RTT bool
packetHandlers packetHandlerManager
tlsConf * tls . Config
config * Config
srcConnID protocol . ConnectionID
destConnID protocol . ConnectionID
initialPacketNumber protocol . PacketNumber
hasNegotiatedVersion bool
version protocol . VersionNumber
handshakeChan chan struct { }
2022-06-06 13:15:35 +00:00
conn quicConn
2021-08-03 09:04:02 +00:00
2021-08-27 11:26:00 +00:00
tracer logging . ConnectionTracer
tracingID uint64
logger utils . Logger
2021-08-03 09:04:02 +00:00
}
var (
2022-08-10 13:19:03 +00:00
// make it possible to mock connection ID for initial generation in the tests
2021-08-03 09:04:02 +00:00
generateConnectionIDForInitial = protocol . GenerateConnectionIDForInitial
)
// DialAddr establishes a new QUIC connection to a server.
2022-06-06 13:15:35 +00:00
// It uses a new UDP connection and closes this connection when the QUIC connection is closed.
2021-08-03 09:04:02 +00:00
// The hostname for SNI is taken from the given address.
// The tls.Config.CipherSuites allows setting of TLS 1.3 cipher suites.
func DialAddr (
addr string ,
tlsConf * tls . Config ,
config * Config ,
2022-06-06 13:15:35 +00:00
) ( Connection , error ) {
2021-08-03 09:04:02 +00:00
return DialAddrContext ( context . Background ( ) , addr , tlsConf , config )
}
// DialAddrEarly establishes a new 0-RTT QUIC connection to a server.
2022-06-06 13:15:35 +00:00
// It uses a new UDP connection and closes this connection when the QUIC connection is closed.
2021-08-03 09:04:02 +00:00
// The hostname for SNI is taken from the given address.
// The tls.Config.CipherSuites allows setting of TLS 1.3 cipher suites.
func DialAddrEarly (
addr string ,
tlsConf * tls . Config ,
config * Config ,
2022-06-06 13:15:35 +00:00
) ( EarlyConnection , error ) {
2021-08-03 09:04:02 +00:00
return DialAddrEarlyContext ( context . Background ( ) , addr , tlsConf , config )
}
// DialAddrEarlyContext establishes a new 0-RTT QUIC connection to a server using provided context.
// See DialAddrEarly for details
func DialAddrEarlyContext (
ctx context . Context ,
addr string ,
tlsConf * tls . Config ,
config * Config ,
2022-06-06 13:15:35 +00:00
) ( EarlyConnection , error ) {
conn , err := dialAddrContext ( ctx , addr , tlsConf , config , true )
2021-08-03 09:04:02 +00:00
if err != nil {
return nil , err
}
2022-06-06 13:15:35 +00:00
utils . Logger . WithPrefix ( utils . DefaultLogger , "client" ) . Debugf ( "Returning early connection" )
return conn , nil
2021-08-03 09:04:02 +00:00
}
// DialAddrContext establishes a new QUIC connection to a server using the provided context.
// See DialAddr for details.
func DialAddrContext (
ctx context . Context ,
addr string ,
tlsConf * tls . Config ,
config * Config ,
2022-06-06 13:15:35 +00:00
) ( Connection , error ) {
2021-08-03 09:04:02 +00:00
return dialAddrContext ( ctx , addr , tlsConf , config , false )
}
func dialAddrContext (
ctx context . Context ,
addr string ,
tlsConf * tls . Config ,
config * Config ,
use0RTT bool ,
2022-06-06 13:15:35 +00:00
) ( quicConn , error ) {
2021-08-03 09:04:02 +00:00
udpAddr , err := net . ResolveUDPAddr ( "udp" , addr )
if err != nil {
return nil , err
}
udpConn , err := net . ListenUDP ( "udp" , & net . UDPAddr { IP : net . IPv4zero , Port : 0 } )
if err != nil {
return nil , err
}
return dialContext ( ctx , udpConn , udpAddr , addr , tlsConf , config , use0RTT , true )
}
// Dial establishes a new QUIC connection to a server using a net.PacketConn. If
// the PacketConn satisfies the OOBCapablePacketConn interface (as a net.UDPConn
// does), ECN and packet info support will be enabled. In this case, ReadMsgUDP
// and WriteMsgUDP will be used instead of ReadFrom and WriteTo to read/write
// packets. The same PacketConn can be used for multiple calls to Dial and
// Listen, QUIC connection IDs are used for demultiplexing the different
// connections. The host parameter is used for SNI. The tls.Config must define
// an application protocol (using NextProtos).
func Dial (
pconn net . PacketConn ,
remoteAddr net . Addr ,
host string ,
tlsConf * tls . Config ,
config * Config ,
2022-06-06 13:15:35 +00:00
) ( Connection , error ) {
2021-08-03 09:04:02 +00:00
return dialContext ( context . Background ( ) , pconn , remoteAddr , host , tlsConf , config , false , false )
}
// DialEarly establishes a new 0-RTT QUIC connection to a server using a net.PacketConn.
// The same PacketConn can be used for multiple calls to Dial and Listen,
// QUIC connection IDs are used for demultiplexing the different connections.
// The host parameter is used for SNI.
// The tls.Config must define an application protocol (using NextProtos).
func DialEarly (
pconn net . PacketConn ,
remoteAddr net . Addr ,
host string ,
tlsConf * tls . Config ,
config * Config ,
2022-06-06 13:15:35 +00:00
) ( EarlyConnection , error ) {
2021-08-03 09:04:02 +00:00
return DialEarlyContext ( context . Background ( ) , pconn , remoteAddr , host , tlsConf , config )
}
// DialEarlyContext establishes a new 0-RTT QUIC connection to a server using a net.PacketConn using the provided context.
// See DialEarly for details.
func DialEarlyContext (
ctx context . Context ,
pconn net . PacketConn ,
remoteAddr net . Addr ,
host string ,
tlsConf * tls . Config ,
config * Config ,
2022-06-06 13:15:35 +00:00
) ( EarlyConnection , error ) {
2021-08-03 09:04:02 +00:00
return dialContext ( ctx , pconn , remoteAddr , host , tlsConf , config , true , false )
}
// DialContext establishes a new QUIC connection to a server using a net.PacketConn using the provided context.
// See Dial for details.
func DialContext (
ctx context . Context ,
pconn net . PacketConn ,
remoteAddr net . Addr ,
host string ,
tlsConf * tls . Config ,
config * Config ,
2022-06-06 13:15:35 +00:00
) ( Connection , error ) {
2021-08-03 09:04:02 +00:00
return dialContext ( ctx , pconn , remoteAddr , host , tlsConf , config , false , false )
}
func dialContext (
ctx context . Context ,
pconn net . PacketConn ,
remoteAddr net . Addr ,
host string ,
tlsConf * tls . Config ,
config * Config ,
use0RTT bool ,
createdPacketConn bool ,
2022-06-06 13:15:35 +00:00
) ( quicConn , error ) {
2021-08-03 09:04:02 +00:00
if tlsConf == nil {
return nil , errors . New ( "quic: tls.Config not set" )
}
if err := validateConfig ( config ) ; err != nil {
return nil , err
}
config = populateClientConfig ( config , createdPacketConn )
2022-08-10 13:19:03 +00:00
packetHandlers , err := getMultiplexer ( ) . AddConn ( pconn , config . ConnectionIDGenerator . ConnectionIDLen ( ) , config . StatelessResetKey , config . Tracer )
2021-08-03 09:04:02 +00:00
if err != nil {
return nil , err
}
c , err := newClient ( pconn , remoteAddr , config , tlsConf , host , use0RTT , createdPacketConn )
if err != nil {
return nil , err
}
c . packetHandlers = packetHandlers
2022-06-06 13:15:35 +00:00
c . tracingID = nextConnTracingID ( )
2021-08-03 09:04:02 +00:00
if c . config . Tracer != nil {
2021-08-27 11:26:00 +00:00
c . tracer = c . config . Tracer . TracerForConnection (
2022-06-06 13:15:35 +00:00
context . WithValue ( ctx , ConnectionTracingKey , c . tracingID ) ,
2021-08-27 11:26:00 +00:00
protocol . PerspectiveClient ,
c . destConnID ,
)
}
if c . tracer != nil {
2022-06-06 13:15:35 +00:00
c . tracer . StartedConnection ( c . sconn . LocalAddr ( ) , c . sconn . RemoteAddr ( ) , c . srcConnID , c . destConnID )
2021-08-03 09:04:02 +00:00
}
if err := c . dial ( ctx ) ; err != nil {
return nil , err
}
2022-06-06 13:15:35 +00:00
return c . conn , nil
2021-08-03 09:04:02 +00:00
}
func newClient (
pconn net . PacketConn ,
remoteAddr net . Addr ,
config * Config ,
tlsConf * tls . Config ,
host string ,
use0RTT bool ,
createdPacketConn bool ,
) ( * client , error ) {
if tlsConf == nil {
tlsConf = & tls . Config { }
2022-08-08 14:49:10 +00:00
} else {
tlsConf = tlsConf . Clone ( )
2021-08-03 09:04:02 +00:00
}
if tlsConf . ServerName == "" {
sni := host
if strings . IndexByte ( sni , ':' ) != - 1 {
var err error
sni , _ , err = net . SplitHostPort ( sni )
if err != nil {
return nil , err
}
}
tlsConf . ServerName = sni
}
// check that all versions are actually supported
if config != nil {
for _ , v := range config . Versions {
if ! protocol . IsValidVersion ( v ) {
return nil , fmt . Errorf ( "%s is not a valid QUIC version" , v )
}
}
}
2022-08-10 13:19:03 +00:00
srcConnID , err := config . ConnectionIDGenerator . GenerateConnectionID ( )
2021-08-03 09:04:02 +00:00
if err != nil {
return nil , err
}
destConnID , err := generateConnectionIDForInitial ( )
if err != nil {
return nil , err
}
c := & client {
srcConnID : srcConnID ,
destConnID : destConnID ,
2022-06-06 13:15:35 +00:00
sconn : newSendPconn ( pconn , remoteAddr ) ,
2021-08-03 09:04:02 +00:00
createdPacketConn : createdPacketConn ,
use0RTT : use0RTT ,
tlsConf : tlsConf ,
config : config ,
version : config . Versions [ 0 ] ,
handshakeChan : make ( chan struct { } ) ,
logger : utils . DefaultLogger . WithPrefix ( "client" ) ,
}
return c , nil
}
func ( c * client ) dial ( ctx context . Context ) error {
2022-06-06 13:15:35 +00:00
c . logger . Infof ( "Starting new connection to %s (%s -> %s), source connection ID %s, destination connection ID %s, version %s" , c . tlsConf . ServerName , c . sconn . LocalAddr ( ) , c . sconn . RemoteAddr ( ) , c . srcConnID , c . destConnID , c . version )
2021-08-03 09:04:02 +00:00
2022-06-06 13:15:35 +00:00
c . conn = newClientConnection (
c . sconn ,
2021-08-03 09:04:02 +00:00
c . packetHandlers ,
c . destConnID ,
c . srcConnID ,
c . config ,
c . tlsConf ,
c . initialPacketNumber ,
c . use0RTT ,
c . hasNegotiatedVersion ,
c . tracer ,
2021-08-27 11:26:00 +00:00
c . tracingID ,
2021-08-03 09:04:02 +00:00
c . logger ,
c . version ,
)
2022-06-06 13:15:35 +00:00
c . packetHandlers . Add ( c . srcConnID , c . conn )
2021-08-03 09:04:02 +00:00
errorChan := make ( chan error , 1 )
go func ( ) {
2022-06-06 13:15:35 +00:00
err := c . conn . run ( ) // returns as soon as the connection is closed
2021-08-27 11:26:00 +00:00
if e := ( & errCloseForRecreating { } ) ; ! errors . As ( err , & e ) && c . createdPacketConn {
2021-08-03 09:04:02 +00:00
c . packetHandlers . Destroy ( )
}
errorChan <- err
} ( )
// only set when we're using 0-RTT
2022-06-06 13:15:35 +00:00
// Otherwise, earlyConnChan will be nil. Receiving from a nil chan blocks forever.
var earlyConnChan <- chan struct { }
2021-08-03 09:04:02 +00:00
if c . use0RTT {
2022-06-06 13:15:35 +00:00
earlyConnChan = c . conn . earlyConnReady ( )
2021-08-03 09:04:02 +00:00
}
select {
case <- ctx . Done ( ) :
2022-06-06 13:15:35 +00:00
c . conn . shutdown ( )
2021-08-03 09:04:02 +00:00
return ctx . Err ( )
case err := <- errorChan :
var recreateErr * errCloseForRecreating
if errors . As ( err , & recreateErr ) {
c . initialPacketNumber = recreateErr . nextPacketNumber
c . version = recreateErr . nextVersion
c . hasNegotiatedVersion = true
return c . dial ( ctx )
}
return err
2022-06-06 13:15:35 +00:00
case <- earlyConnChan :
2021-08-03 09:04:02 +00:00
// ready to send 0-RTT data
return nil
2022-06-06 13:15:35 +00:00
case <- c . conn . HandshakeComplete ( ) . Done ( ) :
2021-08-03 09:04:02 +00:00
// handshake successfully completed
return nil
}
}