Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 1 | /* |
| 2 | * HTTP/3 protocol processing |
| 3 | * |
| 4 | * This library is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU Lesser General Public |
| 6 | * License as published by the Free Software Foundation, version 2.1 |
| 7 | * exclusively. |
| 8 | * |
| 9 | * This library is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 | * Lesser General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU Lesser General Public |
| 15 | * License along with this library; if not, write to the Free Software |
| 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 17 | */ |
| 18 | |
| 19 | #include <haproxy/buf.h> |
Amaury Denoyelle | 9904355 | 2021-08-24 15:36:02 +0200 | [diff] [blame] | 20 | #include <haproxy/connection.h> |
Christopher Faulet | 1329f2a | 2021-12-16 17:32:56 +0100 | [diff] [blame] | 21 | #include <haproxy/conn_stream.h> |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 22 | #include <haproxy/dynbuf.h> |
| 23 | #include <haproxy/h3.h> |
Amaury Denoyelle | b49fa1a | 2021-08-24 15:30:12 +0200 | [diff] [blame] | 24 | #include <haproxy/http.h> |
| 25 | #include <haproxy/htx.h> |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 26 | #include <haproxy/istbuf.h> |
Amaury Denoyelle | 846cc04 | 2022-04-04 16:13:44 +0200 | [diff] [blame] | 27 | #include <haproxy/mux_quic.h> |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 28 | #include <haproxy/ncbuf.h> |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 29 | #include <haproxy/pool.h> |
| 30 | #include <haproxy/qpack-dec.h> |
Amaury Denoyelle | 15b0961 | 2021-08-24 16:20:27 +0200 | [diff] [blame] | 31 | #include <haproxy/qpack-enc.h> |
| 32 | #include <haproxy/quic_enc.h> |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 33 | #include <haproxy/tools.h> |
| 34 | #include <haproxy/xprt_quic.h> |
| 35 | |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 36 | #if defined(DEBUG_H3) |
| 37 | #define h3_debug_printf fprintf |
| 38 | #define h3_debug_hexdump debug_hexdump |
| 39 | #else |
| 40 | #define h3_debug_printf(...) do { } while (0) |
| 41 | #define h3_debug_hexdump(...) do { } while (0) |
| 42 | #endif |
| 43 | |
| 44 | #define H3_CF_SETTINGS_SENT 0x00000001 |
| 45 | |
| 46 | /* Default settings */ |
Amaury Denoyelle | 3394939 | 2021-08-24 15:16:58 +0200 | [diff] [blame] | 47 | static uint64_t h3_settings_qpack_max_table_capacity = 0; |
| 48 | static uint64_t h3_settings_qpack_blocked_streams = 4096; |
| 49 | static uint64_t h3_settings_max_field_section_size = QUIC_VARINT_8_BYTE_MAX; /* Unlimited */ |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 50 | |
| 51 | struct h3 { |
| 52 | struct qcc *qcc; |
| 53 | enum h3_err err; |
| 54 | uint32_t flags; |
| 55 | /* Locally initiated uni-streams */ |
| 56 | struct h3_uqs lqpack_enc; |
| 57 | struct h3_uqs lqpack_dec; |
| 58 | struct h3_uqs lctrl; |
| 59 | /* Remotely initiated uni-streams */ |
| 60 | struct h3_uqs rqpack_enc; |
| 61 | struct h3_uqs rqpack_dec; |
| 62 | struct h3_uqs rctrl; |
| 63 | /* Settings */ |
| 64 | uint64_t qpack_max_table_capacity; |
| 65 | uint64_t qpack_blocked_streams; |
| 66 | uint64_t max_field_section_size; |
| 67 | struct buffer_wait buf_wait; /* wait list for buffer allocations */ |
| 68 | }; |
| 69 | |
| 70 | DECLARE_STATIC_POOL(pool_head_h3, "h3", sizeof(struct h3)); |
| 71 | |
Amaury Denoyelle | 67e92d3 | 2022-04-27 18:04:01 +0200 | [diff] [blame] | 72 | struct h3s { |
Amaury Denoyelle | 48f01bd | 2022-04-27 15:37:20 +0200 | [diff] [blame] | 73 | int demux_frame_len; |
| 74 | int demux_frame_type; |
Amaury Denoyelle | 67e92d3 | 2022-04-27 18:04:01 +0200 | [diff] [blame] | 75 | }; |
| 76 | |
| 77 | DECLARE_STATIC_POOL(pool_head_h3s, "h3s", sizeof(struct h3s)); |
| 78 | |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 79 | /* Simple function to duplicate a buffer */ |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 80 | static inline struct buffer h3_b_dup(struct ncbuf *b) |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 81 | { |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 82 | return b_make(ncb_orig(b), b->size, b->head, ncb_data(b, 0)); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 83 | } |
| 84 | |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 85 | /* Decode a h3 frame header made of two QUIC varints from <b> buffer. |
| 86 | * Returns the number of bytes consumed if there was enough data in <b>, 0 if not. |
| 87 | * Note that this function update <b> buffer to reflect the number of bytes consumed |
| 88 | * to decode the h3 frame header. |
| 89 | */ |
| 90 | static inline size_t h3_decode_frm_header(uint64_t *ftype, uint64_t *flen, |
| 91 | struct buffer *b) |
| 92 | { |
| 93 | size_t hlen; |
| 94 | |
| 95 | hlen = 0; |
| 96 | if (!b_quic_dec_int(ftype, b, &hlen) || !b_quic_dec_int(flen, b, &hlen)) |
| 97 | return 0; |
| 98 | |
| 99 | return hlen; |
| 100 | } |
| 101 | |
Amaury Denoyelle | 7b0f122 | 2022-02-14 17:13:55 +0100 | [diff] [blame] | 102 | /* Parse from buffer <buf> a H3 HEADERS frame of length <len>. Data are copied |
| 103 | * in a local HTX buffer and transfer to the conn-stream layer. <fin> must be |
| 104 | * set if this is the last data to transfer from this stream. |
| 105 | * |
Amaury Denoyelle | 314578a | 2022-04-27 14:52:52 +0200 | [diff] [blame] | 106 | * Returns the number of bytes handled or a negative error code. |
Amaury Denoyelle | b9ce14e | 2021-11-08 09:13:42 +0100 | [diff] [blame] | 107 | */ |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 108 | static int h3_headers_to_htx(struct qcs *qcs, struct ncbuf *buf, uint64_t len, |
Amaury Denoyelle | 7b0f122 | 2022-02-14 17:13:55 +0100 | [diff] [blame] | 109 | char fin) |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 110 | { |
Amaury Denoyelle | 7b0f122 | 2022-02-14 17:13:55 +0100 | [diff] [blame] | 111 | struct buffer htx_buf = BUF_NULL; |
| 112 | struct buffer *tmp = get_trash_chunk(); |
Amaury Denoyelle | 7059ebc | 2021-12-08 15:51:04 +0100 | [diff] [blame] | 113 | struct htx *htx = NULL; |
Amaury Denoyelle | b49fa1a | 2021-08-24 15:30:12 +0200 | [diff] [blame] | 114 | struct htx_sl *sl; |
Amaury Denoyelle | fd7cdc3 | 2021-08-24 15:13:20 +0200 | [diff] [blame] | 115 | struct http_hdr list[global.tune.max_http_hdr]; |
Amaury Denoyelle | b49fa1a | 2021-08-24 15:30:12 +0200 | [diff] [blame] | 116 | unsigned int flags = HTX_SL_F_NONE; |
Amaury Denoyelle | 7b0f122 | 2022-02-14 17:13:55 +0100 | [diff] [blame] | 117 | struct ist meth = IST_NULL, path = IST_NULL; |
| 118 | //struct ist scheme = IST_NULL, authority = IST_NULL; |
| 119 | struct ist authority = IST_NULL; |
Amaury Denoyelle | fd7cdc3 | 2021-08-24 15:13:20 +0200 | [diff] [blame] | 120 | int hdr_idx; |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 121 | |
Amaury Denoyelle | 30f23f5 | 2022-04-27 14:41:53 +0200 | [diff] [blame] | 122 | /* TODO support buffer wrapping */ |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 123 | BUG_ON(ncb_head(buf) + len >= ncb_wrap(buf)); |
| 124 | if (qpack_decode_fs((const unsigned char *)ncb_head(buf), len, tmp, list) < 0) |
Amaury Denoyelle | 314578a | 2022-04-27 14:52:52 +0200 | [diff] [blame] | 125 | return -1; |
Amaury Denoyelle | 7b0f122 | 2022-02-14 17:13:55 +0100 | [diff] [blame] | 126 | |
| 127 | qc_get_buf(qcs, &htx_buf); |
| 128 | BUG_ON(!b_size(&htx_buf)); |
| 129 | htx = htx_from_buf(&htx_buf); |
| 130 | |
| 131 | /* first treat pseudo-header to build the start line */ |
| 132 | hdr_idx = 0; |
| 133 | while (1) { |
| 134 | if (isteq(list[hdr_idx].n, ist(""))) |
| 135 | break; |
| 136 | |
| 137 | if (istmatch(list[hdr_idx].n, ist(":"))) { |
| 138 | /* pseudo-header */ |
| 139 | if (isteq(list[hdr_idx].n, ist(":method"))) |
| 140 | meth = list[hdr_idx].v; |
| 141 | else if (isteq(list[hdr_idx].n, ist(":path"))) |
| 142 | path = list[hdr_idx].v; |
| 143 | //else if (isteq(list[hdr_idx].n, ist(":scheme"))) |
| 144 | // scheme = list[hdr_idx].v; |
| 145 | else if (isteq(list[hdr_idx].n, ist(":authority"))) |
| 146 | authority = list[hdr_idx].v; |
| 147 | } |
| 148 | |
| 149 | ++hdr_idx; |
| 150 | } |
| 151 | |
| 152 | flags |= HTX_SL_F_VER_11; |
Amaury Denoyelle | 0fa14a6 | 2022-04-26 16:24:39 +0200 | [diff] [blame] | 153 | flags |= HTX_SL_F_XFER_LEN; |
Amaury Denoyelle | 7b0f122 | 2022-02-14 17:13:55 +0100 | [diff] [blame] | 154 | |
| 155 | sl = htx_add_stline(htx, HTX_BLK_REQ_SL, flags, meth, path, ist("HTTP/3.0")); |
| 156 | if (!sl) |
Amaury Denoyelle | 314578a | 2022-04-27 14:52:52 +0200 | [diff] [blame] | 157 | return -1; |
Amaury Denoyelle | 7b0f122 | 2022-02-14 17:13:55 +0100 | [diff] [blame] | 158 | |
| 159 | if (fin) |
| 160 | sl->flags |= HTX_SL_F_BODYLESS; |
| 161 | |
| 162 | sl->info.req.meth = find_http_meth(meth.ptr, meth.len); |
| 163 | BUG_ON(sl->info.req.meth == HTTP_METH_OTHER); |
| 164 | |
| 165 | if (isttest(authority)) |
| 166 | htx_add_header(htx, ist("host"), authority); |
| 167 | |
| 168 | /* now treat standard headers */ |
| 169 | hdr_idx = 0; |
| 170 | while (1) { |
| 171 | if (isteq(list[hdr_idx].n, ist(""))) |
| 172 | break; |
| 173 | |
| 174 | if (!istmatch(list[hdr_idx].n, ist(":"))) |
| 175 | htx_add_header(htx, list[hdr_idx].n, list[hdr_idx].v); |
| 176 | |
| 177 | ++hdr_idx; |
| 178 | } |
| 179 | |
| 180 | htx_add_endof(htx, HTX_BLK_EOH); |
| 181 | htx_to_buf(htx, &htx_buf); |
| 182 | |
| 183 | if (fin) |
| 184 | htx->flags |= HTX_FL_EOM; |
| 185 | |
Willy Tarreau | 01c2a4a | 2022-05-10 15:46:10 +0200 | [diff] [blame] | 186 | if (!qc_attach_cs(qcs, &htx_buf)) |
Amaury Denoyelle | 314578a | 2022-04-27 14:52:52 +0200 | [diff] [blame] | 187 | return -1; |
Amaury Denoyelle | 7b0f122 | 2022-02-14 17:13:55 +0100 | [diff] [blame] | 188 | |
| 189 | /* buffer is transferred to conn_stream and set to NULL |
| 190 | * except on stream creation error. |
| 191 | */ |
| 192 | b_free(&htx_buf); |
| 193 | offer_buffers(NULL, 1); |
| 194 | |
Amaury Denoyelle | 314578a | 2022-04-27 14:52:52 +0200 | [diff] [blame] | 195 | return len; |
Amaury Denoyelle | 7b0f122 | 2022-02-14 17:13:55 +0100 | [diff] [blame] | 196 | } |
| 197 | |
Amaury Denoyelle | 91379f7 | 2022-02-14 17:14:59 +0100 | [diff] [blame] | 198 | /* Copy from buffer <buf> a H3 DATA frame of length <len> in QUIC stream <qcs> |
| 199 | * HTX buffer. <fin> must be set if this is the last data to transfer from this |
| 200 | * stream. |
| 201 | * |
Amaury Denoyelle | 314578a | 2022-04-27 14:52:52 +0200 | [diff] [blame] | 202 | * Returns the number of bytes handled or a negative error code. |
Amaury Denoyelle | 91379f7 | 2022-02-14 17:14:59 +0100 | [diff] [blame] | 203 | */ |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 204 | static int h3_data_to_htx(struct qcs *qcs, struct ncbuf *buf, uint64_t len, |
Amaury Denoyelle | 91379f7 | 2022-02-14 17:14:59 +0100 | [diff] [blame] | 205 | char fin) |
| 206 | { |
| 207 | struct buffer *appbuf; |
| 208 | struct htx *htx = NULL; |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 209 | size_t htx_sent = 0; |
Amaury Denoyelle | 91379f7 | 2022-02-14 17:14:59 +0100 | [diff] [blame] | 210 | int htx_space; |
Amaury Denoyelle | 30f23f5 | 2022-04-27 14:41:53 +0200 | [diff] [blame] | 211 | char *head; |
Amaury Denoyelle | 91379f7 | 2022-02-14 17:14:59 +0100 | [diff] [blame] | 212 | |
| 213 | appbuf = qc_get_buf(qcs, &qcs->rx.app_buf); |
| 214 | BUG_ON(!appbuf); |
| 215 | htx = htx_from_buf(appbuf); |
| 216 | |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 217 | if (len > ncb_data(buf, 0)) { |
| 218 | len = ncb_data(buf, 0); |
Amaury Denoyelle | 48f01bd | 2022-04-27 15:37:20 +0200 | [diff] [blame] | 219 | fin = 0; |
| 220 | } |
| 221 | |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 222 | head = ncb_head(buf); |
Amaury Denoyelle | 30f23f5 | 2022-04-27 14:41:53 +0200 | [diff] [blame] | 223 | retry: |
Amaury Denoyelle | 91379f7 | 2022-02-14 17:14:59 +0100 | [diff] [blame] | 224 | htx_space = htx_free_data_space(htx); |
Amaury Denoyelle | f1fc0b3 | 2022-05-02 11:07:06 +0200 | [diff] [blame] | 225 | if (!htx_space) { |
| 226 | qcs->flags |= QC_SF_DEM_FULL; |
Amaury Denoyelle | 48f01bd | 2022-04-27 15:37:20 +0200 | [diff] [blame] | 227 | goto out; |
Amaury Denoyelle | f1fc0b3 | 2022-05-02 11:07:06 +0200 | [diff] [blame] | 228 | } |
Amaury Denoyelle | 48f01bd | 2022-04-27 15:37:20 +0200 | [diff] [blame] | 229 | |
| 230 | if (len > htx_space) { |
| 231 | len = htx_space; |
| 232 | fin = 0; |
Amaury Denoyelle | ff191de | 2022-02-21 18:38:29 +0100 | [diff] [blame] | 233 | } |
Amaury Denoyelle | 91379f7 | 2022-02-14 17:14:59 +0100 | [diff] [blame] | 234 | |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 235 | if (head + len > ncb_wrap(buf)) { |
| 236 | size_t contig = ncb_wrap(buf) - head; |
| 237 | htx_sent = htx_add_data(htx, ist2(ncb_head(buf), contig)); |
| 238 | head = ncb_orig(buf); |
Amaury Denoyelle | 30f23f5 | 2022-04-27 14:41:53 +0200 | [diff] [blame] | 239 | len -= contig; |
| 240 | goto retry; |
Amaury Denoyelle | ff191de | 2022-02-21 18:38:29 +0100 | [diff] [blame] | 241 | } |
Amaury Denoyelle | 91379f7 | 2022-02-14 17:14:59 +0100 | [diff] [blame] | 242 | |
Amaury Denoyelle | 30f23f5 | 2022-04-27 14:41:53 +0200 | [diff] [blame] | 243 | htx_sent += htx_add_data(htx, ist2(head, len)); |
| 244 | BUG_ON(htx_sent < len); |
| 245 | |
Amaury Denoyelle | 48f01bd | 2022-04-27 15:37:20 +0200 | [diff] [blame] | 246 | if (fin && len == htx_sent) |
Amaury Denoyelle | 91379f7 | 2022-02-14 17:14:59 +0100 | [diff] [blame] | 247 | htx->flags |= HTX_FL_EOM; |
Amaury Denoyelle | 91379f7 | 2022-02-14 17:14:59 +0100 | [diff] [blame] | 248 | |
Amaury Denoyelle | 48f01bd | 2022-04-27 15:37:20 +0200 | [diff] [blame] | 249 | out: |
| 250 | htx_to_buf(htx, appbuf); |
Amaury Denoyelle | 314578a | 2022-04-27 14:52:52 +0200 | [diff] [blame] | 251 | return htx_sent; |
Amaury Denoyelle | 91379f7 | 2022-02-14 17:14:59 +0100 | [diff] [blame] | 252 | } |
| 253 | |
Amaury Denoyelle | 7b0f122 | 2022-02-14 17:13:55 +0100 | [diff] [blame] | 254 | /* Decode <qcs> remotely initiated bidi-stream. <fin> must be set to indicate |
| 255 | * that we received the last data of the stream. |
| 256 | * Returns <0 on error else 0. |
| 257 | */ |
| 258 | static int h3_decode_qcs(struct qcs *qcs, int fin, void *ctx) |
| 259 | { |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 260 | struct ncbuf *rxbuf = &qcs->rx.ncbuf; |
Amaury Denoyelle | 48f01bd | 2022-04-27 15:37:20 +0200 | [diff] [blame] | 261 | struct h3s *h3s = qcs->ctx; |
Amaury Denoyelle | 314578a | 2022-04-27 14:52:52 +0200 | [diff] [blame] | 262 | ssize_t ret; |
Amaury Denoyelle | 7b0f122 | 2022-02-14 17:13:55 +0100 | [diff] [blame] | 263 | |
Amaury Denoyelle | bb97042 | 2022-04-12 16:40:52 +0200 | [diff] [blame] | 264 | h3_debug_printf(stderr, "%s: STREAM ID: %lu\n", __func__, qcs->id); |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 265 | if (!ncb_data(rxbuf, 0)) |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 266 | return 0; |
| 267 | |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 268 | while (ncb_data(rxbuf, 0) && !(qcs->flags & QC_SF_DEM_FULL)) { |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 269 | uint64_t ftype, flen; |
| 270 | struct buffer b; |
Amaury Denoyelle | 95b93a3 | 2022-02-14 15:49:53 +0100 | [diff] [blame] | 271 | char last_stream_frame = 0; |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 272 | |
| 273 | /* Work on a copy of <rxbuf> */ |
| 274 | b = h3_b_dup(rxbuf); |
Amaury Denoyelle | 48f01bd | 2022-04-27 15:37:20 +0200 | [diff] [blame] | 275 | if (!h3s->demux_frame_len) { |
| 276 | size_t hlen = h3_decode_frm_header(&ftype, &flen, &b); |
| 277 | if (!hlen) |
| 278 | break; |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 279 | |
Amaury Denoyelle | 48f01bd | 2022-04-27 15:37:20 +0200 | [diff] [blame] | 280 | h3_debug_printf(stderr, "%s: ftype: %lu, flen: %lu\n", |
| 281 | __func__, ftype, flen); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 282 | |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 283 | ncb_advance(rxbuf, hlen); |
Amaury Denoyelle | 48f01bd | 2022-04-27 15:37:20 +0200 | [diff] [blame] | 284 | h3s->demux_frame_type = ftype; |
| 285 | h3s->demux_frame_len = flen; |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 286 | qcs->rx.offset += hlen; |
Amaury Denoyelle | 48f01bd | 2022-04-27 15:37:20 +0200 | [diff] [blame] | 287 | } |
Amaury Denoyelle | 0484f92 | 2022-02-15 16:59:39 +0100 | [diff] [blame] | 288 | |
Amaury Denoyelle | 48f01bd | 2022-04-27 15:37:20 +0200 | [diff] [blame] | 289 | flen = h3s->demux_frame_len; |
| 290 | ftype = h3s->demux_frame_type; |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 291 | if (flen > b_data(&b) && !ncb_is_full(rxbuf)) |
Amaury Denoyelle | 48f01bd | 2022-04-27 15:37:20 +0200 | [diff] [blame] | 292 | break; |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 293 | last_stream_frame = (fin && flen == ncb_total_data(rxbuf)); |
Amaury Denoyelle | 95b93a3 | 2022-02-14 15:49:53 +0100 | [diff] [blame] | 294 | |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 295 | switch (ftype) { |
| 296 | case H3_FT_DATA: |
Amaury Denoyelle | 31e4f6e | 2022-02-15 17:30:27 +0100 | [diff] [blame] | 297 | ret = h3_data_to_htx(qcs, rxbuf, flen, last_stream_frame); |
| 298 | /* TODO handle error reporting. Stream closure required. */ |
Amaury Denoyelle | 314578a | 2022-04-27 14:52:52 +0200 | [diff] [blame] | 299 | if (ret < 0) { ABORT_NOW(); } |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 300 | break; |
| 301 | case H3_FT_HEADERS: |
Amaury Denoyelle | 31e4f6e | 2022-02-15 17:30:27 +0100 | [diff] [blame] | 302 | ret = h3_headers_to_htx(qcs, rxbuf, flen, last_stream_frame); |
| 303 | /* TODO handle error reporting. Stream closure required. */ |
Amaury Denoyelle | 314578a | 2022-04-27 14:52:52 +0200 | [diff] [blame] | 304 | if (ret < 0) { ABORT_NOW(); } |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 305 | break; |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 306 | case H3_FT_PUSH_PROMISE: |
| 307 | /* Not supported */ |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 308 | ret = MIN(ncb_data(rxbuf, 0), flen); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 309 | break; |
| 310 | default: |
Amaury Denoyelle | d1acaf9 | 2021-11-15 15:52:55 +0100 | [diff] [blame] | 311 | /* draft-ietf-quic-http34 9. Extensions to HTTP/3 |
| 312 | * unknown frame types MUST be ignored |
| 313 | */ |
| 314 | h3_debug_printf(stderr, "ignore unknown frame type 0x%lx\n", ftype); |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 315 | ret = MIN(ncb_data(rxbuf, 0), flen); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 316 | } |
Amaury Denoyelle | 314578a | 2022-04-27 14:52:52 +0200 | [diff] [blame] | 317 | |
Amaury Denoyelle | 291ee25 | 2022-05-02 10:35:39 +0200 | [diff] [blame] | 318 | if (ret) { |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 319 | ncb_advance(rxbuf, ret); |
Amaury Denoyelle | 291ee25 | 2022-05-02 10:35:39 +0200 | [diff] [blame] | 320 | BUG_ON(h3s->demux_frame_len < ret); |
| 321 | h3s->demux_frame_len -= ret; |
Amaury Denoyelle | 1290f1e | 2022-05-13 14:49:05 +0200 | [diff] [blame] | 322 | qcs->rx.offset += ret; |
Amaury Denoyelle | 291ee25 | 2022-05-02 10:35:39 +0200 | [diff] [blame] | 323 | } |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 324 | } |
| 325 | |
Amaury Denoyelle | 03cc62c | 2022-04-27 16:53:16 +0200 | [diff] [blame] | 326 | /* TODO may be useful to wakeup the MUX if blocked due to full buffer. |
| 327 | * However, currently, io-cb of MUX does not handle Rx. |
| 328 | */ |
| 329 | |
Amaury Denoyelle | b9ce14e | 2021-11-08 09:13:42 +0100 | [diff] [blame] | 330 | return 0; |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 331 | } |
| 332 | |
| 333 | /* Parse a SETTINGS frame which must not be truncated with <flen> as length from |
| 334 | * <rxbuf> buffer. This function does not update this buffer. |
| 335 | * Returns 0 if something wrong happened, 1 if not. |
| 336 | */ |
Amaury Denoyelle | 3db98e9 | 2022-05-13 15:41:04 +0200 | [diff] [blame] | 337 | static int h3_parse_settings_frm(struct h3 *h3, const struct ncbuf *rxbuf, size_t flen) |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 338 | { |
| 339 | uint64_t id, value; |
| 340 | const unsigned char *buf, *end; |
| 341 | |
Amaury Denoyelle | 3db98e9 | 2022-05-13 15:41:04 +0200 | [diff] [blame] | 342 | buf = (const unsigned char *)ncb_head(rxbuf); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 343 | end = buf + flen; |
| 344 | |
| 345 | while (buf <= end) { |
| 346 | if (!quic_dec_int(&id, &buf, end) || !quic_dec_int(&value, &buf, end)) |
| 347 | return 0; |
| 348 | |
| 349 | h3_debug_printf(stderr, "%s id: %llu value: %llu\n", |
| 350 | __func__, (unsigned long long)id, (unsigned long long)value); |
| 351 | switch (id) { |
| 352 | case H3_SETTINGS_QPACK_MAX_TABLE_CAPACITY: |
| 353 | h3->qpack_max_table_capacity = value; |
| 354 | break; |
| 355 | case H3_SETTINGS_MAX_FIELD_SECTION_SIZE: |
| 356 | h3->max_field_section_size = value; |
| 357 | break; |
| 358 | case H3_SETTINGS_QPACK_BLOCKED_STREAMS: |
| 359 | h3->qpack_blocked_streams = value; |
| 360 | break; |
| 361 | case H3_SETTINGS_RESERVED_2 ... H3_SETTINGS_RESERVED_5: |
| 362 | h3->err = H3_SETTINGS_ERROR; |
| 363 | return 0; |
| 364 | default: |
| 365 | /* MUST be ignored */ |
| 366 | break; |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | return 1; |
| 371 | } |
| 372 | |
| 373 | /* Decode <qcs> remotely initiated uni-stream. We stop parsing a frame as soon as |
| 374 | * there is not enough received data. |
| 375 | * Returns 0 if something wrong happened, 1 if not. |
| 376 | */ |
| 377 | static int h3_control_recv(struct h3_uqs *h3_uqs, void *ctx) |
| 378 | { |
Amaury Denoyelle | 3db98e9 | 2022-05-13 15:41:04 +0200 | [diff] [blame] | 379 | struct ncbuf *rxbuf = &h3_uqs->qcs->rx.ncbuf; |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 380 | struct h3 *h3 = ctx; |
| 381 | |
Amaury Denoyelle | bb97042 | 2022-04-12 16:40:52 +0200 | [diff] [blame] | 382 | h3_debug_printf(stderr, "%s STREAM ID: %lu\n", __func__, h3_uqs->qcs->id); |
Amaury Denoyelle | 3db98e9 | 2022-05-13 15:41:04 +0200 | [diff] [blame] | 383 | if (!ncb_data(rxbuf, 0)) |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 384 | return 1; |
| 385 | |
Amaury Denoyelle | 3db98e9 | 2022-05-13 15:41:04 +0200 | [diff] [blame] | 386 | while (ncb_data(rxbuf, 0)) { |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 387 | size_t hlen; |
| 388 | uint64_t ftype, flen; |
| 389 | struct buffer b; |
| 390 | |
| 391 | /* Work on a copy of <rxbuf> */ |
Amaury Denoyelle | 3db98e9 | 2022-05-13 15:41:04 +0200 | [diff] [blame] | 392 | b = h3_b_dup(rxbuf); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 393 | hlen = h3_decode_frm_header(&ftype, &flen, &b); |
| 394 | if (!hlen) |
| 395 | break; |
| 396 | |
| 397 | h3_debug_printf(stderr, "%s: ftype: %llu, flen: %llu\n", __func__, |
| 398 | (unsigned long long)ftype, (unsigned long long)flen); |
| 399 | if (flen > b_data(&b)) |
| 400 | break; |
| 401 | |
Amaury Denoyelle | 3db98e9 | 2022-05-13 15:41:04 +0200 | [diff] [blame] | 402 | ncb_advance(rxbuf, hlen); |
| 403 | h3_uqs->qcs->rx.offset += hlen; |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 404 | /* From here, a frame must not be truncated */ |
| 405 | switch (ftype) { |
| 406 | case H3_FT_CANCEL_PUSH: |
Amaury Denoyelle | e1f3ff0 | 2021-12-06 14:26:52 +0100 | [diff] [blame] | 407 | /* XXX TODO XXX */ |
| 408 | ABORT_NOW(); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 409 | break; |
| 410 | case H3_FT_SETTINGS: |
| 411 | if (!h3_parse_settings_frm(h3, rxbuf, flen)) |
| 412 | return 0; |
| 413 | break; |
| 414 | case H3_FT_GOAWAY: |
Amaury Denoyelle | e1f3ff0 | 2021-12-06 14:26:52 +0100 | [diff] [blame] | 415 | /* XXX TODO XXX */ |
| 416 | ABORT_NOW(); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 417 | break; |
| 418 | case H3_FT_MAX_PUSH_ID: |
Amaury Denoyelle | e1f3ff0 | 2021-12-06 14:26:52 +0100 | [diff] [blame] | 419 | /* XXX TODO XXX */ |
| 420 | ABORT_NOW(); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 421 | break; |
| 422 | default: |
| 423 | /* Error */ |
| 424 | h3->err = H3_FRAME_UNEXPECTED; |
| 425 | return 0; |
| 426 | } |
Amaury Denoyelle | 3db98e9 | 2022-05-13 15:41:04 +0200 | [diff] [blame] | 427 | ncb_advance(rxbuf, flen); |
| 428 | h3_uqs->qcs->rx.offset += flen; |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 429 | } |
| 430 | |
Amaury Denoyelle | a3f222d | 2021-12-06 11:24:00 +0100 | [diff] [blame] | 431 | /* Handle the case where remaining data are present in the buffer. This |
| 432 | * can happen if there is an incomplete frame. In this case, subscribe |
| 433 | * on the lower layer to restart receive operation. |
Amaury Denoyelle | deed777 | 2021-12-03 11:36:46 +0100 | [diff] [blame] | 434 | */ |
Amaury Denoyelle | 3db98e9 | 2022-05-13 15:41:04 +0200 | [diff] [blame] | 435 | if (ncb_data(rxbuf, 0)) |
Amaury Denoyelle | a3f222d | 2021-12-06 11:24:00 +0100 | [diff] [blame] | 436 | qcs_subscribe(h3_uqs->qcs, SUB_RETRY_RECV, &h3_uqs->wait_event); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 437 | |
| 438 | return 1; |
| 439 | } |
| 440 | |
Amaury Denoyelle | a587136 | 2021-10-07 16:26:12 +0200 | [diff] [blame] | 441 | /* Returns buffer for data sending. |
| 442 | * May be NULL if the allocation failed. |
| 443 | */ |
| 444 | static struct buffer *mux_get_buf(struct qcs *qcs) |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 445 | { |
Amaury Denoyelle | a587136 | 2021-10-07 16:26:12 +0200 | [diff] [blame] | 446 | if (!b_size(&qcs->tx.buf)) |
| 447 | b_alloc(&qcs->tx.buf); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 448 | |
Amaury Denoyelle | a587136 | 2021-10-07 16:26:12 +0200 | [diff] [blame] | 449 | return &qcs->tx.buf; |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 450 | } |
| 451 | |
| 452 | /* Function used to emit stream data from <h3_uqs> control uni-stream */ |
| 453 | static int h3_control_send(struct h3_uqs *h3_uqs, void *ctx) |
| 454 | { |
| 455 | int ret; |
| 456 | struct h3 *h3 = ctx; |
| 457 | unsigned char data[(2 + 3) * 2 * QUIC_VARINT_MAX_SIZE]; /* enough for 3 settings */ |
Amaury Denoyelle | a587136 | 2021-10-07 16:26:12 +0200 | [diff] [blame] | 458 | struct buffer pos, *res; |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 459 | |
| 460 | ret = 0; |
Amaury Denoyelle | a587136 | 2021-10-07 16:26:12 +0200 | [diff] [blame] | 461 | pos = b_make((char *)data, sizeof(data), 0, 0); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 462 | if (!(h3->flags & H3_CF_SETTINGS_SENT)) { |
| 463 | struct qcs *qcs = h3_uqs->qcs; |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 464 | size_t frm_len; |
| 465 | |
| 466 | frm_len = quic_int_getsize(H3_SETTINGS_QPACK_MAX_TABLE_CAPACITY) + |
| 467 | quic_int_getsize(h3_settings_qpack_max_table_capacity) + |
| 468 | quic_int_getsize(H3_SETTINGS_QPACK_BLOCKED_STREAMS) + |
| 469 | quic_int_getsize(h3_settings_qpack_blocked_streams); |
| 470 | if (h3_settings_max_field_section_size) { |
| 471 | frm_len += quic_int_getsize(H3_SETTINGS_MAX_FIELD_SECTION_SIZE) + |
| 472 | quic_int_getsize(h3_settings_max_field_section_size); |
| 473 | } |
| 474 | |
Amaury Denoyelle | a587136 | 2021-10-07 16:26:12 +0200 | [diff] [blame] | 475 | b_quic_enc_int(&pos, H3_UNI_STRM_TP_CONTROL_STREAM); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 476 | /* Build a SETTINGS frame */ |
Amaury Denoyelle | a587136 | 2021-10-07 16:26:12 +0200 | [diff] [blame] | 477 | b_quic_enc_int(&pos, H3_FT_SETTINGS); |
| 478 | b_quic_enc_int(&pos, frm_len); |
| 479 | b_quic_enc_int(&pos, H3_SETTINGS_QPACK_MAX_TABLE_CAPACITY); |
| 480 | b_quic_enc_int(&pos, h3_settings_qpack_max_table_capacity); |
| 481 | b_quic_enc_int(&pos, H3_SETTINGS_QPACK_BLOCKED_STREAMS); |
| 482 | b_quic_enc_int(&pos, h3_settings_qpack_blocked_streams); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 483 | if (h3_settings_max_field_section_size) { |
Amaury Denoyelle | a587136 | 2021-10-07 16:26:12 +0200 | [diff] [blame] | 484 | b_quic_enc_int(&pos, H3_SETTINGS_MAX_FIELD_SECTION_SIZE); |
| 485 | b_quic_enc_int(&pos, h3_settings_max_field_section_size); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 486 | } |
Amaury Denoyelle | a587136 | 2021-10-07 16:26:12 +0200 | [diff] [blame] | 487 | |
| 488 | res = mux_get_buf(qcs); |
| 489 | if (b_room(res) < b_data(&pos)) { |
| 490 | // TODO the mux should be put in blocked state, with |
| 491 | // the stream in state waiting for settings to be sent |
| 492 | ABORT_NOW(); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 493 | } |
| 494 | |
Amaury Denoyelle | a587136 | 2021-10-07 16:26:12 +0200 | [diff] [blame] | 495 | ret = b_force_xfer(res, &pos, b_data(&pos)); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 496 | if (ret > 0) { |
| 497 | h3->flags |= H3_CF_SETTINGS_SENT; |
Amaury Denoyelle | a587136 | 2021-10-07 16:26:12 +0200 | [diff] [blame] | 498 | if (!(qcs->qcc->wait_event.events & SUB_RETRY_SEND)) |
| 499 | tasklet_wakeup(qcs->qcc->wait_event.tasklet); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 500 | } |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 501 | } |
| 502 | |
| 503 | return ret; |
| 504 | } |
| 505 | |
Amaury Denoyelle | 15b0961 | 2021-08-24 16:20:27 +0200 | [diff] [blame] | 506 | static int h3_resp_headers_send(struct qcs *qcs, struct htx *htx) |
| 507 | { |
| 508 | struct buffer outbuf; |
| 509 | struct buffer headers_buf = BUF_NULL; |
| 510 | struct buffer *res; |
| 511 | struct http_hdr list[global.tune.max_http_hdr]; |
| 512 | struct htx_sl *sl; |
| 513 | struct htx_blk *blk; |
| 514 | enum htx_blk_type type; |
| 515 | int frame_length_size; /* size in bytes of frame length varint field */ |
| 516 | int ret = 0; |
| 517 | int hdr; |
| 518 | int status = 0; |
| 519 | |
| 520 | sl = NULL; |
| 521 | hdr = 0; |
| 522 | for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) { |
| 523 | type = htx_get_blk_type(blk); |
| 524 | |
| 525 | if (type == HTX_BLK_UNUSED) |
| 526 | continue; |
| 527 | |
| 528 | if (type == HTX_BLK_EOH) |
| 529 | break; |
| 530 | |
| 531 | if (type == HTX_BLK_RES_SL) { |
| 532 | /* start-line -> HEADERS h3 frame */ |
| 533 | BUG_ON(sl); |
| 534 | sl = htx_get_blk_ptr(htx, blk); |
| 535 | /* TODO should be on h3 layer */ |
| 536 | status = sl->info.res.status; |
| 537 | } |
| 538 | else if (type == HTX_BLK_HDR) { |
| 539 | list[hdr].n = htx_get_blk_name(htx, blk); |
| 540 | list[hdr].v = htx_get_blk_value(htx, blk); |
| 541 | hdr++; |
| 542 | } |
| 543 | else { |
| 544 | ABORT_NOW(); |
| 545 | goto err; |
| 546 | } |
| 547 | } |
| 548 | |
| 549 | BUG_ON(!sl); |
| 550 | |
| 551 | list[hdr].n = ist(""); |
| 552 | |
Amaury Denoyelle | d3d97c6 | 2021-10-05 11:45:58 +0200 | [diff] [blame] | 553 | res = mux_get_buf(qcs); |
Amaury Denoyelle | 15b0961 | 2021-08-24 16:20:27 +0200 | [diff] [blame] | 554 | |
| 555 | /* At least 5 bytes to store frame type + length as a varint max size */ |
| 556 | if (b_room(res) < 5) |
| 557 | ABORT_NOW(); |
| 558 | |
| 559 | b_reset(&outbuf); |
| 560 | outbuf = b_make(b_tail(res), b_contig_space(res), 0, 0); |
| 561 | /* Start the headers after frame type + length */ |
| 562 | headers_buf = b_make(b_head(res) + 5, b_size(res) - 5, 0, 0); |
| 563 | |
| 564 | if (qpack_encode_field_section_line(&headers_buf)) |
| 565 | ABORT_NOW(); |
| 566 | if (qpack_encode_int_status(&headers_buf, status)) |
| 567 | ABORT_NOW(); |
| 568 | |
| 569 | for (hdr = 0; hdr < sizeof(list) / sizeof(list[0]); ++hdr) { |
| 570 | if (isteq(list[hdr].n, ist(""))) |
| 571 | break; |
| 572 | |
Amaury Denoyelle | ffafb3d | 2022-02-15 16:10:42 +0100 | [diff] [blame] | 573 | /* draft-ietf-quic-http34 4.1. HTTP Message Exchanges |
| 574 | * Transfer codings (see Section 6.1 of [HTTP11]) are not |
| 575 | * defined for HTTP/3; the Transfer-Encoding header field MUST |
| 576 | * NOT be used. |
| 577 | */ |
| 578 | if (isteq(list[hdr].n, ist("transfer-encoding"))) |
| 579 | continue; |
| 580 | |
Amaury Denoyelle | 15b0961 | 2021-08-24 16:20:27 +0200 | [diff] [blame] | 581 | if (qpack_encode_header(&headers_buf, list[hdr].n, list[hdr].v)) |
| 582 | ABORT_NOW(); |
| 583 | } |
| 584 | |
| 585 | /* Now that all headers are encoded, we are certain that res buffer is |
| 586 | * big enough |
| 587 | */ |
| 588 | frame_length_size = quic_int_getsize(b_data(&headers_buf)); |
| 589 | res->head += 4 - frame_length_size; |
| 590 | b_putchr(res, 0x01); /* h3 HEADERS frame type */ |
| 591 | if (!b_quic_enc_int(res, b_data(&headers_buf))) |
| 592 | ABORT_NOW(); |
| 593 | b_add(res, b_data(&headers_buf)); |
| 594 | |
| 595 | ret = 0; |
| 596 | blk = htx_get_head_blk(htx); |
| 597 | while (blk) { |
| 598 | type = htx_get_blk_type(blk); |
| 599 | ret += htx_get_blksz(blk); |
| 600 | blk = htx_remove_blk(htx, blk); |
| 601 | if (type == HTX_BLK_EOH) |
| 602 | break; |
| 603 | } |
| 604 | |
| 605 | return ret; |
| 606 | |
| 607 | err: |
| 608 | return 0; |
| 609 | } |
| 610 | |
Amaury Denoyelle | 8e2a998 | 2021-08-24 16:24:37 +0200 | [diff] [blame] | 611 | /* Returns the total of bytes sent. */ |
| 612 | static int h3_resp_data_send(struct qcs *qcs, struct buffer *buf, size_t count) |
| 613 | { |
| 614 | struct buffer outbuf; |
| 615 | struct buffer *res; |
| 616 | size_t total = 0; |
| 617 | struct htx *htx; |
Amaury Denoyelle | a543eb1 | 2021-10-06 14:53:13 +0200 | [diff] [blame] | 618 | int bsize, fsize, hsize; |
Amaury Denoyelle | 8e2a998 | 2021-08-24 16:24:37 +0200 | [diff] [blame] | 619 | struct htx_blk *blk; |
| 620 | enum htx_blk_type type; |
| 621 | |
| 622 | htx = htx_from_buf(buf); |
| 623 | |
| 624 | new_frame: |
| 625 | if (!count || htx_is_empty(htx)) |
| 626 | goto end; |
| 627 | |
| 628 | blk = htx_get_head_blk(htx); |
| 629 | type = htx_get_blk_type(blk); |
| 630 | fsize = bsize = htx_get_blksz(blk); |
| 631 | |
| 632 | if (type != HTX_BLK_DATA) |
| 633 | goto end; |
| 634 | |
Amaury Denoyelle | d3d97c6 | 2021-10-05 11:45:58 +0200 | [diff] [blame] | 635 | res = mux_get_buf(qcs); |
Amaury Denoyelle | 8e2a998 | 2021-08-24 16:24:37 +0200 | [diff] [blame] | 636 | |
| 637 | if (fsize > count) |
| 638 | fsize = count; |
| 639 | |
Amaury Denoyelle | a543eb1 | 2021-10-06 14:53:13 +0200 | [diff] [blame] | 640 | /* h3 DATA headers : 1-byte frame type + varint frame length */ |
| 641 | hsize = 1 + QUIC_VARINT_MAX_SIZE; |
Amaury Denoyelle | 8e2a998 | 2021-08-24 16:24:37 +0200 | [diff] [blame] | 642 | |
Amaury Denoyelle | a543eb1 | 2021-10-06 14:53:13 +0200 | [diff] [blame] | 643 | while (1) { |
| 644 | b_reset(&outbuf); |
| 645 | outbuf = b_make(b_tail(res), b_contig_space(res), 0, 0); |
| 646 | if (b_size(&outbuf) > hsize || !b_space_wraps(res)) |
| 647 | break; |
| 648 | b_slow_realign(res, trash.area, b_data(res)); |
| 649 | } |
Amaury Denoyelle | 8e2a998 | 2021-08-24 16:24:37 +0200 | [diff] [blame] | 650 | |
Amaury Denoyelle | 84ea8dc | 2021-12-03 14:40:01 +0100 | [diff] [blame] | 651 | /* Not enough room for headers and at least one data byte, block the |
| 652 | * stream. It is expected that the conn-stream layer will subscribe on |
| 653 | * SEND. |
Amaury Denoyelle | a543eb1 | 2021-10-06 14:53:13 +0200 | [diff] [blame] | 654 | */ |
Amaury Denoyelle | 84ea8dc | 2021-12-03 14:40:01 +0100 | [diff] [blame] | 655 | if (b_size(&outbuf) <= hsize) { |
| 656 | qcs->flags |= QC_SF_BLK_MROOM; |
| 657 | goto end; |
| 658 | } |
Amaury Denoyelle | 8e2a998 | 2021-08-24 16:24:37 +0200 | [diff] [blame] | 659 | |
Amaury Denoyelle | a543eb1 | 2021-10-06 14:53:13 +0200 | [diff] [blame] | 660 | if (b_size(&outbuf) < hsize + fsize) |
| 661 | fsize = b_size(&outbuf) - hsize; |
| 662 | BUG_ON(fsize <= 0); |
Amaury Denoyelle | 8e2a998 | 2021-08-24 16:24:37 +0200 | [diff] [blame] | 663 | |
Amaury Denoyelle | a543eb1 | 2021-10-06 14:53:13 +0200 | [diff] [blame] | 664 | b_putchr(&outbuf, 0x00); /* h3 frame type = DATA */ |
| 665 | b_quic_enc_int(&outbuf, fsize); /* h3 frame length */ |
| 666 | |
Amaury Denoyelle | 8e2a998 | 2021-08-24 16:24:37 +0200 | [diff] [blame] | 667 | b_putblk(&outbuf, htx_get_blk_ptr(htx, blk), fsize); |
Amaury Denoyelle | a543eb1 | 2021-10-06 14:53:13 +0200 | [diff] [blame] | 668 | total += fsize; |
Amaury Denoyelle | 8e2a998 | 2021-08-24 16:24:37 +0200 | [diff] [blame] | 669 | count -= fsize; |
| 670 | |
| 671 | if (fsize == bsize) |
| 672 | htx_remove_blk(htx, blk); |
| 673 | else |
| 674 | htx_cut_data_blk(htx, blk, fsize); |
| 675 | |
Amaury Denoyelle | a543eb1 | 2021-10-06 14:53:13 +0200 | [diff] [blame] | 676 | /* commit the buffer */ |
Amaury Denoyelle | 8e2a998 | 2021-08-24 16:24:37 +0200 | [diff] [blame] | 677 | b_add(res, b_data(&outbuf)); |
| 678 | goto new_frame; |
| 679 | |
| 680 | end: |
| 681 | return total; |
| 682 | } |
| 683 | |
Amaury Denoyelle | 26dfd90 | 2021-08-24 16:33:53 +0200 | [diff] [blame] | 684 | size_t h3_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags) |
| 685 | { |
| 686 | size_t total = 0; |
Christopher Faulet | db90f2a | 2022-03-22 16:06:25 +0100 | [diff] [blame] | 687 | struct qcs *qcs = __cs_mux(cs); |
Amaury Denoyelle | 26dfd90 | 2021-08-24 16:33:53 +0200 | [diff] [blame] | 688 | struct htx *htx; |
| 689 | enum htx_blk_type btype; |
| 690 | struct htx_blk *blk; |
| 691 | uint32_t bsize; |
| 692 | int32_t idx; |
| 693 | int ret; |
| 694 | |
Amaury Denoyelle | d8769d1 | 2022-03-25 15:28:33 +0100 | [diff] [blame] | 695 | h3_debug_printf(stderr, "%s\n", __func__); |
Amaury Denoyelle | deed777 | 2021-12-03 11:36:46 +0100 | [diff] [blame] | 696 | |
Amaury Denoyelle | 26dfd90 | 2021-08-24 16:33:53 +0200 | [diff] [blame] | 697 | htx = htx_from_buf(buf); |
| 698 | |
Amaury Denoyelle | 84ea8dc | 2021-12-03 14:40:01 +0100 | [diff] [blame] | 699 | while (count && !htx_is_empty(htx) && !(qcs->flags & QC_SF_BLK_MROOM)) { |
Amaury Denoyelle | 26dfd90 | 2021-08-24 16:33:53 +0200 | [diff] [blame] | 700 | idx = htx_get_head(htx); |
| 701 | blk = htx_get_blk(htx, idx); |
| 702 | btype = htx_get_blk_type(blk); |
| 703 | bsize = htx_get_blksz(blk); |
| 704 | |
| 705 | /* Not implemented : QUIC on backend side */ |
| 706 | BUG_ON(btype == HTX_BLK_REQ_SL); |
| 707 | |
| 708 | switch (btype) { |
| 709 | case HTX_BLK_RES_SL: |
Amaury Denoyelle | 15b0961 | 2021-08-24 16:20:27 +0200 | [diff] [blame] | 710 | /* start-line -> HEADERS h3 frame */ |
| 711 | ret = h3_resp_headers_send(qcs, htx); |
| 712 | if (ret > 0) { |
| 713 | total += ret; |
| 714 | count -= ret; |
| 715 | if (ret < bsize) |
| 716 | goto out; |
| 717 | } |
| 718 | break; |
Amaury Denoyelle | 26dfd90 | 2021-08-24 16:33:53 +0200 | [diff] [blame] | 719 | |
| 720 | case HTX_BLK_DATA: |
Amaury Denoyelle | 8e2a998 | 2021-08-24 16:24:37 +0200 | [diff] [blame] | 721 | ret = h3_resp_data_send(qcs, buf, count); |
| 722 | if (ret > 0) { |
| 723 | htx = htx_from_buf(buf); |
| 724 | total += ret; |
| 725 | count -= ret; |
| 726 | if (ret < bsize) |
| 727 | goto out; |
| 728 | } |
| 729 | break; |
Amaury Denoyelle | 26dfd90 | 2021-08-24 16:33:53 +0200 | [diff] [blame] | 730 | |
| 731 | case HTX_BLK_TLR: |
| 732 | case HTX_BLK_EOT: |
| 733 | /* TODO trailers */ |
| 734 | |
| 735 | default: |
| 736 | htx_remove_blk(htx, blk); |
| 737 | total += bsize; |
| 738 | count -= bsize; |
| 739 | break; |
| 740 | } |
| 741 | } |
| 742 | |
Amaury Denoyelle | c2025c1 | 2021-12-03 15:03:36 +0100 | [diff] [blame] | 743 | if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) |
| 744 | qcs->flags |= QC_SF_FIN_STREAM; |
| 745 | |
Amaury Denoyelle | 26dfd90 | 2021-08-24 16:33:53 +0200 | [diff] [blame] | 746 | out: |
Amaury Denoyelle | a543eb1 | 2021-10-06 14:53:13 +0200 | [diff] [blame] | 747 | if (total) { |
| 748 | if (!(qcs->qcc->wait_event.events & SUB_RETRY_SEND)) |
| 749 | tasklet_wakeup(qcs->qcc->wait_event.tasklet); |
| 750 | } |
| 751 | |
Amaury Denoyelle | 26dfd90 | 2021-08-24 16:33:53 +0200 | [diff] [blame] | 752 | return total; |
Amaury Denoyelle | f52151d | 2021-08-24 16:11:18 +0200 | [diff] [blame] | 753 | } |
| 754 | |
Amaury Denoyelle | 67e92d3 | 2022-04-27 18:04:01 +0200 | [diff] [blame] | 755 | static int h3_attach(struct qcs *qcs) |
| 756 | { |
| 757 | struct h3s *h3s; |
| 758 | |
| 759 | h3s = pool_alloc(pool_head_h3s); |
| 760 | if (!h3s) |
| 761 | return 1; |
| 762 | |
| 763 | qcs->ctx = h3s; |
Amaury Denoyelle | 48f01bd | 2022-04-27 15:37:20 +0200 | [diff] [blame] | 764 | h3s->demux_frame_len = 0; |
| 765 | h3s->demux_frame_type = 0; |
| 766 | |
Amaury Denoyelle | 67e92d3 | 2022-04-27 18:04:01 +0200 | [diff] [blame] | 767 | return 0; |
| 768 | } |
| 769 | |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 770 | /* Finalize the initialization of remotely initiated uni-stream <qcs>. |
| 771 | * Return 1 if succeeded, 0 if not. In this latter case, set the ->err h3 error |
| 772 | * to inform the QUIC mux layer of the encountered error. |
| 773 | */ |
| 774 | static int h3_attach_ruqs(struct qcs *qcs, void *ctx) |
| 775 | { |
| 776 | uint64_t strm_type; |
| 777 | struct h3 *h3 = ctx; |
Amaury Denoyelle | 3db98e9 | 2022-05-13 15:41:04 +0200 | [diff] [blame] | 778 | struct ncbuf *rxbuf = &qcs->rx.ncbuf; |
| 779 | struct buffer b; |
| 780 | size_t len = 0; |
| 781 | |
| 782 | b = h3_b_dup(rxbuf); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 783 | |
| 784 | /* First octets: the uni-stream type */ |
Amaury Denoyelle | 3db98e9 | 2022-05-13 15:41:04 +0200 | [diff] [blame] | 785 | if (!b_quic_dec_int(&strm_type, &b, &len) || strm_type > H3_UNI_STRM_TP_MAX) |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 786 | return 0; |
| 787 | |
Amaury Denoyelle | 3db98e9 | 2022-05-13 15:41:04 +0200 | [diff] [blame] | 788 | ncb_advance(rxbuf, len); |
| 789 | qcs->rx.offset += len; |
| 790 | |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 791 | /* Note that for all the uni-streams below, this is an error to receive two times the |
| 792 | * same type of uni-stream (even for Push stream which is not supported at this time. |
| 793 | */ |
| 794 | switch (strm_type) { |
| 795 | case H3_UNI_STRM_TP_CONTROL_STREAM: |
| 796 | if (h3->rctrl.qcs) { |
| 797 | h3->err = H3_STREAM_CREATION_ERROR; |
| 798 | return 0; |
| 799 | } |
| 800 | |
| 801 | h3->rctrl.qcs = qcs; |
| 802 | h3->rctrl.cb = h3_control_recv; |
Amaury Denoyelle | a3f222d | 2021-12-06 11:24:00 +0100 | [diff] [blame] | 803 | qcs_subscribe(qcs, SUB_RETRY_RECV, &h3->rctrl.wait_event); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 804 | break; |
| 805 | case H3_UNI_STRM_TP_PUSH_STREAM: |
| 806 | /* NOT SUPPORTED */ |
| 807 | break; |
| 808 | case H3_UNI_STRM_TP_QPACK_ENCODER: |
| 809 | if (h3->rqpack_enc.qcs) { |
| 810 | h3->err = H3_STREAM_CREATION_ERROR; |
| 811 | return 0; |
| 812 | } |
| 813 | |
| 814 | h3->rqpack_enc.qcs = qcs; |
| 815 | h3->rqpack_enc.cb = qpack_decode_enc; |
Amaury Denoyelle | a3f222d | 2021-12-06 11:24:00 +0100 | [diff] [blame] | 816 | qcs_subscribe(qcs, SUB_RETRY_RECV, &h3->rqpack_enc.wait_event); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 817 | break; |
| 818 | case H3_UNI_STRM_TP_QPACK_DECODER: |
| 819 | if (h3->rqpack_dec.qcs) { |
| 820 | h3->err = H3_STREAM_CREATION_ERROR; |
| 821 | return 0; |
| 822 | } |
| 823 | |
| 824 | h3->rqpack_dec.qcs = qcs; |
| 825 | h3->rqpack_dec.cb = qpack_decode_dec; |
Amaury Denoyelle | a3f222d | 2021-12-06 11:24:00 +0100 | [diff] [blame] | 826 | qcs_subscribe(qcs, SUB_RETRY_RECV, &h3->rqpack_dec.wait_event); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 827 | break; |
| 828 | default: |
| 829 | /* Error */ |
| 830 | h3->err = H3_STREAM_CREATION_ERROR; |
| 831 | return 0; |
| 832 | } |
| 833 | |
| 834 | return 1; |
| 835 | } |
| 836 | |
Amaury Denoyelle | 67e92d3 | 2022-04-27 18:04:01 +0200 | [diff] [blame] | 837 | static void h3_detach(struct qcs *qcs) |
| 838 | { |
| 839 | struct h3s *h3s = qcs->ctx; |
| 840 | pool_free(pool_head_h3s, h3s); |
| 841 | qcs->ctx = NULL; |
| 842 | } |
| 843 | |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 844 | static int h3_finalize(void *ctx) |
| 845 | { |
| 846 | struct h3 *h3 = ctx; |
| 847 | |
Amaury Denoyelle | b788054 | 2022-02-09 10:28:53 +0100 | [diff] [blame] | 848 | h3->lctrl.qcs = qcs_new(h3->qcc, 0x3, QCS_SRV_UNI); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 849 | if (!h3->lctrl.qcs) |
| 850 | return 0; |
| 851 | |
| 852 | /* Wakeup ->lctrl uni-stream */ |
Frédéric Lécaille | e16f0bd | 2021-08-23 09:50:29 +0200 | [diff] [blame] | 853 | h3_control_send(&h3->lctrl, h3); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 854 | |
| 855 | return 1; |
| 856 | } |
| 857 | |
| 858 | /* Tasklet dedicated to h3 incoming uni-streams */ |
| 859 | static struct task *h3_uqs_task(struct task *t, void *ctx, unsigned int state) |
| 860 | { |
| 861 | struct h3_uqs *h3_uqs = ctx; |
| 862 | struct h3 *h3 = h3_uqs->qcs->qcc->ctx; |
| 863 | |
| 864 | h3_uqs->cb(h3_uqs, h3); |
| 865 | return NULL; |
| 866 | } |
| 867 | |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 868 | /* Release all the tasklet attached to <h3_uqs> uni-stream */ |
| 869 | static inline void h3_uqs_tasklet_release(struct h3_uqs *h3_uqs) |
| 870 | { |
| 871 | struct tasklet *t = h3_uqs->wait_event.tasklet; |
| 872 | |
| 873 | if (t) |
| 874 | tasklet_free(t); |
| 875 | } |
| 876 | |
| 877 | /* Release all the tasklet attached to <h3> uni-streams */ |
| 878 | static void h3_uqs_tasklets_release(struct h3 *h3) |
| 879 | { |
| 880 | h3_uqs_tasklet_release(&h3->rqpack_enc); |
| 881 | h3_uqs_tasklet_release(&h3->rqpack_dec); |
| 882 | h3_uqs_tasklet_release(&h3->rctrl); |
| 883 | } |
| 884 | |
| 885 | /* Tasklet dedicated to h3 outgoing uni-streams */ |
| 886 | __maybe_unused |
| 887 | static struct task *h3_uqs_send_task(struct task *t, void *ctx, unsigned int state) |
| 888 | { |
| 889 | struct h3_uqs *h3_uqs = ctx; |
| 890 | struct h3 *h3 = h3_uqs->qcs->qcc->ctx; |
| 891 | |
| 892 | h3_uqs->cb(h3_uqs, h3); |
| 893 | return NULL; |
| 894 | } |
| 895 | |
Ilya Shipitsin | bd6b4be | 2021-10-15 16:18:21 +0500 | [diff] [blame] | 896 | /* Initialize <h3_uqs> uni-stream with <t> as tasklet */ |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 897 | static int h3_uqs_init(struct h3_uqs *h3_uqs, struct h3 *h3, |
| 898 | int (*cb)(struct h3_uqs *h3_uqs, void *ctx), |
| 899 | struct task *(*t)(struct task *, void *, unsigned int)) |
| 900 | { |
| 901 | h3_uqs->qcs = NULL; |
| 902 | h3_uqs->cb = cb; |
| 903 | h3_uqs->wait_event.tasklet = tasklet_new(); |
| 904 | if (!h3_uqs->wait_event.tasklet) |
| 905 | return 0; |
| 906 | |
| 907 | h3_uqs->wait_event.tasklet->process = t; |
| 908 | h3_uqs->wait_event.tasklet->context = h3_uqs; |
Frédéric Lécaille | 000162e | 2022-04-01 09:04:57 +0200 | [diff] [blame] | 909 | h3_uqs->wait_event.events = 0; |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 910 | return 1; |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 911 | } |
| 912 | |
| 913 | static inline void h3_uqs_release(struct h3_uqs *h3_uqs) |
| 914 | { |
| 915 | if (h3_uqs->qcs) |
Amaury Denoyelle | dccbd73 | 2022-03-29 18:36:59 +0200 | [diff] [blame] | 916 | qcs_free(h3_uqs->qcs); |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 917 | } |
| 918 | |
| 919 | static inline void h3_uqs_release_all(struct h3 *h3) |
| 920 | { |
| 921 | h3_uqs_tasklet_release(&h3->lctrl); |
| 922 | h3_uqs_release(&h3->lctrl); |
| 923 | h3_uqs_tasklet_release(&h3->lqpack_enc); |
| 924 | h3_uqs_release(&h3->lqpack_enc); |
| 925 | h3_uqs_tasklet_release(&h3->lqpack_dec); |
| 926 | h3_uqs_release(&h3->lqpack_dec); |
| 927 | } |
| 928 | |
| 929 | /* Initialize the HTTP/3 context for <qcc> mux. |
| 930 | * Return 1 if succeeded, 0 if not. |
| 931 | */ |
| 932 | static int h3_init(struct qcc *qcc) |
| 933 | { |
| 934 | struct h3 *h3; |
| 935 | |
| 936 | h3 = pool_alloc(pool_head_h3); |
| 937 | if (!h3) |
| 938 | goto fail_no_h3; |
| 939 | |
| 940 | h3->qcc = qcc; |
| 941 | h3->err = H3_NO_ERROR; |
| 942 | h3->flags = 0; |
| 943 | |
| 944 | if (!h3_uqs_init(&h3->rqpack_enc, h3, NULL, h3_uqs_task) || |
| 945 | !h3_uqs_init(&h3->rqpack_dec, h3, NULL, h3_uqs_task) || |
| 946 | !h3_uqs_init(&h3->rctrl, h3, h3_control_recv, h3_uqs_task)) |
| 947 | goto fail_no_h3_ruqs; |
| 948 | |
| 949 | if (!h3_uqs_init(&h3->lctrl, h3, h3_control_send, h3_uqs_task) || |
| 950 | !h3_uqs_init(&h3->lqpack_enc, h3, NULL, h3_uqs_task) || |
| 951 | !h3_uqs_init(&h3->lqpack_dec, h3, NULL, h3_uqs_task)) |
| 952 | goto fail_no_h3_luqs; |
| 953 | |
| 954 | qcc->ctx = h3; |
| 955 | LIST_INIT(&h3->buf_wait.list); |
| 956 | |
| 957 | return 1; |
| 958 | |
| 959 | fail_no_h3_ruqs: |
| 960 | h3_uqs_release_all(h3); |
| 961 | fail_no_h3_luqs: |
| 962 | h3_uqs_tasklets_release(h3); |
| 963 | pool_free(pool_head_h3, h3); |
| 964 | fail_no_h3: |
| 965 | return 0; |
| 966 | } |
| 967 | |
Amaury Denoyelle | 8347f27 | 2022-03-29 14:46:55 +0200 | [diff] [blame] | 968 | static void h3_release(void *ctx) |
| 969 | { |
| 970 | struct h3 *h3 = ctx; |
| 971 | |
| 972 | h3_uqs_release_all(h3); |
| 973 | h3_uqs_tasklets_release(h3); |
| 974 | pool_free(pool_head_h3, h3); |
| 975 | } |
| 976 | |
Amaury Denoyelle | 198d35f | 2022-04-01 17:56:58 +0200 | [diff] [blame] | 977 | /* Check if the H3 connection can still be considered as active. |
| 978 | * |
| 979 | * Return true if active else false. |
| 980 | */ |
| 981 | static int h3_is_active(const struct qcc *qcc, void *ctx) |
| 982 | { |
| 983 | if (qcc->strms[QCS_CLT_BIDI].nb_streams) |
| 984 | return 1; |
| 985 | |
| 986 | return 0; |
| 987 | } |
| 988 | |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 989 | /* HTTP/3 application layer operations */ |
| 990 | const struct qcc_app_ops h3_ops = { |
| 991 | .init = h3_init, |
Amaury Denoyelle | 67e92d3 | 2022-04-27 18:04:01 +0200 | [diff] [blame] | 992 | .attach = h3_attach, |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 993 | .attach_ruqs = h3_attach_ruqs, |
| 994 | .decode_qcs = h3_decode_qcs, |
Amaury Denoyelle | abbe91e | 2021-11-12 16:09:29 +0100 | [diff] [blame] | 995 | .snd_buf = h3_snd_buf, |
Amaury Denoyelle | 67e92d3 | 2022-04-27 18:04:01 +0200 | [diff] [blame] | 996 | .detach = h3_detach, |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 997 | .finalize = h3_finalize, |
Amaury Denoyelle | 198d35f | 2022-04-01 17:56:58 +0200 | [diff] [blame] | 998 | .is_active = h3_is_active, |
Amaury Denoyelle | 8347f27 | 2022-03-29 14:46:55 +0200 | [diff] [blame] | 999 | .release = h3_release, |
Frédéric Lécaille | ccac11f | 2021-03-03 16:09:02 +0100 | [diff] [blame] | 1000 | }; |