Internet-Draft | TAPS Interface | November 2020 |
Trammell, et al. | Expires 6 May 2021 | [Page] |
This document describes an abstract application programming interface, API, to the transport layer, following the Transport Services Architecture. It supports the asynchronous, atomic transmission of messages over transport protocols and network paths dynamically selected at runtime. It is intended to replace the traditional BSD sockets API as the common interface to the transport layer, in an environment where endpoints could select from multiple interfaces and potential transport protocols.¶
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."¶
This Internet-Draft will expire on 6 May 2021.¶
Copyright (c) 2020 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License.¶
This document specifies a modern abstract application programming interface (API) atop the high-level architecture for transport services defined in [I-D.ietf-taps-arch]. It supports the asynchronous, atomic transmission of messages over transport protocols and network paths dynamically selected at runtime. It is intended to replace the traditional BSD sockets API as the common interface to the transport layer, in environments where an endpoint selects from multiple interfaces and potential transport protocols.¶
As applications adopt this interface, they will benefit from a wide set of transport features that can evolve over time, and ensure that the system providing the interface can optimize its behavior based on the application requirements and network conditions, without requiring changes to the applications. This flexibility enables faster deployment of new features and protocols. It can also support applications by offering racing and fallback mechanisms, which otherwise need to be separately implemented in each application.¶
It derives specific path and protocol selection properties and supported transport features from the analysis provided in [RFC8095], [RFC8923], and [RFC8922]. The design encourages implementations underneath the interface to dynamically choose a transport protocol depending on an application's choices rather than statically binding applications to a protocol at compile time. The transport system implementations should provide applications with a way to override transport selection and instantiate a specific stack, e.g., to support servers wishing to listen to a specific protocol. This specific transport stack choice is discouraged for general use, because it can reduce the portability.¶
This API is described in terms of Objects with which an application can interact; Actions the application can perform on these Objects; Events, which an Object can send to an application asynchronously; and Parameters associated with these Actions and Events.¶
The following notations, which can be combined, are used in this document:¶
Object := Action()¶
[]Object := Action()¶
Object.Action()¶
Object -> Event<>¶
Action(param0, param1?, ...) / Event<param0, param1, ...>¶
Actions associated with no Object are Actions on the abstract interface itself; they are equivalent to Actions on a per-application global context.¶
The way these abstract concepts map into concrete implementations of this API in a given language on a given platform largely depends on the features of the language and the platform. Actions could be implemented as functions or method calls, for instance, and Events could be implemented via event queues, handler functions or classes, communicating sequential processes, or other asynchronous calling conventions.¶
This specification treats Events and Errors similarly. Errors, just as any other Events, may occur asynchronously in network applications. However, it is recommended that implementations of this interface also return Errors immediately, according to the error handling idioms of the implementation platform, for errors that can be immediately detected, such as inconsistency in Transport Properties. An error can provide an optional reason to the application with further details about why the error occurred.¶
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.¶
The design of the interface specified in this document is based on a set of principles, themselves an elaboration on the architectural design principles defined in [I-D.ietf-taps-arch]. The interface defined in this document provides:¶
The Transport Services API is the basic common abstract application programming interface to the Transport Services Architecture defined in the TAPS Architecture [I-D.ietf-taps-arch].¶
An application primarily interacts with this API through two Objects: Preconnections and Connections. A Preconnection represents a set of properties and constraints on the selection and configuration of paths and protocols to establish a Connection with a Remote Endpoint. A Connection represents a transport Protocol Stack on which data can be sent to and/or received from a Remote Endpoint (i.e., depending on the kind of transport, connections can be bi-directional or unidirectional). Connections can be created from Preconnections in three ways: by initiating the Preconnection (i.e., actively opening, as in a client), through listening on the Preconnection (i.e., passively opening, as in a server), or rendezvousing on the Preconnection (i.e. peer to peer establishment).¶
Once a Connection is established, data can be sent and received on it in the form of Messages. The interface supports the preservation of message boundaries both via explicit Protocol Stack support, and via application support through a Message Framer which finds message boundaries in a stream. Messages are received asynchronously through event handlers registered by the application. Errors and other notifications also happen asynchronously on the Connection. It is not necessary for an application to handle all Events; some Events may have implementation-specific default handlers. The application should not assume that ignoring Events (e.g., Errors) is always safe.¶
Section 5, Section 6, Section 8.2, Section 8.3, and Section 9 describe the details of application interaction with Objects through Actions and Events in each phase of a Connection, following the phases (Pre-Establishment, Establishment, Data Transfer, and Termination) described in Section 4.1 of [I-D.ietf-taps-arch].¶
The following usage examples illustrate how an application might use a Transport Services Interface to:¶
The examples in this section presume that a transport protocol is available between the Local and Remote Endpoints that provides Reliable Data Transfer, Preservation of data ordering, and Preservation of Message Boundaries. In this case, the application can choose to receive only complete messages.¶
If none of the available transport protocols provides Preservation of Message Boundaries, but there is a transport protocol that provides a reliable ordered byte stream, an application could receive this byte stream as partial Messages and transform it into application-layer Messages. Alternatively, an application might provide a Message Framer, which can transform a sequence of Messages into a byte stream and vice versa (Section 8.1.2).¶
This is an example of how an application might listen for incoming Connections using the Transport Services Interface, and receive a request, and send a response.¶
LocalSpecifier := NewLocalEndpoint() LocalSpecifier.WithInterface("any") LocalSpecifier.WithService("https") TransportProperties := NewTransportProperties() TransportProperties.Require(preserve-msg-boundaries) // Reliable Data Transfer and Preserve Order are Required by default SecurityParameters := NewSecurityParameters() SecurityParameters.Set('identity', identity) SecurityParameters.Set('keypair', privateKey, publicKey) // Specifying a remote endpoint is optional when using Listen() Preconnection := NewPreconnection(LocalSpecifier, TransportProperties, SecurityParameters) Listener := Preconnection.Listen() Listener -> ConnectionReceived<Connection> // Only receive complete messages in a Conn.Received handler Connection.Receive() Connection -> Received<messageDataRequest, messageContext> //---- Receive event handler begin ---- Connection.Send(messageDataResponse) Connection.Close() // Stop listening for incoming Connections // (this example supports only one Connection) Listener.Stop() //---- Receive event handler end ----¶
This is an example of how an application might open two Connections to a remote application using the Transport Services Interface, and send a request as well as receive a response on each of them.¶
RemoteSpecifier := NewRemoteEndpoint() RemoteSpecifier.WithHostname("example.com") RemoteSpecifier.WithService("https") TransportProperties := NewTransportProperties() TransportProperties.Require(preserve-msg-boundaries) // Reliable Data Transfer and Preserve Order are Required by default SecurityParameters := NewSecurityParameters() TrustCallback := NewCallback({ // Verify identity of the remote endpoint, return the result }) SecurityParameters.SetTrustVerificationCallback(TrustCallback) // Specifying a local endpoint is optional when using Initiate() Preconnection := NewPreconnection(RemoteSpecifier, TransportProperties, SecurityParameters) Connection := Preconnection.Initiate() Connection2 := Connection.Clone() Connection -> Ready<> Connection2 -> Ready<> //---- Ready event handler for any Connection C begin ---- C.Send(messageDataRequest) // Only receive complete messages C.Receive() //---- Ready event handler for any Connection C end ---- Connection -> Received<messageDataResponse, messageContext> Connection2 -> Received<messageDataResponse, messageContext> // Close the Connection in a Receive event handler Connection.Close() Connection2.Close()¶
This is an example of how an application might establish a connection with a peer using Rendezvous(), send a Message, and receive a Message.¶
LocalSpecifier := NewLocalEndpoint() LocalSpecifier.WithPort(9876) RemoteSpecifier := NewRemoteEndpoint() RemoteSpecifier.WithHostname("example.com") RemoteSpecifier.WithPort(9877) TransportProperties := NewTransportProperties() TransportProperties.Require(preserve-msg-boundaries) // Reliable Data Transfer and Preserve Order are Required by default SecurityParameters := NewSecurityParameters() SecurityParameters.Set('identity', identity) SecurityParameters.Set('keypair', privateKey, publicKey) TrustCallback := New Callback({ // Verify identity of the remote endpoint, return the result }) SecurityParameters.SetTrustVerificationCallback(trustCallback) // Both local and remote endpoint must be specified Preconnection := NewPreconnection(LocalSpecifier, RemoteSpecifier, TransportProperties, SecurityParameters) Preconnection.Rendezvous() Preconnection -> RendezvousDone<Connection> //---- Ready event handler begin ---- Connection.Send(messageDataRequest) // Only receive complete messages Connection.Receive() //---- Ready event handler end ---- Connection -> Received<messageDataResponse, messageContext> // Close the Connection in a Receive event handler Connection.Close()¶
Each application using the Transport Services Interface declares its preferences for how the transport service should operate using properties at each stage of the lifetime of a connection using Transport Properties, as defined in [I-D.ietf-taps-arch].¶
Transport Properties are divided into Selection, Connection, and Message Properties. Selection Properties (see The behavior of the selected protocol stack(s) when sending Messages is controlled by Message Properties (see Section 5.2) can only be set during pre-establishment. They are only used to specify which paths and protocol stacks can be used and are preferred by the application. Although Connection Properties (see Section 7.1) can be set during pre-establishment, they may be changed later. They are used to inform decisions made during establishment and to fine-tune the established connection.Section 8.1.3).¶
All Transport Properties, regardless of the phase in which they are used, are organized within a single namespace. This enables setting them as defaults at earlier stages and querying them in later stages:¶
Note that configuring Connection Properties and Message Properties on Preconnections is preferred over setting them later. Early specification of Connection Properties allows their use as additional input to the selection process. Protocol Specific Properties, which enable configuration of specialized features of a specific protocol, see Section 3.2 of [I-D.ietf-taps-arch], are not used as an input to the selection process but only support configuration if the respective protocol has been selected.¶
Transport Properties are referred to by property names. For the purposes of this document, these names are alphanumeric strings in which words may be separated by hyphens. These names serve two purposes:¶
Transport Property Names are hierarchically organized in the form [<Namespace>.]<PropertyName>.¶
tcp
for TCP specific Transport Properties. For IETF protocols, property
names under these namespaces SHOULD be defined in an RFC.¶
Namespaces for each of the keywords provided in the IANA protocol numbers registry (see https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml), reformatted where necessary to conform to an implementation's naming conventions, are reserved for Protocol Specific Properties and MUST NOT be used for vendor or implementation-specific properties.¶
Transport Properties can have one of a set of data types:¶
true
and false
; representation is
implementation-dependent.¶
true
indicating that the Selection Property
has been applied.¶
(Enumeration, Preference)
The composition of types and their order depends on the property and is fixed for the property.
The actual representation is implementation-dependent.¶
For types Integer and Numeric, special values can be defined per property; it is up to implementations how these special values are represented (e.g., by using -1 for an otherwise non-negative value).¶
This document defines a language- and platform-independent interface to a Transport Services system. Given the wide variety of languages and language conventions used to write applications that use the transport layer to connect to other applications over the Internet, this independence makes this interface necessarily abstract.¶
There is no interoperability benefit in tightly defining how the interface is presented to application programmers across diverse platforms. However, maintaining the "shape" of the abstract interface across different platforms reduces the effort for programmers who learn the transport services interface to then apply their knowledge to another platform.¶
We therefore make the following recommendations:¶
msgOrdered
can be implemented (trivially, as a no-op) as disabling the requirement for ordering will not have any effect on delivery order for Connections over TCP. Similarly, the msg-lifetime
Message Property can be implemented but ignored, as the description of this Property states that "it is not guaranteed that a Message will not be sent when its Lifetime has expired".¶
The Pre-Establishment phase allows applications to specify properties for the Connections that they are about to make, or to query the API about potential Connections they could make.¶
A Preconnection Object represents a potential Connection. It has state that describes the properties of a Connection that might exist in the future. This state comprises Local Endpoint and Remote Endpoint Objects that denote the endpoints of the potential Connection (see Section 5.1), the Selection Properties (see Section 5.2), any preconfigured Connection Properties (Section 7.1), and the security parameters (see Section 5.3):¶
Preconnection := NewPreconnection(LocalEndpoint?, RemoteEndpoint?, TransportProperties, SecurityParameters)¶
The Local Endpoint MUST be specified if the Preconnection is used to Listen() for incoming Connections, but is OPTIONAL if it is used to Initiate() connections. If no Local Endpoint is specified, the Transport System will assign an ephemeral local port to the Connection on the appropriate interface(s). The Remote Endpoint MUST be specified if the Preconnection is used to Initiate() Connections, but is OPTIONAL if it is used to Listen() for incoming Connections. The Local Endpoint and the Remote Endpoint MUST both be specified if a peer-to-peer Rendezvous is to occur based on the Preconnection.¶
Transport Properties MUST always be specified while security parameters are OPTIONAL.¶
If Message Framers are used (see Section 8.1.2), they MUST be added to the Preconnection during pre-establishment.¶
The transport services API uses the Local Endpoint and Remote Endpoint Objects to refer to the endpoints of a transport connection. Endpoints can be created as either Remote or Local:¶
RemoteSpecifier := NewRemoteEndpoint() LocalSpecifier := NewLocalEndpoint()¶
A single Endpoint Object represents the identity of a network host. That endpoint can be more or less specific depending on which identifiers are set. For example, an Endpoint that only specifies a hostname may in fact end up corresponding to several different IP addresses on different hosts.¶
An Endpoint Object can be configured with the following identifiers:¶
RemoteSpecifier.WithHostname("example.com")¶
RemoteSpecifier.WithPort(443)¶
RemoteSpecifier.WithService("https")¶
RemoteSpecifier.WithIPv4Address(192.0.2.21)¶
RemoteSpecifier.WithIPv6Address(2001:db8:4920:e29d:a420:7461:7073:0a)¶
LocalSpecifier.WithInterface("en0")¶
An Endpoint cannot have multiple identifiers of a same type set. That is, an endpoint cannot have two IP addresses specified. Two separate IP addresses are represented as two Endpoint Objects. If a Preconnection specifies a Remote Endpoint with a specific IP address set, it will only establish Connections to that IP address. If, on the other hand, the Remote Endpoint specifies a hostname but no addresses, the Connection can perform name resolution and attempt using any address derived from the original hostname of the Remote Endpoint.¶
The Transport Services API resolves names internally, when the Initiate(), Listen(), or Rendezvous() method is called to establish a Connection. Privacy considerations for the timing of this resolution are given in Section 12.¶
The Resolve() action on a Preconnection can be used by the application to force early binding when required, for example with some Network Address Translator (NAT) traversal protocols (see Section 6.3).¶
Specifying a multicast group address on a Local Endpoint will indicate to the transport system that the resulting connection will be used to receive multicast messages. The Remote Endpoint can be used to filter incoming multicast from specific senders. Such a Preconnection will only support calling Listen(), not Initiate(). The accepted Connections are receive-only.¶
Similarly, specifying a multicast group address on the Remote Endpoint will indicate that the resulting connection will be used to send multicast messages.¶
An Endpoint can have an alternative definition when using different protocols. For example, a server that supports both TLS/TCP and QUIC may be accessible on two different port numbers depending on which protocol is used.¶
To support this, Endpoint Objects can specify "aliases". An Endpoint can have multiple aliases set.¶
RemoteSpecifier.AddAlias(AlternateRemoteSpecifier)¶
In order to scope an alias to a specific transport protocol, an Endpoint can specify a protocol identifier. These identifiers MUST only be set for aliases.¶
RemoteSpecifier.WithProtocol(QUIC)¶
The following example shows a case where "example.com" has a server running on port 443, with an alternate port of 8443 for QUIC.¶
RemoteSpecifier := NewRemoteEndpoint() RemoteSpecifier.WithHostname("example.com") RemoteSpecifier.WithPort(443) QUICRemoteSpecifier := NewRemoteEndpoint() QUICRemoteSpecifier.WithHostname("example.com") QUICRemoteSpecifier.WithPort(8443) QUICRemoteSpecifier.WithProtocol(QUIC) RemoteSpecifier.AddAlias(QUICRemoteSpecifier)¶
The following examples of Endpoints show common usage patterns.¶
Specify a Remote Endpoint using a hostname and service name:¶
RemoteSpecifier := NewRemoteEndpoint() RemoteSpecifier.WithHostname("example.com") RemoteSpecifier.WithService("https")¶
Specify a Remote Endpoint using an IPv6 address and remote port:¶
RemoteSpecifier := NewRemoteEndpoint() RemoteSpecifier.WithIPv6Address(2001:db8:4920:e29d:a420:7461:7073:0a) RemoteSpecifier.WithPort(443)¶
Specify a Remote Endpoint using an IPv4 address and remote port:¶
RemoteSpecifier := NewRemoteEndpoint() RemoteSpecifier.WithIPv4Address(192.0.2.21) RemoteSpecifier.WithPort(443)¶
Specify a Local Endpoint using a local interface name and local port:¶
LocalSpecifier := NewLocalEndpoint() LocalSpecifier.WithInterface("en0") LocalSpecifier.WithPort(443)¶
As an alternative to specifying an interface name for the Local Endpoint, an application
can express more fine-grained preferences using the Interface Instance or Type
Selection Property, see Section 5.2.11. However, if the application specifies Selection
Properties that are inconsistent with the Local Endpoint, this will result in an Error once the
application attempts to open a Connection.¶
Specify a Local Endpoint using a STUN server:¶
LocalSpecifier := NewLocalEndpoint() LocalSpecifier.WithStunServer(address, port, credentials)¶
Specify a Local Endpoint using a Any-Source Multicast group to join on a named local interface:¶
LocalSpecifier := NewLocalEndpoint() LocalSpecifier.WithIPv4Address(233.252.0.0) LocalSpecifier.WithInterface("en0")¶
Source-Specific Multicast requires setting both a Local and Remote Endpoint:¶
LocalSpecifier := NewLocalEndpoint() LocalSpecifier.WithIPv4Address(232.1.1.1) LocalSpecifier.WithInterface("en0") RemoteSpecifier := NewRemoteEndpoint() RemoteSpecifier.WithIPv4Address(192.0.2.22)¶
A Preconnection Object holds properties reflecting the application's requirements and preferences for the transport. These include Selection Properties for selecting protocol stacks and paths, as well as Connection Properties for configuration of the detailed operation of the selected Protocol Stacks.¶
The protocol(s) and path(s) selected as candidates during establishment are determined and configured using these properties. Since there could be paths over which some transport protocols are unable to operate, or remote endpoints that support only specific network addresses or transports, transport protocol selection is necessarily tied to path selection. This may involve choosing between multiple local interfaces that are connected to different access networks.¶
Most Selection Properties are represented as preferences, which can have one of five preference levels:¶
Preference | Effect |
---|---|
Require | Select only protocols/paths providing the property, fail otherwise |
Prefer | Prefer protocols/paths providing the property, proceed otherwise |
Ignore | No preference |
Avoid | Prefer protocols/paths not providing the property, proceed otherwise |
Prohibit | Select only protocols/paths not providing the property, fail otherwise |
In addition, the pseudo-level Default
can be used to reset the property to the default
level used by the implementation. This level will never show up when querying the value of
a preference: the effective preference must be returned instead.¶
The implementation MUST ensure an outcome that is consistent with all application requirements expressed using Require and Prohibit. While preferences expressed using Prefer and Avoid influence protocol and path selection as well, outcomes can vary given the same Selection Properties, because the available protocols and paths can differ across systems and contexts. However, implementations are RECOMMENDED to seek to provide a consistent outcome to an application, given the same set of Selection Properties.¶
Note that application preferences can conflict with each other. For example, if an application indicates a preference for a specific path by specifying an interface, but also a preference for a protocol, a situation might occur in which the preferred protocol is not available on the preferred path. In such cases, implementations SHOULD prioritize Selection Properties that select paths over those that select protocols. Therefore, the transport system SHOULD race the path first, ignoring the protocol preference if a specific protocol does not work on the path.¶
Selection and Connection Properties, as well as defaults for Message Properties, can be added to a Preconnection to configure the selection process and to further configure the eventually selected protocol stack(s). They are collected into a TransportProperties object to be passed into a Preconnection object:¶
TransportProperties := NewTransportProperties()¶
Individual properties are then set on the TransportProperties Object. Setting a Transport Property to a value overrides the previous value of this Transport Property.¶
TransportProperties.Set(property, value)¶
Selection Properties of type Preference
might often be frequently used. Implementations MAY therefore provide additional convenience functions to simplify use, see Appendix A.1 for examples.
In addition, implementations MAY provide a mechanism to create TransportProperties objects that are preconfigured for common use cases as outlined in Appendix A.2.¶
For an existing Connection, the Transport Properties can be queried any time by using the following call on the Connection Object:¶
TransportProperties := Connection.GetTransportProperties()¶
A Connection gets its Transport Properties either by being explicitly configured via a Preconnection, by configuration after establishment, or by inheriting them from an antecedent via cloning; see Section 6.4 for more.¶
Section 7.1 provides a list of Connection Properties, while Selection
Properties are listed in the subsections below. Many properties are
only considered during establishment, and can not be changed after a Connection
is established; however, they can still be queried. The return type of a queried
Selection Property is Boolean, where true
means that the Selection Property
has been applied and false
means that the Selection Property has not
been applied. Note that true
does not mean that a request has been honored.
For example, if Congestion control
was
requested with preference level Prefer
, but congestion control could not
be supported, querying the congestionControl
property yields the
value false
. If the preference level Avoid
was used for Congestion control
,
and, as requested, the Connection is not congestion controlled, querying
the congestionControl
property also yields the value false
.¶
An implementation of this interface must provide sensible defaults for Selection Properties. The recommended default values for each property below represent a configuration that can be implemented over TCP. If these default values are used and TCP is not supported by a Transport Services implementation, then an application using the default set of Properties might not succeed in establishing a connection. Using the same default values for independent Transport Services implementations can be beneficial when applications are ported between different implementations/platforms, even if this default could lead to a connection failure when TCP is not available. If default values other than those recommended below are used, it is recommended to clearly document any differences.¶
This property specifies whether the application needs to use a transport protocol that ensures that all data is received at the Remote Endpoint without corruption. When reliable data transfer is enabled, this also entails being notified when a Connection is closed or aborted.¶
This property specifies whether the application needs or prefers to use a transport protocol that preserves message boundaries.¶
This property specifies whether an application considers it useful to indicate its reliability requirements on a per-Message basis. This property applies to Connections and Connection Groups.¶
This property specifies whether the application wishes to use a transport protocol that can ensure that data is received by the application on the other end in the same order as it was sent.¶
This property specifies whether an application would like to supply a Message to the transport protocol before Connection establishment that will then be reliably transferred to the other side before or during Connection establishment. This Message can potentially be received multiple times (i.e., multiple copies of the message data may be passed to the Remote Endpoint). See also Section 8.1.3.4. Note that disabling this property has no effect for protocols that are not connection-oriented and do not protect against duplicated messages, e.g., UDP.¶
This property specifies that the application would prefer multiple Connections within a Connection Group to be provided by streams of a single underlying transport connection where possible.¶
This property specifies the application's need for protection against corruption for all data transmitted on this Connection. Disabling this property could enable later control of the sender checksum coverage (see Section 8.1.3.6).¶
This property specifies the application's need for protection against corruption for all data received on this Connection. Disabling this property could enable later control of the required minimum receiver checksum coverage (see Section 7.1.1).¶
This property specifies whether the application would like the Connection to be congestion controlled or not. Note that if a Connection is not congestion controlled, an application using such a Connection SHOULD itself perform congestion control in accordance with [RFC2914] or use a circuit breaker in accordance with [RFC8084], whichever is appropriate. Also note that reliability is usually combined with congestion control in protocol implementations, rendering "reliable but not congestion controlled" a request that is unlikely to succeed. If the Connection is congestion controlled, performing additional congestion control in the application can have negative performance implications.¶
This property specifies whether the application would like the Connection to send keep-alive packets or not. Note that if a Connection determines that keep-alive packets are being sent, the applicaton should itself avoid generating additional keep alive messages. Note that when supported, the system will use the default period for generation of the keep alive-packets. (See also Section 7.1.4).¶
This property allows the application to select any specific network interfaces
or categories of interfaces it wants to Require
, Prohibit
, Prefer
, or
Avoid
. Note that marking a specific interface as Require
strictly limits path
selection to that single interface, and often leads to less flexible and resilient
connection establishment.¶
In contrast to other Selection Properties, this property is a tuple of an (Enumerated) interface identifier and a preference, and can either be implemented directly as such, or for making one preference available for each interface and interface type available on the system.¶
The set of valid interface types is implementation- and system-specific. For
example, on a mobile device, there may be Wi-Fi
and Cellular
interface types
available; whereas on a desktop computer, Wi-Fi
and Wired
Ethernet
interface types might be available. An implementation should provide all types
that are supported on the local system to all remote systems, to allow
applications to be written generically. For example, if a single implementation
is used on both mobile devices and desktop devices, it should define the
Cellular
interface type for both systems, since an application might wish to
always prohibit cellular.¶
The set of interface types is expected to change over time as new access technologies become available. The taxonomy of interface types on a given Transport Services system is implementation-specific.¶
Interface types should not be treated as a proxy for properties of interfaces such as metered or unmetered network access. If an application needs to prohibit metered interfaces, this should be specified via Provisioning Domain attributes (see Section 5.2.12) or another specific property.¶
Similar to interface instances and types (see Section 5.2.11), this property
allows the application to control path selection by selecting which specific
Provisioning Domain (PvD) or categories of PVDs it wants to
Require
, Prohibit
, Prefer
, or Avoid
. Provisioning Domains define
consistent sets of network properties that may be more specific than network
interfaces [RFC7556].¶
As with interface instances and types, this property is a tuple of an (Enumerated) PvD identifier and a preference, and can either be implemented directly as such, or for making one preference available for each interface and interface type available on the system.¶
The identification of a specific PvD is implementation- and system-specific, because there is currently no portable standard format for a PvD identifier. For example, this identifier might be a string name or an integer. As with requiring specific interfaces, requiring a specific PvD strictly limits the path selection.¶
Categories or types of PvDs are also defined to be implementation- and system-specific. These can be useful to identify a service that is provided by a PvD. For example, if an application wants to use a PvD that provides a Voice-Over-IP service on a Cellular network, it can use the relevant PvD type to require a PvD that provides this service, without needing to look up a particular instance. While this does restrict path selection, it is broader than requiring specific PvD instances or interface instances, and should be preferred over these options.¶
This property allows the application to express a preference for the use of temporary local addresses, sometimes called "privacy" addresses [RFC4941]. Temporary addresses are generally used to prevent linking connections over time when a stable address, sometimes called "permanent" address, is not needed. There are some caveats to note when specifying this property. First, if an application Requires the use of temporary addresses, the resulting Connection cannot use IPv4, because temporary addresses do not exist in IPv4. Second, temporary local addresses might involve trading off privacy for performance. For instance, temporary addresses can interfere with resumption mechanisms that some protocols rely on to reduce initial latency.¶
This property specifies whether and how applications want to take advantage of transferring data across multiple paths between the same end hosts. Using multiple paths allows connections to migrate between interfaces or aggregate bandwidth as availability and performance properties change. Possible values are:¶
The policy for using multiple paths is specified using the separate multipath-policy
property, see Section 7.1.7 below.
To enable the peer endpoint to initiate additional paths towards a local address other than the one initially used, it is necessary to set the Alternative Addresses property (see Section 5.2.15 below).¶
Setting this property to "Active", can have privacy implications: It enables the transport to establish connectivity using alternate paths that might result in users being linkable across the multiple paths, even if the Advertisement of Alternative Addresses property (see Section 5.2.15 below) is set to false.¶
Enumeration values other than "Disabled" are interpreted as a preference for choosing protocols that can make use of multiple paths.
The "Disabled" value implies a requirement not to use multiple paths in parallel but does not prevent choosing a protocol that is capable of using multiple paths, e.g., it does not prevent choosing TCP, but prevents sending the MP_CAPABLE
option in the TCP handshake.¶
This property specifies whether alternative addresses, e.g., of other interfaces, should be advertised to the peer endpoint by the protocol stack. Advertising these addresses enables the peer-endpoint to establish additional connectivity, e.g., for connection migration or using multiple paths.¶
Note that this can have privacy implications because it might result in users being linkable across the multiple paths. Also, note that setting this to false does not prevent the local transport system from establishing connectivity using alternate paths (see Section 5.2.14 above); it only prevents proactive advertisement of addresses.¶
This property specifies whether an application wants to use the connection for sending and/or receiving data. Possible values are:¶
Since unidirectional communication can be supported by transports offering bidirectional communication, specifying unidirectional communication may cause a transport stack that supports bidirectional communication to be selected.¶
This property specifies whether an application considers it useful to be informed when an ICMP error message arrives that does not force termination of a connection. When set to true, received ICMP errors are available as SoftErrors, see Section 7.3.1. Note that even if a protocol supporting this property is selected, not all ICMP errors will necessarily be delivered, so applications cannot rely upon receiving them [RFC8085].¶
The most common client-server communication pattern involves the client actively opening a connection, then sending data to the server. The server listens (passive open), reads, and then answers. This property specifies whether an application wants to diverge from this pattern - either by actively opening with Initiate(), immediately followed by reading, or passively opening with Listen(), immediately followed by writing. This property is ignored when establishing connections using Rendezvous(). Requiring this property limits the choice of mappings to underlying protocols, which can reduce efficiency. For example, it prevents the transport system from mapping Connections to SCTP streams, where the first transmitted data takes the role of an active open signal [I-D.ietf-taps-impl].¶
Most security parameters, e.g., TLS ciphersuites, local identity and private key, etc., may be configured statically. Others are dynamically configured during connection establishment. Security parameters and callbacks are partitioned based on their place in the lifetime of connection establishment. Similar to Transport Properties, both parameters and callbacks are inherited during cloning (see Section 6.4).¶
Common parameters such as TLS ciphersuites are known to implementations. Clients should use common safe defaults for these values whenever possible. However, as discussed in [RFC8922], many transport security protocols require specific security parameters and constraints from the client at the time of configuration and actively during a handshake. These configuration parameters need to be specified in the pre-connection phase and are created as follows:¶
SecurityParameters := NewSecurityParameters()¶
Security configuration parameters and sample usage follow:¶
SecurityParameters.Set('identity', identity) SecurityParameters.Set('keypair', privateKey, publicKey)¶
SecurityParameters.Set('supported-group', 'secp256k1') SecurityParameters.Set('ciphersuite, 'TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256') SecurityParameters.Set('signature-algorithm', 'ed25519')¶
SecurityParameters.Set('pre-shared-key', key, identity)¶
SecurityParameters.Set('max-cached-sessions', 16) SecurityParameters.Set('cached-session-lifetime-seconds', 3600)¶
Security decisions, especially pertaining to trust, are not static. Once configured, parameters may also be supplied during connection establishment. These are best handled as client-provided callbacks. Security handshake callbacks that may be invoked during connection establishment include:¶
TrustCallback := NewCallback({ // Handle trust, return the result }) SecurityParameters.SetTrustVerificationCallback(trustCallback)¶
ChallengeCallback := NewCallback({ // Handle challenge }) SecurityParameters.SetIdentityChallengeCallback(challengeCallback)¶
Before a Connection can be used for data transfer, it needs to be established. Establishment ends the pre-establishment phase; all transport properties and cryptographic parameter specification must be complete before establishment, as these will be used to select candidate Paths and Protocol Stacks for the Connection. Establishment may be active, using the Initiate() Action; passive, using the Listen() Action; or simultaneous for peer-to-peer, using the Rendezvous() Action. These Actions are described in the subsections below.¶
Active open is the Action of establishing a Connection to a Remote Endpoint presumed to be listening for incoming Connection requests. Active open is used by clients in client-server interactions. Active open is supported by this interface through the Initiate Action:¶
Connection := Preconnection.Initiate(timeout?)¶
The timeout parameter specifies how long to wait before aborting Active open. Before calling Initiate, the caller must have populated a Preconnection Object with a Remote Endpoint specifier, optionally a Local Endpoint specifier (if not specified, the system will attempt to determine a suitable Local Endpoint), as well as all properties necessary for candidate selection.¶
The Initiate() Action returns a Connection object. Once Initiate() has been called, any changes to the Preconnection MUST NOT have any effect on the Connection. However, the Preconnection can be reused, e.g., to Initiate another Connection.¶
Once Initiate is called, the candidate Protocol Stack(s) may cause one or more
candidate transport-layer connections to be created to the specified remote
endpoint. The caller may immediately begin sending Messages on the Connection
(see Section 8.2) after calling Initiate(); note that any data marked Safely Replayable
that is sent
while the Connection is being established may be sent multiple times or on
multiple candidates.¶
The following Events may be sent by the Connection after Initiate() is called:¶
Connection -> Ready<>¶
The Ready Event occurs after Initiate has established a transport-layer connection on at least one usable candidate Protocol Stack over at least one candidate Path. No Receive Events (see Section 8.3) will occur before the Ready Event for Connections established using Initiate.¶
Connection -> EstablishmentError<reason?>¶
An EstablishmentError occurs either when the set of transport properties and security parameters cannot be fulfilled on a Connection for initiation (e.g., the set of available Paths and/or Protocol Stacks meeting the constraints is empty) or reconciled with the Local and/or Remote Endpoints; when the remote specifier cannot be resolved; or when no transport-layer connection can be established to the Remote Endpoint (e.g., because the Remote Endpoint is not accepting connections, the application is prohibited from opening a Connection by the operating system, or the establishment attempt has timed out for any other reason).¶
Connection establishment and transmission of the first message can be combined in a single action Section 8.2.5.¶
Passive open is the Action of waiting for Connections from Remote Endpoints, commonly used by servers in client-server interactions. Passive open is supported by this interface through the Listen Action and returns a Listener object:¶
Listener := Preconnection.Listen()¶
Before calling Listen, the caller must have initialized the Preconnection during the pre-establishment phase with a Local Endpoint specifier, as well as all properties necessary for Protocol Stack selection. A Remote Endpoint may optionally be specified, to constrain what Connections are accepted.¶
The Listen() Action returns a Listener object. Once Listen() has been called, any changes to the Preconnection MUST NOT have any effect on the Listener. The Preconnection can be disposed of or reused, e.g., to create another Listener.¶
Listener.Stop()¶
Listening continues until the global context shuts down, or until the Stop action is performed on the Listener object.¶
Listener -> ConnectionReceived<Connection>¶
The ConnectionReceived Event occurs when a Remote Endpoint has established a transport-layer connection to this Listener (for Connection-oriented transport protocols), or when the first Message has been received from the Remote Endpoint (for Connectionless protocols), causing a new Connection to be created. The resulting Connection is contained within the ConnectionReceived Event, and is ready to use as soon as it is passed to the application via the event.¶
Listener.SetNewConnectionLimit(value)¶
If the caller wants to rate-limit the number of inbound Connections that will be delivered, it can set a cap using SetNewConnectionLimit(). This mechanism allows a server to protect itself from being drained of resources. Each time a new Connection is delivered by the ConnectionReceived Event, the value is automatically decremented. Once the value reaches zero, no further Connections will be delivered until the caller sets the limit to a higher value. By default, this value is Infinite. The caller is also able to reset the value to Infinite at any point.¶
Listener -> EstablishmentError<reason?>¶
An EstablishmentError occurs either when the Properties and Security Parameters of the Preconnection cannot be fulfilled for listening or cannot be reconciled with the Local Endpoint (and/or Remote Endpoint, if specified), when the Local Endpoint (or Remote Endpoint, if specified) cannot be resolved, or when the application is prohibited from listening by policy.¶
Listener -> Stopped<>¶
A Stopped Event occurs after the Listener has stopped listening.¶
Simultaneous peer-to-peer Connection establishment is supported by the Rendezvous() Action:¶
Preconnection.Rendezvous()¶
The Preconnection Object must be specified with both a Local Endpoint and a Remote Endpoint, and also the transport properties and security parameters needed for Protocol Stack selection.¶
The Rendezvous() Action causes the Preconnection to listen on the Local Endpoint for an incoming Connection from the Remote Endpoint, while also simultaneously trying to establish a Connection from the Local Endpoint to the Remote Endpoint.¶
If there are multiple Local Endpoints or Remote Endpoints configured, then initiating a rendezvous action will systematically probe the reachability of those endpoints following an approach such as that used in Interactive Connectivity Establishment (ICE) [RFC5245].¶
If the endpoints are suspected to be behind a NAT, Rendezvous() can be initiated using Local and Remote Endpoints that support a method of discovering NAT bindings such as Session Traversal Utilities for NAT (STUN) [RFC8489] or Traversal Using Relays around NAT (TURN) [RFC5766]. In this case, the Local Endpoint will resolve to a mixture of local and server reflexive addresses. The Resolve() action on the Preconnection can be used to discover these bindings:¶
[]Preconnection := Preconnection.Resolve()¶
The Resolve() call returns a list of Preconnection Objects, that represent the concrete addresses, local and server reflexive, on which a Rendezvous() for the Preconnection will listen for incoming Connections. These resolved Preconnections will share all other Properties with the Preconnection from which they are derived, though some Properties may be made more-specific by the resolution process.¶
An application that uses Rendezvous() to establish a peer-to-peer connection in the presence of NATs will configure the Preconnection object with a Local Endpoint that supports NAT binding discovery. It will then Resolve() on that endpoint, and pass the resulting list of candidate local addresses to the peer via a signalling protocol, for example as part of an ICE [RFC5245] exchange within SIP [RFC3261] or WebRTC [RFC7478]. The peer will, via the same signalling channel, return the remote endpoint candidates. These remote endpoint candidates are then configured on the Preconnection, allowing the Rendezvous() Action to be initiated.¶
The Rendezvous() Action returns a Connection object. Once Rendezvous() has been called, any changes to the Preconnection MUST NOT have any effect on the Connection. However, the Preconnection can be reused, e.g., for Rendezvous of another Connection.¶
Preconnection -> RendezvousDone<Connection>¶
The RendezvousDone<> Event occurs when a Connection is established with the Remote Endpoint. For Connection-oriented transports, this occurs when the transport-layer connection is established; for Connectionless transports, it occurs when the first Message is received from the Remote Endpoint. The resulting Connection is contained within the RendezvousDone<> Event, and is ready to use as soon as it is passed to the application via the Event.¶
Preconnection -> EstablishmentError<reason?>¶
An EstablishmentError occurs either when the Properties and Security Parameters of the Preconnection cannot be fulfilled for rendezvous or cannot be reconciled with the Local and/or Remote Endpoints, when the Local Endpoint or Remote Endpoint cannot be resolved, when no transport-layer connection can be established to the Remote Endpoint, or when the application is prohibited from rendezvous by policy.¶
When using some NAT traversal protocols, e.g., Interactive Connectivity Establishment (ICE) [RFC5245], it is expected that the Local Endpoint will be configured with some method of discovering NAT bindings, e.g., a Session Traversal Utilities for NAT (STUN) server. In this case, the Local Endpoint may resolve to a mixture of local and server reflexive addresses. The Resolve() action on the Preconnection can be used to discover these bindings:¶
[]Preconnection := Preconnection.Resolve()¶
The Resolve() call returns a list of Preconnection Objects, that represent the concrete addresses, local and server reflexive, on which a Rendezvous() for the Preconnection will listen for incoming Connections. These resolved Preconnections will share all other Properties with the Preconnection from which they are derived, though some Properties may be made more-specific by the resolution process. This list can be passed to a peer via a signalling protocol, such as SIP [RFC3261] or WebRTC [RFC7478], to configure the remote endpoint.¶
Entangled Connections can be created using the Clone Action:¶
Connection := Connection.Clone()¶
Calling Clone on a Connection yields a group of Connections: the parent
Connection on which Clone was called, and a resulting cloned Connection. The
connections within a group are "entangled" with each other, and become part of a Connection
Group. Calling Clone on any of these Connections adds another Connection to
the Connection Group, and so on. "Entangled" Connections share all
Connection Properties except Connection Priority
(see Section 7.1.2) .
Like all other Properties, Connection Priority is copied
to the new Connection when calling Clone(), but it is not entangled: Changing
Connection Priority on one Connection does not change it on the other Connections
in the same Connection Group.¶
The stack of Message Framers associated with a Connection are also copied to the cloned Connection when calling Clone. In other words, a cloned Connection has the same stack of Message Framers as the Connection from which they are Cloned, but these Framers may internally maintain per-Connection state.¶
It is also possible to check which Connections belong to the same Connection Group. Calling GroupedConnections() on a specific Connection returns a set of all Connections in the same group.¶
[]Connection := Connection.GroupedConnections()¶
Connections will belong to the same group if the application previously called Clone. Passive Connections can also be added to the same group - e.g., when a Listener receives a new Connection that is just a new stream of an already active multi-streaming protocol instance.¶
Changing one of the Connection Properties on one Connection in the group
changes it for all others. Message Properties, however, are not
entangled. For example, changing Timeout for aborting Connection
(see
Section 7.1.3) on one Connection in a group will automatically change this
Connection Property for all Connections in the group in the same way. However,
changing Lifetime
(see Section 8.1.3.1) of a Message will only affect a
single Message on a single Connection, entangled or not.¶
If the underlying protocol supports multi-streaming, it is natural to use this functionality to implement Clone. In that case, entangled Connections are multiplexed together, giving them similar treatment not only inside endpoints, but also across the end-to-end Internet path.¶
Note that calling Clone() can result in on-the-wire signaling, e.g., to open a new connection, depending on the underlying Protocol Stack. When Clone() leads to multiple connections being opened instead of multi-streaming, the transport system will ensure consistency of Connection Properties by uniformly applying them to all underlying connections in a group. Even in such a case, there are possibilities for a transport system to implement prioritization within a Connection Group [TCP-COUPLING] [RFC8699].¶
Attempts to clone a Connection can result in a CloneError:¶
Connection -> CloneError<reason?>¶
The Connection Priority Connection Property operates on entangled Connections using the same approach as in Section 8.1.3.2: when allocating available network capacity among Connections in a Connection Group, sends on Connections with lower Priority values will be prioritized over sends on Connections with higher Priority values. Capacity will be shared among these Connections according to the Connection Group Transmission Scheduler property (Section 7.1.5). See Section 8.2.6 for more.¶
During pre-establishment and after establishment, connections can be configured and queried using Connection Properties, and asynchronous information may be available about the state of the connection via Soft Errors.¶
Connection Properties represent the configuration and state of the selected Protocol Stack(s) backing a Connection. These Connection Properties may be Generic, applying regardless of transport protocol, or Specific, applicable to a single implementation of a single transport protocol stack. Generic Connection Properties are defined in Section 7.1 below. Specific Protocol Properties are defined in a transport- and implementation-specific way, and MUST NOT be assumed to apply across different protocols. Attempts to set Specific Protocol Properties on a protocol stack not containing that specific protocol are simply ignored, and do not raise an error; however, too much reliance by an application on Specific Protocol Properties can significantly reduce the flexibility of a transport services implementation.¶
The application can set and query Connection Properties on a per-Connection basis. Connection Properties that are not read-only can be set during pre-establishment (see Section 5.2), as well as on connections directly using the SetProperty action:¶
Connection.SetProperty(property, value)¶
Note that changing one of the Connection Properties on one Connection in a Connection Group will also change it for all other Connections of that group; see further Section 6.4.¶
At any point, the application can query Connection Properties.¶
ConnectionProperties := Connection.GetProperties()¶
Depending on the status of the connection, the queried Connection Properties will include different information:¶
Direction of Communication
set to unidirectional receive
or if a Message
marked as Final
was sent over this connection, see Section 8.1.3.5.¶
Direction of Communication
set to unidirectional send
or if a Message
marked as Final
was received, see Section 8.3.3.3. The latter
is only supported by certain transport protocols, e.g., by TCP as half-closed
connection.¶
Generic Connection Properties are defined independent of the chosen protocol stack and therefore available on all Connections.¶
Many Connection Properties have a corresponding Selection Property that enables applications to express their preference for protocols providing a supporting transport feature.¶
This property specifies the minimum number of bytes in a received message that need to be covered by a checksum. A special value of 0 means that no checksum is permitted. A receiving Endpoint will not forward messages to the application that have less coverage. The application is responsible for handling any corruption within the non-protected part of the message [RFC8085].¶
This Property is a non-negative integer representing the relative inverse priority (i.e., a lower value reflects a higher priority) of this Connection relative to other Connections in the same Connection Group. It has no effect on Connections not part of a Connection Group. As noted in Section 6.4, this property is not entangled when Connections are cloned, i.e., changing the Priority on one Connection in a Connection Group does not change it on the other Connections in the same Connection Group. No guarantees of a specific behavior regarding Connection Priority are given; a transport system may ignore this property. See Section 8.2.6 for more details.¶
This property specifies how long to wait before deciding that an active Connection has
failed when trying to reliably deliver data to the Remote Endpoint. Adjusting this Property
will only take effect when the underlying stack supports reliability. The special value
Disabled
means that this timeout is not scheduled to happen.¶
A transport system can request a protocol that supports sending keep alive packets Section 5.2.10.
This property specifies the maximum time an idle connection (one for which no transport
packets have been sent) should wait before
the Local Endpoint sends a keep-alive packet to the Remote Endpoint. Adjusting this Property
will only take effect when the underlying stack supports sending keep-alive packets.
Guidance on setting this value for datagram transports is
provided in [RFC8085]. The special value
Default
means that this timeout will use the default for the selected transport.
A value greater than the connection timeout (Section 7.1.3) will disable the sending of keep-alive packets.¶
This property specifies which scheduler should be used among Connections within a Connection Group, see Section 6.4. The set of schedulers can be taken from [RFC8260].¶
This property specifies the desired network treatment for traffic sent by the application and the tradeoffs the application is prepared to make in path and protocol selection to receive that desired treatment. When the capacity profile is set to a value other than Default, the transport system SHOULD select paths and configure protocols to optimize the tradeoff between delay, delay variation, and efficient use of the available capacity based on the capacity profile specified. How this is realized is implementation-specific. The Capacity Profile MAY also be used to set markings on the wire for Protocol Stacks supporting this. Recommendations for use with DSCP are provided below for each profile; note that when a Connection is multiplexed, the guidelines in Section 6 of [RFC7657] apply.¶
The following values are valid for the Capacity Profile:¶
The Capacity Profile for a selected protocol stack may be modified on a per-Message basis using the Transmission Profile Message Property; see Section 8.1.3.8.¶
This property specifies the local policy for transferring data across multiple paths between the same end hosts if Parallel Use of Multiple Paths is not set to Disabled (see Section 5.2.14). Possible values are:¶
Note that this is a local choice - the Remote Endpoint can choose a different policy.¶
Unlimited
) / Numeric (with special value Unlimited
) / Numeric (with special value Unlimited
) / Numeric (with special value Unlimited
)¶
This property specifies an upper-bound rate that a transfer is not expected to
exceed (even if flow control and congestion control allow higher rates), and/or a
lower-bound rate below which the application does not deem
it will be useful. These are specified in bits per second.
The special value Unlimited
indicates that no bound is specified.¶
This property controls the number of Connections that can be accepted from a peer as new members of the Connection's group. Similar to SetNewConnectionLimit(), this limits the number of ConnectionReceived Events that will occur, but constrained to the group of the Connection associated with this property. For a multi-streaming transport, this limits the number of allowed streams.¶
The following generic Connection Properties are read-only, i.e. they cannot be changed by an application.¶
This property represents the maximum Message size that can be sent before or during Connection establishment, see also Section 8.1.3.4. It is given in Bytes.¶
This property, if applicable, represents the maximum Message size that can be sent without incurring network-layer fragmentation or transport layer segmentation at the sender. It exposes the Maximum Packet Size (MPS) as described in Datagram PLPMTUD [I-D.ietf-tsvwg-datagram-plpmtud].¶
This property represents the maximum Message size that an application can send.¶
This numeric property represents the maximum Message size that an application can receive.¶
These properties specify configurations for the User Timeout Option (UTO), in the case that TCP becomes the chosen transport protocol. Implementation is optional and useful only if TCP is implemented in the transport system.¶
These TCP-specific properties are included here because the feature Suggest
timeout to the peer
is part of the minimal set of transport services
[RFC8923], where this feature was categorized as "functional".
This means that when an implementation offers this feature, it has to expose an
interface to it to the application. Otherwise, the implementation might
violate assumptions by the application, which could cause the application to
fail.¶
All of the below properties are optional (e.g., it is possible to specify User Timeout Enabled
as true,
but not specify an Advertised User Timeout value; in this case, the TCP default will be used).
These properties reflect the API extension specified in Section 3 of [RFC5482].¶
This time value is advertised via the TCP User Timeout Option (UTO) [RFC5482] at the Remote Endpoint
to adapt its own Timeout for aborting Connection
(see Section 7.1.3) value.¶
This property controls whether the UTO option is enabled for a connection. This applies to both sending and receiving.¶
This property controls whether the Timeout for aborting Connection
(see Section 7.1.3)
may be changed
based on a UTO option received from the remote peer. This boolean becomes false when
Timeout for aborting Connection
(see Section 7.1.3) is used.¶
During the lifetime of a connection there are events that can occur when configured.¶
Asynchronous introspection is also possible, via the SoftError Event. This event informs the application about the receipt and contents of an ICMP error message related to the Connection. This will only happen if the underlying protocol stack supports access to soft errors; however, even if the underlying stack supports it, there is no guarantee that a soft error will be signaled.¶
Connection -> SoftError<>¶
This event notifies the application when at least one of the paths underlying a Connection has changed. Changes occur on a single path when the PMTU changes as well as when multiple paths are used and paths are added or removed, or a handover has been performed.¶
Connection -> PathChange<>¶
Data is sent and received as Messages, which allows the application to communicate the boundaries of the data being transferred.¶
Each Message has an optional Message Context, which allows to add Message Properties, identify Send Events related to a specific Message or to inspect meta-data related to the Message sent. Framers can be used to extend or modify the message data with additional information that can be processed at the receiver to detect message boundaries.¶
Using the MessageContext object, the application can set and retrieve meta-data of the message, including Message Properties (see Section 8.1.3) and framing meta-data (see Section 8.1.2.2). Therefore, a MessageContext object can be passed to the Send action and is returned by each Send and Receive related event.¶
Message Properties can be set and queried using the Message Context:¶
MessageContext.add(scope?, parameter, value) PropertyValue := MessageContext.get(scope?, property)¶
To get or set Message Properties, the optional scope parameter is left empty. To get or set meta-data for a Framer, the application has to pass a reference to this Framer as the scope parameter.¶
For MessageContexts returned by send Events (see Section 8.2.2) and receive Events (see Section 8.3.2), the application can query information about the local and Remote Endpoint:¶
RemoteEndpoint := MessageContext.GetRemoteEndpoint() LocalEndpoint := MessageContext.GetLocalEndpoint()¶
Although most applications communicate over a network using well-formed Messages, the boundaries and metadata of the Messages are often not directly communicated by the transport protocol itself. For example, HTTP applications send and receive HTTP messages over a byte-stream transport, requiring that the boundaries of HTTP messages be parsed from the stream of bytes.¶
Message Framers allow extending a Connection's Protocol Stack to define how to encapsulate or encode outbound Messages, and how to decapsulate or decode inbound data into Messages. Message Framers allow message boundaries to be preserved when using a Connection object, even when using byte-stream transports. This is designed based on the fact that many of the current application protocols evolved over TCP, which does not provide message boundary preservation, and since many of these protocols require message boundaries to function, each application layer protocol has defined its own framing.¶
To use a Message Framer, the application adds it to its Preconnection object. Then, the Message Framer can intercept all calls to Send() or Receive() on a Connection to add Message semantics, in addition to interacting with the setup and teardown of the Connection. A Framer can start sending data before the application sends data if the framing protocol requires a prefix or handshake (see [RFC8229] for an example of such a framing protocol).¶
Initiate() Send() Receive() Close() | | ^ | | | | | +----v----------v---------+----------v-----+ | Connection | +----+----------+---------^----------+-----+ | | | | | +-----------------+ | | | Messages | | | +-----------------+ | | | | | +----v----------v---------+----------v-----+ | Framer(s) | +----+----------+---------^----------+-----+ | | | | | +-----------------+ | | | Byte-stream | | | +-----------------+ | | | | | +----v----------v---------+----------v-----+ | Transport Protocol Stack | +------------------------------------------+
Note that while Message Framers add the most value when placed above a protocol that otherwise does not preserve message boundaries, they can also be used with datagram- or message-based protocols. In these cases, they add an additional transformation to further encode or encapsulate, and can potentially support packing multiple application-layer Messages into individual transport datagrams.¶
The API to implement a Message Framer can vary depending on the implementation; guidance on implementing Message Framers can be found in [I-D.ietf-taps-impl].¶
The Message Framer object can be added to one or more Preconnections to run on top of transport protocols. Multiple Framers may be added to a preconnection; in this case, the Framers operate as a framing stack, i.e. the last one added runs first when framing outbound messages, and last when parsing inbound data.¶
The following example adds a basic HTTP Message Framer to a Preconnection:¶
framer := NewHTTPMessageFramer() Preconnection.AddFramer(framer)¶
Since Message Framers pass from Preconnection to Listener or Connection, addition of Framers must happen before any operation that may result in the creation of a Connection.¶
When sending Messages, applications can add Framer-specific key/value pairs to a MessageContext (Section 8.1.1). This mechanism can be used, for example, to set the type of a Message for a TLV format. The namespace of values is custom for each unique Message Framer.¶
messageContext := NewMessageContext() messageContext.add(framer, key, value) Connection.Send(messageData, messageContext)¶
When an application receives a MessageContext in a Receive event, it can also look to see if a value was set by a specific Message Framer.¶
messageContext.get(framer, key) -> value¶
For example, if an HTTP Message Framer is used, the values could correspond to HTTP headers:¶
httpFramer := NewHTTPMessageFramer() ... messageContext := NewMessageContext() messageContext.add(httpFramer, "accept", "text/html")¶
Applications needing to annotate the Messages they send with extra information (for example, to control how data is scheduled and processed by the transport protocols supporting the Connection) can include this information in the Message Context passed to the Send Action. For other uses of the message context, see Section 8.1.1.¶
Message Properties are per-Message, not per-Send if partial Messages are sent (Section 8.2.3). All data blocks associated with a single Message share properties specified in the Message Contexts. For example, it would not make sense to have the beginning of a Message expire, but allow the end of a Message to still be sent.¶
A MessageContext object contains metadata for the Messages to be sent or received.¶
messageData := "hello" messageContext := NewMessageContext() messageContext.add(parameter, value) Connection.Send(messageData, messageContext)¶
The simpler form of Send, which does not take any messageContext, is equivalent to passing a default MessageContext without adding any Message Properties.¶
If an application wants to override Message Properties for a specific message, it can acquire an empty MessageContext Object and add all desired Message Properties to that Object. It can then reuse the same messageContext Object for sending multiple Messages with the same properties.¶
Properties can be added to a MessageContext object only before the context is used for sending. Once a messageContext has been used with a Send call, it is invalid to modify any of its properties.¶
The Message Properties could be inconsistent with the properties of the Protocol Stacks underlying the Connection on which a given Message is sent. For example, a Protocol Stack must be able to provide ordering if the msgOrdered property of a Message is enabled. Sending a Message with Message Properties inconsistent with the Selection Properties of the Connection yields an error.¶
Connection Properties describe the default behavior for all Messages on a Connection. If a Message Property contradicts a Connection Property, and if this per-Message behavior can be supported, it overrides the Connection Property for the specific Message. For example, if Reliable Data Transfer (Connection)
is set to Require
and a protocol with configurable per-Message reliability is used, setting Reliable Data Transfer (Message)
to false
for a particular Message will allow this Message to be unreliably delivered. Changing the Reliable Data Transfer property on Messages is only possible for Connections that were established enabling the Selection Property Configure Per-Message Reliability
.¶
The following Message Properties are supported:¶
The Lifetime specifies how long a particular Message can wait to be sent to the Remote Endpoint before it is irrelevant and no longer needs to be (re-)transmitted. This is a hint to the transport system - it is not guaranteed that a Message will not be sent when its Lifetime has expired.¶
Setting a Message's Lifetime to infinite indicates that the application does
not wish to apply a time constraint on the transmission of the Message, but it does not express a need for
reliable delivery; reliability is adjustable per Message via the Reliable Data Transfer (Message)
property (see Section 8.1.3.7). The type and units of Lifetime are implementation-specific.¶
This property represents a hierarchy of priorities. It can specify the priority of a Message, relative to other Messages sent over the same Connection.¶
A Message with Priority 0 will yield to a Message with Priority 1, which will yield to a Message with Priority 2, and so on. Priorities may be used as a sender-side scheduling construct only, or be used to specify priorities on the wire for Protocol Stacks supporting prioritization.¶
Note that this property is not a per-message override of the connection Priority - see Section 7.1.2. The Priority properties may interact, but can be used independently and be realized by different mechanisms; see Section 8.2.6.¶
reliability
(Section 5.2.1)¶
The order in which Messages were submitted for transmission via the Send Action will be preserved on delivery via Receive<> events for all Messages on a Connection that have this Message Property set to true.¶
If false, the Message is delivered to the receiving application without preserving the ordering. This property is used for protocols that support preservation of data ordering, see Section 5.2.4, but allow out-of-order delivery for certain messages, e.g., by multiplexing independent messages onto different streams.¶
If true, Safely Replayable specifies that a Message is safe to send to the Remote Endpoint more than once for a single Send Action. It marks the data as safe for certain 0-RTT establishment techniques, where retransmission of the 0-RTT data may cause the remote application to receive the Message multiple times.¶
For protocols that do not protect against duplicated messages,
e.g., UDP, all messages need to be marked as Safely Replayable
.
To enable protocol selection to choose such a protocol,
Safely Replayable
needs to be added to the TransportProperties passed to the
Preconnection. If such a protocol was chosen, disabling Safely Replayable
on
individual messages MUST result in a SendError.¶
If true, this indicates a Message is the last that the application will send on a Connection. This allows underlying protocols to indicate to the Remote Endpoint that the Connection has been effectively closed in the sending direction. For example, TCP-based Connections can send a FIN once a Message marked as Final has been completely sent, indicated by marking endOfMessage. Protocols that do not support signalling the end of a Connection in a given direction will ignore this property.¶
A Final Message must always be sorted to the end of a list of Messages. The Final property overrides Priority and any other property that would re-order Messages. If another Message is sent after a Message marked as Final has already been sent on a Connection, the Send Action for the new Message will cause a SendError Event.¶
Full Coverage
)¶
This property specifies the minimum length of the section of a sent Message,
starting from byte 0, that the application requires to be delivered without
corruption due to lower layer errors. It is used to specify options for simple
integrity protection via checksums. A value of 0 means that no checksum
is required, and Full Coverage
means
that the entire Message needs to be protected by a checksum. Only Full Coverage
is
guaranteed, any other requests are advisory, which may result in Full Coverage
being applied.¶
reliability
(Section 5.2.1)¶
When true, this property specifies that a Message should be sent in such a way
that the transport protocol ensures all data is received on the other side
without corruption. Changing the Reliable Data Transfer
property on Messages
is only possible for Connections that were established enabling the Selection Property Configure Per-Message Reliability
.
When this is not the case, changing msgReliable
will generate an error.¶
Disabling this property indicates that the transport system may disable retransmissions or other reliability mechanisms for this particular Message, but such disabling is not guaranteed.¶
connCapacityProfile
(Section 7.1.6)¶
This enumerated property specifies the application's preferred tradeoffs for sending this Message; it is a per-Message override of the Capacity Profile connection property (see Section 7.1.6).¶
This property specifies that a message should be sent and received as a single
packet without network-layer fragmentation, if possible.
This only takes effect when the transport uses a network layer that supports this functionality.
When it does take effect, setting this property to
true will cause the Don't Fragment bit to be set in the IP header, and
attempts to send a message with this property set to a size greater than the
transport's current estimate of its maximum packet size (singularTransmissionMsgMaxLen
)
will result in a SendError
.¶
When set to true, this property requests the network layer at the sending endpoint to not fragment the packets generated by the transport layer. When running over IPv4, setting this property to true will also cause the Don't Fragment bit to be set in the IP header. When this property is set, an attempt to send a message size greater than the transport's current estimate of its maximum packet size (singularTransmissionMsgMaxLen) will result in a SendError. This only takes effect when the transport and network layer support this functionality.¶
Once a Connection has been established, it can be used for sending Messages. By default, Send enqueues a complete Message, and takes optional per-Message properties (see Section 8.2.1). All Send actions are asynchronous, and deliver Events (see Section 8.2.2). Sending partial Messages for streaming large data is also supported (see Section 8.2.3).¶
Messages are sent on a Connection using the Send action:¶
Connection.Send(messageData, messageContext?, endOfMessage?)¶
where messageData is the data object to send, and messageContext allows adding Message Properties, identifying Send Events related to a specific Message or inspecting meta-data related to the Message sent (see Section 8.1.1).¶
The optional endOfMessage parameter supports partial sending and is described in Section 8.2.3.¶
The most basic form of sending on a connection involves enqueuing a single Data block as a complete Message with default Message Properties.¶
messageData := "hello" Connection.Send(messageData)¶
The interpretation of a Message to be sent is dependent on the implementation, and on the constraints on the Protocol Stacks implied by the Connection's transport properties. For example, a Message may be a single datagram for UDP Connections; or an HTTP Request for HTTP Connections.¶
Some transport protocols can deliver arbitrarily sized Messages, but other protocols constrain the maximum Message size. Applications can query the Connection Property "Maximum Message size on send" (Section 7.1.10.3) to determine the maximum size allowed for a single Message. If a Message is too large to fit in the Maximum Message Size for the Connection, the Send will fail with a SendError event (Section 8.2.2.3). For example, it is invalid to send a Message over a UDP connection that is larger than the available datagram sending size.¶
Like all Actions in this interface, the Send Action is asynchronous. There are several Events that can be delivered in response to Sending a Message. Exactly one Event (Sent, Expired, or SendError) will be delivered in response to each call to Send.¶
Note that if partial Sends are used (Section 8.2.3), there will still be exactly one Send Event delivered for each call to Send. For example, if a Message expired while two requests to Send data for that Message are outstanding, there will be two Expired events delivered.¶
The interface should allow the application to correlate which Send Action resulted in a particular Send Event. The manner in which this correlation is indicated is implementation-specific.¶
Connection -> Sent<messageContext>¶
The Sent Event occurs when a previous Send Action has completed, i.e., when the data derived from the Message has been passed down or through the underlying Protocol Stack and is no longer the responsibility of this interface. The exact disposition of the Message (i.e., whether it has actually been transmitted, moved into a buffer on the network interface, moved into a kernel buffer, and so on) when the Sent Event occurs is implementation-specific. The Sent Event contains a reference to the Message to which it applies.¶
Sent Events allow an application to obtain an understanding of the amount of buffering it creates. That is, if an application calls the Send Action multiple times without waiting for a Sent Event, it has created more buffer inside the transport system than an application that always waits for the Sent Event before calling the next Send Action.¶
Connection -> Expired<messageContext>¶
The Expired Event occurs when a previous Send Action expired before completion; i.e. when the Message was not sent before its Lifetime (see Section 8.1.3.1) expired. This is separate from SendError, as it is an expected behavior for partially reliable transports. The Expired Event contains a reference to the Message to which it applies.¶
Connection -> SendError<messageContext, reason?>¶
A SendError occurs when a Message was not sent due to an error condition: an attempt to send a Message which is too large for the system and Protocol Stack to handle, some failure of the underlying Protocol Stack, or a set of Message Properties not consistent with the Connection's transport properties. The SendError contains a reference to the Message to which it applies.¶
It is not always possible for an application to send all data associated with a Message in a single Send Action. The Message data may be too large for the application to hold in memory at one time, or the length of the Message may be unknown or unbounded.¶
Partial Message sending is supported by passing an endOfMessage boolean parameter to the Send Action. This value is always true by default, and the simpler forms of Send are equivalent to passing true for endOfMessage.¶
The following example sends a Message in two separate calls to Send.¶
messageContext := NewMessageContext() messageContext.add(parameter, value) messageData := "hel" endOfMessage := false Connection.Send(messageData, messageContext, endOfMessage) messageData := "lo" endOfMessage := true Connection.Send(messageData, messageContext, endOfMessage)¶
All data sent with the same MessageContext object will be treated as belonging to the same Message, and will constitute an in-order series until the endOfMessage is marked.¶
To reduce the overhead of sending multiple small Messages on a Connection, the application could batch several Send Actions together. This provides a hint to the system that the sending of these Messages ought to be coalesced when possible, and that sending any of the batched Messages can be delayed until the last Message in the batch is enqueued.¶
The semantics for starting and ending a batch can be implementation-specific, but need to allow multiple Send Actions to be enqueued.¶
Connection.StartBatch() Connection.Send(messageData) Connection.Send(messageData) Connection.EndBatch()¶
For application-layer protocols where the Connection initiator also sends the first message, the InitiateWithSend() action combines Connection initiation with a first Message sent:¶
Connection := Preconnection.InitiateWithSend(messageData, messageContext?, timeout?)¶
Whenever possible, a messageContext should be provided to declare the Message passed to InitiateWithSend
as Safely Replayable
. This allows the transport system to make use of 0-RTT establishment in case this is supported
by the available protocol stacks. When the selected stack(s) do not support transmitting data upon connection
establishment, InitiateWithSend is identical to Initiate() followed by Send().¶
Neither partial sends nor send batching are supported by InitiateWithSend().¶
The Events that may be sent after InitiateWithSend() are equivalent to those that would be sent by an invocation of Initiate() followed immediately by an invocation of Send(), with the caveat that a send failure that occurs because the Connection could not be established will not result in a SendError separate from the InitiateError signaling the failure of Connection establishment.¶
The Transport Services interface provides two properties to allow a sender to signal the relative priority of data transmission: the Priority Message Property Section 8.1.3.2, and the Connection Priority Connection Property Section 7.1.2. These properties are designed to allow the expression and implementation of a wide variety of approaches to transmission priority in the transport and application layer, including those which do not appear on the wire (affecting only sender-side transmission scheduling) as well as those that do (e.g. [I-D.ietf-httpbis-priority].¶
A Transport Services system gives no guarantees about how its expression of relative priorities will be realized; for example, if a transport stack that only provides a single in-order reliable stream is selected, prioritization information can only be ignored. However, the Transport Services system will seek to ensure that performance of relatively-prioritized connections and messages is not worse with respect to those connections and messages than an equivalent configuration in which all prioritization properties are left at their defaults.¶
The Transport Services interface does order Connection Priority over the Priority Message Property. In the absense of other externalities (e.g., transport-layer flow control), a priority 1 Message on a priority 0 Connection will be sent before a priority 0 Message on a priority 1 Connection in the same group.¶
Once a Connection is established, it can be used for receiving data (unless the
Direction of Communication
property is set to unidirectional send
). As with
sending, the data is received in Messages. Receiving is an asynchronous
operation, in which each call to Receive enqueues a request to receive new
data from the connection. Once data has been received, or an error is encountered,
an event will be delivered to complete any pending Receive requests (see Section 8.3.2). If Messages arrive at the transport system before Receive requests are issued, ensuing Receive requests will first operate on these Messages before awaiting any further Messages.¶
Receive takes two parameters to specify the length of data that an application is willing to receive, both of which are optional and have default values if not specified.¶
Connection.Receive(minIncompleteLength?, maxLength?)¶
By default, Receive will try to deliver complete Messages in a single event (Section 8.3.2.1).¶
The application can set a minIncompleteLength value to indicate the smallest partial Message data size in bytes that should be delivered in response to this Receive. By default, this value is infinite, which means that only complete Messages should be delivered (see Section 8.3.2.2 and Section 8.1.2 for more information on how this is accomplished). If this value is set to some smaller value, the associated receive event will be triggered only when at least that many bytes are available, or the Message is complete with fewer bytes, or the system needs to free up memory. Applications should always check the length of the data delivered to the receive event and not assume it will be as long as minIncompleteLength in the case of shorter complete Messages or memory issues.¶
The maxLength argument indicates the maximum size of a Message in bytes that the application is currently prepared to receive. The default value for maxLength is infinite. If an incoming Message is larger than the minimum of this size and the maximum Message size on receive for the Connection's Protocol Stack, it will be delivered via ReceivedPartial events (Section 8.3.2.2).¶
Note that maxLength does not guarantee that the application will receive that many bytes if they are available; the interface could return ReceivedPartial events with less data than maxLength according to implementation constraints. Note also that maxLength and minIncompleteLength are intended only to manage buffering, and are not interpreted as a receiver preference for message reordering.¶
Each call to Receive will be paired with a single Receive Event, which can be a success or an error. This allows an application to provide backpressure to the transport stack when it is temporarily not ready to receive messages.¶
The interface should allow the application to correlate which call to Receive resulted in a particular Receive Event. The manner in which this correlation is indicated is implementation-specific.¶
Connection -> Received<messageData, messageContext>¶
A Received event indicates the delivery of a complete Message. It contains two objects, the received bytes as messageData, and the metadata and properties of the received Message as messageContext.¶
The messageData object provides access to the bytes that were received for this Message, along with the length of the byte array. The messageContext is provided to enable retrieving metadata about the message and referring to the message, e.g., to send replies and map responses to their requests. See Section 8.1.1 for details.¶
See Section 8.1.2 for handling Message framing in situations where the Protocol Stack only provides a byte-stream transport.¶
Connection -> ReceivedPartial<messageData, messageContext, endOfMessage>¶
If a complete Message cannot be delivered in one event, one part of the Message can be delivered with a ReceivedPartial event. To continue to receive more of the same Message, the application must invoke Receive again.¶
Multiple invocations of ReceivedPartial deliver data for the same Message by passing the same MessageContext, until the endOfMessage flag is delivered or a ReceiveError occurs. All partial blocks of a single Message are delivered in order without gaps. This event does not support delivering discontiguous partial Messages. If, for example, Message A is divided into three pieces (A1, A2, A3) and Message B is divided into three pieces (B1, B2, B3), the ReceivedPartial may deliver them in a sequence like this: A1, B1, B2, A2, A3, B3, because the messageContext allows the application to identify the pieces as belonging to Message A and B, respectively. However, a sequence like: A1, A3 will never occur.¶
If the minIncompleteLength in the Receive request was set to be infinite (indicating a request to receive only complete Messages), the ReceivedPartial event may still be delivered if one of the following conditions is true:¶
Note that in the absence of message boundary preservation or a Message Framer, all bytes received on the Connection will be represented as one large Message of indeterminate length.¶
Connection -> ReceiveError<messageContext, reason?>¶
A ReceiveError occurs when data is received by the underlying Protocol Stack that cannot be fully retrieved or parsed, or when some other indication is received that reception has failed. In contrast, conditions that irrevocably lead to the termination of the Connection are instead signaled using ConnectionError (see Section 9).¶
The ReceiveError event passes an optional associated MessageContext. This can indicate that a Message that was being partially received previously, but had not completed, encountered an error and will not be completed.¶
Each Message Context may contain metadata from protocols in the Protocol Stack; which metadata is available is Protocol Stack dependent. These are exposed though additional read-only Message Properties that can be queried from the MessageContext object (see Section 8.1.1) passed by the receive event. The following metadata values are supported:¶
When available, Message metadata carries the value of the Explicit Congestion Notification (ECN) field. This information can be used for logging and debugging, and for building applications that need access to information about the transport internals for their own operation. This property is specific to UDP and UDP-Lite because these protocols do not implement congestion control, and hence expose this functionality to the application.¶
In some cases it can be valuable to know whether data was read as part of early data transfer (before connection establishment has finished). This is useful if applications need to treat early data separately, e.g., if early data has different security properties than data sent after connection establishment. In the case of TLS 1.3, client early data can be replayed maliciously (see [RFC8446]). Thus, receivers might wish to perform additional checks for early data to ensure it is safely replayable. If TLS 1.3 is available and the recipient Message was sent as part of early data, the corresponding metadata carries a flag indicating as such. If early data is enabled, applications should check this metadata field for Messages received during connection establishment and respond accordingly.¶
The Message Context can indicate whether or not this Message is the Final Message on a Connection. For any Message that is marked as Final, the application can assume that there will be no more Messages received on the Connection once the Message has been completely delivered. This corresponds to the Final property that may be marked on a sent Message, see Section 8.1.3.5.¶
Some transport protocols and peers do not support signaling of the Final property. Applications therefore should not rely on receiving a Message marked Final to know that the sending endpoint is done sending on a connection.¶
Any calls to Receive once the Final Message has been delivered will result in errors.¶
Close terminates a Connection after satisfying all the requirements that were specified regarding the delivery of Messages that the application has already given to the transport system. For example, if reliable delivery was requested for a Message handed over before calling Close, the Closed Event will signify that this Message has indeed been delivered. If the Remote Endpoint still has data to send, it cannot be received after this call.¶
Connection.Close()¶
The Closed Event informs the application that the Remote Endpoint has closed the Connection. There is no guarantee that a remote Close will indeed be signaled.¶
Connection -> Closed<>¶
Abort terminates a Connection without delivering any remaining data:¶
Connection.Abort()¶
A ConnectionError informs the application that: 1) data could not be delivered to the peer after a timeout, or 2) the Connection has been aborted (e.g., because the peer has called Abort). There is no guarantee that an Abort will indeed be signaled.¶
Connection -> ConnectionError<reason?>¶
This interface is designed to be independent of an implementation's concurrency model. The details of how exactly actions are handled, and how events are dispatched, are implementation dependent.¶
Each transition of connection state is associated with one of more events:¶
The following diagram shows the possible states of a Connection and the events that occur upon a transition from one state to another.¶
(*) (**) Establishing -----> Established -----> Closed | ^ | | +-----------------------------------+ InitiateError<> (*) Ready<>, ConnectionReceived<>, RendezvousDone<> (**) Closed<>, ConnectionError<>
The interface provides the following guarantees about the ordering of operations:¶
RFC-EDITOR: Please remove this section before publication.¶
This document has no Actions for IANA. Later versions of this document may create IANA registries for generic transport property names and transport property namespaces (see Section 4.2.1).¶
This document describes a generic API for interacting with a transport services (TAPS) system. Part of this API includes configuration details for transport security protocols, as discussed in Section 5.3. It does not recommend use (or disuse) of specific algorithms or protocols. Any API-compatible transport security protocol ought to work in a TAPS system. Security considerations for these protocols are discussed in the respective specifications.¶
The described API is used to exchange information between an application and the transport system. While it is not necessarily expected that both systems are implemented by the same authority, it is expected that the transport system implementation is either provided as a library that is selected by the application from a trusted party, or that it is part of the operating system that the application also relies on for other tasks.¶
In either case, the TAPS API is an internal interface that is used to change information locally between two systems. However, as the transport system is responsible for network communication, it is in the position to potentially share any information provided by the application with the network or another communication peer. Most of the information provided over the TAPS API are useful to configure and select protocols and paths and are not necessarily privacy sensitive. Still, some information could be privacy sensitive because it might reveal usage characteristics and habits of the user of an application.¶
Of course any communication over a network reveals usage characteristics, as all packets, as well as their timing and size, are part of the network-visible wire image [RFC8546]. However, the selection of a protocol and its configuration also impacts which information is visible, potentially in clear text, and which other entities can access it. In most cases, information provided for protocol and path selection should not directly translate to information that can be observed by network devices on the path. However, there might be specific configuration information that is intended for path exposure, e.g., a DiffServ codepoint setting, that is either provided directly by the application or indirectly configured for a traffic profile.¶
Applications should be aware that communication attempts can lead to more than one connection establishment. This is the case, for example, when the transport system also executes name resolution, when support mechanisms such as TURN or ICE are used to establish connectivity, if protocols or paths are raised, or if a path fails and fallback or re-establishment is supported in the transport system.¶
The interface explicitly does not require the application to resolve names, though there is a tradeoff between early and late binding of addresses to names. Early binding allows the API implementation to reduce connection setup latency, at the cost of potentially limited scope for alternate path discovery during Connection establishment, as well as potential additional information leakage about application interest when used with a resolution method (such as DNS without TLS) which does not protect query confidentiality.¶
These communication activities are not different from what is used today. However, the goal of a TAPS transport system is to support such mechanisms as a generic service within the transport layer. This enables applications to more dynamically benefit from innovations and new protocols in the transport, although it reduces transparency of the underlying communication actions to the application itself. The TAPS API is designed such that protocol and path selection can be limited to a small and controlled set if required by the application for functional or security purposes. Further, TAPS implementations should provide an interface to poll information about which protocol and path is currently in use as well as provide logging about the communication events of each connection.¶
This work has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreements No. 644334 (NEAT) and No. 688421 (MAMI).¶
This work has been supported by Leibniz Prize project funds of DFG - German Research Foundation: Gottfried Wilhelm Leibniz-Preis 2011 (FKZ FE 570/4-1).¶
This work has been supported by the UK Engineering and Physical Sciences Research Council under grant EP/R04144X/1.¶
This work has been supported by the Research Council of Norway under its "Toppforsk" programme through the "OCARINA" project.¶
Thanks to Stuart Cheshire, Josh Graessley, David Schinazi, and Eric Kinnear for their implementation and design efforts, including Happy Eyeballs, that heavily influenced this work. Thanks to Laurent Chuat and Jason Lee for initial work on the Post Sockets interface, from which this work has evolved. Thanks to Maximilian Franke for asking good questions based on implementation experience and for contributing text, e.g., on multicast.¶
As Selection Properties of type Preference
will be set on a TransportProperties object quite frequently, implementations should provide special actions for adding each preference level i.e, TransportProperties.Set(some_property, avoid)
is equivalent to TransportProperties.Avoid(some_property)
:¶
TransportProperties.Require(property) TransportProperties.Prefer(property) TransportProperties.Ignore(property) TransportProperties.Avoid(property) TransportProperties.Prohibit(property) TransportProperties.Default(property)¶
To ease the use of the interface specified by this document, implementations should provide a mechanism to create Transport Property objects (see Section 5.2) that are pre-configured with frequently used sets of properties. Implementations should at least offer short-hands to specify the following property profiles:¶
This profile provides reliable, in-order transport service with congestion control. TCP is an example of a protocol that provides this service. It should consist of the following properties:¶
Property | Value |
---|---|
reliability | require |
preserveOrder | require |
congestionControl | require |
preserveMsgBoundaries | ignore |
This profile provides message-preserving, reliable, in-order transport service with congestion control. SCTP is an example of a protocol that provides this service. It should consist of the following properties:¶
Property | Value |
---|---|
reliability | require |
preserveOrder | require |
congestionControl | require |
preserveMsgBoundaries | require |
This profile provides unreliable datagram transport service. An example of a protocol that provides this service is UDP. It consists of the following properties:¶
Property | Value |
---|---|
reliability | ignore |
preserveOrder | ignore |
congestionControl | ignore |
preserveMsgBoundaries | require |
safely replayable | true |
Applications that choose this Transport Property Profile for latency reasons should also consider setting an appropriate Capacity Profile Property, see Section 7.1.6 and could benefit from controlling checksum coverage, see Section 5.2.7 and Section 5.2.8.¶
[RFC8923] identifies a minimal set of transport services that end systems should offer. These services make all non-security-related transport features of TCP, MPTCP, UDP, UDP-Lite, SCTP and LEDBAT available that 1) require interaction with the application, and 2) do not get in the way of a possible implementation over TCP (or, with limitations, UDP). The following text explains how this minimal set is reflected in the present API. For brevity, it is based on the list in Section 4.1 of [RFC8923], updated according to the discussion in Section 5 of [RFC8923]. The present API covers all elements of this section except Notification of Excessive Retransmissions (early warning below abortion threshold)
.
This list is a subset of the transport features in Appendix A of [RFC8923], which refers to the primitives in "pass 2" (Section 4) of [RFC8303] for further details on the implementation with TCP, MPTCP, UDP, UDP-Lite, SCTP and LEDBAT.¶
Initiate
Action (Section 6.1).¶
Listen
Action (Section 6.2).¶
timeout
parameter of Initiate
(Section 6.1) or InitiateWithSend
Action (Section 8.2.5).¶
Parallel Use of Multiple Paths
Property (Section 5.2.14).¶
InitiateWithSend
Action (Section 8.2.5).¶
Timeout for Aborting Connection
property, using a time value (Section 7.1.3).¶
ConnectionError
Event (Section 9).¶
TCP-specific Property: User Timeout
(Section 7.2).¶
Notification of ICMP soft error message arrival
property (Section 5.2.17).¶
Connection Group Transmission Scheduler
property (Section 7.1.5).¶
Connection Priority
property (Section 7.1.2).¶
Corruption Protection Length
property (Section 8.1.3.6) and Full Checksum Coverage on Sending
property (Section 5.2.7).¶
Required Minimum Corruption Protection Coverage for Receiving
property (Section 7.1.1) and Full Checksum Coverage on Receiving
property (Section 5.2.8).¶
No Network-Layer Fragmentation
property (Section 8.1.3.9).¶
No Transport-Layer Fragmentation
property (Section 8.1.3.10).¶
Maximum Message Size Before Fragmentation or Segmentation
property (Section 7.1.10.2).¶
Maximum Message Size on Receive
property (Section 7.1.10.4).¶
ECN
is a defined UDP(-Lite)-specific read-only Message Property of the MessageContext object (Section 8.3.3.1).¶
Low Extra Delay Background Transfer
":
as suggested in Section 5.5 of [RFC8923], these transport features are collectively offered via the Capacity Profile
property (Section 7.1.6). Per-Message control is offered via the Message Capacity Profile Override
property (Section 8.1.3.8).¶
Close
Action with slightly changed semantics in line with the discussion in Section 5.2 of [RFC8923] (Section 9).¶
Abort
action without promising that this is signaled to the other side. If it is, a ConnectionError
Event will fire at the peer (Section 9).¶
Send
action (Section 8.2). Reliability is controlled via the Reliable Data Transfer (Connection)
(Section 5.2.1) property and the Reliable Data Transfer (Message)
Message Property (Section 8.1.3.7). Transmitting data as a message or without delimiters is controlled via Message Framers (Section 8.1.2). The choice of congestion control is provided via the Congestion control
property (Section 5.2.9).¶
Lifetime
Message Property implements a time-based way to configure message reliability (Section 8.1.3.1).¶
Ordered
(Section 8.1.3.3).¶
Capacity Profile
Property (Section 7.1.6) or the Message Capacity Profile Override
Message Property (Section 8.1.3.8) with value Low Latency/Interactive
.¶
Received
Event (Section 8.3.2.1). See Section 8.1.2 for handling Message framing in situations where the Protocol
Stack only provides a byte-stream transport.¶
Received
Event (Section 8.3.2.1), using Message Framers (Section 8.1.2).¶
ReceivedPartial
Event (Section 8.3.2.2).¶
Expired
Event (Section 8.2.2.2) and SendError
Event (Section 8.2.2.3).¶
Sent
Event (Section 8.2.2.1).¶
ReceiveError
Event (Section 8.3.2.3).¶