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