session udp: fix transport flags and migration
[vpp.git] / src / plugins / quic / quic.c
1 /*
2  * Copyright (c) 2019 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #include <sys/socket.h>
17
18 #include <vnet/session/application.h>
19 #include <vnet/session/transport.h>
20 #include <vnet/session/session.h>
21 #include <vlib/unix/plugin.h>
22 #include <vpp/app/version.h>
23
24 #include <vppinfra/lock.h>
25
26 #include <quic/quic.h>
27 #include <quic/certs.h>
28 #include <quic/error.h>
29
30 #include <quicly/constants.h>
31 #include <quicly/defaults.h>
32 #include <picotls.h>
33
34 #include <quic/quic_crypto.h>
35
36 extern quicly_crypto_engine_t quic_crypto_engine;
37
38 static char *quic_error_strings[] = {
39 #define quic_error(n,s) s,
40 #include <quic/quic_error.def>
41 #undef quic_error
42 };
43
44 #define DEFAULT_MAX_PACKETS_PER_KEY 16777216
45
46 quic_main_t quic_main;
47 static void quic_update_timer (quic_ctx_t * ctx);
48 static void quic_check_quic_session_connected (quic_ctx_t * ctx);
49 static int quic_reset_connection (u64 udp_session_handle,
50                                   quic_rx_packet_ctx_t * pctx);
51 static void quic_proto_on_close (u32 ctx_index, u32 thread_index);
52
53 static quicly_stream_open_t on_stream_open;
54 static quicly_closed_by_peer_t on_closed_by_peer;
55 static quicly_now_t quicly_vpp_now_cb;
56
57 /* Crypto contexts */
58
59 static inline void
60 quic_crypto_context_make_key_from_ctx (clib_bihash_kv_24_8_t * kv,
61                                        quic_ctx_t * ctx)
62 {
63   application_t *app = application_get (ctx->parent_app_id);
64   kv->key[0] = ((u64) ctx->ckpair_index) << 32 | (u64) ctx->crypto_engine;
65   kv->key[1] = app->sm_properties.rx_fifo_size - 1;
66   kv->key[2] = app->sm_properties.tx_fifo_size - 1;
67 }
68
69 static inline void
70 quic_crypto_context_make_key_from_crctx (clib_bihash_kv_24_8_t * kv,
71                                          crypto_context_t * crctx)
72 {
73   quic_crypto_context_data_t *data =
74     (quic_crypto_context_data_t *) crctx->data;
75   kv->key[0] = ((u64) crctx->ckpair_index) << 32 | (u64) crctx->crypto_engine;
76   kv->key[1] = data->quicly_ctx.transport_params.max_stream_data.bidi_local;
77   kv->key[2] = data->quicly_ctx.transport_params.max_stream_data.bidi_remote;
78 }
79
80 static void
81 quic_crypto_context_free_if_needed (crypto_context_t * crctx, u8 thread_index)
82 {
83   quic_main_t *qm = &quic_main;
84   clib_bihash_kv_24_8_t kv;
85   if (crctx->n_subscribers)
86     return;
87   quic_crypto_context_make_key_from_crctx (&kv, crctx);
88   clib_bihash_add_del_24_8 (&qm->wrk_ctx[thread_index].crypto_context_hash,
89                             &kv, 0 /* is_add */ );
90   clib_mem_free (crctx->data);
91   pool_put (qm->wrk_ctx[thread_index].crypto_ctx_pool, crctx);
92 }
93
94 static quicly_datagram_t *
95 quic_alloc_packet (quicly_packet_allocator_t * self, size_t payloadsize)
96 {
97   quicly_datagram_t *packet;
98   if ((packet =
99        clib_mem_alloc (sizeof (*packet) + payloadsize +
100                        sizeof (quic_encrypt_cb_ctx))) == NULL)
101     return NULL;
102   packet->data.base =
103     (uint8_t *) packet + sizeof (*packet) + sizeof (quic_encrypt_cb_ctx);
104   quic_encrypt_cb_ctx *encrypt_cb_ctx =
105     (quic_encrypt_cb_ctx *) ((uint8_t *) packet + sizeof (*packet));
106
107   clib_memset (encrypt_cb_ctx, 0, sizeof (*encrypt_cb_ctx));
108   return packet;
109 }
110
111 static void
112 quic_free_packet (quicly_packet_allocator_t * self,
113                   quicly_datagram_t * packet)
114 {
115   clib_mem_free (packet);
116 }
117
118 quicly_packet_allocator_t quic_packet_allocator =
119   { quic_alloc_packet, quic_free_packet };
120
121 static int
122 quic_app_cert_key_pair_delete_callback (app_cert_key_pair_t * ckpair)
123 {
124   quic_main_t *qm = &quic_main;
125   crypto_context_t *crctx;
126   clib_bihash_kv_24_8_t kv;
127   vlib_thread_main_t *vtm = vlib_get_thread_main ();
128   int num_threads = 1 /* main thread */  + vtm->n_threads;
129   int i;
130
131   for (i = 0; i < num_threads; i++)
132     {
133       /* *INDENT-OFF* */
134       pool_foreach (crctx, qm->wrk_ctx[i].crypto_ctx_pool, ({
135         if (crctx->ckpair_index == ckpair->cert_key_index)
136           {
137             quic_crypto_context_make_key_from_crctx (&kv, crctx);
138             clib_bihash_add_del_24_8 (&qm->wrk_ctx[i].crypto_context_hash, &kv, 0 /* is_add */ );
139           }
140       }));
141       /* *INDENT-ON* */
142     }
143   return 0;
144 }
145
146 static crypto_context_t *
147 quic_crypto_context_alloc (u8 thread_index)
148 {
149   quic_main_t *qm = &quic_main;
150   crypto_context_t *crctx;
151   u32 idx;
152
153   pool_get (qm->wrk_ctx[thread_index].crypto_ctx_pool, crctx);
154   clib_memset (crctx, 0, sizeof (*crctx));
155   idx = (crctx - qm->wrk_ctx[thread_index].crypto_ctx_pool);
156   crctx->ctx_index = ((u32) thread_index) << 24 | idx;
157
158   return crctx;
159 }
160
161 static crypto_context_t *
162 quic_crypto_context_get (u32 cr_index, u32 thread_index)
163 {
164   quic_main_t *qm = &quic_main;
165   ASSERT (cr_index >> 24 == thread_index);
166   return pool_elt_at_index (qm->wrk_ctx[thread_index].crypto_ctx_pool,
167                             cr_index & 0x00ffffff);
168 }
169
170 static clib_error_t *
171 quic_list_crypto_context_command_fn (vlib_main_t * vm,
172                                      unformat_input_t * input,
173                                      vlib_cli_command_t * cmd)
174 {
175   quic_main_t *qm = &quic_main;
176   crypto_context_t *crctx;
177   vlib_thread_main_t *vtm = vlib_get_thread_main ();
178   int i, num_threads = 1 /* main thread */  + vtm->n_threads;
179   for (i = 0; i < num_threads; i++)
180     {
181       /* *INDENT-OFF* */
182       pool_foreach (crctx, qm->wrk_ctx[i].crypto_ctx_pool, ({
183         vlib_cli_output (vm, "[%d][Q]%U", i, format_crypto_context, crctx);
184       }));
185       /* *INDENT-ON* */
186     }
187   return 0;
188 }
189
190 static clib_error_t *
191 quic_set_max_packets_per_key_fn (vlib_main_t * vm,
192                                  unformat_input_t * input,
193                                  vlib_cli_command_t * cmd)
194 {
195   quic_main_t *qm = &quic_main;
196   unformat_input_t _line_input, *line_input = &_line_input;
197   u64 tmp;
198
199   if (!unformat_user (input, unformat_line_input, line_input))
200     return 0;
201
202   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
203     {
204       if (unformat (line_input, "%U", unformat_memory_size, &tmp))
205         {
206           qm->max_packets_per_key = tmp;
207         }
208       else
209         return clib_error_return (0, "unknown input '%U'",
210                                   format_unformat_error, line_input);
211     }
212
213   return 0;
214 }
215
216 static void
217 quic_release_crypto_context (u32 crypto_context_index, u8 thread_index)
218 {
219   crypto_context_t *crctx;
220   crctx = quic_crypto_context_get (crypto_context_index, thread_index);
221   crctx->n_subscribers--;
222   quic_crypto_context_free_if_needed (crctx, thread_index);
223 }
224
225 static int
226 quic_init_crypto_context (crypto_context_t * crctx, quic_ctx_t * ctx)
227 {
228   quic_main_t *qm = &quic_main;
229   quicly_context_t *quicly_ctx;
230   ptls_iovec_t key_vec;
231   app_cert_key_pair_t *ckpair;
232   application_t *app;
233   quic_crypto_context_data_t *data;
234   ptls_context_t *ptls_ctx;
235
236   QUIC_DBG (2, "Init quic crctx %d thread %d", crctx->ctx_index,
237             ctx->c_thread_index);
238
239   data = clib_mem_alloc (sizeof (*data));
240   /* picotls depends on data being zeroed */
241   clib_memset (data, 0, sizeof (*data));
242   crctx->data = (void *) data;
243   quicly_ctx = &data->quicly_ctx;
244   ptls_ctx = &data->ptls_ctx;
245
246   ptls_ctx->random_bytes = ptls_openssl_random_bytes;
247   ptls_ctx->get_time = &ptls_get_time;
248   ptls_ctx->key_exchanges = ptls_openssl_key_exchanges;
249   ptls_ctx->cipher_suites = qm->quic_ciphers[ctx->crypto_engine];
250   ptls_ctx->certificates.list = NULL;
251   ptls_ctx->certificates.count = 0;
252   ptls_ctx->esni = NULL;
253   ptls_ctx->on_client_hello = NULL;
254   ptls_ctx->emit_certificate = NULL;
255   ptls_ctx->sign_certificate = NULL;
256   ptls_ctx->verify_certificate = NULL;
257   ptls_ctx->ticket_lifetime = 86400;
258   ptls_ctx->max_early_data_size = 8192;
259   ptls_ctx->hkdf_label_prefix__obsolete = NULL;
260   ptls_ctx->require_dhe_on_psk = 1;
261   ptls_ctx->encrypt_ticket = &qm->session_cache.super;
262   clib_memcpy (quicly_ctx, &quicly_spec_context, sizeof (quicly_context_t));
263
264   quicly_ctx->max_packet_size = QUIC_MAX_PACKET_SIZE;
265   quicly_ctx->max_packets_per_key = qm->max_packets_per_key;
266   quicly_ctx->tls = ptls_ctx;
267   quicly_ctx->stream_open = &on_stream_open;
268   quicly_ctx->closed_by_peer = &on_closed_by_peer;
269   quicly_ctx->now = &quicly_vpp_now_cb;
270   quicly_amend_ptls_context (quicly_ctx->tls);
271
272   quicly_ctx->packet_allocator = &quic_packet_allocator;
273   quicly_ctx->crypto_engine = &quic_crypto_engine;
274   quicly_ctx->transport_params.max_data = QUIC_INT_MAX;
275   quicly_ctx->transport_params.max_streams_uni = (uint64_t) 1 << 60;
276   quicly_ctx->transport_params.max_streams_bidi = (uint64_t) 1 << 60;
277   quicly_ctx->transport_params.max_idle_timeout = qm->connection_timeout;
278
279   app = application_get (ctx->parent_app_id);
280   quicly_ctx->transport_params.max_stream_data.bidi_local =
281     app->sm_properties.rx_fifo_size - 1;
282   quicly_ctx->transport_params.max_stream_data.bidi_remote =
283     app->sm_properties.tx_fifo_size - 1;
284   quicly_ctx->transport_params.max_stream_data.uni = QUIC_INT_MAX;
285
286   if (!app->quic_iv_set)
287     {
288       ptls_openssl_random_bytes (app->quic_iv, QUIC_IV_LEN - 1);
289       app->quic_iv[QUIC_IV_LEN - 1] = 0;
290       app->quic_iv_set = 1;
291     }
292
293   clib_memcpy (data->cid_key, app->quic_iv, QUIC_IV_LEN);
294   key_vec = ptls_iovec_init (data->cid_key, QUIC_IV_LEN);
295   quicly_ctx->cid_encryptor =
296     quicly_new_default_cid_encryptor (&ptls_openssl_bfecb,
297                                       &ptls_openssl_aes128ecb,
298                                       &ptls_openssl_sha256, key_vec);
299
300   ckpair = app_cert_key_pair_get_if_valid (crctx->ckpair_index);
301   if (!ckpair || !ckpair->key || !ckpair->cert)
302     {
303       QUIC_DBG (1, "Wrong ckpair id %d\n", crctx->ckpair_index);
304       return -1;
305     }
306   if (load_bio_private_key (quicly_ctx->tls, (char *) ckpair->key))
307     {
308       QUIC_DBG (1, "failed to read private key from app configuration\n");
309       return -1;
310     }
311   if (load_bio_certificate_chain (quicly_ctx->tls, (char *) ckpair->cert))
312     {
313       QUIC_DBG (1, "failed to load certificate\n");
314       return -1;
315     }
316   return 0;
317
318 }
319
320 static int
321 quic_acquire_crypto_context (quic_ctx_t * ctx)
322 {
323   quic_main_t *qm = &quic_main;
324   crypto_context_t *crctx;
325   clib_bihash_kv_24_8_t kv;
326
327   if (ctx->crypto_engine == CRYPTO_ENGINE_NONE)
328     {
329       QUIC_DBG (2, "No crypto engine specified, using %d",
330                 qm->default_crypto_engine);
331       ctx->crypto_engine = qm->default_crypto_engine;
332     }
333   if (!clib_bitmap_get (qm->available_crypto_engines, ctx->crypto_engine))
334     {
335       QUIC_DBG (1, "Quic does not support crypto engine %d",
336                 ctx->crypto_engine);
337       return VNET_API_ERROR_MISSING_CERT_KEY;
338     }
339
340   /* Check for exisiting crypto ctx */
341   quic_crypto_context_make_key_from_ctx (&kv, ctx);
342   if (clib_bihash_search_24_8
343       (&qm->wrk_ctx[ctx->c_thread_index].crypto_context_hash, &kv, &kv) == 0)
344     {
345       crctx = quic_crypto_context_get (kv.value, ctx->c_thread_index);
346       QUIC_DBG (2, "Found exisiting crypto context %d", kv.value);
347       ctx->crypto_context_index = kv.value;
348       crctx->n_subscribers++;
349       return 0;
350     }
351
352   crctx = quic_crypto_context_alloc (ctx->c_thread_index);
353   ctx->crypto_context_index = crctx->ctx_index;
354   kv.value = crctx->ctx_index;
355   crctx->crypto_engine = ctx->crypto_engine;
356   crctx->ckpair_index = ctx->ckpair_index;
357   if (quic_init_crypto_context (crctx, ctx))
358     goto error;
359   if (vnet_app_add_cert_key_interest (ctx->ckpair_index, qm->app_index))
360     goto error;
361   crctx->n_subscribers++;
362   clib_bihash_add_del_24_8 (&qm->
363                             wrk_ctx[ctx->c_thread_index].crypto_context_hash,
364                             &kv, 1 /* is_add */ );
365   return 0;
366
367 error:
368   quic_crypto_context_free_if_needed (crctx, ctx->c_thread_index);
369   return VNET_API_ERROR_MISSING_CERT_KEY;
370 }
371
372 /*  Helper functions */
373
374 static u32
375 quic_ctx_alloc (u32 thread_index)
376 {
377   quic_main_t *qm = &quic_main;
378   quic_ctx_t *ctx;
379
380   pool_get (qm->ctx_pool[thread_index], ctx);
381
382   clib_memset (ctx, 0, sizeof (quic_ctx_t));
383   ctx->c_thread_index = thread_index;
384   ctx->timer_handle = QUIC_TIMER_HANDLE_INVALID;
385   QUIC_DBG (3, "Allocated quic_ctx %u on thread %u",
386             ctx - qm->ctx_pool[thread_index], thread_index);
387   return ctx - qm->ctx_pool[thread_index];
388 }
389
390 static void
391 quic_ctx_free (quic_ctx_t * ctx)
392 {
393   QUIC_DBG (2, "Free ctx %u %x", ctx->c_thread_index, ctx->c_c_index);
394   u32 thread_index = ctx->c_thread_index;
395   QUIC_ASSERT (ctx->timer_handle == QUIC_TIMER_HANDLE_INVALID);
396   if (CLIB_DEBUG)
397     clib_memset (ctx, 0xfb, sizeof (*ctx));
398   pool_put (quic_main.ctx_pool[thread_index], ctx);
399 }
400
401 static quic_ctx_t *
402 quic_ctx_get (u32 ctx_index, u32 thread_index)
403 {
404   return pool_elt_at_index (quic_main.ctx_pool[thread_index], ctx_index);
405 }
406
407 static quic_ctx_t *
408 quic_ctx_get_if_valid (u32 ctx_index, u32 thread_index)
409 {
410   if (pool_is_free_index (quic_main.ctx_pool[thread_index], ctx_index))
411     return 0;
412   return pool_elt_at_index (quic_main.ctx_pool[thread_index], ctx_index);
413 }
414
415 quic_ctx_t *
416 quic_get_conn_ctx (quicly_conn_t * conn)
417 {
418   u64 conn_data;
419   conn_data = (u64) * quicly_get_data (conn);
420   return quic_ctx_get (conn_data & UINT32_MAX, conn_data >> 32);
421 }
422
423 static void
424 quic_store_conn_ctx (quicly_conn_t * conn, quic_ctx_t * ctx)
425 {
426   *quicly_get_data (conn) =
427     (void *) (((u64) ctx->c_thread_index) << 32 | (u64) ctx->c_c_index);
428 }
429
430 static inline int
431 quic_ctx_is_stream (quic_ctx_t * ctx)
432 {
433   return (ctx->flags & QUIC_F_IS_STREAM);
434 }
435
436 static inline int
437 quic_ctx_is_listener (quic_ctx_t * ctx)
438 {
439   return (ctx->flags & QUIC_F_IS_LISTENER);
440 }
441
442 static inline int
443 quic_ctx_is_conn (quic_ctx_t * ctx)
444 {
445   return !(quic_ctx_is_listener (ctx) || quic_ctx_is_stream (ctx));
446 }
447
448 static session_t *
449 get_stream_session_from_stream (quicly_stream_t * stream)
450 {
451   quic_ctx_t *ctx;
452   quic_stream_data_t *stream_data;
453
454   stream_data = (quic_stream_data_t *) stream->data;
455   ctx = quic_ctx_get (stream_data->ctx_id, stream_data->thread_index);
456   return session_get (ctx->c_s_index, stream_data->thread_index);
457 }
458
459 static inline void
460 quic_make_connection_key (clib_bihash_kv_16_8_t * kv,
461                           const quicly_cid_plaintext_t * id)
462 {
463   kv->key[0] = ((u64) id->master_id) << 32 | (u64) id->thread_id;
464   kv->key[1] = id->node_id;
465 }
466
467 static int
468 quic_sendable_packet_count (session_t * udp_session)
469 {
470   u32 max_enqueue;
471   u32 packet_size = QUIC_MAX_PACKET_SIZE + SESSION_CONN_HDR_LEN;
472   max_enqueue = svm_fifo_max_enqueue (udp_session->tx_fifo);
473   return clib_min (max_enqueue / packet_size, QUIC_SEND_PACKET_VEC_SIZE);
474 }
475
476 static quicly_context_t *
477 quic_get_quicly_ctx_from_ctx (quic_ctx_t * ctx)
478 {
479   crypto_context_t *crctx =
480     quic_crypto_context_get (ctx->crypto_context_index, ctx->c_thread_index);
481   quic_crypto_context_data_t *data =
482     (quic_crypto_context_data_t *) crctx->data;
483   return &data->quicly_ctx;
484 }
485
486 static quicly_context_t *
487 quic_get_quicly_ctx_from_udp (u64 udp_session_handle)
488 {
489   session_t *udp_session = session_get_from_handle (udp_session_handle);
490   quic_ctx_t *ctx =
491     quic_ctx_get (udp_session->opaque, udp_session->thread_index);
492   return quic_get_quicly_ctx_from_ctx (ctx);
493 }
494
495 static inline void
496 quic_set_udp_tx_evt (session_t * udp_session)
497 {
498   int rv = 0;
499   if (svm_fifo_set_event (udp_session->tx_fifo))
500     rv = session_send_io_evt_to_thread (udp_session->tx_fifo,
501                                         SESSION_IO_EVT_TX);
502   if (PREDICT_FALSE (rv))
503     clib_warning ("Event enqueue errored %d", rv);
504 }
505
506 static inline void
507 quic_stop_ctx_timer (quic_ctx_t * ctx)
508 {
509   tw_timer_wheel_1t_3w_1024sl_ov_t *tw;
510   if (ctx->timer_handle == QUIC_TIMER_HANDLE_INVALID)
511     return;
512   tw = &quic_main.wrk_ctx[ctx->c_thread_index].timer_wheel;
513   tw_timer_stop_1t_3w_1024sl_ov (tw, ctx->timer_handle);
514   ctx->timer_handle = QUIC_TIMER_HANDLE_INVALID;
515   QUIC_DBG (4, "Stopping timer for ctx %u", ctx->c_c_index);
516 }
517
518 /* QUIC protocol actions */
519
520 static void
521 quic_ack_rx_data (session_t * stream_session)
522 {
523   u32 max_deq;
524   quic_ctx_t *sctx;
525   svm_fifo_t *f;
526   quicly_stream_t *stream;
527   quic_stream_data_t *stream_data;
528
529   sctx = quic_ctx_get (stream_session->connection_index,
530                        stream_session->thread_index);
531   QUIC_ASSERT (quic_ctx_is_stream (sctx));
532   stream = sctx->stream;
533   stream_data = (quic_stream_data_t *) stream->data;
534
535   f = stream_session->rx_fifo;
536   max_deq = svm_fifo_max_dequeue (f);
537
538   QUIC_ASSERT (stream_data->app_rx_data_len >= max_deq);
539   quicly_stream_sync_recvbuf (stream, stream_data->app_rx_data_len - max_deq);
540   QUIC_DBG (3, "Acking %u bytes", stream_data->app_rx_data_len - max_deq);
541   stream_data->app_rx_data_len = max_deq;
542 }
543
544 static void
545 quic_disconnect_transport (quic_ctx_t * ctx)
546 {
547   QUIC_DBG (2, "Disconnecting transport 0x%lx", ctx->udp_session_handle);
548   vnet_disconnect_args_t a = {
549     .handle = ctx->udp_session_handle,
550     .app_index = quic_main.app_index,
551   };
552
553   if (vnet_disconnect_session (&a))
554     clib_warning ("UDP session 0x%lx disconnect errored",
555                   ctx->udp_session_handle);
556 }
557
558 static void
559 quic_connection_delete (quic_ctx_t * ctx)
560 {
561   clib_bihash_kv_16_8_t kv;
562   quicly_conn_t *conn;
563
564   QUIC_DBG (2, "Deleting connection %u", ctx->c_c_index);
565
566   QUIC_ASSERT (!quic_ctx_is_stream (ctx));
567   quic_stop_ctx_timer (ctx);
568
569   /*  Delete the connection from the connection map */
570   conn = ctx->conn;
571   ctx->conn = NULL;
572   quic_make_connection_key (&kv, quicly_get_master_id (conn));
573   QUIC_DBG (2, "Deleting conn with id %lu %lu from map", kv.key[0],
574             kv.key[1]);
575   clib_bihash_add_del_16_8 (&quic_main.connection_hash, &kv, 0 /* is_add */ );
576
577   quic_disconnect_transport (ctx);
578
579   if (ctx->conn)
580     quicly_free (ctx->conn);
581   session_transport_delete_notify (&ctx->connection);
582 }
583
584 void
585 quic_increment_counter (u8 evt, u8 val)
586 {
587   vlib_main_t *vm = vlib_get_main ();
588   vlib_node_increment_counter (vm, quic_input_node.index, evt, val);
589 }
590
591 /**
592  * Called when quicly return an error
593  * This function interacts tightly with quic_proto_on_close
594  */
595 static void
596 quic_connection_closed (quic_ctx_t * ctx)
597 {
598   QUIC_DBG (2, "QUIC connection %u/%u closed", ctx->c_thread_index,
599             ctx->c_c_index);
600
601   /* TODO if connection is not established, just delete the session? */
602   /* Actually should send connect or accept error */
603
604   switch (ctx->conn_state)
605     {
606     case QUIC_CONN_STATE_READY:
607       /* Error on an opened connection (timeout...)
608          This puts the session in closing state, we should receive a notification
609          when the app has closed its session */
610       session_transport_reset_notify (&ctx->connection);
611       /* This ensures we delete the connection when the app confirms the close */
612       ctx->conn_state = QUIC_CONN_STATE_PASSIVE_CLOSING_QUIC_CLOSED;
613       break;
614     case QUIC_CONN_STATE_PASSIVE_CLOSING:
615       ctx->conn_state = QUIC_CONN_STATE_PASSIVE_CLOSING_QUIC_CLOSED;
616       /* quic_proto_on_close will eventually be called when the app confirms the close
617          , we delete the connection at that point */
618       break;
619     case QUIC_CONN_STATE_PASSIVE_CLOSING_APP_CLOSED:
620       /* App already confirmed close, we can delete the connection */
621       quic_connection_delete (ctx);
622       break;
623     case QUIC_CONN_STATE_OPENED:
624     case QUIC_CONN_STATE_HANDSHAKE:
625     case QUIC_CONN_STATE_ACTIVE_CLOSING:
626       quic_connection_delete (ctx);
627       break;
628     default:
629       QUIC_DBG (0, "BUG %d", ctx->conn_state);
630       break;
631     }
632 }
633
634 static int
635 quic_send_datagram (session_t * udp_session, quicly_datagram_t * packet)
636 {
637   u32 max_enqueue;
638   session_dgram_hdr_t hdr;
639   u32 len, ret;
640   svm_fifo_t *f;
641   transport_connection_t *tc;
642
643   len = packet->data.len;
644   f = udp_session->tx_fifo;
645   tc = session_get_transport (udp_session);
646   max_enqueue = svm_fifo_max_enqueue (f);
647   if (max_enqueue < SESSION_CONN_HDR_LEN + len)
648     {
649       QUIC_ERR ("Too much data to send, max_enqueue %u, len %u",
650                 max_enqueue, len + SESSION_CONN_HDR_LEN);
651       return QUIC_ERROR_FULL_FIFO;
652     }
653
654   /*  Build packet header for fifo */
655   hdr.data_length = len;
656   hdr.data_offset = 0;
657   hdr.is_ip4 = tc->is_ip4;
658   clib_memcpy (&hdr.lcl_ip, &tc->lcl_ip, sizeof (ip46_address_t));
659   hdr.lcl_port = tc->lcl_port;
660
661   /*  Read dest address from quicly-provided sockaddr */
662   if (hdr.is_ip4)
663     {
664       QUIC_ASSERT (packet->dest.sa.sa_family == AF_INET);
665       struct sockaddr_in *sa4 = (struct sockaddr_in *) &packet->dest.sa;
666       hdr.rmt_port = sa4->sin_port;
667       hdr.rmt_ip.ip4.as_u32 = sa4->sin_addr.s_addr;
668     }
669   else
670     {
671       QUIC_ASSERT (packet->dest.sa.sa_family == AF_INET6);
672       struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *) &packet->dest.sa;
673       hdr.rmt_port = sa6->sin6_port;
674       clib_memcpy (&hdr.rmt_ip.ip6, &sa6->sin6_addr, 16);
675     }
676
677   ret = svm_fifo_enqueue (f, sizeof (hdr), (u8 *) & hdr);
678   if (ret != sizeof (hdr))
679     {
680       QUIC_ERR ("Not enough space to enqueue header");
681       return QUIC_ERROR_FULL_FIFO;
682     }
683   ret = svm_fifo_enqueue (f, len, packet->data.base);
684   if (ret != len)
685     {
686       QUIC_ERR ("Not enough space to enqueue payload");
687       return QUIC_ERROR_FULL_FIFO;
688     }
689
690   quic_increment_counter (QUIC_ERROR_TX_PACKETS, 1);
691
692   return 0;
693 }
694
695 static int
696 quic_send_packets (quic_ctx_t * ctx)
697 {
698   quic_main_t *qm = &quic_main;
699   quicly_datagram_t *packets[QUIC_SEND_PACKET_VEC_SIZE];
700   session_t *udp_session;
701   quicly_conn_t *conn;
702   size_t num_packets, i, max_packets;
703   quicly_packet_allocator_t *pa;
704   int err = 0;
705   u32 thread_index = vlib_get_thread_index ();
706
707   /* We have sctx, get qctx */
708   if (quic_ctx_is_stream (ctx))
709     ctx = quic_ctx_get (ctx->quic_connection_ctx_id, ctx->c_thread_index);
710
711   QUIC_ASSERT (!quic_ctx_is_stream (ctx));
712
713   udp_session = session_get_from_handle_if_valid (ctx->udp_session_handle);
714   if (!udp_session)
715     goto quicly_error;
716
717   conn = ctx->conn;
718
719   if (!conn)
720     return 0;
721
722   /* TODO : quicly can assert it can send min_packets up to 2 */
723   if (quic_sendable_packet_count (udp_session) < 2)
724     goto stop_sending;
725
726   pa = quic_get_quicly_ctx_from_ctx (ctx)->packet_allocator;
727   do
728     {
729       max_packets = quic_sendable_packet_count (udp_session);
730       if (max_packets < 2)
731         break;
732       num_packets = max_packets;
733       if ((err = quicly_send (conn, packets, &num_packets)))
734         goto quicly_error;
735
736       quic_crypto_batch_tx_packets (&qm->wrk_ctx
737                                     [thread_index].crypto_context_batch);
738
739       for (i = 0; i != num_packets; ++i)
740         {
741           quic_crypto_finalize_send_packet (packets[i]);
742           if ((err = quic_send_datagram (udp_session, packets[i])))
743             goto quicly_error;
744
745           pa->free_packet (pa, packets[i]);
746         }
747     }
748   while (num_packets > 0 && num_packets == max_packets);
749
750 stop_sending:
751   quic_set_udp_tx_evt (udp_session);
752
753   QUIC_DBG (3, "%u[TX] %u[RX]", svm_fifo_max_dequeue (udp_session->tx_fifo),
754             svm_fifo_max_dequeue (udp_session->rx_fifo));
755   quic_update_timer (ctx);
756   return 0;
757
758 quicly_error:
759   if (err && err != QUICLY_ERROR_PACKET_IGNORED
760       && err != QUICLY_ERROR_FREE_CONNECTION)
761     clib_warning ("Quic error '%U'.", quic_format_err, err);
762   quic_connection_closed (ctx);
763   return 1;
764 }
765
766 /* Quicly callbacks */
767
768 static void
769 quic_on_stream_destroy (quicly_stream_t * stream, int err)
770 {
771   quic_stream_data_t *stream_data = (quic_stream_data_t *) stream->data;
772   quic_ctx_t *sctx = quic_ctx_get (stream_data->ctx_id,
773                                    stream_data->thread_index);
774   session_t *stream_session = session_get (sctx->c_s_index,
775                                            sctx->c_thread_index);
776   QUIC_DBG (2, "DESTROYED_STREAM: session 0x%lx (%U)",
777             session_handle (stream_session), quic_format_err, err);
778
779   stream_session->session_state = SESSION_STATE_CLOSED;
780   session_transport_delete_notify (&sctx->connection);
781
782   quic_increment_counter (QUIC_ERROR_CLOSED_STREAM, 1);
783   quic_ctx_free (sctx);
784   clib_mem_free (stream->data);
785 }
786
787 static void
788 quic_on_stop_sending (quicly_stream_t * stream, int err)
789 {
790 #if QUIC_DEBUG >= 2
791   quic_stream_data_t *stream_data = (quic_stream_data_t *) stream->data;
792   quic_ctx_t *sctx = quic_ctx_get (stream_data->ctx_id,
793                                    stream_data->thread_index);
794   session_t *stream_session = session_get (sctx->c_s_index,
795                                            sctx->c_thread_index);
796   clib_warning ("(NOT IMPLEMENTD) STOP_SENDING: session 0x%lx (%U)",
797                 session_handle (stream_session), quic_format_err, err);
798 #endif
799   /* TODO : handle STOP_SENDING */
800 }
801
802 static void
803 quic_on_receive_reset (quicly_stream_t * stream, int err)
804 {
805   quic_stream_data_t *stream_data = (quic_stream_data_t *) stream->data;
806   quic_ctx_t *sctx = quic_ctx_get (stream_data->ctx_id,
807                                    stream_data->thread_index);
808 #if QUIC_DEBUG >= 2
809   session_t *stream_session = session_get (sctx->c_s_index,
810                                            sctx->c_thread_index);
811   clib_warning ("RESET_STREAM: session 0x%lx (%U)",
812                 session_handle (stream_session), quic_format_err, err);
813 #endif
814   session_transport_closing_notify (&sctx->connection);
815 }
816
817 static void
818 quic_on_receive (quicly_stream_t * stream, size_t off, const void *src,
819                  size_t len)
820 {
821   QUIC_DBG (3, "received data: %lu bytes, offset %lu", len, off);
822   u32 max_enq, rlen, rv;
823   quic_ctx_t *sctx;
824   session_t *stream_session;
825   app_worker_t *app_wrk;
826   svm_fifo_t *f;
827   quic_stream_data_t *stream_data;
828
829   stream_data = (quic_stream_data_t *) stream->data;
830   sctx = quic_ctx_get (stream_data->ctx_id, stream_data->thread_index);
831   stream_session = session_get (sctx->c_s_index, stream_data->thread_index);
832   f = stream_session->rx_fifo;
833
834   max_enq = svm_fifo_max_enqueue_prod (f);
835   QUIC_DBG (3, "Enqueuing %u at off %u in %u space", len, off, max_enq);
836   /* Handle duplicate packet/chunk from quicly */
837   if (off < stream_data->app_rx_data_len)
838     {
839       QUIC_DBG (3, "Session [idx %u, app_wrk %u, thread %u, rx-fifo 0x%llx]: "
840                 "DUPLICATE PACKET (max_enq %u, len %u, "
841                 "app_rx_data_len %u, off %u, ToBeNQ %u)",
842                 stream_session->session_index,
843                 stream_session->app_wrk_index,
844                 stream_session->thread_index, f,
845                 max_enq, len, stream_data->app_rx_data_len, off,
846                 off - stream_data->app_rx_data_len + len);
847       return;
848     }
849   if (PREDICT_FALSE ((off - stream_data->app_rx_data_len + len) > max_enq))
850     {
851       QUIC_ERR ("Session [idx %u, app_wrk %u, thread %u, rx-fifo 0x%llx]: "
852                 "RX FIFO IS FULL (max_enq %u, len %u, "
853                 "app_rx_data_len %u, off %u, ToBeNQ %u)",
854                 stream_session->session_index,
855                 stream_session->app_wrk_index,
856                 stream_session->thread_index, f,
857                 max_enq, len, stream_data->app_rx_data_len, off,
858                 off - stream_data->app_rx_data_len + len);
859       return;                   /* This shouldn't happen */
860     }
861   if (off == stream_data->app_rx_data_len)
862     {
863       /* Streams live on the same thread so (f, stream_data) should stay consistent */
864       rlen = svm_fifo_enqueue (f, len, (u8 *) src);
865       QUIC_DBG (3, "Session [idx %u, app_wrk %u, ti %u, rx-fifo 0x%llx]: "
866                 "Enqueuing %u (rlen %u) at off %u in %u space, ",
867                 stream_session->session_index,
868                 stream_session->app_wrk_index,
869                 stream_session->thread_index, f, len, rlen, off, max_enq);
870       stream_data->app_rx_data_len += rlen;
871       QUIC_ASSERT (rlen >= len);
872       app_wrk = app_worker_get_if_valid (stream_session->app_wrk_index);
873       if (PREDICT_TRUE (app_wrk != 0))
874         {
875           rv = app_worker_lock_and_send_event (app_wrk, stream_session,
876                                                SESSION_IO_EVT_RX);
877           if (rv)
878             QUIC_ERR ("Failed to ping app for RX");
879         }
880       quic_ack_rx_data (stream_session);
881     }
882   else
883     {
884       rlen = svm_fifo_enqueue_with_offset (f,
885                                            off - stream_data->app_rx_data_len,
886                                            len, (u8 *) src);
887       QUIC_ASSERT (rlen == 0);
888     }
889   return;
890 }
891
892 void
893 quic_fifo_egress_shift (quicly_stream_t * stream, size_t delta)
894 {
895   quic_stream_data_t *stream_data;
896   session_t *stream_session;
897   svm_fifo_t *f;
898   u32 rv;
899
900   stream_data = (quic_stream_data_t *) stream->data;
901   stream_session = get_stream_session_from_stream (stream);
902   f = stream_session->tx_fifo;
903
904   QUIC_ASSERT (stream_data->app_tx_data_len >= delta);
905   stream_data->app_tx_data_len -= delta;
906   rv = svm_fifo_dequeue_drop (f, delta);
907   QUIC_ASSERT (rv == delta);
908
909   rv = quicly_stream_sync_sendbuf (stream, 0);
910   QUIC_ASSERT (!rv);
911 }
912
913 void
914 quic_fifo_egress_emit (quicly_stream_t * stream, size_t off, void *dst,
915                        size_t * len, int *wrote_all)
916 {
917   quic_stream_data_t *stream_data;
918   session_t *stream_session;
919   svm_fifo_t *f;
920   u32 deq_max;
921
922   stream_data = (quic_stream_data_t *) stream->data;
923   stream_session = get_stream_session_from_stream (stream);
924   f = stream_session->tx_fifo;
925
926   QUIC_DBG (3, "Emitting %u, offset %u", *len, off);
927
928   deq_max = svm_fifo_max_dequeue_cons (f);
929   QUIC_ASSERT (off <= deq_max);
930   if (off + *len < deq_max)
931     {
932       *wrote_all = 0;
933     }
934   else
935     {
936       *wrote_all = 1;
937       *len = deq_max - off;
938     }
939   QUIC_ASSERT (*len > 0);
940
941   if (off + *len > stream_data->app_tx_data_len)
942     stream_data->app_tx_data_len = off + *len;
943
944   svm_fifo_peek (f, off, *len, dst);
945 }
946
947 static const quicly_stream_callbacks_t quic_stream_callbacks = {
948   .on_destroy = quic_on_stream_destroy,
949   .on_send_shift = quic_fifo_egress_shift,
950   .on_send_emit = quic_fifo_egress_emit,
951   .on_send_stop = quic_on_stop_sending,
952   .on_receive = quic_on_receive,
953   .on_receive_reset = quic_on_receive_reset
954 };
955
956 static int
957 quic_on_stream_open (quicly_stream_open_t * self, quicly_stream_t * stream)
958 {
959   /* Return code for this function ends either
960    * - in quicly_receive : if not QUICLY_ERROR_PACKET_IGNORED, will close connection
961    * - in quicly_open_stream, returned directly
962    */
963
964   session_t *stream_session, *quic_session;
965   quic_stream_data_t *stream_data;
966   app_worker_t *app_wrk;
967   quic_ctx_t *qctx, *sctx;
968   u32 sctx_id;
969   int rv;
970
971   QUIC_DBG (2, "on_stream_open called");
972   stream->data = clib_mem_alloc (sizeof (quic_stream_data_t));
973   stream->callbacks = &quic_stream_callbacks;
974   /* Notify accept on parent qsession, but only if this is not a locally
975    * initiated stream */
976   if (quicly_stream_is_self_initiated (stream))
977     return 0;
978
979   sctx_id = quic_ctx_alloc (vlib_get_thread_index ());
980   qctx = quic_get_conn_ctx (stream->conn);
981
982   /* Might need to signal that the connection is ready if the first thing the
983    * server does is open a stream */
984   quic_check_quic_session_connected (qctx);
985   /* ctx might be invalidated */
986   qctx = quic_get_conn_ctx (stream->conn);
987
988   stream_session = session_alloc (qctx->c_thread_index);
989   QUIC_DBG (2, "ACCEPTED stream_session 0x%lx ctx %u",
990             session_handle (stream_session), sctx_id);
991   sctx = quic_ctx_get (sctx_id, qctx->c_thread_index);
992   sctx->parent_app_wrk_id = qctx->parent_app_wrk_id;
993   sctx->parent_app_id = qctx->parent_app_id;
994   sctx->quic_connection_ctx_id = qctx->c_c_index;
995   sctx->c_c_index = sctx_id;
996   sctx->c_s_index = stream_session->session_index;
997   sctx->stream = stream;
998   sctx->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP;
999   sctx->flags |= QUIC_F_IS_STREAM;
1000   if (quicly_stream_is_unidirectional (stream->stream_id))
1001     stream_session->flags |= SESSION_F_UNIDIRECTIONAL;
1002
1003   stream_data = (quic_stream_data_t *) stream->data;
1004   stream_data->ctx_id = sctx_id;
1005   stream_data->thread_index = sctx->c_thread_index;
1006   stream_data->app_rx_data_len = 0;
1007   stream_data->app_tx_data_len = 0;
1008
1009   sctx->c_s_index = stream_session->session_index;
1010   stream_session->session_state = SESSION_STATE_CREATED;
1011   stream_session->app_wrk_index = sctx->parent_app_wrk_id;
1012   stream_session->connection_index = sctx->c_c_index;
1013   stream_session->session_type =
1014     session_type_from_proto_and_ip (TRANSPORT_PROTO_QUIC, qctx->udp_is_ip4);
1015   quic_session = session_get (qctx->c_s_index, qctx->c_thread_index);
1016   stream_session->listener_handle = listen_session_get_handle (quic_session);
1017
1018   app_wrk = app_worker_get (stream_session->app_wrk_index);
1019   if ((rv = app_worker_init_connected (app_wrk, stream_session)))
1020     {
1021       QUIC_ERR ("failed to allocate fifos");
1022       quicly_reset_stream (stream, QUIC_APP_ALLOCATION_ERROR);
1023       return 0;                 /* Frame is still valid */
1024     }
1025   svm_fifo_add_want_deq_ntf (stream_session->rx_fifo,
1026                              SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL |
1027                              SVM_FIFO_WANT_DEQ_NOTIF_IF_EMPTY);
1028
1029   if ((rv = app_worker_accept_notify (app_wrk, stream_session)))
1030     {
1031       QUIC_ERR ("failed to notify accept worker app");
1032       quicly_reset_stream (stream, QUIC_APP_ACCEPT_NOTIFY_ERROR);
1033       return 0;                 /* Frame is still valid */
1034     }
1035
1036   return 0;
1037 }
1038
1039 static void
1040 quic_on_closed_by_peer (quicly_closed_by_peer_t * self, quicly_conn_t * conn,
1041                         int code, uint64_t frame_type,
1042                         const char *reason, size_t reason_len)
1043 {
1044   quic_ctx_t *ctx = quic_get_conn_ctx (conn);
1045 #if QUIC_DEBUG >= 2
1046   session_t *quic_session = session_get (ctx->c_s_index, ctx->c_thread_index);
1047   clib_warning ("Session 0x%lx closed by peer (%U) %.*s ",
1048                 session_handle (quic_session), quic_format_err, code,
1049                 reason_len, reason);
1050 #endif
1051   ctx->conn_state = QUIC_CONN_STATE_PASSIVE_CLOSING;
1052   session_transport_closing_notify (&ctx->connection);
1053 }
1054
1055 /* Timer handling */
1056
1057 static int64_t
1058 quic_get_thread_time (u8 thread_index)
1059 {
1060   return quic_main.wrk_ctx[thread_index].time_now;
1061 }
1062
1063 static int64_t
1064 quic_get_time (quicly_now_t * self)
1065 {
1066   u8 thread_index = vlib_get_thread_index ();
1067   return quic_get_thread_time (thread_index);
1068 }
1069
1070 static u32
1071 quic_set_time_now (u32 thread_index)
1072 {
1073   vlib_main_t *vlib_main = vlib_get_main ();
1074   f64 time = vlib_time_now (vlib_main);
1075   quic_main.wrk_ctx[thread_index].time_now = (int64_t) (time * 1000.f);
1076   return quic_main.wrk_ctx[thread_index].time_now;
1077 }
1078
1079 /* Transport proto callback */
1080 static void
1081 quic_update_time (f64 now, u8 thread_index)
1082 {
1083   tw_timer_wheel_1t_3w_1024sl_ov_t *tw;
1084
1085   tw = &quic_main.wrk_ctx[thread_index].timer_wheel;
1086   quic_set_time_now (thread_index);
1087   tw_timer_expire_timers_1t_3w_1024sl_ov (tw, now);
1088 }
1089
1090 static void
1091 quic_timer_expired (u32 conn_index)
1092 {
1093   quic_ctx_t *ctx;
1094   QUIC_DBG (4, "Timer expired for conn %u at %ld", conn_index,
1095             quic_get_time (NULL));
1096   ctx = quic_ctx_get (conn_index, vlib_get_thread_index ());
1097   ctx->timer_handle = QUIC_TIMER_HANDLE_INVALID;
1098   quic_send_packets (ctx);
1099 }
1100
1101 static void
1102 quic_update_timer (quic_ctx_t * ctx)
1103 {
1104   tw_timer_wheel_1t_3w_1024sl_ov_t *tw;
1105   int64_t next_timeout, next_interval;
1106   session_t *quic_session;
1107   int rv;
1108
1109   /*  This timeout is in ms which is the unit of our timer */
1110   next_timeout = quicly_get_first_timeout (ctx->conn);
1111   next_interval = next_timeout - quic_get_time (NULL);
1112
1113   if (next_timeout == 0 || next_interval <= 0)
1114     {
1115       if (ctx->c_s_index == QUIC_SESSION_INVALID)
1116         {
1117           next_interval = 1;
1118         }
1119       else
1120         {
1121           quic_session = session_get (ctx->c_s_index, ctx->c_thread_index);
1122           if (svm_fifo_set_event (quic_session->tx_fifo))
1123             {
1124               rv = session_send_io_evt_to_thread_custom (quic_session,
1125                                                          quic_session->thread_index,
1126                                                          SESSION_IO_EVT_BUILTIN_TX);
1127               if (PREDICT_FALSE (rv))
1128                 QUIC_ERR ("Failed to enqueue builtin_tx %d", rv);
1129             }
1130           return;
1131         }
1132     }
1133
1134   tw = &quic_main.wrk_ctx[vlib_get_thread_index ()].timer_wheel;
1135
1136   QUIC_DBG (4, "Timer set to %ld (int %ld) for ctx %u", next_timeout,
1137             next_interval, ctx->c_c_index);
1138
1139   if (ctx->timer_handle == QUIC_TIMER_HANDLE_INVALID)
1140     {
1141       if (next_timeout == INT64_MAX)
1142         {
1143           QUIC_DBG (4, "timer for ctx %u already stopped", ctx->c_c_index);
1144           return;
1145         }
1146       ctx->timer_handle = tw_timer_start_1t_3w_1024sl_ov (tw, ctx->c_c_index,
1147                                                           0, next_interval);
1148     }
1149   else
1150     {
1151       if (next_timeout == INT64_MAX)
1152         {
1153           quic_stop_ctx_timer (ctx);
1154         }
1155       else
1156         tw_timer_update_1t_3w_1024sl_ov (tw, ctx->timer_handle,
1157                                          next_interval);
1158     }
1159   return;
1160 }
1161
1162 static void
1163 quic_expired_timers_dispatch (u32 * expired_timers)
1164 {
1165   int i;
1166
1167   for (i = 0; i < vec_len (expired_timers); i++)
1168     {
1169       quic_timer_expired (expired_timers[i]);
1170     }
1171 }
1172
1173 /* Transport proto functions */
1174 static int
1175 quic_connect_stream (session_t * quic_session, session_endpoint_cfg_t * sep)
1176 {
1177   uint64_t quic_session_handle;
1178   session_t *stream_session;
1179   quic_stream_data_t *stream_data;
1180   quicly_stream_t *stream;
1181   quicly_conn_t *conn;
1182   app_worker_t *app_wrk;
1183   quic_ctx_t *qctx, *sctx;
1184   u32 sctx_index;
1185   u8 is_unidir;
1186   int rv;
1187
1188   /*  Find base session to which the user want to attach a stream */
1189   quic_session_handle = session_handle (quic_session);
1190   QUIC_DBG (2, "Opening new stream (qsession %u)", quic_session_handle);
1191
1192   if (session_type_transport_proto (quic_session->session_type) !=
1193       TRANSPORT_PROTO_QUIC)
1194     {
1195       QUIC_ERR ("received incompatible session");
1196       return -1;
1197     }
1198
1199   app_wrk = app_worker_get_if_valid (quic_session->app_wrk_index);
1200   if (!app_wrk)
1201     {
1202       QUIC_ERR ("Invalid app worker :(");
1203       return -1;
1204     }
1205
1206   sctx_index = quic_ctx_alloc (quic_session->thread_index);     /*  Allocate before we get pointers */
1207   sctx = quic_ctx_get (sctx_index, quic_session->thread_index);
1208   qctx = quic_ctx_get (quic_session->connection_index,
1209                        quic_session->thread_index);
1210   if (quic_ctx_is_stream (qctx))
1211     {
1212       QUIC_ERR ("session is a stream");
1213       quic_ctx_free (sctx);
1214       return -1;
1215     }
1216
1217   sctx->parent_app_wrk_id = qctx->parent_app_wrk_id;
1218   sctx->parent_app_id = qctx->parent_app_id;
1219   sctx->quic_connection_ctx_id = qctx->c_c_index;
1220   sctx->c_c_index = sctx_index;
1221   sctx->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP;
1222   sctx->flags |= QUIC_F_IS_STREAM;
1223
1224   conn = qctx->conn;
1225
1226   if (!conn || !quicly_connection_is_ready (conn))
1227     return -1;
1228
1229   is_unidir = sep->transport_flags & TRANSPORT_CFG_F_UNIDIRECTIONAL;
1230   if ((rv = quicly_open_stream (conn, &stream, is_unidir)))
1231     {
1232       QUIC_DBG (2, "Stream open failed with %d", rv);
1233       return -1;
1234     }
1235   quic_increment_counter (QUIC_ERROR_OPENED_STREAM, 1);
1236
1237   sctx->stream = stream;
1238
1239   QUIC_DBG (2, "Opened stream %d, creating session", stream->stream_id);
1240
1241   stream_session = session_alloc (qctx->c_thread_index);
1242   QUIC_DBG (2, "Allocated stream_session 0x%lx ctx %u",
1243             session_handle (stream_session), sctx_index);
1244   stream_session->app_wrk_index = app_wrk->wrk_index;
1245   stream_session->connection_index = sctx_index;
1246   stream_session->listener_handle = quic_session_handle;
1247   stream_session->session_type =
1248     session_type_from_proto_and_ip (TRANSPORT_PROTO_QUIC, qctx->udp_is_ip4);
1249   if (is_unidir)
1250     stream_session->flags |= SESSION_F_UNIDIRECTIONAL;
1251
1252   sctx->c_s_index = stream_session->session_index;
1253   stream_data = (quic_stream_data_t *) stream->data;
1254   stream_data->ctx_id = sctx->c_c_index;
1255   stream_data->thread_index = sctx->c_thread_index;
1256   stream_data->app_rx_data_len = 0;
1257   stream_data->app_tx_data_len = 0;
1258   stream_session->session_state = SESSION_STATE_READY;
1259
1260   /* For now we only reset streams. Cleanup will be triggered by timers */
1261   if (app_worker_init_connected (app_wrk, stream_session))
1262     {
1263       QUIC_ERR ("failed to app_worker_init_connected");
1264       quicly_reset_stream (stream, QUIC_APP_CONNECT_NOTIFY_ERROR);
1265       return app_worker_connect_notify (app_wrk, NULL, sep->opaque);
1266     }
1267
1268   svm_fifo_add_want_deq_ntf (stream_session->rx_fifo,
1269                              SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL |
1270                              SVM_FIFO_WANT_DEQ_NOTIF_IF_EMPTY);
1271
1272   if (app_worker_connect_notify (app_wrk, stream_session, sep->opaque))
1273     {
1274       QUIC_ERR ("failed to notify app");
1275       quic_increment_counter (QUIC_ERROR_CLOSED_STREAM, 1);
1276       quicly_reset_stream (stream, QUIC_APP_CONNECT_NOTIFY_ERROR);
1277       return -1;
1278     }
1279
1280   return 0;
1281 }
1282
1283 static int
1284 quic_connect_connection (session_endpoint_cfg_t * sep)
1285 {
1286   vnet_connect_args_t _cargs, *cargs = &_cargs;
1287   quic_main_t *qm = &quic_main;
1288   quic_ctx_t *ctx;
1289   app_worker_t *app_wrk;
1290   application_t *app;
1291   u32 ctx_index;
1292   u32 thread_index = vlib_get_thread_index ();
1293   int error;
1294
1295   clib_memset (cargs, 0, sizeof (*cargs));
1296   ctx_index = quic_ctx_alloc (thread_index);
1297   ctx = quic_ctx_get (ctx_index, thread_index);
1298   ctx->parent_app_wrk_id = sep->app_wrk_index;
1299   ctx->c_s_index = QUIC_SESSION_INVALID;
1300   ctx->c_c_index = ctx_index;
1301   ctx->udp_is_ip4 = sep->is_ip4;
1302   ctx->timer_handle = QUIC_TIMER_HANDLE_INVALID;
1303   ctx->conn_state = QUIC_CONN_STATE_HANDSHAKE;
1304   ctx->client_opaque = sep->opaque;
1305   ctx->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP;
1306   if (sep->hostname)
1307     ctx->srv_hostname = format (0, "%v", sep->hostname);
1308   else
1309     /*  needed by quic for crypto + determining client / server */
1310     ctx->srv_hostname = format (0, "%U", format_ip46_address,
1311                                 &sep->ip, sep->is_ip4);
1312   vec_terminate_c_string (ctx->srv_hostname);
1313
1314   clib_memcpy (&cargs->sep, sep, sizeof (session_endpoint_cfg_t));
1315   cargs->sep.transport_proto = TRANSPORT_PROTO_UDP;
1316   cargs->app_index = qm->app_index;
1317   cargs->api_context = ctx_index;
1318
1319   app_wrk = app_worker_get (sep->app_wrk_index);
1320   app = application_get (app_wrk->app_index);
1321   ctx->parent_app_id = app_wrk->app_index;
1322   cargs->sep_ext.ns_index = app->ns_index;
1323   cargs->sep_ext.transport_flags = TRANSPORT_CFG_F_CONNECTED;
1324
1325   ctx->crypto_engine = sep->crypto_engine;
1326   ctx->ckpair_index = sep->ckpair_index;
1327   if ((error = quic_acquire_crypto_context (ctx)))
1328     return error;
1329
1330   if ((error = vnet_connect (cargs)))
1331     return error;
1332
1333   return 0;
1334 }
1335
1336 static int
1337 quic_connect (transport_endpoint_cfg_t * tep)
1338 {
1339   QUIC_DBG (2, "Called quic_connect");
1340   session_endpoint_cfg_t *sep = (session_endpoint_cfg_t *) tep;
1341   session_t *quic_session;
1342   sep = (session_endpoint_cfg_t *) tep;
1343
1344   quic_session = session_get_from_handle_if_valid (sep->parent_handle);
1345   if (quic_session)
1346     return quic_connect_stream (quic_session, sep);
1347   else
1348     return quic_connect_connection (sep);
1349 }
1350
1351 static void
1352 quic_proto_on_close (u32 ctx_index, u32 thread_index)
1353 {
1354   quic_ctx_t *ctx = quic_ctx_get_if_valid (ctx_index, thread_index);
1355   if (!ctx)
1356     return;
1357 #if QUIC_DEBUG >= 2
1358   session_t *stream_session = session_get (ctx->c_s_index,
1359                                            ctx->c_thread_index);
1360   clib_warning ("Closing session 0x%lx", session_handle (stream_session));
1361 #endif
1362   if (quic_ctx_is_stream (ctx))
1363     {
1364       quicly_stream_t *stream = ctx->stream;
1365       if (!quicly_stream_has_send_side (quicly_is_client (stream->conn),
1366                                         stream->stream_id))
1367         return;
1368       quicly_reset_stream (stream, QUIC_APP_ERROR_CLOSE_NOTIFY);
1369       quic_send_packets (ctx);
1370       return;
1371     }
1372
1373   switch (ctx->conn_state)
1374     {
1375     case QUIC_CONN_STATE_OPENED:
1376     case QUIC_CONN_STATE_HANDSHAKE:
1377     case QUIC_CONN_STATE_READY:
1378       ctx->conn_state = QUIC_CONN_STATE_ACTIVE_CLOSING;
1379       quicly_conn_t *conn = ctx->conn;
1380       /* Start connection closing. Keep sending packets until quicly_send
1381          returns QUICLY_ERROR_FREE_CONNECTION */
1382
1383       quic_increment_counter (QUIC_ERROR_CLOSED_CONNECTION, 1);
1384       quicly_close (conn, QUIC_APP_ERROR_CLOSE_NOTIFY, "Closed by peer");
1385       /* This also causes all streams to be closed (and the cb called) */
1386       quic_send_packets (ctx);
1387       break;
1388     case QUIC_CONN_STATE_PASSIVE_CLOSING:
1389       ctx->conn_state = QUIC_CONN_STATE_PASSIVE_CLOSING_APP_CLOSED;
1390       /* send_packets will eventually return an error, we delete the conn at
1391          that point */
1392       break;
1393     case QUIC_CONN_STATE_PASSIVE_CLOSING_QUIC_CLOSED:
1394       quic_connection_delete (ctx);
1395       break;
1396     case QUIC_CONN_STATE_ACTIVE_CLOSING:
1397       break;
1398     default:
1399       QUIC_ERR ("Trying to close conn in state %d", ctx->conn_state);
1400       break;
1401     }
1402 }
1403
1404 static u32
1405 quic_start_listen (u32 quic_listen_session_index, transport_endpoint_t * tep)
1406 {
1407   vnet_listen_args_t _bargs, *args = &_bargs;
1408   quic_main_t *qm = &quic_main;
1409   session_handle_t udp_handle;
1410   session_endpoint_cfg_t *sep;
1411   session_t *udp_listen_session;
1412   app_worker_t *app_wrk;
1413   application_t *app;
1414   quic_ctx_t *lctx;
1415   u32 lctx_index;
1416   app_listener_t *app_listener;
1417   int rv;
1418
1419   sep = (session_endpoint_cfg_t *) tep;
1420   app_wrk = app_worker_get (sep->app_wrk_index);
1421   /* We need to call this because we call app_worker_init_connected in
1422    * quic_accept_stream, which assumes the connect segment manager exists */
1423   app_worker_alloc_connects_segment_manager (app_wrk);
1424   app = application_get (app_wrk->app_index);
1425   QUIC_DBG (2, "Called quic_start_listen for app %d", app_wrk->app_index);
1426
1427   clib_memset (args, 0, sizeof (*args));
1428   args->app_index = qm->app_index;
1429   args->sep_ext = *sep;
1430   args->sep_ext.ns_index = app->ns_index;
1431   args->sep_ext.transport_proto = TRANSPORT_PROTO_UDP;
1432   args->sep_ext.transport_flags = TRANSPORT_CFG_F_CONNECTED;
1433   if ((rv = vnet_listen (args)))
1434     return rv;
1435
1436   lctx_index = quic_ctx_alloc (0);
1437   udp_handle = args->handle;
1438   app_listener = app_listener_get_w_handle (udp_handle);
1439   udp_listen_session = app_listener_get_session (app_listener);
1440   udp_listen_session->opaque = lctx_index;
1441
1442   lctx = quic_ctx_get (lctx_index, 0);
1443   lctx->flags |= QUIC_F_IS_LISTENER;
1444
1445   clib_memcpy (&lctx->c_rmt_ip, &args->sep.peer.ip, sizeof (ip46_address_t));
1446   clib_memcpy (&lctx->c_lcl_ip, &args->sep.ip, sizeof (ip46_address_t));
1447   lctx->c_rmt_port = args->sep.peer.port;
1448   lctx->c_lcl_port = args->sep.port;
1449   lctx->c_is_ip4 = args->sep.is_ip4;
1450   lctx->c_fib_index = args->sep.fib_index;
1451   lctx->c_proto = TRANSPORT_PROTO_QUIC;
1452   lctx->parent_app_wrk_id = sep->app_wrk_index;
1453   lctx->parent_app_id = app_wrk->app_index;
1454   lctx->udp_session_handle = udp_handle;
1455   lctx->c_s_index = quic_listen_session_index;
1456   lctx->crypto_engine = sep->crypto_engine;
1457   lctx->ckpair_index = sep->ckpair_index;
1458   if (quic_acquire_crypto_context (lctx))
1459     return -1;
1460
1461   QUIC_DBG (2, "Listening UDP session 0x%lx",
1462             session_handle (udp_listen_session));
1463   QUIC_DBG (2, "Listening QUIC session 0x%lx", quic_listen_session_index);
1464   return lctx_index;
1465 }
1466
1467 static u32
1468 quic_stop_listen (u32 lctx_index)
1469 {
1470   QUIC_DBG (2, "Called quic_stop_listen");
1471   quic_ctx_t *lctx;
1472   lctx = quic_ctx_get (lctx_index, 0);
1473   QUIC_ASSERT (quic_ctx_is_listener (lctx));
1474   vnet_unlisten_args_t a = {
1475     .handle = lctx->udp_session_handle,
1476     .app_index = quic_main.app_index,
1477     .wrk_map_index = 0          /* default wrk */
1478   };
1479   if (vnet_unlisten (&a))
1480     clib_warning ("unlisten errored");
1481
1482   quic_release_crypto_context (lctx->crypto_context_index,
1483                                0 /* thread_index */ );
1484   quic_ctx_free (lctx);
1485   return 0;
1486 }
1487
1488 static transport_connection_t *
1489 quic_connection_get (u32 ctx_index, u32 thread_index)
1490 {
1491   quic_ctx_t *ctx;
1492   ctx = quic_ctx_get (ctx_index, thread_index);
1493   return &ctx->connection;
1494 }
1495
1496 static transport_connection_t *
1497 quic_listener_get (u32 listener_index)
1498 {
1499   QUIC_DBG (2, "Called quic_listener_get");
1500   quic_ctx_t *ctx;
1501   ctx = quic_ctx_get (listener_index, 0);
1502   return &ctx->connection;
1503 }
1504
1505 static u8 *
1506 format_quic_ctx (u8 * s, va_list * args)
1507 {
1508   quic_ctx_t *ctx = va_arg (*args, quic_ctx_t *);
1509   u32 verbose = va_arg (*args, u32);
1510   u8 *str = 0;
1511
1512   if (!ctx)
1513     return s;
1514   str = format (str, "[#%d][Q] ", ctx->c_thread_index);
1515
1516   if (quic_ctx_is_listener (ctx))
1517     str = format (str, "Listener, UDP %ld", ctx->udp_session_handle);
1518   else if (quic_ctx_is_stream (ctx))
1519     str = format (str, "Stream %ld conn %d",
1520                   ctx->stream->stream_id, ctx->quic_connection_ctx_id);
1521   else                          /* connection */
1522     str = format (str, "Conn %d UDP %d", ctx->c_c_index,
1523                   ctx->udp_session_handle);
1524
1525   str = format (str, " app %d wrk %d", ctx->parent_app_id,
1526                 ctx->parent_app_wrk_id);
1527
1528   if (verbose == 1)
1529     s = format (s, "%-50s%-15d", str, ctx->conn_state);
1530   else
1531     s = format (s, "%s\n", str);
1532   vec_free (str);
1533   return s;
1534 }
1535
1536 static u8 *
1537 format_quic_connection (u8 * s, va_list * args)
1538 {
1539   u32 qc_index = va_arg (*args, u32);
1540   u32 thread_index = va_arg (*args, u32);
1541   u32 verbose = va_arg (*args, u32);
1542   quic_ctx_t *ctx = quic_ctx_get (qc_index, thread_index);
1543   s = format (s, "%U", format_quic_ctx, ctx, verbose);
1544   return s;
1545 }
1546
1547 static u8 *
1548 format_quic_half_open (u8 * s, va_list * args)
1549 {
1550   u32 qc_index = va_arg (*args, u32);
1551   u32 thread_index = va_arg (*args, u32);
1552   quic_ctx_t *ctx = quic_ctx_get (qc_index, thread_index);
1553   s = format (s, "[#%d][Q] half-open app %u", thread_index,
1554               ctx->parent_app_id);
1555   return s;
1556 }
1557
1558 /*  TODO improve */
1559 static u8 *
1560 format_quic_listener (u8 * s, va_list * args)
1561 {
1562   u32 tci = va_arg (*args, u32);
1563   u32 thread_index = va_arg (*args, u32);
1564   u32 verbose = va_arg (*args, u32);
1565   quic_ctx_t *ctx = quic_ctx_get (tci, thread_index);
1566   s = format (s, "%U", format_quic_ctx, ctx, verbose);
1567   return s;
1568 }
1569
1570 /* Session layer callbacks */
1571
1572 static inline void
1573 quic_build_sockaddr (struct sockaddr *sa, socklen_t * salen,
1574                      ip46_address_t * addr, u16 port, u8 is_ip4)
1575 {
1576   if (is_ip4)
1577     {
1578       struct sockaddr_in *sa4 = (struct sockaddr_in *) sa;
1579       sa4->sin_family = AF_INET;
1580       sa4->sin_port = port;
1581       sa4->sin_addr.s_addr = addr->ip4.as_u32;
1582       *salen = sizeof (struct sockaddr_in);
1583     }
1584   else
1585     {
1586       struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *) sa;
1587       sa6->sin6_family = AF_INET6;
1588       sa6->sin6_port = port;
1589       clib_memcpy (&sa6->sin6_addr, &addr->ip6, 16);
1590       *salen = sizeof (struct sockaddr_in6);
1591     }
1592 }
1593
1594 static void
1595 quic_on_quic_session_connected (quic_ctx_t * ctx)
1596 {
1597   session_t *quic_session;
1598   app_worker_t *app_wrk;
1599   u32 ctx_id = ctx->c_c_index;
1600   u32 thread_index = ctx->c_thread_index;
1601   int rv;
1602
1603   quic_session = session_alloc (thread_index);
1604
1605   QUIC_DBG (2, "Allocated quic session 0x%lx", session_handle (quic_session));
1606   ctx->c_s_index = quic_session->session_index;
1607   quic_session->app_wrk_index = ctx->parent_app_wrk_id;
1608   quic_session->connection_index = ctx->c_c_index;
1609   quic_session->listener_handle = SESSION_INVALID_HANDLE;
1610   quic_session->session_type =
1611     session_type_from_proto_and_ip (TRANSPORT_PROTO_QUIC, ctx->udp_is_ip4);
1612
1613   /* If quic session connected fails, immediatly close connection */
1614   app_wrk = app_worker_get (ctx->parent_app_wrk_id);
1615   if (app_worker_init_connected (app_wrk, quic_session))
1616     {
1617       QUIC_ERR ("failed to app_worker_init_connected");
1618       quic_proto_on_close (ctx_id, thread_index);
1619       app_worker_connect_notify (app_wrk, NULL, ctx->client_opaque);
1620       return;
1621     }
1622
1623   quic_session->session_state = SESSION_STATE_CONNECTING;
1624   if ((rv = app_worker_connect_notify (app_wrk, quic_session,
1625                                        ctx->client_opaque)))
1626     {
1627       QUIC_ERR ("failed to notify app %d", rv);
1628       quic_proto_on_close (ctx_id, thread_index);
1629       return;
1630     }
1631
1632   /*  If the app opens a stream in its callback it may invalidate ctx */
1633   ctx = quic_ctx_get (ctx_id, thread_index);
1634   /*
1635    * app_worker_connect_notify() might have reallocated pool, reload
1636    * quic_session pointer
1637    */
1638   quic_session = session_get (ctx->c_s_index, thread_index);
1639   quic_session->session_state = SESSION_STATE_LISTENING;
1640 }
1641
1642 static void
1643 quic_check_quic_session_connected (quic_ctx_t * ctx)
1644 {
1645   /* Called when we need to trigger quic session connected
1646    * we may call this function on the server side / at
1647    * stream opening */
1648
1649   /* Conn may be set to null if the connection is terminated */
1650   if (!ctx->conn || ctx->conn_state != QUIC_CONN_STATE_HANDSHAKE)
1651     return;
1652   if (!quicly_connection_is_ready (ctx->conn))
1653     return;
1654   ctx->conn_state = QUIC_CONN_STATE_READY;
1655   if (!quicly_is_client (ctx->conn))
1656     return;
1657   quic_on_quic_session_connected (ctx);
1658 }
1659
1660 static inline void
1661 quic_update_conn_ctx (quicly_conn_t * conn, quicly_context_t * quicly_context)
1662 {
1663   /* we need to update the quicly_conn on migrate
1664    * as it contains a pointer to the crypto context */
1665   ptls_context_t **tls;
1666   quicly_context_t **_quicly_context;
1667   _quicly_context = (quicly_context_t **) conn;
1668   *_quicly_context = quicly_context;
1669   tls = (ptls_context_t **) quicly_get_tls (conn);
1670   *tls = quicly_context->tls;
1671 }
1672
1673 static void
1674 quic_receive_connection (void *arg)
1675 {
1676   u32 new_ctx_id, thread_index = vlib_get_thread_index ();
1677   quic_ctx_t *temp_ctx, *new_ctx;
1678   clib_bihash_kv_16_8_t kv;
1679   quicly_conn_t *conn;
1680   quicly_context_t *quicly_context;
1681   session_t *udp_session;
1682
1683   temp_ctx = arg;
1684   new_ctx_id = quic_ctx_alloc (thread_index);
1685   new_ctx = quic_ctx_get (new_ctx_id, thread_index);
1686
1687   QUIC_DBG (2, "Received conn %u (now %u)", temp_ctx->c_thread_index,
1688             new_ctx_id);
1689
1690   clib_memcpy (new_ctx, temp_ctx, sizeof (quic_ctx_t));
1691   clib_mem_free (temp_ctx);
1692
1693   new_ctx->c_thread_index = thread_index;
1694   new_ctx->c_c_index = new_ctx_id;
1695   quic_acquire_crypto_context (new_ctx);
1696
1697   conn = new_ctx->conn;
1698   quicly_context = quic_get_quicly_ctx_from_ctx (new_ctx);
1699   quic_update_conn_ctx (conn, quicly_context);
1700
1701   quic_store_conn_ctx (conn, new_ctx);
1702   quic_make_connection_key (&kv, quicly_get_master_id (conn));
1703   kv.value = ((u64) thread_index) << 32 | (u64) new_ctx_id;
1704   QUIC_DBG (2, "Registering conn with id %lu %lu", kv.key[0], kv.key[1]);
1705   clib_bihash_add_del_16_8 (&quic_main.connection_hash, &kv, 1 /* is_add */ );
1706   new_ctx->timer_handle = QUIC_TIMER_HANDLE_INVALID;
1707   quic_update_timer (new_ctx);
1708
1709   /*  Trigger write on this connection if necessary */
1710   udp_session = session_get_from_handle (new_ctx->udp_session_handle);
1711   udp_session->opaque = new_ctx_id;
1712   udp_session->flags &= ~SESSION_F_IS_MIGRATING;
1713   if (svm_fifo_max_dequeue (udp_session->tx_fifo))
1714     quic_set_udp_tx_evt (udp_session);
1715 }
1716
1717 static void
1718 quic_transfer_connection (u32 ctx_index, u32 dest_thread)
1719 {
1720   quic_ctx_t *ctx, *temp_ctx;
1721   u32 thread_index = vlib_get_thread_index ();
1722
1723   QUIC_DBG (2, "Transferring conn %u to thread %u", ctx_index, dest_thread);
1724
1725   temp_ctx = clib_mem_alloc (sizeof (quic_ctx_t));
1726   QUIC_ASSERT (temp_ctx != NULL);
1727   ctx = quic_ctx_get (ctx_index, thread_index);
1728
1729   clib_memcpy (temp_ctx, ctx, sizeof (quic_ctx_t));
1730
1731   quic_stop_ctx_timer (ctx);
1732   quic_release_crypto_context (ctx->crypto_context_index, thread_index);
1733   quic_ctx_free (ctx);
1734
1735   /*  Send connection to destination thread */
1736   session_send_rpc_evt_to_thread (dest_thread, quic_receive_connection,
1737                                   (void *) temp_ctx);
1738 }
1739
1740 static int
1741 quic_udp_session_connected_callback (u32 quic_app_index, u32 ctx_index,
1742                                      session_t * udp_session, u8 is_fail)
1743 {
1744   QUIC_DBG (2, "QSession is now connected (id %u)",
1745             udp_session->session_index);
1746   /* This should always be called before quic_connect returns since UDP always
1747    * connects instantly. */
1748   clib_bihash_kv_16_8_t kv;
1749   struct sockaddr_in6 sa6;
1750   struct sockaddr *sa = (struct sockaddr *) &sa6;
1751   socklen_t salen;
1752   transport_connection_t *tc;
1753   app_worker_t *app_wrk;
1754   quicly_conn_t *conn;
1755   quic_ctx_t *ctx;
1756   u32 thread_index = vlib_get_thread_index ();
1757   int ret;
1758   quicly_context_t *quicly_ctx;
1759
1760
1761   ctx = quic_ctx_get (ctx_index, thread_index);
1762   if (is_fail)
1763     {
1764       u32 api_context;
1765       app_wrk = app_worker_get_if_valid (ctx->parent_app_wrk_id);
1766       if (app_wrk)
1767         {
1768           api_context = ctx->c_s_index;
1769           app_worker_connect_notify (app_wrk, 0, api_context);
1770         }
1771       return 0;
1772     }
1773
1774   ctx->c_thread_index = thread_index;
1775   ctx->c_c_index = ctx_index;
1776
1777   QUIC_DBG (2, "Quic connect returned %u. New ctx [%u]%x",
1778             is_fail, thread_index, (ctx) ? ctx_index : ~0);
1779
1780   ctx->udp_session_handle = session_handle (udp_session);
1781   udp_session->opaque = ctx_index;
1782
1783   /* Init QUIC lib connection
1784    * Generate required sockaddr & salen */
1785   tc = session_get_transport (udp_session);
1786   quic_build_sockaddr (sa, &salen, &tc->rmt_ip, tc->rmt_port, tc->is_ip4);
1787
1788   quicly_ctx = quic_get_quicly_ctx_from_ctx (ctx);
1789   ret = quicly_connect (&ctx->conn, quicly_ctx, (char *) ctx->srv_hostname,
1790                         sa, NULL, &quic_main.wrk_ctx[thread_index].next_cid,
1791                         ptls_iovec_init (NULL, 0), &quic_main.hs_properties,
1792                         NULL);
1793   ++quic_main.wrk_ctx[thread_index].next_cid.master_id;
1794   /*  Save context handle in quicly connection */
1795   quic_store_conn_ctx (ctx->conn, ctx);
1796   assert (ret == 0);
1797
1798   /*  Register connection in connections map */
1799   conn = ctx->conn;
1800   quic_make_connection_key (&kv, quicly_get_master_id (conn));
1801   kv.value = ((u64) thread_index) << 32 | (u64) ctx_index;
1802   QUIC_DBG (2, "Registering conn with id %lu %lu", kv.key[0], kv.key[1]);
1803   clib_bihash_add_del_16_8 (&quic_main.connection_hash, &kv, 1 /* is_add */ );
1804
1805   /*  UDP stack quirk? preemptively transfer connection if that happens */
1806   if (udp_session->thread_index != thread_index)
1807     quic_transfer_connection (ctx_index, udp_session->thread_index);
1808   else
1809     quic_send_packets (ctx);
1810
1811   return ret;
1812 }
1813
1814 static void
1815 quic_udp_session_disconnect_callback (session_t * s)
1816 {
1817   clib_warning ("UDP session disconnected???");
1818 }
1819
1820 static void
1821 quic_udp_session_cleanup_callback (session_t * udp_session,
1822                                    session_cleanup_ntf_t ntf)
1823 {
1824   quic_ctx_t *ctx;
1825
1826   if (ntf != SESSION_CLEANUP_SESSION)
1827     return;
1828
1829   ctx = quic_ctx_get (udp_session->opaque, udp_session->thread_index);
1830   quic_stop_ctx_timer (ctx);
1831   quic_release_crypto_context (ctx->crypto_context_index,
1832                                ctx->c_thread_index);
1833   quic_ctx_free (ctx);
1834 }
1835
1836 static void
1837 quic_udp_session_reset_callback (session_t * s)
1838 {
1839   clib_warning ("UDP session reset???");
1840 }
1841
1842 static void
1843 quic_udp_session_migrate_callback (session_t * s, session_handle_t new_sh)
1844 {
1845   u32 new_thread = session_thread_from_handle (new_sh);
1846   quic_ctx_t *ctx;
1847
1848   QUIC_DBG (2, "Session %x migrated to %lx", s->session_index, new_sh);
1849   QUIC_ASSERT (vlib_get_thread_index () == s->thread_index);
1850   ctx = quic_ctx_get (s->opaque, s->thread_index);
1851   QUIC_ASSERT (ctx->udp_session_handle == session_handle (s));
1852
1853   ctx->udp_session_handle = new_sh;
1854 #if QUIC_DEBUG >= 1
1855   s->opaque = 0xfeedface;
1856 #endif
1857   quic_transfer_connection (ctx->c_c_index, new_thread);
1858 }
1859
1860 int
1861 quic_udp_session_accepted_callback (session_t * udp_session)
1862 {
1863   /* New UDP connection, try to accept it */
1864   u32 ctx_index;
1865   quic_ctx_t *ctx, *lctx;
1866   session_t *udp_listen_session;
1867   u32 thread_index = vlib_get_thread_index ();
1868
1869   udp_listen_session =
1870     listen_session_get_from_handle (udp_session->listener_handle);
1871
1872   ctx_index = quic_ctx_alloc (thread_index);
1873   ctx = quic_ctx_get (ctx_index, thread_index);
1874   ctx->c_thread_index = udp_session->thread_index;
1875   ctx->c_c_index = ctx_index;
1876   ctx->c_s_index = QUIC_SESSION_INVALID;
1877   ctx->udp_session_handle = session_handle (udp_session);
1878   QUIC_DBG (2, "ACCEPTED UDP 0x%lx", ctx->udp_session_handle);
1879   ctx->listener_ctx_id = udp_listen_session->opaque;
1880   lctx = quic_ctx_get (udp_listen_session->opaque,
1881                        udp_listen_session->thread_index);
1882   ctx->udp_is_ip4 = lctx->c_is_ip4;
1883   ctx->parent_app_id = lctx->parent_app_id;
1884   ctx->parent_app_wrk_id = lctx->parent_app_wrk_id;
1885   ctx->timer_handle = QUIC_TIMER_HANDLE_INVALID;
1886   ctx->conn_state = QUIC_CONN_STATE_OPENED;
1887   ctx->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP;
1888
1889   ctx->crypto_engine = lctx->crypto_engine;
1890   ctx->ckpair_index = lctx->ckpair_index;
1891   quic_acquire_crypto_context (ctx);
1892   udp_session->opaque = ctx_index;
1893
1894   /* TODO timeout to delete these if they never connect */
1895   return 0;
1896 }
1897
1898 static int
1899 quic_add_segment_callback (u32 client_index, u64 seg_handle)
1900 {
1901   /* No-op for builtin */
1902   return 0;
1903 }
1904
1905 static int
1906 quic_del_segment_callback (u32 client_index, u64 seg_handle)
1907 {
1908   /* No-op for builtin */
1909   return 0;
1910 }
1911
1912 static int
1913 quic_custom_app_rx_callback (transport_connection_t * tc)
1914 {
1915   quic_ctx_t *ctx;
1916   session_t *stream_session = session_get (tc->s_index, tc->thread_index);
1917   QUIC_DBG (3, "Received app READ notification");
1918   quic_ack_rx_data (stream_session);
1919   svm_fifo_reset_has_deq_ntf (stream_session->rx_fifo);
1920
1921   /* Need to send packets (acks may never be sent otherwise) */
1922   ctx = quic_ctx_get (stream_session->connection_index,
1923                       stream_session->thread_index);
1924   quic_send_packets (ctx);
1925   return 0;
1926 }
1927
1928 static int
1929 quic_custom_tx_callback (void *s, u32 max_burst_size)
1930 {
1931   session_t *stream_session = (session_t *) s;
1932   quic_stream_data_t *stream_data;
1933   quicly_stream_t *stream;
1934   quic_ctx_t *ctx;
1935   u32 max_deq;
1936   int rv;
1937
1938   if (PREDICT_FALSE
1939       (stream_session->session_state >= SESSION_STATE_TRANSPORT_CLOSING))
1940     return 0;
1941   ctx = quic_ctx_get (stream_session->connection_index,
1942                       stream_session->thread_index);
1943   if (PREDICT_FALSE (!quic_ctx_is_stream (ctx)))
1944     {
1945       goto tx_end;              /* Most probably a reschedule */
1946     }
1947
1948   QUIC_DBG (3, "Stream TX event");
1949   quic_ack_rx_data (stream_session);
1950   stream = ctx->stream;
1951   if (!quicly_sendstate_is_open (&stream->sendstate))
1952     {
1953       QUIC_ERR ("Warning: tried to send on closed stream");
1954       return -1;
1955     }
1956
1957   stream_data = (quic_stream_data_t *) stream->data;
1958   max_deq = svm_fifo_max_dequeue (stream_session->tx_fifo);
1959   QUIC_ASSERT (max_deq >= stream_data->app_tx_data_len);
1960   if (max_deq == stream_data->app_tx_data_len)
1961     {
1962       QUIC_DBG (3, "TX but no data %d / %d", max_deq,
1963                 stream_data->app_tx_data_len);
1964       return 0;
1965     }
1966   stream_data->app_tx_data_len = max_deq;
1967   rv = quicly_stream_sync_sendbuf (stream, 1);
1968   QUIC_ASSERT (!rv);
1969
1970 tx_end:
1971   quic_send_packets (ctx);
1972   return 0;
1973 }
1974
1975 /*
1976  * Returns 0 if a matching connection is found and is on the right thread.
1977  * Otherwise returns -1.
1978  * If a connection is found, even on the wrong thread, ctx_thread and ctx_index
1979  * will be set.
1980  */
1981 static inline int
1982 quic_find_packet_ctx (quic_rx_packet_ctx_t * pctx, u32 caller_thread_index)
1983 {
1984   clib_bihash_kv_16_8_t kv;
1985   clib_bihash_16_8_t *h;
1986   quic_ctx_t *ctx;
1987   u32 index, thread_id;
1988
1989   h = &quic_main.connection_hash;
1990   quic_make_connection_key (&kv, &pctx->packet.cid.dest.plaintext);
1991   QUIC_DBG (3, "Searching conn with id %lu %lu", kv.key[0], kv.key[1]);
1992
1993   if (clib_bihash_search_16_8 (h, &kv, &kv))
1994     {
1995       QUIC_DBG (3, "connection not found");
1996       return QUIC_PACKET_TYPE_NONE;
1997     }
1998
1999   index = kv.value & UINT32_MAX;
2000   thread_id = kv.value >> 32;
2001   /* Check if this connection belongs to this thread, otherwise
2002    * ask for it to be moved */
2003   if (thread_id != caller_thread_index)
2004     {
2005       QUIC_DBG (2, "Connection is on wrong thread");
2006       /* Cannot make full check with quicly_is_destination... */
2007       pctx->ctx_index = index;
2008       pctx->thread_index = thread_id;
2009       return QUIC_PACKET_TYPE_MIGRATE;
2010     }
2011   ctx = quic_ctx_get (index, vlib_get_thread_index ());
2012   if (!ctx->conn)
2013     {
2014       QUIC_ERR ("ctx has no conn");
2015       return QUIC_PACKET_TYPE_NONE;
2016     }
2017   if (!quicly_is_destination (ctx->conn, NULL, &pctx->sa, &pctx->packet))
2018     return QUIC_PACKET_TYPE_NONE;
2019
2020   QUIC_DBG (3, "Connection found");
2021   pctx->ctx_index = index;
2022   pctx->thread_index = thread_id;
2023   return QUIC_PACKET_TYPE_RECEIVE;
2024 }
2025
2026 static void
2027 quic_accept_connection (quic_rx_packet_ctx_t * pctx)
2028 {
2029   quicly_context_t *quicly_ctx;
2030   session_t *quic_session;
2031   clib_bihash_kv_16_8_t kv;
2032   app_worker_t *app_wrk;
2033   quicly_conn_t *conn;
2034   quic_ctx_t *ctx;
2035   quic_ctx_t *lctx;
2036   int rv;
2037
2038   /* new connection, accept and create context if packet is valid
2039    * TODO: check if socket is actually listening? */
2040   ctx = quic_ctx_get (pctx->ctx_index, pctx->thread_index);
2041   if (ctx->c_s_index != QUIC_SESSION_INVALID)
2042     {
2043       QUIC_DBG (2, "already accepted ctx 0x%x", ctx->c_s_index);
2044       return;
2045     }
2046
2047   quicly_ctx = quic_get_quicly_ctx_from_ctx (ctx);
2048   if ((rv = quicly_accept (&conn, quicly_ctx, NULL, &pctx->sa,
2049                            &pctx->packet, NULL,
2050                            &quic_main.wrk_ctx[pctx->thread_index].next_cid,
2051                            NULL)))
2052     {
2053       /* Invalid packet, pass */
2054       assert (conn == NULL);
2055       QUIC_ERR ("Accept failed with %U", quic_format_err, rv);
2056       /* TODO: cleanup created quic ctx and UDP session */
2057       return;
2058     }
2059   assert (conn != NULL);
2060
2061   ++quic_main.wrk_ctx[pctx->thread_index].next_cid.master_id;
2062   /* Save ctx handle in quicly connection */
2063   quic_store_conn_ctx (conn, ctx);
2064   ctx->conn = conn;
2065
2066   quic_session = session_alloc (ctx->c_thread_index);
2067   QUIC_DBG (2, "Allocated quic_session, 0x%lx ctx %u",
2068             session_handle (quic_session), ctx->c_c_index);
2069   quic_session->session_state = SESSION_STATE_LISTENING;
2070   ctx->c_s_index = quic_session->session_index;
2071
2072   lctx = quic_ctx_get (ctx->listener_ctx_id, 0);
2073
2074   quic_session->app_wrk_index = lctx->parent_app_wrk_id;
2075   quic_session->connection_index = ctx->c_c_index;
2076   quic_session->session_type =
2077     session_type_from_proto_and_ip (TRANSPORT_PROTO_QUIC, ctx->udp_is_ip4);
2078   quic_session->listener_handle = lctx->c_s_index;
2079
2080   /* Register connection in connections map */
2081   quic_make_connection_key (&kv, quicly_get_master_id (conn));
2082   kv.value = ((u64) pctx->thread_index) << 32 | (u64) pctx->ctx_index;
2083   clib_bihash_add_del_16_8 (&quic_main.connection_hash, &kv, 1 /* is_add */ );
2084   QUIC_DBG (2, "Registering conn with id %lu %lu", kv.key[0], kv.key[1]);
2085
2086   /* If notify fails, reset connection immediatly */
2087   if ((rv = app_worker_init_accepted (quic_session)))
2088     {
2089       QUIC_ERR ("failed to allocate fifos");
2090       quic_proto_on_close (pctx->ctx_index, pctx->thread_index);
2091       return;
2092     }
2093
2094   app_wrk = app_worker_get (quic_session->app_wrk_index);
2095   if ((rv = app_worker_accept_notify (app_wrk, quic_session)))
2096     {
2097       QUIC_ERR ("failed to notify accept worker app");
2098       quic_proto_on_close (pctx->ctx_index, pctx->thread_index);
2099       return;
2100     }
2101
2102   ctx->conn_state = QUIC_CONN_STATE_READY;
2103 }
2104
2105 static int
2106 quic_reset_connection (u64 udp_session_handle, quic_rx_packet_ctx_t * pctx)
2107 {
2108   /* short header packet; potentially a dead connection. No need to check the
2109    * length of the incoming packet, because loop is prevented by authenticating
2110    * the CID (by checking node_id and thread_id). If the peer is also sending a
2111    * reset, then the next CID is highly likely to contain a non-authenticating
2112    * CID, ... */
2113   QUIC_DBG (2, "Sending stateless reset");
2114   int rv;
2115   quicly_datagram_t *dgram;
2116   session_t *udp_session;
2117   quicly_context_t *quicly_ctx;
2118   if (pctx->packet.cid.dest.plaintext.node_id != 0
2119       || pctx->packet.cid.dest.plaintext.thread_id != 0)
2120     return 0;
2121   quicly_ctx = quic_get_quicly_ctx_from_udp (udp_session_handle);
2122   dgram = quicly_send_stateless_reset (quicly_ctx, &pctx->sa, NULL,
2123                                        &pctx->packet.cid.dest.plaintext);
2124   if (dgram == NULL)
2125     return 1;
2126   udp_session = session_get_from_handle (udp_session_handle);
2127   rv = quic_send_datagram (udp_session, dgram);
2128   quic_set_udp_tx_evt (udp_session);
2129   return rv;
2130 }
2131
2132 static int
2133 quic_process_one_rx_packet (u64 udp_session_handle, svm_fifo_t * f,
2134                             u32 fifo_offset, quic_rx_packet_ctx_t * pctx)
2135 {
2136   size_t plen;
2137   u32 full_len, ret;
2138   u32 thread_index = vlib_get_thread_index ();
2139   u32 cur_deq = svm_fifo_max_dequeue (f) - fifo_offset;
2140   quicly_context_t *quicly_ctx;
2141   session_t *udp_session;
2142   int rv;
2143
2144   ret = svm_fifo_peek (f, fifo_offset,
2145                        SESSION_CONN_HDR_LEN, (u8 *) & pctx->ph);
2146   QUIC_ASSERT (ret == SESSION_CONN_HDR_LEN);
2147   QUIC_ASSERT (pctx->ph.data_offset == 0);
2148   full_len = pctx->ph.data_length + SESSION_CONN_HDR_LEN;
2149   if (full_len > cur_deq)
2150     {
2151       QUIC_ERR ("Not enough data in fifo RX");
2152       return 1;
2153     }
2154
2155   /* Quicly can read len bytes from the fifo at offset:
2156    * ph.data_offset + SESSION_CONN_HDR_LEN */
2157   ret = svm_fifo_peek (f, SESSION_CONN_HDR_LEN + fifo_offset,
2158                        pctx->ph.data_length, pctx->data);
2159   if (ret != pctx->ph.data_length)
2160     {
2161       QUIC_ERR ("Not enough data peeked in RX");
2162       return 1;
2163     }
2164
2165   quic_increment_counter (QUIC_ERROR_RX_PACKETS, 1);
2166   quic_build_sockaddr (&pctx->sa, &pctx->salen, &pctx->ph.rmt_ip,
2167                        pctx->ph.rmt_port, pctx->ph.is_ip4);
2168   quicly_ctx = quic_get_quicly_ctx_from_udp (udp_session_handle);
2169   plen = quicly_decode_packet (quicly_ctx, &pctx->packet,
2170                                pctx->data, pctx->ph.data_length);
2171
2172   if (plen == SIZE_MAX)
2173     {
2174       return 1;
2175     }
2176
2177   rv = quic_find_packet_ctx (pctx, thread_index);
2178   if (rv == QUIC_PACKET_TYPE_RECEIVE)
2179     {
2180       pctx->ptype = QUIC_PACKET_TYPE_RECEIVE;
2181       if (quic_main.vnet_crypto_enabled)
2182         {
2183           quic_ctx_t *qctx = quic_ctx_get (pctx->ctx_index, thread_index);
2184           quic_crypto_decrypt_packet (qctx, pctx);
2185         }
2186       return 0;
2187     }
2188   else if (rv == QUIC_PACKET_TYPE_MIGRATE)
2189     {
2190       pctx->ptype = QUIC_PACKET_TYPE_MIGRATE;
2191       /*  Connection found but on wrong thread, ask move */
2192     }
2193   else if (QUICLY_PACKET_IS_LONG_HEADER (pctx->packet.octets.base[0]))
2194     {
2195       pctx->ptype = QUIC_PACKET_TYPE_ACCEPT;
2196       udp_session = session_get_from_handle (udp_session_handle);
2197       pctx->ctx_index = udp_session->opaque;
2198       pctx->thread_index = thread_index;
2199     }
2200   else
2201     {
2202       pctx->ptype = QUIC_PACKET_TYPE_RESET;
2203     }
2204   return 1;
2205 }
2206
2207 static int
2208 quic_udp_session_rx_callback (session_t * udp_session)
2209 {
2210   /*  Read data from UDP rx_fifo and pass it to the quicly conn. */
2211   quic_main_t *qm = &quic_main;
2212   quic_ctx_t *ctx = NULL, *prev_ctx = NULL;
2213   svm_fifo_t *f = udp_session->rx_fifo;
2214   u32 max_deq;
2215   u64 udp_session_handle = session_handle (udp_session);
2216   int rv = 0;
2217   u32 thread_index = vlib_get_thread_index ();
2218   u32 cur_deq, fifo_offset, max_packets, i;
2219
2220   quic_rx_packet_ctx_t packets_ctx[QUIC_RCV_MAX_BATCH_PACKETS];
2221
2222   if (udp_session->flags & SESSION_F_IS_MIGRATING)
2223     {
2224       QUIC_DBG (3, "RX on migrating udp session");
2225       return 0;
2226     }
2227
2228 rx_start:
2229   max_deq = svm_fifo_max_dequeue (f);
2230   if (max_deq == 0)
2231     return 0;
2232
2233   fifo_offset = 0;
2234   max_packets = QUIC_RCV_MAX_BATCH_PACKETS;
2235
2236 #if CLIB_DEBUG > 0
2237   clib_memset (packets_ctx, 0xfa,
2238                QUIC_RCV_MAX_BATCH_PACKETS * sizeof (quic_rx_packet_ctx_t));
2239 #endif
2240
2241   for (i = 0; i < max_packets; i++)
2242     {
2243       packets_ctx[i].thread_index = UINT32_MAX;
2244       packets_ctx[i].ctx_index = UINT32_MAX;
2245       packets_ctx[i].ptype = QUIC_PACKET_TYPE_DROP;
2246
2247       cur_deq = max_deq - fifo_offset;
2248       if (cur_deq == 0)
2249         {
2250           max_packets = i + 1;
2251           break;
2252         }
2253       if (cur_deq < SESSION_CONN_HDR_LEN)
2254         {
2255           fifo_offset = max_deq;
2256           max_packets = i + 1;
2257           QUIC_ERR ("Fifo %d < header size in RX", cur_deq);
2258           break;
2259         }
2260       rv = quic_process_one_rx_packet (udp_session_handle, f,
2261                                        fifo_offset, &packets_ctx[i]);
2262       if (packets_ctx[i].ptype != QUIC_PACKET_TYPE_MIGRATE)
2263         fifo_offset += SESSION_CONN_HDR_LEN + packets_ctx[i].ph.data_length;
2264       if (rv)
2265         {
2266           max_packets = i + 1;
2267           break;
2268         }
2269     }
2270
2271   quic_crypto_batch_rx_packets (&qm->
2272                                 wrk_ctx[thread_index].crypto_context_batch);
2273
2274   for (i = 0; i < max_packets; i++)
2275     {
2276       switch (packets_ctx[i].ptype)
2277         {
2278         case QUIC_PACKET_TYPE_RECEIVE:
2279           ctx = quic_ctx_get (packets_ctx[i].ctx_index, thread_index);
2280           rv = quicly_receive (ctx->conn, NULL, &packets_ctx[i].sa,
2281                                &packets_ctx[i].packet);
2282           if (rv && rv != QUICLY_ERROR_PACKET_IGNORED)
2283             {
2284               QUIC_ERR ("quicly_receive return error %U",
2285                         quic_format_err, rv);
2286             }
2287           break;
2288         case QUIC_PACKET_TYPE_ACCEPT:
2289           quic_accept_connection (&packets_ctx[i]);
2290           break;
2291         case QUIC_PACKET_TYPE_RESET:
2292           quic_reset_connection (udp_session_handle, &packets_ctx[i]);
2293           break;
2294         }
2295     }
2296   ctx = prev_ctx = NULL;
2297   for (i = 0; i < max_packets; i++)
2298     {
2299       prev_ctx = ctx;
2300       switch (packets_ctx[i].ptype)
2301         {
2302         case QUIC_PACKET_TYPE_RECEIVE:
2303           ctx = quic_ctx_get (packets_ctx[i].ctx_index,
2304                               packets_ctx[i].thread_index);
2305           quic_check_quic_session_connected (ctx);
2306           ctx = quic_ctx_get (packets_ctx[i].ctx_index,
2307                               packets_ctx[i].thread_index);
2308           break;
2309         case QUIC_PACKET_TYPE_ACCEPT:
2310           ctx = quic_ctx_get (packets_ctx[i].ctx_index,
2311                               packets_ctx[i].thread_index);
2312           break;
2313         default:
2314           continue;             /* this exits the for loop since other packet types are
2315                                    necessarily the last in the batch */
2316         }
2317       if (ctx != prev_ctx)
2318         quic_send_packets (ctx);
2319     }
2320
2321   udp_session = session_get_from_handle (udp_session_handle);   /*  session alloc might have happened */
2322   f = udp_session->rx_fifo;
2323   svm_fifo_dequeue_drop (f, fifo_offset);
2324
2325   if (svm_fifo_max_dequeue (f))
2326     goto rx_start;
2327
2328   return 0;
2329 }
2330
2331 always_inline void
2332 quic_common_get_transport_endpoint (quic_ctx_t * ctx,
2333                                     transport_endpoint_t * tep, u8 is_lcl)
2334 {
2335   session_t *udp_session;
2336   if (!quic_ctx_is_stream (ctx))
2337     {
2338       udp_session = session_get_from_handle (ctx->udp_session_handle);
2339       session_get_endpoint (udp_session, tep, is_lcl);
2340     }
2341 }
2342
2343 static void
2344 quic_get_transport_listener_endpoint (u32 listener_index,
2345                                       transport_endpoint_t * tep, u8 is_lcl)
2346 {
2347   quic_ctx_t *ctx;
2348   app_listener_t *app_listener;
2349   session_t *udp_listen_session;
2350   ctx = quic_ctx_get (listener_index, vlib_get_thread_index ());
2351   if (quic_ctx_is_listener (ctx))
2352     {
2353       app_listener = app_listener_get_w_handle (ctx->udp_session_handle);
2354       udp_listen_session = app_listener_get_session (app_listener);
2355       return session_get_endpoint (udp_listen_session, tep, is_lcl);
2356     }
2357   quic_common_get_transport_endpoint (ctx, tep, is_lcl);
2358 }
2359
2360 static void
2361 quic_get_transport_endpoint (u32 ctx_index, u32 thread_index,
2362                              transport_endpoint_t * tep, u8 is_lcl)
2363 {
2364   quic_ctx_t *ctx;
2365   ctx = quic_ctx_get (ctx_index, thread_index);
2366   quic_common_get_transport_endpoint (ctx, tep, is_lcl);
2367 }
2368
2369 /* *INDENT-OFF* */
2370 static session_cb_vft_t quic_app_cb_vft = {
2371   .session_accept_callback = quic_udp_session_accepted_callback,
2372   .session_disconnect_callback = quic_udp_session_disconnect_callback,
2373   .session_connected_callback = quic_udp_session_connected_callback,
2374   .session_reset_callback = quic_udp_session_reset_callback,
2375   .session_migrate_callback = quic_udp_session_migrate_callback,
2376   .add_segment_callback = quic_add_segment_callback,
2377   .del_segment_callback = quic_del_segment_callback,
2378   .builtin_app_rx_callback = quic_udp_session_rx_callback,
2379   .session_cleanup_callback = quic_udp_session_cleanup_callback,
2380   .app_cert_key_pair_delete_callback = quic_app_cert_key_pair_delete_callback,
2381 };
2382
2383 static const transport_proto_vft_t quic_proto = {
2384   .connect = quic_connect,
2385   .close = quic_proto_on_close,
2386   .start_listen = quic_start_listen,
2387   .stop_listen = quic_stop_listen,
2388   .get_connection = quic_connection_get,
2389   .get_listener = quic_listener_get,
2390   .update_time = quic_update_time,
2391   .app_rx_evt = quic_custom_app_rx_callback,
2392   .custom_tx = quic_custom_tx_callback,
2393   .format_connection = format_quic_connection,
2394   .format_half_open = format_quic_half_open,
2395   .format_listener = format_quic_listener,
2396   .get_transport_endpoint = quic_get_transport_endpoint,
2397   .get_transport_listener_endpoint = quic_get_transport_listener_endpoint,
2398   .transport_options = {
2399     .name = "quic",
2400     .short_name = "Q",
2401     .tx_type = TRANSPORT_TX_INTERNAL,
2402     .service_type = TRANSPORT_SERVICE_APP,
2403   },
2404 };
2405 /* *INDENT-ON* */
2406
2407 static quicly_stream_open_t on_stream_open = { quic_on_stream_open };
2408 static quicly_closed_by_peer_t on_closed_by_peer = { quic_on_closed_by_peer };
2409 static quicly_now_t quicly_vpp_now_cb = { quic_get_time };
2410
2411 static void
2412 quic_register_cipher_suite (crypto_engine_type_t type,
2413                             ptls_cipher_suite_t ** ciphers)
2414 {
2415   quic_main_t *qm = &quic_main;
2416   vec_validate (qm->quic_ciphers, type);
2417   clib_bitmap_set (qm->available_crypto_engines, type, 1);
2418   qm->quic_ciphers[type] = ciphers;
2419 }
2420
2421 static void
2422 quic_update_fifo_size ()
2423 {
2424   quic_main_t *qm = &quic_main;
2425   segment_manager_props_t *seg_mgr_props =
2426     application_get_segment_manager_properties (qm->app_index);
2427
2428   if (!seg_mgr_props)
2429     {
2430       clib_warning
2431         ("error while getting segment_manager_props_t, can't update fifo-size");
2432       return;
2433     }
2434
2435   seg_mgr_props->tx_fifo_size = qm->udp_fifo_size;
2436   seg_mgr_props->rx_fifo_size = qm->udp_fifo_size;
2437 }
2438
2439 static clib_error_t *
2440 quic_init (vlib_main_t * vm)
2441 {
2442   u32 segment_size = 256 << 20;
2443   vlib_thread_main_t *vtm = vlib_get_thread_main ();
2444   tw_timer_wheel_1t_3w_1024sl_ov_t *tw;
2445   vnet_app_attach_args_t _a, *a = &_a;
2446   u64 options[APP_OPTIONS_N_OPTIONS];
2447   quic_main_t *qm = &quic_main;
2448   u32 num_threads, i;
2449
2450   num_threads = 1 /* main thread */  + vtm->n_threads;
2451
2452   clib_memset (a, 0, sizeof (*a));
2453   clib_memset (options, 0, sizeof (options));
2454
2455   a->session_cb_vft = &quic_app_cb_vft;
2456   a->api_client_index = APP_INVALID_INDEX;
2457   a->options = options;
2458   a->name = format (0, "quic");
2459   a->options[APP_OPTIONS_SEGMENT_SIZE] = segment_size;
2460   a->options[APP_OPTIONS_ADD_SEGMENT_SIZE] = segment_size;
2461   a->options[APP_OPTIONS_RX_FIFO_SIZE] = qm->udp_fifo_size;
2462   a->options[APP_OPTIONS_TX_FIFO_SIZE] = qm->udp_fifo_size;
2463   a->options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] = qm->udp_fifo_prealloc;
2464   a->options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_IS_BUILTIN;
2465   a->options[APP_OPTIONS_FLAGS] |= APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
2466   a->options[APP_OPTIONS_FLAGS] |= APP_OPTIONS_FLAGS_IS_TRANSPORT_APP;
2467
2468   if (vnet_application_attach (a))
2469     {
2470       clib_warning ("failed to attach quic app");
2471       return clib_error_return (0, "failed to attach quic app");
2472     }
2473
2474   vec_validate (qm->ctx_pool, num_threads - 1);
2475   vec_validate (qm->wrk_ctx, num_threads - 1);
2476
2477   for (i = 0; i < num_threads; i++)
2478     {
2479       qm->wrk_ctx[i].next_cid.thread_id = i;
2480       tw = &qm->wrk_ctx[i].timer_wheel;
2481       tw_timer_wheel_init_1t_3w_1024sl_ov (tw, quic_expired_timers_dispatch,
2482                                            1e-3 /* timer period 1ms */ , ~0);
2483       tw->last_run_time = vlib_time_now (vlib_get_main ());
2484       clib_bihash_init_24_8 (&qm->wrk_ctx[i].crypto_context_hash,
2485                              "quic crypto contexts", 64, 128 << 10);
2486
2487       qm->wrk_ctx[i].crypto_context_batch.nb_rx_packets = 0;
2488       qm->wrk_ctx[i].crypto_context_batch.nb_tx_packets = 0;
2489     }
2490
2491   clib_bihash_init_16_8 (&qm->connection_hash, "quic connections", 1024,
2492                          4 << 20);
2493
2494   qm->app_index = a->app_index;
2495   qm->tstamp_ticks_per_clock = vm->clib_time.seconds_per_clock
2496     / QUIC_TSTAMP_RESOLUTION;
2497   qm->session_cache.super.cb = quic_encrypt_ticket_cb;
2498
2499   transport_register_protocol (TRANSPORT_PROTO_QUIC, &quic_proto,
2500                                FIB_PROTOCOL_IP4, ~0);
2501   transport_register_protocol (TRANSPORT_PROTO_QUIC, &quic_proto,
2502                                FIB_PROTOCOL_IP6, ~0);
2503
2504   clib_bitmap_alloc (qm->available_crypto_engines,
2505                      app_crypto_engine_n_types ());
2506   quic_register_cipher_suite (CRYPTO_ENGINE_VPP, quic_crypto_cipher_suites);
2507   quic_register_cipher_suite (CRYPTO_ENGINE_PICOTLS,
2508                               ptls_openssl_cipher_suites);
2509   qm->default_crypto_engine = CRYPTO_ENGINE_VPP;
2510   qm->max_packets_per_key = DEFAULT_MAX_PACKETS_PER_KEY;
2511   clib_rwlock_init (&qm->crypto_keys_quic_rw_lock);
2512
2513   vnet_crypto_main_t *cm = &crypto_main;
2514   if (vec_len (cm->engines) == 0)
2515     qm->vnet_crypto_enabled = 0;
2516   else
2517     qm->vnet_crypto_enabled = 1;
2518
2519   vec_free (a->name);
2520   return 0;
2521 }
2522
2523 VLIB_INIT_FUNCTION (quic_init);
2524
2525 static clib_error_t *
2526 quic_plugin_crypto_command_fn (vlib_main_t * vm,
2527                                unformat_input_t * input,
2528                                vlib_cli_command_t * cmd)
2529 {
2530   quic_main_t *qm = &quic_main;
2531   if (unformat_check_input (input) == UNFORMAT_END_OF_INPUT)
2532     return clib_error_return (0, "unknown input '%U'",
2533                               format_unformat_error, input);
2534   if (unformat (input, "vpp"))
2535     qm->default_crypto_engine = CRYPTO_ENGINE_VPP;
2536   else if (unformat (input, "picotls"))
2537     qm->default_crypto_engine = CRYPTO_ENGINE_PICOTLS;
2538   else
2539     return clib_error_return (0, "unknown input '%U'",
2540                               format_unformat_error, input);
2541   return 0;
2542 }
2543
2544 u64 quic_fifosize = 0;
2545 static clib_error_t *
2546 quic_plugin_set_fifo_size_command_fn (vlib_main_t * vm,
2547                                       unformat_input_t * input,
2548                                       vlib_cli_command_t * cmd)
2549 {
2550   quic_main_t *qm = &quic_main;
2551   unformat_input_t _line_input, *line_input = &_line_input;
2552   uword tmp;
2553
2554   if (!unformat_user (input, unformat_line_input, line_input))
2555     return 0;
2556
2557   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
2558     {
2559       if (unformat (line_input, "%U", unformat_memory_size, &tmp))
2560         {
2561           if (tmp >= 0x100000000ULL)
2562             {
2563               return clib_error_return
2564                 (0, "fifo-size %llu (0x%llx) too large", tmp, tmp);
2565             }
2566           qm->udp_fifo_size = tmp;
2567           quic_update_fifo_size ();
2568         }
2569       else
2570         return clib_error_return (0, "unknown input '%U'",
2571                                   format_unformat_error, line_input);
2572     }
2573
2574   return 0;
2575 }
2576
2577 static inline u64
2578 quic_get_counter_value (u32 event_code)
2579 {
2580   vlib_node_t *n;
2581   vlib_main_t *vm;
2582   vlib_error_main_t *em;
2583
2584   u32 code, i;
2585   u64 c, sum = 0;
2586   int index = 0;
2587
2588   vm = vlib_get_main ();
2589   em = &vm->error_main;
2590   n = vlib_get_node (vm, quic_input_node.index);
2591   code = event_code;
2592   /* *INDENT-OFF* */
2593   foreach_vlib_main(({
2594     em = &this_vlib_main->error_main;
2595     i = n->error_heap_index + code;
2596     c = em->counters[i];
2597
2598     if (i < vec_len (em->counters_last_clear))
2599        c -= em->counters_last_clear[i];
2600     sum += c;
2601     index++;
2602   }));
2603   /* *INDENT-ON* */
2604   return sum;
2605 }
2606
2607 static void
2608 quic_show_aggregated_stats (vlib_main_t * vm)
2609 {
2610   u32 num_workers = vlib_num_workers ();
2611   quic_main_t *qm = &quic_main;
2612   quic_ctx_t *ctx = NULL;
2613   quicly_stats_t st, agg_stats;
2614   u32 i, nconn = 0, nstream = 0;
2615
2616   clib_memset (&agg_stats, 0, sizeof (agg_stats));
2617   for (i = 0; i < num_workers + 1; i++)
2618     {
2619       /* *INDENT-OFF* */
2620       pool_foreach (ctx, qm->ctx_pool[i],
2621       ({
2622         if (quic_ctx_is_conn (ctx) && ctx->conn)
2623           {
2624             quicly_get_stats (ctx->conn, &st);
2625             agg_stats.rtt.smoothed += st.rtt.smoothed;
2626             agg_stats.rtt.minimum += st.rtt.minimum;
2627             agg_stats.rtt.variance += st.rtt.variance;
2628             agg_stats.num_packets.received += st.num_packets.received;
2629             agg_stats.num_packets.sent += st.num_packets.sent;
2630             agg_stats.num_packets.lost += st.num_packets.lost;
2631             agg_stats.num_packets.ack_received += st.num_packets.ack_received;
2632             agg_stats.num_bytes.received += st.num_bytes.received;
2633             agg_stats.num_bytes.sent += st.num_bytes.sent;
2634             nconn++;
2635           }
2636         else if (quic_ctx_is_stream (ctx))
2637           nstream++;
2638       }));
2639       /* *INDENT-ON* */
2640     }
2641   vlib_cli_output (vm, "-------- Connections --------");
2642   vlib_cli_output (vm, "Current:         %u", nconn);
2643   vlib_cli_output (vm, "Opened:          %d",
2644                    quic_get_counter_value (QUIC_ERROR_OPENED_CONNECTION));
2645   vlib_cli_output (vm, "Closed:          %d",
2646                    quic_get_counter_value (QUIC_ERROR_CLOSED_CONNECTION));
2647   vlib_cli_output (vm, "---------- Streams ----------");
2648   vlib_cli_output (vm, "Current:         %u", nstream);
2649   vlib_cli_output (vm, "Opened:          %d",
2650                    quic_get_counter_value (QUIC_ERROR_OPENED_STREAM));
2651   vlib_cli_output (vm, "Closed:          %d",
2652                    quic_get_counter_value (QUIC_ERROR_CLOSED_STREAM));
2653   vlib_cli_output (vm, "---------- Packets ----------");
2654   vlib_cli_output (vm, "RX Total:        %d",
2655                    quic_get_counter_value (QUIC_ERROR_RX_PACKETS));
2656   vlib_cli_output (vm, "RX 0RTT:         %d",
2657                    quic_get_counter_value (QUIC_ERROR_ZERO_RTT_RX_PACKETS));
2658   vlib_cli_output (vm, "RX 1RTT:         %d",
2659                    quic_get_counter_value (QUIC_ERROR_ONE_RTT_RX_PACKETS));
2660   vlib_cli_output (vm, "TX Total:        %d",
2661                    quic_get_counter_value (QUIC_ERROR_TX_PACKETS));
2662   vlib_cli_output (vm, "----------- Stats -----------");
2663   vlib_cli_output (vm, "Min      RTT     %f",
2664                    nconn > 0 ? agg_stats.rtt.minimum / nconn : 0);
2665   vlib_cli_output (vm, "Smoothed RTT     %f",
2666                    nconn > 0 ? agg_stats.rtt.smoothed / nconn : 0);
2667   vlib_cli_output (vm, "Variance on RTT  %f",
2668                    nconn > 0 ? agg_stats.rtt.variance / nconn : 0);
2669   vlib_cli_output (vm, "Packets Received %lu",
2670                    agg_stats.num_packets.received);
2671   vlib_cli_output (vm, "Packets Sent     %lu", agg_stats.num_packets.sent);
2672   vlib_cli_output (vm, "Packets Lost     %lu", agg_stats.num_packets.lost);
2673   vlib_cli_output (vm, "Packets Acks     %lu",
2674                    agg_stats.num_packets.ack_received);
2675   vlib_cli_output (vm, "RX bytes         %lu", agg_stats.num_bytes.received);
2676   vlib_cli_output (vm, "TX bytes         %lu", agg_stats.num_bytes.sent);
2677 }
2678
2679 static u8 *
2680 quic_format_quicly_conn_id (u8 * s, va_list * args)
2681 {
2682   quicly_cid_plaintext_t *mid = va_arg (*args, quicly_cid_plaintext_t *);
2683   s = format (s, "C%x_%x", mid->master_id, mid->thread_id);
2684   return s;
2685 }
2686
2687 static u8 *
2688 quic_format_quicly_stream_id (u8 * s, va_list * args)
2689 {
2690   quicly_stream_t *stream = va_arg (*args, quicly_stream_t *);
2691   s =
2692     format (s, "%U S%lx", quic_format_quicly_conn_id,
2693             quicly_get_master_id (stream->conn), stream->stream_id);
2694   return s;
2695 }
2696
2697 static u8 *
2698 quic_format_listener_ctx (u8 * s, va_list * args)
2699 {
2700   quic_ctx_t *ctx = va_arg (*args, quic_ctx_t *);
2701   s = format (s, "[#%d][%x][Listener]", ctx->c_thread_index, ctx->c_c_index);
2702   return s;
2703 }
2704
2705 static u8 *
2706 quic_format_connection_ctx (u8 * s, va_list * args)
2707 {
2708   quic_ctx_t *ctx = va_arg (*args, quic_ctx_t *);
2709   quicly_stats_t quicly_stats;
2710
2711   s = format (s, "[#%d][%x]", ctx->c_thread_index, ctx->c_c_index);
2712
2713   if (!ctx->conn)
2714     {
2715       s = format (s, "- no conn -\n");
2716       return s;
2717     }
2718   s = format (s, "[%U]",
2719               quic_format_quicly_conn_id, quicly_get_master_id (ctx->conn));
2720   quicly_get_stats (ctx->conn, &quicly_stats);
2721
2722   s = format (s, "[RTT >%3d, ~%3d, V%3d, last %3d]",
2723               quicly_stats.rtt.minimum, quicly_stats.rtt.smoothed,
2724               quicly_stats.rtt.variance, quicly_stats.rtt.latest);
2725   s = format (s, " TX:%d RX:%d loss:%d ack:%d",
2726               quicly_stats.num_packets.sent,
2727               quicly_stats.num_packets.received,
2728               quicly_stats.num_packets.lost,
2729               quicly_stats.num_packets.ack_received);
2730   return s;
2731 }
2732
2733 static u8 *
2734 quic_format_stream_ctx (u8 * s, va_list * args)
2735 {
2736   quic_ctx_t *ctx = va_arg (*args, quic_ctx_t *);
2737   session_t *stream_session;
2738   quicly_stream_t *stream = ctx->stream;
2739   u32 txs, rxs;
2740
2741   s = format (s, "[#%d][%x]", ctx->c_thread_index, ctx->c_c_index);
2742   s = format (s, "[%U]", quic_format_quicly_stream_id, stream);
2743
2744   stream_session = session_get_if_valid (ctx->c_s_index, ctx->c_thread_index);
2745   if (!stream_session)
2746     {
2747       s = format (s, "- no session -\n");
2748       return s;
2749     }
2750   txs = svm_fifo_max_dequeue (stream_session->tx_fifo);
2751   rxs = svm_fifo_max_dequeue (stream_session->rx_fifo);
2752   s = format (s, "[rx %d tx %d]\n", rxs, txs);
2753   return s;
2754 }
2755
2756 static clib_error_t *
2757 quic_show_connections_command_fn (vlib_main_t * vm,
2758                                   unformat_input_t * input,
2759                                   vlib_cli_command_t * cmd)
2760 {
2761   unformat_input_t _line_input, *line_input = &_line_input;
2762   u8 show_listeners = 0, show_conn = 0, show_stream = 0;
2763   u32 num_workers = vlib_num_workers ();
2764   quic_main_t *qm = &quic_main;
2765   clib_error_t *error = 0;
2766   quic_ctx_t *ctx = NULL;
2767
2768   session_cli_return_if_not_enabled ();
2769
2770   if (!unformat_user (input, unformat_line_input, line_input))
2771     {
2772       quic_show_aggregated_stats (vm);
2773       return 0;
2774     }
2775
2776   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
2777     {
2778       if (unformat (line_input, "listener"))
2779         show_listeners = 1;
2780       else if (unformat (line_input, "conn"))
2781         show_conn = 1;
2782       else if (unformat (line_input, "stream"))
2783         show_stream = 1;
2784       else
2785         {
2786           error = clib_error_return (0, "unknown input `%U'",
2787                                      format_unformat_error, line_input);
2788           goto done;
2789         }
2790     }
2791
2792   for (int i = 0; i < num_workers + 1; i++)
2793     {
2794       /* *INDENT-OFF* */
2795       pool_foreach (ctx, qm->ctx_pool[i],
2796       ({
2797         if (quic_ctx_is_stream (ctx) && show_stream)
2798           vlib_cli_output (vm, "%U", quic_format_stream_ctx, ctx);
2799         else if (quic_ctx_is_listener (ctx) && show_listeners)
2800           vlib_cli_output (vm, "%U", quic_format_listener_ctx, ctx);
2801         else if (quic_ctx_is_conn (ctx) && show_conn)
2802           vlib_cli_output (vm, "%U", quic_format_connection_ctx, ctx);
2803       }));
2804       /* *INDENT-ON* */
2805     }
2806
2807 done:
2808   unformat_free (line_input);
2809   return error;
2810 }
2811
2812 /* *INDENT-OFF* */
2813 VLIB_CLI_COMMAND (quic_plugin_crypto_command, static) =
2814 {
2815   .path = "quic set crypto api",
2816   .short_help = "quic set crypto api [picotls, vpp]",
2817   .function = quic_plugin_crypto_command_fn,
2818 };
2819 VLIB_CLI_COMMAND(quic_plugin_set_fifo_size_command, static)=
2820 {
2821   .path = "quic set fifo-size",
2822   .short_help = "quic set fifo-size N[K|M|G] (default 64K)",
2823   .function = quic_plugin_set_fifo_size_command_fn,
2824 };
2825 VLIB_CLI_COMMAND(quic_show_ctx_command, static)=
2826 {
2827   .path = "show quic",
2828   .short_help = "show quic",
2829   .function = quic_show_connections_command_fn,
2830 };
2831 VLIB_CLI_COMMAND (quic_list_crypto_context_command, static) =
2832 {
2833   .path = "show quic crypto context",
2834   .short_help = "list quic crypto contextes",
2835   .function = quic_list_crypto_context_command_fn,
2836 };
2837 VLIB_CLI_COMMAND (quic_set_max_packets_per_key, static) =
2838 {
2839   .path = "set quic max_packets_per_key",
2840   .short_help = "set quic max_packets_per_key 16777216",
2841   .function = quic_set_max_packets_per_key_fn,
2842 };
2843 VLIB_PLUGIN_REGISTER () =
2844 {
2845   .version = VPP_BUILD_VER,
2846   .description = "Quic transport protocol",
2847   .default_disabled = 1,
2848 };
2849 /* *INDENT-ON* */
2850
2851 static clib_error_t *
2852 quic_config_fn (vlib_main_t * vm, unformat_input_t * input)
2853 {
2854   quic_main_t *qm = &quic_main;
2855   uword tmp;
2856   u32 i;
2857
2858   qm->udp_fifo_size = QUIC_DEFAULT_FIFO_SIZE;
2859   qm->udp_fifo_prealloc = 0;
2860   qm->connection_timeout = QUIC_DEFAULT_CONN_TIMEOUT;
2861   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2862     {
2863       if (unformat (input, "fifo-size %U", unformat_memory_size, &tmp))
2864         {
2865           if (tmp >= 0x100000000ULL)
2866             {
2867               return clib_error_return (0,
2868                                         "fifo-size %llu (0x%llx) too large",
2869                                         tmp, tmp);
2870             }
2871           qm->udp_fifo_size = tmp;
2872         }
2873       else if (unformat (input, "conn-timeout %u", &i))
2874         qm->connection_timeout = i;
2875       else if (unformat (input, "fifo-prealloc %u", &i))
2876         qm->udp_fifo_prealloc = i;
2877       else
2878         return clib_error_return (0, "unknown input '%U'",
2879                                   format_unformat_error, input);
2880     }
2881
2882   return 0;
2883 }
2884
2885 VLIB_EARLY_CONFIG_FUNCTION (quic_config_fn, "quic");
2886
2887 static uword
2888 quic_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
2889               vlib_frame_t * frame)
2890 {
2891   return 0;
2892 }
2893
2894 /* *INDENT-OFF* */
2895 VLIB_REGISTER_NODE (quic_input_node) =
2896 {
2897   .function = quic_node_fn,
2898   .name = "quic-input",
2899   .vector_size = sizeof (u32),
2900   .type = VLIB_NODE_TYPE_INTERNAL,
2901   .n_errors = ARRAY_LEN (quic_error_strings),
2902   .error_strings = quic_error_strings,
2903 };
2904 /* *INDENT-ON* */
2905
2906 /*
2907  * fd.io coding-style-patch-verification: ON
2908  *
2909  * Local Variables:
2910  * eval: (c-set-style "gnu")
2911  * End:
2912  */