mirror of
https://github.com/haproxy/haproxy.git
synced 2026-03-15 23:22:25 -04:00
Each QUIC congestion algorithm is defined as a structure with callbacks in it. Every quic_conn has a member pointing to the configured algorithm, inherited from the bind-conf keyword or to the default CUBIC value. Convert all these definitions to const. This ensures that there never will be an accidental modification of a globally shared structure. This also requires to mark quic_cc_algo field in bind_conf and quic_cc as const.
156 lines
4.5 KiB
C
156 lines
4.5 KiB
C
/*
|
|
* include/haproxy/quic_cc-t.h
|
|
* This file contains definitions for QUIC congestion control.
|
|
*
|
|
* Copyright 2020 HAProxy Technologies, Frederic Lecaille <flecaille@haproxy.com>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation, version 2.1
|
|
* exclusively.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef _HAPROXY_QUIC_CC_H
|
|
#define _HAPROXY_QUIC_CC_H
|
|
#ifdef USE_QUIC
|
|
#ifndef USE_OPENSSL
|
|
#error "Must define USE_OPENSSL"
|
|
#endif
|
|
|
|
#include <inttypes.h>
|
|
#include <stddef.h> /* size_t */
|
|
|
|
#include <haproxy/buf-t.h>
|
|
#include <haproxy/quic_loss-t.h>
|
|
#include <haproxy/quic_tx-t.h>
|
|
|
|
#define QUIC_CC_INFINITE_SSTHESH ((uint32_t)-1)
|
|
|
|
extern const struct quic_cc_algo quic_cc_algo_nr;
|
|
extern const struct quic_cc_algo quic_cc_algo_cubic;
|
|
extern const struct quic_cc_algo quic_cc_algo_bbr;
|
|
extern const struct quic_cc_algo *default_quic_cc_algo;
|
|
|
|
/* Fake algorithm with its fixed window */
|
|
extern const struct quic_cc_algo quic_cc_algo_nocc;
|
|
|
|
extern unsigned long long last_ts;
|
|
|
|
enum quic_cc_algo_state_type {
|
|
/* Slow start. */
|
|
QUIC_CC_ST_SS,
|
|
/* Conservative slow start (HyStart++ only) */
|
|
QUIC_CC_ST_CS,
|
|
/* Congestion avoidance. */
|
|
QUIC_CC_ST_CA,
|
|
/* Recovery period. */
|
|
QUIC_CC_ST_RP,
|
|
};
|
|
|
|
enum quic_cc_event_type {
|
|
/* ACK receipt. */
|
|
QUIC_CC_EVT_ACK,
|
|
/* Packet loss. */
|
|
QUIC_CC_EVT_LOSS,
|
|
/* ECN-CE. */
|
|
QUIC_CC_EVT_ECN_CE,
|
|
};
|
|
|
|
struct quic_cc_event {
|
|
enum quic_cc_event_type type;
|
|
union {
|
|
struct ack {
|
|
uint64_t acked;
|
|
uint64_t pn;
|
|
unsigned int time_sent;
|
|
} ack;
|
|
struct loss {
|
|
unsigned int time_sent;
|
|
unsigned int count; // #pkt lost for this event
|
|
} loss;
|
|
};
|
|
};
|
|
|
|
enum quic_cc_algo_type {
|
|
QUIC_CC_ALGO_TP_NEWRENO,
|
|
QUIC_CC_ALGO_TP_CUBIC,
|
|
QUIC_CC_ALGO_TP_BBR,
|
|
QUIC_CC_ALGO_TP_NOCC,
|
|
};
|
|
|
|
struct quic_cc {
|
|
/* <conn> is there only for debugging purpose. */
|
|
struct quic_conn *qc;
|
|
const struct quic_cc_algo *algo;
|
|
uint32_t priv[144];
|
|
};
|
|
|
|
struct quic_cc_path {
|
|
/* Control congestion. */
|
|
struct quic_cc cc;
|
|
/* Packet loss detection information. */
|
|
struct quic_loss loss;
|
|
|
|
/* MTU. Must be constant for GSO support. */
|
|
const size_t mtu;
|
|
/* Initial congestion window. */
|
|
uint64_t initial_wnd;
|
|
/* Congestion window. */
|
|
uint64_t cwnd;
|
|
/* The current maximum congestion window value reached. */
|
|
uint64_t cwnd_last_max;
|
|
/* Max limit on congestion window size. */
|
|
uint64_t limit_max;
|
|
/* Min limit on congestion window size. */
|
|
uint64_t limit_min;
|
|
/* Prepared data to be sent (in bytes). */
|
|
uint64_t prep_in_flight;
|
|
/* Outstanding data (in bytes). */
|
|
uint64_t in_flight;
|
|
/* Number of in flight ack-eliciting packets. */
|
|
uint64_t ifae_pkts;
|
|
uint64_t delivery_rate; /* bytes per second */
|
|
size_t send_quantum;
|
|
uint32_t recovery_start_ts;
|
|
};
|
|
|
|
/* pacing can be optionally activated on top of the algorithm */
|
|
#define QUIC_CC_ALGO_FL_OPT_PACING 0x01
|
|
|
|
struct quic_cc_algo {
|
|
enum quic_cc_algo_type type;
|
|
int flags; /* QUIC_CC_ALGO_FL_* */
|
|
|
|
int (*init)(struct quic_cc *cc);
|
|
void (*event)(struct quic_cc *cc, struct quic_cc_event *ev);
|
|
void (*slow_start)(struct quic_cc *cc);
|
|
void (*state_trace)(struct buffer *buf, const struct quic_cc *cc);
|
|
void (*state_cli)(struct buffer *buf, const struct quic_cc_path *path);
|
|
void (*hystart_start_round)(struct quic_cc *cc, uint64_t pn);
|
|
|
|
uint (*pacing_inter)(const struct quic_cc *cc);
|
|
uint (*pacing_burst)(const struct quic_cc *cc); /* only set if pacing integrated with congestion algo */
|
|
|
|
struct quic_cc_drs *(*get_drs)(struct quic_cc *cc);
|
|
void (*on_transmit)(struct quic_cc *cc);
|
|
void (*drs_on_transmit)(struct quic_cc *cc, struct quic_tx_packet *pkt);
|
|
void (*on_ack_rcvd)(struct quic_cc *cc, uint32_t acked, uint32_t delivered,
|
|
uint32_t ack_rtt, uint32_t bytes_lost,
|
|
unsigned int largest_pkt_sent_ts);
|
|
void (*on_pkt_lost)(struct quic_cc *cc,
|
|
struct quic_tx_packet *pkt, uint32_t lost_bytes);
|
|
void (*congestion_event)(struct quic_cc *cc, uint32_t ts);
|
|
void (*check_app_limited)(const struct quic_cc *cc, int sent);
|
|
};
|
|
|
|
#endif /* USE_QUIC */
|
|
#endif /* _HAPROXY_QUIC_CC_H */
|