interface.go 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  1. package quic
  2. import (
  3. "context"
  4. "errors"
  5. "io"
  6. "net"
  7. "time"
  8. "github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common/prng"
  9. "github.com/Psiphon-Labs/quic-go/internal/handshake"
  10. "github.com/Psiphon-Labs/quic-go/internal/protocol"
  11. "github.com/Psiphon-Labs/quic-go/logging"
  12. )
  13. // The StreamID is the ID of a QUIC stream.
  14. type StreamID = protocol.StreamID
  15. // A VersionNumber is a QUIC version number.
  16. type VersionNumber = protocol.VersionNumber
  17. const (
  18. // VersionDraft29 is IETF QUIC draft-29
  19. VersionDraft29 = protocol.VersionDraft29
  20. // Version1 is RFC 9000
  21. Version1 = protocol.Version1
  22. Version2 = protocol.Version2
  23. )
  24. // A ClientToken is a token received by the client.
  25. // It can be used to skip address validation on future connection attempts.
  26. type ClientToken struct {
  27. data []byte
  28. }
  29. type TokenStore interface {
  30. // Pop searches for a ClientToken associated with the given key.
  31. // Since tokens are not supposed to be reused, it must remove the token from the cache.
  32. // It returns nil when no token is found.
  33. Pop(key string) (token *ClientToken)
  34. // Put adds a token to the cache with the given key. It might get called
  35. // multiple times in a connection.
  36. Put(key string, token *ClientToken)
  37. }
  38. // Err0RTTRejected is the returned from:
  39. // * Open{Uni}Stream{Sync}
  40. // * Accept{Uni}Stream
  41. // * Stream.Read and Stream.Write
  42. // when the server rejects a 0-RTT connection attempt.
  43. var Err0RTTRejected = errors.New("0-RTT rejected")
  44. // ConnectionTracingKey can be used to associate a ConnectionTracer with a Connection.
  45. // It is set on the Connection.Context() context,
  46. // as well as on the context passed to logging.Tracer.NewConnectionTracer.
  47. var ConnectionTracingKey = connTracingCtxKey{}
  48. type connTracingCtxKey struct{}
  49. // Stream is the interface implemented by QUIC streams
  50. // In addition to the errors listed on the Connection,
  51. // calls to stream functions can return a StreamError if the stream is canceled.
  52. type Stream interface {
  53. ReceiveStream
  54. SendStream
  55. // SetDeadline sets the read and write deadlines associated
  56. // with the connection. It is equivalent to calling both
  57. // SetReadDeadline and SetWriteDeadline.
  58. SetDeadline(t time.Time) error
  59. }
  60. // A ReceiveStream is a unidirectional Receive Stream.
  61. type ReceiveStream interface {
  62. // StreamID returns the stream ID.
  63. StreamID() StreamID
  64. // Read reads data from the stream.
  65. // Read can be made to time out and return a net.Error with Timeout() == true
  66. // after a fixed time limit; see SetDeadline and SetReadDeadline.
  67. // If the stream was canceled by the peer, the error implements the StreamError
  68. // interface, and Canceled() == true.
  69. // If the connection was closed due to a timeout, the error satisfies
  70. // the net.Error interface, and Timeout() will be true.
  71. io.Reader
  72. // CancelRead aborts receiving on this stream.
  73. // It will ask the peer to stop transmitting stream data.
  74. // Read will unblock immediately, and future Read calls will fail.
  75. // When called multiple times or after reading the io.EOF it is a no-op.
  76. CancelRead(StreamErrorCode)
  77. // SetReadDeadline sets the deadline for future Read calls and
  78. // any currently-blocked Read call.
  79. // A zero value for t means Read will not time out.
  80. SetReadDeadline(t time.Time) error
  81. }
  82. // A SendStream is a unidirectional Send Stream.
  83. type SendStream interface {
  84. // StreamID returns the stream ID.
  85. StreamID() StreamID
  86. // Write writes data to the stream.
  87. // Write can be made to time out and return a net.Error with Timeout() == true
  88. // after a fixed time limit; see SetDeadline and SetWriteDeadline.
  89. // If the stream was canceled by the peer, the error implements the StreamError
  90. // interface, and Canceled() == true.
  91. // If the connection was closed due to a timeout, the error satisfies
  92. // the net.Error interface, and Timeout() will be true.
  93. io.Writer
  94. // Close closes the write-direction of the stream.
  95. // Future calls to Write are not permitted after calling Close.
  96. // It must not be called concurrently with Write.
  97. // It must not be called after calling CancelWrite.
  98. io.Closer
  99. // CancelWrite aborts sending on this stream.
  100. // Data already written, but not yet delivered to the peer is not guaranteed to be delivered reliably.
  101. // Write will unblock immediately, and future calls to Write will fail.
  102. // When called multiple times or after closing the stream it is a no-op.
  103. CancelWrite(StreamErrorCode)
  104. // The Context is canceled as soon as the write-side of the stream is closed.
  105. // This happens when Close() or CancelWrite() is called, or when the peer
  106. // cancels the read-side of their stream.
  107. Context() context.Context
  108. // SetWriteDeadline sets the deadline for future Write calls
  109. // and any currently-blocked Write call.
  110. // Even if write times out, it may return n > 0, indicating that
  111. // some data was successfully written.
  112. // A zero value for t means Write will not time out.
  113. SetWriteDeadline(t time.Time) error
  114. }
  115. // A Connection is a QUIC connection between two peers.
  116. // Calls to the connection (and to streams) can return the following types of errors:
  117. // * ApplicationError: for errors triggered by the application running on top of QUIC
  118. // * TransportError: for errors triggered by the QUIC transport (in many cases a misbehaving peer)
  119. // * IdleTimeoutError: when the peer goes away unexpectedly (this is a net.Error timeout error)
  120. // * HandshakeTimeoutError: when the cryptographic handshake takes too long (this is a net.Error timeout error)
  121. // * StatelessResetError: when we receive a stateless reset (this is a net.Error temporary error)
  122. // * VersionNegotiationError: returned by the client, when there's no version overlap between the peers
  123. type Connection interface {
  124. // AcceptStream returns the next stream opened by the peer, blocking until one is available.
  125. // If the connection was closed due to a timeout, the error satisfies
  126. // the net.Error interface, and Timeout() will be true.
  127. AcceptStream(context.Context) (Stream, error)
  128. // AcceptUniStream returns the next unidirectional stream opened by the peer, blocking until one is available.
  129. // If the connection was closed due to a timeout, the error satisfies
  130. // the net.Error interface, and Timeout() will be true.
  131. AcceptUniStream(context.Context) (ReceiveStream, error)
  132. // OpenStream opens a new bidirectional QUIC stream.
  133. // There is no signaling to the peer about new streams:
  134. // The peer can only accept the stream after data has been sent on the stream.
  135. // If the error is non-nil, it satisfies the net.Error interface.
  136. // When reaching the peer's stream limit, err.Temporary() will be true.
  137. // If the connection was closed due to a timeout, Timeout() will be true.
  138. OpenStream() (Stream, error)
  139. // OpenStreamSync opens a new bidirectional QUIC stream.
  140. // It blocks until a new stream can be opened.
  141. // If the error is non-nil, it satisfies the net.Error interface.
  142. // If the connection was closed due to a timeout, Timeout() will be true.
  143. OpenStreamSync(context.Context) (Stream, error)
  144. // OpenUniStream opens a new outgoing unidirectional QUIC stream.
  145. // If the error is non-nil, it satisfies the net.Error interface.
  146. // When reaching the peer's stream limit, Temporary() will be true.
  147. // If the connection was closed due to a timeout, Timeout() will be true.
  148. OpenUniStream() (SendStream, error)
  149. // OpenUniStreamSync opens a new outgoing unidirectional QUIC stream.
  150. // It blocks until a new stream can be opened.
  151. // If the error is non-nil, it satisfies the net.Error interface.
  152. // If the connection was closed due to a timeout, Timeout() will be true.
  153. OpenUniStreamSync(context.Context) (SendStream, error)
  154. // LocalAddr returns the local address.
  155. LocalAddr() net.Addr
  156. // RemoteAddr returns the address of the peer.
  157. RemoteAddr() net.Addr
  158. // CloseWithError closes the connection with an error.
  159. // The error string will be sent to the peer.
  160. CloseWithError(ApplicationErrorCode, string) error
  161. // Context returns a context that is cancelled when the connection is closed.
  162. Context() context.Context
  163. // ConnectionState returns basic details about the QUIC connection.
  164. // It blocks until the handshake completes.
  165. // Warning: This API should not be considered stable and might change soon.
  166. ConnectionState() ConnectionState
  167. // SendMessage sends a message as a datagram, as specified in RFC 9221.
  168. SendMessage([]byte) error
  169. // ReceiveMessage gets a message received in a datagram, as specified in RFC 9221.
  170. ReceiveMessage() ([]byte, error)
  171. }
  172. // An EarlyConnection is a connection that is handshaking.
  173. // Data sent during the handshake is encrypted using the forward secure keys.
  174. // When using client certificates, the client's identity is only verified
  175. // after completion of the handshake.
  176. type EarlyConnection interface {
  177. Connection
  178. // HandshakeComplete blocks until the handshake completes (or fails).
  179. // Data sent before completion of the handshake is encrypted with 1-RTT keys.
  180. // Note that the client's identity hasn't been verified yet.
  181. HandshakeComplete() context.Context
  182. NextConnection() Connection
  183. }
  184. // StatelessResetKey is a key used to derive stateless reset tokens.
  185. type StatelessResetKey [32]byte
  186. // A ConnectionID is a QUIC Connection ID, as defined in RFC 9000.
  187. // It is not able to handle QUIC Connection IDs longer than 20 bytes,
  188. // as they are allowed by RFC 8999.
  189. type ConnectionID = protocol.ConnectionID
  190. // ConnectionIDFromBytes interprets b as a Connection ID. It panics if b is
  191. // longer than 20 bytes.
  192. func ConnectionIDFromBytes(b []byte) ConnectionID {
  193. return protocol.ParseConnectionID(b)
  194. }
  195. // A ConnectionIDGenerator is an interface that allows clients to implement their own format
  196. // for the Connection IDs that servers/clients use as SrcConnectionID in QUIC packets.
  197. //
  198. // Connection IDs generated by an implementation should always produce IDs of constant size.
  199. type ConnectionIDGenerator interface {
  200. // GenerateConnectionID generates a new ConnectionID.
  201. // Generated ConnectionIDs should be unique and observers should not be able to correlate two ConnectionIDs.
  202. GenerateConnectionID() (ConnectionID, error)
  203. // ConnectionIDLen tells what is the length of the ConnectionIDs generated by the implementation of
  204. // this interface.
  205. // Effectively, this means that implementations of ConnectionIDGenerator must always return constant-size
  206. // connection IDs. Valid lengths are between 0 and 20 and calls to GenerateConnectionID.
  207. // 0-length ConnectionsIDs can be used when an endpoint (server or client) does not require multiplexing connections
  208. // in the presence of a connection migration environment.
  209. ConnectionIDLen() int
  210. }
  211. // Config contains all configuration data needed for a QUIC server or client.
  212. type Config struct {
  213. // The QUIC versions that can be negotiated.
  214. // If not set, it uses all versions available.
  215. Versions []VersionNumber
  216. // The length of the connection ID in bytes.
  217. // It can be 0, or any value between 4 and 18.
  218. // If not set, the interpretation depends on where the Config is used:
  219. // If used for dialing an address, a 0 byte connection ID will be used.
  220. // If used for a server, or dialing on a packet conn, a 4 byte connection ID will be used.
  221. // When dialing on a packet conn, the ConnectionIDLength value must be the same for every Dial call.
  222. ConnectionIDLength int
  223. // An optional ConnectionIDGenerator to be used for ConnectionIDs generated during the lifecycle of a QUIC connection.
  224. // The goal is to give some control on how connection IDs, which can be useful in some scenarios, in particular for servers.
  225. // By default, if not provided, random connection IDs with the length given by ConnectionIDLength is used.
  226. // Otherwise, if one is provided, then ConnectionIDLength is ignored.
  227. ConnectionIDGenerator ConnectionIDGenerator
  228. // HandshakeIdleTimeout is the idle timeout before completion of the handshake.
  229. // Specifically, if we don't receive any packet from the peer within this time, the connection attempt is aborted.
  230. // If this value is zero, the timeout is set to 5 seconds.
  231. HandshakeIdleTimeout time.Duration
  232. // MaxIdleTimeout is the maximum duration that may pass without any incoming network activity.
  233. // The actual value for the idle timeout is the minimum of this value and the peer's.
  234. // This value only applies after the handshake has completed.
  235. // If the timeout is exceeded, the connection is closed.
  236. // If this value is zero, the timeout is set to 30 seconds.
  237. MaxIdleTimeout time.Duration
  238. // RequireAddressValidation determines if a QUIC Retry packet is sent.
  239. // This allows the server to verify the client's address, at the cost of increasing the handshake latency by 1 RTT.
  240. // See https://datatracker.ietf.org/doc/html/rfc9000#section-8 for details.
  241. // If not set, every client is forced to prove its remote address.
  242. RequireAddressValidation func(net.Addr) bool
  243. // MaxRetryTokenAge is the maximum age of a Retry token.
  244. // If not set, it defaults to 5 seconds. Only valid for a server.
  245. MaxRetryTokenAge time.Duration
  246. // MaxTokenAge is the maximum age of the token presented during the handshake,
  247. // for tokens that were issued on a previous connection.
  248. // If not set, it defaults to 24 hours. Only valid for a server.
  249. MaxTokenAge time.Duration
  250. // The TokenStore stores tokens received from the server.
  251. // Tokens are used to skip address validation on future connection attempts.
  252. // The key used to store tokens is the ServerName from the tls.Config, if set
  253. // otherwise the token is associated with the server's IP address.
  254. TokenStore TokenStore
  255. // InitialStreamReceiveWindow is the initial size of the stream-level flow control window for receiving data.
  256. // If the application is consuming data quickly enough, the flow control auto-tuning algorithm
  257. // will increase the window up to MaxStreamReceiveWindow.
  258. // If this value is zero, it will default to 512 KB.
  259. InitialStreamReceiveWindow uint64
  260. // MaxStreamReceiveWindow is the maximum stream-level flow control window for receiving data.
  261. // If this value is zero, it will default to 6 MB.
  262. MaxStreamReceiveWindow uint64
  263. // InitialConnectionReceiveWindow is the initial size of the stream-level flow control window for receiving data.
  264. // If the application is consuming data quickly enough, the flow control auto-tuning algorithm
  265. // will increase the window up to MaxConnectionReceiveWindow.
  266. // If this value is zero, it will default to 512 KB.
  267. InitialConnectionReceiveWindow uint64
  268. // MaxConnectionReceiveWindow is the connection-level flow control window for receiving data.
  269. // If this value is zero, it will default to 15 MB.
  270. MaxConnectionReceiveWindow uint64
  271. // AllowConnectionWindowIncrease is called every time the connection flow controller attempts
  272. // to increase the connection flow control window.
  273. // If set, the caller can prevent an increase of the window. Typically, it would do so to
  274. // limit the memory usage.
  275. // To avoid deadlocks, it is not valid to call other functions on the connection or on streams
  276. // in this callback.
  277. AllowConnectionWindowIncrease func(conn Connection, delta uint64) bool
  278. // MaxIncomingStreams is the maximum number of concurrent bidirectional streams that a peer is allowed to open.
  279. // Values above 2^60 are invalid.
  280. // If not set, it will default to 100.
  281. // If set to a negative value, it doesn't allow any bidirectional streams.
  282. MaxIncomingStreams int64
  283. // MaxIncomingUniStreams is the maximum number of concurrent unidirectional streams that a peer is allowed to open.
  284. // Values above 2^60 are invalid.
  285. // If not set, it will default to 100.
  286. // If set to a negative value, it doesn't allow any unidirectional streams.
  287. MaxIncomingUniStreams int64
  288. // The StatelessResetKey is used to generate stateless reset tokens.
  289. // If no key is configured, sending of stateless resets is disabled.
  290. StatelessResetKey *StatelessResetKey
  291. // KeepAlivePeriod defines whether this peer will periodically send a packet to keep the connection alive.
  292. // If set to 0, then no keep alive is sent. Otherwise, the keep alive is sent on that period (or at most
  293. // every half of MaxIdleTimeout, whichever is smaller).
  294. KeepAlivePeriod time.Duration
  295. // DisablePathMTUDiscovery disables Path MTU Discovery (RFC 8899).
  296. // Packets will then be at most 1252 (IPv4) / 1232 (IPv6) bytes in size.
  297. // Note that if Path MTU discovery is causing issues on your system, please open a new issue
  298. DisablePathMTUDiscovery bool
  299. // DisableVersionNegotiationPackets disables the sending of Version Negotiation packets.
  300. // This can be useful if version information is exchanged out-of-band.
  301. // It has no effect for a client.
  302. DisableVersionNegotiationPackets bool
  303. // Enable QUIC datagram support (RFC 9221).
  304. EnableDatagrams bool
  305. Tracer logging.Tracer
  306. // [Psiphon]
  307. // ClientHelloSeed is used for TLS Client Hello randomization and replay.
  308. ClientHelloSeed *prng.Seed
  309. // [Psiphon]
  310. // GetClientHelloRandom is used by the QUIC client to supply a specific
  311. // value in the TLS Client Hello random field. This is used to send an
  312. // anti-probing message, indistinguishable from random, that proves
  313. // knowlegde of a shared secret key.
  314. GetClientHelloRandom func() ([]byte, error)
  315. // [Psiphon]
  316. // VerifyClientHelloRandom is used by the QUIC server to verify that the
  317. // TLS Client Hello random field, supplied in the Initial packet for a
  318. // new connection, was created using the shared secret key and is not
  319. // replayed.
  320. VerifyClientHelloRandom func(net.Addr, []byte) bool
  321. // [Psiphon]
  322. // ClientMaxPacketSizeAdjustment indicates that the max packet size should
  323. // be reduced by the specified amount. This is used to reserve space for
  324. // packet obfuscation overhead while remaining at or under the 1280
  325. // initial target packet size as well as protocol.MaxPacketBufferSize,
  326. // the maximum packet size under MTU discovery.
  327. ClientMaxPacketSizeAdjustment int
  328. // [Psiphon]
  329. // ServerMaxPacketSizeAdjustment indicates that, for the flow associated
  330. // with the given client address, the max packet size should be reduced
  331. // by the specified amount. This is used to reserve space for packet
  332. // obfuscation overhead while remaining at or under the 1280 target
  333. // packet size. Must be set only for QUIC server configs.
  334. ServerMaxPacketSizeAdjustment func(net.Addr) int
  335. }
  336. // ConnectionState records basic details about a QUIC connection
  337. type ConnectionState struct {
  338. TLS handshake.ConnectionState
  339. SupportsDatagrams bool
  340. Version VersionNumber
  341. }
  342. // A Listener for incoming QUIC connections
  343. type Listener interface {
  344. // Close the server. All active connections will be closed.
  345. Close() error
  346. // Addr returns the local network addr that the server is listening on.
  347. Addr() net.Addr
  348. // Accept returns new connections. It should be called in a loop.
  349. Accept(context.Context) (Connection, error)
  350. }
  351. // An EarlyListener listens for incoming QUIC connections,
  352. // and returns them before the handshake completes.
  353. type EarlyListener interface {
  354. // Close the server. All active connections will be closed.
  355. Close() error
  356. // Addr returns the local network addr that the server is listening on.
  357. Addr() net.Addr
  358. // Accept returns new early connections. It should be called in a loop.
  359. Accept(context.Context) (EarlyConnection, error)
  360. }