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