Internet-Draft | Flow Metadata | March 2024 |
Rajagopalan, et al. | Expires 5 September 2024 | [Page] |
This document defines per-flow and per-packet metadata for both network-to-host and host-to-network signaling in Concise Data Definition Language (CDDL) which expresses both CBOR and JSON. The common metadata definition allows interworking between signaling protocols with high fidelity. The metadata is also self- describing to improve interpretation by network elements and endpoints while reducing the need for version negotiation.¶
This note is to be removed before publishing as an RFC.¶
The latest revision of this draft can be found at https://danwing.github.io/metadata/draft-rwbr-flow-metadata.md.html. Status information for this document may be found at https://datatracker.ietf.org/doc/draft-rwbr-sconepro-flow-metadata/.¶
Discussion of this document takes place on the TSV Working Group mailing list (mailto:tsvwg@ietf.org), which is archived at https://mailarchive.ietf.org/arch/browse/tsvwg/. Subscribe at https://www.ietf.org/mailman/listinfo/tsvwg/.¶
Source for this draft and an issue tracker can be found at https://github.com/danwing/metadata.¶
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 5 September 2024.¶
Copyright (c) 2024 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 Revised BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Revised BSD License.¶
Historically, metadata is defined within each protocol. While this can be very efficient on the wire (e.g., DSCP consumes only 6 bits) it suffers from inability to authorize or authenticate the metadata signaling. But the more signifcant problem is inability to interwork between signaling protocols because each have different definitions. Such interworking is often needed when the metadata signaling protocol for packets leaving a network differs from the metadata signaling protocol entering a different network. For example, important packets leaving a server and its network might be marked with DSCP (as the sending host is known and trusted) but the receiving network doesn't trust the DSCP bits in received packets because there is no authorization or authentication for differented treatment.¶
By using the same metadata, both networks can communicate how packets should be treated and use their own signaling mechanism with their network elements (e.g., routers, [MASQUE] proxies).¶
Both the above use cases are improved by metadata described in this document. This document is a companion to host-to-network signaling the metadata itself, such as:¶
UDP Options (e.g., [I-D.kaippallimalil-tsvwg-media-hdr-wireless], [I-D.reddy-tsvwg-explcit-signal]),¶
IPv6 Hop-by-Hop Options (Section 4.3 of [RFC8200]),¶
QUIC CID mapping ([I-D.wing-cidfi]).¶
[I-D.herbert-host2netsig] provides an analysis of most of those metadata signaling mechanisms.¶
This document does not assume nor preclude any companion signaling protocol. Also, the document does not preclude API-based approaches to control flows, packets, applications, etc. that are bound to a given metadata and which will benefit from the differentiated behavior. As such, the metadata in this document is defined to be independent of the signaling protocol (Section 3). In doing so, we ensure that consistent metadata definitions are used by the various signaling protocols. Also, this approach allows to factorize key considerations such as security and operational considerations. This approach also ease passing policies between controllers of domains involved in packet delivery (e.g., RAN, Core, and Transport domains).¶
The metadata is described using Concise Data Definition Language (CDDL) [CDDL] which can be expressed in both [JSON] and binary using [CBOR]. Both the JSON and CBOR encodings are self-describing. It is out of scope of this document to define how the proposed encoding will be mapped to a specific signaling protocol.¶
If the companion signaling protocol supports host-to-network metadata, individual packets within a flow can contain metadata describing their drop preference or their reliability. The network elements aware of this metadata can apply preferential or deferential treatment to those packets during a 'reactive traffic policy' event. It is also assumed that such network elements are provisioned with local policy that guides their behavior jointly with a signaled metadata. Examples of metadata signaling for video streaming and for remote desktop are provided in Appendix A.¶
For network-to-host metadata, a host can be informed of network policy for nominal downlink bandwidth. Certain applications, such as most especially video streaming applications, can use that information to optimize their video streaming bandwidth to fit within that policy.¶
To track metadata that are defined for host/network signalling, a new IANA registry is defined: "Flow Metadata Registry" Section 10.2.¶
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.¶
This document uses the following terms:¶
Treatment given to a flow when an exceptional event occurs, such as diminished throughput to the host caused by radio interference or weak radio signal, congestion on the network caused by other users or other applications on the same host.¶
Configured bandwidth, pps, or similar throughput constraints applied to a flow, application, host, or subscriber.¶
The metadata is described in CDDL [RFC8610] format shown in Figure 1.¶
The structure shown in Figure 1 does not assume that the metadata will be encoded as a single blob when mapped to a signaling protocol or that all the metadata components will be mapped. Such matters are specific to the individual signaling protocols and deployment contexts.¶
New metadata for collaborative host/network signaling MUST be registered in the IANA registry, "Flow Metadata Registry" Section 10.2.¶
More details about each of these metadata are provided in Section 4 and Section 5. Both client and network intended behaviors are specified for each metadata.¶
Metadata is characterized into two different nature:¶
This consists of metadata that specifies how a network element should treat that packet. The network metadata comprises of the importance metadata. This field indicates whether a packet is more important or less important.¶
This consists of metadata that specifies how the application treats that packet. The appplication metadata comprises of two components: Keep/Discard and Reliable/Unreliable.¶
The "Importance" metadata signifies if the packet is of more important (true) or less important (false) by the host, relative to other packets in the same flow. Importance belongs to Network Metadata.¶
An application would mark a packet as important when it needs the network to treat the packet with greater preference compared to the unmarked packets or to packets marked important=false (of the same flow). This tagging does not provide more privileges to an application with regards to resources usage compared to the absence of signal. An example of this interpretation is specified in Appendix A.¶
During a reactive policy event, a network element is encouraged to discard packets marked importance=false in favor of packets marked importance=true, for the same flow.¶
The "Reliable" metadata indicates if a packet is reliably transmitted by the host.¶
Reliable packets are re-transmitted by the underlying transport (e.g., TCP [RFC9293] or [QUIC]) or re-transmitted by the appplication (e.g., [RELIABLE-RTP], NTP).¶
Unreliable packets are not re-transmitted by the transport (e.g., UDP, [RTP], [LOSSY-QUIC]) and also not re-transmitted by the application (e.g., [RTP]).¶
Packets marked reliable, if delayed excessively or dropped outright, will be re-transmitted (up to a maximum retries) by the sender application, appearing on the network again. Thus, delaying or discarding such packets does not reduce the amount of transmitted data in a network; it only defers when it appears on the network.¶
Reliable/Unreliable belongs to Application Metadata.¶
During a reactive policy event, dropping unreliable traffic is preferred over dropping reliable traffic. The reliable traffic will be re-transmitted by the sender so dropping such traffic only defers it until later, but this deferral can be useful.¶
This metadata indicates discard preference for unreliable traffic and reliable traffic, as detailed below.¶
Packets are marked with 'prefer-keep' set to either true or false. When set to true, it indicates a preference to keep the packet. Conversely, when set to false, it signals that the packet may be subject to discard based on a reactive policy.¶
Many flows contain a mix of important packets and less-important packets, but applications seldom signal that difference themselves let alone signal the difference to the network. Rather, applications send everything over a reliable transport (TCP or QUIC) and leave it at that, as evidenced by video streaming using TCP.¶
With the advent of [LOSSY-QUIC], applications can send both [QUIC] reliable traffic and [LOSSY-QUIC] unreliable traffic [LOSSY-QUIC] on the same 5-tuple. With host-to-network metadata signaling, the network can become an active assistant in such flows during a reactive policy event by endeavouring to send the more-important 'prefer-keep' traffic at the expense of the less-important 'may-discard' traffic.¶
The reason why an application transmits a packet marked as 'prefer-keep' set to false, when the application has the capability to avoid sending that packet, is application-specific.¶
During a reactive policy event, dropping packets with 'prefer-keep' set to false is preferred over dropping 'prefer-keep' set to true packets. Absent such discard preference indication, the network element will blindly drop packets during a reactive policy event.¶
For reliable traffic, "realtime" metadata indicates whether the packet belongs to bulk or real-time traffic.¶
An application such as a web browser might mark certain flows as realtime (e.g., the flow is related to dynamically updating a search box and quick responses help the user experience) and other flows as bulk (e.g., file download, file upload).¶
Realtime traffic prefers lower latency network paths and bulk traffic prefers high throughoupt paths.¶
Monthly data quotas on cellular networks can be easily exceeded by video streaming, in particular, if the client chooses excessively high quality or routinely abandons watching videos that were downloaded. The network can assist the client by informing the client of the network's bandwidth policy.¶
If the video is encoded with variable bitrate, the bitrate cannot exceed the indicated bitrate.¶
The nominal bitrate is calculated over each second, whereas the burst bitrate is calculated over the signaled interval (burst-duration). For either measurement, packets can arrive at the start of a second, as near as possible behind each other, and the remaining portion of that second could have no packets transmitted.¶
The host chooses a video streaming bitrate at or below the signaled rate.¶
The host may also choose to signal the received bitrate to the remote peer. The remote peer will adapt its transmission behavior to comply with the received bitrate.¶
An example of the encoding is provided in Appendix B.¶
There are also crisis cases where nominal network resources cannot be used at maximum to handle packets. A network would thus seek to offload some of the traffic during these events. Under such exceptional events, a network element may signal to a host that it is preferrable to use alternate paths, if available. An alternate path is typically an alternate network attachment. After the crisis has subsided, the network should signal with pref-alt-path=false.¶
The 'pref-alt-path' metadata may be sent together with the bitrate metadata (Section 5.1) set to a very low value.¶
The host offloads its connections to alternate available paths.¶
TCP [RFC9293] is a reliable transport protocol, while UDP [RFC0768] provides a minimal, unreliable, best-effort, message-passing transport to applications and other protocols (such as tunnels) that wish to operate over IP [RFC8085]. Protocols built over UDP may implement reliability features at the "application" layer if such a transport feature is needed [RFC8304]. For example, streams of reliable application data are sent using STREAM QUIC frames (Section 19.8 of [RFC9000]), while application data that do not require retransmission can be carried in DATAGRAM QUIC frames [RFC9221]. Applications that are utilizing such a protocol, will have to choose the delivery service (reliable or loss-tolerant) based upon the nature of the packet being sent -- loss-tolerant packet cannot be carried in a reliable frame and vice-versa. Hence, based on the transport service being invoked, setting of the reliable/unreliable metadata entry can be offloaded to the underlying transport protocol, unless specifically overridden by the application.¶
Network nodes, upon learning of the nature of a packet (reliable/prefer-keep) can choose to implement loss avoidance algorithms between hops where there is packet loss detected (e.g., using out-of-band or in-band QoS measurement, which is out of the scope of this document). By doing so, end-to-end retransmissions can be reduced/avoided thereby minimizing the need for handling loss at the application layer using protocols such as [RFC7198], [RFC7197], or [RFC7104].¶
Metadata increases the information available to attackers to distinguish important packets from less-important packets, which the attacker might use to attack such packets (e.g., prevent their delivery) or attempt to decrypt those packets. It is RECOMMENDED to encrypt or obfuscate the metadata information so it is only available to hosts and to authorized network elements. The method of encryption or obfuscation is not described in this document but rather in other documents describing how this metadata is encoded and exchanged amongst hosts and network elements.¶
This document requests IANA to create a new registry group, entitled "Metadata for Collaborative Host/Network Signaling".¶
IANA is requested to create a new registry, entitled "Flow Metadata Registry", under the "Metadata for Collaborative Host/Network Signaling" registry group. This registry is inspired by the "Performance Metrics Registry" created by [RFC8911]. The structure of the registry is as follows:¶
A numeric identifier for the registered metadata.¶
The Identifier 0 is Reserved.¶
The Identifier values from 250 to 255 are reserved for private or experimental use.¶
Name of the registered metadata.¶
Provides a description of the intended use of the registered metadata.¶
Lists the authoritative reference that specifies the registered metadata.¶
Tracks the current version of the metadata.¶
The initial version of a new registered metadata MUST be 1.0.¶
IANA will bump the version when a new RFC that changes the format/semantic of a registered entry.¶
The initial values of the registry are listed in Table 1.¶
Identifier | Name | Description | Reference | Version |
---|---|---|---|---|
0 | Reserved | This-Document | ||
1 | Importance | Indicates the level of importance of a packet in a flow | This-Document | 1.0 |
2 | PacketType | Indicates whether a packet is reliably or unreliably transmitted | This-Document | 1.0 |
3 | PacketNature | Indicates a discard preference | This-Document | 1.0 |
4 | DownlinkBitrate | Specifies the maximum downlink bitrate | This-Document | 1.0 |
5 | PreferAltPath | Sollicits the hosts to use an alternate path if available | This-Document | 1.0 |
250-255 | Exp | Reserved for private use | This-Document | 1.0 |
New values in the 6-99 range can be assigned using "Standards Action" policy (Section 4.9 of [RFC8126]).¶
Values in the 100-149 range can be assigned using "Expert Review" policy (Section 4.5 of [RFC8126]).¶
Values in the 150-249 range can be assigned using "First Come First Served" (Section 4.4 of [RFC8126]). This range can be, e.g., used by other SDOs to register metadata that are specific to their domain and which is not used outside that scope.¶
To be completed.¶
Video Streaming Metadata:¶
The use case requirements and the table values below explained in detail in [I-D.rwbr-tsvwg-signaling-use-cases].¶
Traffic type | Importance | PacketNature | PacketType |
---|---|---|---|
video I-frame (key frame) | low | realtime | reliable |
video delta P-frame | low | discard | unreliable |
video delta B-frame | low | discard | unreliable |
audio | high | realtime | reliable |
The encoding of the metadata in CDDL for the traffic will look like: Video I-frame:¶
metadata = { "metadata-type": 1, "Application Metadata": { "importance": false, "reliable": true, "realtime": true } }¶
Audio:¶
metadata = { "metadata-type": 1, "Application Metadata": { "importance": true, "reliable": true, "realtime": true } }¶
Video delta P-frame:¶
metadata = { "metadata-type": 1, "Application Metadata": { "importance": false, "reliable": false, "prefer-keep": false } }¶
The use case requirements and the table values below explained in detail in [I-D.rwbr-tsvwg-signaling-use-cases].¶
Interactive A/V, downstream Metadata:¶
Traffic type | Importance | PacketNature | PacketType |
---|---|---|---|
video key frame | low | realtime | reliable |
video delta frame | low | discard | unreliable |
audio | high | realtime | reliable |
Encoding:¶
Video key frame:¶
metadata = { "metadata-type": 1, "Application Metadata": { "importance": false, "reliable": true, "realtime": true } }¶
Video delta frame:¶
metadata = { "metadata-type": 1, "Application Metadata": { "importance": false, "reliable": false, "prefer-keep": false } }¶
Audio:¶
metadata = { "metadata-type": 1, "Application Metadata": { "importance": true, "reliable": true, "realtime": true } }¶
Example packet metadata for Desktop Virtualization (like Citrix Virtual Apps and Desktops - CVAD) application.¶
Remote Desktop Virtualization Metadata:¶
The use case requirements and the table values below explained in detail in [I-D.rwbr-tsvwg-signaling-use-cases].¶
Traffic type | Importance | PacketNature | PacketType | Comments |
---|---|---|---|---|
Glyph critical | high | realtime | reliable | The frames that form the base for the image is more critical and needs to be transmitted as reliably as possible. Retransmits of these are harmful to the UX.** |
Interactive (or streaming) audio | high | keep | unreliable | |
Haptic feedback | high | discard | unreliable | Virtualizing haptic feedback is real-time and high importance although the feedback being delivered late is of no use. So dropping the packet altogether and not retransmitting it makes more sense |
Interactive (or streaming) video key frame | low | keep | unreliable | Video key frames form the base frames of a video upon which the next 'n' timeframe of video updates is applied on. These frames, are hence, critical and without them, the video would not be coherent until the next critical frame is received. Retransmits of these are harmful to the UX. *** |
File copy | low | bulk | reliable | |
Interactive (or streaming) video predictive frame | low | discard | unreliable | Video predictive frames can be lost, which would result in minor glitch but not compromise the user activity and video would still be coherent and useful. The reception of subsequent video key frame would mitigate the loss in quality caused by lost predictive frames. |
Glyph smoothing | low | discard | Unreliable | The smoothing elements of the glyph can be lost and would still present a recognizable image, although with a lesser quality. Hence, these can be marked as loss tolerant as the user action is still completed with a small compromise to the UX. Moreover, with the reception of the next glyph critical frame would mitigate the loss in quality caused by lost glyph smoothing elements. |
Encoding:¶
Glyph critical:¶
metadata = { "metadata-type": 1, "Application Metadata": { "importance": true, "reliable": true, "realtime": true } }¶
Glyph smoothing:¶
metadata = { "metadata-type": 1, "Application Metadata": { "importance": false, "reliable": false, "prefer-keep": false } }¶
Interactive Audio:¶
metadata = { "metadata-type": 1, "Application Metadata": { "importance": true, "reliable": false, "prefer-keep": true } }¶
Haptic feedback:¶
metadata = { "metadata-type": 1, "Application Metadata": { "importance": true, "reliable": false, "prefer-keep": false } }¶
File copy:¶
metadata = { "metadata-type": 1, "Application Metadata": { "importance": false, "reliable": true, "realtime": false } }¶
A network element can signal the maximum bandwidth allowed for video streaming. Typically, this policy limit exists in cellular networks.¶
The example shown in Figure 2 indicates the burst bandwidth (2 Mbps), burst duration (3 seconds), and nominal (non-burst) bandwidth (1 Mbps) for the requesting user:¶