Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1 | /* |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 2 | * Copyright (c) 2017-2019 Cisco and/or its affiliates. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 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 | * @file |
| 17 | * @brief Session and session manager |
| 18 | */ |
| 19 | |
qinyang | af9b715 | 2023-06-27 01:11:53 -0700 | [diff] [blame] | 20 | #include <vnet/plugin/plugin.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 21 | #include <vnet/session/session.h> |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 22 | #include <vnet/session/application.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 23 | #include <vnet/dpo/load_balance.h> |
| 24 | #include <vnet/fib/ip4_fib.h> |
Florin Coras | d82f471 | 2022-04-25 16:15:02 -0700 | [diff] [blame] | 25 | #include <vlib/stats/stats.h> |
Marvin Liu | 0654242 | 2022-08-16 06:49:09 +0000 | [diff] [blame] | 26 | #include <vlib/dma/dma.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 27 | |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 28 | session_main_t session_main; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 29 | |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 30 | static inline int |
| 31 | session_send_evt_to_thread (void *data, void *args, u32 thread_index, |
| 32 | session_evt_type_t evt_type) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 33 | { |
Florin Coras | 7da8829 | 2021-03-18 15:04:34 -0700 | [diff] [blame] | 34 | session_worker_t *wrk = session_main_get_worker (thread_index); |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 35 | session_event_t *evt; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 36 | svm_msg_q_msg_t msg; |
| 37 | svm_msg_q_t *mq; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 38 | |
Florin Coras | 7da8829 | 2021-03-18 15:04:34 -0700 | [diff] [blame] | 39 | mq = wrk->vpp_event_queue; |
Nathan Skrzypczak | b4c6775 | 2019-06-20 09:58:37 +0200 | [diff] [blame] | 40 | if (PREDICT_FALSE (svm_msg_q_lock (mq))) |
| 41 | return -1; |
Florin Coras | 80d100c | 2022-04-19 18:57:24 -0700 | [diff] [blame] | 42 | if (PREDICT_FALSE (svm_msg_q_or_ring_is_full (mq, SESSION_MQ_IO_EVT_RING))) |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 43 | { |
| 44 | svm_msg_q_unlock (mq); |
| 45 | return -2; |
| 46 | } |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 47 | switch (evt_type) |
| 48 | { |
Florin Coras | f6c4313 | 2019-03-01 12:41:21 -0800 | [diff] [blame] | 49 | case SESSION_CTRL_EVT_RPC: |
Nathan Skrzypczak | 1afa7af | 2019-09-13 17:14:57 +0200 | [diff] [blame] | 50 | msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING); |
| 51 | evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 52 | evt->rpc_args.fp = data; |
| 53 | evt->rpc_args.arg = args; |
| 54 | break; |
Aloys Augustin | 0c7f54d | 2019-07-03 16:59:43 +0200 | [diff] [blame] | 55 | case SESSION_IO_EVT_RX: |
Florin Coras | f6c4313 | 2019-03-01 12:41:21 -0800 | [diff] [blame] | 56 | case SESSION_IO_EVT_TX: |
Florin Coras | 844a36d | 2018-12-20 09:50:50 -0800 | [diff] [blame] | 57 | case SESSION_IO_EVT_TX_FLUSH: |
Florin Coras | f6c4313 | 2019-03-01 12:41:21 -0800 | [diff] [blame] | 58 | case SESSION_IO_EVT_BUILTIN_RX: |
Nathan Skrzypczak | 1afa7af | 2019-09-13 17:14:57 +0200 | [diff] [blame] | 59 | msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING); |
| 60 | evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg); |
Florin Coras | c0737e9 | 2019-03-04 14:19:39 -0800 | [diff] [blame] | 61 | evt->session_index = *(u32 *) data; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 62 | break; |
Florin Coras | aeb7c1c | 2023-03-10 10:22:21 -0800 | [diff] [blame] | 63 | case SESSION_IO_EVT_TX_MAIN: |
Florin Coras | f6c4313 | 2019-03-01 12:41:21 -0800 | [diff] [blame] | 64 | case SESSION_CTRL_EVT_CLOSE: |
Florin Coras | 73cad33 | 2019-08-28 17:12:32 -0700 | [diff] [blame] | 65 | case SESSION_CTRL_EVT_RESET: |
Nathan Skrzypczak | 1afa7af | 2019-09-13 17:14:57 +0200 | [diff] [blame] | 66 | msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING); |
| 67 | evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg); |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 68 | evt->session_handle = session_handle ((session_t *) data); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 69 | break; |
| 70 | default: |
| 71 | clib_warning ("evt unhandled!"); |
| 72 | svm_msg_q_unlock (mq); |
| 73 | return -1; |
| 74 | } |
Nathan Skrzypczak | 1afa7af | 2019-09-13 17:14:57 +0200 | [diff] [blame] | 75 | evt->event_type = evt_type; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 76 | |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 77 | svm_msg_q_add_and_unlock (mq, &msg); |
Florin Coras | 7da8829 | 2021-03-18 15:04:34 -0700 | [diff] [blame] | 78 | |
| 79 | if (PREDICT_FALSE (wrk->state == SESSION_WRK_INTERRUPT)) |
| 80 | vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index); |
| 81 | |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 82 | return 0; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 83 | } |
| 84 | |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 85 | int |
| 86 | session_send_io_evt_to_thread (svm_fifo_t * f, session_evt_type_t evt_type) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 87 | { |
Florin Coras | c547e91 | 2020-12-08 17:50:45 -0800 | [diff] [blame] | 88 | return session_send_evt_to_thread (&f->shr->master_session_index, 0, |
Florin Coras | c0737e9 | 2019-03-04 14:19:39 -0800 | [diff] [blame] | 89 | f->master_thread_index, evt_type); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | int |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 93 | session_send_io_evt_to_thread_custom (void *data, u32 thread_index, |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 94 | session_evt_type_t evt_type) |
| 95 | { |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 96 | return session_send_evt_to_thread (data, 0, thread_index, evt_type); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | int |
Florin Coras | 7e9e2bd | 2024-03-22 16:29:09 -0700 | [diff] [blame] | 100 | session_program_tx_io_evt (session_handle_tu_t sh, session_evt_type_t evt_type) |
| 101 | { |
| 102 | return session_send_evt_to_thread ((void *) &sh.session_index, 0, |
| 103 | (u32) sh.thread_index, evt_type); |
| 104 | } |
| 105 | |
| 106 | int |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 107 | session_send_ctrl_evt_to_thread (session_t * s, session_evt_type_t evt_type) |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 108 | { |
liuyacan | 534468e | 2021-05-09 03:50:40 +0000 | [diff] [blame] | 109 | /* only events supported are disconnect, shutdown and reset */ |
| 110 | ASSERT (evt_type == SESSION_CTRL_EVT_CLOSE || |
| 111 | evt_type == SESSION_CTRL_EVT_HALF_CLOSE || |
| 112 | evt_type == SESSION_CTRL_EVT_RESET); |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 113 | return session_send_evt_to_thread (s, 0, s->thread_index, evt_type); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | void |
Nathan Skrzypczak | 60f3e65 | 2019-03-19 13:57:31 +0100 | [diff] [blame] | 117 | session_send_rpc_evt_to_thread_force (u32 thread_index, void *fp, |
| 118 | void *rpc_args) |
| 119 | { |
| 120 | session_send_evt_to_thread (fp, rpc_args, thread_index, |
| 121 | SESSION_CTRL_EVT_RPC); |
| 122 | } |
| 123 | |
| 124 | void |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 125 | session_send_rpc_evt_to_thread (u32 thread_index, void *fp, void *rpc_args) |
| 126 | { |
| 127 | if (thread_index != vlib_get_thread_index ()) |
Nathan Skrzypczak | 60f3e65 | 2019-03-19 13:57:31 +0100 | [diff] [blame] | 128 | session_send_rpc_evt_to_thread_force (thread_index, fp, rpc_args); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 129 | else |
| 130 | { |
| 131 | void (*fnp) (void *) = fp; |
| 132 | fnp (rpc_args); |
| 133 | } |
| 134 | } |
| 135 | |
Florin Coras | 26dd6de | 2019-07-23 23:54:47 -0700 | [diff] [blame] | 136 | void |
| 137 | session_add_self_custom_tx_evt (transport_connection_t * tc, u8 has_prio) |
| 138 | { |
Florin Coras | 7da8829 | 2021-03-18 15:04:34 -0700 | [diff] [blame] | 139 | session_t *s = session_get (tc->s_index, tc->thread_index); |
Florin Coras | 26dd6de | 2019-07-23 23:54:47 -0700 | [diff] [blame] | 140 | |
Florin Coras | 26dd6de | 2019-07-23 23:54:47 -0700 | [diff] [blame] | 141 | ASSERT (s->thread_index == vlib_get_thread_index ()); |
Florin Coras | be237bf | 2019-09-27 08:16:40 -0700 | [diff] [blame] | 142 | ASSERT (s->session_state != SESSION_STATE_TRANSPORT_DELETED); |
Florin Coras | 7da8829 | 2021-03-18 15:04:34 -0700 | [diff] [blame] | 143 | |
Florin Coras | 26dd6de | 2019-07-23 23:54:47 -0700 | [diff] [blame] | 144 | if (!(s->flags & SESSION_F_CUSTOM_TX)) |
| 145 | { |
| 146 | s->flags |= SESSION_F_CUSTOM_TX; |
Florin Coras | 6080e0d | 2020-03-13 20:39:43 +0000 | [diff] [blame] | 147 | if (svm_fifo_set_event (s->tx_fifo) |
| 148 | || transport_connection_is_descheduled (tc)) |
Florin Coras | 26dd6de | 2019-07-23 23:54:47 -0700 | [diff] [blame] | 149 | { |
Florin Coras | 26dd6de | 2019-07-23 23:54:47 -0700 | [diff] [blame] | 150 | session_evt_elt_t *elt; |
Florin Coras | 7da8829 | 2021-03-18 15:04:34 -0700 | [diff] [blame] | 151 | session_worker_t *wrk; |
| 152 | |
Florin Coras | 26dd6de | 2019-07-23 23:54:47 -0700 | [diff] [blame] | 153 | wrk = session_main_get_worker (tc->thread_index); |
| 154 | if (has_prio) |
| 155 | elt = session_evt_alloc_new (wrk); |
| 156 | else |
| 157 | elt = session_evt_alloc_old (wrk); |
| 158 | elt->evt.session_index = tc->s_index; |
| 159 | elt->evt.event_type = SESSION_IO_EVT_TX; |
Florin Coras | 6080e0d | 2020-03-13 20:39:43 +0000 | [diff] [blame] | 160 | tc->flags &= ~TRANSPORT_CONNECTION_F_DESCHED; |
Florin Coras | 7da8829 | 2021-03-18 15:04:34 -0700 | [diff] [blame] | 161 | |
| 162 | if (PREDICT_FALSE (wrk->state == SESSION_WRK_INTERRUPT)) |
| 163 | vlib_node_set_interrupt_pending (wrk->vm, |
| 164 | session_queue_node.index); |
Florin Coras | 26dd6de | 2019-07-23 23:54:47 -0700 | [diff] [blame] | 165 | } |
| 166 | } |
| 167 | } |
| 168 | |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 169 | void |
| 170 | sesssion_reschedule_tx (transport_connection_t * tc) |
| 171 | { |
| 172 | session_worker_t *wrk = session_main_get_worker (tc->thread_index); |
| 173 | session_evt_elt_t *elt; |
| 174 | |
| 175 | ASSERT (tc->thread_index == vlib_get_thread_index ()); |
| 176 | |
| 177 | elt = session_evt_alloc_new (wrk); |
| 178 | elt->evt.session_index = tc->s_index; |
| 179 | elt->evt.event_type = SESSION_IO_EVT_TX; |
Florin Coras | 7da8829 | 2021-03-18 15:04:34 -0700 | [diff] [blame] | 180 | |
| 181 | if (PREDICT_FALSE (wrk->state == SESSION_WRK_INTERRUPT)) |
| 182 | vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index); |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 183 | } |
| 184 | |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 185 | static void |
Florin Coras | dfb3b87 | 2019-08-16 17:48:44 -0700 | [diff] [blame] | 186 | session_program_transport_ctrl_evt (session_t * s, session_evt_type_t evt) |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 187 | { |
| 188 | u32 thread_index = vlib_get_thread_index (); |
Florin Coras | 2062ec0 | 2019-07-15 13:15:18 -0700 | [diff] [blame] | 189 | session_evt_elt_t *elt; |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 190 | session_worker_t *wrk; |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 191 | |
| 192 | /* If we are in the handler thread, or being called with the worker barrier |
| 193 | * held, just append a new event to pending disconnects vector. */ |
| 194 | if (vlib_thread_is_main_w_barrier () || thread_index == s->thread_index) |
| 195 | { |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 196 | wrk = session_main_get_worker (s->thread_index); |
Florin Coras | b0ffbee | 2019-07-21 19:23:46 -0700 | [diff] [blame] | 197 | elt = session_evt_alloc_ctrl (wrk); |
Florin Coras | 2062ec0 | 2019-07-15 13:15:18 -0700 | [diff] [blame] | 198 | clib_memset (&elt->evt, 0, sizeof (session_event_t)); |
| 199 | elt->evt.session_handle = session_handle (s); |
Florin Coras | dfb3b87 | 2019-08-16 17:48:44 -0700 | [diff] [blame] | 200 | elt->evt.event_type = evt; |
Florin Coras | 7da8829 | 2021-03-18 15:04:34 -0700 | [diff] [blame] | 201 | |
| 202 | if (PREDICT_FALSE (wrk->state == SESSION_WRK_INTERRUPT)) |
| 203 | vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index); |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 204 | } |
| 205 | else |
Florin Coras | dfb3b87 | 2019-08-16 17:48:44 -0700 | [diff] [blame] | 206 | session_send_ctrl_evt_to_thread (s, evt); |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 207 | } |
| 208 | |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 209 | session_t * |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 210 | session_alloc (u32 thread_index) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 211 | { |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 212 | session_worker_t *wrk = &session_main.wrk[thread_index]; |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 213 | session_t *s; |
Damjan Marion | 66d4cb5 | 2022-03-17 18:59:46 +0100 | [diff] [blame] | 214 | |
Florin Coras | d3915dc | 2022-03-31 15:42:17 -0700 | [diff] [blame] | 215 | pool_get_aligned_safe (wrk->sessions, s, CLIB_CACHE_LINE_BYTES); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 216 | clib_memset (s, 0, sizeof (*s)); |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 217 | s->session_index = s - wrk->sessions; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 218 | s->thread_index = thread_index; |
Florin Coras | 97fef28 | 2023-12-21 19:41:12 -0800 | [diff] [blame] | 219 | s->al_index = APP_INVALID_INDEX; |
Florin Coras | 6bd8d3f | 2022-03-14 21:17:25 -0700 | [diff] [blame] | 220 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 221 | return s; |
| 222 | } |
| 223 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 224 | void |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 225 | session_free (session_t * s) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 226 | { |
Steven Luong | 20de85b | 2022-10-17 10:39:06 -0700 | [diff] [blame] | 227 | session_worker_t *wrk = &session_main.wrk[s->thread_index]; |
| 228 | |
Florin Coras | cca9618 | 2019-07-19 07:34:13 -0700 | [diff] [blame] | 229 | SESSION_EVT (SESSION_EVT_FREE, s); |
Steven Luong | 20de85b | 2022-10-17 10:39:06 -0700 | [diff] [blame] | 230 | if (CLIB_DEBUG) |
| 231 | clib_memset (s, 0xFA, sizeof (*s)); |
| 232 | pool_put (wrk->sessions, s); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 233 | } |
| 234 | |
Srikanth Akula | e140d5d | 2019-11-18 11:49:58 -0800 | [diff] [blame] | 235 | u8 |
| 236 | session_is_valid (u32 si, u8 thread_index) |
| 237 | { |
| 238 | session_t *s; |
| 239 | transport_connection_t *tc; |
| 240 | |
| 241 | s = pool_elt_at_index (session_main.wrk[thread_index].sessions, si); |
| 242 | |
Srikanth Akula | e140d5d | 2019-11-18 11:49:58 -0800 | [diff] [blame] | 243 | if (s->thread_index != thread_index || s->session_index != si) |
| 244 | return 0; |
| 245 | |
| 246 | if (s->session_state == SESSION_STATE_TRANSPORT_DELETED |
| 247 | || s->session_state <= SESSION_STATE_LISTENING) |
| 248 | return 1; |
| 249 | |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 250 | if ((s->session_state == SESSION_STATE_CONNECTING || |
| 251 | s->session_state == SESSION_STATE_TRANSPORT_CLOSED) && |
Florin Coras | ea72764 | 2021-05-07 19:39:43 -0700 | [diff] [blame] | 252 | (s->flags & SESSION_F_HALF_OPEN)) |
| 253 | return 1; |
| 254 | |
Srikanth Akula | e140d5d | 2019-11-18 11:49:58 -0800 | [diff] [blame] | 255 | tc = session_get_transport (s); |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 256 | if (s->connection_index != tc->c_index || |
| 257 | s->thread_index != tc->thread_index || tc->s_index != si) |
Srikanth Akula | e140d5d | 2019-11-18 11:49:58 -0800 | [diff] [blame] | 258 | return 0; |
| 259 | |
| 260 | return 1; |
| 261 | } |
| 262 | |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 263 | void |
| 264 | session_cleanup (session_t *s) |
| 265 | { |
| 266 | segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo); |
| 267 | session_free (s); |
| 268 | } |
| 269 | |
Florin Coras | 70f26d5 | 2019-07-08 11:47:18 -0700 | [diff] [blame] | 270 | static void |
| 271 | session_cleanup_notify (session_t * s, session_cleanup_ntf_t ntf) |
| 272 | { |
| 273 | app_worker_t *app_wrk; |
| 274 | |
| 275 | app_wrk = app_worker_get_if_valid (s->app_wrk_index); |
Florin Coras | 9a5caec | 2024-04-16 16:53:14 -0700 | [diff] [blame] | 276 | if (PREDICT_FALSE (!app_wrk)) |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 277 | { |
| 278 | if (ntf == SESSION_CLEANUP_TRANSPORT) |
| 279 | return; |
| 280 | |
| 281 | session_cleanup (s); |
| 282 | return; |
| 283 | } |
Florin Coras | 70f26d5 | 2019-07-08 11:47:18 -0700 | [diff] [blame] | 284 | app_worker_cleanup_notify (app_wrk, s, ntf); |
| 285 | } |
| 286 | |
Florin Coras | eb97e5f | 2018-10-15 21:35:42 -0700 | [diff] [blame] | 287 | void |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 288 | session_program_cleanup (session_t *s) |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 289 | { |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 290 | ASSERT (s->session_state == SESSION_STATE_TRANSPORT_DELETED); |
Florin Coras | 70f26d5 | 2019-07-08 11:47:18 -0700 | [diff] [blame] | 291 | session_cleanup_notify (s, SESSION_CLEANUP_SESSION); |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 292 | } |
| 293 | |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 294 | /** |
| 295 | * Cleans up session and lookup table. |
| 296 | * |
| 297 | * Transport connection must still be valid. |
| 298 | */ |
| 299 | static void |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 300 | session_delete (session_t * s) |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 301 | { |
| 302 | int rv; |
| 303 | |
| 304 | /* Delete from the main lookup table. */ |
| 305 | if ((rv = session_lookup_del_session (s))) |
Florin Coras | d09236d | 2019-08-08 17:38:26 -0700 | [diff] [blame] | 306 | clib_warning ("session %u hash delete rv %d", s->session_index, rv); |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 307 | |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 308 | session_program_cleanup (s); |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 309 | } |
| 310 | |
Florin Coras | d50ff7f | 2020-04-16 04:30:22 +0000 | [diff] [blame] | 311 | void |
Florin Coras | ea72764 | 2021-05-07 19:39:43 -0700 | [diff] [blame] | 312 | session_cleanup_half_open (session_handle_t ho_handle) |
Florin Coras | d50ff7f | 2020-04-16 04:30:22 +0000 | [diff] [blame] | 313 | { |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 314 | session_t *ho = session_get_from_handle (ho_handle); |
| 315 | |
| 316 | /* App transports can migrate their half-opens */ |
| 317 | if (ho->flags & SESSION_F_IS_MIGRATING) |
| 318 | { |
| 319 | /* Session still migrating, move to closed state to signal that the |
| 320 | * session should be removed. */ |
| 321 | if (ho->connection_index == ~0) |
| 322 | { |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 323 | session_set_state (ho, SESSION_STATE_CLOSED); |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 324 | return; |
| 325 | } |
| 326 | /* Migrated transports are no longer half-opens */ |
| 327 | transport_cleanup (session_get_transport_proto (ho), |
Florin Coras | 97fef28 | 2023-12-21 19:41:12 -0800 | [diff] [blame] | 328 | ho->connection_index, ho->al_index /* overloaded */); |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 329 | } |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 330 | else if (ho->session_state != SESSION_STATE_TRANSPORT_DELETED) |
Florin Coras | c9fb987 | 2023-03-19 22:03:57 -0700 | [diff] [blame] | 331 | { |
| 332 | /* Cleanup half-open session lookup table if need be */ |
Florin Coras | 4aeba37 | 2023-06-20 16:50:51 -0700 | [diff] [blame] | 333 | if (ho->session_state != SESSION_STATE_TRANSPORT_CLOSED) |
Florin Coras | c9fb987 | 2023-03-19 22:03:57 -0700 | [diff] [blame] | 334 | { |
| 335 | transport_connection_t *tc; |
| 336 | tc = transport_get_half_open (session_get_transport_proto (ho), |
| 337 | ho->connection_index); |
| 338 | if (tc && !(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP)) |
| 339 | session_lookup_del_half_open (tc); |
| 340 | } |
| 341 | transport_cleanup_half_open (session_get_transport_proto (ho), |
| 342 | ho->connection_index); |
| 343 | } |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 344 | session_free (ho); |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 345 | } |
| 346 | |
| 347 | static void |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 348 | session_half_open_free (session_t *ho) |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 349 | { |
| 350 | app_worker_t *app_wrk; |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 351 | |
Florin Coras | c9fb987 | 2023-03-19 22:03:57 -0700 | [diff] [blame] | 352 | ASSERT (vlib_get_thread_index () <= transport_cl_thread ()); |
| 353 | app_wrk = app_worker_get_if_valid (ho->app_wrk_index); |
| 354 | if (app_wrk) |
| 355 | app_worker_del_half_open (app_wrk, ho); |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 356 | else |
| 357 | session_free (ho); |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | static void |
| 361 | session_half_open_free_rpc (void *args) |
| 362 | { |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 363 | session_t *ho = ho_session_get (pointer_to_uword (args)); |
| 364 | session_half_open_free (ho); |
Florin Coras | d50ff7f | 2020-04-16 04:30:22 +0000 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | void |
Florin Coras | ea72764 | 2021-05-07 19:39:43 -0700 | [diff] [blame] | 368 | session_half_open_delete_notify (transport_connection_t *tc) |
Florin Coras | d50ff7f | 2020-04-16 04:30:22 +0000 | [diff] [blame] | 369 | { |
Florin Coras | c9fb987 | 2023-03-19 22:03:57 -0700 | [diff] [blame] | 370 | session_t *ho = ho_session_get (tc->s_index); |
| 371 | |
| 372 | /* Cleanup half-open lookup table if need be */ |
Florin Coras | 4aeba37 | 2023-06-20 16:50:51 -0700 | [diff] [blame] | 373 | if (ho->session_state != SESSION_STATE_TRANSPORT_CLOSED) |
Florin Coras | c9fb987 | 2023-03-19 22:03:57 -0700 | [diff] [blame] | 374 | { |
| 375 | if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP)) |
| 376 | session_lookup_del_half_open (tc); |
| 377 | } |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 378 | session_set_state (ho, SESSION_STATE_TRANSPORT_DELETED); |
Florin Coras | c9fb987 | 2023-03-19 22:03:57 -0700 | [diff] [blame] | 379 | |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 380 | /* Notification from ctrl thread accepted without rpc */ |
Florin Coras | 309f7aa | 2022-03-18 08:33:08 -0700 | [diff] [blame] | 381 | if (tc->thread_index == transport_cl_thread ()) |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 382 | { |
Florin Coras | c9fb987 | 2023-03-19 22:03:57 -0700 | [diff] [blame] | 383 | session_half_open_free (ho); |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 384 | } |
| 385 | else |
| 386 | { |
| 387 | void *args = uword_to_pointer ((uword) tc->s_index, void *); |
Florin Coras | 309f7aa | 2022-03-18 08:33:08 -0700 | [diff] [blame] | 388 | session_send_rpc_evt_to_thread_force (transport_cl_thread (), |
| 389 | session_half_open_free_rpc, args); |
Florin Coras | 374df7a | 2021-05-13 11:37:43 -0700 | [diff] [blame] | 390 | } |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 391 | } |
Florin Coras | ea72764 | 2021-05-07 19:39:43 -0700 | [diff] [blame] | 392 | |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 393 | void |
| 394 | session_half_open_migrate_notify (transport_connection_t *tc) |
| 395 | { |
| 396 | session_t *ho; |
| 397 | |
Florin Coras | c9fb987 | 2023-03-19 22:03:57 -0700 | [diff] [blame] | 398 | /* Support half-open migrations only for transports with no lookup */ |
| 399 | ASSERT (tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP); |
| 400 | |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 401 | ho = ho_session_get (tc->s_index); |
| 402 | ho->flags |= SESSION_F_IS_MIGRATING; |
| 403 | ho->connection_index = ~0; |
| 404 | } |
| 405 | |
| 406 | int |
| 407 | session_half_open_migrated_notify (transport_connection_t *tc) |
| 408 | { |
| 409 | session_t *ho; |
| 410 | |
| 411 | ho = ho_session_get (tc->s_index); |
| 412 | |
| 413 | /* App probably detached so the half-open must be cleaned up */ |
| 414 | if (ho->session_state == SESSION_STATE_CLOSED) |
| 415 | { |
| 416 | session_half_open_delete_notify (tc); |
| 417 | return -1; |
| 418 | } |
| 419 | ho->connection_index = tc->c_index; |
Florin Coras | 97fef28 | 2023-12-21 19:41:12 -0800 | [diff] [blame] | 420 | /* Overload al_index for half-open with new thread */ |
| 421 | ho->al_index = tc->thread_index; |
Florin Coras | bab6c52 | 2021-05-13 08:36:56 -0700 | [diff] [blame] | 422 | return 0; |
Florin Coras | d50ff7f | 2020-04-16 04:30:22 +0000 | [diff] [blame] | 423 | } |
| 424 | |
Andreas Schultz | 1a8c437 | 2020-03-20 09:39:59 +0100 | [diff] [blame] | 425 | session_t * |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 426 | session_alloc_for_connection (transport_connection_t * tc) |
| 427 | { |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 428 | session_t *s; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 429 | u32 thread_index = tc->thread_index; |
| 430 | |
Florin Coras | 40903ac | 2018-06-10 14:41:23 -0700 | [diff] [blame] | 431 | ASSERT (thread_index == vlib_get_thread_index () |
| 432 | || transport_protocol_is_cl (tc->proto)); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 433 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 434 | s = session_alloc (thread_index); |
| 435 | s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4); |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 436 | session_set_state (s, SESSION_STATE_CLOSED); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 437 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 438 | /* Attach transport to session and vice versa */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 439 | s->connection_index = tc->c_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 440 | tc->s_index = s->session_index; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 441 | return s; |
| 442 | } |
| 443 | |
Florin Coras | 2c876f9 | 2021-05-10 21:12:27 -0700 | [diff] [blame] | 444 | session_t * |
Florin Coras | ea72764 | 2021-05-07 19:39:43 -0700 | [diff] [blame] | 445 | session_alloc_for_half_open (transport_connection_t *tc) |
| 446 | { |
| 447 | session_t *s; |
| 448 | |
| 449 | s = ho_session_alloc (); |
| 450 | s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4); |
| 451 | s->connection_index = tc->c_index; |
| 452 | tc->s_index = s->session_index; |
| 453 | return s; |
| 454 | } |
| 455 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 456 | /** |
| 457 | * Discards bytes from buffer chain |
| 458 | * |
| 459 | * It discards n_bytes_to_drop starting at first buffer after chain_b |
| 460 | */ |
| 461 | always_inline void |
| 462 | session_enqueue_discard_chain_bytes (vlib_main_t * vm, vlib_buffer_t * b, |
| 463 | vlib_buffer_t ** chain_b, |
| 464 | u32 n_bytes_to_drop) |
| 465 | { |
| 466 | vlib_buffer_t *next = *chain_b; |
| 467 | u32 to_drop = n_bytes_to_drop; |
| 468 | ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT); |
| 469 | while (to_drop && (next->flags & VLIB_BUFFER_NEXT_PRESENT)) |
| 470 | { |
| 471 | next = vlib_get_buffer (vm, next->next_buffer); |
| 472 | if (next->current_length > to_drop) |
| 473 | { |
| 474 | vlib_buffer_advance (next, to_drop); |
| 475 | to_drop = 0; |
| 476 | } |
| 477 | else |
| 478 | { |
| 479 | to_drop -= next->current_length; |
| 480 | next->current_length = 0; |
| 481 | } |
| 482 | } |
| 483 | *chain_b = next; |
| 484 | |
| 485 | if (to_drop == 0) |
| 486 | b->total_length_not_including_first_buffer -= n_bytes_to_drop; |
| 487 | } |
| 488 | |
| 489 | /** |
| 490 | * Enqueue buffer chain tail |
| 491 | */ |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 492 | always_inline int |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 493 | session_enqueue_chain_tail (session_t * s, vlib_buffer_t * b, |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 494 | u32 offset, u8 is_in_order) |
| 495 | { |
| 496 | vlib_buffer_t *chain_b; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 497 | u32 chain_bi, len, diff; |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 498 | vlib_main_t *vm = vlib_get_main (); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 499 | u8 *data; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 500 | u32 written = 0; |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 501 | int rv = 0; |
| 502 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 503 | if (is_in_order && offset) |
| 504 | { |
| 505 | diff = offset - b->current_length; |
| 506 | if (diff > b->total_length_not_including_first_buffer) |
| 507 | return 0; |
| 508 | chain_b = b; |
| 509 | session_enqueue_discard_chain_bytes (vm, b, &chain_b, diff); |
| 510 | chain_bi = vlib_get_buffer_index (vm, chain_b); |
| 511 | } |
| 512 | else |
| 513 | chain_bi = b->next_buffer; |
| 514 | |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 515 | do |
| 516 | { |
| 517 | chain_b = vlib_get_buffer (vm, chain_bi); |
| 518 | data = vlib_buffer_get_current (chain_b); |
| 519 | len = chain_b->current_length; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 520 | if (!len) |
| 521 | continue; |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 522 | if (is_in_order) |
| 523 | { |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 524 | rv = svm_fifo_enqueue (s->rx_fifo, len, data); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 525 | if (rv == len) |
| 526 | { |
| 527 | written += rv; |
| 528 | } |
| 529 | else if (rv < len) |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 530 | { |
| 531 | return (rv > 0) ? (written + rv) : written; |
| 532 | } |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 533 | else if (rv > len) |
| 534 | { |
| 535 | written += rv; |
| 536 | |
| 537 | /* written more than what was left in chain */ |
| 538 | if (written > b->total_length_not_including_first_buffer) |
| 539 | return written; |
| 540 | |
| 541 | /* drop the bytes that have already been delivered */ |
| 542 | session_enqueue_discard_chain_bytes (vm, b, &chain_b, rv - len); |
| 543 | } |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 544 | } |
| 545 | else |
| 546 | { |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 547 | rv = svm_fifo_enqueue_with_offset (s->rx_fifo, offset, len, data); |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 548 | if (rv) |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 549 | { |
| 550 | clib_warning ("failed to enqueue multi-buffer seg"); |
| 551 | return -1; |
| 552 | } |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 553 | offset += len; |
| 554 | } |
| 555 | } |
| 556 | while ((chain_bi = (chain_b->flags & VLIB_BUFFER_NEXT_PRESENT) |
| 557 | ? chain_b->next_buffer : 0)); |
| 558 | |
| 559 | if (is_in_order) |
| 560 | return written; |
| 561 | |
| 562 | return 0; |
| 563 | } |
| 564 | |
Ryujiro Shibuya | d8f48e2 | 2020-01-22 12:11:42 +0000 | [diff] [blame] | 565 | void |
| 566 | session_fifo_tuning (session_t * s, svm_fifo_t * f, |
| 567 | session_ft_action_t act, u32 len) |
| 568 | { |
| 569 | if (s->flags & SESSION_F_CUSTOM_FIFO_TUNING) |
| 570 | { |
| 571 | app_worker_t *app_wrk = app_worker_get (s->app_wrk_index); |
| 572 | app_worker_session_fifo_tuning (app_wrk, s, f, act, len); |
| 573 | if (CLIB_ASSERT_ENABLE) |
| 574 | { |
| 575 | segment_manager_t *sm; |
| 576 | sm = segment_manager_get (f->segment_manager); |
Florin Coras | c547e91 | 2020-12-08 17:50:45 -0800 | [diff] [blame] | 577 | ASSERT (f->shr->size >= 4096); |
| 578 | ASSERT (f->shr->size <= sm->max_fifo_size); |
Ryujiro Shibuya | d8f48e2 | 2020-01-22 12:11:42 +0000 | [diff] [blame] | 579 | } |
| 580 | } |
| 581 | } |
| 582 | |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 583 | void |
| 584 | session_wrk_program_app_wrk_evts (session_worker_t *wrk, u32 app_wrk_index) |
| 585 | { |
| 586 | u8 need_interrupt; |
| 587 | |
| 588 | ASSERT ((wrk - session_main.wrk) == vlib_get_thread_index ()); |
| 589 | need_interrupt = clib_bitmap_is_zero (wrk->app_wrks_pending_ntf); |
| 590 | wrk->app_wrks_pending_ntf = |
| 591 | clib_bitmap_set (wrk->app_wrks_pending_ntf, app_wrk_index, 1); |
| 592 | |
| 593 | if (need_interrupt) |
| 594 | vlib_node_set_interrupt_pending (wrk->vm, session_input_node.index); |
| 595 | } |
| 596 | |
| 597 | always_inline void |
| 598 | session_program_io_event (app_worker_t *app_wrk, session_t *s, |
| 599 | session_evt_type_t et, u8 is_cl) |
| 600 | { |
| 601 | if (is_cl) |
| 602 | { |
| 603 | /* Special events for connectionless sessions */ |
| 604 | et += SESSION_IO_EVT_BUILTIN_RX - SESSION_IO_EVT_RX; |
| 605 | |
Florin Coras | fa9f37c | 2023-10-10 10:21:01 -0700 | [diff] [blame] | 606 | ASSERT (s->thread_index == 0 || et == SESSION_IO_EVT_TX_MAIN); |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 607 | session_event_t evt = { |
| 608 | .event_type = et, |
| 609 | .session_handle = session_handle (s), |
| 610 | }; |
| 611 | |
| 612 | app_worker_add_event_custom (app_wrk, vlib_get_thread_index (), &evt); |
| 613 | } |
| 614 | else |
| 615 | { |
| 616 | app_worker_add_event (app_wrk, s, et); |
| 617 | } |
| 618 | } |
| 619 | |
| 620 | static inline int |
| 621 | session_notify_subscribers (u32 app_index, session_t *s, svm_fifo_t *f, |
| 622 | session_evt_type_t evt_type) |
| 623 | { |
| 624 | app_worker_t *app_wrk; |
| 625 | application_t *app; |
| 626 | u8 is_cl; |
| 627 | int i; |
| 628 | |
| 629 | app = application_get (app_index); |
| 630 | if (!app) |
| 631 | return -1; |
| 632 | |
| 633 | is_cl = s->thread_index != vlib_get_thread_index (); |
| 634 | for (i = 0; i < f->shr->n_subscribers; i++) |
| 635 | { |
| 636 | app_wrk = application_get_worker (app, f->shr->subscribers[i]); |
| 637 | if (!app_wrk) |
| 638 | continue; |
| 639 | session_program_io_event (app_wrk, s, evt_type, is_cl ? 1 : 0); |
| 640 | } |
| 641 | |
| 642 | return 0; |
| 643 | } |
| 644 | |
| 645 | always_inline int |
| 646 | session_enqueue_notify_inline (session_t *s, u8 is_cl) |
| 647 | { |
| 648 | app_worker_t *app_wrk; |
| 649 | |
| 650 | app_wrk = app_worker_get_if_valid (s->app_wrk_index); |
| 651 | if (PREDICT_FALSE (!app_wrk)) |
| 652 | return -1; |
| 653 | |
| 654 | session_program_io_event (app_wrk, s, SESSION_IO_EVT_RX, is_cl); |
| 655 | |
| 656 | if (PREDICT_FALSE (svm_fifo_n_subscribers (s->rx_fifo))) |
| 657 | return session_notify_subscribers (app_wrk->app_index, s, s->rx_fifo, |
| 658 | SESSION_IO_EVT_RX); |
| 659 | |
| 660 | return 0; |
| 661 | } |
| 662 | |
| 663 | int |
| 664 | session_enqueue_notify (session_t *s) |
| 665 | { |
| 666 | return session_enqueue_notify_inline (s, 0 /* is_cl */); |
| 667 | } |
| 668 | |
| 669 | int |
| 670 | session_enqueue_notify_cl (session_t *s) |
| 671 | { |
| 672 | return session_enqueue_notify_inline (s, 1 /* is_cl */); |
| 673 | } |
| 674 | |
| 675 | int |
| 676 | session_dequeue_notify (session_t *s) |
| 677 | { |
| 678 | app_worker_t *app_wrk; |
| 679 | u8 is_cl; |
| 680 | |
| 681 | /* Unset as soon as event is requested */ |
| 682 | svm_fifo_clear_deq_ntf (s->tx_fifo); |
| 683 | |
| 684 | app_wrk = app_worker_get_if_valid (s->app_wrk_index); |
| 685 | if (PREDICT_FALSE (!app_wrk)) |
| 686 | return -1; |
| 687 | |
| 688 | is_cl = s->session_state == SESSION_STATE_LISTENING || |
| 689 | s->session_state == SESSION_STATE_OPENED; |
| 690 | session_program_io_event (app_wrk, s, SESSION_IO_EVT_TX, is_cl ? 1 : 0); |
| 691 | |
| 692 | if (PREDICT_FALSE (svm_fifo_n_subscribers (s->tx_fifo))) |
| 693 | return session_notify_subscribers (app_wrk->app_index, s, s->tx_fifo, |
| 694 | SESSION_IO_EVT_TX); |
| 695 | |
| 696 | return 0; |
| 697 | } |
| 698 | |
| 699 | /** |
| 700 | * Flushes queue of sessions that are to be notified of new data |
| 701 | * enqueued events. |
| 702 | * |
| 703 | * @param transport_proto transport protocol for which queue to be flushed |
| 704 | * @param thread_index Thread index for which the flush is to be performed. |
| 705 | * @return 0 on success or a positive number indicating the number of |
| 706 | * failures due to API queue being full. |
| 707 | */ |
| 708 | void |
| 709 | session_main_flush_enqueue_events (transport_proto_t transport_proto, |
| 710 | u32 thread_index) |
| 711 | { |
| 712 | session_worker_t *wrk = session_main_get_worker (thread_index); |
| 713 | session_handle_t *handles; |
| 714 | session_t *s; |
Florin Coras | 44d9cbc | 2023-12-21 13:50:53 -0800 | [diff] [blame] | 715 | u32 i, is_cl; |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 716 | |
| 717 | handles = wrk->session_to_enqueue[transport_proto]; |
| 718 | |
| 719 | for (i = 0; i < vec_len (handles); i++) |
| 720 | { |
| 721 | s = session_get_from_handle (handles[i]); |
| 722 | session_fifo_tuning (s, s->rx_fifo, SESSION_FT_ACTION_ENQUEUED, |
| 723 | 0 /* TODO/not needed */); |
Florin Coras | 44d9cbc | 2023-12-21 13:50:53 -0800 | [diff] [blame] | 724 | is_cl = |
| 725 | s->thread_index != thread_index || (s->flags & SESSION_F_IS_CLESS); |
| 726 | if (!is_cl) |
| 727 | session_enqueue_notify_inline (s, 0); |
| 728 | else |
| 729 | session_enqueue_notify_inline (s, 1); |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 730 | } |
| 731 | |
| 732 | vec_reset_length (handles); |
| 733 | wrk->session_to_enqueue[transport_proto] = handles; |
| 734 | } |
| 735 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 736 | /* |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 737 | * Enqueue data for delivery to app. If requested, it queues app notification |
| 738 | * event for later delivery. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 739 | * |
| 740 | * @param tc Transport connection which is to be enqueued data |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 741 | * @param b Buffer to be enqueued |
| 742 | * @param offset Offset at which to start enqueueing if out-of-order |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 743 | * @param queue_event Flag to indicate if peer is to be notified or if event |
| 744 | * is to be queued. The former is useful when more data is |
| 745 | * enqueued and only one event is to be generated. |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 746 | * @param is_in_order Flag to indicate if data is in order |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 747 | * @return Number of bytes enqueued or a negative value if enqueueing failed. |
| 748 | */ |
| 749 | int |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 750 | session_enqueue_stream_connection (transport_connection_t * tc, |
| 751 | vlib_buffer_t * b, u32 offset, |
| 752 | u8 queue_event, u8 is_in_order) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 753 | { |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 754 | session_t *s; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 755 | int enqueued = 0, rv, in_order_off; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 756 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 757 | s = session_get (tc->s_index, tc->thread_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 758 | |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 759 | if (is_in_order) |
| 760 | { |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 761 | enqueued = svm_fifo_enqueue (s->rx_fifo, |
| 762 | b->current_length, |
| 763 | vlib_buffer_get_current (b)); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 764 | if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) |
| 765 | && enqueued >= 0)) |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 766 | { |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 767 | in_order_off = enqueued > b->current_length ? enqueued : 0; |
| 768 | rv = session_enqueue_chain_tail (s, b, in_order_off, 1); |
| 769 | if (rv > 0) |
| 770 | enqueued += rv; |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 771 | } |
| 772 | } |
| 773 | else |
| 774 | { |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 775 | rv = svm_fifo_enqueue_with_offset (s->rx_fifo, offset, |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 776 | b->current_length, |
| 777 | vlib_buffer_get_current (b)); |
| 778 | if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && !rv)) |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 779 | session_enqueue_chain_tail (s, b, offset + b->current_length, 0); |
| 780 | /* if something was enqueued, report even this as success for ooo |
| 781 | * segment handling */ |
| 782 | return rv; |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 783 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 784 | |
| 785 | if (queue_event) |
| 786 | { |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 787 | /* Queue RX event on this fifo. Eventually these will need to be |
| 788 | * flushed by calling @ref session_main_flush_enqueue_events () */ |
Florin Coras | d5c604d | 2019-03-18 09:06:35 -0700 | [diff] [blame] | 789 | if (!(s->flags & SESSION_F_RX_EVT)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 790 | { |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 791 | session_worker_t *wrk = session_main_get_worker (s->thread_index); |
| 792 | ASSERT (s->thread_index == vlib_get_thread_index ()); |
Florin Coras | d5c604d | 2019-03-18 09:06:35 -0700 | [diff] [blame] | 793 | s->flags |= SESSION_F_RX_EVT; |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 794 | vec_add1 (wrk->session_to_enqueue[tc->proto], session_handle (s)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 795 | } |
Ryujiro Shibuya | d8f48e2 | 2020-01-22 12:11:42 +0000 | [diff] [blame] | 796 | |
| 797 | session_fifo_tuning (s, s->rx_fifo, SESSION_FT_ACTION_ENQUEUED, 0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 798 | } |
| 799 | |
Chris Luke | b2bcad6 | 2017-09-18 08:51:22 -0400 | [diff] [blame] | 800 | return enqueued; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 801 | } |
| 802 | |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 803 | always_inline int |
| 804 | session_enqueue_dgram_connection_inline (session_t *s, |
| 805 | session_dgram_hdr_t *hdr, |
| 806 | vlib_buffer_t *b, u8 proto, |
| 807 | u8 queue_event, u32 is_cl) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 808 | { |
Florin Coras | c95cfa2 | 2020-11-24 08:41:17 -0800 | [diff] [blame] | 809 | int rv; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 810 | |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 811 | ASSERT (svm_fifo_max_enqueue_prod (s->rx_fifo) |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 812 | >= b->current_length + sizeof (*hdr)); |
| 813 | |
Florin Coras | c95cfa2 | 2020-11-24 08:41:17 -0800 | [diff] [blame] | 814 | if (PREDICT_TRUE (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 815 | { |
Florin Coras | c95cfa2 | 2020-11-24 08:41:17 -0800 | [diff] [blame] | 816 | svm_fifo_seg_t segs[2] = { |
| 817 | { (u8 *) hdr, sizeof (*hdr) }, |
| 818 | { vlib_buffer_get_current (b), b->current_length } |
| 819 | }; |
Florin Coras | c95cfa2 | 2020-11-24 08:41:17 -0800 | [diff] [blame] | 820 | |
| 821 | rv = svm_fifo_enqueue_segments (s->rx_fifo, segs, 2, |
| 822 | 0 /* allow_partial */ ); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 823 | } |
Florin Coras | c95cfa2 | 2020-11-24 08:41:17 -0800 | [diff] [blame] | 824 | else |
| 825 | { |
| 826 | vlib_main_t *vm = vlib_get_main (); |
| 827 | svm_fifo_seg_t *segs = 0, *seg; |
| 828 | vlib_buffer_t *it = b; |
| 829 | u32 n_segs = 1; |
| 830 | |
| 831 | vec_add2 (segs, seg, 1); |
| 832 | seg->data = (u8 *) hdr; |
| 833 | seg->len = sizeof (*hdr); |
| 834 | while (it) |
| 835 | { |
| 836 | vec_add2 (segs, seg, 1); |
| 837 | seg->data = vlib_buffer_get_current (it); |
| 838 | seg->len = it->current_length; |
| 839 | n_segs++; |
| 840 | if (!(it->flags & VLIB_BUFFER_NEXT_PRESENT)) |
| 841 | break; |
| 842 | it = vlib_get_buffer (vm, it->next_buffer); |
| 843 | } |
| 844 | rv = svm_fifo_enqueue_segments (s->rx_fifo, segs, n_segs, |
| 845 | 0 /* allow partial */ ); |
| 846 | vec_free (segs); |
| 847 | } |
| 848 | |
| 849 | if (queue_event && rv > 0) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 850 | { |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 851 | /* Queue RX event on this fifo. Eventually these will need to be |
| 852 | * flushed by calling @ref session_main_flush_enqueue_events () */ |
Florin Coras | d5c604d | 2019-03-18 09:06:35 -0700 | [diff] [blame] | 853 | if (!(s->flags & SESSION_F_RX_EVT)) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 854 | { |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 855 | u32 thread_index = |
| 856 | is_cl ? vlib_get_thread_index () : s->thread_index; |
| 857 | session_worker_t *wrk = session_main_get_worker (thread_index); |
| 858 | ASSERT (s->thread_index == vlib_get_thread_index () || is_cl); |
Florin Coras | d5c604d | 2019-03-18 09:06:35 -0700 | [diff] [blame] | 859 | s->flags |= SESSION_F_RX_EVT; |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 860 | vec_add1 (wrk->session_to_enqueue[proto], session_handle (s)); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 861 | } |
Ryujiro Shibuya | d8f48e2 | 2020-01-22 12:11:42 +0000 | [diff] [blame] | 862 | |
| 863 | session_fifo_tuning (s, s->rx_fifo, SESSION_FT_ACTION_ENQUEUED, 0); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 864 | } |
Florin Coras | c95cfa2 | 2020-11-24 08:41:17 -0800 | [diff] [blame] | 865 | return rv > 0 ? rv : 0; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 866 | } |
| 867 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 868 | int |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 869 | session_enqueue_dgram_connection (session_t *s, session_dgram_hdr_t *hdr, |
| 870 | vlib_buffer_t *b, u8 proto, u8 queue_event) |
| 871 | { |
| 872 | return session_enqueue_dgram_connection_inline (s, hdr, b, proto, |
| 873 | queue_event, 0 /* is_cl */); |
| 874 | } |
| 875 | |
| 876 | int |
Florin Coras | 7428eaa | 2023-12-11 16:04:57 -0800 | [diff] [blame] | 877 | session_enqueue_dgram_connection2 (session_t *s, session_dgram_hdr_t *hdr, |
| 878 | vlib_buffer_t *b, u8 proto, u8 queue_event) |
| 879 | { |
| 880 | return session_enqueue_dgram_connection_inline (s, hdr, b, proto, |
| 881 | queue_event, 1 /* is_cl */); |
| 882 | } |
| 883 | |
| 884 | int |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 885 | session_enqueue_dgram_connection_cl (session_t *s, session_dgram_hdr_t *hdr, |
| 886 | vlib_buffer_t *b, u8 proto, |
| 887 | u8 queue_event) |
| 888 | { |
Florin Coras | 7428eaa | 2023-12-11 16:04:57 -0800 | [diff] [blame] | 889 | session_t *awls; |
| 890 | |
| 891 | awls = app_listener_select_wrk_cl_session (s, hdr); |
| 892 | return session_enqueue_dgram_connection_inline (awls, hdr, b, proto, |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 893 | queue_event, 1 /* is_cl */); |
| 894 | } |
| 895 | |
| 896 | int |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 897 | session_tx_fifo_peek_bytes (transport_connection_t * tc, u8 * buffer, |
| 898 | u32 offset, u32 max_bytes) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 899 | { |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 900 | session_t *s = session_get (tc->s_index, tc->thread_index); |
| 901 | return svm_fifo_peek (s->tx_fifo, offset, max_bytes, buffer); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 902 | } |
| 903 | |
| 904 | u32 |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 905 | session_tx_fifo_dequeue_drop (transport_connection_t * tc, u32 max_bytes) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 906 | { |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 907 | session_t *s = session_get (tc->s_index, tc->thread_index); |
Vladimir Kropylev | f867cf1 | 2019-06-17 21:38:00 +0300 | [diff] [blame] | 908 | u32 rv; |
| 909 | |
| 910 | rv = svm_fifo_dequeue_drop (s->tx_fifo, max_bytes); |
Ryujiro Shibuya | d8f48e2 | 2020-01-22 12:11:42 +0000 | [diff] [blame] | 911 | session_fifo_tuning (s, s->tx_fifo, SESSION_FT_ACTION_DEQUEUED, rv); |
Florin Coras | 0e573f5 | 2019-05-07 16:28:16 -0700 | [diff] [blame] | 912 | |
Florin Coras | 2d379d8 | 2019-06-28 12:45:12 -0700 | [diff] [blame] | 913 | if (svm_fifo_needs_deq_ntf (s->tx_fifo, max_bytes)) |
Florin Coras | 0e573f5 | 2019-05-07 16:28:16 -0700 | [diff] [blame] | 914 | session_dequeue_notify (s); |
| 915 | |
Vladimir Kropylev | f867cf1 | 2019-06-17 21:38:00 +0300 | [diff] [blame] | 916 | return rv; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 917 | } |
| 918 | |
Florin Coras | 4fde4ae | 2020-04-13 16:48:04 +0000 | [diff] [blame] | 919 | int |
| 920 | session_stream_connect_notify (transport_connection_t * tc, |
| 921 | session_error_t err) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 922 | { |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 923 | u32 opaque = 0, new_ti, new_si; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 924 | app_worker_t *app_wrk; |
Florin Coras | ea72764 | 2021-05-07 19:39:43 -0700 | [diff] [blame] | 925 | session_t *s = 0, *ho; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 926 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 927 | /* |
Florin Coras | ea72764 | 2021-05-07 19:39:43 -0700 | [diff] [blame] | 928 | * Cleanup half-open table |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 929 | */ |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 930 | session_lookup_del_half_open (tc); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 931 | |
Florin Coras | ea72764 | 2021-05-07 19:39:43 -0700 | [diff] [blame] | 932 | ho = ho_session_get (tc->s_index); |
Florin Coras | 4aeba37 | 2023-06-20 16:50:51 -0700 | [diff] [blame] | 933 | session_set_state (ho, SESSION_STATE_TRANSPORT_CLOSED); |
Florin Coras | ea72764 | 2021-05-07 19:39:43 -0700 | [diff] [blame] | 934 | opaque = ho->opaque; |
| 935 | app_wrk = app_worker_get_if_valid (ho->app_wrk_index); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 936 | if (!app_wrk) |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 937 | return -1; |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 938 | |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 939 | if (err) |
| 940 | return app_worker_connect_notify (app_wrk, s, err, opaque); |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 941 | |
| 942 | s = session_alloc_for_connection (tc); |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 943 | session_set_state (s, SESSION_STATE_CONNECTING); |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 944 | s->app_wrk_index = app_wrk->wrk_index; |
Florin Coras | 2ceb818 | 2023-08-31 17:33:47 -0700 | [diff] [blame] | 945 | s->opaque = opaque; |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 946 | new_si = s->session_index; |
| 947 | new_ti = s->thread_index; |
| 948 | |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 949 | if ((err = app_worker_init_connected (app_wrk, s))) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 950 | { |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 951 | session_free (s); |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 952 | app_worker_connect_notify (app_wrk, 0, err, opaque); |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 953 | return -1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 954 | } |
| 955 | |
Nathan Skrzypczak | a26349d | 2019-06-26 13:53:08 +0200 | [diff] [blame] | 956 | s = session_get (new_si, new_ti); |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 957 | session_set_state (s, SESSION_STATE_READY); |
Nathan Skrzypczak | a26349d | 2019-06-26 13:53:08 +0200 | [diff] [blame] | 958 | session_lookup_add_connection (tc, session_handle (s)); |
| 959 | |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 960 | if (app_worker_connect_notify (app_wrk, s, SESSION_E_NONE, opaque)) |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 961 | { |
Florin Coras | c7fd24e | 2020-07-24 10:09:07 -0700 | [diff] [blame] | 962 | session_lookup_del_connection (tc); |
| 963 | /* Avoid notifying app about rejected session cleanup */ |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 964 | s = session_get (new_si, new_ti); |
Florin Coras | c7fd24e | 2020-07-24 10:09:07 -0700 | [diff] [blame] | 965 | segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo); |
| 966 | session_free (s); |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 967 | return -1; |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 968 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 969 | |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 970 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 971 | } |
| 972 | |
Florin Coras | 6d7552c | 2020-04-09 01:49:45 +0000 | [diff] [blame] | 973 | static void |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 974 | session_switch_pool_closed_rpc (void *arg) |
Florin Coras | 6d7552c | 2020-04-09 01:49:45 +0000 | [diff] [blame] | 975 | { |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 976 | session_handle_t sh; |
Florin Coras | 6d7552c | 2020-04-09 01:49:45 +0000 | [diff] [blame] | 977 | session_t *s; |
| 978 | |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 979 | sh = pointer_to_uword (arg); |
| 980 | s = session_get_from_handle_if_valid (sh); |
Florin Coras | 6d7552c | 2020-04-09 01:49:45 +0000 | [diff] [blame] | 981 | if (!s) |
| 982 | return; |
| 983 | |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 984 | transport_cleanup (session_get_transport_proto (s), s->connection_index, |
| 985 | s->thread_index); |
| 986 | session_cleanup (s); |
Florin Coras | 6d7552c | 2020-04-09 01:49:45 +0000 | [diff] [blame] | 987 | } |
| 988 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 989 | typedef struct _session_switch_pool_args |
| 990 | { |
| 991 | u32 session_index; |
| 992 | u32 thread_index; |
| 993 | u32 new_thread_index; |
| 994 | u32 new_session_index; |
| 995 | } session_switch_pool_args_t; |
| 996 | |
Florin Coras | 49568af | 2019-07-31 16:46:24 -0700 | [diff] [blame] | 997 | /** |
| 998 | * Notify old thread of the session pool switch |
| 999 | */ |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1000 | static void |
| 1001 | session_switch_pool (void *cb_args) |
| 1002 | { |
| 1003 | session_switch_pool_args_t *args = (session_switch_pool_args_t *) cb_args; |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 1004 | session_handle_t sh, new_sh; |
Florin Coras | 6d7552c | 2020-04-09 01:49:45 +0000 | [diff] [blame] | 1005 | segment_manager_t *sm; |
Florin Coras | 49568af | 2019-07-31 16:46:24 -0700 | [diff] [blame] | 1006 | app_worker_t *app_wrk; |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 1007 | session_t *s; |
Florin Coras | 49568af | 2019-07-31 16:46:24 -0700 | [diff] [blame] | 1008 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1009 | ASSERT (args->thread_index == vlib_get_thread_index ()); |
| 1010 | s = session_get (args->session_index, args->thread_index); |
Florin Coras | 6d7552c | 2020-04-09 01:49:45 +0000 | [diff] [blame] | 1011 | |
Florin Coras | 49568af | 2019-07-31 16:46:24 -0700 | [diff] [blame] | 1012 | app_wrk = app_worker_get_if_valid (s->app_wrk_index); |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 1013 | if (!app_wrk) |
| 1014 | goto app_closed; |
Aloys Augustin | b339233 | 2019-08-06 16:09:01 +0200 | [diff] [blame] | 1015 | |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 1016 | /* Cleanup fifo segment slice state for fifos */ |
| 1017 | sm = app_worker_get_connect_segment_manager (app_wrk); |
| 1018 | segment_manager_detach_fifo (sm, &s->rx_fifo); |
| 1019 | segment_manager_detach_fifo (sm, &s->tx_fifo); |
Florin Coras | 49568af | 2019-07-31 16:46:24 -0700 | [diff] [blame] | 1020 | |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 1021 | /* Check if session closed during migration */ |
| 1022 | if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING) |
| 1023 | goto app_closed; |
| 1024 | |
| 1025 | new_sh = |
| 1026 | session_make_handle (args->new_session_index, args->new_thread_index); |
| 1027 | app_worker_migrate_notify (app_wrk, s, new_sh); |
| 1028 | |
| 1029 | clib_mem_free (cb_args); |
| 1030 | return; |
| 1031 | |
| 1032 | app_closed: |
| 1033 | /* Session closed during migration. Clean everything up */ |
| 1034 | sh = session_handle (s); |
Florin Coras | 6d7552c | 2020-04-09 01:49:45 +0000 | [diff] [blame] | 1035 | session_send_rpc_evt_to_thread (args->new_thread_index, |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 1036 | session_switch_pool_closed_rpc, |
| 1037 | uword_to_pointer (sh, void *)); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1038 | clib_mem_free (cb_args); |
| 1039 | } |
| 1040 | |
| 1041 | /** |
| 1042 | * Move dgram session to the right thread |
| 1043 | */ |
| 1044 | int |
| 1045 | session_dgram_connect_notify (transport_connection_t * tc, |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 1046 | u32 old_thread_index, session_t ** new_session) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1047 | { |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 1048 | session_t *new_s; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1049 | session_switch_pool_args_t *rpc_args; |
Florin Coras | 0bc78d8 | 2021-01-09 14:34:01 -0800 | [diff] [blame] | 1050 | segment_manager_t *sm; |
| 1051 | app_worker_t *app_wrk; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1052 | |
| 1053 | /* |
| 1054 | * Clone half-open session to the right thread. |
| 1055 | */ |
| 1056 | new_s = session_clone_safe (tc->s_index, old_thread_index); |
| 1057 | new_s->connection_index = tc->c_index; |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1058 | session_set_state (new_s, SESSION_STATE_READY); |
Nathan Skrzypczak | caa7acf | 2019-10-02 10:02:05 +0200 | [diff] [blame] | 1059 | new_s->flags |= SESSION_F_IS_MIGRATING; |
Florin Coras | 6d7552c | 2020-04-09 01:49:45 +0000 | [diff] [blame] | 1060 | |
Florin Coras | 0bc78d8 | 2021-01-09 14:34:01 -0800 | [diff] [blame] | 1061 | if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP)) |
| 1062 | session_lookup_add_connection (tc, session_handle (new_s)); |
| 1063 | |
| 1064 | app_wrk = app_worker_get_if_valid (new_s->app_wrk_index); |
| 1065 | if (app_wrk) |
| 1066 | { |
| 1067 | /* New set of fifos attached to the same shared memory */ |
| 1068 | sm = app_worker_get_connect_segment_manager (app_wrk); |
| 1069 | segment_manager_attach_fifo (sm, &new_s->rx_fifo, new_s); |
| 1070 | segment_manager_attach_fifo (sm, &new_s->tx_fifo, new_s); |
| 1071 | } |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1072 | |
| 1073 | /* |
| 1074 | * Ask thread owning the old session to clean it up and make us the tx |
| 1075 | * fifo owner |
| 1076 | */ |
| 1077 | rpc_args = clib_mem_alloc (sizeof (*rpc_args)); |
| 1078 | rpc_args->new_session_index = new_s->session_index; |
| 1079 | rpc_args->new_thread_index = new_s->thread_index; |
| 1080 | rpc_args->session_index = tc->s_index; |
| 1081 | rpc_args->thread_index = old_thread_index; |
| 1082 | session_send_rpc_evt_to_thread (rpc_args->thread_index, session_switch_pool, |
| 1083 | rpc_args); |
| 1084 | |
| 1085 | tc->s_index = new_s->session_index; |
| 1086 | new_s->connection_index = tc->c_index; |
| 1087 | *new_session = new_s; |
| 1088 | return 0; |
| 1089 | } |
| 1090 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1091 | /** |
| 1092 | * Notification from transport that connection is being closed. |
| 1093 | * |
| 1094 | * A disconnect is sent to application but state is not removed. Once |
| 1095 | * disconnect is acknowledged by application, session disconnect is called. |
| 1096 | * Ultimately this leads to close being called on transport (passive close). |
| 1097 | */ |
| 1098 | void |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 1099 | session_transport_closing_notify (transport_connection_t * tc) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1100 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1101 | app_worker_t *app_wrk; |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 1102 | session_t *s; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1103 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1104 | s = session_get (tc->s_index, tc->thread_index); |
Florin Coras | 400ded3 | 2018-10-03 01:00:57 -0700 | [diff] [blame] | 1105 | if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING) |
| 1106 | return; |
Florin Coras | dfd27bc | 2021-11-27 10:45:55 -0800 | [diff] [blame] | 1107 | |
| 1108 | /* Wait for reply from app before sending notification as the |
| 1109 | * accept might be rejected */ |
| 1110 | if (s->session_state == SESSION_STATE_ACCEPTING) |
| 1111 | { |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1112 | session_set_state (s, SESSION_STATE_TRANSPORT_CLOSING); |
Florin Coras | dfd27bc | 2021-11-27 10:45:55 -0800 | [diff] [blame] | 1113 | return; |
| 1114 | } |
| 1115 | |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1116 | session_set_state (s, SESSION_STATE_TRANSPORT_CLOSING); |
Florin Coras | bf7ce2c | 2019-03-06 14:44:42 -0800 | [diff] [blame] | 1117 | app_wrk = app_worker_get (s->app_wrk_index); |
| 1118 | app_worker_close_notify (app_wrk, s); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1119 | } |
| 1120 | |
| 1121 | /** |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1122 | * Notification from transport that connection is being deleted |
| 1123 | * |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 1124 | * This removes the session if it is still valid. It should be called only on |
| 1125 | * previously fully established sessions. For instance failed connects should |
| 1126 | * call stream_session_connect_notify and indicate that the connect has |
| 1127 | * failed. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1128 | */ |
| 1129 | void |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 1130 | session_transport_delete_notify (transport_connection_t * tc) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1131 | { |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 1132 | session_t *s; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1133 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1134 | /* App might've been removed already */ |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 1135 | if (!(s = session_get_if_valid (tc->s_index, tc->thread_index))) |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 1136 | return; |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 1137 | |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 1138 | switch (s->session_state) |
| 1139 | { |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 1140 | case SESSION_STATE_CREATED: |
| 1141 | /* Session was created but accept notification was not yet sent to the |
| 1142 | * app. Cleanup everything. */ |
| 1143 | session_lookup_del_session (s); |
Zeyu Zhang | cbbc4a2 | 2019-10-12 14:21:59 +0800 | [diff] [blame] | 1144 | segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo); |
| 1145 | session_free (s); |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 1146 | break; |
Florin Coras | b0f662f | 2018-12-27 14:51:46 -0800 | [diff] [blame] | 1147 | case SESSION_STATE_ACCEPTING: |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 1148 | case SESSION_STATE_TRANSPORT_CLOSING: |
Florin Coras | 692b949 | 2019-07-12 15:01:53 -0700 | [diff] [blame] | 1149 | case SESSION_STATE_CLOSING: |
Florin Coras | 5f06632 | 2019-07-22 19:03:03 -0700 | [diff] [blame] | 1150 | case SESSION_STATE_TRANSPORT_CLOSED: |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 1151 | /* If transport finishes or times out before we get a reply |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 1152 | * from the app, mark transport as closed and wait for reply |
| 1153 | * before removing the session. Cleanup session table in advance |
Florin Coras | a9d5bea | 2018-12-17 08:24:19 -0800 | [diff] [blame] | 1154 | * because transport will soon be closed and closed sessions |
| 1155 | * are assumed to have been removed from the lookup table */ |
| 1156 | session_lookup_del_session (s); |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1157 | session_set_state (s, SESSION_STATE_TRANSPORT_DELETED); |
Florin Coras | 70f26d5 | 2019-07-08 11:47:18 -0700 | [diff] [blame] | 1158 | session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT); |
| 1159 | svm_fifo_dequeue_drop_all (s->tx_fifo); |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 1160 | break; |
Florin Coras | 692b949 | 2019-07-12 15:01:53 -0700 | [diff] [blame] | 1161 | case SESSION_STATE_APP_CLOSED: |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 1162 | /* Cleanup lookup table as transport needs to still be valid. |
| 1163 | * Program transport close to ensure that all session events |
| 1164 | * have been cleaned up. Once transport close is called, the |
| 1165 | * session is just removed because both transport and app have |
| 1166 | * confirmed the close*/ |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 1167 | session_lookup_del_session (s); |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1168 | session_set_state (s, SESSION_STATE_TRANSPORT_DELETED); |
Florin Coras | 70f26d5 | 2019-07-08 11:47:18 -0700 | [diff] [blame] | 1169 | session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT); |
| 1170 | svm_fifo_dequeue_drop_all (s->tx_fifo); |
Florin Coras | dfb3b87 | 2019-08-16 17:48:44 -0700 | [diff] [blame] | 1171 | session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_CLOSE); |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 1172 | break; |
Florin Coras | 5f06632 | 2019-07-22 19:03:03 -0700 | [diff] [blame] | 1173 | case SESSION_STATE_TRANSPORT_DELETED: |
Florin Coras | b0f662f | 2018-12-27 14:51:46 -0800 | [diff] [blame] | 1174 | break; |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 1175 | case SESSION_STATE_CLOSED: |
Florin Coras | 70f26d5 | 2019-07-08 11:47:18 -0700 | [diff] [blame] | 1176 | session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT); |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 1177 | session_set_state (s, SESSION_STATE_TRANSPORT_DELETED); |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 1178 | session_delete (s); |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 1179 | break; |
Florin Coras | c01d578 | 2018-10-17 14:53:11 -0700 | [diff] [blame] | 1180 | default: |
Florin Coras | b0f662f | 2018-12-27 14:51:46 -0800 | [diff] [blame] | 1181 | clib_warning ("session state %u", s->session_state); |
Florin Coras | 70f26d5 | 2019-07-08 11:47:18 -0700 | [diff] [blame] | 1182 | session_cleanup_notify (s, SESSION_CLEANUP_TRANSPORT); |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 1183 | session_delete (s); |
Florin Coras | c01d578 | 2018-10-17 14:53:11 -0700 | [diff] [blame] | 1184 | break; |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 1185 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1186 | } |
| 1187 | |
| 1188 | /** |
Florin Coras | 692b949 | 2019-07-12 15:01:53 -0700 | [diff] [blame] | 1189 | * Notification from transport that it is closed |
Florin Coras | 54ddf43 | 2018-12-21 13:54:09 -0800 | [diff] [blame] | 1190 | * |
Florin Coras | 692b949 | 2019-07-12 15:01:53 -0700 | [diff] [blame] | 1191 | * Should be called by transport, prior to calling delete notify, once it |
| 1192 | * knows that no more data will be exchanged. This could serve as an |
| 1193 | * early acknowledgment of an active close especially if transport delete |
| 1194 | * can be delayed a long time, e.g., tcp time-wait. |
Florin Coras | 54ddf43 | 2018-12-21 13:54:09 -0800 | [diff] [blame] | 1195 | */ |
| 1196 | void |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 1197 | session_transport_closed_notify (transport_connection_t * tc) |
Florin Coras | 54ddf43 | 2018-12-21 13:54:09 -0800 | [diff] [blame] | 1198 | { |
Florin Coras | 692b949 | 2019-07-12 15:01:53 -0700 | [diff] [blame] | 1199 | app_worker_t *app_wrk; |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 1200 | session_t *s; |
Florin Coras | 54ddf43 | 2018-12-21 13:54:09 -0800 | [diff] [blame] | 1201 | |
| 1202 | if (!(s = session_get_if_valid (tc->s_index, tc->thread_index))) |
| 1203 | return; |
Florin Coras | b0f662f | 2018-12-27 14:51:46 -0800 | [diff] [blame] | 1204 | |
Florin Coras | 5afc13d | 2023-12-12 14:01:43 -0800 | [diff] [blame] | 1205 | if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED) |
| 1206 | return; |
| 1207 | |
Florin Coras | 06a2eec | 2019-05-23 22:28:16 -0700 | [diff] [blame] | 1208 | /* Transport thinks that app requested close but it actually didn't. |
liuyacan | 534468e | 2021-05-09 03:50:40 +0000 | [diff] [blame] | 1209 | * Can happen for tcp: |
| 1210 | * 1)if fin and rst are received in close succession. |
| 1211 | * 2)if app shutdown the connection. */ |
Florin Coras | 06a2eec | 2019-05-23 22:28:16 -0700 | [diff] [blame] | 1212 | if (s->session_state == SESSION_STATE_READY) |
| 1213 | { |
| 1214 | session_transport_closing_notify (tc); |
| 1215 | svm_fifo_dequeue_drop_all (s->tx_fifo); |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1216 | session_set_state (s, SESSION_STATE_TRANSPORT_CLOSED); |
Florin Coras | 06a2eec | 2019-05-23 22:28:16 -0700 | [diff] [blame] | 1217 | } |
Florin Coras | b0f662f | 2018-12-27 14:51:46 -0800 | [diff] [blame] | 1218 | /* If app close has not been received or has not yet resulted in |
| 1219 | * a transport close, only mark the session transport as closed */ |
Florin Coras | 06a2eec | 2019-05-23 22:28:16 -0700 | [diff] [blame] | 1220 | else if (s->session_state <= SESSION_STATE_CLOSING) |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1221 | session_set_state (s, SESSION_STATE_TRANSPORT_CLOSED); |
Florin Coras | 5f06632 | 2019-07-22 19:03:03 -0700 | [diff] [blame] | 1222 | /* If app also closed, switch to closed */ |
| 1223 | else if (s->session_state == SESSION_STATE_APP_CLOSED) |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1224 | session_set_state (s, SESSION_STATE_CLOSED); |
Florin Coras | 692b949 | 2019-07-12 15:01:53 -0700 | [diff] [blame] | 1225 | |
| 1226 | app_wrk = app_worker_get_if_valid (s->app_wrk_index); |
| 1227 | if (app_wrk) |
| 1228 | app_worker_transport_closed_notify (app_wrk, s); |
Florin Coras | 54ddf43 | 2018-12-21 13:54:09 -0800 | [diff] [blame] | 1229 | } |
| 1230 | |
| 1231 | /** |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1232 | * Notify application that connection has been reset. |
| 1233 | */ |
| 1234 | void |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 1235 | session_transport_reset_notify (transport_connection_t * tc) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1236 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1237 | app_worker_t *app_wrk; |
Florin Coras | 69b68ef | 2019-04-02 11:38:51 -0700 | [diff] [blame] | 1238 | session_t *s; |
| 1239 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1240 | s = session_get (tc->s_index, tc->thread_index); |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 1241 | svm_fifo_dequeue_drop_all (s->tx_fifo); |
Florin Coras | 3c7d4f9 | 2018-12-14 11:28:43 -0800 | [diff] [blame] | 1242 | if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING) |
| 1243 | return; |
Florin Coras | dfd27bc | 2021-11-27 10:45:55 -0800 | [diff] [blame] | 1244 | if (s->session_state == SESSION_STATE_ACCEPTING) |
| 1245 | { |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1246 | session_set_state (s, SESSION_STATE_TRANSPORT_CLOSING); |
Florin Coras | dfd27bc | 2021-11-27 10:45:55 -0800 | [diff] [blame] | 1247 | return; |
| 1248 | } |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1249 | session_set_state (s, SESSION_STATE_TRANSPORT_CLOSING); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1250 | app_wrk = app_worker_get (s->app_wrk_index); |
Florin Coras | 69b68ef | 2019-04-02 11:38:51 -0700 | [diff] [blame] | 1251 | app_worker_reset_notify (app_wrk, s); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1252 | } |
| 1253 | |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 1254 | int |
| 1255 | session_stream_accept_notify (transport_connection_t * tc) |
| 1256 | { |
| 1257 | app_worker_t *app_wrk; |
| 1258 | session_t *s; |
| 1259 | |
| 1260 | s = session_get (tc->s_index, tc->thread_index); |
| 1261 | app_wrk = app_worker_get_if_valid (s->app_wrk_index); |
| 1262 | if (!app_wrk) |
| 1263 | return -1; |
Florin Coras | 600d7a8 | 2021-04-29 11:55:23 -0700 | [diff] [blame] | 1264 | if (s->session_state != SESSION_STATE_CREATED) |
| 1265 | return 0; |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1266 | session_set_state (s, SESSION_STATE_ACCEPTING); |
Florin Coras | 4dc10a4 | 2020-02-11 05:31:49 +0000 | [diff] [blame] | 1267 | if (app_worker_accept_notify (app_wrk, s)) |
| 1268 | { |
| 1269 | /* On transport delete, no notifications should be sent. Unless, the |
| 1270 | * accept is retried and successful. */ |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1271 | session_set_state (s, SESSION_STATE_CREATED); |
Florin Coras | 4dc10a4 | 2020-02-11 05:31:49 +0000 | [diff] [blame] | 1272 | return -1; |
| 1273 | } |
| 1274 | return 0; |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 1275 | } |
| 1276 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1277 | /** |
| 1278 | * Accept a stream session. Optionally ping the server by callback. |
| 1279 | */ |
| 1280 | int |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 1281 | session_stream_accept (transport_connection_t * tc, u32 listener_index, |
Nathan Skrzypczak | 2f0f96b | 2019-06-13 10:14:28 +0200 | [diff] [blame] | 1282 | u32 thread_index, u8 notify) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1283 | { |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 1284 | session_t *s; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1285 | int rv; |
| 1286 | |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 1287 | s = session_alloc_for_connection (tc); |
Nathan Skrzypczak | 2f0f96b | 2019-06-13 10:14:28 +0200 | [diff] [blame] | 1288 | s->listener_handle = ((u64) thread_index << 32) | (u64) listener_index; |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1289 | session_set_state (s, SESSION_STATE_CREATED); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1290 | |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 1291 | if ((rv = app_worker_init_accepted (s))) |
Florin Coras | 12813d5 | 2020-04-09 20:59:20 +0000 | [diff] [blame] | 1292 | { |
| 1293 | session_free (s); |
| 1294 | return rv; |
| 1295 | } |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 1296 | |
| 1297 | session_lookup_add_connection (tc, session_handle (s)); |
| 1298 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1299 | /* Shoulder-tap the server */ |
| 1300 | if (notify) |
| 1301 | { |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 1302 | app_worker_t *app_wrk = app_worker_get (s->app_wrk_index); |
Florin Coras | 12813d5 | 2020-04-09 20:59:20 +0000 | [diff] [blame] | 1303 | if ((rv = app_worker_accept_notify (app_wrk, s))) |
| 1304 | { |
| 1305 | session_lookup_del_session (s); |
| 1306 | segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo); |
| 1307 | session_free (s); |
| 1308 | return rv; |
| 1309 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1310 | } |
| 1311 | |
| 1312 | return 0; |
| 1313 | } |
| 1314 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1315 | int |
Florin Coras | e759bb5 | 2020-04-08 01:55:39 +0000 | [diff] [blame] | 1316 | session_dgram_accept (transport_connection_t * tc, u32 listener_index, |
| 1317 | u32 thread_index) |
| 1318 | { |
| 1319 | app_worker_t *app_wrk; |
| 1320 | session_t *s; |
| 1321 | int rv; |
| 1322 | |
| 1323 | s = session_alloc_for_connection (tc); |
| 1324 | s->listener_handle = ((u64) thread_index << 32) | (u64) listener_index; |
| 1325 | |
| 1326 | if ((rv = app_worker_init_accepted (s))) |
| 1327 | { |
| 1328 | session_free (s); |
| 1329 | return rv; |
| 1330 | } |
| 1331 | |
Florin Coras | 473556d | 2020-11-23 15:59:36 -0800 | [diff] [blame] | 1332 | session_lookup_add_connection (tc, session_handle (s)); |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1333 | session_set_state (s, SESSION_STATE_ACCEPTING); |
Florin Coras | 473556d | 2020-11-23 15:59:36 -0800 | [diff] [blame] | 1334 | |
Florin Coras | e759bb5 | 2020-04-08 01:55:39 +0000 | [diff] [blame] | 1335 | app_wrk = app_worker_get (s->app_wrk_index); |
| 1336 | if ((rv = app_worker_accept_notify (app_wrk, s))) |
| 1337 | { |
Florin Coras | 473556d | 2020-11-23 15:59:36 -0800 | [diff] [blame] | 1338 | session_lookup_del_session (s); |
Florin Coras | 12813d5 | 2020-04-09 20:59:20 +0000 | [diff] [blame] | 1339 | segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo); |
| 1340 | session_free (s); |
Florin Coras | e759bb5 | 2020-04-08 01:55:39 +0000 | [diff] [blame] | 1341 | return rv; |
| 1342 | } |
| 1343 | |
Florin Coras | e759bb5 | 2020-04-08 01:55:39 +0000 | [diff] [blame] | 1344 | return 0; |
| 1345 | } |
| 1346 | |
| 1347 | int |
Florin Coras | 89a9f61 | 2021-05-11 11:55:07 -0700 | [diff] [blame] | 1348 | session_open_cl (session_endpoint_cfg_t *rmt, session_handle_t *rsh) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1349 | { |
| 1350 | transport_connection_t *tc; |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 1351 | transport_endpoint_cfg_t *tep; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1352 | app_worker_t *app_wrk; |
Aloys Augustin | 20ab31e | 2019-03-25 11:29:17 +0100 | [diff] [blame] | 1353 | session_handle_t sh; |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 1354 | session_t *s; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1355 | int rv; |
| 1356 | |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 1357 | tep = session_endpoint_to_transport_cfg (rmt); |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 1358 | rv = transport_connect (rmt->transport_proto, tep); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1359 | if (rv < 0) |
| 1360 | { |
| 1361 | SESSION_DBG ("Transport failed to open connection."); |
Florin Coras | 57660d9 | 2020-04-04 22:45:34 +0000 | [diff] [blame] | 1362 | return rv; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1363 | } |
| 1364 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 1365 | tc = transport_get_half_open (rmt->transport_proto, (u32) rv); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1366 | |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 1367 | /* For dgram type of service, allocate session and fifos now */ |
Florin Coras | 89a9f61 | 2021-05-11 11:55:07 -0700 | [diff] [blame] | 1368 | app_wrk = app_worker_get (rmt->app_wrk_index); |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 1369 | s = session_alloc_for_connection (tc); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1370 | s->app_wrk_index = app_wrk->wrk_index; |
Florin Coras | 2ceb818 | 2023-08-31 17:33:47 -0700 | [diff] [blame] | 1371 | s->opaque = rmt->opaque; |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1372 | session_set_state (s, SESSION_STATE_OPENED); |
Florin Coras | 44d9cbc | 2023-12-21 13:50:53 -0800 | [diff] [blame] | 1373 | if (transport_connection_is_cless (tc)) |
| 1374 | s->flags |= SESSION_F_IS_CLESS; |
Florin Coras | a27a46e | 2019-02-18 13:02:28 -0800 | [diff] [blame] | 1375 | if (app_worker_init_connected (app_wrk, s)) |
| 1376 | { |
| 1377 | session_free (s); |
| 1378 | return -1; |
| 1379 | } |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1380 | |
Aloys Augustin | 20ab31e | 2019-03-25 11:29:17 +0100 | [diff] [blame] | 1381 | sh = session_handle (s); |
Florin Coras | 89a9f61 | 2021-05-11 11:55:07 -0700 | [diff] [blame] | 1382 | *rsh = sh; |
| 1383 | |
Aloys Augustin | 20ab31e | 2019-03-25 11:29:17 +0100 | [diff] [blame] | 1384 | session_lookup_add_connection (tc, sh); |
Florin Coras | 89a9f61 | 2021-05-11 11:55:07 -0700 | [diff] [blame] | 1385 | return app_worker_connect_notify (app_wrk, s, SESSION_E_NONE, rmt->opaque); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1386 | } |
| 1387 | |
| 1388 | int |
Florin Coras | 89a9f61 | 2021-05-11 11:55:07 -0700 | [diff] [blame] | 1389 | session_open_vc (session_endpoint_cfg_t *rmt, session_handle_t *rsh) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1390 | { |
| 1391 | transport_connection_t *tc; |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 1392 | transport_endpoint_cfg_t *tep; |
Florin Coras | ea72764 | 2021-05-07 19:39:43 -0700 | [diff] [blame] | 1393 | app_worker_t *app_wrk; |
Florin Coras | 89a9f61 | 2021-05-11 11:55:07 -0700 | [diff] [blame] | 1394 | session_t *ho; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1395 | int rv; |
| 1396 | |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 1397 | tep = session_endpoint_to_transport_cfg (rmt); |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 1398 | rv = transport_connect (rmt->transport_proto, tep); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1399 | if (rv < 0) |
| 1400 | { |
| 1401 | SESSION_DBG ("Transport failed to open connection."); |
Florin Coras | 57660d9 | 2020-04-04 22:45:34 +0000 | [diff] [blame] | 1402 | return rv; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1403 | } |
| 1404 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 1405 | tc = transport_get_half_open (rmt->transport_proto, (u32) rv); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1406 | |
Florin Coras | 89a9f61 | 2021-05-11 11:55:07 -0700 | [diff] [blame] | 1407 | app_wrk = app_worker_get (rmt->app_wrk_index); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1408 | |
Florin Coras | ea72764 | 2021-05-07 19:39:43 -0700 | [diff] [blame] | 1409 | /* If transport offers a vc service, only allocate established |
| 1410 | * session once the connection has been established. |
| 1411 | * In the meantime allocate half-open session for tracking purposes |
| 1412 | * associate half-open connection to it and add session to app-worker |
| 1413 | * half-open table. These are needed to allocate the established |
| 1414 | * session on transport notification, and to cleanup the half-open |
| 1415 | * session if the app detaches before connection establishment. |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1416 | */ |
Florin Coras | 89a9f61 | 2021-05-11 11:55:07 -0700 | [diff] [blame] | 1417 | ho = session_alloc_for_half_open (tc); |
| 1418 | ho->app_wrk_index = app_wrk->wrk_index; |
| 1419 | ho->ho_index = app_worker_add_half_open (app_wrk, session_handle (ho)); |
| 1420 | ho->opaque = rmt->opaque; |
| 1421 | *rsh = session_handle (ho); |
Florin Coras | d50ff7f | 2020-04-16 04:30:22 +0000 | [diff] [blame] | 1422 | |
Florin Coras | 2c876f9 | 2021-05-10 21:12:27 -0700 | [diff] [blame] | 1423 | if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP)) |
| 1424 | session_lookup_add_half_open (tc, tc->c_index); |
Florin Coras | 4fde4ae | 2020-04-13 16:48:04 +0000 | [diff] [blame] | 1425 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1426 | return 0; |
| 1427 | } |
| 1428 | |
| 1429 | int |
Florin Coras | 89a9f61 | 2021-05-11 11:55:07 -0700 | [diff] [blame] | 1430 | session_open_app (session_endpoint_cfg_t *rmt, session_handle_t *rsh) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1431 | { |
Florin Coras | 89a9f61 | 2021-05-11 11:55:07 -0700 | [diff] [blame] | 1432 | transport_endpoint_cfg_t *tep_cfg = session_endpoint_to_transport_cfg (rmt); |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 1433 | |
Florin Coras | 89a9f61 | 2021-05-11 11:55:07 -0700 | [diff] [blame] | 1434 | /* Not supported for now */ |
| 1435 | *rsh = SESSION_INVALID_HANDLE; |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 1436 | return transport_connect (rmt->transport_proto, tep_cfg); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1437 | } |
| 1438 | |
Florin Coras | 89a9f61 | 2021-05-11 11:55:07 -0700 | [diff] [blame] | 1439 | typedef int (*session_open_service_fn) (session_endpoint_cfg_t *, |
| 1440 | session_handle_t *); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1441 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1442 | static session_open_service_fn session_open_srv_fns[TRANSPORT_N_SERVICES] = { |
| 1443 | session_open_vc, |
| 1444 | session_open_cl, |
| 1445 | session_open_app, |
| 1446 | }; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1447 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1448 | /** |
| 1449 | * Ask transport to open connection to remote transport endpoint. |
| 1450 | * |
| 1451 | * Stores handle for matching request with reply since the call can be |
| 1452 | * asynchronous. For instance, for TCP the 3-way handshake must complete |
| 1453 | * before reply comes. Session is only created once connection is established. |
| 1454 | * |
| 1455 | * @param app_index Index of the application requesting the connect |
| 1456 | * @param st Session type requested. |
| 1457 | * @param tep Remote transport endpoint |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1458 | * @param opaque Opaque data (typically, api_context) the application expects |
| 1459 | * on open completion. |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1460 | */ |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1461 | int |
Florin Coras | 89a9f61 | 2021-05-11 11:55:07 -0700 | [diff] [blame] | 1462 | session_open (session_endpoint_cfg_t *rmt, session_handle_t *rsh) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1463 | { |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 1464 | transport_service_type_t tst; |
| 1465 | tst = transport_protocol_service_type (rmt->transport_proto); |
Florin Coras | 89a9f61 | 2021-05-11 11:55:07 -0700 | [diff] [blame] | 1466 | return session_open_srv_fns[tst](rmt, rsh); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1467 | } |
| 1468 | |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 1469 | /** |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1470 | * Ask transport to listen on session endpoint. |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 1471 | * |
| 1472 | * @param s Session for which listen will be called. Note that unlike |
| 1473 | * established sessions, listen sessions are not associated to a |
| 1474 | * thread. |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1475 | * @param sep Local endpoint to be listened on. |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 1476 | */ |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1477 | int |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 1478 | session_listen (session_t * ls, session_endpoint_cfg_t * sep) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1479 | { |
Florin Coras | 0bce71e | 2022-02-10 11:57:06 -0800 | [diff] [blame] | 1480 | transport_endpoint_cfg_t *tep; |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 1481 | int tc_index; |
| 1482 | u32 s_index; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1483 | |
| 1484 | /* Transport bind/listen */ |
Florin Coras | 0bce71e | 2022-02-10 11:57:06 -0800 | [diff] [blame] | 1485 | tep = session_endpoint_to_transport_cfg (sep); |
Florin Coras | 74cac88 | 2018-09-07 09:13:15 -0700 | [diff] [blame] | 1486 | s_index = ls->session_index; |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1487 | tc_index = transport_start_listen (session_get_transport_proto (ls), |
| 1488 | s_index, tep); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1489 | |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 1490 | if (tc_index < 0) |
| 1491 | return tc_index; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1492 | |
Florin Coras | d4295e6 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1493 | /* Attach transport to session. Lookup tables are populated by the app |
| 1494 | * worker because local tables (for ct sessions) are not backed by a fib */ |
Florin Coras | 74cac88 | 2018-09-07 09:13:15 -0700 | [diff] [blame] | 1495 | ls = listen_session_get (s_index); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1496 | ls->connection_index = tc_index; |
Mohammed Hawari | 472d0da | 2022-10-17 17:55:35 +0200 | [diff] [blame] | 1497 | ls->opaque = sep->opaque; |
Florin Coras | 44d9cbc | 2023-12-21 13:50:53 -0800 | [diff] [blame] | 1498 | if (transport_connection_is_cless (session_get_transport (ls))) |
| 1499 | ls->flags |= SESSION_F_IS_CLESS; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1500 | |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1501 | return 0; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1502 | } |
| 1503 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1504 | /** |
| 1505 | * Ask transport to stop listening on local transport endpoint. |
| 1506 | * |
| 1507 | * @param s Session to stop listening on. It must be in state LISTENING. |
| 1508 | */ |
| 1509 | int |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 1510 | session_stop_listen (session_t * s) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1511 | { |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1512 | transport_proto_t tp = session_get_transport_proto (s); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1513 | transport_connection_t *tc; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1514 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 1515 | if (s->session_state != SESSION_STATE_LISTENING) |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 1516 | return SESSION_E_NOLISTEN; |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 1517 | |
| 1518 | tc = transport_get_listener (tp, s->connection_index); |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 1519 | |
| 1520 | /* If no transport, assume everything was cleaned up already */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1521 | if (!tc) |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 1522 | return SESSION_E_NONE; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1523 | |
Nathan Skrzypczak | 2eed1a1 | 2019-07-04 14:26:21 +0200 | [diff] [blame] | 1524 | if (!(tc->flags & TRANSPORT_CONNECTION_F_NO_LOOKUP)) |
Florin Coras | d96859f | 2023-06-24 14:43:42 -0700 | [diff] [blame] | 1525 | session_lookup_del_connection (tc); |
Florin Coras | a8c3b86 | 2020-04-07 22:31:06 +0000 | [diff] [blame] | 1526 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 1527 | transport_stop_listen (tp, s->connection_index); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1528 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1529 | } |
| 1530 | |
| 1531 | /** |
liuyacan | 534468e | 2021-05-09 03:50:40 +0000 | [diff] [blame] | 1532 | * Initialize session half-closing procedure. |
| 1533 | * |
| 1534 | * Note that half-closing will not change the state of the session. |
| 1535 | */ |
| 1536 | void |
| 1537 | session_half_close (session_t *s) |
| 1538 | { |
| 1539 | if (!s) |
| 1540 | return; |
| 1541 | |
| 1542 | session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_HALF_CLOSE); |
| 1543 | } |
| 1544 | |
| 1545 | /** |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 1546 | * Initialize session closing procedure. |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1547 | * |
Florin Coras | 2f8d8fa | 2018-01-26 06:36:04 -0800 | [diff] [blame] | 1548 | * Request is always sent to session node to ensure that all outstanding |
| 1549 | * requests are served before transport is notified. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1550 | */ |
| 1551 | void |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 1552 | session_close (session_t * s) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1553 | { |
Florin Coras | 7c06b57 | 2023-02-20 15:14:04 -0800 | [diff] [blame] | 1554 | if (!s || (s->flags & SESSION_F_APP_CLOSED)) |
Florin Coras | 2f8d8fa | 2018-01-26 06:36:04 -0800 | [diff] [blame] | 1555 | return; |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 1556 | |
Florin Coras | 7c06b57 | 2023-02-20 15:14:04 -0800 | [diff] [blame] | 1557 | /* Transports can close and delete their state independent of app closes |
| 1558 | * and transport initiated state transitions can hide app closes. Instead |
| 1559 | * of extending the state machine to support separate tracking of app and |
| 1560 | * transport initiated closes, use a flag. */ |
| 1561 | s->flags |= SESSION_F_APP_CLOSED; |
| 1562 | |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 1563 | if (s->session_state >= SESSION_STATE_CLOSING) |
| 1564 | { |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 1565 | /* Session will only be removed once both app and transport |
| 1566 | * acknowledge the close */ |
Florin Coras | 5f06632 | 2019-07-22 19:03:03 -0700 | [diff] [blame] | 1567 | if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED |
| 1568 | || s->session_state == SESSION_STATE_TRANSPORT_DELETED) |
Florin Coras | dfb3b87 | 2019-08-16 17:48:44 -0700 | [diff] [blame] | 1569 | session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_CLOSE); |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 1570 | return; |
| 1571 | } |
| 1572 | |
Dongya Zhang | 7a87c71 | 2022-11-03 15:22:34 +0800 | [diff] [blame] | 1573 | /* App closed so stop propagating dequeue notifications. |
| 1574 | * App might disconnect session before connected, in this case, |
| 1575 | * tx_fifo may not be setup yet, so clear only it's inited. */ |
| 1576 | if (s->tx_fifo) |
| 1577 | svm_fifo_clear_deq_ntf (s->tx_fifo); |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1578 | session_set_state (s, SESSION_STATE_CLOSING); |
Florin Coras | dfb3b87 | 2019-08-16 17:48:44 -0700 | [diff] [blame] | 1579 | session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_CLOSE); |
| 1580 | } |
| 1581 | |
| 1582 | /** |
| 1583 | * Force a close without waiting for data to be flushed |
| 1584 | */ |
| 1585 | void |
| 1586 | session_reset (session_t * s) |
| 1587 | { |
| 1588 | if (s->session_state >= SESSION_STATE_CLOSING) |
| 1589 | return; |
Dongya Zhang | 7a87c71 | 2022-11-03 15:22:34 +0800 | [diff] [blame] | 1590 | /* Drop all outstanding tx data |
| 1591 | * App might disconnect session before connected, in this case, |
| 1592 | * tx_fifo may not be setup yet, so clear only it's inited. */ |
| 1593 | if (s->tx_fifo) |
| 1594 | svm_fifo_dequeue_drop_all (s->tx_fifo); |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1595 | session_set_state (s, SESSION_STATE_CLOSING); |
Florin Coras | dfb3b87 | 2019-08-16 17:48:44 -0700 | [diff] [blame] | 1596 | session_program_transport_ctrl_evt (s, SESSION_CTRL_EVT_RESET); |
Florin Coras | 2f8d8fa | 2018-01-26 06:36:04 -0800 | [diff] [blame] | 1597 | } |
| 1598 | |
Florin Coras | aa78631 | 2024-04-09 13:27:53 -0700 | [diff] [blame] | 1599 | void |
| 1600 | session_detach_app (session_t *s) |
| 1601 | { |
| 1602 | if (s->session_state < SESSION_STATE_TRANSPORT_CLOSING) |
Florin Coras | 9a5caec | 2024-04-16 16:53:14 -0700 | [diff] [blame] | 1603 | { |
| 1604 | session_close (s); |
| 1605 | } |
| 1606 | else if (s->session_state < SESSION_STATE_TRANSPORT_DELETED) |
| 1607 | { |
| 1608 | transport_connection_t *tc; |
| 1609 | |
| 1610 | /* Transport is closing but it's not yet deleted. Confirm close and |
| 1611 | * subsequently detach transport from session and enqueue a session |
| 1612 | * cleanup notification. Transport closed and cleanup notifications are |
| 1613 | * going to be dropped by session layer apis */ |
| 1614 | transport_close (session_get_transport_proto (s), s->connection_index, |
| 1615 | s->thread_index); |
| 1616 | tc = session_get_transport (s); |
| 1617 | tc->s_index = SESSION_INVALID_INDEX; |
| 1618 | session_set_state (s, SESSION_STATE_TRANSPORT_DELETED); |
| 1619 | session_cleanup_notify (s, SESSION_CLEANUP_SESSION); |
| 1620 | } |
| 1621 | else |
| 1622 | { |
| 1623 | session_cleanup_notify (s, SESSION_CLEANUP_SESSION); |
| 1624 | } |
Florin Coras | aa78631 | 2024-04-09 13:27:53 -0700 | [diff] [blame] | 1625 | |
| 1626 | s->flags |= SESSION_F_APP_CLOSED; |
| 1627 | s->app_wrk_index = APP_INVALID_INDEX; |
| 1628 | } |
| 1629 | |
Florin Coras | 2f8d8fa | 2018-01-26 06:36:04 -0800 | [diff] [blame] | 1630 | /** |
liuyacan | 534468e | 2021-05-09 03:50:40 +0000 | [diff] [blame] | 1631 | * Notify transport the session can be half-disconnected. |
| 1632 | * |
| 1633 | * Must be called from the session's thread. |
| 1634 | */ |
| 1635 | void |
| 1636 | session_transport_half_close (session_t *s) |
| 1637 | { |
| 1638 | /* Only READY session can be half-closed */ |
| 1639 | if (s->session_state != SESSION_STATE_READY) |
| 1640 | { |
| 1641 | return; |
| 1642 | } |
| 1643 | |
| 1644 | transport_half_close (session_get_transport_proto (s), s->connection_index, |
| 1645 | s->thread_index); |
| 1646 | } |
| 1647 | |
| 1648 | /** |
Florin Coras | 2f8d8fa | 2018-01-26 06:36:04 -0800 | [diff] [blame] | 1649 | * Notify transport the session can be disconnected. This should eventually |
| 1650 | * result in a delete notification that allows us to cleanup session state. |
| 1651 | * Called for both active/passive disconnects. |
| 1652 | * |
| 1653 | * Must be called from the session's thread. |
| 1654 | */ |
| 1655 | void |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 1656 | session_transport_close (session_t * s) |
Florin Coras | 2f8d8fa | 2018-01-26 06:36:04 -0800 | [diff] [blame] | 1657 | { |
Florin Coras | 692b949 | 2019-07-12 15:01:53 -0700 | [diff] [blame] | 1658 | if (s->session_state >= SESSION_STATE_APP_CLOSED) |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 1659 | { |
Florin Coras | 5f06632 | 2019-07-22 19:03:03 -0700 | [diff] [blame] | 1660 | if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED) |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1661 | session_set_state (s, SESSION_STATE_CLOSED); |
Florin Coras | 7080294 | 2024-06-11 12:17:04 -0700 | [diff] [blame] | 1662 | /* If transport is already deleted, just free the session. Half-opens |
| 1663 | * expected to be already cleaning up at this point */ |
| 1664 | else if (s->session_state >= SESSION_STATE_TRANSPORT_DELETED && |
| 1665 | !(s->flags & SESSION_F_HALF_OPEN)) |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 1666 | session_program_cleanup (s); |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 1667 | return; |
| 1668 | } |
Florin Coras | 78cc4b0 | 2018-12-20 18:24:49 -0800 | [diff] [blame] | 1669 | |
Florin Coras | 692b949 | 2019-07-12 15:01:53 -0700 | [diff] [blame] | 1670 | /* If the tx queue wasn't drained, the transport can continue to try |
| 1671 | * sending the outstanding data (in closed state it cannot). It MUST however |
| 1672 | * at one point, either after sending everything or after a timeout, call |
| 1673 | * delete notify. This will finally lead to the complete cleanup of the |
| 1674 | * session. |
Florin Coras | 78cc4b0 | 2018-12-20 18:24:49 -0800 | [diff] [blame] | 1675 | */ |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1676 | session_set_state (s, SESSION_STATE_APP_CLOSED); |
Florin Coras | 78cc4b0 | 2018-12-20 18:24:49 -0800 | [diff] [blame] | 1677 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 1678 | transport_close (session_get_transport_proto (s), s->connection_index, |
| 1679 | s->thread_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1680 | } |
| 1681 | |
| 1682 | /** |
Florin Coras | dfb3b87 | 2019-08-16 17:48:44 -0700 | [diff] [blame] | 1683 | * Force transport close |
| 1684 | */ |
| 1685 | void |
| 1686 | session_transport_reset (session_t * s) |
| 1687 | { |
| 1688 | if (s->session_state >= SESSION_STATE_APP_CLOSED) |
| 1689 | { |
| 1690 | if (s->session_state == SESSION_STATE_TRANSPORT_CLOSED) |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1691 | session_set_state (s, SESSION_STATE_CLOSED); |
Florin Coras | 6c37845 | 2024-06-12 10:14:40 -0700 | [diff] [blame^] | 1692 | else if (s->session_state >= SESSION_STATE_TRANSPORT_DELETED && |
| 1693 | !(s->flags & SESSION_F_HALF_OPEN)) |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 1694 | session_program_cleanup (s); |
Florin Coras | dfb3b87 | 2019-08-16 17:48:44 -0700 | [diff] [blame] | 1695 | return; |
| 1696 | } |
| 1697 | |
Steven Luong | d810a6e | 2022-10-25 13:09:11 -0700 | [diff] [blame] | 1698 | session_set_state (s, SESSION_STATE_APP_CLOSED); |
Florin Coras | dfb3b87 | 2019-08-16 17:48:44 -0700 | [diff] [blame] | 1699 | transport_reset (session_get_transport_proto (s), s->connection_index, |
| 1700 | s->thread_index); |
| 1701 | } |
| 1702 | |
| 1703 | /** |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1704 | * Cleanup transport and session state. |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 1705 | * |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 1706 | * Notify transport of the cleanup and free the session. This should |
| 1707 | * be called only if transport reported some error and is already |
| 1708 | * closed. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1709 | */ |
| 1710 | void |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 1711 | session_transport_cleanup (session_t * s) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1712 | { |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 1713 | /* Delete from main lookup table before we axe the the transport */ |
| 1714 | session_lookup_del_session (s); |
Florin Coras | 5afea12 | 2019-10-28 08:46:37 -0700 | [diff] [blame] | 1715 | if (s->session_state != SESSION_STATE_TRANSPORT_DELETED) |
| 1716 | transport_cleanup (session_get_transport_proto (s), s->connection_index, |
| 1717 | s->thread_index); |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 1718 | /* Since we called cleanup, no delete notification will come. So, make |
| 1719 | * sure the session is properly freed. */ |
Florin Coras | d3955fb | 2019-11-29 09:31:47 -0800 | [diff] [blame] | 1720 | segment_manager_dealloc_fifos (s->rx_fifo, s->tx_fifo); |
| 1721 | session_free (s); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1722 | } |
| 1723 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1724 | /** |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 1725 | * Allocate worker mqs in share-able segment |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1726 | * |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 1727 | * That can only be a newly created memfd segment, that must be mapped |
| 1728 | * by all apps/stack users unless private rx mqs are enabled. |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1729 | */ |
| 1730 | void |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 1731 | session_vpp_wrk_mqs_alloc (session_main_t *smm) |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1732 | { |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 1733 | u32 mq_q_length = 2048, evt_size = sizeof (session_event_t); |
| 1734 | fifo_segment_t *mqs_seg = &smm->wrk_mqs_segment; |
| 1735 | svm_msg_q_cfg_t _cfg, *cfg = &_cfg; |
| 1736 | uword mqs_seg_size; |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1737 | int i; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1738 | |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 1739 | mq_q_length = clib_max (mq_q_length, smm->configured_wrk_mq_length); |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1740 | |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 1741 | svm_msg_q_ring_cfg_t rc[SESSION_MQ_N_RINGS] = { |
| 1742 | { mq_q_length, evt_size, 0 }, { mq_q_length >> 1, 256, 0 } |
| 1743 | }; |
| 1744 | cfg->consumer_pid = 0; |
| 1745 | cfg->n_rings = 2; |
| 1746 | cfg->q_nitems = mq_q_length; |
| 1747 | cfg->ring_cfgs = rc; |
Florin Coras | 6c10ab2 | 2020-11-08 16:50:39 -0800 | [diff] [blame] | 1748 | |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 1749 | /* |
| 1750 | * Compute mqs segment size based on rings config and leave space |
| 1751 | * for passing extended configuration messages, i.e., data allocated |
| 1752 | * outside of the rings. If provided with a config value, accept it |
| 1753 | * if larger than minimum size. |
| 1754 | */ |
| 1755 | mqs_seg_size = svm_msg_q_size_to_alloc (cfg) * vec_len (smm->wrk); |
Florin Coras | cf5c774 | 2022-06-28 14:34:45 -0700 | [diff] [blame] | 1756 | mqs_seg_size = mqs_seg_size + (1 << 20); |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 1757 | mqs_seg_size = clib_max (mqs_seg_size, smm->wrk_mqs_segment_size); |
| 1758 | |
| 1759 | mqs_seg->ssvm.ssvm_size = mqs_seg_size; |
| 1760 | mqs_seg->ssvm.my_pid = getpid (); |
| 1761 | mqs_seg->ssvm.name = format (0, "%s%c", "session: wrk-mqs-segment", 0); |
Florin Coras | 6c10ab2 | 2020-11-08 16:50:39 -0800 | [diff] [blame] | 1762 | |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 1763 | if (ssvm_server_init (&mqs_seg->ssvm, SSVM_SEGMENT_MEMFD)) |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1764 | { |
Florin Coras | 6c10ab2 | 2020-11-08 16:50:39 -0800 | [diff] [blame] | 1765 | clib_warning ("failed to initialize queue segment"); |
| 1766 | return; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1767 | } |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1768 | |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 1769 | fifo_segment_init (mqs_seg); |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1770 | |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 1771 | /* Special fifo segment that's filled only with mqs */ |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 1772 | mqs_seg->h->n_mqs = vec_len (smm->wrk); |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 1773 | |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 1774 | for (i = 0; i < vec_len (smm->wrk); i++) |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 1775 | smm->wrk[i].vpp_event_queue = fifo_segment_msg_q_alloc (mqs_seg, i, cfg); |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1776 | } |
| 1777 | |
Florin Coras | 04943b4 | 2020-12-25 11:45:40 -0800 | [diff] [blame] | 1778 | fifo_segment_t * |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 1779 | session_main_get_wrk_mqs_segment (void) |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1780 | { |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 1781 | return &session_main.wrk_mqs_segment; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1782 | } |
| 1783 | |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 1784 | u64 |
| 1785 | session_segment_handle (session_t * s) |
| 1786 | { |
| 1787 | svm_fifo_t *f; |
| 1788 | |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 1789 | if (!s->rx_fifo) |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 1790 | return SESSION_INVALID_HANDLE; |
| 1791 | |
| 1792 | f = s->rx_fifo; |
| 1793 | return segment_manager_make_segment_handle (f->segment_manager, |
| 1794 | f->segment_index); |
| 1795 | } |
| 1796 | |
qinyang | af9b715 | 2023-06-27 01:11:53 -0700 | [diff] [blame] | 1797 | void |
| 1798 | session_get_original_dst (transport_endpoint_t *i2o_src, |
| 1799 | transport_endpoint_t *i2o_dst, |
| 1800 | transport_proto_t transport_proto, u32 *original_dst, |
| 1801 | u16 *original_dst_port) |
| 1802 | { |
| 1803 | session_main_t *smm = vnet_get_session_main (); |
| 1804 | ip_protocol_t proto = |
| 1805 | (transport_proto == TRANSPORT_PROTO_TCP ? IPPROTO_TCP : IPPROTO_UDP); |
| 1806 | if (!smm->original_dst_lookup || !i2o_dst->is_ip4) |
| 1807 | return; |
| 1808 | smm->original_dst_lookup (&i2o_src->ip.ip4, i2o_src->port, &i2o_dst->ip.ip4, |
| 1809 | i2o_dst->port, proto, original_dst, |
| 1810 | original_dst_port); |
| 1811 | } |
| 1812 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1813 | static session_fifo_rx_fn *session_tx_fns[TRANSPORT_TX_N_FNS] = { |
| 1814 | session_tx_fifo_peek_and_snd, |
| 1815 | session_tx_fifo_dequeue_and_snd, |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 1816 | session_tx_fifo_dequeue_internal, |
| 1817 | session_tx_fifo_dequeue_and_snd |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1818 | }; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1819 | |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1820 | void |
| 1821 | session_register_transport (transport_proto_t transport_proto, |
| 1822 | const transport_proto_vft_t * vft, u8 is_ip4, |
| 1823 | u32 output_node) |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1824 | { |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 1825 | session_main_t *smm = &session_main; |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1826 | session_type_t session_type; |
| 1827 | u32 next_index = ~0; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1828 | |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1829 | session_type = session_type_from_proto_and_ip (transport_proto, is_ip4); |
| 1830 | |
| 1831 | vec_validate (smm->session_type_to_next, session_type); |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1832 | vec_validate (smm->session_tx_fns, session_type); |
| 1833 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1834 | if (output_node != ~0) |
Florin Coras | eb839cc | 2021-04-14 11:23:55 -0700 | [diff] [blame] | 1835 | next_index = vlib_node_add_next (vlib_get_main (), |
| 1836 | session_queue_node.index, output_node); |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1837 | |
| 1838 | smm->session_type_to_next[session_type] = next_index; |
Nathan Skrzypczak | e971bc9 | 2019-06-19 13:42:37 +0200 | [diff] [blame] | 1839 | smm->session_tx_fns[session_type] = |
| 1840 | session_tx_fns[vft->transport_options.tx_type]; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1841 | } |
| 1842 | |
Florin Coras | 5384cca | 2022-01-20 18:10:26 -0800 | [diff] [blame] | 1843 | void |
| 1844 | session_register_update_time_fn (session_update_time_fn fn, u8 is_add) |
| 1845 | { |
| 1846 | session_main_t *smm = &session_main; |
| 1847 | session_update_time_fn *fi; |
| 1848 | u32 fi_pos = ~0; |
| 1849 | u8 found = 0; |
| 1850 | |
| 1851 | vec_foreach (fi, smm->update_time_fns) |
| 1852 | { |
| 1853 | if (*fi == fn) |
| 1854 | { |
| 1855 | fi_pos = fi - smm->update_time_fns; |
| 1856 | found = 1; |
| 1857 | break; |
| 1858 | } |
| 1859 | } |
| 1860 | |
| 1861 | if (is_add) |
| 1862 | { |
| 1863 | if (found) |
| 1864 | { |
| 1865 | clib_warning ("update time fn %p already registered", fn); |
| 1866 | return; |
| 1867 | } |
| 1868 | vec_add1 (smm->update_time_fns, fn); |
| 1869 | } |
| 1870 | else |
| 1871 | { |
| 1872 | vec_del1 (smm->update_time_fns, fi_pos); |
| 1873 | } |
| 1874 | } |
| 1875 | |
Florin Coras | 07063b8 | 2020-03-13 04:44:51 +0000 | [diff] [blame] | 1876 | transport_proto_t |
| 1877 | session_add_transport_proto (void) |
| 1878 | { |
| 1879 | session_main_t *smm = &session_main; |
| 1880 | session_worker_t *wrk; |
| 1881 | u32 thread; |
| 1882 | |
| 1883 | smm->last_transport_proto_type += 1; |
| 1884 | |
| 1885 | for (thread = 0; thread < vec_len (smm->wrk); thread++) |
| 1886 | { |
| 1887 | wrk = session_main_get_worker (thread); |
| 1888 | vec_validate (wrk->session_to_enqueue, smm->last_transport_proto_type); |
| 1889 | } |
| 1890 | |
| 1891 | return smm->last_transport_proto_type; |
| 1892 | } |
| 1893 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1894 | transport_connection_t * |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 1895 | session_get_transport (session_t * s) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1896 | { |
Florin Coras | ade70e4 | 2017-10-14 18:56:41 -0700 | [diff] [blame] | 1897 | if (s->session_state != SESSION_STATE_LISTENING) |
Florin Coras | 4edc37e | 2019-02-04 23:01:34 -0800 | [diff] [blame] | 1898 | return transport_get_connection (session_get_transport_proto (s), |
| 1899 | s->connection_index, s->thread_index); |
| 1900 | else |
| 1901 | return transport_get_listener (session_get_transport_proto (s), |
| 1902 | s->connection_index); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1903 | } |
| 1904 | |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 1905 | void |
Florin Coras | 09d18c2 | 2019-04-24 11:10:02 -0700 | [diff] [blame] | 1906 | session_get_endpoint (session_t * s, transport_endpoint_t * tep, u8 is_lcl) |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 1907 | { |
| 1908 | if (s->session_state != SESSION_STATE_LISTENING) |
| 1909 | return transport_get_endpoint (session_get_transport_proto (s), |
Florin Coras | 09d18c2 | 2019-04-24 11:10:02 -0700 | [diff] [blame] | 1910 | s->connection_index, s->thread_index, tep, |
| 1911 | is_lcl); |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 1912 | else |
| 1913 | return transport_get_listener_endpoint (session_get_transport_proto (s), |
Florin Coras | 09d18c2 | 2019-04-24 11:10:02 -0700 | [diff] [blame] | 1914 | s->connection_index, tep, is_lcl); |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 1915 | } |
| 1916 | |
Florin Coras | 04ae827 | 2021-04-12 19:55:37 -0700 | [diff] [blame] | 1917 | int |
| 1918 | session_transport_attribute (session_t *s, u8 is_get, |
| 1919 | transport_endpt_attr_t *attr) |
| 1920 | { |
| 1921 | if (s->session_state < SESSION_STATE_READY) |
| 1922 | return -1; |
| 1923 | |
| 1924 | return transport_connection_attribute (session_get_transport_proto (s), |
| 1925 | s->connection_index, s->thread_index, |
| 1926 | is_get, attr); |
| 1927 | } |
| 1928 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1929 | transport_connection_t * |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 1930 | listen_session_get_transport (session_t * s) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1931 | { |
Florin Coras | 4edc37e | 2019-02-04 23:01:34 -0800 | [diff] [blame] | 1932 | return transport_get_listener (session_get_transport_proto (s), |
| 1933 | s->connection_index); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1934 | } |
| 1935 | |
Florin Coras | fd542f1 | 2018-05-16 19:28:24 -0700 | [diff] [blame] | 1936 | void |
Florin Coras | 5484daa | 2020-03-27 23:55:06 +0000 | [diff] [blame] | 1937 | session_queue_run_on_main_thread (vlib_main_t * vm) |
Florin Coras | fd542f1 | 2018-05-16 19:28:24 -0700 | [diff] [blame] | 1938 | { |
| 1939 | ASSERT (vlib_get_thread_index () == 0); |
Florin Coras | 1d2e38b | 2021-03-17 21:52:49 -0700 | [diff] [blame] | 1940 | vlib_node_set_interrupt_pending (vm, session_queue_node.index); |
Florin Coras | fd542f1 | 2018-05-16 19:28:24 -0700 | [diff] [blame] | 1941 | } |
| 1942 | |
Florin Coras | d82f471 | 2022-04-25 16:15:02 -0700 | [diff] [blame] | 1943 | static void |
| 1944 | session_stats_collector_fn (vlib_stats_collector_data_t *d) |
| 1945 | { |
| 1946 | u32 i, n_workers, n_wrk_sessions, n_sessions = 0; |
| 1947 | session_main_t *smm = &session_main; |
| 1948 | session_worker_t *wrk; |
| 1949 | counter_t **counters; |
| 1950 | counter_t *cb; |
| 1951 | |
| 1952 | n_workers = vec_len (smm->wrk); |
| 1953 | vlib_stats_validate (d->entry_index, 0, n_workers - 1); |
| 1954 | counters = d->entry->data; |
| 1955 | cb = counters[0]; |
| 1956 | |
| 1957 | for (i = 0; i < vec_len (smm->wrk); i++) |
| 1958 | { |
| 1959 | wrk = session_main_get_worker (i); |
| 1960 | n_wrk_sessions = pool_elts (wrk->sessions); |
| 1961 | cb[i] = n_wrk_sessions; |
| 1962 | n_sessions += n_wrk_sessions; |
| 1963 | } |
| 1964 | |
| 1965 | vlib_stats_set_gauge (d->private_data, n_sessions); |
| 1966 | } |
| 1967 | |
| 1968 | static void |
| 1969 | session_stats_collector_init (void) |
| 1970 | { |
Florin Coras | 975e0df | 2022-04-26 19:32:11 -0700 | [diff] [blame] | 1971 | vlib_stats_collector_reg_t reg = {}; |
Florin Coras | d82f471 | 2022-04-25 16:15:02 -0700 | [diff] [blame] | 1972 | |
| 1973 | reg.entry_index = |
| 1974 | vlib_stats_add_counter_vector ("/sys/session/sessions_per_worker"); |
| 1975 | reg.private_data = vlib_stats_add_gauge ("/sys/session/sessions_total"); |
| 1976 | reg.collect_fn = session_stats_collector_fn; |
| 1977 | vlib_stats_register_collector_fn (®); |
| 1978 | vlib_stats_validate (reg.entry_index, 0, vlib_get_n_threads ()); |
| 1979 | } |
| 1980 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1981 | static clib_error_t * |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1982 | session_manager_main_enable (vlib_main_t * vm) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1983 | { |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 1984 | session_main_t *smm = &session_main; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1985 | vlib_thread_main_t *vtm = vlib_get_thread_main (); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1986 | u32 num_threads, preallocated_sessions_per_worker; |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 1987 | session_worker_t *wrk; |
Florin Coras | d5c604d | 2019-03-18 09:06:35 -0700 | [diff] [blame] | 1988 | int i; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1989 | |
Florin Coras | e10da62 | 2020-10-25 14:00:29 -0700 | [diff] [blame] | 1990 | /* We only initialize once and do not de-initialized on disable */ |
| 1991 | if (smm->is_initialized) |
| 1992 | goto done; |
| 1993 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1994 | num_threads = 1 /* main thread */ + vtm->n_threads; |
| 1995 | |
| 1996 | if (num_threads < 1) |
| 1997 | return clib_error_return (0, "n_thread_stacks not set"); |
| 1998 | |
Florin Coras | 5f56d73 | 2018-10-30 10:21:59 -0700 | [diff] [blame] | 1999 | /* Allocate cache line aligned worker contexts */ |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 2000 | vec_validate_aligned (smm->wrk, num_threads - 1, CLIB_CACHE_LINE_BYTES); |
Florin Coras | 53d8d4f | 2022-03-09 13:55:38 -0800 | [diff] [blame] | 2001 | clib_spinlock_init (&session_main.pool_realloc_lock); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2002 | |
Dave Barach | acd2a6a | 2017-05-16 17:41:34 -0400 | [diff] [blame] | 2003 | for (i = 0; i < num_threads; i++) |
| 2004 | { |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 2005 | wrk = &smm->wrk[i]; |
Florin Coras | b0ffbee | 2019-07-21 19:23:46 -0700 | [diff] [blame] | 2006 | wrk->ctrl_head = clib_llist_make_head (wrk->event_elts, evt_list); |
Florin Coras | 2062ec0 | 2019-07-15 13:15:18 -0700 | [diff] [blame] | 2007 | wrk->new_head = clib_llist_make_head (wrk->event_elts, evt_list); |
Florin Coras | 60183db | 2019-07-20 15:53:16 -0700 | [diff] [blame] | 2008 | wrk->old_head = clib_llist_make_head (wrk->event_elts, evt_list); |
Florin Coras | af97221 | 2021-05-05 09:54:00 -0700 | [diff] [blame] | 2009 | wrk->pending_connects = clib_llist_make_head (wrk->event_elts, evt_list); |
Florin Coras | e09bd48 | 2022-03-21 10:38:01 -0700 | [diff] [blame] | 2010 | wrk->evts_pending_main = |
| 2011 | clib_llist_make_head (wrk->event_elts, evt_list); |
Damjan Marion | 6ffb7c6 | 2021-03-26 13:06:13 +0100 | [diff] [blame] | 2012 | wrk->vm = vlib_get_main_by_index (i); |
Dave Barach | 77d9838 | 2020-04-28 18:00:21 -0400 | [diff] [blame] | 2013 | wrk->last_vlib_time = vlib_time_now (vm); |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 2014 | wrk->last_vlib_us_time = wrk->last_vlib_time * CLIB_US_TIME_FREQ; |
Florin Coras | a48dffe | 2021-05-16 10:58:53 -0700 | [diff] [blame] | 2015 | wrk->timerfd = -1; |
Florin Coras | 07063b8 | 2020-03-13 04:44:51 +0000 | [diff] [blame] | 2016 | vec_validate (wrk->session_to_enqueue, smm->last_transport_proto_type); |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 2017 | |
Florin Coras | 7da8829 | 2021-03-18 15:04:34 -0700 | [diff] [blame] | 2018 | if (!smm->no_adaptive && smm->use_private_rx_mqs) |
| 2019 | session_wrk_enable_adaptive_mode (wrk); |
Dave Barach | acd2a6a | 2017-05-16 17:41:34 -0400 | [diff] [blame] | 2020 | } |
| 2021 | |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 2022 | /* Allocate vpp event queues segment and queue */ |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 2023 | session_vpp_wrk_mqs_alloc (smm); |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 2024 | |
Florin Coras | 9a45bd8 | 2020-12-28 16:28:07 -0800 | [diff] [blame] | 2025 | /* Initialize segment manager properties */ |
| 2026 | segment_manager_main_init (); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 2027 | |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 2028 | /* Preallocate sessions */ |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 2029 | if (smm->preallocated_sessions) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2030 | { |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 2031 | if (num_threads == 1) |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 2032 | { |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 2033 | pool_init_fixed (smm->wrk[0].sessions, smm->preallocated_sessions); |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 2034 | } |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 2035 | else |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 2036 | { |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 2037 | int j; |
| 2038 | preallocated_sessions_per_worker = |
| 2039 | (1.1 * (f64) smm->preallocated_sessions / |
| 2040 | (f64) (num_threads - 1)); |
| 2041 | |
| 2042 | for (j = 1; j < num_threads; j++) |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 2043 | { |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 2044 | pool_init_fixed (smm->wrk[j].sessions, |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 2045 | preallocated_sessions_per_worker); |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 2046 | } |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 2047 | } |
| 2048 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2049 | |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 2050 | session_lookup_init (); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2051 | app_namespaces_init (); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2052 | transport_init (); |
Florin Coras | d82f471 | 2022-04-25 16:15:02 -0700 | [diff] [blame] | 2053 | session_stats_collector_init (); |
Florin Coras | e10da62 | 2020-10-25 14:00:29 -0700 | [diff] [blame] | 2054 | smm->is_initialized = 1; |
| 2055 | |
| 2056 | done: |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2057 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2058 | smm->is_enabled = 1; |
| 2059 | |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 2060 | /* Enable transports */ |
| 2061 | transport_enable_disable (vm, 1); |
Florin Coras | 1116667 | 2020-04-13 01:20:25 +0000 | [diff] [blame] | 2062 | session_debug_init (); |
Srikanth Akula | 7357043 | 2020-04-06 19:19:49 -0700 | [diff] [blame] | 2063 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2064 | return 0; |
| 2065 | } |
| 2066 | |
Florin Coras | e10da62 | 2020-10-25 14:00:29 -0700 | [diff] [blame] | 2067 | static void |
| 2068 | session_manager_main_disable (vlib_main_t * vm) |
| 2069 | { |
| 2070 | transport_enable_disable (vm, 0 /* is_en */ ); |
| 2071 | } |
| 2072 | |
Marvin Liu | 0654242 | 2022-08-16 06:49:09 +0000 | [diff] [blame] | 2073 | /* in this new callback, cookie hint the index */ |
| 2074 | void |
| 2075 | session_dma_completion_cb (vlib_main_t *vm, struct vlib_dma_batch *batch) |
| 2076 | { |
| 2077 | session_worker_t *wrk; |
| 2078 | wrk = session_main_get_worker (vm->thread_index); |
| 2079 | session_dma_transfer *dma_transfer; |
| 2080 | |
| 2081 | dma_transfer = &wrk->dma_trans[wrk->trans_head]; |
| 2082 | vec_add (wrk->pending_tx_buffers, dma_transfer->pending_tx_buffers, |
| 2083 | vec_len (dma_transfer->pending_tx_buffers)); |
| 2084 | vec_add (wrk->pending_tx_nexts, dma_transfer->pending_tx_nexts, |
| 2085 | vec_len (dma_transfer->pending_tx_nexts)); |
| 2086 | vec_reset_length (dma_transfer->pending_tx_buffers); |
| 2087 | vec_reset_length (dma_transfer->pending_tx_nexts); |
| 2088 | wrk->trans_head++; |
| 2089 | if (wrk->trans_head == wrk->trans_size) |
| 2090 | wrk->trans_head = 0; |
| 2091 | return; |
| 2092 | } |
| 2093 | |
| 2094 | static void |
| 2095 | session_prepare_dma_args (vlib_dma_config_t *args) |
| 2096 | { |
Marvin Liu | 48d2e15 | 2023-03-14 23:56:31 +0800 | [diff] [blame] | 2097 | args->max_batches = 16; |
Marvin Liu | 0654242 | 2022-08-16 06:49:09 +0000 | [diff] [blame] | 2098 | args->max_transfers = DMA_TRANS_SIZE; |
| 2099 | args->max_transfer_size = 65536; |
| 2100 | args->features = 0; |
| 2101 | args->sw_fallback = 1; |
| 2102 | args->barrier_before_last = 1; |
| 2103 | args->callback_fn = session_dma_completion_cb; |
| 2104 | } |
| 2105 | |
| 2106 | static void |
| 2107 | session_node_enable_dma (u8 is_en, int n_vlibs) |
| 2108 | { |
| 2109 | vlib_dma_config_t args; |
| 2110 | session_prepare_dma_args (&args); |
| 2111 | session_worker_t *wrk; |
| 2112 | vlib_main_t *vm; |
| 2113 | |
| 2114 | int config_index = -1; |
| 2115 | |
| 2116 | if (is_en) |
| 2117 | { |
| 2118 | vm = vlib_get_main_by_index (0); |
| 2119 | config_index = vlib_dma_config_add (vm, &args); |
| 2120 | } |
| 2121 | else |
| 2122 | { |
| 2123 | vm = vlib_get_main_by_index (0); |
| 2124 | wrk = session_main_get_worker (0); |
| 2125 | if (wrk->config_index >= 0) |
| 2126 | vlib_dma_config_del (vm, wrk->config_index); |
| 2127 | } |
| 2128 | int i; |
| 2129 | for (i = 0; i < n_vlibs; i++) |
| 2130 | { |
| 2131 | vm = vlib_get_main_by_index (i); |
| 2132 | wrk = session_main_get_worker (vm->thread_index); |
| 2133 | wrk->config_index = config_index; |
| 2134 | if (is_en) |
| 2135 | { |
| 2136 | if (config_index >= 0) |
| 2137 | wrk->dma_enabled = true; |
| 2138 | wrk->dma_trans = (session_dma_transfer *) clib_mem_alloc ( |
| 2139 | sizeof (session_dma_transfer) * DMA_TRANS_SIZE); |
| 2140 | bzero (wrk->dma_trans, |
| 2141 | sizeof (session_dma_transfer) * DMA_TRANS_SIZE); |
| 2142 | } |
| 2143 | else |
| 2144 | { |
| 2145 | if (wrk->dma_trans) |
| 2146 | clib_mem_free (wrk->dma_trans); |
| 2147 | } |
| 2148 | wrk->trans_head = 0; |
| 2149 | wrk->trans_tail = 0; |
| 2150 | wrk->trans_size = DMA_TRANS_SIZE; |
| 2151 | } |
| 2152 | } |
| 2153 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 2154 | void |
| 2155 | session_node_enable_disable (u8 is_en) |
| 2156 | { |
Florin Coras | 1d2e38b | 2021-03-17 21:52:49 -0700 | [diff] [blame] | 2157 | u8 mstate = is_en ? VLIB_NODE_STATE_INTERRUPT : VLIB_NODE_STATE_DISABLED; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 2158 | u8 state = is_en ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED; |
Florin Coras | 1d2e38b | 2021-03-17 21:52:49 -0700 | [diff] [blame] | 2159 | session_main_t *sm = &session_main; |
| 2160 | vlib_main_t *vm; |
| 2161 | vlib_node_t *n; |
| 2162 | int n_vlibs, i; |
Florin Coras | fd542f1 | 2018-05-16 19:28:24 -0700 | [diff] [blame] | 2163 | |
Florin Coras | 1d2e38b | 2021-03-17 21:52:49 -0700 | [diff] [blame] | 2164 | n_vlibs = vlib_get_n_threads (); |
| 2165 | for (i = 0; i < n_vlibs; i++) |
Damjan Marion | 92ccf9b | 2021-03-26 11:38:01 +0100 | [diff] [blame] | 2166 | { |
Florin Coras | 1d2e38b | 2021-03-17 21:52:49 -0700 | [diff] [blame] | 2167 | vm = vlib_get_main_by_index (i); |
| 2168 | /* main thread with workers and not polling */ |
| 2169 | if (i == 0 && n_vlibs > 1) |
Damjan Marion | 92ccf9b | 2021-03-26 11:38:01 +0100 | [diff] [blame] | 2170 | { |
Florin Coras | 1d2e38b | 2021-03-17 21:52:49 -0700 | [diff] [blame] | 2171 | vlib_node_set_state (vm, session_queue_node.index, mstate); |
Damjan Marion | 92ccf9b | 2021-03-26 11:38:01 +0100 | [diff] [blame] | 2172 | if (is_en) |
| 2173 | { |
Florin Coras | b32af35 | 2021-05-19 07:58:49 -0700 | [diff] [blame] | 2174 | session_main_get_worker (0)->state = SESSION_WRK_INTERRUPT; |
Florin Coras | 1d2e38b | 2021-03-17 21:52:49 -0700 | [diff] [blame] | 2175 | vlib_node_set_state (vm, session_queue_process_node.index, |
| 2176 | state); |
| 2177 | n = vlib_get_node (vm, session_queue_process_node.index); |
| 2178 | vlib_start_process (vm, n->runtime_index); |
Damjan Marion | 92ccf9b | 2021-03-26 11:38:01 +0100 | [diff] [blame] | 2179 | } |
| 2180 | else |
| 2181 | { |
Florin Coras | 1d2e38b | 2021-03-17 21:52:49 -0700 | [diff] [blame] | 2182 | vlib_process_signal_event_mt (vm, |
Damjan Marion | 92ccf9b | 2021-03-26 11:38:01 +0100 | [diff] [blame] | 2183 | session_queue_process_node.index, |
| 2184 | SESSION_Q_PROCESS_STOP, 0); |
| 2185 | } |
Florin Coras | 1d2e38b | 2021-03-17 21:52:49 -0700 | [diff] [blame] | 2186 | if (!sm->poll_main) |
Damjan Marion | 92ccf9b | 2021-03-26 11:38:01 +0100 | [diff] [blame] | 2187 | continue; |
| 2188 | } |
Florin Coras | 0242d30 | 2022-12-22 15:03:44 -0800 | [diff] [blame] | 2189 | vlib_node_set_state (vm, session_input_node.index, mstate); |
Florin Coras | 1d2e38b | 2021-03-17 21:52:49 -0700 | [diff] [blame] | 2190 | vlib_node_set_state (vm, session_queue_node.index, state); |
Damjan Marion | 92ccf9b | 2021-03-26 11:38:01 +0100 | [diff] [blame] | 2191 | } |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 2192 | |
Florin Coras | 1d2e38b | 2021-03-17 21:52:49 -0700 | [diff] [blame] | 2193 | if (sm->use_private_rx_mqs) |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 2194 | application_enable_rx_mqs_nodes (is_en); |
Marvin Liu | 0654242 | 2022-08-16 06:49:09 +0000 | [diff] [blame] | 2195 | |
| 2196 | if (sm->dma_enabled) |
| 2197 | session_node_enable_dma (is_en, n_vlibs); |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 2198 | } |
| 2199 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2200 | clib_error_t * |
| 2201 | vnet_session_enable_disable (vlib_main_t * vm, u8 is_en) |
| 2202 | { |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2203 | clib_error_t *error = 0; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2204 | if (is_en) |
| 2205 | { |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 2206 | if (session_main.is_enabled) |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2207 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2208 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2209 | error = session_manager_main_enable (vm); |
Vladimir Kropylev | a2e4451 | 2019-07-16 21:32:41 +0300 | [diff] [blame] | 2210 | session_node_enable_disable (is_en); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2211 | } |
| 2212 | else |
| 2213 | { |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 2214 | session_main.is_enabled = 0; |
Florin Coras | e10da62 | 2020-10-25 14:00:29 -0700 | [diff] [blame] | 2215 | session_manager_main_disable (vm); |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 2216 | session_node_enable_disable (is_en); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2217 | } |
| 2218 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2219 | return error; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2220 | } |
| 2221 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2222 | clib_error_t * |
Florin Coras | e33c002 | 2020-04-03 17:23:42 +0000 | [diff] [blame] | 2223 | session_main_init (vlib_main_t * vm) |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2224 | { |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 2225 | session_main_t *smm = &session_main; |
Florin Coras | e33c002 | 2020-04-03 17:23:42 +0000 | [diff] [blame] | 2226 | |
| 2227 | smm->is_enabled = 0; |
| 2228 | smm->session_enable_asap = 0; |
Florin Coras | e92c946 | 2020-11-25 08:44:16 -0800 | [diff] [blame] | 2229 | smm->poll_main = 0; |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 2230 | smm->use_private_rx_mqs = 0; |
Florin Coras | 7da8829 | 2021-03-18 15:04:34 -0700 | [diff] [blame] | 2231 | smm->no_adaptive = 0; |
Florin Coras | 0b65621 | 2022-01-13 11:59:44 -0800 | [diff] [blame] | 2232 | smm->last_transport_proto_type = TRANSPORT_PROTO_HTTP; |
Nathan Skrzypczak | e111bbd | 2023-10-03 13:54:15 +0200 | [diff] [blame] | 2233 | smm->port_allocator_min_src_port = 1024; |
| 2234 | smm->port_allocator_max_src_port = 65535; |
Florin Coras | e33c002 | 2020-04-03 17:23:42 +0000 | [diff] [blame] | 2235 | |
Nathan Skrzypczak | 31bd035 | 2019-11-07 17:55:01 +0100 | [diff] [blame] | 2236 | return 0; |
| 2237 | } |
| 2238 | |
| 2239 | static clib_error_t * |
Florin Coras | e33c002 | 2020-04-03 17:23:42 +0000 | [diff] [blame] | 2240 | session_main_loop_init (vlib_main_t * vm) |
Nathan Skrzypczak | 31bd035 | 2019-11-07 17:55:01 +0100 | [diff] [blame] | 2241 | { |
| 2242 | session_main_t *smm = &session_main; |
| 2243 | if (smm->session_enable_asap) |
| 2244 | { |
| 2245 | vlib_worker_thread_barrier_sync (vm); |
| 2246 | vnet_session_enable_disable (vm, 1 /* is_en */ ); |
| 2247 | vlib_worker_thread_barrier_release (vm); |
| 2248 | } |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2249 | return 0; |
| 2250 | } |
| 2251 | |
Florin Coras | e33c002 | 2020-04-03 17:23:42 +0000 | [diff] [blame] | 2252 | VLIB_INIT_FUNCTION (session_main_init); |
| 2253 | VLIB_MAIN_LOOP_ENTER_FUNCTION (session_main_loop_init); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 2254 | |
| 2255 | static clib_error_t * |
| 2256 | session_config_fn (vlib_main_t * vm, unformat_input_t * input) |
Dave Barach | 10d8cc6 | 2017-05-30 09:30:07 -0400 | [diff] [blame] | 2257 | { |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 2258 | session_main_t *smm = &session_main; |
Dave Barach | 10d8cc6 | 2017-05-30 09:30:07 -0400 | [diff] [blame] | 2259 | u32 nitems; |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 2260 | uword tmp; |
Dave Barach | 10d8cc6 | 2017-05-30 09:30:07 -0400 | [diff] [blame] | 2261 | |
| 2262 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 2263 | { |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 2264 | if (unformat (input, "wrk-mq-length %d", &nitems)) |
Dave Barach | 10d8cc6 | 2017-05-30 09:30:07 -0400 | [diff] [blame] | 2265 | { |
| 2266 | if (nitems >= 2048) |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 2267 | smm->configured_wrk_mq_length = nitems; |
Dave Barach | 10d8cc6 | 2017-05-30 09:30:07 -0400 | [diff] [blame] | 2268 | else |
| 2269 | clib_warning ("event queue length %d too small, ignored", nitems); |
| 2270 | } |
Florin Coras | cf5c774 | 2022-06-28 14:34:45 -0700 | [diff] [blame] | 2271 | else if (unformat (input, "wrk-mqs-segment-size %U", |
| 2272 | unformat_memory_size, &smm->wrk_mqs_segment_size)) |
| 2273 | ; |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 2274 | else if (unformat (input, "preallocated-sessions %d", |
| 2275 | &smm->preallocated_sessions)) |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 2276 | ; |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 2277 | else if (unformat (input, "v4-session-table-buckets %d", |
| 2278 | &smm->configured_v4_session_table_buckets)) |
| 2279 | ; |
| 2280 | else if (unformat (input, "v4-halfopen-table-buckets %d", |
| 2281 | &smm->configured_v4_halfopen_table_buckets)) |
| 2282 | ; |
| 2283 | else if (unformat (input, "v6-session-table-buckets %d", |
| 2284 | &smm->configured_v6_session_table_buckets)) |
| 2285 | ; |
| 2286 | else if (unformat (input, "v6-halfopen-table-buckets %d", |
| 2287 | &smm->configured_v6_halfopen_table_buckets)) |
| 2288 | ; |
| 2289 | else if (unformat (input, "v4-session-table-memory %U", |
| 2290 | unformat_memory_size, &tmp)) |
| 2291 | { |
| 2292 | if (tmp >= 0x100000000) |
| 2293 | return clib_error_return (0, "memory size %llx (%lld) too large", |
| 2294 | tmp, tmp); |
| 2295 | smm->configured_v4_session_table_memory = tmp; |
| 2296 | } |
| 2297 | else if (unformat (input, "v4-halfopen-table-memory %U", |
| 2298 | unformat_memory_size, &tmp)) |
| 2299 | { |
| 2300 | if (tmp >= 0x100000000) |
| 2301 | return clib_error_return (0, "memory size %llx (%lld) too large", |
| 2302 | tmp, tmp); |
| 2303 | smm->configured_v4_halfopen_table_memory = tmp; |
| 2304 | } |
| 2305 | else if (unformat (input, "v6-session-table-memory %U", |
| 2306 | unformat_memory_size, &tmp)) |
| 2307 | { |
| 2308 | if (tmp >= 0x100000000) |
| 2309 | return clib_error_return (0, "memory size %llx (%lld) too large", |
| 2310 | tmp, tmp); |
| 2311 | smm->configured_v6_session_table_memory = tmp; |
| 2312 | } |
| 2313 | else if (unformat (input, "v6-halfopen-table-memory %U", |
| 2314 | unformat_memory_size, &tmp)) |
| 2315 | { |
| 2316 | if (tmp >= 0x100000000) |
| 2317 | return clib_error_return (0, "memory size %llx (%lld) too large", |
| 2318 | tmp, tmp); |
| 2319 | smm->configured_v6_halfopen_table_memory = tmp; |
| 2320 | } |
Florin Coras | 93e6580 | 2017-11-29 00:07:11 -0500 | [diff] [blame] | 2321 | else if (unformat (input, "local-endpoints-table-memory %U", |
| 2322 | unformat_memory_size, &tmp)) |
| 2323 | { |
| 2324 | if (tmp >= 0x100000000) |
| 2325 | return clib_error_return (0, "memory size %llx (%lld) too large", |
| 2326 | tmp, tmp); |
| 2327 | smm->local_endpoints_table_memory = tmp; |
| 2328 | } |
| 2329 | else if (unformat (input, "local-endpoints-table-buckets %d", |
| 2330 | &smm->local_endpoints_table_buckets)) |
| 2331 | ; |
Nathan Skrzypczak | e111bbd | 2023-10-03 13:54:15 +0200 | [diff] [blame] | 2332 | else if (unformat (input, "min-src-port %d", &tmp)) |
| 2333 | smm->port_allocator_min_src_port = tmp; |
| 2334 | else if (unformat (input, "max-src-port %d", &tmp)) |
| 2335 | smm->port_allocator_max_src_port = tmp; |
Nathan Skrzypczak | 1292d19 | 2019-09-13 15:44:54 +0200 | [diff] [blame] | 2336 | else if (unformat (input, "enable")) |
Nathan Skrzypczak | 31bd035 | 2019-11-07 17:55:01 +0100 | [diff] [blame] | 2337 | smm->session_enable_asap = 1; |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 2338 | else if (unformat (input, "use-app-socket-api")) |
Nathan Skrzypczak | 7b3a3df | 2021-07-28 14:09:50 +0200 | [diff] [blame] | 2339 | (void) appns_sapi_enable_disable (1 /* is_enable */); |
Florin Coras | e92c946 | 2020-11-25 08:44:16 -0800 | [diff] [blame] | 2340 | else if (unformat (input, "poll-main")) |
| 2341 | smm->poll_main = 1; |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 2342 | else if (unformat (input, "use-private-rx-mqs")) |
| 2343 | smm->use_private_rx_mqs = 1; |
Florin Coras | 7da8829 | 2021-03-18 15:04:34 -0700 | [diff] [blame] | 2344 | else if (unformat (input, "no-adaptive")) |
| 2345 | smm->no_adaptive = 1; |
Marvin Liu | 0654242 | 2022-08-16 06:49:09 +0000 | [diff] [blame] | 2346 | else if (unformat (input, "use-dma")) |
| 2347 | smm->dma_enabled = 1; |
qinyang | af9b715 | 2023-06-27 01:11:53 -0700 | [diff] [blame] | 2348 | else if (unformat (input, "nat44-original-dst-enable")) |
| 2349 | { |
| 2350 | smm->original_dst_lookup = vlib_get_plugin_symbol ( |
| 2351 | "nat_plugin.so", "nat44_original_dst_lookup"); |
| 2352 | } |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 2353 | /* |
| 2354 | * Deprecated but maintained for compatibility |
| 2355 | */ |
| 2356 | else if (unformat (input, "evt_qs_memfd_seg")) |
| 2357 | ; |
Florin Coras | ef04803 | 2021-11-17 23:57:30 -0800 | [diff] [blame] | 2358 | else if (unformat (input, "segment-baseva 0x%lx", &tmp)) |
| 2359 | ; |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 2360 | else if (unformat (input, "evt_qs_seg_size %U", unformat_memory_size, |
Florin Coras | cf5c774 | 2022-06-28 14:34:45 -0700 | [diff] [blame] | 2361 | &smm->wrk_mqs_segment_size)) |
Florin Coras | 8afe1b8 | 2021-11-17 23:38:54 -0800 | [diff] [blame] | 2362 | ; |
| 2363 | else if (unformat (input, "event-queue-length %d", &nitems)) |
| 2364 | { |
| 2365 | if (nitems >= 2048) |
| 2366 | smm->configured_wrk_mq_length = nitems; |
| 2367 | else |
| 2368 | clib_warning ("event queue length %d too small, ignored", nitems); |
| 2369 | } |
Dave Barach | 10d8cc6 | 2017-05-30 09:30:07 -0400 | [diff] [blame] | 2370 | else |
| 2371 | return clib_error_return (0, "unknown input `%U'", |
| 2372 | format_unformat_error, input); |
| 2373 | } |
| 2374 | return 0; |
| 2375 | } |
| 2376 | |
| 2377 | VLIB_CONFIG_FUNCTION (session_config_fn, "session"); |
| 2378 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2379 | /* |
| 2380 | * fd.io coding-style-patch-verification: ON |
| 2381 | * |
| 2382 | * Local Variables: |
| 2383 | * eval: (c-set-style "gnu") |
| 2384 | * End: |
| 2385 | */ |