QUIC multi thread update
[vpp.git] / src / plugins / quic / quic.h
index f574b29..759dc9f 100644 (file)
 
 #include <vppinfra/lock.h>
 #include <vppinfra/tw_timer_1t_3w_1024sl_ov.h>
+#include <vppinfra/bihash_16_8.h>
 
 #include <quicly.h>
 
-#define QUIC_DEBUG       4
+/* QUIC log levels
+ * 1 - errors
+ * 2 - connection/stream events
+ * 3 - packet events
+ * 4 - timer events
+ **/
+
+#define QUIC_DEBUG               2
 #define QUIC_DEBUG_LEVEL_CLIENT  0
 #define QUIC_DEBUG_LEVEL_SERVER  0
 
 #define QUIC_DEFAULT_CA_CERT_PATH        "/etc/ssl/certs/ca-certificates.crt"
 
-#define QUIC_TIMER_HANDLE_INVALID ((u32) ~0)
-
 #define QUIC_TSTAMP_RESOLUTION  0.001  /* QUIC tick resolution (1ms) */
 
 
 #define QUIC_DBG(_lvl, _fmt, _args...)
 #endif
 
-#define QUIC_CONN_STATE_HANDSHAKE 0
-#define QUIC_CONN_STATE_READY     1
-
+#define QUIC_CONN_STATE_OPENED    0
+#define QUIC_CONN_STATE_HANDSHAKE 1
+#define QUIC_CONN_STATE_READY     2
 
 /* *INDENT-OFF* */
 typedef CLIB_PACKED (struct quic_ctx_id_
 {
-  session_handle_t app_session;
-  session_handle_t quic_session;
-  u32 parent_app_wrk_idx;
+  u32 parent_app_wrk_id;
   u32 parent_app_id;
-  u32 listener_ctx_id;
-  u32 timer_handle;
-  quicly_conn_t *conn;
-  u8 udp_is_ip4;
-  u8 conn_state;
+  union {
+    CLIB_PACKED (struct {
+      session_handle_t udp_session_handle;
+      quicly_conn_t *conn;
+      u32 listener_ctx_id;
+      u8 udp_is_ip4;
+    });
+    CLIB_PACKED (struct {
+      quicly_stream_t *stream;
+      u32 quic_connection_ctx_id;
+    });
+  };
+  u8 is_stream;
 }) quic_ctx_id_t;
 /* *INDENT-ON* */
 
 STATIC_ASSERT (sizeof (quic_ctx_id_t) <= 42, "ctx id must be less than 42");
 
+/* This structure is used to implement the concept of VPP connection for QUIC.
+ * We create one per connection and one per stream. */
 typedef struct quic_ctx_
 {
   union
@@ -70,30 +84,35 @@ typedef struct quic_ctx_
     transport_connection_t connection;
     quic_ctx_id_t c_quic_ctx_id;
   };
-
-  quicly_stream_t *stream;
   u8 *srv_hostname;
   u32 client_opaque;
+  u32 timer_handle;
+  u8 conn_state;
   u8 is_listener;
 } quic_ctx_t;
 
+typedef struct quic_stream_data_
+{
+  u32 ctx_id;
+  u32 thread_index;
+} quic_stream_data_t;
+
 typedef struct quic_worker_ctx_
 {
   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
-  u32 time_now;                                        /**< worker time */
+  int64_t time_now;                               /**< worker time */
   tw_timer_wheel_1t_3w_1024sl_ov_t timer_wheel;           /**< worker timer wheel */
-  u32 *tx_buffers;                             /**< tx buffer free list */
+  u32 *opening_ctx_pool;
 } quic_worker_ctx_t;
 
 typedef struct quic_main_
 {
   u32 app_index;
-  quic_ctx_t *half_open_ctx_pool;
   quic_ctx_t **ctx_pool;
-  clib_rwlock_t half_open_rwlock;
   quic_worker_ctx_t *wrk_ctx;
+  clib_bihash_16_8_t connection_hash;  /* quicly connection id -> conn handle */
   f64 tstamp_ticks_per_clock;
-
+  u32 fake_app_listener_index; /* ugly hack for accept cb */
 
   /*
    * Config
@@ -105,8 +124,6 @@ typedef struct quic_main_
   char *ca_cert_path;
 } quic_main_t;
 
-quic_main_t *vnet_quic_get_main (void);
-
 #endif /* __included_quic_h__ */
 
 /*