Path: blob/main/crypto/openssl/doc/designs/quic-design/quic-ackm.md
34876 views
QUIC ACK Manager
The QUIC ACK manager is responsible for, on the TX side:
Handling received ACK frames
Generating notifications that a packet we sent was delivered successfully
Generating notifications that a packet we sent was lost
Generating requests for probe transmission
Providing information on the largest unacked packet number so that packet numbers in packet headers can be encoded and decoded correctly
On the RX side, it is responsible for:
Generating ACK frames for later transmission in response to packets we received
Providing information on whether a given RX packet number is potentially duplicate and should not be processed
In order to allow it to perform these tasks, the ACK manager must:
be notified of all transmitted packets
be notified of all received datagrams
be notified of all received packets
be notified of all received ACK frames
be notified when a packet number space is discarded
be notified when its loss detection deadline arrives
The ACK manager consumes:
an arbitrary function which returns the current time;
a RTT statistics tracker;
a congestion controller.
The ACK manager provides the following outputs:
It indicates the current deadline by which the loss detection event should be invoked.
It indicates when probes should be generated.
It indicates what ACK frames should be generated.
It indicates the current deadline by which new ACK frames will be generated, if any.
It indicates the largest unacknowledged packet number for a given packet number space.
It calls a callback for each transmitted packet it is notified of, specifying whether the packet was successfully acknowledged by the peer, lost or discarded.
It may communicate with a congestion controller, causing the congestion controller to update its state.
It may communicate with a RTT statistics tracker, causing it to update its state.
In this document, “the caller” refers to the system which makes use of the ACK manager.
Utility Definitions
There are three QUIC packet number spaces: Initial, Handshake and Application Data.
Packet numbers are 62-bit values represented herein by QUIC_PN
. QUIC_PN_INFINITE
evaluates to an invalid QUIC packet number value.
Instantiation
The QUIC ACK manager is instantiated as follows:
The function pointer now
is invoked by the ACK manager to obtain the current time. now_arg
is passed as the argument. The congestion controller method and instance passed are used by the ACK manager instance. statm
points to a Statistics Manager tracker instance.
Events
The ACK manager state is evolved in response to events provided to the ACK manager by the caller.
On TX Packet
This must be called when a packet is transmitted. It does not provide the payload of the packet, but provides metadata about the packet which is relevant to the loss detection and acknowledgement process.
The caller is responsible for the allocation of the structure and the structure must remain allocated until one of the callbacks is called or the ACK manager is freed. It is expected this structure will usually be freed (or returned to a pool) in the implementation of either callback passed by the caller.
Only exactly one of the callbacks in the structure will be called over the lifetime of a OSSL_ACKM_TX_PKT
, and only once.
Returns 1 on success.
On RX Datagram
This must be called whenever a datagram is received. A datagram may contain multiple packets, and this function should be called before the calls to ossl_ackm_on_rx_packet
.
The primary use of this function is to inform the ACK manager of new credit to the anti-amplification budget. Packet and ACK-frame related logic are handled separately in the subsequent calls to ossl_ackm_on_rx_packet
and ossl_ackm_on_rx_ack_frame
, respectively.
Returns 1 on success.
On RX Packet
This must be called whenever a packet is received. It should be called after ossl_ackm_on_rx_datagram
was called for the datagram containing the packet.
Returns 1 on success.
On RX ACK Frame
This must be called whenever an ACK frame is received. It should be called after any call to ossl_ackm_on_rx_packet
.
The ranges of packet numbers being acknowledged are passed as an argument. pkt_space
is one of the QUIC_PN_SPACE_*
values, specifying the packet number space of the containing packet. rx_time
is the time the frame was received.
This function causes on_acked
callbacks to be invoked on applicable packets.
Returns 1 on success.
On Packet Space Discarded
This must be called whenever a packet number space is discarded. ACK-tracking information for the number space is thrown away. Any previously provided OSSL_ACKM_TX_PKT
structures have their on_discarded
callback invoked, providing an opportunity for them to be freed.
Returns 1 on success.
On Handshake Confirmed
This should be called by the caller when the QUIC handshake is confirmed. The Probe Timeout (PTO) algorithm behaves differently depending on whether the QUIC handshake is confirmed yet.
Returns 1 on success.
On Timeout
This must be called whenever the loss detection deadline expires.
Queries
These functions allow information about the status of the ACK manager to be obtained.
Get Loss Detection Deadline
This returns a deadline after which ossl_ackm_on_timeout
should be called.
If it is OSSL_TIME_INFINITY
, no timeout is currently active.
The value returned by this function may change after any call to any of the event functions above is made.
Get ACK Frame
This returns a pointer to a OSSL_ACKM_ACK
structure representing the information which should be packed into an ACK frame and transmitted.
This generates an ACK frame regardless of whether the ACK manager thinks one should currently be sent. To determine if the ACK manager thinks an ACK frame should be sent, use ossl_ackm_is_ack_desired
, discussed below.
If no new ACK frame is currently needed, returns NULL. After calling this function, calling the function immediately again will return NULL.
The structure pointed to by the returned pointer, and the referenced ACK range structures, are guaranteed to remain valid until the next call to any OSSL_ACKM
function. After such a call is made, all fields become undefined.
This function is used to provide ACK frames for acknowledging packets which have been received and notified to the ACK manager via ossl_ackm_on_rx_packet
.
Calling this function clears the flag returned by ossl_ackm_is_ack_desired
and the deadline returned by ossl_ackm_get_ack_deadline
.
Is ACK Desired
This returns 1 if the ACK manager thinks an ACK frame ought to be generated and sent at this time. ossl_ackm_get_ack_frame
will always provide an ACK frame whether or not this returns 1, so it is suggested that you call this function first to determine whether you need to generate an ACK frame.
The return value of this function can change based on calls to ossl_ackm_on_rx_packet
and based on the passage of time (see ossl_ackm_get_ack_deadline
).
Get ACK Deadline
The ACK manager may defer generation of ACK frames to optimize performance. For example, after a packet requiring acknowledgement is received, it may decide to wait until a few more packets are received before generating an ACK frame, so that a single ACK frame can acknowledge all of them. However, if further packets do not arrive, an ACK frame must be generated anyway within a certain amount of time.
This function returns the deadline at which the return value of ossl_ackm_is_ack_desired
will change to 1, or OSSL_TIME_INFINITY
, which means that no deadline is currently applicable. If the deadline has already passed, it may either return that deadline or OSSL_TIME_ZERO
.
Is RX PN Processable
Returns 1 if the given RX packet number is “processable”. A processable PN is one that is not either
duplicate, meaning that we have already been passed such a PN in a call to
ossl_ackm_on_rx_packet
; orwritten off, meaning that the PN is so old that we have stopped tracking state for it (meaning we cannot tell whether it is a duplicate and cannot process it safely).
This should be called for a packet before attempting to process its contents. Failure to do so may may result in processing a duplicated packet in violation of the RFC.
The returrn value of this function transitions from 1 to 0 for a given PN once that PN is passed to ossl_ackm_on_rx_packet, thus this function must be used before calling ossl_ackm_on_rx_packet
.
Get Probe Packet
This determines if the ACK manager is requesting any probe packets to be transmitted.
The user calls ossl_ackm_get_probe_request
. The structure pointed to by info
is filled and the function returns 1 on success.
The fields of OSSL_ACKM_PROBE_INFO
record the number of probe requests of each type which are outstanding. In short:
handshake
designates the number of ACK-eliciting Handshake packets being requested. This is equivalent toSendOneAckElicitingHandshakePacket()
in RFC 9002.padded_initial
designates the number of ACK-eliciting padded Initial packets being requested. This is equivalent toSendOneAckElicitingPaddedInitialPacket()
in RFC 9002.pto
designates the number of ACK-eliciting outstanding probe events corresponding to each packet number space. This is equivalent toSendOneOrTwoAckElicitingPackets(pn_space)
in RFC 9002.
Once the caller has processed these requests, the caller must clear these outstanding requests by calling ossl_ackm_get_probe_request
with clear
set to 1. If clear
is non-zero, the current values are returned and then zeroed, so that the next call to ossl_ackm_get_probe_request
(if made immediately) will return zero values for all fields.
Get Largest Unacked Packet Number
This gets the largest unacknowledged packet number in the given packet number space. The packet number is written to *pn
. Returns 1 on success.
This is needed so that packet encoders can determine with what length to encode the abridged packet number in the packet header.
Callback Functionality
The ACK manager supports optional callback functionality when its deadlines are updated. By default, the callback functionality is not enabled. To use the callback functionality, call either or both of the following functions with a non-NULL function pointer:
Callbacks can be subsequently disabled by calling these functions with a NULL function pointer. The callbacks are not called at the time that they are set, therefore it is recommended to call them immediately after the call to ossl_ackm_new
.
The loss detection deadline callback is called whenever the value returned by ossl_ackm_get_loss_detection_deadline
changes.
The ACK deadline callback is called whenever the value returned by ossl_ackm_get_ack_deadline
changes for a given packet space.
The deadline
argument reflects the value which will be newly returned by the corresponding function. If the configured callback calls either of these functions, the returned value will reflect the new deadline.