quic: free qctx after udp cleanup
[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 #include <quic/quic_crypto.h>
30
31 #include <quicly/defaults.h>
32
33 static char *quic_error_strings[] = {
34 #define quic_error(n,s) s,
35 #include "quic_error.def"
36 #undef quic_error
37 };
38
39 static quic_main_t quic_main;
40 static void quic_update_timer (quic_ctx_t * ctx);
41 static int quic_check_quic_session_connected (quic_ctx_t * ctx);
42
43 /*  Helper functions */
44
45 static u32
46 quic_ctx_alloc (u32 thread_index)
47 {
48   quic_main_t *qm = &quic_main;
49   quic_ctx_t *ctx;
50
51   pool_get (qm->ctx_pool[thread_index], ctx);
52
53   clib_memset (ctx, 0, sizeof (quic_ctx_t));
54   ctx->c_thread_index = thread_index;
55   ctx->timer_handle = QUIC_TIMER_HANDLE_INVALID;
56   QUIC_DBG (3, "Allocated quic_ctx %u on thread %u",
57             ctx - qm->ctx_pool[thread_index], thread_index);
58   return ctx - qm->ctx_pool[thread_index];
59 }
60
61 static void
62 quic_ctx_free (quic_ctx_t * ctx)
63 {
64   QUIC_DBG (2, "Free ctx %u %x", ctx->c_thread_index, ctx->c_c_index);
65   u32 thread_index = ctx->c_thread_index;
66   ASSERT (ctx->timer_handle == QUIC_TIMER_HANDLE_INVALID);
67   if (CLIB_DEBUG)
68     clib_memset (ctx, 0xfb, sizeof (*ctx));
69   pool_put (quic_main.ctx_pool[thread_index], ctx);
70 }
71
72 static quic_ctx_t *
73 quic_ctx_get (u32 ctx_index, u32 thread_index)
74 {
75   return pool_elt_at_index (quic_main.ctx_pool[thread_index], ctx_index);
76 }
77
78 static quic_ctx_t *
79 quic_ctx_get_if_valid (u32 ctx_index, u32 thread_index)
80 {
81   if (pool_is_free_index (quic_main.ctx_pool[thread_index], ctx_index))
82     return 0;
83   return pool_elt_at_index (quic_main.ctx_pool[thread_index], ctx_index);
84 }
85
86 static quic_ctx_t *
87 quic_get_conn_ctx (quicly_conn_t * conn)
88 {
89   u64 conn_data;
90   conn_data = (u64) * quicly_get_data (conn);
91   return quic_ctx_get (conn_data & UINT32_MAX, conn_data >> 32);
92 }
93
94 static void
95 quic_store_conn_ctx (quicly_conn_t * conn, quic_ctx_t * ctx)
96 {
97   *quicly_get_data (conn) =
98     (void *) (((u64) ctx->c_thread_index) << 32 | (u64) ctx->c_c_index);
99 }
100
101 static inline int
102 quic_ctx_is_stream (quic_ctx_t * ctx)
103 {
104   return (ctx->flags & QUIC_F_IS_STREAM);
105 }
106
107 static inline int
108 quic_ctx_is_listener (quic_ctx_t * ctx)
109 {
110   return (ctx->flags & QUIC_F_IS_LISTENER);
111 }
112
113 static session_t *
114 get_stream_session_from_stream (quicly_stream_t * stream)
115 {
116   quic_ctx_t *ctx;
117   quic_stream_data_t *stream_data;
118
119   stream_data = (quic_stream_data_t *) stream->data;
120   ctx = quic_ctx_get (stream_data->ctx_id, stream_data->thread_index);
121   return session_get (ctx->c_s_index, stream_data->thread_index);
122 }
123
124 static inline void
125 quic_make_connection_key (clib_bihash_kv_16_8_t * kv,
126                           const quicly_cid_plaintext_t * id)
127 {
128   kv->key[0] = ((u64) id->master_id) << 32 | (u64) id->thread_id;
129   kv->key[1] = id->node_id;
130 }
131
132 static int
133 quic_sendable_packet_count (session_t * udp_session)
134 {
135   u32 max_enqueue;
136   u32 packet_size = QUIC_MAX_PACKET_SIZE + SESSION_CONN_HDR_LEN;
137   max_enqueue = svm_fifo_max_enqueue (udp_session->tx_fifo);
138   return clib_min (max_enqueue / packet_size, QUIC_SEND_PACKET_VEC_SIZE);
139 }
140
141 static quicly_context_t *
142 quic_get_quicly_ctx_from_ctx (quic_ctx_t * ctx)
143 {
144   return ctx->quicly_ctx;
145 }
146
147 static quicly_context_t *
148 quic_get_quicly_ctx_from_udp (u64 udp_session_handle)
149 {
150   session_t *udp_session = session_get_from_handle (udp_session_handle);
151   quic_ctx_t *ctx =
152     quic_ctx_get (udp_session->opaque, udp_session->thread_index);
153   return ctx->quicly_ctx;
154 }
155
156 static inline void
157 quic_set_udp_tx_evt (session_t * udp_session)
158 {
159   int rv = 0;
160   if (svm_fifo_set_event (udp_session->tx_fifo))
161     rv = session_send_io_evt_to_thread (udp_session->tx_fifo,
162                                         SESSION_IO_EVT_TX);
163   if (PREDICT_FALSE (rv))
164     clib_warning ("Event enqueue errored %d", rv);
165 }
166
167 static inline void
168 quic_stop_ctx_timer (quic_ctx_t * ctx)
169 {
170   tw_timer_wheel_1t_3w_1024sl_ov_t *tw;
171   if (ctx->timer_handle == QUIC_TIMER_HANDLE_INVALID)
172     return;
173   tw = &quic_main.wrk_ctx[ctx->c_thread_index].timer_wheel;
174   tw_timer_stop_1t_3w_1024sl_ov (tw, ctx->timer_handle);
175   ctx->timer_handle = QUIC_TIMER_HANDLE_INVALID;
176   QUIC_DBG (4, "Stopping timer for ctx %u", ctx->c_c_index);
177 }
178
179 /* QUIC protocol actions */
180
181 static void
182 quic_ack_rx_data (session_t * stream_session)
183 {
184   u32 max_deq;
185   quic_ctx_t *sctx;
186   svm_fifo_t *f;
187   quicly_stream_t *stream;
188   quic_stream_data_t *stream_data;
189
190   sctx = quic_ctx_get (stream_session->connection_index,
191                        stream_session->thread_index);
192   ASSERT (quic_ctx_is_stream (sctx));
193   stream = sctx->stream;
194   stream_data = (quic_stream_data_t *) stream->data;
195
196   f = stream_session->rx_fifo;
197   max_deq = svm_fifo_max_dequeue (f);
198
199   ASSERT (stream_data->app_rx_data_len >= max_deq);
200   quicly_stream_sync_recvbuf (stream, stream_data->app_rx_data_len - max_deq);
201   QUIC_DBG (3, "Acking %u bytes", stream_data->app_rx_data_len - max_deq);
202   stream_data->app_rx_data_len = max_deq;
203 }
204
205 static void
206 quic_disconnect_transport (quic_ctx_t * ctx)
207 {
208   QUIC_DBG (2, "Disconnecting transport 0x%lx", ctx->udp_session_handle);
209   vnet_disconnect_args_t a = {
210     .handle = ctx->udp_session_handle,
211     .app_index = quic_main.app_index,
212   };
213
214   if (vnet_disconnect_session (&a))
215     clib_warning ("UDP session 0x%lx disconnect errored",
216                   ctx->udp_session_handle);
217 }
218
219 static void
220 quic_connection_delete (quic_ctx_t * ctx)
221 {
222   clib_bihash_kv_16_8_t kv;
223   quicly_conn_t *conn;
224
225   QUIC_DBG (2, "Deleting connection %u", ctx->c_c_index);
226
227   ASSERT (!quic_ctx_is_stream (ctx));
228   quic_stop_ctx_timer (ctx);
229
230   /*  Delete the connection from the connection map */
231   conn = ctx->conn;
232   quic_make_connection_key (&kv, quicly_get_master_id (conn));
233   QUIC_DBG (2, "Deleting conn with id %lu %lu from map", kv.key[0],
234             kv.key[1]);
235   clib_bihash_add_del_16_8 (&quic_main.connection_hash, &kv, 0 /* is_add */ );
236
237   quic_disconnect_transport (ctx);
238
239   if (ctx->conn)
240     quicly_free (ctx->conn);
241   ctx->conn = NULL;
242   session_transport_delete_notify (&ctx->connection);
243 }
244
245 void
246 quic_increment_counter (u8 evt, u8 val)
247 {
248   vlib_main_t *vm = vlib_get_main ();
249   vlib_node_increment_counter (vm, quic_input_node.index, evt, val);
250 }
251
252 /**
253  * Called when quicly return an error
254  * This function interacts tightly with quic_proto_on_close
255  */
256 static void
257 quic_connection_closed (quic_ctx_t * ctx)
258 {
259   QUIC_DBG (2, "QUIC connection %u/%u closed", ctx->c_thread_index,
260             ctx->c_c_index);
261
262   /* TODO if connection is not established, just delete the session? */
263   /* Actually should send connect or accept error */
264
265   switch (ctx->conn_state)
266     {
267     case QUIC_CONN_STATE_READY:
268       /* Error on an opened connection (timeout...)
269          This puts the session in closing state, we should receive a notification
270          when the app has closed its session */
271       session_transport_reset_notify (&ctx->connection);
272       /* This ensures we delete the connection when the app confirms the close */
273       ctx->conn_state = QUIC_CONN_STATE_PASSIVE_CLOSING_QUIC_CLOSED;
274       break;
275     case QUIC_CONN_STATE_PASSIVE_CLOSING:
276       ctx->conn_state = QUIC_CONN_STATE_PASSIVE_CLOSING_QUIC_CLOSED;
277       /* quic_proto_on_close will eventually be called when the app confirms the close
278          , we delete the connection at that point */
279       break;
280     case QUIC_CONN_STATE_PASSIVE_CLOSING_APP_CLOSED:
281       /* App already confirmed close, we can delete the connection */
282       quic_connection_delete (ctx);
283       break;
284     case QUIC_CONN_STATE_PASSIVE_CLOSING_QUIC_CLOSED:
285       QUIC_DBG (0, "BUG");
286       break;
287     case QUIC_CONN_STATE_ACTIVE_CLOSING:
288       quic_connection_delete (ctx);
289       break;
290     default:
291       QUIC_DBG (0, "BUG %d", ctx->conn_state);
292       break;
293     }
294 }
295
296 static int
297 quic_send_datagram (session_t * udp_session, quicly_datagram_t * packet)
298 {
299   u32 max_enqueue;
300   session_dgram_hdr_t hdr;
301   u32 len, ret;
302   svm_fifo_t *f;
303   transport_connection_t *tc;
304
305   len = packet->data.len;
306   f = udp_session->tx_fifo;
307   tc = session_get_transport (udp_session);
308   max_enqueue = svm_fifo_max_enqueue (f);
309   if (max_enqueue < SESSION_CONN_HDR_LEN + len)
310     {
311       QUIC_DBG (1, "Too much data to send, max_enqueue %u, len %u",
312                 max_enqueue, len + SESSION_CONN_HDR_LEN);
313       return QUIC_ERROR_FULL_FIFO;
314     }
315
316   /*  Build packet header for fifo */
317   hdr.data_length = len;
318   hdr.data_offset = 0;
319   hdr.is_ip4 = tc->is_ip4;
320   clib_memcpy (&hdr.lcl_ip, &tc->lcl_ip, sizeof (ip46_address_t));
321   hdr.lcl_port = tc->lcl_port;
322
323   /*  Read dest address from quicly-provided sockaddr */
324   if (hdr.is_ip4)
325     {
326       ASSERT (packet->dest.sa.sa_family == AF_INET);
327       struct sockaddr_in *sa4 = (struct sockaddr_in *) &packet->dest.sa;
328       hdr.rmt_port = sa4->sin_port;
329       hdr.rmt_ip.ip4.as_u32 = sa4->sin_addr.s_addr;
330     }
331   else
332     {
333       ASSERT (packet->dest.sa.sa_family == AF_INET6);
334       struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *) &packet->dest.sa;
335       hdr.rmt_port = sa6->sin6_port;
336       clib_memcpy (&hdr.rmt_ip.ip6, &sa6->sin6_addr, 16);
337     }
338
339   ret = svm_fifo_enqueue (f, sizeof (hdr), (u8 *) & hdr);
340   if (ret != sizeof (hdr))
341     {
342       QUIC_DBG (1, "Not enough space to enqueue header");
343       return QUIC_ERROR_FULL_FIFO;
344     }
345   ret = svm_fifo_enqueue (f, len, packet->data.base);
346   if (ret != len)
347     {
348       QUIC_DBG (1, "Not enough space to enqueue payload");
349       return QUIC_ERROR_FULL_FIFO;
350     }
351
352   quic_increment_counter (QUIC_ERROR_TX_PACKETS, 1);
353
354   return 0;
355 }
356
357 static int
358 quic_send_packets (quic_ctx_t * ctx)
359 {
360   quicly_datagram_t *packets[QUIC_SEND_PACKET_VEC_SIZE];
361   session_t *udp_session;
362   quicly_conn_t *conn;
363   size_t num_packets, i, max_packets;
364   quicly_packet_allocator_t *pa;
365   quicly_context_t *quicly_context;
366   int err = 0;
367
368   /* We have sctx, get qctx */
369   if (quic_ctx_is_stream (ctx))
370     ctx = quic_ctx_get (ctx->quic_connection_ctx_id, ctx->c_thread_index);
371
372   ASSERT (!quic_ctx_is_stream (ctx));
373
374   udp_session = session_get_from_handle_if_valid (ctx->udp_session_handle);
375   if (!udp_session)
376     goto quicly_error;
377
378   conn = ctx->conn;
379
380   if (!conn)
381     return 0;
382
383   /* TODO : quicly can assert it can send min_packets up to 2 */
384   if (quic_sendable_packet_count (udp_session) < 2)
385     goto stop_sending;
386
387   quicly_context = quic_get_quicly_ctx_from_ctx (ctx);
388   if (!quicly_context)
389     {
390       clib_warning ("Tried to send packets on non existing app worker %u",
391                     ctx->parent_app_wrk_id);
392       quic_connection_delete (ctx);
393       return 1;
394     }
395   pa = quicly_context->packet_allocator;
396   do
397     {
398       max_packets = quic_sendable_packet_count (udp_session);
399       if (max_packets < 2)
400         break;
401       num_packets = max_packets;
402       if ((err = quicly_send (conn, packets, &num_packets)))
403         goto quicly_error;
404
405       for (i = 0; i != num_packets; ++i)
406         {
407           if ((err = quic_send_datagram (udp_session, packets[i])))
408             goto quicly_error;
409
410           pa->free_packet (pa, packets[i]);
411         }
412     }
413   while (num_packets > 0 && num_packets == max_packets);
414
415 stop_sending:
416   quic_set_udp_tx_evt (udp_session);
417
418   QUIC_DBG (3, "%u[TX] %u[RX]", svm_fifo_max_dequeue (udp_session->tx_fifo),
419             svm_fifo_max_dequeue (udp_session->rx_fifo));
420   quic_update_timer (ctx);
421   return 0;
422
423 quicly_error:
424   if (err && err != QUICLY_ERROR_PACKET_IGNORED
425       && err != QUICLY_ERROR_FREE_CONNECTION)
426     clib_warning ("Quic error '%U'.", quic_format_err, err);
427   quic_connection_closed (ctx);
428   return 1;
429 }
430
431 /* Quicly callbacks */
432
433 static void
434 quic_on_stream_destroy (quicly_stream_t * stream, int err)
435 {
436   quic_stream_data_t *stream_data = (quic_stream_data_t *) stream->data;
437   quic_ctx_t *sctx = quic_ctx_get (stream_data->ctx_id,
438                                    stream_data->thread_index);
439   session_t *stream_session = session_get (sctx->c_s_index,
440                                            sctx->c_thread_index);
441   QUIC_DBG (2, "DESTROYED_STREAM: session 0x%lx (%U)",
442             session_handle (stream_session), quic_format_err, err);
443
444   stream_session->session_state = SESSION_STATE_CLOSED;
445   session_transport_delete_notify (&sctx->connection);
446
447   quic_ctx_free (sctx);
448   clib_mem_free (stream->data);
449 }
450
451 static int
452 quic_on_stop_sending (quicly_stream_t * stream, int err)
453 {
454 #if QUIC_DEBUG >= 2
455   quic_stream_data_t *stream_data = (quic_stream_data_t *) stream->data;
456   quic_ctx_t *sctx = quic_ctx_get (stream_data->ctx_id,
457                                    stream_data->thread_index);
458   session_t *stream_session = session_get (sctx->c_s_index,
459                                            sctx->c_thread_index);
460   clib_warning ("(NOT IMPLEMENTD) STOP_SENDING: session 0x%lx (%U)",
461                 session_handle (stream_session), quic_format_err, err);
462 #endif
463   /* TODO : handle STOP_SENDING */
464   return 0;
465 }
466
467 static int
468 quic_on_receive_reset (quicly_stream_t * stream, int err)
469 {
470   quic_stream_data_t *stream_data = (quic_stream_data_t *) stream->data;
471   quic_ctx_t *sctx = quic_ctx_get (stream_data->ctx_id,
472                                    stream_data->thread_index);
473 #if QUIC_DEBUG >= 2
474   session_t *stream_session = session_get (sctx->c_s_index,
475                                            sctx->c_thread_index);
476   clib_warning ("RESET_STREAM: session 0x%lx (%U)",
477                 session_handle (stream_session), quic_format_err, err);
478 #endif
479   session_transport_closing_notify (&sctx->connection);
480   return 0;
481 }
482
483 static int
484 quic_on_receive (quicly_stream_t * stream, size_t off, const void *src,
485                  size_t len)
486 {
487   QUIC_DBG (3, "received data: %lu bytes, offset %lu", len, off);
488   u32 max_enq;
489   quic_ctx_t *sctx;
490   session_t *stream_session;
491   app_worker_t *app_wrk;
492   svm_fifo_t *f;
493   quic_stream_data_t *stream_data;
494   int rlen;
495
496   stream_data = (quic_stream_data_t *) stream->data;
497   sctx = quic_ctx_get (stream_data->ctx_id, stream_data->thread_index);
498   stream_session = session_get (sctx->c_s_index, stream_data->thread_index);
499   f = stream_session->rx_fifo;
500
501   max_enq = svm_fifo_max_enqueue_prod (f);
502   QUIC_DBG (3, "Enqueuing %u at off %u in %u space", len, off, max_enq);
503   if (off - stream_data->app_rx_data_len + len > max_enq)
504     {
505       QUIC_ERR ("Session [idx %u, app_wrk %u, thread %u, rx-fifo 0x%llx]: "
506                 "RX fifo is full (max_enq %u, len %u, "
507                 "app_rx_data_len %u, off %u, ToBeNQ %u)",
508                 stream_session->session_index,
509                 stream_session->app_wrk_index,
510                 stream_session->thread_index, f,
511                 max_enq, len, stream_data->app_rx_data_len, off,
512                 off - stream_data->app_rx_data_len + len);
513       return 1;
514     }
515   if (off == stream_data->app_rx_data_len)
516     {
517       /* Streams live on the same thread so (f, stream_data) should stay consistent */
518       rlen = svm_fifo_enqueue (f, len, (u8 *) src);
519       QUIC_DBG (3, "Session [idx %u, app_wrk %u, ti %u, rx-fifo 0x%llx]: "
520                 "Enqueuing %u (rlen %u) at off %u in %u space, ",
521                 stream_session->session_index,
522                 stream_session->app_wrk_index,
523                 stream_session->thread_index, f, len, rlen, off, max_enq);
524       stream_data->app_rx_data_len += rlen;
525       ASSERT (rlen >= len);
526       app_wrk = app_worker_get_if_valid (stream_session->app_wrk_index);
527       if (PREDICT_TRUE (app_wrk != 0))
528         app_worker_lock_and_send_event (app_wrk, stream_session,
529                                         SESSION_IO_EVT_RX);
530       quic_ack_rx_data (stream_session);
531     }
532   else
533     {
534       rlen = svm_fifo_enqueue_with_offset (f,
535                                            off - stream_data->app_rx_data_len,
536                                            len, (u8 *) src);
537       ASSERT (rlen == 0);
538     }
539   return 0;
540 }
541
542 void
543 quic_fifo_egress_shift (quicly_stream_t * stream, size_t delta)
544 {
545   session_t *stream_session;
546   svm_fifo_t *f;
547   int rv;
548
549   stream_session = get_stream_session_from_stream (stream);
550   f = stream_session->tx_fifo;
551
552   rv = svm_fifo_dequeue_drop (f, delta);
553   ASSERT (rv == delta);
554   quicly_stream_sync_sendbuf (stream, 0);
555 }
556
557 int
558 quic_fifo_egress_emit (quicly_stream_t * stream, size_t off, void *dst,
559                        size_t * len, int *wrote_all)
560 {
561   session_t *stream_session;
562   svm_fifo_t *f;
563   u32 deq_max, first_deq, max_rd_chunk, rem_offset;
564
565   stream_session = get_stream_session_from_stream (stream);
566   f = stream_session->tx_fifo;
567
568   QUIC_DBG (3, "Emitting %u, offset %u", *len, off);
569
570   deq_max = svm_fifo_max_dequeue_cons (f);
571   ASSERT (off <= deq_max);
572   if (off + *len < deq_max)
573     {
574       *wrote_all = 0;
575     }
576   else
577     {
578       *wrote_all = 1;
579       *len = deq_max - off;
580       QUIC_DBG (3, "Wrote ALL, %u", *len);
581     }
582
583   /* TODO, use something like : return svm_fifo_peek (f, off, *len, dst); */
584   max_rd_chunk = svm_fifo_max_read_chunk (f);
585
586   first_deq = 0;
587   if (off < max_rd_chunk)
588     {
589       first_deq = clib_min (*len, max_rd_chunk - off);
590       clib_memcpy_fast (dst, svm_fifo_head (f) + off, first_deq);
591     }
592
593   if (max_rd_chunk < off + *len)
594     {
595       rem_offset = max_rd_chunk < off ? off - max_rd_chunk : 0;
596       clib_memcpy_fast (dst + first_deq, f->head_chunk->data + rem_offset,
597                         *len - first_deq);
598     }
599
600   return 0;
601 }
602
603 static const quicly_stream_callbacks_t quic_stream_callbacks = {
604   .on_destroy = quic_on_stream_destroy,
605   .on_send_shift = quic_fifo_egress_shift,
606   .on_send_emit = quic_fifo_egress_emit,
607   .on_send_stop = quic_on_stop_sending,
608   .on_receive = quic_on_receive,
609   .on_receive_reset = quic_on_receive_reset
610 };
611
612 static int
613 quic_on_stream_open (quicly_stream_open_t * self, quicly_stream_t * stream)
614 {
615   session_t *stream_session, *quic_session;
616   quic_stream_data_t *stream_data;
617   app_worker_t *app_wrk;
618   quic_ctx_t *qctx, *sctx;
619   u32 sctx_id;
620   int rv;
621
622   QUIC_DBG (2, "on_stream_open called");
623   stream->data = clib_mem_alloc (sizeof (quic_stream_data_t));
624   stream->callbacks = &quic_stream_callbacks;
625   /* Notify accept on parent qsession, but only if this is not a locally
626    * initiated stream */
627   if (quicly_stream_is_self_initiated (stream))
628     return 0;
629
630   sctx_id = quic_ctx_alloc (vlib_get_thread_index ());
631   qctx = quic_get_conn_ctx (stream->conn);
632
633   /* Might need to signal that the connection is ready if the first thing the
634    * server does is open a stream */
635   quic_check_quic_session_connected (qctx);
636   /* ctx might be invalidated */
637   qctx = quic_get_conn_ctx (stream->conn);
638
639   stream_session = session_alloc (qctx->c_thread_index);
640   QUIC_DBG (2, "ACCEPTED stream_session 0x%lx ctx %u",
641             session_handle (stream_session), sctx_id);
642   sctx = quic_ctx_get (sctx_id, qctx->c_thread_index);
643   sctx->parent_app_wrk_id = qctx->parent_app_wrk_id;
644   sctx->parent_app_id = qctx->parent_app_id;
645   sctx->quic_connection_ctx_id = qctx->c_c_index;
646   sctx->c_c_index = sctx_id;
647   sctx->c_s_index = stream_session->session_index;
648   sctx->stream = stream;
649   sctx->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP;
650   sctx->flags |= QUIC_F_IS_STREAM;
651
652   stream_data = (quic_stream_data_t *) stream->data;
653   stream_data->ctx_id = sctx_id;
654   stream_data->thread_index = sctx->c_thread_index;
655   stream_data->app_rx_data_len = 0;
656
657   sctx->c_s_index = stream_session->session_index;
658   stream_session->session_state = SESSION_STATE_CREATED;
659   stream_session->app_wrk_index = sctx->parent_app_wrk_id;
660   stream_session->connection_index = sctx->c_c_index;
661   stream_session->session_type =
662     session_type_from_proto_and_ip (TRANSPORT_PROTO_QUIC, qctx->udp_is_ip4);
663   quic_session = session_get (qctx->c_s_index, qctx->c_thread_index);
664   stream_session->listener_handle = listen_session_get_handle (quic_session);
665
666   app_wrk = app_worker_get (stream_session->app_wrk_index);
667   if ((rv = app_worker_init_connected (app_wrk, stream_session)))
668     {
669       QUIC_DBG (1, "failed to allocate fifos");
670       session_free (stream_session);
671       quicly_reset_stream (stream, QUIC_APP_ALLOCATION_ERROR);
672       return 0;                 /* Frame is still valid */
673     }
674   svm_fifo_add_want_deq_ntf (stream_session->rx_fifo,
675                              SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL |
676                              SVM_FIFO_WANT_DEQ_NOTIF_IF_EMPTY);
677
678   if ((rv = app_worker_accept_notify (app_wrk, stream_session)))
679     {
680       QUIC_DBG (1, "failed to notify accept worker app");
681       session_free_w_fifos (stream_session);
682       quicly_reset_stream (stream, QUIC_APP_ACCEPT_NOTIFY_ERROR);
683       return 0;                 /* Frame is still valid */
684     }
685
686   return 0;
687 }
688
689 static void
690 quic_on_closed_by_peer (quicly_closed_by_peer_t * self, quicly_conn_t * conn,
691                         int code, uint64_t frame_type,
692                         const char *reason, size_t reason_len)
693 {
694   quic_ctx_t *ctx = quic_get_conn_ctx (conn);
695 #if QUIC_DEBUG >= 2
696   session_t *quic_session = session_get (ctx->c_s_index, ctx->c_thread_index);
697   clib_warning ("Session 0x%lx closed by peer (%U) %.*s ",
698                 session_handle (quic_session), quic_format_err, code,
699                 reason_len, reason);
700 #endif
701   ctx->conn_state = QUIC_CONN_STATE_PASSIVE_CLOSING;
702   session_transport_closing_notify (&ctx->connection);
703 }
704
705 static quicly_stream_open_t on_stream_open = { quic_on_stream_open };
706 static quicly_closed_by_peer_t on_closed_by_peer = { quic_on_closed_by_peer };
707
708 /* Timer handling */
709
710 static int64_t
711 quic_get_thread_time (u8 thread_index)
712 {
713   return quic_main.wrk_ctx[thread_index].time_now;
714 }
715
716 static int64_t
717 quic_get_time (quicly_now_t * self)
718 {
719   u8 thread_index = vlib_get_thread_index ();
720   return quic_get_thread_time (thread_index);
721 }
722
723 static quicly_now_t quicly_vpp_now_cb = { quic_get_time };
724
725 static u32
726 quic_set_time_now (u32 thread_index)
727 {
728   vlib_main_t *vlib_main = vlib_get_main ();
729   f64 time = vlib_time_now (vlib_main);
730   quic_main.wrk_ctx[thread_index].time_now = (int64_t) (time * 1000.f);
731   return quic_main.wrk_ctx[thread_index].time_now;
732 }
733
734 /* Transport proto callback */
735 static void
736 quic_update_time (f64 now, u8 thread_index)
737 {
738   tw_timer_wheel_1t_3w_1024sl_ov_t *tw;
739
740   tw = &quic_main.wrk_ctx[thread_index].timer_wheel;
741   quic_set_time_now (thread_index);
742   tw_timer_expire_timers_1t_3w_1024sl_ov (tw, now);
743 }
744
745 static void
746 quic_timer_expired (u32 conn_index)
747 {
748   quic_ctx_t *ctx;
749   QUIC_DBG (4, "Timer expired for conn %u at %ld", conn_index,
750             quic_get_time (NULL));
751   ctx = quic_ctx_get (conn_index, vlib_get_thread_index ());
752   ctx->timer_handle = QUIC_TIMER_HANDLE_INVALID;
753   quic_send_packets (ctx);
754 }
755
756 static void
757 quic_update_timer (quic_ctx_t * ctx)
758 {
759   tw_timer_wheel_1t_3w_1024sl_ov_t *tw;
760   int64_t next_timeout, next_interval;
761   session_t *quic_session;
762
763   /*  This timeout is in ms which is the unit of our timer */
764   next_timeout = quicly_get_first_timeout (ctx->conn);
765   next_interval = next_timeout - quic_get_time (NULL);
766
767   if (next_timeout == 0 || next_interval <= 0)
768     {
769       if (ctx->c_s_index == QUIC_SESSION_INVALID)
770         {
771           next_interval = 1;
772         }
773       else
774         {
775           quic_session = session_get (ctx->c_s_index, ctx->c_thread_index);
776           if (svm_fifo_set_event (quic_session->tx_fifo))
777             session_send_io_evt_to_thread_custom (quic_session,
778                                                   quic_session->thread_index,
779                                                   SESSION_IO_EVT_BUILTIN_TX);
780           return;
781         }
782     }
783
784   tw = &quic_main.wrk_ctx[vlib_get_thread_index ()].timer_wheel;
785
786   QUIC_DBG (4, "Timer set to %ld (int %ld) for ctx %u", next_timeout,
787             next_interval, ctx->c_c_index);
788
789   if (ctx->timer_handle == QUIC_TIMER_HANDLE_INVALID)
790     {
791       if (next_timeout == INT64_MAX)
792         {
793           QUIC_DBG (4, "timer for ctx %u already stopped", ctx->c_c_index);
794           return;
795         }
796       ctx->timer_handle = tw_timer_start_1t_3w_1024sl_ov (tw, ctx->c_c_index,
797                                                           0, next_interval);
798     }
799   else
800     {
801       if (next_timeout == INT64_MAX)
802         {
803           quic_stop_ctx_timer (ctx);
804         }
805       else
806         tw_timer_update_1t_3w_1024sl_ov (tw, ctx->timer_handle,
807                                          next_interval);
808     }
809   return;
810 }
811
812 static void
813 quic_expired_timers_dispatch (u32 * expired_timers)
814 {
815   int i;
816
817   for (i = 0; i < vec_len (expired_timers); i++)
818     {
819       quic_timer_expired (expired_timers[i]);
820     }
821 }
822
823 static int
824 quic_encrypt_ticket_cb (ptls_encrypt_ticket_t * _self, ptls_t * tls,
825                         int is_encrypt, ptls_buffer_t * dst, ptls_iovec_t src)
826 {
827   quic_session_cache_t *self = (void *) _self;
828   int ret;
829
830   if (is_encrypt)
831     {
832
833       /* replace the cached entry along with a newly generated session id */
834       clib_mem_free (self->data.base);
835       if ((self->data.base = clib_mem_alloc (src.len)) == NULL)
836         return PTLS_ERROR_NO_MEMORY;
837
838       ptls_get_context (tls)->random_bytes (self->id, sizeof (self->id));
839       clib_memcpy (self->data.base, src.base, src.len);
840       self->data.len = src.len;
841
842       /* store the session id in buffer */
843       if ((ret = ptls_buffer_reserve (dst, sizeof (self->id))) != 0)
844         return ret;
845       clib_memcpy (dst->base + dst->off, self->id, sizeof (self->id));
846       dst->off += sizeof (self->id);
847
848     }
849   else
850     {
851
852       /* check if session id is the one stored in cache */
853       if (src.len != sizeof (self->id))
854         return PTLS_ERROR_SESSION_NOT_FOUND;
855       if (clib_memcmp (self->id, src.base, sizeof (self->id)) != 0)
856         return PTLS_ERROR_SESSION_NOT_FOUND;
857
858       /* return the cached value */
859       if ((ret = ptls_buffer_reserve (dst, self->data.len)) != 0)
860         return ret;
861       clib_memcpy (dst->base + dst->off, self->data.base, self->data.len);
862       dst->off += self->data.len;
863     }
864
865   return 0;
866 }
867
868 static void
869 quic_store_quicly_ctx (application_t * app, u32 cert_key_index)
870 {
871   quic_main_t *qm = &quic_main;
872   quicly_context_t *quicly_ctx;
873   ptls_iovec_t key_vec;
874   app_cert_key_pair_t *ckpair;
875   u64 max_enq;
876   if (app->quicly_ctx)
877     return;
878
879   quicly_ctx_data_t *quicly_ctx_data =
880     clib_mem_alloc (sizeof (quicly_ctx_data_t));
881   clib_memset (quicly_ctx_data, 0, sizeof (*quicly_ctx_data));  /* picotls depends on this */
882   quicly_ctx = &quicly_ctx_data->quicly_ctx;
883   ptls_context_t *ptls_ctx = &quicly_ctx_data->ptls_ctx;
884   ptls_ctx->random_bytes = ptls_openssl_random_bytes;
885   ptls_ctx->get_time = &ptls_get_time;
886   ptls_ctx->key_exchanges = ptls_openssl_key_exchanges;
887   ptls_ctx->cipher_suites = qm->quic_ciphers[qm->default_cipher];
888   ptls_ctx->certificates.list = NULL;
889   ptls_ctx->certificates.count = 0;
890   ptls_ctx->esni = NULL;
891   ptls_ctx->on_client_hello = NULL;
892   ptls_ctx->emit_certificate = NULL;
893   ptls_ctx->sign_certificate = NULL;
894   ptls_ctx->verify_certificate = NULL;
895   ptls_ctx->ticket_lifetime = 86400;
896   ptls_ctx->max_early_data_size = 8192;
897   ptls_ctx->hkdf_label_prefix__obsolete = NULL;
898   ptls_ctx->require_dhe_on_psk = 1;
899   ptls_ctx->encrypt_ticket = &qm->session_cache.super;
900
901   app->quicly_ctx = (u64 *) quicly_ctx;
902   clib_memcpy (quicly_ctx, &quicly_spec_context, sizeof (quicly_context_t));
903
904   quicly_ctx->max_packet_size = QUIC_MAX_PACKET_SIZE;
905   quicly_ctx->tls = ptls_ctx;
906   quicly_ctx->stream_open = &on_stream_open;
907   quicly_ctx->closed_by_peer = &on_closed_by_peer;
908   quicly_ctx->now = &quicly_vpp_now_cb;
909   quicly_amend_ptls_context (quicly_ctx->tls);
910
911   quicly_ctx->transport_params.max_data = QUIC_INT_MAX;
912   quicly_ctx->transport_params.max_streams_uni = (uint64_t) 1 << 60;
913   quicly_ctx->transport_params.max_streams_bidi = (uint64_t) 1 << 60;
914
915   /* max_enq is FIFO_SIZE - 1 */
916   max_enq = app->sm_properties.rx_fifo_size - 1;
917   quicly_ctx->transport_params.max_stream_data.bidi_local = max_enq;
918   max_enq = app->sm_properties.tx_fifo_size - 1;
919   quicly_ctx->transport_params.max_stream_data.bidi_remote = max_enq;
920   quicly_ctx->transport_params.max_stream_data.uni = QUIC_INT_MAX;
921
922   quicly_ctx->tls->random_bytes (quicly_ctx_data->cid_key, 16);
923   quicly_ctx_data->cid_key[16] = 0;
924   key_vec = ptls_iovec_init (quicly_ctx_data->cid_key,
925                              strlen (quicly_ctx_data->cid_key));
926   quicly_ctx->cid_encryptor =
927     quicly_new_default_cid_encryptor (&ptls_openssl_bfecb,
928                                       &ptls_openssl_aes128ecb,
929                                       &ptls_openssl_sha256, key_vec);
930
931   ckpair = app_cert_key_pair_get_if_valid (cert_key_index);
932   if (ckpair && ckpair->key != NULL && ckpair->cert != NULL)
933     {
934       if (load_bio_private_key (quicly_ctx->tls, (char *) ckpair->key))
935         {
936           QUIC_DBG (1, "failed to read private key from app configuration\n");
937         }
938       if (load_bio_certificate_chain (quicly_ctx->tls, (char *) ckpair->cert))
939         {
940           QUIC_DBG (1, "failed to load certificate\n");
941         }
942     }
943 }
944
945 /* Transport proto functions */
946
947 static int
948 quic_connect_stream (session_t * quic_session, u32 opaque)
949 {
950   uint64_t quic_session_handle;
951   session_t *stream_session;
952   quic_stream_data_t *stream_data;
953   quicly_stream_t *stream;
954   quicly_conn_t *conn;
955   app_worker_t *app_wrk;
956   quic_ctx_t *qctx, *sctx;
957   u32 sctx_index;
958   int rv;
959
960   /*  Find base session to which the user want to attach a stream */
961   quic_session_handle = session_handle (quic_session);
962   QUIC_DBG (2, "Opening new stream (qsession %u)", quic_session_handle);
963
964   if (session_type_transport_proto (quic_session->session_type) !=
965       TRANSPORT_PROTO_QUIC)
966     {
967       QUIC_DBG (1, "received incompatible session");
968       return -1;
969     }
970
971   app_wrk = app_worker_get_if_valid (quic_session->app_wrk_index);
972   if (!app_wrk)
973     {
974       QUIC_DBG (1, "Invalid app worker :(");
975       return -1;
976     }
977
978   sctx_index = quic_ctx_alloc (quic_session->thread_index);     /*  Allocate before we get pointers */
979   sctx = quic_ctx_get (sctx_index, quic_session->thread_index);
980   qctx = quic_ctx_get (quic_session->connection_index,
981                        quic_session->thread_index);
982   if (quic_ctx_is_stream (qctx))
983     {
984       QUIC_DBG (1, "session is a stream");
985       quic_ctx_free (sctx);
986       return -1;
987     }
988
989   sctx->parent_app_wrk_id = qctx->parent_app_wrk_id;
990   sctx->parent_app_id = qctx->parent_app_id;
991   sctx->quic_connection_ctx_id = qctx->c_c_index;
992   sctx->c_c_index = sctx_index;
993   sctx->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP;
994   sctx->flags |= QUIC_F_IS_STREAM;
995
996   conn = qctx->conn;
997
998   if (!conn || !quicly_connection_is_ready (conn))
999     return -1;
1000
1001   if ((rv = quicly_open_stream (conn, &stream, 0 /* uni */ )))
1002     {
1003       QUIC_DBG (2, "Stream open failed with %d", rv);
1004       return -1;
1005     }
1006   sctx->stream = stream;
1007
1008   QUIC_DBG (2, "Opened stream %d, creating session", stream->stream_id);
1009
1010   stream_session = session_alloc (qctx->c_thread_index);
1011   QUIC_DBG (2, "Allocated stream_session 0x%lx ctx %u",
1012             session_handle (stream_session), sctx_index);
1013   stream_session->app_wrk_index = app_wrk->wrk_index;
1014   stream_session->connection_index = sctx_index;
1015   stream_session->listener_handle = quic_session_handle;
1016   stream_session->session_type =
1017     session_type_from_proto_and_ip (TRANSPORT_PROTO_QUIC, qctx->udp_is_ip4);
1018
1019   sctx->c_s_index = stream_session->session_index;
1020
1021   if (app_worker_init_connected (app_wrk, stream_session))
1022     {
1023       QUIC_DBG (1, "failed to app_worker_init_connected");
1024       quicly_reset_stream (stream, QUIC_APP_ALLOCATION_ERROR);
1025       session_free_w_fifos (stream_session);
1026       quic_ctx_free (sctx);
1027       return app_worker_connect_notify (app_wrk, NULL, opaque);
1028     }
1029
1030   svm_fifo_add_want_deq_ntf (stream_session->rx_fifo,
1031                              SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL |
1032                              SVM_FIFO_WANT_DEQ_NOTIF_IF_EMPTY);
1033
1034   stream_session->session_state = SESSION_STATE_READY;
1035   if (app_worker_connect_notify (app_wrk, stream_session, opaque))
1036     {
1037       QUIC_DBG (1, "failed to notify app");
1038       quicly_reset_stream (stream, QUIC_APP_CONNECT_NOTIFY_ERROR);
1039       session_free_w_fifos (stream_session);
1040       quic_ctx_free (sctx);
1041       return -1;
1042     }
1043   stream_data = (quic_stream_data_t *) stream->data;
1044   stream_data->ctx_id = sctx->c_c_index;
1045   stream_data->thread_index = sctx->c_thread_index;
1046   stream_data->app_rx_data_len = 0;
1047   return 0;
1048 }
1049
1050 static int
1051 quic_connect_connection (session_endpoint_cfg_t * sep)
1052 {
1053   vnet_connect_args_t _cargs, *cargs = &_cargs;
1054   quic_main_t *qm = &quic_main;
1055   quic_ctx_t *ctx;
1056   app_worker_t *app_wrk;
1057   application_t *app;
1058   u32 ctx_index;
1059   int error;
1060
1061   clib_memset (cargs, 0, sizeof (*cargs));
1062   ctx_index = quic_ctx_alloc (vlib_get_thread_index ());
1063   ctx = quic_ctx_get (ctx_index, vlib_get_thread_index ());
1064   ctx->parent_app_wrk_id = sep->app_wrk_index;
1065   ctx->c_s_index = QUIC_SESSION_INVALID;
1066   ctx->c_c_index = ctx_index;
1067   ctx->udp_is_ip4 = sep->is_ip4;
1068   ctx->timer_handle = QUIC_TIMER_HANDLE_INVALID;
1069   ctx->conn_state = QUIC_CONN_STATE_HANDSHAKE;
1070   ctx->client_opaque = sep->opaque;
1071   ctx->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP;
1072   if (sep->hostname)
1073     ctx->srv_hostname = format (0, "%v", sep->hostname);
1074   else
1075     /*  needed by quic for crypto + determining client / server */
1076     ctx->srv_hostname = format (0, "%U", format_ip46_address,
1077                                 &sep->ip, sep->is_ip4);
1078   vec_terminate_c_string (ctx->srv_hostname);
1079
1080   clib_memcpy (&cargs->sep, sep, sizeof (session_endpoint_cfg_t));
1081   cargs->sep.transport_proto = TRANSPORT_PROTO_UDPC;
1082   cargs->app_index = qm->app_index;
1083   cargs->api_context = ctx_index;
1084
1085   app_wrk = app_worker_get (sep->app_wrk_index);
1086   app = application_get (app_wrk->app_index);
1087   ctx->parent_app_id = app_wrk->app_index;
1088   cargs->sep_ext.ns_index = app->ns_index;
1089
1090   quic_store_quicly_ctx (app, ctx->ckpair_index);
1091   /* Also store it in ctx for convenience
1092    * Waiting for crypto_ctx logic */
1093   ctx->quicly_ctx = (quicly_context_t *) app->quicly_ctx;
1094
1095   if ((error = vnet_connect (cargs)))
1096     return error;
1097
1098   return 0;
1099 }
1100
1101 static int
1102 quic_connect (transport_endpoint_cfg_t * tep)
1103 {
1104   QUIC_DBG (2, "Called quic_connect");
1105   session_endpoint_cfg_t *sep = (session_endpoint_cfg_t *) tep;
1106   session_t *quic_session;
1107   sep = (session_endpoint_cfg_t *) tep;
1108
1109   quic_session = session_get_from_handle_if_valid (sep->parent_handle);
1110   if (quic_session)
1111     return quic_connect_stream (quic_session, sep->opaque);
1112   else
1113     return quic_connect_connection (sep);
1114 }
1115
1116 static void
1117 quic_proto_on_close (u32 ctx_index, u32 thread_index)
1118 {
1119   quic_ctx_t *ctx = quic_ctx_get_if_valid (ctx_index, thread_index);
1120   if (!ctx)
1121     return;
1122 #if QUIC_DEBUG >= 2
1123   session_t *stream_session = session_get (ctx->c_s_index,
1124                                            ctx->c_thread_index);
1125   clib_warning ("Closing session 0x%lx", session_handle (stream_session));
1126 #endif
1127   if (quic_ctx_is_stream (ctx))
1128     {
1129       quicly_stream_t *stream = ctx->stream;
1130       quicly_reset_stream (stream, QUIC_APP_ERROR_CLOSE_NOTIFY);
1131       quic_send_packets (ctx);
1132       return;
1133     }
1134
1135   switch (ctx->conn_state)
1136     {
1137     case QUIC_CONN_STATE_READY:
1138       ctx->conn_state = QUIC_CONN_STATE_ACTIVE_CLOSING;
1139       quicly_conn_t *conn = ctx->conn;
1140       /* Start connection closing. Keep sending packets until quicly_send
1141          returns QUICLY_ERROR_FREE_CONNECTION */
1142       quicly_close (conn, QUIC_APP_ERROR_CLOSE_NOTIFY, "Closed by peer");
1143       /* This also causes all streams to be closed (and the cb called) */
1144       quic_send_packets (ctx);
1145       break;
1146     case QUIC_CONN_STATE_PASSIVE_CLOSING:
1147       ctx->conn_state = QUIC_CONN_STATE_PASSIVE_CLOSING_APP_CLOSED;
1148       /* send_packets will eventually return an error, we delete the conn at
1149          that point */
1150       break;
1151     case QUIC_CONN_STATE_PASSIVE_CLOSING_QUIC_CLOSED:
1152       quic_connection_delete (ctx);
1153       break;
1154     default:
1155       QUIC_DBG (0, "BUG");
1156       break;
1157     }
1158 }
1159
1160 static u32
1161 quic_start_listen (u32 quic_listen_session_index, transport_endpoint_t * tep)
1162 {
1163   vnet_listen_args_t _bargs, *args = &_bargs;
1164   quic_main_t *qm = &quic_main;
1165   session_handle_t udp_handle;
1166   session_endpoint_cfg_t *sep;
1167   session_t *udp_listen_session;
1168   app_worker_t *app_wrk;
1169   application_t *app;
1170   quic_ctx_t *lctx;
1171   u32 lctx_index;
1172   app_listener_t *app_listener;
1173
1174   sep = (session_endpoint_cfg_t *) tep;
1175   app_wrk = app_worker_get (sep->app_wrk_index);
1176   /* We need to call this because we call app_worker_init_connected in
1177    * quic_accept_stream, which assumes the connect segment manager exists */
1178   app_worker_alloc_connects_segment_manager (app_wrk);
1179   app = application_get (app_wrk->app_index);
1180   QUIC_DBG (2, "Called quic_start_listen for app %d", app_wrk->app_index);
1181
1182   quic_store_quicly_ctx (app, sep->ckpair_index);
1183
1184   sep->transport_proto = TRANSPORT_PROTO_UDPC;
1185   clib_memset (args, 0, sizeof (*args));
1186   args->app_index = qm->app_index;
1187   args->sep_ext = *sep;
1188   args->sep_ext.ns_index = app->ns_index;
1189   if (vnet_listen (args))
1190     return -1;
1191
1192   lctx_index = quic_ctx_alloc (0);
1193   udp_handle = args->handle;
1194   app_listener = app_listener_get_w_handle (udp_handle);
1195   udp_listen_session = app_listener_get_session (app_listener);
1196   udp_listen_session->opaque = lctx_index;
1197
1198   lctx = quic_ctx_get (lctx_index, 0);
1199   lctx->flags |= QUIC_F_IS_LISTENER;
1200   /* Also store it in ctx for convenience
1201    * Waiting for crypto_ctx logic */
1202   lctx->quicly_ctx = (quicly_context_t *) app->quicly_ctx;
1203
1204   clib_memcpy (&lctx->c_rmt_ip, &args->sep.peer.ip, sizeof (ip46_address_t));
1205   clib_memcpy (&lctx->c_lcl_ip, &args->sep.ip, sizeof (ip46_address_t));
1206   lctx->c_rmt_port = args->sep.peer.port;
1207   lctx->c_lcl_port = args->sep.port;
1208   lctx->c_is_ip4 = args->sep.is_ip4;
1209   lctx->c_fib_index = args->sep.fib_index;
1210   lctx->c_proto = TRANSPORT_PROTO_QUIC;
1211   lctx->parent_app_wrk_id = sep->app_wrk_index;
1212   lctx->parent_app_id = app_wrk->app_index;
1213   lctx->udp_session_handle = udp_handle;
1214   lctx->c_s_index = quic_listen_session_index;
1215
1216   QUIC_DBG (2, "Listening UDP session 0x%lx",
1217             session_handle (udp_listen_session));
1218   QUIC_DBG (2, "Listening QUIC session 0x%lx", quic_listen_session_index);
1219   return lctx_index;
1220 }
1221
1222 static u32
1223 quic_stop_listen (u32 lctx_index)
1224 {
1225   QUIC_DBG (2, "Called quic_stop_listen");
1226   quic_ctx_t *lctx;
1227   lctx = quic_ctx_get (lctx_index, 0);
1228   ASSERT (quic_ctx_is_listener (lctx));
1229   vnet_unlisten_args_t a = {
1230     .handle = lctx->udp_session_handle,
1231     .app_index = quic_main.app_index,
1232     .wrk_map_index = 0          /* default wrk */
1233   };
1234   if (vnet_unlisten (&a))
1235     clib_warning ("unlisten errored");
1236
1237   /*  TODO: crypto state cleanup */
1238
1239   quic_ctx_free (lctx);
1240   return 0;
1241 }
1242
1243 static transport_connection_t *
1244 quic_connection_get (u32 ctx_index, u32 thread_index)
1245 {
1246   quic_ctx_t *ctx;
1247   ctx = quic_ctx_get (ctx_index, thread_index);
1248   return &ctx->connection;
1249 }
1250
1251 static transport_connection_t *
1252 quic_listener_get (u32 listener_index)
1253 {
1254   QUIC_DBG (2, "Called quic_listener_get");
1255   quic_ctx_t *ctx;
1256   ctx = quic_ctx_get (listener_index, 0);
1257   return &ctx->connection;
1258 }
1259
1260 static u8 *
1261 format_quic_ctx (u8 * s, va_list * args)
1262 {
1263   quic_ctx_t *ctx = va_arg (*args, quic_ctx_t *);
1264   u32 verbose = va_arg (*args, u32);
1265   u8 *str = 0;
1266
1267   if (!ctx)
1268     return s;
1269   str = format (str, "[#%d][Q] ", ctx->c_thread_index);
1270
1271   if (quic_ctx_is_listener (ctx))
1272     str = format (str, "Listener, UDP %ld", ctx->udp_session_handle);
1273   else if (quic_ctx_is_stream (ctx))
1274     str = format (str, "Stream %ld conn %d",
1275                   ctx->stream->stream_id, ctx->quic_connection_ctx_id);
1276   else                          /* connection */
1277     str = format (str, "Conn %d UDP %d", ctx->c_c_index,
1278                   ctx->udp_session_handle);
1279
1280   str = format (str, " app %d wrk %d", ctx->parent_app_id,
1281                 ctx->parent_app_wrk_id);
1282
1283   if (verbose == 1)
1284     s = format (s, "%-50s%-15d", str, ctx->conn_state);
1285   else
1286     s = format (s, "%s\n", str);
1287   vec_free (str);
1288   return s;
1289 }
1290
1291 static u8 *
1292 format_quic_connection (u8 * s, va_list * args)
1293 {
1294   u32 qc_index = va_arg (*args, u32);
1295   u32 thread_index = va_arg (*args, u32);
1296   u32 verbose = va_arg (*args, u32);
1297   quic_ctx_t *ctx = quic_ctx_get (qc_index, thread_index);
1298   s = format (s, "%U", format_quic_ctx, ctx, verbose);
1299   return s;
1300 }
1301
1302 static u8 *
1303 format_quic_half_open (u8 * s, va_list * args)
1304 {
1305   u32 qc_index = va_arg (*args, u32);
1306   u32 thread_index = va_arg (*args, u32);
1307   quic_ctx_t *ctx = quic_ctx_get (qc_index, thread_index);
1308   s = format (s, "[#%d][Q] half-open app %u", thread_index,
1309               ctx->parent_app_id);
1310   return s;
1311 }
1312
1313 /*  TODO improve */
1314 static u8 *
1315 format_quic_listener (u8 * s, va_list * args)
1316 {
1317   u32 tci = va_arg (*args, u32);
1318   u32 thread_index = va_arg (*args, u32);
1319   u32 verbose = va_arg (*args, u32);
1320   quic_ctx_t *ctx = quic_ctx_get (tci, thread_index);
1321   s = format (s, "%U", format_quic_ctx, ctx, verbose);
1322   return s;
1323 }
1324
1325 /* Session layer callbacks */
1326
1327 static inline void
1328 quic_build_sockaddr (struct sockaddr *sa, socklen_t * salen,
1329                      ip46_address_t * addr, u16 port, u8 is_ip4)
1330 {
1331   if (is_ip4)
1332     {
1333       struct sockaddr_in *sa4 = (struct sockaddr_in *) sa;
1334       sa4->sin_family = AF_INET;
1335       sa4->sin_port = port;
1336       sa4->sin_addr.s_addr = addr->ip4.as_u32;
1337       *salen = sizeof (struct sockaddr_in);
1338     }
1339   else
1340     {
1341       struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *) sa;
1342       sa6->sin6_family = AF_INET6;
1343       sa6->sin6_port = port;
1344       clib_memcpy (&sa6->sin6_addr, &addr->ip6, 16);
1345       *salen = sizeof (struct sockaddr_in6);
1346     }
1347 }
1348
1349 static int
1350 quic_on_quic_session_connected (quic_ctx_t * ctx)
1351 {
1352   session_t *quic_session;
1353   app_worker_t *app_wrk;
1354   u32 ctx_id = ctx->c_c_index;
1355   u32 thread_index = ctx->c_thread_index;
1356   int rv;
1357
1358   app_wrk = app_worker_get_if_valid (ctx->parent_app_wrk_id);
1359   if (!app_wrk)
1360     {
1361       quic_disconnect_transport (ctx);
1362       return 0;
1363     }
1364
1365   quic_session = session_alloc (thread_index);
1366
1367   QUIC_DBG (2, "Allocated quic session 0x%lx", session_handle (quic_session));
1368   ctx->c_s_index = quic_session->session_index;
1369   quic_session->app_wrk_index = ctx->parent_app_wrk_id;
1370   quic_session->connection_index = ctx->c_c_index;
1371   quic_session->listener_handle = SESSION_INVALID_HANDLE;
1372   quic_session->session_type =
1373     session_type_from_proto_and_ip (TRANSPORT_PROTO_QUIC, ctx->udp_is_ip4);
1374
1375   if (app_worker_init_connected (app_wrk, quic_session))
1376     {
1377       QUIC_DBG (1, "failed to app_worker_init_connected");
1378       quic_proto_on_close (ctx_id, thread_index);
1379       return app_worker_connect_notify (app_wrk, NULL, ctx->client_opaque);
1380     }
1381
1382   quic_session->session_state = SESSION_STATE_CONNECTING;
1383   if ((rv = app_worker_connect_notify (app_wrk, quic_session,
1384                                        ctx->client_opaque)))
1385     {
1386       QUIC_DBG (1, "failed to notify app %d", rv);
1387       quic_proto_on_close (ctx_id, thread_index);
1388       return -1;
1389     }
1390
1391   /*  If the app opens a stream in its callback it may invalidate ctx */
1392   ctx = quic_ctx_get (ctx_id, thread_index);
1393   /*
1394    * app_worker_connect_notify() might have reallocated pool, reload
1395    * quic_session pointer
1396    */
1397   quic_session = session_get (ctx->c_s_index, thread_index);
1398   quic_session->session_state = SESSION_STATE_LISTENING;
1399
1400   return 0;
1401 }
1402
1403 static int
1404 quic_check_quic_session_connected (quic_ctx_t * ctx)
1405 {
1406   /* Called when we need to trigger quic session connected
1407    * we may call this function on the server side / at
1408    * stream opening */
1409
1410   /* Conn may be set to null if the connection is terminated */
1411   if (!ctx->conn || ctx->conn_state != QUIC_CONN_STATE_HANDSHAKE)
1412     return 0;
1413   if (!quicly_connection_is_ready (ctx->conn))
1414     return 0;
1415   ctx->conn_state = QUIC_CONN_STATE_READY;
1416   if (!quicly_is_client (ctx->conn))
1417     return 0;
1418   return quic_on_quic_session_connected (ctx);
1419 }
1420
1421 static void
1422 quic_receive_connection (void *arg)
1423 {
1424   u32 new_ctx_id, thread_index = vlib_get_thread_index ();
1425   quic_ctx_t *temp_ctx, *new_ctx;
1426   clib_bihash_kv_16_8_t kv;
1427   quicly_conn_t *conn;
1428   session_t *udp_session;
1429
1430   temp_ctx = arg;
1431   new_ctx_id = quic_ctx_alloc (thread_index);
1432   new_ctx = quic_ctx_get (new_ctx_id, thread_index);
1433
1434   QUIC_DBG (2, "Received conn %u (now %u)", temp_ctx->c_thread_index,
1435             new_ctx_id);
1436
1437
1438   clib_memcpy (new_ctx, temp_ctx, sizeof (quic_ctx_t));
1439   clib_mem_free (temp_ctx);
1440
1441   new_ctx->c_thread_index = thread_index;
1442   new_ctx->c_c_index = new_ctx_id;
1443
1444   conn = new_ctx->conn;
1445   quic_store_conn_ctx (conn, new_ctx);
1446   quic_make_connection_key (&kv, quicly_get_master_id (conn));
1447   kv.value = ((u64) thread_index) << 32 | (u64) new_ctx_id;
1448   QUIC_DBG (2, "Registering conn with id %lu %lu", kv.key[0], kv.key[1]);
1449   clib_bihash_add_del_16_8 (&quic_main.connection_hash, &kv, 1 /* is_add */ );
1450   new_ctx->timer_handle = QUIC_TIMER_HANDLE_INVALID;
1451   quic_update_timer (new_ctx);
1452
1453   /*  Trigger write on this connection if necessary */
1454   udp_session = session_get_from_handle (new_ctx->udp_session_handle);
1455   udp_session->opaque = new_ctx_id;
1456   udp_session->flags &= ~SESSION_F_IS_MIGRATING;
1457   if (svm_fifo_max_dequeue (udp_session->tx_fifo))
1458     quic_set_udp_tx_evt (udp_session);
1459 }
1460
1461 static void
1462 quic_transfer_connection (u32 ctx_index, u32 dest_thread)
1463 {
1464   quic_ctx_t *ctx, *temp_ctx;
1465   u32 thread_index = vlib_get_thread_index ();
1466
1467   QUIC_DBG (2, "Transferring conn %u to thread %u", ctx_index, dest_thread);
1468
1469   temp_ctx = clib_mem_alloc (sizeof (quic_ctx_t));
1470   ASSERT (temp_ctx);
1471   ctx = quic_ctx_get (ctx_index, thread_index);
1472
1473   clib_memcpy (temp_ctx, ctx, sizeof (quic_ctx_t));
1474
1475   quic_stop_ctx_timer (ctx);
1476   quic_ctx_free (ctx);
1477
1478   /*  Send connection to destination thread */
1479   session_send_rpc_evt_to_thread (dest_thread, quic_receive_connection,
1480                                   (void *) temp_ctx);
1481 }
1482
1483 static int
1484 quic_udp_session_connected_callback (u32 quic_app_index, u32 ctx_index,
1485                                      session_t * udp_session, u8 is_fail)
1486 {
1487   QUIC_DBG (2, "QSession is now connected (id %u)",
1488             udp_session->session_index);
1489   /* This should always be called before quic_connect returns since UDP always
1490    * connects instantly. */
1491   clib_bihash_kv_16_8_t kv;
1492   struct sockaddr_in6 sa6;
1493   struct sockaddr *sa = (struct sockaddr *) &sa6;
1494   socklen_t salen;
1495   transport_connection_t *tc;
1496   app_worker_t *app_wrk;
1497   quicly_conn_t *conn;
1498   quic_ctx_t *ctx;
1499   u32 thread_index = vlib_get_thread_index ();
1500   int ret;
1501   quicly_context_t *quicly_ctx;
1502
1503
1504   ctx = quic_ctx_get (ctx_index, thread_index);
1505   if (is_fail)
1506     {
1507       u32 api_context;
1508       app_wrk = app_worker_get_if_valid (ctx->parent_app_wrk_id);
1509       if (app_wrk)
1510         {
1511           api_context = ctx->c_s_index;
1512           app_worker_connect_notify (app_wrk, 0, api_context);
1513         }
1514       return 0;
1515     }
1516
1517   ctx->c_thread_index = thread_index;
1518   ctx->c_c_index = ctx_index;
1519
1520   QUIC_DBG (2, "Quic connect returned %u. New ctx [%u]%x",
1521             is_fail, thread_index, (ctx) ? ctx_index : ~0);
1522
1523   ctx->udp_session_handle = session_handle (udp_session);
1524   udp_session->opaque = ctx_index;
1525
1526   /* Init QUIC lib connection
1527    * Generate required sockaddr & salen */
1528   tc = session_get_transport (udp_session);
1529   quic_build_sockaddr (sa, &salen, &tc->rmt_ip, tc->rmt_port, tc->is_ip4);
1530
1531   quicly_ctx = quic_get_quicly_ctx_from_ctx (ctx);
1532   ret = quicly_connect (&ctx->conn, quicly_ctx, (char *) ctx->srv_hostname,
1533                         sa, NULL, &quic_main.next_cid, ptls_iovec_init (NULL,
1534                                                                         0),
1535                         &quic_main.hs_properties, NULL);
1536   ++quic_main.next_cid.master_id;
1537   /*  Save context handle in quicly connection */
1538   quic_store_conn_ctx (ctx->conn, ctx);
1539   assert (ret == 0);
1540
1541   /*  Register connection in connections map */
1542   conn = ctx->conn;
1543   quic_make_connection_key (&kv, quicly_get_master_id (conn));
1544   kv.value = ((u64) thread_index) << 32 | (u64) ctx_index;
1545   QUIC_DBG (2, "Registering conn with id %lu %lu", kv.key[0], kv.key[1]);
1546   clib_bihash_add_del_16_8 (&quic_main.connection_hash, &kv, 1 /* is_add */ );
1547
1548   /*  UDP stack quirk? preemptively transfer connection if that happens */
1549   if (udp_session->thread_index != thread_index)
1550     quic_transfer_connection (ctx_index, udp_session->thread_index);
1551   else
1552     quic_send_packets (ctx);
1553
1554   return ret;
1555 }
1556
1557 static void
1558 quic_udp_session_disconnect_callback (session_t * s)
1559 {
1560   clib_warning ("UDP session disconnected???");
1561 }
1562
1563 static void
1564 quic_udp_session_cleanup_callback (session_t * udp_session,
1565                                    session_cleanup_ntf_t ntf)
1566 {
1567   quic_ctx_t *ctx;
1568
1569   if (ntf != SESSION_CLEANUP_SESSION)
1570     return;
1571
1572   ctx = quic_ctx_get (udp_session->opaque, udp_session->thread_index);
1573   quic_stop_ctx_timer (ctx);
1574   quic_ctx_free (ctx);
1575 }
1576
1577 static void
1578 quic_udp_session_reset_callback (session_t * s)
1579 {
1580   clib_warning ("UDP session reset???");
1581 }
1582
1583 static void
1584 quic_udp_session_migrate_callback (session_t * s, session_handle_t new_sh)
1585 {
1586   u32 new_thread = session_thread_from_handle (new_sh);
1587   quic_ctx_t *ctx;
1588
1589   QUIC_DBG (1, "Session %x migrated to %lx", s->session_index, new_sh);
1590   ASSERT (vlib_get_thread_index () == s->thread_index);
1591   ctx = quic_ctx_get (s->opaque, s->thread_index);
1592   ASSERT (ctx->udp_session_handle == session_handle (s));
1593
1594   ctx->udp_session_handle = new_sh;
1595 #if QUIC_DEBUG >= 1
1596   s->opaque = 0xfeedface;
1597 #endif
1598   quic_transfer_connection (ctx->c_c_index, new_thread);
1599 }
1600
1601 int
1602 quic_udp_session_accepted_callback (session_t * udp_session)
1603 {
1604   /* New UDP connection, try to accept it */
1605   u32 ctx_index;
1606   u32 *pool_index;
1607   quic_ctx_t *ctx, *lctx;
1608   session_t *udp_listen_session;
1609   u32 thread_index = vlib_get_thread_index ();
1610
1611   udp_listen_session =
1612     listen_session_get_from_handle (udp_session->listener_handle);
1613
1614   ctx_index = quic_ctx_alloc (thread_index);
1615   ctx = quic_ctx_get (ctx_index, thread_index);
1616   ctx->c_thread_index = udp_session->thread_index;
1617   ctx->c_c_index = ctx_index;
1618   ctx->c_s_index = QUIC_SESSION_INVALID;
1619   ctx->udp_session_handle = session_handle (udp_session);
1620   QUIC_DBG (2, "ACCEPTED UDP 0x%lx", ctx->udp_session_handle);
1621   ctx->listener_ctx_id = udp_listen_session->opaque;
1622   lctx = quic_ctx_get (udp_listen_session->opaque,
1623                        udp_listen_session->thread_index);
1624   ctx->udp_is_ip4 = lctx->c_is_ip4;
1625   ctx->parent_app_id = lctx->parent_app_id;
1626   ctx->parent_app_wrk_id = lctx->parent_app_wrk_id;
1627   ctx->timer_handle = QUIC_TIMER_HANDLE_INVALID;
1628   ctx->conn_state = QUIC_CONN_STATE_OPENED;
1629   ctx->c_flags |= TRANSPORT_CONNECTION_F_NO_LOOKUP;
1630
1631   /* Also store it in ctx for convenience
1632    * Waiting for crypto_ctx logic */
1633   ctx->quicly_ctx = lctx->quicly_ctx;
1634
1635   udp_session->opaque = ctx_index;
1636
1637   /* Put this ctx in the "opening" pool */
1638   pool_get (quic_main.wrk_ctx[ctx->c_thread_index].opening_ctx_pool,
1639             pool_index);
1640   *pool_index = ctx_index;
1641
1642   /* TODO timeout to delete these if they never connect */
1643   return 0;
1644 }
1645
1646 static int
1647 quic_add_segment_callback (u32 client_index, u64 seg_handle)
1648 {
1649   /* No-op for builtin */
1650   return 0;
1651 }
1652
1653 static int
1654 quic_del_segment_callback (u32 client_index, u64 seg_handle)
1655 {
1656   /* No-op for builtin */
1657   return 0;
1658 }
1659
1660 static int
1661 quic_custom_app_rx_callback (transport_connection_t * tc)
1662 {
1663   quic_ctx_t *ctx;
1664   session_t *stream_session = session_get (tc->s_index, tc->thread_index);
1665   QUIC_DBG (3, "Received app READ notification");
1666   quic_ack_rx_data (stream_session);
1667   svm_fifo_reset_has_deq_ntf (stream_session->rx_fifo);
1668
1669   /* Need to send packets (acks may never be sent otherwise) */
1670   ctx = quic_ctx_get (stream_session->connection_index,
1671                       stream_session->thread_index);
1672   quic_send_packets (ctx);
1673   return 0;
1674 }
1675
1676 static int
1677 quic_custom_tx_callback (void *s, u32 max_burst_size)
1678 {
1679   session_t *stream_session = (session_t *) s;
1680   quicly_stream_t *stream;
1681   quic_ctx_t *ctx;
1682   int rv;
1683
1684   if (PREDICT_FALSE
1685       (stream_session->session_state >= SESSION_STATE_TRANSPORT_CLOSING))
1686     return 0;
1687   ctx = quic_ctx_get (stream_session->connection_index,
1688                       stream_session->thread_index);
1689   if (PREDICT_FALSE (!quic_ctx_is_stream (ctx)))
1690     {
1691       goto tx_end;              /* Most probably a reschedule */
1692     }
1693
1694   QUIC_DBG (3, "Stream TX event");
1695   quic_ack_rx_data (stream_session);
1696   if (!svm_fifo_max_dequeue (stream_session->tx_fifo))
1697     return 0;
1698
1699   stream = ctx->stream;
1700   if (!quicly_sendstate_is_open (&stream->sendstate))
1701     {
1702       QUIC_DBG (1, "Warning: tried to send on closed stream");
1703       return -1;
1704     }
1705
1706   if ((rv = quicly_stream_sync_sendbuf (stream, 1)) != 0)
1707     return rv;
1708
1709 tx_end:
1710   quic_send_packets (ctx);
1711   return 0;
1712 }
1713
1714
1715 /*
1716  * Returns 0 if a matching connection is found and is on the right thread.
1717  * Otherwise returns -1.
1718  * If a connection is found, even on the wrong thread, ctx_thread and ctx_index
1719  * will be set.
1720  */
1721 static inline int
1722 quic_find_packet_ctx (u32 * ctx_thread, u32 * ctx_index,
1723                       struct sockaddr *sa, socklen_t salen,
1724                       quicly_decoded_packet_t * packet,
1725                       u32 caller_thread_index)
1726 {
1727   quic_ctx_t *ctx_;
1728   quicly_conn_t *conn_;
1729   clib_bihash_kv_16_8_t kv;
1730   clib_bihash_16_8_t *h;
1731
1732   h = &quic_main.connection_hash;
1733   quic_make_connection_key (&kv, &packet->cid.dest.plaintext);
1734   QUIC_DBG (3, "Searching conn with id %lu %lu", kv.key[0], kv.key[1]);
1735
1736   if (clib_bihash_search_16_8 (h, &kv, &kv) == 0)
1737     {
1738       u32 index = kv.value & UINT32_MAX;
1739       u32 thread_id = kv.value >> 32;
1740       /* Check if this connection belongs to this thread, otherwise
1741        * ask for it to be moved */
1742       if (thread_id != caller_thread_index)
1743         {
1744           QUIC_DBG (2, "Connection is on wrong thread");
1745           /* Cannot make full check with quicly_is_destination... */
1746           *ctx_index = index;
1747           *ctx_thread = thread_id;
1748           return -1;
1749         }
1750       ctx_ = quic_ctx_get (index, vlib_get_thread_index ());
1751       conn_ = ctx_->conn;
1752       if (conn_ && quicly_is_destination (conn_, NULL, sa, packet))
1753         {
1754           QUIC_DBG (3, "Connection found");
1755           *ctx_index = index;
1756           *ctx_thread = thread_id;
1757           return 0;
1758         }
1759     }
1760   QUIC_DBG (3, "connection not found");
1761   return -1;
1762 }
1763
1764 static int
1765 quic_accept_connection (u32 ctx_index, struct sockaddr *sa,
1766                         socklen_t salen, quicly_decoded_packet_t packet)
1767 {
1768   u32 thread_index = vlib_get_thread_index ();
1769   quicly_context_t *quicly_ctx;
1770   session_t *quic_session;
1771   clib_bihash_kv_16_8_t kv;
1772   app_worker_t *app_wrk;
1773   quicly_conn_t *conn;
1774   quic_ctx_t *ctx;
1775   quic_ctx_t *lctx;
1776   int rv;
1777
1778   /* new connection, accept and create context if packet is valid
1779    * TODO: check if socket is actually listening? */
1780   ctx = quic_ctx_get (ctx_index, thread_index);
1781   quicly_ctx = quic_get_quicly_ctx_from_ctx (ctx);
1782   if ((rv = quicly_accept (&conn, quicly_ctx, NULL, sa,
1783                            &packet, NULL, &quic_main.next_cid, NULL)))
1784     {
1785       /* Invalid packet, pass */
1786       assert (conn == NULL);
1787       QUIC_DBG (1, "Accept failed with %d", rv);
1788       /* TODO: cleanup created quic ctx and UDP session */
1789       return 0;
1790     }
1791   assert (conn != NULL);
1792
1793   ++quic_main.next_cid.master_id;
1794   /* Save ctx handle in quicly connection */
1795   quic_store_conn_ctx (conn, ctx);
1796   ctx->conn = conn;
1797   ctx->conn_state = QUIC_CONN_STATE_HANDSHAKE;
1798
1799   quic_session = session_alloc (ctx->c_thread_index);
1800   QUIC_DBG (2, "Allocated quic_session, 0x%lx ctx %u",
1801             session_handle (quic_session), ctx->c_c_index);
1802   quic_session->session_state = SESSION_STATE_LISTENING;
1803   ctx->c_s_index = quic_session->session_index;
1804
1805   lctx = quic_ctx_get (ctx->listener_ctx_id, 0);
1806
1807   quic_session->app_wrk_index = lctx->parent_app_wrk_id;
1808   quic_session->connection_index = ctx->c_c_index;
1809   quic_session->session_type =
1810     session_type_from_proto_and_ip (TRANSPORT_PROTO_QUIC, ctx->udp_is_ip4);
1811   quic_session->listener_handle = lctx->c_s_index;
1812
1813   /* TODO: don't alloc fifos when we don't transfer data on this session
1814    * but we still need fifos for the events? */
1815   if ((rv = app_worker_init_accepted (quic_session)))
1816     {
1817       QUIC_DBG (1, "failed to allocate fifos");
1818       session_free (quic_session);
1819       return rv;
1820     }
1821   app_wrk = app_worker_get (quic_session->app_wrk_index);
1822   if ((rv = app_worker_accept_notify (app_wrk, quic_session)))
1823     {
1824       QUIC_DBG (1, "failed to notify accept worker app");
1825       return rv;
1826     }
1827
1828   /* Register connection in connections map */
1829   quic_make_connection_key (&kv, quicly_get_master_id (conn));
1830   kv.value = ((u64) thread_index) << 32 | (u64) ctx_index;
1831   clib_bihash_add_del_16_8 (&quic_main.connection_hash, &kv, 1 /* is_add */ );
1832   QUIC_DBG (2, "Registering conn with id %lu %lu", kv.key[0], kv.key[1]);
1833
1834   return quic_send_packets (ctx);
1835 }
1836
1837 static int
1838 quic_reset_connection (u64 udp_session_handle,
1839                        struct sockaddr *sa, socklen_t salen,
1840                        quicly_decoded_packet_t packet)
1841 {
1842   /* short header packet; potentially a dead connection. No need to check the
1843    * length of the incoming packet, because loop is prevented by authenticating
1844    * the CID (by checking node_id and thread_id). If the peer is also sending a
1845    * reset, then the next CID is highly likely to contain a non-authenticating
1846    * CID, ... */
1847   QUIC_DBG (2, "Sending stateless reset");
1848   int rv;
1849   quicly_datagram_t *dgram;
1850   session_t *udp_session;
1851   quicly_context_t *quicly_ctx;
1852   if (packet.cid.dest.plaintext.node_id != 0
1853       || packet.cid.dest.plaintext.thread_id != 0)
1854     return 0;
1855   quicly_ctx = quic_get_quicly_ctx_from_udp (udp_session_handle);
1856   dgram = quicly_send_stateless_reset (quicly_ctx, sa, NULL,
1857                                        &packet.cid.dest.plaintext);
1858   if (dgram == NULL)
1859     return 1;
1860   udp_session = session_get_from_handle (udp_session_handle);
1861   rv = quic_send_datagram (udp_session, dgram);
1862   quic_set_udp_tx_evt (udp_session);
1863   return rv;
1864 }
1865
1866 static int
1867 quic_process_one_rx_packet (u64 udp_session_handle, svm_fifo_t * f,
1868                             u32 * fifo_offset, u32 * max_packet, u32 packet_n,
1869                             quic_rx_packet_ctx_t * packet_ctx)
1870 {
1871   session_dgram_hdr_t ph;
1872   quic_ctx_t *ctx = NULL;
1873   size_t plen;
1874   struct sockaddr_in6 sa6;
1875   struct sockaddr *sa = (struct sockaddr *) &sa6;
1876   socklen_t salen;
1877   u32 full_len, ret;
1878   int err, rv = 0;
1879   packet_ctx->thread_index = UINT32_MAX;
1880   packet_ctx->ctx_index = UINT32_MAX;
1881   u32 thread_index = vlib_get_thread_index ();
1882   u32 *opening_ctx_pool, *ctx_index_ptr;
1883   u32 cur_deq = svm_fifo_max_dequeue (f) - *fifo_offset;
1884   quicly_context_t *quicly_ctx;
1885
1886   if (cur_deq == 0)
1887     {
1888       *max_packet = packet_n + 1;
1889       return 0;
1890     }
1891
1892   if (cur_deq < SESSION_CONN_HDR_LEN)
1893     {
1894       QUIC_ERR ("Not enough data for even a header in RX");
1895       return 1;
1896     }
1897   ret = svm_fifo_peek (f, *fifo_offset, SESSION_CONN_HDR_LEN, (u8 *) & ph);
1898   if (ret != SESSION_CONN_HDR_LEN)
1899     {
1900       QUIC_ERR ("Not enough data for header in RX");
1901       return 1;
1902     }
1903   ASSERT (ph.data_offset == 0);
1904   full_len = ph.data_length + SESSION_CONN_HDR_LEN;
1905   if (full_len > cur_deq)
1906     {
1907       QUIC_ERR ("Not enough data in fifo RX");
1908       return 1;
1909     }
1910
1911   /* Quicly can read len bytes from the fifo at offset:
1912    * ph.data_offset + SESSION_CONN_HDR_LEN */
1913   ret = svm_fifo_peek (f, SESSION_CONN_HDR_LEN + *fifo_offset,
1914                        ph.data_length, packet_ctx->data);
1915   if (ret != ph.data_length)
1916     {
1917       QUIC_ERR ("Not enough data peeked in RX");
1918       return 1;
1919     }
1920
1921   quic_increment_counter (QUIC_ERROR_RX_PACKETS, 1);
1922   rv = 0;
1923   quic_build_sockaddr (sa, &salen, &ph.rmt_ip, ph.rmt_port, ph.is_ip4);
1924   quicly_ctx = quic_get_quicly_ctx_from_udp (udp_session_handle);
1925   plen = quicly_decode_packet (quicly_ctx, &packet_ctx->packet,
1926                                packet_ctx->data, ph.data_length);
1927
1928   if (plen == SIZE_MAX)
1929     {
1930       *fifo_offset += SESSION_CONN_HDR_LEN + ph.data_length;
1931       return 1;
1932     }
1933
1934   err = quic_find_packet_ctx (&packet_ctx->thread_index,
1935                               &packet_ctx->ctx_index, sa, salen,
1936                               &packet_ctx->packet, thread_index);
1937   if (err == 0)
1938     {
1939       ctx = quic_ctx_get (packet_ctx->ctx_index, thread_index);
1940       rv = quicly_receive (ctx->conn, NULL, sa, &packet_ctx->packet);
1941       if (rv)
1942         QUIC_ERR ("quicly_receive return error %d", rv);
1943     }
1944   else if (packet_ctx->ctx_index != UINT32_MAX)
1945     {
1946       /*  Connection found but on wrong thread, ask move */
1947       *max_packet = packet_n + 1;
1948       return 0;
1949     }
1950   else if ((packet_ctx->packet.octets.base[0] & QUICLY_PACKET_TYPE_BITMASK) ==
1951            QUICLY_PACKET_TYPE_INITIAL)
1952     {
1953       /*  Try to find matching "opening" ctx */
1954       opening_ctx_pool = quic_main.wrk_ctx[thread_index].opening_ctx_pool;
1955
1956       /* *INDENT-OFF* */
1957       pool_foreach (ctx_index_ptr, opening_ctx_pool,
1958       ({
1959         ctx = quic_ctx_get (*ctx_index_ptr, thread_index);
1960         if (ctx->udp_session_handle == udp_session_handle)
1961           {
1962             /*  Right ctx found, create conn & remove from pool */
1963             quic_accept_connection (*ctx_index_ptr, sa, salen, packet_ctx->packet);
1964             *max_packet = packet_n + 1;
1965             packet_ctx->thread_index = thread_index;
1966             packet_ctx->ctx_index = *ctx_index_ptr;
1967             pool_put (opening_ctx_pool, ctx_index_ptr);
1968             goto updateOffset;
1969           }
1970       }));
1971       /* *INDENT-ON* */
1972       QUIC_ERR ("Opening ctx not found!");;
1973     }
1974   else
1975     {
1976       quic_reset_connection (udp_session_handle, sa, salen,
1977                              packet_ctx->packet);
1978     }
1979
1980 updateOffset:
1981   *fifo_offset += SESSION_CONN_HDR_LEN + ph.data_length;
1982   return 0;
1983 }
1984
1985 static int
1986 quic_udp_session_rx_callback (session_t * udp_session)
1987 {
1988   /*  Read data from UDP rx_fifo and pass it to the quicly conn. */
1989   quic_ctx_t *ctx = NULL;
1990   svm_fifo_t *f;
1991   u32 max_deq;
1992   u64 udp_session_handle = session_handle (udp_session);
1993   int rv = 0;
1994   u32 thread_index = vlib_get_thread_index ();
1995   quic_rx_packet_ctx_t packets_ctx[16];
1996   u32 i, fifo_offset, max_packets;
1997
1998   if (udp_session->flags & SESSION_F_IS_MIGRATING)
1999     {
2000       QUIC_DBG (3, "RX on migrating udp session");
2001       return 0;
2002     }
2003
2004   while (1)
2005     {
2006       udp_session = session_get_from_handle (udp_session_handle);       /*  session alloc might have happened */
2007       f = udp_session->rx_fifo;
2008       max_deq = svm_fifo_max_dequeue (f);
2009       if (max_deq == 0)
2010         return 0;
2011
2012       fifo_offset = 0;
2013       max_packets = 16;
2014       for (i = 0; i < max_packets; i++)
2015         quic_process_one_rx_packet (udp_session_handle, f, &fifo_offset,
2016                                     &max_packets, i, &packets_ctx[i]);
2017
2018       for (i = 0; i < max_packets; i++)
2019         {
2020           if (packets_ctx[i].thread_index != thread_index)
2021             continue;
2022           ctx = quic_ctx_get (packets_ctx[i].ctx_index,
2023                               packets_ctx[i].thread_index);
2024           quic_check_quic_session_connected (ctx);
2025           ctx = quic_ctx_get (packets_ctx[i].ctx_index,
2026                               packets_ctx[i].thread_index);
2027           quic_send_packets (ctx);
2028         }
2029       svm_fifo_dequeue_drop (f, fifo_offset);
2030     }
2031   return rv;
2032 }
2033
2034 always_inline void
2035 quic_common_get_transport_endpoint (quic_ctx_t * ctx,
2036                                     transport_endpoint_t * tep, u8 is_lcl)
2037 {
2038   session_t *udp_session;
2039   if (!quic_ctx_is_stream (ctx))
2040     {
2041       udp_session = session_get_from_handle (ctx->udp_session_handle);
2042       session_get_endpoint (udp_session, tep, is_lcl);
2043     }
2044 }
2045
2046 static void
2047 quic_get_transport_listener_endpoint (u32 listener_index,
2048                                       transport_endpoint_t * tep, u8 is_lcl)
2049 {
2050   quic_ctx_t *ctx;
2051   app_listener_t *app_listener;
2052   session_t *udp_listen_session;
2053   ctx = quic_ctx_get (listener_index, vlib_get_thread_index ());
2054   if (quic_ctx_is_listener (ctx))
2055     {
2056       app_listener = app_listener_get_w_handle (ctx->udp_session_handle);
2057       udp_listen_session = app_listener_get_session (app_listener);
2058       return session_get_endpoint (udp_listen_session, tep, is_lcl);
2059     }
2060   quic_common_get_transport_endpoint (ctx, tep, is_lcl);
2061 }
2062
2063 static void
2064 quic_get_transport_endpoint (u32 ctx_index, u32 thread_index,
2065                              transport_endpoint_t * tep, u8 is_lcl)
2066 {
2067   quic_ctx_t *ctx;
2068   ctx = quic_ctx_get (ctx_index, thread_index);
2069   quic_common_get_transport_endpoint (ctx, tep, is_lcl);
2070 }
2071
2072 /* *INDENT-OFF* */
2073 static session_cb_vft_t quic_app_cb_vft = {
2074   .session_accept_callback = quic_udp_session_accepted_callback,
2075   .session_disconnect_callback = quic_udp_session_disconnect_callback,
2076   .session_connected_callback = quic_udp_session_connected_callback,
2077   .session_reset_callback = quic_udp_session_reset_callback,
2078   .session_migrate_callback = quic_udp_session_migrate_callback,
2079   .add_segment_callback = quic_add_segment_callback,
2080   .del_segment_callback = quic_del_segment_callback,
2081   .builtin_app_rx_callback = quic_udp_session_rx_callback,
2082   .session_cleanup_callback = quic_udp_session_cleanup_callback,
2083 };
2084
2085 static const transport_proto_vft_t quic_proto = {
2086   .connect = quic_connect,
2087   .close = quic_proto_on_close,
2088   .start_listen = quic_start_listen,
2089   .stop_listen = quic_stop_listen,
2090   .get_connection = quic_connection_get,
2091   .get_listener = quic_listener_get,
2092   .update_time = quic_update_time,
2093   .app_rx_evt = quic_custom_app_rx_callback,
2094   .custom_tx = quic_custom_tx_callback,
2095   .format_connection = format_quic_connection,
2096   .format_half_open = format_quic_half_open,
2097   .format_listener = format_quic_listener,
2098   .get_transport_endpoint = quic_get_transport_endpoint,
2099   .get_transport_listener_endpoint = quic_get_transport_listener_endpoint,
2100   .transport_options = {
2101     .tx_type = TRANSPORT_TX_INTERNAL,
2102     .service_type = TRANSPORT_SERVICE_APP,
2103   },
2104 };
2105 /* *INDENT-ON* */
2106
2107 static void
2108 quic_register_cipher_suite (crypto_engine_type_t type,
2109                             ptls_cipher_suite_t ** ciphers)
2110 {
2111   quic_main_t *qm = &quic_main;
2112   vec_validate (qm->quic_ciphers, type);
2113   qm->quic_ciphers[type] = ciphers;
2114 }
2115
2116 static void
2117 quic_update_fifo_size ()
2118 {
2119   quic_main_t *qm = &quic_main;
2120   segment_manager_props_t *seg_mgr_props =
2121     application_get_segment_manager_properties (qm->app_index);
2122
2123   if (!seg_mgr_props)
2124     {
2125       clib_warning
2126         ("error while getting segment_manager_props_t, can't update fifo-size");
2127       return;
2128     }
2129
2130   seg_mgr_props->tx_fifo_size = qm->udp_fifo_size;
2131   seg_mgr_props->rx_fifo_size = qm->udp_fifo_size;
2132 }
2133
2134 static clib_error_t *
2135 quic_init (vlib_main_t * vm)
2136 {
2137   u32 segment_size = 256 << 20;
2138   vlib_thread_main_t *vtm = vlib_get_thread_main ();
2139   tw_timer_wheel_1t_3w_1024sl_ov_t *tw;
2140   vnet_app_attach_args_t _a, *a = &_a;
2141   u64 options[APP_OPTIONS_N_OPTIONS];
2142   quic_main_t *qm = &quic_main;
2143   u32 num_threads, i;
2144
2145   num_threads = 1 /* main thread */  + vtm->n_threads;
2146
2147   clib_memset (a, 0, sizeof (*a));
2148   clib_memset (options, 0, sizeof (options));
2149
2150   a->session_cb_vft = &quic_app_cb_vft;
2151   a->api_client_index = APP_INVALID_INDEX;
2152   a->options = options;
2153   a->name = format (0, "quic");
2154   a->options[APP_OPTIONS_SEGMENT_SIZE] = segment_size;
2155   a->options[APP_OPTIONS_ADD_SEGMENT_SIZE] = segment_size;
2156   a->options[APP_OPTIONS_RX_FIFO_SIZE] = qm->udp_fifo_size;
2157   a->options[APP_OPTIONS_TX_FIFO_SIZE] = qm->udp_fifo_size;
2158   a->options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] = qm->udp_fifo_prealloc;
2159   a->options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_IS_BUILTIN;
2160   a->options[APP_OPTIONS_FLAGS] |= APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE;
2161   a->options[APP_OPTIONS_FLAGS] |= APP_OPTIONS_FLAGS_IS_TRANSPORT_APP;
2162
2163   if (vnet_application_attach (a))
2164     {
2165       clib_warning ("failed to attach quic app");
2166       return clib_error_return (0, "failed to attach quic app");
2167     }
2168
2169   vec_validate (qm->ctx_pool, num_threads - 1);
2170   vec_validate (qm->wrk_ctx, num_threads - 1);
2171   /*  Timer wheels, one per thread. */
2172   for (i = 0; i < num_threads; i++)
2173     {
2174       tw = &qm->wrk_ctx[i].timer_wheel;
2175       tw_timer_wheel_init_1t_3w_1024sl_ov (tw, quic_expired_timers_dispatch,
2176                                            1e-3 /* timer period 1ms */ , ~0);
2177       tw->last_run_time = vlib_time_now (vlib_get_main ());
2178     }
2179
2180   clib_bihash_init_16_8 (&qm->connection_hash, "quic connections", 1024,
2181                          4 << 20);
2182
2183
2184   qm->app_index = a->app_index;
2185   qm->tstamp_ticks_per_clock = vm->clib_time.seconds_per_clock
2186     / QUIC_TSTAMP_RESOLUTION;
2187   qm->session_cache.super.cb = quic_encrypt_ticket_cb;
2188
2189   transport_register_protocol (TRANSPORT_PROTO_QUIC, &quic_proto,
2190                                FIB_PROTOCOL_IP4, ~0);
2191   transport_register_protocol (TRANSPORT_PROTO_QUIC, &quic_proto,
2192                                FIB_PROTOCOL_IP6, ~0);
2193
2194   quic_register_cipher_suite (CRYPTO_ENGINE_VPP, quic_crypto_cipher_suites);
2195   quic_register_cipher_suite (CRYPTO_ENGINE_PICOTLS,
2196                               ptls_openssl_cipher_suites);
2197   qm->default_cipher = CRYPTO_ENGINE_PICOTLS;
2198   vec_free (a->name);
2199   return 0;
2200 }
2201
2202 VLIB_INIT_FUNCTION (quic_init);
2203
2204 static clib_error_t *
2205 quic_plugin_crypto_command_fn (vlib_main_t * vm,
2206                                unformat_input_t * input,
2207                                vlib_cli_command_t * cmd)
2208 {
2209   quic_main_t *qm = &quic_main;
2210   if (unformat_check_input (input) == UNFORMAT_END_OF_INPUT)
2211     return clib_error_return (0, "unknown input '%U'",
2212                               format_unformat_error, input);
2213   if (unformat (input, "vpp"))
2214     qm->default_cipher = CRYPTO_ENGINE_VPP;
2215   else if (unformat (input, "picotls"))
2216     qm->default_cipher = CRYPTO_ENGINE_PICOTLS;
2217   else
2218     return clib_error_return (0, "unknown input '%U'",
2219                               format_unformat_error, input);
2220   return 0;
2221 }
2222
2223 u64 quic_fifosize = 0;
2224 static clib_error_t *
2225 quic_plugin_set_fifo_size_command_fn (vlib_main_t * vm,
2226                                       unformat_input_t * input,
2227                                       vlib_cli_command_t * cmd)
2228 {
2229   quic_main_t *qm = &quic_main;
2230   unformat_input_t _line_input, *line_input = &_line_input;
2231   uword tmp;
2232
2233   if (!unformat_user (input, unformat_line_input, line_input))
2234     return 0;
2235
2236   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
2237     {
2238       if (unformat (line_input, "%U", unformat_memory_size, &tmp))
2239         {
2240           if (tmp >= 0x100000000ULL)
2241             {
2242               return clib_error_return
2243                 (0, "fifo-size %llu (0x%llx) too large", tmp, tmp);
2244             }
2245           qm->udp_fifo_size = tmp;
2246           quic_update_fifo_size ();
2247         }
2248       else
2249         return clib_error_return (0, "unknown input '%U'",
2250                                   format_unformat_error, line_input);
2251     }
2252
2253   return 0;
2254 }
2255
2256 static u8 *
2257 quic_format_ctx_stat (u8 * s, va_list * args)
2258 {
2259   quic_ctx_t *ctx = va_arg (*args, quic_ctx_t *);
2260   quicly_stats_t quicly_stats;
2261
2262   quicly_get_stats (ctx->conn, &quicly_stats);
2263
2264   s = format (s, "\n\rQUIC conn stats \n\r");
2265
2266   s =
2267     format (s, "RTT: min:%d, smoothed:%d, variance:%d, latest:%d \n\r",
2268             quicly_stats.rtt.minimum, quicly_stats.rtt.smoothed,
2269             quicly_stats.rtt.variance, quicly_stats.rtt.latest);
2270   s = format (s, "Packet loss:%d \n\r", quicly_stats.num_packets.lost);
2271
2272   return s;
2273 }
2274
2275 static clib_error_t *
2276 quic_plugin_showstats_command_fn (vlib_main_t * vm,
2277                                   unformat_input_t * input,
2278                                   vlib_cli_command_t * cmd)
2279 {
2280   quic_main_t *qm = &quic_main;
2281   quic_ctx_t *ctx = NULL;
2282   u32 num_workers = vlib_num_workers ();
2283
2284   for (int i = 0; i < num_workers + 1; i++)
2285     {
2286       /* *INDENT-OFF* */
2287       pool_foreach (ctx, qm->ctx_pool[i],
2288       ({
2289         if(!(ctx->flags & QUIC_F_IS_LISTENER) && !(ctx->flags & QUIC_F_IS_STREAM))
2290           vlib_cli_output (vm, "%U", quic_format_ctx_stat, ctx);
2291       }));
2292       /* *INDENT-ON* */
2293     }
2294   return 0;
2295 }
2296
2297 static clib_error_t *
2298 quic_show_ctx_command_fn (vlib_main_t * vm, unformat_input_t * input,
2299                           vlib_cli_command_t * cmd)
2300 {
2301   quic_main_t *qm = &quic_main;
2302   quic_ctx_t *ctx = NULL;
2303   u32 num_workers = vlib_num_workers ();
2304
2305   for (int i = 0; i < num_workers + 1; i++)
2306     {
2307       /* *INDENT-OFF* */
2308       pool_foreach (ctx, qm->ctx_pool[i],
2309       ({
2310         vlib_cli_output (vm, "%U", format_quic_ctx, ctx, 1);
2311       }));
2312       /* *INDENT-ON* */
2313     }
2314   return 0;
2315 }
2316
2317 /* *INDENT-OFF* */
2318 VLIB_CLI_COMMAND (quic_plugin_crypto_command, static) =
2319 {
2320   .path = "quic set crypto api",
2321   .short_help = "quic set crypto api [picotls, vpp]",
2322   .function = quic_plugin_crypto_command_fn,
2323 };
2324 VLIB_CLI_COMMAND(quic_plugin_set_fifo_size_command, static)=
2325 {
2326   .path = "quic set fifo-size",
2327   .short_help = "quic set fifo-size N[K|M|G] (default 64K)",
2328   .function = quic_plugin_set_fifo_size_command_fn,
2329 };
2330 VLIB_CLI_COMMAND(quic_plugin_stats_command, static)=
2331 {
2332   .path = "show quic stats",
2333   .short_help = "show quic stats",
2334   .function = quic_plugin_showstats_command_fn,
2335 };
2336 VLIB_CLI_COMMAND(quic_show_ctx_command, static)=
2337 {
2338   .path = "show quic ctx",
2339   .short_help = "show quic ctx",
2340   .function = quic_show_ctx_command_fn,
2341 };
2342 VLIB_PLUGIN_REGISTER () =
2343 {
2344   .version = VPP_BUILD_VER,
2345   .description = "Quic transport protocol",
2346   .default_disabled = 1,
2347 };
2348 /* *INDENT-ON* */
2349
2350 static clib_error_t *
2351 quic_config_fn (vlib_main_t * vm, unformat_input_t * input)
2352 {
2353   quic_main_t *qm = &quic_main;
2354   uword tmp;
2355
2356   qm->udp_fifo_size = QUIC_DEFAULT_FIFO_SIZE;
2357   qm->udp_fifo_prealloc = 0;
2358   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2359     {
2360       if (unformat (input, "fifo-size %U", unformat_memory_size, &tmp))
2361         {
2362           if (tmp >= 0x100000000ULL)
2363             {
2364               return clib_error_return
2365                 (0, "fifo-size %llu (0x%llx) too large", tmp, tmp);
2366             }
2367           qm->udp_fifo_size = tmp;
2368         }
2369       else
2370         if (unformat
2371             (input, "fifo-prealloc %u", &quic_main.udp_fifo_prealloc))
2372         ;
2373       else
2374         return clib_error_return (0, "unknown input '%U'",
2375                                   format_unformat_error, input);
2376     }
2377
2378   return 0;
2379 }
2380
2381 VLIB_EARLY_CONFIG_FUNCTION (quic_config_fn, "quic");
2382
2383 static uword
2384 quic_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
2385               vlib_frame_t * frame)
2386 {
2387   return 0;
2388 }
2389
2390 /* *INDENT-OFF* */
2391 VLIB_REGISTER_NODE (quic_input_node) =
2392 {
2393   .function = quic_node_fn,
2394   .name = "quic-input",
2395   .vector_size = sizeof (u32),
2396   .type = VLIB_NODE_TYPE_INTERNAL,
2397   .n_errors = ARRAY_LEN (quic_error_strings),
2398   .error_strings = quic_error_strings,
2399 };
2400 /* *INDENT-ON* */
2401
2402 /*
2403  * fd.io coding-style-patch-verification: ON
2404  *
2405  * Local Variables:
2406  * eval: (c-set-style "gnu")
2407  * End:
2408  */