1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
/* Copyright (C) 2024 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/*!
* \file
*
* \brief General QUIC functionality.
*
* \addtogroup quic
* @{
*/
#pragma once
#include <sys/types.h>
#include <netinet/in.h>
#include "libknot/quic/quic_conn.h"
#include "libknot/quic/tls_common.h"
#define KNOT_QUIC_HANDLE_RET_CLOSE 2000
// RFC 9250
#define KNOT_QUIC_ERR_EXCESSIVE_LOAD 0x4
struct knot_quic_session;
typedef enum {
KNOT_QUIC_SEND_IGNORE_LASTBYTE = (1 << 0),
KNOT_QUIC_SEND_IGNORE_BLOCKED = (1 << 1),
} knot_quic_send_flag_t;
typedef struct knot_quic_reply {
const struct sockaddr_storage *ip_rem;
const struct sockaddr_storage *ip_loc;
struct iovec *in_payload;
struct iovec *out_payload;
void *in_ctx;
void *out_ctx;
void *sock;
int handle_ret;
uint8_t ecn;
int (*alloc_reply)(struct knot_quic_reply *);
int (*send_reply)(struct knot_quic_reply *);
void (*free_reply)(struct knot_quic_reply *);
} knot_quic_reply_t;
/*!
* \brief Check if session ticket can be taken out of this connection.
*/
bool knot_quic_session_available(knot_quic_conn_t *conn);
/*!
* \brief Gets data needed for session resumption.
*
* \param conn QUIC connection.
*
* \return QUIC session context.
*/
struct knot_quic_session *knot_quic_session_save(knot_quic_conn_t *conn);
/*!
* \brief Loads data needed for session resumption.
*
* \param conn QUIC connection.
* \param session QUIC session context.
*
* \return KNOT_E*
*/
int knot_quic_session_load(knot_quic_conn_t *conn, struct knot_quic_session *session);
/*!
* \brief Returns timeout value for the connection.
*/
uint64_t quic_conn_get_timeout(knot_quic_conn_t *conn);
/*!
* \brief Check if connection timed out due to inactivity.
*
* \param conn QUIC connection.
* \param now In/out: current monotonic time. Use zero first and reuse for
* next calls for optimization.
*
* \return True if the connection timed out idle.
*/
bool quic_conn_timeout(knot_quic_conn_t *conn, uint64_t *now);
int64_t knot_quic_conn_next_timeout(knot_quic_conn_t *conn);
int knot_quic_hanle_expiry(knot_quic_conn_t *conn);
/*!
* \brief Returns measured connection RTT in usecs.
*/
uint32_t knot_quic_conn_rtt(knot_quic_conn_t *conn);
/*!
* \brief Returns the port from local-address of given conn IN BIG ENDIAN.
*/
uint16_t knot_quic_conn_local_port(knot_quic_conn_t *conn);
/*!
* \brief Create new outgoing QUIC connection.
*
* \param table QUIC connections table to be added to.
* \param dest Destination IP address.
* \param via Source IP address.
* \param server_name Optional server name.
* \param out_conn Out: new connection.
*
* \return KNOT_E*
*/
int knot_quic_client(knot_quic_table_t *table, struct sockaddr_in6 *dest,
struct sockaddr_in6 *via, const char *server_name,
knot_quic_conn_t **out_conn);
/*!
* \brief Handle incoming QUIC packet.
*
* \param table QUIC connectoins table.
* \param reply Incoming packet info.
* \param idle_timeout Configured idle timeout for connections (in nanoseconds).
* \param out_conn Out: QUIC connection that this packet belongs to.
*
* \return KNOT_E* or -QUIC_SEND_*
*/
int knot_quic_handle(knot_quic_table_t *table, knot_quic_reply_t *reply,
uint64_t idle_timeout, knot_quic_conn_t **out_conn);
/*!
* \brief Send outgoing QUIC packet(s) for a connection.
*
* \param quic_table QUIC connection table.
* \param conn QUIC connection.
* \param reply Incoming/outgoing packet info.
* \param max_msgs Maxmimum packets to be sent.
* \param flags Various options for special use-cases.
*
* \return KNOT_E*
*/
int knot_quic_send(knot_quic_table_t *quic_table, knot_quic_conn_t *conn,
knot_quic_reply_t *reply, unsigned max_msgs,
knot_quic_send_flag_t flags);
/*! @} */
|