Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2017 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | /** |
| 16 | * @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/session_debug.h> |
| 22 | #include <vnet/session/application.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 23 | #include <vlibmemory/api.h> |
| 24 | #include <vnet/dpo/load_balance.h> |
| 25 | #include <vnet/fib/ip4_fib.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 26 | |
| 27 | session_manager_main_t session_manager_main; |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 28 | extern transport_proto_vft_t *tp_vfts; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 29 | |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 30 | static inline int |
| 31 | session_send_evt_to_thread (void *data, void *args, u32 thread_index, |
| 32 | session_evt_type_t evt_type) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 33 | { |
Florin Coras | 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 | b2371c2 | 2018-05-31 17:14:10 -0700 | [diff] [blame] | 37 | u32 tries = 0, max_tries; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 38 | |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 39 | mq = session_manager_get_vpp_event_queue (thread_index); |
| 40 | while (svm_msg_q_try_lock (mq)) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 41 | { |
Florin Coras | b2371c2 | 2018-05-31 17:14:10 -0700 | [diff] [blame] | 42 | max_tries = vlib_get_current_process (vlib_get_main ())? 1e6 : 3; |
| 43 | if (tries++ == max_tries) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 44 | { |
| 45 | SESSION_DBG ("failed to enqueue evt"); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 46 | return -1; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 47 | } |
| 48 | } |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 49 | if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING))) |
| 50 | { |
| 51 | svm_msg_q_unlock (mq); |
| 52 | return -2; |
| 53 | } |
| 54 | msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING); |
| 55 | if (PREDICT_FALSE (svm_msg_q_msg_is_invalid (&msg))) |
| 56 | { |
| 57 | svm_msg_q_unlock (mq); |
| 58 | return -2; |
| 59 | } |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 60 | evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 61 | evt->event_type = evt_type; |
| 62 | switch (evt_type) |
| 63 | { |
| 64 | case FIFO_EVENT_RPC: |
| 65 | evt->rpc_args.fp = data; |
| 66 | evt->rpc_args.arg = args; |
| 67 | break; |
| 68 | case FIFO_EVENT_APP_TX: |
Florin Coras | 844a36d | 2018-12-20 09:50:50 -0800 | [diff] [blame] | 69 | case SESSION_IO_EVT_TX_FLUSH: |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 70 | case FIFO_EVENT_BUILTIN_RX: |
| 71 | evt->fifo = data; |
| 72 | break; |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 73 | case FIFO_EVENT_BUILTIN_TX: |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 74 | case FIFO_EVENT_DISCONNECT: |
| 75 | evt->session_handle = session_handle ((stream_session_t *) data); |
| 76 | break; |
| 77 | default: |
| 78 | clib_warning ("evt unhandled!"); |
| 79 | svm_msg_q_unlock (mq); |
| 80 | return -1; |
| 81 | } |
| 82 | |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 83 | svm_msg_q_add_and_unlock (mq, &msg); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 84 | return 0; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 85 | } |
| 86 | |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 87 | int |
| 88 | 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] | 89 | { |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 90 | return session_send_evt_to_thread (f, 0, f->master_thread_index, evt_type); |
| 91 | } |
| 92 | |
| 93 | int |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 94 | session_send_io_evt_to_thread_custom (void *data, u32 thread_index, |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 95 | session_evt_type_t evt_type) |
| 96 | { |
Florin Coras | ef91534 | 2018-09-29 10:23:06 -0700 | [diff] [blame] | 97 | return session_send_evt_to_thread (data, 0, thread_index, evt_type); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | int |
| 101 | session_send_ctrl_evt_to_thread (stream_session_t * s, |
| 102 | session_evt_type_t evt_type) |
| 103 | { |
| 104 | /* only event supported for now is disconnect */ |
| 105 | ASSERT (evt_type == FIFO_EVENT_DISCONNECT); |
| 106 | return session_send_evt_to_thread (s, 0, s->thread_index, |
| 107 | FIFO_EVENT_DISCONNECT); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | void |
| 111 | session_send_rpc_evt_to_thread (u32 thread_index, void *fp, void *rpc_args) |
| 112 | { |
| 113 | if (thread_index != vlib_get_thread_index ()) |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 114 | session_send_evt_to_thread (fp, rpc_args, thread_index, FIFO_EVENT_RPC); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 115 | else |
| 116 | { |
| 117 | void (*fnp) (void *) = fp; |
| 118 | fnp (rpc_args); |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | stream_session_t * |
| 123 | session_alloc (u32 thread_index) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 124 | { |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 125 | session_manager_worker_t *wrk = &session_manager_main.wrk[thread_index]; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 126 | stream_session_t *s; |
| 127 | u8 will_expand = 0; |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 128 | pool_get_aligned_will_expand (wrk->sessions, will_expand, |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 129 | CLIB_CACHE_LINE_BYTES); |
| 130 | /* If we have peekers, let them finish */ |
Florin Coras | 84a30ef | 2018-01-24 10:49:23 -0800 | [diff] [blame] | 131 | if (PREDICT_FALSE (will_expand && vlib_num_workers ())) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 132 | { |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 133 | clib_rwlock_writer_lock (&wrk->peekers_rw_locks); |
| 134 | pool_get_aligned (wrk->sessions, s, CLIB_CACHE_LINE_BYTES); |
| 135 | clib_rwlock_writer_unlock (&wrk->peekers_rw_locks); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 136 | } |
| 137 | else |
| 138 | { |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 139 | pool_get_aligned (wrk->sessions, s, CLIB_CACHE_LINE_BYTES); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 140 | } |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 141 | clib_memset (s, 0, sizeof (*s)); |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 142 | s->session_index = s - wrk->sessions; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 143 | s->thread_index = thread_index; |
| 144 | return s; |
| 145 | } |
| 146 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 147 | void |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 148 | session_free (stream_session_t * s) |
| 149 | { |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 150 | pool_put (session_manager_main.wrk[s->thread_index].sessions, s); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 151 | if (CLIB_DEBUG) |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 152 | clib_memset (s, 0xFA, sizeof (*s)); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 153 | } |
| 154 | |
Florin Coras | eb97e5f | 2018-10-15 21:35:42 -0700 | [diff] [blame] | 155 | void |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 156 | session_free_w_fifos (stream_session_t * s) |
| 157 | { |
| 158 | segment_manager_dealloc_fifos (s->svm_segment_index, s->server_rx_fifo, |
| 159 | s->server_tx_fifo); |
| 160 | session_free (s); |
| 161 | } |
| 162 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 163 | int |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 164 | session_alloc_fifos (segment_manager_t * sm, stream_session_t * s) |
| 165 | { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 166 | svm_fifo_t *server_rx_fifo = 0, *server_tx_fifo = 0; |
| 167 | u32 fifo_segment_index; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 168 | int rv; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 169 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 170 | if ((rv = segment_manager_alloc_session_fifos (sm, &server_rx_fifo, |
| 171 | &server_tx_fifo, |
| 172 | &fifo_segment_index))) |
| 173 | return rv; |
| 174 | /* Initialize backpointers */ |
| 175 | server_rx_fifo->master_session_index = s->session_index; |
| 176 | server_rx_fifo->master_thread_index = s->thread_index; |
| 177 | |
| 178 | server_tx_fifo->master_session_index = s->session_index; |
| 179 | server_tx_fifo->master_thread_index = s->thread_index; |
| 180 | |
| 181 | s->server_rx_fifo = server_rx_fifo; |
| 182 | s->server_tx_fifo = server_tx_fifo; |
| 183 | s->svm_segment_index = fifo_segment_index; |
| 184 | return 0; |
| 185 | } |
| 186 | |
| 187 | static stream_session_t * |
| 188 | session_alloc_for_connection (transport_connection_t * tc) |
| 189 | { |
| 190 | stream_session_t *s; |
| 191 | u32 thread_index = tc->thread_index; |
| 192 | |
Florin Coras | 40903ac | 2018-06-10 14:41:23 -0700 | [diff] [blame] | 193 | ASSERT (thread_index == vlib_get_thread_index () |
| 194 | || transport_protocol_is_cl (tc->proto)); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 195 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 196 | s = session_alloc (thread_index); |
| 197 | s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4); |
Florin Coras | eb97e5f | 2018-10-15 21:35:42 -0700 | [diff] [blame] | 198 | s->enqueue_epoch = (u64) ~ 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 199 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 200 | /* Attach transport to session and vice versa */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 201 | s->connection_index = tc->c_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 202 | tc->s_index = s->session_index; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 203 | return s; |
| 204 | } |
| 205 | |
| 206 | static int |
| 207 | session_alloc_and_init (segment_manager_t * sm, transport_connection_t * tc, |
| 208 | u8 alloc_fifos, stream_session_t ** ret_s) |
| 209 | { |
| 210 | stream_session_t *s; |
| 211 | int rv; |
| 212 | |
| 213 | s = session_alloc_for_connection (tc); |
| 214 | if (alloc_fifos && (rv = session_alloc_fifos (sm, s))) |
| 215 | { |
| 216 | session_free (s); |
Florin Coras | 29ca16f | 2017-11-02 18:14:17 -0400 | [diff] [blame] | 217 | *ret_s = 0; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 218 | return rv; |
| 219 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 220 | |
| 221 | /* Add to the main lookup table */ |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 222 | session_lookup_add_connection (tc, session_handle (s)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 223 | |
| 224 | *ret_s = s; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 225 | return 0; |
| 226 | } |
| 227 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 228 | /** |
| 229 | * Discards bytes from buffer chain |
| 230 | * |
| 231 | * It discards n_bytes_to_drop starting at first buffer after chain_b |
| 232 | */ |
| 233 | always_inline void |
| 234 | session_enqueue_discard_chain_bytes (vlib_main_t * vm, vlib_buffer_t * b, |
| 235 | vlib_buffer_t ** chain_b, |
| 236 | u32 n_bytes_to_drop) |
| 237 | { |
| 238 | vlib_buffer_t *next = *chain_b; |
| 239 | u32 to_drop = n_bytes_to_drop; |
| 240 | ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT); |
| 241 | while (to_drop && (next->flags & VLIB_BUFFER_NEXT_PRESENT)) |
| 242 | { |
| 243 | next = vlib_get_buffer (vm, next->next_buffer); |
| 244 | if (next->current_length > to_drop) |
| 245 | { |
| 246 | vlib_buffer_advance (next, to_drop); |
| 247 | to_drop = 0; |
| 248 | } |
| 249 | else |
| 250 | { |
| 251 | to_drop -= next->current_length; |
| 252 | next->current_length = 0; |
| 253 | } |
| 254 | } |
| 255 | *chain_b = next; |
| 256 | |
| 257 | if (to_drop == 0) |
| 258 | b->total_length_not_including_first_buffer -= n_bytes_to_drop; |
| 259 | } |
| 260 | |
| 261 | /** |
| 262 | * Enqueue buffer chain tail |
| 263 | */ |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 264 | always_inline int |
| 265 | session_enqueue_chain_tail (stream_session_t * s, vlib_buffer_t * b, |
| 266 | u32 offset, u8 is_in_order) |
| 267 | { |
| 268 | vlib_buffer_t *chain_b; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 269 | u32 chain_bi, len, diff; |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 270 | vlib_main_t *vm = vlib_get_main (); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 271 | u8 *data; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 272 | u32 written = 0; |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 273 | int rv = 0; |
| 274 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 275 | if (is_in_order && offset) |
| 276 | { |
| 277 | diff = offset - b->current_length; |
| 278 | if (diff > b->total_length_not_including_first_buffer) |
| 279 | return 0; |
| 280 | chain_b = b; |
| 281 | session_enqueue_discard_chain_bytes (vm, b, &chain_b, diff); |
| 282 | chain_bi = vlib_get_buffer_index (vm, chain_b); |
| 283 | } |
| 284 | else |
| 285 | chain_bi = b->next_buffer; |
| 286 | |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 287 | do |
| 288 | { |
| 289 | chain_b = vlib_get_buffer (vm, chain_bi); |
| 290 | data = vlib_buffer_get_current (chain_b); |
| 291 | len = chain_b->current_length; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 292 | if (!len) |
| 293 | continue; |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 294 | if (is_in_order) |
| 295 | { |
| 296 | rv = svm_fifo_enqueue_nowait (s->server_rx_fifo, len, data); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 297 | if (rv == len) |
| 298 | { |
| 299 | written += rv; |
| 300 | } |
| 301 | else if (rv < len) |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 302 | { |
| 303 | return (rv > 0) ? (written + rv) : written; |
| 304 | } |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 305 | else if (rv > len) |
| 306 | { |
| 307 | written += rv; |
| 308 | |
| 309 | /* written more than what was left in chain */ |
| 310 | if (written > b->total_length_not_including_first_buffer) |
| 311 | return written; |
| 312 | |
| 313 | /* drop the bytes that have already been delivered */ |
| 314 | session_enqueue_discard_chain_bytes (vm, b, &chain_b, rv - len); |
| 315 | } |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 316 | } |
| 317 | else |
| 318 | { |
| 319 | rv = svm_fifo_enqueue_with_offset (s->server_rx_fifo, offset, len, |
| 320 | data); |
| 321 | if (rv) |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 322 | { |
| 323 | clib_warning ("failed to enqueue multi-buffer seg"); |
| 324 | return -1; |
| 325 | } |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 326 | offset += len; |
| 327 | } |
| 328 | } |
| 329 | while ((chain_bi = (chain_b->flags & VLIB_BUFFER_NEXT_PRESENT) |
| 330 | ? chain_b->next_buffer : 0)); |
| 331 | |
| 332 | if (is_in_order) |
| 333 | return written; |
| 334 | |
| 335 | return 0; |
| 336 | } |
| 337 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 338 | /* |
| 339 | * Enqueue data for delivery to session peer. Does not notify peer of enqueue |
| 340 | * event but on request can queue notification events for later delivery by |
| 341 | * calling stream_server_flush_enqueue_events(). |
| 342 | * |
| 343 | * @param tc Transport connection which is to be enqueued data |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 344 | * @param b Buffer to be enqueued |
| 345 | * @param offset Offset at which to start enqueueing if out-of-order |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 346 | * @param queue_event Flag to indicate if peer is to be notified or if event |
| 347 | * is to be queued. The former is useful when more data is |
| 348 | * enqueued and only one event is to be generated. |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 349 | * @param is_in_order Flag to indicate if data is in order |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 350 | * @return Number of bytes enqueued or a negative value if enqueueing failed. |
| 351 | */ |
| 352 | int |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 353 | session_enqueue_stream_connection (transport_connection_t * tc, |
| 354 | vlib_buffer_t * b, u32 offset, |
| 355 | u8 queue_event, u8 is_in_order) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 356 | { |
| 357 | stream_session_t *s; |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 358 | int enqueued = 0, rv, in_order_off; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 359 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 360 | s = session_get (tc->s_index, tc->thread_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 361 | |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 362 | if (is_in_order) |
| 363 | { |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 364 | enqueued = svm_fifo_enqueue_nowait (s->server_rx_fifo, |
| 365 | b->current_length, |
| 366 | vlib_buffer_get_current (b)); |
| 367 | if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) |
| 368 | && enqueued >= 0)) |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 369 | { |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 370 | in_order_off = enqueued > b->current_length ? enqueued : 0; |
| 371 | rv = session_enqueue_chain_tail (s, b, in_order_off, 1); |
| 372 | if (rv > 0) |
| 373 | enqueued += rv; |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 374 | } |
| 375 | } |
| 376 | else |
| 377 | { |
| 378 | rv = svm_fifo_enqueue_with_offset (s->server_rx_fifo, offset, |
| 379 | b->current_length, |
| 380 | vlib_buffer_get_current (b)); |
| 381 | if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && !rv)) |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 382 | session_enqueue_chain_tail (s, b, offset + b->current_length, 0); |
| 383 | /* if something was enqueued, report even this as success for ooo |
| 384 | * segment handling */ |
| 385 | return rv; |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 386 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 387 | |
| 388 | if (queue_event) |
| 389 | { |
| 390 | /* Queue RX event on this fifo. Eventually these will need to be flushed |
| 391 | * by calling stream_server_flush_enqueue_events () */ |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 392 | session_manager_worker_t *wrk; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 393 | |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 394 | wrk = session_manager_get_worker (s->thread_index); |
| 395 | if (s->enqueue_epoch != wrk->current_enqueue_epoch[tc->proto]) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 396 | { |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 397 | s->enqueue_epoch = wrk->current_enqueue_epoch[tc->proto]; |
| 398 | vec_add1 (wrk->session_to_enqueue[tc->proto], s->session_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 399 | } |
| 400 | } |
| 401 | |
Chris Luke | b2bcad6 | 2017-09-18 08:51:22 -0400 | [diff] [blame] | 402 | return enqueued; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 403 | } |
| 404 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 405 | int |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 406 | session_enqueue_dgram_connection (stream_session_t * s, |
| 407 | session_dgram_hdr_t * hdr, |
| 408 | vlib_buffer_t * b, u8 proto, u8 queue_event) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 409 | { |
| 410 | int enqueued = 0, rv, in_order_off; |
| 411 | |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 412 | ASSERT (svm_fifo_max_enqueue (s->server_rx_fifo) |
| 413 | >= b->current_length + sizeof (*hdr)); |
| 414 | |
| 415 | svm_fifo_enqueue_nowait (s->server_rx_fifo, sizeof (session_dgram_hdr_t), |
| 416 | (u8 *) hdr); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 417 | enqueued = svm_fifo_enqueue_nowait (s->server_rx_fifo, b->current_length, |
| 418 | vlib_buffer_get_current (b)); |
| 419 | if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && enqueued >= 0)) |
| 420 | { |
| 421 | in_order_off = enqueued > b->current_length ? enqueued : 0; |
| 422 | rv = session_enqueue_chain_tail (s, b, in_order_off, 1); |
| 423 | if (rv > 0) |
| 424 | enqueued += rv; |
| 425 | } |
| 426 | if (queue_event) |
| 427 | { |
| 428 | /* Queue RX event on this fifo. Eventually these will need to be flushed |
| 429 | * by calling stream_server_flush_enqueue_events () */ |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 430 | session_manager_worker_t *wrk; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 431 | |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 432 | wrk = session_manager_get_worker (s->thread_index); |
| 433 | if (s->enqueue_epoch != wrk->current_enqueue_epoch[proto]) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 434 | { |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 435 | s->enqueue_epoch = wrk->current_enqueue_epoch[proto]; |
| 436 | vec_add1 (wrk->session_to_enqueue[proto], s->session_index); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 437 | } |
| 438 | } |
| 439 | return enqueued; |
| 440 | } |
| 441 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 442 | /** Check if we have space in rx fifo to push more bytes */ |
| 443 | u8 |
| 444 | stream_session_no_space (transport_connection_t * tc, u32 thread_index, |
| 445 | u16 data_len) |
| 446 | { |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 447 | stream_session_t *s = session_get (tc->s_index, thread_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 448 | |
| 449 | if (PREDICT_FALSE (s->session_state != SESSION_STATE_READY)) |
| 450 | return 1; |
| 451 | |
| 452 | if (data_len > svm_fifo_max_enqueue (s->server_rx_fifo)) |
| 453 | return 1; |
| 454 | |
| 455 | return 0; |
| 456 | } |
| 457 | |
| 458 | u32 |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 459 | session_tx_fifo_max_dequeue (transport_connection_t * tc) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 460 | { |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 461 | stream_session_t *s = session_get (tc->s_index, tc->thread_index); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 462 | if (!s->server_tx_fifo) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 463 | return 0; |
| 464 | return svm_fifo_max_dequeue (s->server_tx_fifo); |
| 465 | } |
| 466 | |
| 467 | int |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 468 | stream_session_peek_bytes (transport_connection_t * tc, u8 * buffer, |
| 469 | u32 offset, u32 max_bytes) |
| 470 | { |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 471 | stream_session_t *s = session_get (tc->s_index, tc->thread_index); |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 472 | return svm_fifo_peek (s->server_tx_fifo, offset, max_bytes, buffer); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 473 | } |
| 474 | |
| 475 | u32 |
| 476 | stream_session_dequeue_drop (transport_connection_t * tc, u32 max_bytes) |
| 477 | { |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 478 | stream_session_t *s = session_get (tc->s_index, tc->thread_index); |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 479 | return svm_fifo_dequeue_drop (s->server_tx_fifo, max_bytes); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 480 | } |
| 481 | |
| 482 | /** |
| 483 | * Notify session peer that new data has been enqueued. |
| 484 | * |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 485 | * @param s Stream session for which the event is to be generated. |
| 486 | * @param lock Flag to indicate if call should lock message queue. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 487 | * |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 488 | * @return 0 on success or negative number if failed to send notification. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 489 | */ |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 490 | static inline int |
Florin Coras | 2179513 | 2018-09-09 09:40:51 -0700 | [diff] [blame] | 491 | session_enqueue_notify (stream_session_t * s) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 492 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 493 | app_worker_t *app; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 494 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 495 | app = app_worker_get_if_valid (s->app_wrk_index); |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 496 | if (PREDICT_FALSE (!app)) |
Dave Barach | 818eb54 | 2017-08-02 13:56:13 -0400 | [diff] [blame] | 497 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 498 | SESSION_DBG ("invalid s->app_index = %d", s->app_wrk_index); |
Dave Barach | 818eb54 | 2017-08-02 13:56:13 -0400 | [diff] [blame] | 499 | return 0; |
| 500 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 501 | |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 502 | /* *INDENT-OFF* */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 503 | SESSION_EVT_DBG(SESSION_EVT_ENQ, s, ({ |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 504 | ed->data[0] = FIFO_EVENT_APP_RX; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 505 | ed->data[1] = svm_fifo_max_dequeue (s->server_rx_fifo); |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 506 | })); |
| 507 | /* *INDENT-ON* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 508 | |
Florin Coras | 2179513 | 2018-09-09 09:40:51 -0700 | [diff] [blame] | 509 | return app_worker_lock_and_send_event (app, s, FIFO_EVENT_APP_RX); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 510 | } |
| 511 | |
Florin Coras | 0d60a0f | 2018-06-29 02:02:08 -0700 | [diff] [blame] | 512 | int |
| 513 | session_dequeue_notify (stream_session_t * s) |
| 514 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 515 | app_worker_t *app; |
Florin Coras | 0d60a0f | 2018-06-29 02:02:08 -0700 | [diff] [blame] | 516 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 517 | app = app_worker_get_if_valid (s->app_wrk_index); |
Florin Coras | 208daa1 | 2018-07-02 01:30:51 -0700 | [diff] [blame] | 518 | if (PREDICT_FALSE (!app)) |
| 519 | return -1; |
| 520 | |
Florin Coras | 2179513 | 2018-09-09 09:40:51 -0700 | [diff] [blame] | 521 | return app_worker_lock_and_send_event (app, s, FIFO_EVENT_APP_TX); |
Florin Coras | 0d60a0f | 2018-06-29 02:02:08 -0700 | [diff] [blame] | 522 | } |
| 523 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 524 | /** |
| 525 | * Flushes queue of sessions that are to be notified of new data |
| 526 | * enqueued events. |
| 527 | * |
| 528 | * @param thread_index Thread index for which the flush is to be performed. |
| 529 | * @return 0 on success or a positive number indicating the number of |
| 530 | * failures due to API queue being full. |
| 531 | */ |
| 532 | int |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 533 | session_manager_flush_enqueue_events (u8 transport_proto, u32 thread_index) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 534 | { |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 535 | session_manager_worker_t *wrk = session_manager_get_worker (thread_index); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 536 | stream_session_t *s; |
Florin Coras | 2179513 | 2018-09-09 09:40:51 -0700 | [diff] [blame] | 537 | int i, errors = 0; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 538 | u32 *indices; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 539 | |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 540 | indices = wrk->session_to_enqueue[transport_proto]; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 541 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 542 | for (i = 0; i < vec_len (indices); i++) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 543 | { |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 544 | s = session_get_if_valid (indices[i], thread_index); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 545 | if (PREDICT_FALSE (!s)) |
| 546 | { |
| 547 | errors++; |
| 548 | continue; |
| 549 | } |
Florin Coras | 2179513 | 2018-09-09 09:40:51 -0700 | [diff] [blame] | 550 | if (PREDICT_FALSE (session_enqueue_notify (s))) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 551 | errors++; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 552 | } |
| 553 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 554 | vec_reset_length (indices); |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 555 | wrk->session_to_enqueue[transport_proto] = indices; |
| 556 | wrk->current_enqueue_epoch[transport_proto]++; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 557 | |
| 558 | return errors; |
| 559 | } |
| 560 | |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 561 | int |
| 562 | session_manager_flush_all_enqueue_events (u8 transport_proto) |
| 563 | { |
| 564 | vlib_thread_main_t *vtm = vlib_get_thread_main (); |
| 565 | int i, errors = 0; |
| 566 | for (i = 0; i < 1 + vtm->n_threads; i++) |
| 567 | errors += session_manager_flush_enqueue_events (transport_proto, i); |
| 568 | return errors; |
| 569 | } |
| 570 | |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 571 | /** |
| 572 | * Init fifo tail and head pointers |
| 573 | * |
| 574 | * Useful if transport uses absolute offsets for tracking ooo segments. |
| 575 | */ |
| 576 | void |
| 577 | stream_session_init_fifos_pointers (transport_connection_t * tc, |
| 578 | u32 rx_pointer, u32 tx_pointer) |
| 579 | { |
| 580 | stream_session_t *s; |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 581 | s = session_get (tc->s_index, tc->thread_index); |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 582 | svm_fifo_init_pointers (s->server_rx_fifo, rx_pointer); |
| 583 | svm_fifo_init_pointers (s->server_tx_fifo, tx_pointer); |
| 584 | } |
| 585 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 586 | int |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 587 | session_stream_connect_notify (transport_connection_t * tc, u8 is_fail) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 588 | { |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 589 | u32 opaque = 0, new_ti, new_si; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 590 | stream_session_t *new_s = 0; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 591 | segment_manager_t *sm; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 592 | app_worker_t *app_wrk; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 593 | application_t *app; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 594 | u8 alloc_fifos; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 595 | int error = 0; |
| 596 | u64 handle; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 597 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 598 | /* |
| 599 | * Find connection handle and cleanup half-open table |
| 600 | */ |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 601 | handle = session_lookup_half_open_handle (tc); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 602 | if (handle == HALF_OPEN_LOOKUP_INVALID_VALUE) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 603 | { |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 604 | SESSION_DBG ("half-open was removed!"); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 605 | return -1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 606 | } |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 607 | session_lookup_del_half_open (tc); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 608 | |
Florin Coras | ab0289a | 2017-08-14 11:25:25 -0700 | [diff] [blame] | 609 | /* Get the app's index from the handle we stored when opening connection |
| 610 | * and the opaque (api_context for external apps) from transport session |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 611 | * index */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 612 | app_wrk = app_worker_get_if_valid (handle >> 32); |
| 613 | if (!app_wrk) |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 614 | return -1; |
Florin Coras | ab0289a | 2017-08-14 11:25:25 -0700 | [diff] [blame] | 615 | opaque = tc->s_index; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 616 | app = application_get (app_wrk->app_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 617 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 618 | /* |
| 619 | * Allocate new session with fifos (svm segments are allocated if needed) |
| 620 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 621 | if (!is_fail) |
| 622 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 623 | sm = app_worker_get_connect_segment_manager (app_wrk); |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 624 | alloc_fifos = !application_is_builtin_proxy (app); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 625 | if (session_alloc_and_init (sm, tc, alloc_fifos, &new_s)) |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 626 | { |
| 627 | is_fail = 1; |
| 628 | error = -1; |
| 629 | } |
| 630 | else |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 631 | { |
Florin Coras | a9d5bea | 2018-12-17 08:24:19 -0800 | [diff] [blame] | 632 | new_s->session_state = SESSION_STATE_CONNECTING; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 633 | new_s->app_wrk_index = app_wrk->wrk_index; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 634 | new_si = new_s->session_index; |
| 635 | new_ti = new_s->thread_index; |
| 636 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 637 | } |
| 638 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 639 | /* |
| 640 | * Notify client application |
| 641 | */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 642 | if (app->cb_fns.session_connected_callback (app_wrk->wrk_index, opaque, |
| 643 | new_s, is_fail)) |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 644 | { |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 645 | SESSION_DBG ("failed to notify app"); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 646 | if (!is_fail) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 647 | { |
| 648 | new_s = session_get (new_si, new_ti); |
| 649 | stream_session_disconnect_transport (new_s); |
| 650 | } |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 651 | } |
| 652 | else |
| 653 | { |
| 654 | if (!is_fail) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 655 | { |
| 656 | new_s = session_get (new_si, new_ti); |
| 657 | new_s->session_state = SESSION_STATE_READY; |
| 658 | } |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 659 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 660 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 661 | return error; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 662 | } |
| 663 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 664 | typedef struct _session_switch_pool_args |
| 665 | { |
| 666 | u32 session_index; |
| 667 | u32 thread_index; |
| 668 | u32 new_thread_index; |
| 669 | u32 new_session_index; |
| 670 | } session_switch_pool_args_t; |
| 671 | |
| 672 | static void |
| 673 | session_switch_pool (void *cb_args) |
| 674 | { |
| 675 | session_switch_pool_args_t *args = (session_switch_pool_args_t *) cb_args; |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 676 | transport_proto_t tp; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 677 | stream_session_t *s; |
| 678 | ASSERT (args->thread_index == vlib_get_thread_index ()); |
| 679 | s = session_get (args->session_index, args->thread_index); |
| 680 | s->server_tx_fifo->master_session_index = args->new_session_index; |
| 681 | s->server_tx_fifo->master_thread_index = args->new_thread_index; |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 682 | tp = session_get_transport_proto (s); |
| 683 | tp_vfts[tp].cleanup (s->connection_index, s->thread_index); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 684 | session_free (s); |
| 685 | clib_mem_free (cb_args); |
| 686 | } |
| 687 | |
| 688 | /** |
| 689 | * Move dgram session to the right thread |
| 690 | */ |
| 691 | int |
| 692 | session_dgram_connect_notify (transport_connection_t * tc, |
| 693 | u32 old_thread_index, |
| 694 | stream_session_t ** new_session) |
| 695 | { |
| 696 | stream_session_t *new_s; |
| 697 | session_switch_pool_args_t *rpc_args; |
| 698 | |
| 699 | /* |
| 700 | * Clone half-open session to the right thread. |
| 701 | */ |
| 702 | new_s = session_clone_safe (tc->s_index, old_thread_index); |
| 703 | new_s->connection_index = tc->c_index; |
| 704 | new_s->server_rx_fifo->master_session_index = new_s->session_index; |
| 705 | new_s->server_rx_fifo->master_thread_index = new_s->thread_index; |
| 706 | new_s->session_state = SESSION_STATE_READY; |
| 707 | session_lookup_add_connection (tc, session_handle (new_s)); |
| 708 | |
| 709 | /* |
| 710 | * Ask thread owning the old session to clean it up and make us the tx |
| 711 | * fifo owner |
| 712 | */ |
| 713 | rpc_args = clib_mem_alloc (sizeof (*rpc_args)); |
| 714 | rpc_args->new_session_index = new_s->session_index; |
| 715 | rpc_args->new_thread_index = new_s->thread_index; |
| 716 | rpc_args->session_index = tc->s_index; |
| 717 | rpc_args->thread_index = old_thread_index; |
| 718 | session_send_rpc_evt_to_thread (rpc_args->thread_index, session_switch_pool, |
| 719 | rpc_args); |
| 720 | |
| 721 | tc->s_index = new_s->session_index; |
| 722 | new_s->connection_index = tc->c_index; |
| 723 | *new_session = new_s; |
| 724 | return 0; |
| 725 | } |
| 726 | |
Florin Coras | a9d5bea | 2018-12-17 08:24:19 -0800 | [diff] [blame] | 727 | int |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 728 | stream_session_accept_notify (transport_connection_t * tc) |
| 729 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 730 | app_worker_t *app_wrk; |
| 731 | application_t *app; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 732 | stream_session_t *s; |
| 733 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 734 | s = session_get (tc->s_index, tc->thread_index); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 735 | app_wrk = app_worker_get_if_valid (s->app_wrk_index); |
| 736 | if (!app_wrk) |
Florin Coras | a9d5bea | 2018-12-17 08:24:19 -0800 | [diff] [blame] | 737 | return -1; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 738 | app = application_get (app_wrk->app_index); |
Florin Coras | a9d5bea | 2018-12-17 08:24:19 -0800 | [diff] [blame] | 739 | return app->cb_fns.session_accept_callback (s); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 740 | } |
| 741 | |
| 742 | /** |
| 743 | * Notification from transport that connection is being closed. |
| 744 | * |
| 745 | * A disconnect is sent to application but state is not removed. Once |
| 746 | * disconnect is acknowledged by application, session disconnect is called. |
| 747 | * Ultimately this leads to close being called on transport (passive close). |
| 748 | */ |
| 749 | void |
| 750 | stream_session_disconnect_notify (transport_connection_t * tc) |
| 751 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 752 | app_worker_t *app_wrk; |
| 753 | application_t *app; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 754 | stream_session_t *s; |
| 755 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 756 | s = session_get (tc->s_index, tc->thread_index); |
Florin Coras | 400ded3 | 2018-10-03 01:00:57 -0700 | [diff] [blame] | 757 | if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING) |
| 758 | return; |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 759 | s->session_state = SESSION_STATE_TRANSPORT_CLOSING; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 760 | app_wrk = app_worker_get_if_valid (s->app_wrk_index); |
| 761 | if (!app_wrk) |
| 762 | return; |
| 763 | app = application_get (app_wrk->app_index); |
| 764 | app->cb_fns.session_disconnect_callback (s); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 765 | } |
| 766 | |
| 767 | /** |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 768 | * Cleans up session and lookup table. |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 769 | * |
| 770 | * Transport connection must still be valid. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 771 | */ |
| 772 | void |
| 773 | stream_session_delete (stream_session_t * s) |
| 774 | { |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 775 | int rv; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 776 | |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 777 | /* Delete from the main lookup table. */ |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 778 | if ((rv = session_lookup_del_session (s))) |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 779 | clib_warning ("hash delete error, rv %d", rv); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 780 | |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 781 | session_free_w_fifos (s); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 782 | } |
| 783 | |
| 784 | /** |
| 785 | * Notification from transport that connection is being deleted |
| 786 | * |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 787 | * This removes the session if it is still valid. It should be called only on |
| 788 | * previously fully established sessions. For instance failed connects should |
| 789 | * call stream_session_connect_notify and indicate that the connect has |
| 790 | * failed. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 791 | */ |
| 792 | void |
| 793 | stream_session_delete_notify (transport_connection_t * tc) |
| 794 | { |
| 795 | stream_session_t *s; |
| 796 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 797 | /* App might've been removed already */ |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 798 | if (!(s = session_get_if_valid (tc->s_index, tc->thread_index))) |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 799 | return; |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 800 | |
| 801 | /* Make sure we don't try to send anything more */ |
| 802 | svm_fifo_dequeue_drop_all (s->server_tx_fifo); |
| 803 | |
| 804 | switch (s->session_state) |
| 805 | { |
| 806 | case SESSION_STATE_TRANSPORT_CLOSING: |
| 807 | /* If transport finishes or times out before we get a reply |
| 808 | * from the app, do the whole disconnect since we might still |
Florin Coras | a9d5bea | 2018-12-17 08:24:19 -0800 | [diff] [blame] | 809 | * have lingering events. Cleanup session table in advance |
| 810 | * because transport will soon be closed and closed sessions |
| 811 | * are assumed to have been removed from the lookup table */ |
| 812 | session_lookup_del_session (s); |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 813 | stream_session_disconnect (s); |
Florin Coras | c01d578 | 2018-10-17 14:53:11 -0700 | [diff] [blame] | 814 | s->session_state = SESSION_STATE_CLOSED; |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 815 | break; |
| 816 | case SESSION_STATE_CLOSING: |
| 817 | /* Cleanup lookup table. Transport needs to still be valid */ |
| 818 | session_lookup_del_session (s); |
Florin Coras | c01d578 | 2018-10-17 14:53:11 -0700 | [diff] [blame] | 819 | s->session_state = SESSION_STATE_CLOSED; |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 820 | break; |
| 821 | case SESSION_STATE_CLOSED: |
Florin Coras | c5347d9 | 2018-10-17 10:41:28 -0700 | [diff] [blame] | 822 | case SESSION_STATE_ACCEPTING: |
Florin Coras | 78cc4b0 | 2018-12-20 18:24:49 -0800 | [diff] [blame] | 823 | case SESSION_STATE_CLOSED_WAITING: |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 824 | stream_session_delete (s); |
| 825 | break; |
Florin Coras | c01d578 | 2018-10-17 14:53:11 -0700 | [diff] [blame] | 826 | default: |
Florin Coras | e2ea193 | 2018-12-17 23:08:14 -0800 | [diff] [blame] | 827 | stream_session_delete (s); |
Florin Coras | c01d578 | 2018-10-17 14:53:11 -0700 | [diff] [blame] | 828 | break; |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 829 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 830 | } |
| 831 | |
| 832 | /** |
Florin Coras | 54ddf43 | 2018-12-21 13:54:09 -0800 | [diff] [blame] | 833 | * Notification from transport that session can be closed |
| 834 | * |
| 835 | * Should be called by transport only if it was closed with non-empty |
| 836 | * tx fifo and once it decides to begin the closing procedure prior to |
| 837 | * issuing a delete notify. This gives the chance to the session layer |
| 838 | * to cleanup any outstanding events. |
| 839 | */ |
| 840 | void |
| 841 | session_stream_close_notify (transport_connection_t * tc) |
| 842 | { |
| 843 | stream_session_t *s; |
| 844 | |
| 845 | if (!(s = session_get_if_valid (tc->s_index, tc->thread_index))) |
| 846 | return; |
| 847 | s->session_state = SESSION_STATE_CLOSED; |
| 848 | } |
| 849 | |
| 850 | /** |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 851 | * Notify application that connection has been reset. |
| 852 | */ |
| 853 | void |
| 854 | stream_session_reset_notify (transport_connection_t * tc) |
| 855 | { |
| 856 | stream_session_t *s; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 857 | app_worker_t *app_wrk; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 858 | application_t *app; |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 859 | s = session_get (tc->s_index, tc->thread_index); |
Florin Coras | 4af830c | 2018-12-04 09:21:36 -0800 | [diff] [blame] | 860 | svm_fifo_dequeue_drop_all (s->server_tx_fifo); |
Florin Coras | 3c7d4f9 | 2018-12-14 11:28:43 -0800 | [diff] [blame] | 861 | if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING) |
| 862 | return; |
| 863 | s->session_state = SESSION_STATE_TRANSPORT_CLOSING; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 864 | app_wrk = app_worker_get (s->app_wrk_index); |
| 865 | app = application_get (app_wrk->app_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 866 | app->cb_fns.session_reset_callback (s); |
| 867 | } |
| 868 | |
| 869 | /** |
| 870 | * Accept a stream session. Optionally ping the server by callback. |
| 871 | */ |
| 872 | int |
| 873 | stream_session_accept (transport_connection_t * tc, u32 listener_index, |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 874 | u8 notify) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 875 | { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 876 | stream_session_t *s, *listener; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 877 | app_worker_t *app_wrk; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 878 | segment_manager_t *sm; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 879 | int rv; |
| 880 | |
| 881 | /* Find the server */ |
Florin Coras | 5c9083d | 2018-04-13 06:39:07 -0700 | [diff] [blame] | 882 | listener = listen_session_get (listener_index); |
Florin Coras | 2179513 | 2018-09-09 09:40:51 -0700 | [diff] [blame] | 883 | app_wrk = application_listener_select_worker (listener, 0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 884 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 885 | sm = app_worker_get_listen_segment_manager (app_wrk, listener); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 886 | if ((rv = session_alloc_and_init (sm, tc, 1, &s))) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 887 | return rv; |
| 888 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 889 | s->app_wrk_index = app_wrk->wrk_index; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 890 | s->listener_index = listener_index; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 891 | s->session_state = SESSION_STATE_ACCEPTING; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 892 | |
| 893 | /* Shoulder-tap the server */ |
| 894 | if (notify) |
| 895 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 896 | application_t *app = application_get (app_wrk->app_index); |
Florin Coras | a9d5bea | 2018-12-17 08:24:19 -0800 | [diff] [blame] | 897 | return app->cb_fns.session_accept_callback (s); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 898 | } |
| 899 | |
| 900 | return 0; |
| 901 | } |
| 902 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 903 | int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 904 | session_open_cl (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 905 | { |
| 906 | transport_connection_t *tc; |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 907 | transport_endpoint_cfg_t *tep; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 908 | segment_manager_t *sm; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 909 | app_worker_t *app_wrk; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 910 | stream_session_t *s; |
| 911 | application_t *app; |
| 912 | int rv; |
| 913 | |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 914 | tep = session_endpoint_to_transport_cfg (rmt); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 915 | rv = tp_vfts[rmt->transport_proto].open (tep); |
| 916 | if (rv < 0) |
| 917 | { |
| 918 | SESSION_DBG ("Transport failed to open connection."); |
| 919 | return VNET_API_ERROR_SESSION_CONNECT; |
| 920 | } |
| 921 | |
| 922 | tc = tp_vfts[rmt->transport_proto].get_half_open ((u32) rv); |
| 923 | |
| 924 | /* For dgram type of service, allocate session and fifos now. |
| 925 | */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 926 | app_wrk = app_worker_get (app_wrk_index); |
| 927 | sm = app_worker_get_connect_segment_manager (app_wrk); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 928 | |
| 929 | if (session_alloc_and_init (sm, tc, 1, &s)) |
| 930 | return -1; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 931 | s->app_wrk_index = app_wrk->wrk_index; |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 932 | s->session_state = SESSION_STATE_OPENED; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 933 | |
| 934 | /* Tell the app about the new event fifo for this session */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 935 | app = application_get (app_wrk->app_index); |
| 936 | app->cb_fns.session_connected_callback (app_wrk->wrk_index, opaque, s, 0); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 937 | |
| 938 | return 0; |
| 939 | } |
| 940 | |
| 941 | int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 942 | session_open_vc (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 943 | { |
| 944 | transport_connection_t *tc; |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 945 | transport_endpoint_cfg_t *tep; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 946 | u64 handle; |
| 947 | int rv; |
| 948 | |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 949 | tep = session_endpoint_to_transport_cfg (rmt); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 950 | rv = tp_vfts[rmt->transport_proto].open (tep); |
| 951 | if (rv < 0) |
| 952 | { |
| 953 | SESSION_DBG ("Transport failed to open connection."); |
| 954 | return VNET_API_ERROR_SESSION_CONNECT; |
| 955 | } |
| 956 | |
| 957 | tc = tp_vfts[rmt->transport_proto].get_half_open ((u32) rv); |
| 958 | |
| 959 | /* If transport offers a stream service, only allocate session once the |
| 960 | * connection has been established. |
| 961 | * Add connection to half-open table and save app and tc index. The |
| 962 | * latter is needed to help establish the connection while the former |
| 963 | * is needed when the connect notify comes and we have to notify the |
| 964 | * external app |
| 965 | */ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 966 | handle = (((u64) app_wrk_index) << 32) | (u64) tc->c_index; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 967 | session_lookup_add_half_open (tc, handle); |
| 968 | |
| 969 | /* Store api_context (opaque) for when the reply comes. Not the nicest |
| 970 | * thing but better than allocating a separate half-open pool. |
| 971 | */ |
| 972 | tc->s_index = opaque; |
| 973 | return 0; |
| 974 | } |
| 975 | |
| 976 | int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 977 | session_open_app (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 978 | { |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 979 | session_endpoint_cfg_t *sep = (session_endpoint_cfg_t *) rmt; |
| 980 | transport_endpoint_cfg_t *tep_cfg = session_endpoint_to_transport_cfg (sep); |
| 981 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 982 | sep->app_wrk_index = app_wrk_index; |
Florin Coras | 8f89dd0 | 2018-03-05 16:53:07 -0800 | [diff] [blame] | 983 | sep->opaque = opaque; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 984 | |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 985 | return tp_vfts[rmt->transport_proto].open (tep_cfg); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 986 | } |
| 987 | |
| 988 | typedef int (*session_open_service_fn) (u32, session_endpoint_t *, u32); |
| 989 | |
| 990 | /* *INDENT-OFF* */ |
| 991 | static session_open_service_fn session_open_srv_fns[TRANSPORT_N_SERVICES] = { |
| 992 | session_open_vc, |
| 993 | session_open_cl, |
| 994 | session_open_app, |
| 995 | }; |
| 996 | /* *INDENT-ON* */ |
| 997 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 998 | /** |
| 999 | * Ask transport to open connection to remote transport endpoint. |
| 1000 | * |
| 1001 | * Stores handle for matching request with reply since the call can be |
| 1002 | * asynchronous. For instance, for TCP the 3-way handshake must complete |
| 1003 | * before reply comes. Session is only created once connection is established. |
| 1004 | * |
| 1005 | * @param app_index Index of the application requesting the connect |
| 1006 | * @param st Session type requested. |
| 1007 | * @param tep Remote transport endpoint |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1008 | * @param opaque Opaque data (typically, api_context) the application expects |
| 1009 | * on open completion. |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1010 | */ |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1011 | int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1012 | session_open (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1013 | { |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1014 | transport_service_type_t tst = tp_vfts[rmt->transport_proto].service_type; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1015 | return session_open_srv_fns[tst] (app_wrk_index, rmt, opaque); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1016 | } |
| 1017 | |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 1018 | /** |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1019 | * Ask transport to listen on session endpoint. |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 1020 | * |
| 1021 | * @param s Session for which listen will be called. Note that unlike |
| 1022 | * established sessions, listen sessions are not associated to a |
| 1023 | * thread. |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1024 | * @param sep Local endpoint to be listened on. |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 1025 | */ |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1026 | int |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 1027 | session_listen (stream_session_t * ls, session_endpoint_cfg_t * sep) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1028 | { |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1029 | transport_connection_t *tc; |
| 1030 | transport_endpoint_t *tep; |
Florin Coras | 74cac88 | 2018-09-07 09:13:15 -0700 | [diff] [blame] | 1031 | u32 tc_index, s_index; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1032 | |
| 1033 | /* Transport bind/listen */ |
| 1034 | tep = session_endpoint_to_transport (sep); |
Florin Coras | 74cac88 | 2018-09-07 09:13:15 -0700 | [diff] [blame] | 1035 | s_index = ls->session_index; |
| 1036 | tc_index = tp_vfts[sep->transport_proto].bind (s_index, tep); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1037 | |
| 1038 | if (tc_index == (u32) ~ 0) |
| 1039 | return -1; |
| 1040 | |
| 1041 | /* Attach transport to session */ |
Florin Coras | 74cac88 | 2018-09-07 09:13:15 -0700 | [diff] [blame] | 1042 | ls = listen_session_get (s_index); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1043 | ls->connection_index = tc_index; |
| 1044 | |
| 1045 | /* Add to the main lookup table after transport was initialized */ |
| 1046 | tc = tp_vfts[sep->transport_proto].get_listener (tc_index); |
Florin Coras | 74cac88 | 2018-09-07 09:13:15 -0700 | [diff] [blame] | 1047 | session_lookup_add_connection (tc, s_index); |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1048 | return 0; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1049 | } |
| 1050 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1051 | /** |
| 1052 | * Ask transport to stop listening on local transport endpoint. |
| 1053 | * |
| 1054 | * @param s Session to stop listening on. It must be in state LISTENING. |
| 1055 | */ |
| 1056 | int |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 1057 | session_stop_listen (stream_session_t * s) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1058 | { |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1059 | transport_proto_t tp = session_get_transport_proto (s); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1060 | transport_connection_t *tc; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1061 | if (s->session_state != SESSION_STATE_LISTENING) |
| 1062 | { |
| 1063 | clib_warning ("not a listening session"); |
| 1064 | return -1; |
| 1065 | } |
| 1066 | |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1067 | tc = tp_vfts[tp].get_listener (s->connection_index); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1068 | if (!tc) |
| 1069 | { |
| 1070 | clib_warning ("no transport"); |
| 1071 | return VNET_API_ERROR_ADDRESS_NOT_IN_USE; |
| 1072 | } |
| 1073 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1074 | session_lookup_del_connection (tc); |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1075 | tp_vfts[tp].unbind (s->connection_index); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1076 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1077 | } |
| 1078 | |
| 1079 | /** |
Florin Coras | 2f8d8fa | 2018-01-26 06:36:04 -0800 | [diff] [blame] | 1080 | * Initialize session disconnect. |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1081 | * |
Florin Coras | 2f8d8fa | 2018-01-26 06:36:04 -0800 | [diff] [blame] | 1082 | * Request is always sent to session node to ensure that all outstanding |
| 1083 | * requests are served before transport is notified. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1084 | */ |
| 1085 | void |
| 1086 | stream_session_disconnect (stream_session_t * s) |
| 1087 | { |
Florin Coras | b2371c2 | 2018-05-31 17:14:10 -0700 | [diff] [blame] | 1088 | u32 thread_index = vlib_get_thread_index (); |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 1089 | session_manager_worker_t *wrk; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 1090 | session_event_t *evt; |
Florin Coras | b2371c2 | 2018-05-31 17:14:10 -0700 | [diff] [blame] | 1091 | |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 1092 | if (!s) |
Florin Coras | 2f8d8fa | 2018-01-26 06:36:04 -0800 | [diff] [blame] | 1093 | return; |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 1094 | |
| 1095 | if (s->session_state >= SESSION_STATE_CLOSING) |
| 1096 | { |
| 1097 | /* Session already closed. Clear the tx fifo */ |
| 1098 | if (s->session_state == SESSION_STATE_CLOSED) |
| 1099 | svm_fifo_dequeue_drop_all (s->server_tx_fifo); |
| 1100 | return; |
| 1101 | } |
| 1102 | |
Florin Coras | b2371c2 | 2018-05-31 17:14:10 -0700 | [diff] [blame] | 1103 | s->session_state = SESSION_STATE_CLOSING; |
| 1104 | |
| 1105 | /* If we are in the handler thread, or being called with the worker barrier |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 1106 | * held, just append a new event to pending disconnects vector. */ |
| 1107 | if (vlib_thread_is_main_w_barrier () || thread_index == s->thread_index) |
Florin Coras | b2371c2 | 2018-05-31 17:14:10 -0700 | [diff] [blame] | 1108 | { |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1109 | wrk = session_manager_get_worker (s->thread_index); |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 1110 | vec_add2 (wrk->pending_disconnects, evt, 1); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 1111 | clib_memset (evt, 0, sizeof (*evt)); |
Florin Coras | b2371c2 | 2018-05-31 17:14:10 -0700 | [diff] [blame] | 1112 | evt->session_handle = session_handle (s); |
| 1113 | evt->event_type = FIFO_EVENT_DISCONNECT; |
| 1114 | } |
| 1115 | else |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1116 | session_send_ctrl_evt_to_thread (s, FIFO_EVENT_DISCONNECT); |
Florin Coras | 2f8d8fa | 2018-01-26 06:36:04 -0800 | [diff] [blame] | 1117 | } |
| 1118 | |
| 1119 | /** |
| 1120 | * Notify transport the session can be disconnected. This should eventually |
| 1121 | * result in a delete notification that allows us to cleanup session state. |
| 1122 | * Called for both active/passive disconnects. |
| 1123 | * |
| 1124 | * Must be called from the session's thread. |
| 1125 | */ |
| 1126 | void |
| 1127 | stream_session_disconnect_transport (stream_session_t * s) |
| 1128 | { |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 1129 | /* If transport is already closed, just free the session */ |
| 1130 | if (s->session_state == SESSION_STATE_CLOSED) |
| 1131 | { |
| 1132 | session_free_w_fifos (s); |
| 1133 | return; |
| 1134 | } |
Florin Coras | 78cc4b0 | 2018-12-20 18:24:49 -0800 | [diff] [blame] | 1135 | |
| 1136 | /* If tx queue wasn't drained, change state to closed waiting for transport. |
| 1137 | * This way, the transport, if it so wishes, can continue to try sending the |
| 1138 | * outstanding data (in closed state it cannot). It MUST however at one |
| 1139 | * point, either after sending everything or after a timeout, call delete |
| 1140 | * notify. This will finally lead to the complete cleanup of the session. |
| 1141 | */ |
| 1142 | if (svm_fifo_max_dequeue (s->server_tx_fifo)) |
| 1143 | s->session_state = SESSION_STATE_CLOSED_WAITING; |
| 1144 | else |
| 1145 | s->session_state = SESSION_STATE_CLOSED; |
| 1146 | |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1147 | tp_vfts[session_get_transport_proto (s)].close (s->connection_index, |
| 1148 | s->thread_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1149 | } |
| 1150 | |
| 1151 | /** |
| 1152 | * Cleanup transport and session state. |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 1153 | * |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 1154 | * Notify transport of the cleanup and free the session. This should |
| 1155 | * be called only if transport reported some error and is already |
| 1156 | * closed. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1157 | */ |
| 1158 | void |
| 1159 | stream_session_cleanup (stream_session_t * s) |
| 1160 | { |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 1161 | s->session_state = SESSION_STATE_CLOSED; |
| 1162 | |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 1163 | /* Delete from main lookup table before we axe the the transport */ |
| 1164 | session_lookup_del_session (s); |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1165 | tp_vfts[session_get_transport_proto (s)].cleanup (s->connection_index, |
| 1166 | s->thread_index); |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 1167 | /* Since we called cleanup, no delete notification will come. So, make |
| 1168 | * sure the session is properly freed. */ |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 1169 | session_free_w_fifos (s); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1170 | } |
| 1171 | |
Florin Coras | f08f26d | 2018-05-10 13:20:47 -0700 | [diff] [blame] | 1172 | transport_service_type_t |
| 1173 | session_transport_service_type (stream_session_t * s) |
| 1174 | { |
| 1175 | transport_proto_t tp; |
| 1176 | tp = session_get_transport_proto (s); |
| 1177 | return transport_protocol_service_type (tp); |
| 1178 | } |
| 1179 | |
| 1180 | transport_tx_fn_type_t |
| 1181 | session_transport_tx_fn_type (stream_session_t * s) |
| 1182 | { |
| 1183 | transport_proto_t tp; |
| 1184 | tp = session_get_transport_proto (s); |
| 1185 | return transport_protocol_tx_fn_type (tp); |
| 1186 | } |
| 1187 | |
| 1188 | u8 |
| 1189 | session_tx_is_dgram (stream_session_t * s) |
| 1190 | { |
| 1191 | return (session_transport_tx_fn_type (s) == TRANSPORT_TX_DGRAM); |
| 1192 | } |
| 1193 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1194 | /** |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1195 | * Allocate event queues in the shared-memory segment |
| 1196 | * |
| 1197 | * That can either be a newly created memfd segment, that will need to be |
| 1198 | * mapped by all stack users, or the binary api's svm region. The latter is |
| 1199 | * assumed to be already mapped. NOTE that this assumption DOES NOT hold if |
| 1200 | * api clients bootstrap shm api over sockets (i.e. use memfd segments) and |
| 1201 | * vpp uses api svm region for event queues. |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1202 | */ |
| 1203 | void |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1204 | session_vpp_event_queues_allocate (session_manager_main_t * smm) |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1205 | { |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 1206 | u32 evt_q_length = 2048, evt_size = sizeof (session_event_t); |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1207 | ssvm_private_t *eqs = &smm->evt_qs_segment; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1208 | api_main_t *am = &api_main; |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1209 | u64 eqs_size = 64 << 20; |
| 1210 | pid_t vpp_pid = getpid (); |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1211 | void *oldheap; |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1212 | int i; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1213 | |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1214 | if (smm->configured_event_queue_length) |
| 1215 | evt_q_length = smm->configured_event_queue_length; |
| 1216 | |
| 1217 | if (smm->evt_qs_use_memfd_seg) |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1218 | { |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1219 | if (smm->evt_qs_segment_size) |
| 1220 | eqs_size = smm->evt_qs_segment_size; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1221 | |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1222 | eqs->ssvm_size = eqs_size; |
| 1223 | eqs->i_am_master = 1; |
| 1224 | eqs->my_pid = vpp_pid; |
| 1225 | eqs->name = format (0, "%s%c", "evt-qs-segment", 0); |
| 1226 | eqs->requested_va = smm->session_baseva; |
Dave Barach | 10d8cc6 | 2017-05-30 09:30:07 -0400 | [diff] [blame] | 1227 | |
Florin Coras | 95e0ce0 | 2018-07-05 23:44:23 -0700 | [diff] [blame] | 1228 | if (ssvm_master_init (eqs, SSVM_SEGMENT_MEMFD)) |
| 1229 | { |
| 1230 | clib_warning ("failed to initialize queue segment"); |
| 1231 | return; |
| 1232 | } |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1233 | } |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1234 | |
| 1235 | if (smm->evt_qs_use_memfd_seg) |
| 1236 | oldheap = ssvm_push_heap (eqs->sh); |
| 1237 | else |
| 1238 | oldheap = svm_push_data_heap (am->vlib_rp); |
| 1239 | |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 1240 | for (i = 0; i < vec_len (smm->wrk); i++) |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1241 | { |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1242 | svm_msg_q_cfg_t _cfg, *cfg = &_cfg; |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1243 | svm_msg_q_ring_cfg_t rc[SESSION_MQ_N_RINGS] = { |
| 1244 | {evt_q_length, evt_size, 0} |
| 1245 | , |
Florin Coras | 3c7d4f9 | 2018-12-14 11:28:43 -0800 | [diff] [blame] | 1246 | {evt_q_length << 1, 256, 0} |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 1247 | }; |
| 1248 | cfg->consumer_pid = 0; |
| 1249 | cfg->n_rings = 2; |
| 1250 | cfg->q_nitems = evt_q_length; |
| 1251 | cfg->ring_cfgs = rc; |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 1252 | smm->wrk[i].vpp_event_queue = svm_msg_q_alloc (cfg); |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 1253 | if (smm->evt_qs_use_memfd_seg) |
| 1254 | { |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 1255 | if (svm_msg_q_alloc_consumer_eventfd (smm->wrk[i].vpp_event_queue)) |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 1256 | clib_warning ("eventfd returned"); |
| 1257 | } |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1258 | } |
| 1259 | |
| 1260 | if (smm->evt_qs_use_memfd_seg) |
| 1261 | ssvm_pop_heap (oldheap); |
| 1262 | else |
| 1263 | svm_pop_heap (oldheap); |
| 1264 | } |
| 1265 | |
| 1266 | ssvm_private_t * |
| 1267 | session_manager_get_evt_q_segment (void) |
| 1268 | { |
| 1269 | session_manager_main_t *smm = &session_manager_main; |
| 1270 | if (smm->evt_qs_use_memfd_seg) |
| 1271 | return &smm->evt_qs_segment; |
| 1272 | return 0; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1273 | } |
| 1274 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1275 | /* *INDENT-OFF* */ |
| 1276 | static session_fifo_rx_fn *session_tx_fns[TRANSPORT_TX_N_FNS] = { |
| 1277 | session_tx_fifo_peek_and_snd, |
| 1278 | session_tx_fifo_dequeue_and_snd, |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 1279 | session_tx_fifo_dequeue_internal, |
| 1280 | session_tx_fifo_dequeue_and_snd |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1281 | }; |
| 1282 | /* *INDENT-ON* */ |
| 1283 | |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1284 | /** |
| 1285 | * Initialize session layer for given transport proto and ip version |
| 1286 | * |
| 1287 | * Allocates per session type (transport proto + ip version) data structures |
| 1288 | * and adds arc from session queue node to session type output node. |
| 1289 | */ |
| 1290 | void |
| 1291 | session_register_transport (transport_proto_t transport_proto, |
| 1292 | const transport_proto_vft_t * vft, u8 is_ip4, |
| 1293 | u32 output_node) |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1294 | { |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1295 | session_manager_main_t *smm = &session_manager_main; |
| 1296 | session_type_t session_type; |
| 1297 | u32 next_index = ~0; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1298 | |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1299 | session_type = session_type_from_proto_and_ip (transport_proto, is_ip4); |
| 1300 | |
| 1301 | vec_validate (smm->session_type_to_next, session_type); |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1302 | vec_validate (smm->session_tx_fns, session_type); |
| 1303 | |
| 1304 | /* *INDENT-OFF* */ |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1305 | if (output_node != ~0) |
| 1306 | { |
| 1307 | foreach_vlib_main (({ |
| 1308 | next_index = vlib_node_add_next (this_vlib_main, |
| 1309 | session_queue_node.index, |
| 1310 | output_node); |
| 1311 | })); |
| 1312 | } |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1313 | /* *INDENT-ON* */ |
| 1314 | |
| 1315 | smm->session_type_to_next[session_type] = next_index; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1316 | smm->session_tx_fns[session_type] = session_tx_fns[vft->tx_type]; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1317 | } |
| 1318 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1319 | transport_connection_t * |
| 1320 | session_get_transport (stream_session_t * s) |
| 1321 | { |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1322 | transport_proto_t tp; |
Florin Coras | ade70e4 | 2017-10-14 18:56:41 -0700 | [diff] [blame] | 1323 | if (s->session_state != SESSION_STATE_LISTENING) |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1324 | { |
| 1325 | tp = session_get_transport_proto (s); |
| 1326 | return tp_vfts[tp].get_connection (s->connection_index, |
| 1327 | s->thread_index); |
| 1328 | } |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1329 | return 0; |
| 1330 | } |
| 1331 | |
| 1332 | transport_connection_t * |
| 1333 | listen_session_get_transport (stream_session_t * s) |
| 1334 | { |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1335 | transport_proto_t tp = session_get_transport_proto (s); |
| 1336 | return tp_vfts[tp].get_listener (s->connection_index); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1337 | } |
| 1338 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1339 | int |
| 1340 | listen_session_get_local_session_endpoint (stream_session_t * listener, |
| 1341 | session_endpoint_t * sep) |
| 1342 | { |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1343 | transport_proto_t tp = session_get_transport_proto (listener); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1344 | transport_connection_t *tc; |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1345 | tc = tp_vfts[tp].get_listener (listener->connection_index); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1346 | if (!tc) |
| 1347 | { |
| 1348 | clib_warning ("no transport"); |
| 1349 | return -1; |
| 1350 | } |
| 1351 | |
| 1352 | /* N.B. The ip should not be copied because this is the local endpoint */ |
| 1353 | sep->port = tc->lcl_port; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1354 | sep->transport_proto = tc->proto; |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1355 | sep->is_ip4 = tc->is_ip4; |
| 1356 | return 0; |
| 1357 | } |
| 1358 | |
Florin Coras | fd542f1 | 2018-05-16 19:28:24 -0700 | [diff] [blame] | 1359 | void |
| 1360 | session_flush_frames_main_thread (vlib_main_t * vm) |
| 1361 | { |
| 1362 | ASSERT (vlib_get_thread_index () == 0); |
| 1363 | vlib_process_signal_event_mt (vm, session_queue_process_node.index, |
| 1364 | SESSION_Q_PROCESS_FLUSH_FRAMES, 0); |
| 1365 | } |
| 1366 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1367 | static clib_error_t * |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1368 | session_manager_main_enable (vlib_main_t * vm) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1369 | { |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 1370 | segment_manager_main_init_args_t _sm_args = { 0 }, *sm_args = &_sm_args; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1371 | session_manager_main_t *smm = &session_manager_main; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1372 | vlib_thread_main_t *vtm = vlib_get_thread_main (); |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1373 | u32 num_threads, preallocated_sessions_per_worker; |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 1374 | session_manager_worker_t *wrk; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1375 | int i, j; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1376 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1377 | num_threads = 1 /* main thread */ + vtm->n_threads; |
| 1378 | |
| 1379 | if (num_threads < 1) |
| 1380 | return clib_error_return (0, "n_thread_stacks not set"); |
| 1381 | |
Florin Coras | 5f56d73 | 2018-10-30 10:21:59 -0700 | [diff] [blame] | 1382 | /* Allocate cache line aligned worker contexts */ |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 1383 | vec_validate_aligned (smm->wrk, num_threads - 1, CLIB_CACHE_LINE_BYTES); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1384 | |
| 1385 | for (i = 0; i < TRANSPORT_N_PROTO; i++) |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 1386 | { |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 1387 | for (j = 0; j < num_threads; j++) |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 1388 | smm->wrk[j].current_enqueue_epoch[i] = 1; |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 1389 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1390 | |
Dave Barach | acd2a6a | 2017-05-16 17:41:34 -0400 | [diff] [blame] | 1391 | for (i = 0; i < num_threads; i++) |
| 1392 | { |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 1393 | wrk = &smm->wrk[i]; |
Florin Coras | 5f56d73 | 2018-10-30 10:21:59 -0700 | [diff] [blame] | 1394 | vec_validate (wrk->free_event_vector, 128); |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 1395 | _vec_len (wrk->free_event_vector) = 0; |
Florin Coras | 5f56d73 | 2018-10-30 10:21:59 -0700 | [diff] [blame] | 1396 | vec_validate (wrk->pending_event_vector, 128); |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 1397 | _vec_len (wrk->pending_event_vector) = 0; |
Florin Coras | 5f56d73 | 2018-10-30 10:21:59 -0700 | [diff] [blame] | 1398 | vec_validate (wrk->pending_disconnects, 128); |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 1399 | _vec_len (wrk->pending_disconnects) = 0; |
Florin Coras | 5f56d73 | 2018-10-30 10:21:59 -0700 | [diff] [blame] | 1400 | vec_validate (wrk->postponed_event_vector, 128); |
| 1401 | _vec_len (wrk->postponed_event_vector) = 0; |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 1402 | |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 1403 | wrk->last_vlib_time = vlib_time_now (vlib_mains[i]); |
Florin Coras | c44a558 | 2018-11-01 16:30:54 -0700 | [diff] [blame] | 1404 | wrk->dispatch_period = 500e-6; |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 1405 | |
Florin Coras | 29ca16f | 2017-11-02 18:14:17 -0400 | [diff] [blame] | 1406 | if (num_threads > 1) |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 1407 | clib_rwlock_init (&smm->wrk[i].peekers_rw_locks); |
Dave Barach | acd2a6a | 2017-05-16 17:41:34 -0400 | [diff] [blame] | 1408 | } |
| 1409 | |
Florin Coras | c1a448b | 2018-04-20 10:51:49 -0700 | [diff] [blame] | 1410 | #if SESSION_DEBUG |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1411 | vec_validate (smm->last_event_poll_by_thread, num_threads - 1); |
| 1412 | #endif |
| 1413 | |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1414 | /* Allocate vpp event queues segment and queue */ |
| 1415 | session_vpp_event_queues_allocate (smm); |
| 1416 | |
| 1417 | /* Initialize fifo segment main baseva and timeout */ |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 1418 | sm_args->baseva = smm->session_baseva + smm->evt_qs_segment_size; |
| 1419 | sm_args->size = smm->session_va_space_size; |
| 1420 | segment_manager_main_init (sm_args); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1421 | |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1422 | /* Preallocate sessions */ |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1423 | if (smm->preallocated_sessions) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1424 | { |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1425 | if (num_threads == 1) |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1426 | { |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 1427 | pool_init_fixed (smm->wrk[0].sessions, smm->preallocated_sessions); |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1428 | } |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1429 | else |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1430 | { |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1431 | int j; |
| 1432 | preallocated_sessions_per_worker = |
| 1433 | (1.1 * (f64) smm->preallocated_sessions / |
| 1434 | (f64) (num_threads - 1)); |
| 1435 | |
| 1436 | for (j = 1; j < num_threads; j++) |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1437 | { |
Florin Coras | 5a7ca7b | 2018-10-30 12:01:48 -0700 | [diff] [blame] | 1438 | pool_init_fixed (smm->wrk[j].sessions, |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1439 | preallocated_sessions_per_worker); |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1440 | } |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1441 | } |
| 1442 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1443 | |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 1444 | session_lookup_init (); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1445 | app_namespaces_init (); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1446 | transport_init (); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1447 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1448 | smm->is_enabled = 1; |
| 1449 | |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1450 | /* Enable transports */ |
| 1451 | transport_enable_disable (vm, 1); |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 1452 | transport_init_tx_pacers_period (); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1453 | return 0; |
| 1454 | } |
| 1455 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1456 | void |
| 1457 | session_node_enable_disable (u8 is_en) |
| 1458 | { |
| 1459 | u8 state = is_en ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED; |
Florin Coras | fd542f1 | 2018-05-16 19:28:24 -0700 | [diff] [blame] | 1460 | vlib_thread_main_t *vtm = vlib_get_thread_main (); |
| 1461 | u8 have_workers = vtm->n_threads != 0; |
| 1462 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1463 | /* *INDENT-OFF* */ |
| 1464 | foreach_vlib_main (({ |
Florin Coras | fd542f1 | 2018-05-16 19:28:24 -0700 | [diff] [blame] | 1465 | if (have_workers && ii == 0) |
| 1466 | { |
| 1467 | vlib_node_set_state (this_vlib_main, session_queue_process_node.index, |
| 1468 | state); |
| 1469 | if (is_en) |
| 1470 | { |
| 1471 | vlib_node_t *n = vlib_get_node (this_vlib_main, |
| 1472 | session_queue_process_node.index); |
| 1473 | vlib_start_process (this_vlib_main, n->runtime_index); |
| 1474 | } |
| 1475 | else |
| 1476 | { |
| 1477 | vlib_process_signal_event_mt (this_vlib_main, |
| 1478 | session_queue_process_node.index, |
| 1479 | SESSION_Q_PROCESS_STOP, 0); |
| 1480 | } |
| 1481 | |
| 1482 | continue; |
| 1483 | } |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1484 | vlib_node_set_state (this_vlib_main, session_queue_node.index, |
| 1485 | state); |
| 1486 | })); |
| 1487 | /* *INDENT-ON* */ |
| 1488 | } |
| 1489 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1490 | clib_error_t * |
| 1491 | vnet_session_enable_disable (vlib_main_t * vm, u8 is_en) |
| 1492 | { |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1493 | clib_error_t *error = 0; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1494 | if (is_en) |
| 1495 | { |
| 1496 | if (session_manager_main.is_enabled) |
| 1497 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1498 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1499 | session_node_enable_disable (is_en); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1500 | error = session_manager_main_enable (vm); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1501 | } |
| 1502 | else |
| 1503 | { |
| 1504 | session_manager_main.is_enabled = 0; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 1505 | session_node_enable_disable (is_en); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1506 | } |
| 1507 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1508 | return error; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1509 | } |
| 1510 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1511 | clib_error_t * |
| 1512 | session_manager_main_init (vlib_main_t * vm) |
| 1513 | { |
| 1514 | session_manager_main_t *smm = &session_manager_main; |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1515 | smm->session_baseva = 0x200000000ULL; |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 1516 | smm->session_va_space_size = (u64) 128 << 30; |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1517 | smm->evt_qs_segment_size = 64 << 20; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1518 | smm->is_enabled = 0; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 1519 | return 0; |
| 1520 | } |
| 1521 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1522 | VLIB_INIT_FUNCTION (session_manager_main_init); |
| 1523 | |
| 1524 | static clib_error_t * |
| 1525 | session_config_fn (vlib_main_t * vm, unformat_input_t * input) |
Dave Barach | 10d8cc6 | 2017-05-30 09:30:07 -0400 | [diff] [blame] | 1526 | { |
| 1527 | session_manager_main_t *smm = &session_manager_main; |
| 1528 | u32 nitems; |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1529 | uword tmp; |
Dave Barach | 10d8cc6 | 2017-05-30 09:30:07 -0400 | [diff] [blame] | 1530 | |
| 1531 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 1532 | { |
| 1533 | if (unformat (input, "event-queue-length %d", &nitems)) |
| 1534 | { |
| 1535 | if (nitems >= 2048) |
| 1536 | smm->configured_event_queue_length = nitems; |
| 1537 | else |
| 1538 | clib_warning ("event queue length %d too small, ignored", nitems); |
| 1539 | } |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1540 | else if (unformat (input, "preallocated-sessions %d", |
| 1541 | &smm->preallocated_sessions)) |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1542 | ; |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1543 | else if (unformat (input, "v4-session-table-buckets %d", |
| 1544 | &smm->configured_v4_session_table_buckets)) |
| 1545 | ; |
| 1546 | else if (unformat (input, "v4-halfopen-table-buckets %d", |
| 1547 | &smm->configured_v4_halfopen_table_buckets)) |
| 1548 | ; |
| 1549 | else if (unformat (input, "v6-session-table-buckets %d", |
| 1550 | &smm->configured_v6_session_table_buckets)) |
| 1551 | ; |
| 1552 | else if (unformat (input, "v6-halfopen-table-buckets %d", |
| 1553 | &smm->configured_v6_halfopen_table_buckets)) |
| 1554 | ; |
| 1555 | else if (unformat (input, "v4-session-table-memory %U", |
| 1556 | unformat_memory_size, &tmp)) |
| 1557 | { |
| 1558 | if (tmp >= 0x100000000) |
| 1559 | return clib_error_return (0, "memory size %llx (%lld) too large", |
| 1560 | tmp, tmp); |
| 1561 | smm->configured_v4_session_table_memory = tmp; |
| 1562 | } |
| 1563 | else if (unformat (input, "v4-halfopen-table-memory %U", |
| 1564 | unformat_memory_size, &tmp)) |
| 1565 | { |
| 1566 | if (tmp >= 0x100000000) |
| 1567 | return clib_error_return (0, "memory size %llx (%lld) too large", |
| 1568 | tmp, tmp); |
| 1569 | smm->configured_v4_halfopen_table_memory = tmp; |
| 1570 | } |
| 1571 | else if (unformat (input, "v6-session-table-memory %U", |
| 1572 | unformat_memory_size, &tmp)) |
| 1573 | { |
| 1574 | if (tmp >= 0x100000000) |
| 1575 | return clib_error_return (0, "memory size %llx (%lld) too large", |
| 1576 | tmp, tmp); |
| 1577 | smm->configured_v6_session_table_memory = tmp; |
| 1578 | } |
| 1579 | else if (unformat (input, "v6-halfopen-table-memory %U", |
| 1580 | unformat_memory_size, &tmp)) |
| 1581 | { |
| 1582 | if (tmp >= 0x100000000) |
| 1583 | return clib_error_return (0, "memory size %llx (%lld) too large", |
| 1584 | tmp, tmp); |
| 1585 | smm->configured_v6_halfopen_table_memory = tmp; |
| 1586 | } |
Florin Coras | 93e6580 | 2017-11-29 00:07:11 -0500 | [diff] [blame] | 1587 | else if (unformat (input, "local-endpoints-table-memory %U", |
| 1588 | unformat_memory_size, &tmp)) |
| 1589 | { |
| 1590 | if (tmp >= 0x100000000) |
| 1591 | return clib_error_return (0, "memory size %llx (%lld) too large", |
| 1592 | tmp, tmp); |
| 1593 | smm->local_endpoints_table_memory = tmp; |
| 1594 | } |
| 1595 | else if (unformat (input, "local-endpoints-table-buckets %d", |
| 1596 | &smm->local_endpoints_table_buckets)) |
| 1597 | ; |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 1598 | else if (unformat (input, "evt_qs_memfd_seg")) |
| 1599 | smm->evt_qs_use_memfd_seg = 1; |
Dave Barach | 10d8cc6 | 2017-05-30 09:30:07 -0400 | [diff] [blame] | 1600 | else |
| 1601 | return clib_error_return (0, "unknown input `%U'", |
| 1602 | format_unformat_error, input); |
| 1603 | } |
| 1604 | return 0; |
| 1605 | } |
| 1606 | |
| 1607 | VLIB_CONFIG_FUNCTION (session_config_fn, "session"); |
| 1608 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1609 | /* |
| 1610 | * fd.io coding-style-patch-verification: ON |
| 1611 | * |
| 1612 | * Local Variables: |
| 1613 | * eval: (c-set-style "gnu") |
| 1614 | * End: |
| 1615 | */ |