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