blob: 81c93064d38dd185cd6ef35475c14e8668dec398 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
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 Coras04e53442017-07-16 17:12:15 -070021#include <vnet/session/session_debug.h>
22#include <vnet/session/application.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050023#include <vlibmemory/api.h>
24#include <vnet/dpo/load_balance.h>
25#include <vnet/fib/ip4_fib.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050026
27session_manager_main_t session_manager_main;
Florin Coras04e53442017-07-16 17:12:15 -070028extern transport_proto_vft_t *tp_vfts;
Florin Coras3eb50622017-07-13 01:24:57 -040029
Florin Coras3c2fed52018-07-04 04:15:05 -070030static inline int
31session_send_evt_to_thread (void *data, void *args, u32 thread_index,
32 session_evt_type_t evt_type)
Florin Coras3cbc04b2017-10-02 00:18:51 -070033{
Florin Coras52207f12018-07-12 14:48:06 -070034 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -070035 svm_msg_q_msg_t msg;
36 svm_msg_q_t *mq;
Florin Corasb2371c22018-05-31 17:14:10 -070037 u32 tries = 0, max_tries;
Florin Coras3cbc04b2017-10-02 00:18:51 -070038
Florin Coras3c2fed52018-07-04 04:15:05 -070039 mq = session_manager_get_vpp_event_queue (thread_index);
40 while (svm_msg_q_try_lock (mq))
Florin Coras3cbc04b2017-10-02 00:18:51 -070041 {
Florin Corasb2371c22018-05-31 17:14:10 -070042 max_tries = vlib_get_current_process (vlib_get_main ())? 1e6 : 3;
43 if (tries++ == max_tries)
Florin Coras3cbc04b2017-10-02 00:18:51 -070044 {
45 SESSION_DBG ("failed to enqueue evt");
Florin Coras3c2fed52018-07-04 04:15:05 -070046 return -1;
Florin Coras3cbc04b2017-10-02 00:18:51 -070047 }
48 }
Florin Coras3c2fed52018-07-04 04:15:05 -070049 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 Coras52207f12018-07-12 14:48:06 -070060 evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -070061 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:
69 case FIFO_EVENT_BUILTIN_RX:
70 evt->fifo = data;
71 break;
Florin Corasef915342018-09-29 10:23:06 -070072 case FIFO_EVENT_BUILTIN_TX:
Florin Coras3c2fed52018-07-04 04:15:05 -070073 case FIFO_EVENT_DISCONNECT:
74 evt->session_handle = session_handle ((stream_session_t *) data);
75 break;
76 default:
77 clib_warning ("evt unhandled!");
78 svm_msg_q_unlock (mq);
79 return -1;
80 }
81
Florin Coras52207f12018-07-12 14:48:06 -070082 svm_msg_q_add_and_unlock (mq, &msg);
Florin Coras3c2fed52018-07-04 04:15:05 -070083 return 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -070084}
85
Florin Coras3c2fed52018-07-04 04:15:05 -070086int
87session_send_io_evt_to_thread (svm_fifo_t * f, session_evt_type_t evt_type)
Florin Coras3cbc04b2017-10-02 00:18:51 -070088{
Florin Coras3c2fed52018-07-04 04:15:05 -070089 return session_send_evt_to_thread (f, 0, f->master_thread_index, evt_type);
90}
91
92int
Florin Corasef915342018-09-29 10:23:06 -070093session_send_io_evt_to_thread_custom (void *data, u32 thread_index,
Florin Coras3c2fed52018-07-04 04:15:05 -070094 session_evt_type_t evt_type)
95{
Florin Corasef915342018-09-29 10:23:06 -070096 return session_send_evt_to_thread (data, 0, thread_index, evt_type);
Florin Coras3c2fed52018-07-04 04:15:05 -070097}
98
99int
100session_send_ctrl_evt_to_thread (stream_session_t * s,
101 session_evt_type_t evt_type)
102{
103 /* only event supported for now is disconnect */
104 ASSERT (evt_type == FIFO_EVENT_DISCONNECT);
105 return session_send_evt_to_thread (s, 0, s->thread_index,
106 FIFO_EVENT_DISCONNECT);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700107}
108
109void
110session_send_rpc_evt_to_thread (u32 thread_index, void *fp, void *rpc_args)
111{
112 if (thread_index != vlib_get_thread_index ())
Florin Coras3c2fed52018-07-04 04:15:05 -0700113 session_send_evt_to_thread (fp, rpc_args, thread_index, FIFO_EVENT_RPC);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700114 else
115 {
116 void (*fnp) (void *) = fp;
117 fnp (rpc_args);
118 }
119}
120
121stream_session_t *
122session_alloc (u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500123{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700124 session_manager_main_t *smm = &session_manager_main;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700125 stream_session_t *s;
126 u8 will_expand = 0;
127 pool_get_aligned_will_expand (smm->sessions[thread_index], will_expand,
128 CLIB_CACHE_LINE_BYTES);
129 /* If we have peekers, let them finish */
Florin Coras84a30ef2018-01-24 10:49:23 -0800130 if (PREDICT_FALSE (will_expand && vlib_num_workers ()))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700131 {
Florin Coras84a30ef2018-01-24 10:49:23 -0800132 clib_rwlock_writer_lock (&smm->peekers_rw_locks[thread_index]);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700133 pool_get_aligned (session_manager_main.sessions[thread_index], s,
134 CLIB_CACHE_LINE_BYTES);
Florin Coras84a30ef2018-01-24 10:49:23 -0800135 clib_rwlock_writer_unlock (&smm->peekers_rw_locks[thread_index]);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700136 }
137 else
138 {
139 pool_get_aligned (session_manager_main.sessions[thread_index], s,
140 CLIB_CACHE_LINE_BYTES);
141 }
142 memset (s, 0, sizeof (*s));
143 s->session_index = s - session_manager_main.sessions[thread_index];
144 s->thread_index = thread_index;
145 return s;
146}
147
Florin Coras371ca502018-02-21 12:07:41 -0800148void
Florin Coras3cbc04b2017-10-02 00:18:51 -0700149session_free (stream_session_t * s)
150{
151 pool_put (session_manager_main.sessions[s->thread_index], s);
152 if (CLIB_DEBUG)
153 memset (s, 0xFA, sizeof (*s));
154}
155
Florin Coraseb97e5f2018-10-15 21:35:42 -0700156void
Florin Coras568ebc72018-09-18 16:12:50 -0700157session_free_w_fifos (stream_session_t * s)
158{
159 segment_manager_dealloc_fifos (s->svm_segment_index, s->server_rx_fifo,
160 s->server_tx_fifo);
161 session_free (s);
162}
163
Florin Coras371ca502018-02-21 12:07:41 -0800164int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700165session_alloc_fifos (segment_manager_t * sm, stream_session_t * s)
166{
Dave Barach68b0fb02017-02-28 15:15:56 -0500167 svm_fifo_t *server_rx_fifo = 0, *server_tx_fifo = 0;
168 u32 fifo_segment_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700169 int rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500170
Florin Coras3cbc04b2017-10-02 00:18:51 -0700171 if ((rv = segment_manager_alloc_session_fifos (sm, &server_rx_fifo,
172 &server_tx_fifo,
173 &fifo_segment_index)))
174 return rv;
175 /* Initialize backpointers */
176 server_rx_fifo->master_session_index = s->session_index;
177 server_rx_fifo->master_thread_index = s->thread_index;
178
179 server_tx_fifo->master_session_index = s->session_index;
180 server_tx_fifo->master_thread_index = s->thread_index;
181
182 s->server_rx_fifo = server_rx_fifo;
183 s->server_tx_fifo = server_tx_fifo;
184 s->svm_segment_index = fifo_segment_index;
185 return 0;
186}
187
188static stream_session_t *
189session_alloc_for_connection (transport_connection_t * tc)
190{
191 stream_session_t *s;
192 u32 thread_index = tc->thread_index;
193
Florin Coras40903ac2018-06-10 14:41:23 -0700194 ASSERT (thread_index == vlib_get_thread_index ()
195 || transport_protocol_is_cl (tc->proto));
Dave Barach2c25a622017-06-26 11:35:07 -0400196
Florin Coras3cbc04b2017-10-02 00:18:51 -0700197 s = session_alloc (thread_index);
198 s->session_type = session_type_from_proto_and_ip (tc->proto, tc->is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -0500199 s->session_state = SESSION_STATE_CONNECTING;
Florin Coraseb97e5f2018-10-15 21:35:42 -0700200 s->enqueue_epoch = (u64) ~ 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500201
Florin Coras3cbc04b2017-10-02 00:18:51 -0700202 /* Attach transport to session and vice versa */
Dave Barach68b0fb02017-02-28 15:15:56 -0500203 s->connection_index = tc->c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500204 tc->s_index = s->session_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700205 return s;
206}
207
208static int
209session_alloc_and_init (segment_manager_t * sm, transport_connection_t * tc,
210 u8 alloc_fifos, stream_session_t ** ret_s)
211{
212 stream_session_t *s;
213 int rv;
214
215 s = session_alloc_for_connection (tc);
216 if (alloc_fifos && (rv = session_alloc_fifos (sm, s)))
217 {
218 session_free (s);
Florin Coras29ca16f2017-11-02 18:14:17 -0400219 *ret_s = 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700220 return rv;
221 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500222
223 /* Add to the main lookup table */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700224 session_lookup_add_connection (tc, session_handle (s));
Dave Barach68b0fb02017-02-28 15:15:56 -0500225
226 *ret_s = s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500227 return 0;
228}
229
Florin Coras1f152cd2017-08-18 19:28:03 -0700230/**
231 * Discards bytes from buffer chain
232 *
233 * It discards n_bytes_to_drop starting at first buffer after chain_b
234 */
235always_inline void
236session_enqueue_discard_chain_bytes (vlib_main_t * vm, vlib_buffer_t * b,
237 vlib_buffer_t ** chain_b,
238 u32 n_bytes_to_drop)
239{
240 vlib_buffer_t *next = *chain_b;
241 u32 to_drop = n_bytes_to_drop;
242 ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
243 while (to_drop && (next->flags & VLIB_BUFFER_NEXT_PRESENT))
244 {
245 next = vlib_get_buffer (vm, next->next_buffer);
246 if (next->current_length > to_drop)
247 {
248 vlib_buffer_advance (next, to_drop);
249 to_drop = 0;
250 }
251 else
252 {
253 to_drop -= next->current_length;
254 next->current_length = 0;
255 }
256 }
257 *chain_b = next;
258
259 if (to_drop == 0)
260 b->total_length_not_including_first_buffer -= n_bytes_to_drop;
261}
262
263/**
264 * Enqueue buffer chain tail
265 */
Florin Corasf6d68ed2017-05-07 19:12:02 -0700266always_inline int
267session_enqueue_chain_tail (stream_session_t * s, vlib_buffer_t * b,
268 u32 offset, u8 is_in_order)
269{
270 vlib_buffer_t *chain_b;
Florin Coras1f152cd2017-08-18 19:28:03 -0700271 u32 chain_bi, len, diff;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700272 vlib_main_t *vm = vlib_get_main ();
Florin Corasb2215d62017-08-01 16:56:58 -0700273 u8 *data;
Florin Coras1f152cd2017-08-18 19:28:03 -0700274 u32 written = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700275 int rv = 0;
276
Florin Coras1f152cd2017-08-18 19:28:03 -0700277 if (is_in_order && offset)
278 {
279 diff = offset - b->current_length;
280 if (diff > b->total_length_not_including_first_buffer)
281 return 0;
282 chain_b = b;
283 session_enqueue_discard_chain_bytes (vm, b, &chain_b, diff);
284 chain_bi = vlib_get_buffer_index (vm, chain_b);
285 }
286 else
287 chain_bi = b->next_buffer;
288
Florin Corasf6d68ed2017-05-07 19:12:02 -0700289 do
290 {
291 chain_b = vlib_get_buffer (vm, chain_bi);
292 data = vlib_buffer_get_current (chain_b);
293 len = chain_b->current_length;
Florin Coras1f152cd2017-08-18 19:28:03 -0700294 if (!len)
295 continue;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700296 if (is_in_order)
297 {
298 rv = svm_fifo_enqueue_nowait (s->server_rx_fifo, len, data);
Florin Coras1f152cd2017-08-18 19:28:03 -0700299 if (rv == len)
300 {
301 written += rv;
302 }
303 else if (rv < len)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700304 {
305 return (rv > 0) ? (written + rv) : written;
306 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700307 else if (rv > len)
308 {
309 written += rv;
310
311 /* written more than what was left in chain */
312 if (written > b->total_length_not_including_first_buffer)
313 return written;
314
315 /* drop the bytes that have already been delivered */
316 session_enqueue_discard_chain_bytes (vm, b, &chain_b, rv - len);
317 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700318 }
319 else
320 {
321 rv = svm_fifo_enqueue_with_offset (s->server_rx_fifo, offset, len,
322 data);
323 if (rv)
Florin Coras1f152cd2017-08-18 19:28:03 -0700324 {
325 clib_warning ("failed to enqueue multi-buffer seg");
326 return -1;
327 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700328 offset += len;
329 }
330 }
331 while ((chain_bi = (chain_b->flags & VLIB_BUFFER_NEXT_PRESENT)
332 ? chain_b->next_buffer : 0));
333
334 if (is_in_order)
335 return written;
336
337 return 0;
338}
339
Dave Barach68b0fb02017-02-28 15:15:56 -0500340/*
341 * Enqueue data for delivery to session peer. Does not notify peer of enqueue
342 * event but on request can queue notification events for later delivery by
343 * calling stream_server_flush_enqueue_events().
344 *
345 * @param tc Transport connection which is to be enqueued data
Florin Corasf6d68ed2017-05-07 19:12:02 -0700346 * @param b Buffer to be enqueued
347 * @param offset Offset at which to start enqueueing if out-of-order
Dave Barach68b0fb02017-02-28 15:15:56 -0500348 * @param queue_event Flag to indicate if peer is to be notified or if event
349 * is to be queued. The former is useful when more data is
350 * enqueued and only one event is to be generated.
Florin Corasf6d68ed2017-05-07 19:12:02 -0700351 * @param is_in_order Flag to indicate if data is in order
Dave Barach68b0fb02017-02-28 15:15:56 -0500352 * @return Number of bytes enqueued or a negative value if enqueueing failed.
353 */
354int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700355session_enqueue_stream_connection (transport_connection_t * tc,
356 vlib_buffer_t * b, u32 offset,
357 u8 queue_event, u8 is_in_order)
Dave Barach68b0fb02017-02-28 15:15:56 -0500358{
359 stream_session_t *s;
Florin Coras1f152cd2017-08-18 19:28:03 -0700360 int enqueued = 0, rv, in_order_off;
Dave Barach68b0fb02017-02-28 15:15:56 -0500361
Florin Corascea194d2017-10-02 00:18:51 -0700362 s = session_get (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500363
Florin Corasf6d68ed2017-05-07 19:12:02 -0700364 if (is_in_order)
365 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700366 enqueued = svm_fifo_enqueue_nowait (s->server_rx_fifo,
367 b->current_length,
368 vlib_buffer_get_current (b));
369 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT)
370 && enqueued >= 0))
Florin Corasf6d68ed2017-05-07 19:12:02 -0700371 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700372 in_order_off = enqueued > b->current_length ? enqueued : 0;
373 rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
374 if (rv > 0)
375 enqueued += rv;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700376 }
377 }
378 else
379 {
380 rv = svm_fifo_enqueue_with_offset (s->server_rx_fifo, offset,
381 b->current_length,
382 vlib_buffer_get_current (b));
383 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && !rv))
Florin Coras1f152cd2017-08-18 19:28:03 -0700384 session_enqueue_chain_tail (s, b, offset + b->current_length, 0);
385 /* if something was enqueued, report even this as success for ooo
386 * segment handling */
387 return rv;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700388 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500389
390 if (queue_event)
391 {
392 /* Queue RX event on this fifo. Eventually these will need to be flushed
393 * by calling stream_server_flush_enqueue_events () */
394 session_manager_main_t *smm = vnet_get_session_manager_main ();
395 u32 thread_index = s->thread_index;
Florin Coraseb97e5f2018-10-15 21:35:42 -0700396 u64 enqueue_epoch = smm->current_enqueue_epoch[tc->proto][thread_index];
Dave Barach68b0fb02017-02-28 15:15:56 -0500397
Florin Coras3cbc04b2017-10-02 00:18:51 -0700398 if (s->enqueue_epoch != enqueue_epoch)
Dave Barach68b0fb02017-02-28 15:15:56 -0500399 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700400 s->enqueue_epoch = enqueue_epoch;
401 vec_add1 (smm->session_to_enqueue[tc->proto][thread_index],
Florin Coras86f04502018-09-12 16:08:01 -0700402 s->session_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500403 }
404 }
405
Chris Lukeb2bcad62017-09-18 08:51:22 -0400406 return enqueued;
Dave Barach68b0fb02017-02-28 15:15:56 -0500407}
408
Florin Coras7fb0fe12018-04-09 09:24:52 -0700409
Florin Coras3cbc04b2017-10-02 00:18:51 -0700410int
Florin Coras7fb0fe12018-04-09 09:24:52 -0700411session_enqueue_dgram_connection (stream_session_t * s,
412 session_dgram_hdr_t * hdr,
413 vlib_buffer_t * b, u8 proto, u8 queue_event)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700414{
415 int enqueued = 0, rv, in_order_off;
416
Florin Coras7fb0fe12018-04-09 09:24:52 -0700417 ASSERT (svm_fifo_max_enqueue (s->server_rx_fifo)
418 >= b->current_length + sizeof (*hdr));
419
420 svm_fifo_enqueue_nowait (s->server_rx_fifo, sizeof (session_dgram_hdr_t),
421 (u8 *) hdr);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700422 enqueued = svm_fifo_enqueue_nowait (s->server_rx_fifo, b->current_length,
423 vlib_buffer_get_current (b));
424 if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_NEXT_PRESENT) && enqueued >= 0))
425 {
426 in_order_off = enqueued > b->current_length ? enqueued : 0;
427 rv = session_enqueue_chain_tail (s, b, in_order_off, 1);
428 if (rv > 0)
429 enqueued += rv;
430 }
431 if (queue_event)
432 {
433 /* Queue RX event on this fifo. Eventually these will need to be flushed
434 * by calling stream_server_flush_enqueue_events () */
435 session_manager_main_t *smm = vnet_get_session_manager_main ();
436 u32 thread_index = s->thread_index;
Florin Coraseb97e5f2018-10-15 21:35:42 -0700437 u64 enqueue_epoch = smm->current_enqueue_epoch[proto][thread_index];
Florin Coras3cbc04b2017-10-02 00:18:51 -0700438
439 if (s->enqueue_epoch != enqueue_epoch)
440 {
441 s->enqueue_epoch = enqueue_epoch;
442 vec_add1 (smm->session_to_enqueue[proto][thread_index],
Florin Coras86f04502018-09-12 16:08:01 -0700443 s->session_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700444 }
445 }
446 return enqueued;
447}
448
Dave Barach68b0fb02017-02-28 15:15:56 -0500449/** Check if we have space in rx fifo to push more bytes */
450u8
451stream_session_no_space (transport_connection_t * tc, u32 thread_index,
452 u16 data_len)
453{
Florin Corascea194d2017-10-02 00:18:51 -0700454 stream_session_t *s = session_get (tc->s_index, thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500455
456 if (PREDICT_FALSE (s->session_state != SESSION_STATE_READY))
457 return 1;
458
459 if (data_len > svm_fifo_max_enqueue (s->server_rx_fifo))
460 return 1;
461
462 return 0;
463}
464
465u32
Florin Coras25579b42018-06-06 17:55:02 -0700466session_tx_fifo_max_dequeue (transport_connection_t * tc)
Florin Coras93992a92017-05-24 18:03:56 -0700467{
Florin Corascea194d2017-10-02 00:18:51 -0700468 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
Florin Corasb2215d62017-08-01 16:56:58 -0700469 if (!s->server_tx_fifo)
Florin Coras93992a92017-05-24 18:03:56 -0700470 return 0;
471 return svm_fifo_max_dequeue (s->server_tx_fifo);
472}
473
474int
Dave Barach68b0fb02017-02-28 15:15:56 -0500475stream_session_peek_bytes (transport_connection_t * tc, u8 * buffer,
476 u32 offset, u32 max_bytes)
477{
Florin Corascea194d2017-10-02 00:18:51 -0700478 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
Florin Corasa5464812017-04-19 13:00:05 -0700479 return svm_fifo_peek (s->server_tx_fifo, offset, max_bytes, buffer);
Dave Barach68b0fb02017-02-28 15:15:56 -0500480}
481
482u32
483stream_session_dequeue_drop (transport_connection_t * tc, u32 max_bytes)
484{
Florin Corascea194d2017-10-02 00:18:51 -0700485 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
Florin Corasa5464812017-04-19 13:00:05 -0700486 return svm_fifo_dequeue_drop (s->server_tx_fifo, max_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -0500487}
488
489/**
490 * Notify session peer that new data has been enqueued.
491 *
Florin Coras3c2fed52018-07-04 04:15:05 -0700492 * @param s Stream session for which the event is to be generated.
493 * @param lock Flag to indicate if call should lock message queue.
Dave Barach68b0fb02017-02-28 15:15:56 -0500494 *
Florin Coras3c2fed52018-07-04 04:15:05 -0700495 * @return 0 on success or negative number if failed to send notification.
Dave Barach68b0fb02017-02-28 15:15:56 -0500496 */
Florin Coras3c2fed52018-07-04 04:15:05 -0700497static inline int
Florin Coras21795132018-09-09 09:40:51 -0700498session_enqueue_notify (stream_session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -0500499{
Florin Coras15531972018-08-12 23:50:53 -0700500 app_worker_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500501
Florin Coras15531972018-08-12 23:50:53 -0700502 app = app_worker_get_if_valid (s->app_wrk_index);
Florin Coras3ec66b02018-08-23 16:27:05 -0700503 if (PREDICT_FALSE (!app))
Dave Barach818eb542017-08-02 13:56:13 -0400504 {
Florin Coras15531972018-08-12 23:50:53 -0700505 SESSION_DBG ("invalid s->app_index = %d", s->app_wrk_index);
Dave Barach818eb542017-08-02 13:56:13 -0400506 return 0;
507 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500508
Florin Corase69f4952017-03-07 10:06:24 -0800509 /* *INDENT-OFF* */
Florin Coras6792ec02017-03-13 03:49:51 -0700510 SESSION_EVT_DBG(SESSION_EVT_ENQ, s, ({
Florin Coras3c2fed52018-07-04 04:15:05 -0700511 ed->data[0] = FIFO_EVENT_APP_RX;
Florin Coras6792ec02017-03-13 03:49:51 -0700512 ed->data[1] = svm_fifo_max_dequeue (s->server_rx_fifo);
Florin Corase69f4952017-03-07 10:06:24 -0800513 }));
514 /* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500515
Florin Coras21795132018-09-09 09:40:51 -0700516 return app_worker_lock_and_send_event (app, s, FIFO_EVENT_APP_RX);
Dave Barach68b0fb02017-02-28 15:15:56 -0500517}
518
Florin Coras0d60a0f2018-06-29 02:02:08 -0700519int
520session_dequeue_notify (stream_session_t * s)
521{
Florin Coras15531972018-08-12 23:50:53 -0700522 app_worker_t *app;
Florin Coras0d60a0f2018-06-29 02:02:08 -0700523
Florin Coras15531972018-08-12 23:50:53 -0700524 app = app_worker_get_if_valid (s->app_wrk_index);
Florin Coras208daa12018-07-02 01:30:51 -0700525 if (PREDICT_FALSE (!app))
526 return -1;
527
Florin Coras21795132018-09-09 09:40:51 -0700528 return app_worker_lock_and_send_event (app, s, FIFO_EVENT_APP_TX);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700529}
530
Dave Barach68b0fb02017-02-28 15:15:56 -0500531/**
532 * Flushes queue of sessions that are to be notified of new data
533 * enqueued events.
534 *
535 * @param thread_index Thread index for which the flush is to be performed.
536 * @return 0 on success or a positive number indicating the number of
537 * failures due to API queue being full.
538 */
539int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700540session_manager_flush_enqueue_events (u8 transport_proto, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500541{
542 session_manager_main_t *smm = &session_manager_main;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700543 stream_session_t *s;
Florin Coras21795132018-09-09 09:40:51 -0700544 int i, errors = 0;
Florin Coras3c2fed52018-07-04 04:15:05 -0700545 u32 *indices;
Dave Barach68b0fb02017-02-28 15:15:56 -0500546
Florin Coras3cbc04b2017-10-02 00:18:51 -0700547 indices = smm->session_to_enqueue[transport_proto][thread_index];
Dave Barach68b0fb02017-02-28 15:15:56 -0500548
Florin Coras3cbc04b2017-10-02 00:18:51 -0700549 for (i = 0; i < vec_len (indices); i++)
Dave Barach68b0fb02017-02-28 15:15:56 -0500550 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700551 s = session_get_if_valid (indices[i], thread_index);
Florin Coras3c2fed52018-07-04 04:15:05 -0700552 if (PREDICT_FALSE (!s))
553 {
554 errors++;
555 continue;
556 }
Florin Coras21795132018-09-09 09:40:51 -0700557 if (PREDICT_FALSE (session_enqueue_notify (s)))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700558 errors++;
Dave Barach68b0fb02017-02-28 15:15:56 -0500559 }
560
Florin Coras3cbc04b2017-10-02 00:18:51 -0700561 vec_reset_length (indices);
562 smm->session_to_enqueue[transport_proto][thread_index] = indices;
563 smm->current_enqueue_epoch[transport_proto][thread_index]++;
Dave Barach68b0fb02017-02-28 15:15:56 -0500564
565 return errors;
566}
567
Florin Coras7fb0fe12018-04-09 09:24:52 -0700568int
569session_manager_flush_all_enqueue_events (u8 transport_proto)
570{
571 vlib_thread_main_t *vtm = vlib_get_thread_main ();
572 int i, errors = 0;
573 for (i = 0; i < 1 + vtm->n_threads; i++)
574 errors += session_manager_flush_enqueue_events (transport_proto, i);
575 return errors;
576}
577
Florin Corasc28764f2017-04-26 00:08:42 -0700578/**
579 * Init fifo tail and head pointers
580 *
581 * Useful if transport uses absolute offsets for tracking ooo segments.
582 */
583void
584stream_session_init_fifos_pointers (transport_connection_t * tc,
585 u32 rx_pointer, u32 tx_pointer)
586{
587 stream_session_t *s;
Florin Corascea194d2017-10-02 00:18:51 -0700588 s = session_get (tc->s_index, tc->thread_index);
Florin Corasc28764f2017-04-26 00:08:42 -0700589 svm_fifo_init_pointers (s->server_rx_fifo, rx_pointer);
590 svm_fifo_init_pointers (s->server_tx_fifo, tx_pointer);
591}
592
Florin Corasf03a59a2017-06-09 21:07:32 -0700593int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700594session_stream_connect_notify (transport_connection_t * tc, u8 is_fail)
Dave Barach68b0fb02017-02-28 15:15:56 -0500595{
Florin Coras371ca502018-02-21 12:07:41 -0800596 u32 opaque = 0, new_ti, new_si;
Dave Barach68b0fb02017-02-28 15:15:56 -0500597 stream_session_t *new_s = 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700598 segment_manager_t *sm;
Florin Coras15531972018-08-12 23:50:53 -0700599 app_worker_t *app_wrk;
Florin Coras371ca502018-02-21 12:07:41 -0800600 application_t *app;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700601 u8 alloc_fifos;
Florin Coras371ca502018-02-21 12:07:41 -0800602 int error = 0;
603 u64 handle;
Dave Barach68b0fb02017-02-28 15:15:56 -0500604
Florin Coras3cbc04b2017-10-02 00:18:51 -0700605 /*
606 * Find connection handle and cleanup half-open table
607 */
Florin Corascea194d2017-10-02 00:18:51 -0700608 handle = session_lookup_half_open_handle (tc);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700609 if (handle == HALF_OPEN_LOOKUP_INVALID_VALUE)
Dave Barach68b0fb02017-02-28 15:15:56 -0500610 {
Florin Corascea194d2017-10-02 00:18:51 -0700611 SESSION_DBG ("half-open was removed!");
Florin Corasf03a59a2017-06-09 21:07:32 -0700612 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500613 }
Florin Corascea194d2017-10-02 00:18:51 -0700614 session_lookup_del_half_open (tc);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400615
Florin Corasab0289a2017-08-14 11:25:25 -0700616 /* Get the app's index from the handle we stored when opening connection
617 * and the opaque (api_context for external apps) from transport session
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400618 * index */
Florin Coras15531972018-08-12 23:50:53 -0700619 app_wrk = app_worker_get_if_valid (handle >> 32);
620 if (!app_wrk)
Florin Corasc87c91d2017-08-16 19:55:49 -0700621 return -1;
Florin Corasab0289a2017-08-14 11:25:25 -0700622 opaque = tc->s_index;
Florin Coras15531972018-08-12 23:50:53 -0700623 app = application_get (app_wrk->app_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500624
Florin Coras3cbc04b2017-10-02 00:18:51 -0700625 /*
626 * Allocate new session with fifos (svm segments are allocated if needed)
627 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500628 if (!is_fail)
629 {
Florin Coras15531972018-08-12 23:50:53 -0700630 sm = app_worker_get_connect_segment_manager (app_wrk);
Florin Coras7999e832017-10-31 01:51:04 -0700631 alloc_fifos = !application_is_builtin_proxy (app);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700632 if (session_alloc_and_init (sm, tc, alloc_fifos, &new_s))
Florin Corasf03a59a2017-06-09 21:07:32 -0700633 {
634 is_fail = 1;
635 error = -1;
636 }
637 else
Florin Coras371ca502018-02-21 12:07:41 -0800638 {
Florin Coras15531972018-08-12 23:50:53 -0700639 new_s->app_wrk_index = app_wrk->wrk_index;
Florin Coras371ca502018-02-21 12:07:41 -0800640 new_si = new_s->session_index;
641 new_ti = new_s->thread_index;
642 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500643 }
644
Florin Coras3cbc04b2017-10-02 00:18:51 -0700645 /*
646 * Notify client application
647 */
Florin Coras15531972018-08-12 23:50:53 -0700648 if (app->cb_fns.session_connected_callback (app_wrk->wrk_index, opaque,
649 new_s, is_fail))
Florin Coras6534b7a2017-07-18 05:38:03 -0400650 {
Florin Corascea194d2017-10-02 00:18:51 -0700651 SESSION_DBG ("failed to notify app");
Florin Coras6534b7a2017-07-18 05:38:03 -0400652 if (!is_fail)
Florin Coras371ca502018-02-21 12:07:41 -0800653 {
654 new_s = session_get (new_si, new_ti);
655 stream_session_disconnect_transport (new_s);
656 }
Florin Coras6534b7a2017-07-18 05:38:03 -0400657 }
658 else
659 {
660 if (!is_fail)
Florin Coras371ca502018-02-21 12:07:41 -0800661 {
662 new_s = session_get (new_si, new_ti);
663 new_s->session_state = SESSION_STATE_READY;
664 }
Florin Coras6534b7a2017-07-18 05:38:03 -0400665 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500666
Florin Corasf03a59a2017-06-09 21:07:32 -0700667 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500668}
669
Florin Coras3cbc04b2017-10-02 00:18:51 -0700670typedef struct _session_switch_pool_args
671{
672 u32 session_index;
673 u32 thread_index;
674 u32 new_thread_index;
675 u32 new_session_index;
676} session_switch_pool_args_t;
677
678static void
679session_switch_pool (void *cb_args)
680{
681 session_switch_pool_args_t *args = (session_switch_pool_args_t *) cb_args;
Florin Coras561af9b2017-12-09 10:19:43 -0800682 transport_proto_t tp;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700683 stream_session_t *s;
684 ASSERT (args->thread_index == vlib_get_thread_index ());
685 s = session_get (args->session_index, args->thread_index);
686 s->server_tx_fifo->master_session_index = args->new_session_index;
687 s->server_tx_fifo->master_thread_index = args->new_thread_index;
Florin Coras561af9b2017-12-09 10:19:43 -0800688 tp = session_get_transport_proto (s);
689 tp_vfts[tp].cleanup (s->connection_index, s->thread_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700690 session_free (s);
691 clib_mem_free (cb_args);
692}
693
694/**
695 * Move dgram session to the right thread
696 */
697int
698session_dgram_connect_notify (transport_connection_t * tc,
699 u32 old_thread_index,
700 stream_session_t ** new_session)
701{
702 stream_session_t *new_s;
703 session_switch_pool_args_t *rpc_args;
704
705 /*
706 * Clone half-open session to the right thread.
707 */
708 new_s = session_clone_safe (tc->s_index, old_thread_index);
709 new_s->connection_index = tc->c_index;
710 new_s->server_rx_fifo->master_session_index = new_s->session_index;
711 new_s->server_rx_fifo->master_thread_index = new_s->thread_index;
712 new_s->session_state = SESSION_STATE_READY;
713 session_lookup_add_connection (tc, session_handle (new_s));
714
715 /*
716 * Ask thread owning the old session to clean it up and make us the tx
717 * fifo owner
718 */
719 rpc_args = clib_mem_alloc (sizeof (*rpc_args));
720 rpc_args->new_session_index = new_s->session_index;
721 rpc_args->new_thread_index = new_s->thread_index;
722 rpc_args->session_index = tc->s_index;
723 rpc_args->thread_index = old_thread_index;
724 session_send_rpc_evt_to_thread (rpc_args->thread_index, session_switch_pool,
725 rpc_args);
726
727 tc->s_index = new_s->session_index;
728 new_s->connection_index = tc->c_index;
729 *new_session = new_s;
730 return 0;
731}
732
Dave Barach68b0fb02017-02-28 15:15:56 -0500733void
734stream_session_accept_notify (transport_connection_t * tc)
735{
Florin Coras15531972018-08-12 23:50:53 -0700736 app_worker_t *app_wrk;
737 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500738 stream_session_t *s;
739
Florin Corascea194d2017-10-02 00:18:51 -0700740 s = session_get (tc->s_index, tc->thread_index);
Florin Coras15531972018-08-12 23:50:53 -0700741 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
742 if (!app_wrk)
743 return;
744 app = application_get (app_wrk->app_index);
745 app->cb_fns.session_accept_callback (s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500746}
747
748/**
749 * Notification from transport that connection is being closed.
750 *
751 * A disconnect is sent to application but state is not removed. Once
752 * disconnect is acknowledged by application, session disconnect is called.
753 * Ultimately this leads to close being called on transport (passive close).
754 */
755void
756stream_session_disconnect_notify (transport_connection_t * tc)
757{
Florin Coras15531972018-08-12 23:50:53 -0700758 app_worker_t *app_wrk;
759 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500760 stream_session_t *s;
761
Florin Corascea194d2017-10-02 00:18:51 -0700762 s = session_get (tc->s_index, tc->thread_index);
Florin Coras400ded32018-10-03 01:00:57 -0700763 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
764 return;
Florin Coras568ebc72018-09-18 16:12:50 -0700765 s->session_state = SESSION_STATE_TRANSPORT_CLOSING;
Florin Coras15531972018-08-12 23:50:53 -0700766 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
767 if (!app_wrk)
768 return;
769 app = application_get (app_wrk->app_index);
770 app->cb_fns.session_disconnect_callback (s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500771}
772
773/**
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400774 * Cleans up session and lookup table.
Florin Coras25579b42018-06-06 17:55:02 -0700775 *
776 * Transport connection must still be valid.
Dave Barach68b0fb02017-02-28 15:15:56 -0500777 */
778void
779stream_session_delete (stream_session_t * s)
780{
Florin Coras6534b7a2017-07-18 05:38:03 -0400781 int rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500782
Florin Corasd79b41e2017-03-04 05:37:52 -0800783 /* Delete from the main lookup table. */
Florin Corascea194d2017-10-02 00:18:51 -0700784 if ((rv = session_lookup_del_session (s)))
Florin Coras6534b7a2017-07-18 05:38:03 -0400785 clib_warning ("hash delete error, rv %d", rv);
Dave Barach68b0fb02017-02-28 15:15:56 -0500786
Florin Coras568ebc72018-09-18 16:12:50 -0700787 session_free_w_fifos (s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500788}
789
790/**
791 * Notification from transport that connection is being deleted
792 *
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400793 * This removes the session if it is still valid. It should be called only on
794 * previously fully established sessions. For instance failed connects should
795 * call stream_session_connect_notify and indicate that the connect has
796 * failed.
Dave Barach68b0fb02017-02-28 15:15:56 -0500797 */
798void
799stream_session_delete_notify (transport_connection_t * tc)
800{
801 stream_session_t *s;
802
Florin Corase04c2992017-03-01 08:17:34 -0800803 /* App might've been removed already */
Florin Coras568ebc72018-09-18 16:12:50 -0700804 if (!(s = session_get_if_valid (tc->s_index, tc->thread_index)))
Florin Corasc87c91d2017-08-16 19:55:49 -0700805 return;
Florin Coras568ebc72018-09-18 16:12:50 -0700806
807 /* Make sure we don't try to send anything more */
808 svm_fifo_dequeue_drop_all (s->server_tx_fifo);
809
810 switch (s->session_state)
811 {
812 case SESSION_STATE_TRANSPORT_CLOSING:
813 /* If transport finishes or times out before we get a reply
814 * from the app, do the whole disconnect since we might still
815 * have lingering events */
816 stream_session_disconnect (s);
Florin Corasc01d5782018-10-17 14:53:11 -0700817 s->session_state = SESSION_STATE_CLOSED;
Florin Coras568ebc72018-09-18 16:12:50 -0700818 break;
819 case SESSION_STATE_CLOSING:
820 /* Cleanup lookup table. Transport needs to still be valid */
821 session_lookup_del_session (s);
Florin Corasc01d5782018-10-17 14:53:11 -0700822 s->session_state = SESSION_STATE_CLOSED;
Florin Coras568ebc72018-09-18 16:12:50 -0700823 break;
824 case SESSION_STATE_CLOSED:
Florin Corasc5347d92018-10-17 10:41:28 -0700825 case SESSION_STATE_ACCEPTING:
Florin Coras568ebc72018-09-18 16:12:50 -0700826 stream_session_delete (s);
827 break;
Florin Corasc01d5782018-10-17 14:53:11 -0700828 default:
829 /* Assume connection was not yet added the lookup table */
830 session_free_w_fifos (s);
831 break;
Florin Coras568ebc72018-09-18 16:12:50 -0700832 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500833}
834
835/**
836 * Notify application that connection has been reset.
837 */
838void
839stream_session_reset_notify (transport_connection_t * tc)
840{
841 stream_session_t *s;
Florin Coras15531972018-08-12 23:50:53 -0700842 app_worker_t *app_wrk;
Dave Barach68b0fb02017-02-28 15:15:56 -0500843 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700844 s = session_get (tc->s_index, tc->thread_index);
Florin Corasca1c8f32018-05-23 21:01:30 -0700845 s->session_state = SESSION_STATE_CLOSED;
Florin Coras15531972018-08-12 23:50:53 -0700846 app_wrk = app_worker_get (s->app_wrk_index);
847 app = application_get (app_wrk->app_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500848 app->cb_fns.session_reset_callback (s);
849}
850
851/**
852 * Accept a stream session. Optionally ping the server by callback.
853 */
854int
855stream_session_accept (transport_connection_t * tc, u32 listener_index,
Florin Corascea194d2017-10-02 00:18:51 -0700856 u8 notify)
Dave Barach68b0fb02017-02-28 15:15:56 -0500857{
Dave Barach68b0fb02017-02-28 15:15:56 -0500858 stream_session_t *s, *listener;
Florin Coras15531972018-08-12 23:50:53 -0700859 app_worker_t *app_wrk;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700860 segment_manager_t *sm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500861 int rv;
862
863 /* Find the server */
Florin Coras5c9083d2018-04-13 06:39:07 -0700864 listener = listen_session_get (listener_index);
Florin Coras21795132018-09-09 09:40:51 -0700865 app_wrk = application_listener_select_worker (listener, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500866
Florin Coras15531972018-08-12 23:50:53 -0700867 sm = app_worker_get_listen_segment_manager (app_wrk, listener);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700868 if ((rv = session_alloc_and_init (sm, tc, 1, &s)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500869 return rv;
870
Florin Coras15531972018-08-12 23:50:53 -0700871 s->app_wrk_index = app_wrk->wrk_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700872 s->listener_index = listener_index;
Dave Barach2c25a622017-06-26 11:35:07 -0400873 s->session_state = SESSION_STATE_ACCEPTING;
Dave Barach68b0fb02017-02-28 15:15:56 -0500874
875 /* Shoulder-tap the server */
876 if (notify)
877 {
Florin Coras15531972018-08-12 23:50:53 -0700878 application_t *app = application_get (app_wrk->app_index);
879 app->cb_fns.session_accept_callback (s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500880 }
881
882 return 0;
883}
884
Florin Coras371ca502018-02-21 12:07:41 -0800885int
Florin Coras15531972018-08-12 23:50:53 -0700886session_open_cl (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
Florin Coras371ca502018-02-21 12:07:41 -0800887{
888 transport_connection_t *tc;
889 transport_endpoint_t *tep;
890 segment_manager_t *sm;
Florin Coras15531972018-08-12 23:50:53 -0700891 app_worker_t *app_wrk;
Florin Coras371ca502018-02-21 12:07:41 -0800892 stream_session_t *s;
893 application_t *app;
894 int rv;
895
896 tep = session_endpoint_to_transport (rmt);
897 rv = tp_vfts[rmt->transport_proto].open (tep);
898 if (rv < 0)
899 {
900 SESSION_DBG ("Transport failed to open connection.");
901 return VNET_API_ERROR_SESSION_CONNECT;
902 }
903
904 tc = tp_vfts[rmt->transport_proto].get_half_open ((u32) rv);
905
906 /* For dgram type of service, allocate session and fifos now.
907 */
Florin Coras15531972018-08-12 23:50:53 -0700908 app_wrk = app_worker_get (app_wrk_index);
909 sm = app_worker_get_connect_segment_manager (app_wrk);
Florin Coras371ca502018-02-21 12:07:41 -0800910
911 if (session_alloc_and_init (sm, tc, 1, &s))
912 return -1;
Florin Coras15531972018-08-12 23:50:53 -0700913 s->app_wrk_index = app_wrk->wrk_index;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700914 s->session_state = SESSION_STATE_OPENED;
Florin Coras371ca502018-02-21 12:07:41 -0800915
916 /* Tell the app about the new event fifo for this session */
Florin Coras15531972018-08-12 23:50:53 -0700917 app = application_get (app_wrk->app_index);
918 app->cb_fns.session_connected_callback (app_wrk->wrk_index, opaque, s, 0);
Florin Coras371ca502018-02-21 12:07:41 -0800919
920 return 0;
921}
922
923int
Florin Coras15531972018-08-12 23:50:53 -0700924session_open_vc (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
Florin Coras371ca502018-02-21 12:07:41 -0800925{
926 transport_connection_t *tc;
927 transport_endpoint_t *tep;
928 u64 handle;
929 int rv;
930
Florin Coras371ca502018-02-21 12:07:41 -0800931 tep = session_endpoint_to_transport (rmt);
932 rv = tp_vfts[rmt->transport_proto].open (tep);
933 if (rv < 0)
934 {
935 SESSION_DBG ("Transport failed to open connection.");
936 return VNET_API_ERROR_SESSION_CONNECT;
937 }
938
939 tc = tp_vfts[rmt->transport_proto].get_half_open ((u32) rv);
940
941 /* If transport offers a stream service, only allocate session once the
942 * connection has been established.
943 * Add connection to half-open table and save app and tc index. The
944 * latter is needed to help establish the connection while the former
945 * is needed when the connect notify comes and we have to notify the
946 * external app
947 */
Florin Coras15531972018-08-12 23:50:53 -0700948 handle = (((u64) app_wrk_index) << 32) | (u64) tc->c_index;
Florin Coras371ca502018-02-21 12:07:41 -0800949 session_lookup_add_half_open (tc, handle);
950
951 /* Store api_context (opaque) for when the reply comes. Not the nicest
952 * thing but better than allocating a separate half-open pool.
953 */
954 tc->s_index = opaque;
955 return 0;
956}
957
958int
Florin Coras15531972018-08-12 23:50:53 -0700959session_open_app (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
Florin Coras371ca502018-02-21 12:07:41 -0800960{
Florin Coras8f89dd02018-03-05 16:53:07 -0800961 session_endpoint_extended_t *sep = (session_endpoint_extended_t *) rmt;
Florin Coras15531972018-08-12 23:50:53 -0700962 sep->app_wrk_index = app_wrk_index;
Florin Coras8f89dd02018-03-05 16:53:07 -0800963 sep->opaque = opaque;
Florin Coras371ca502018-02-21 12:07:41 -0800964
Florin Coras8f89dd02018-03-05 16:53:07 -0800965 return tp_vfts[rmt->transport_proto].open ((transport_endpoint_t *) sep);
Florin Coras371ca502018-02-21 12:07:41 -0800966}
967
968typedef int (*session_open_service_fn) (u32, session_endpoint_t *, u32);
969
970/* *INDENT-OFF* */
971static session_open_service_fn session_open_srv_fns[TRANSPORT_N_SERVICES] = {
972 session_open_vc,
973 session_open_cl,
974 session_open_app,
975};
976/* *INDENT-ON* */
977
Florin Coras6cf30ad2017-04-04 23:08:23 -0700978/**
979 * Ask transport to open connection to remote transport endpoint.
980 *
981 * Stores handle for matching request with reply since the call can be
982 * asynchronous. For instance, for TCP the 3-way handshake must complete
983 * before reply comes. Session is only created once connection is established.
984 *
985 * @param app_index Index of the application requesting the connect
986 * @param st Session type requested.
987 * @param tep Remote transport endpoint
Florin Coras3cbc04b2017-10-02 00:18:51 -0700988 * @param opaque Opaque data (typically, api_context) the application expects
989 * on open completion.
Florin Coras6cf30ad2017-04-04 23:08:23 -0700990 */
Florin Corase04c2992017-03-01 08:17:34 -0800991int
Florin Coras15531972018-08-12 23:50:53 -0700992session_open (u32 app_wrk_index, session_endpoint_t * rmt, u32 opaque)
Dave Barach68b0fb02017-02-28 15:15:56 -0500993{
Florin Coras371ca502018-02-21 12:07:41 -0800994 transport_service_type_t tst = tp_vfts[rmt->transport_proto].service_type;
Florin Coras15531972018-08-12 23:50:53 -0700995 return session_open_srv_fns[tst] (app_wrk_index, rmt, opaque);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700996}
997
Florin Coras7fb0fe12018-04-09 09:24:52 -0700998/**
Florin Corasab2f6db2018-08-31 14:31:41 -0700999 * Ask transport to listen on session endpoint.
Florin Coras7fb0fe12018-04-09 09:24:52 -07001000 *
1001 * @param s Session for which listen will be called. Note that unlike
1002 * established sessions, listen sessions are not associated to a
1003 * thread.
Florin Corasab2f6db2018-08-31 14:31:41 -07001004 * @param sep Local endpoint to be listened on.
Florin Coras7fb0fe12018-04-09 09:24:52 -07001005 */
Florin Coras371ca502018-02-21 12:07:41 -08001006int
Florin Corasab2f6db2018-08-31 14:31:41 -07001007session_listen (stream_session_t * ls, session_endpoint_extended_t * sep)
Florin Coras371ca502018-02-21 12:07:41 -08001008{
Florin Corasab2f6db2018-08-31 14:31:41 -07001009 transport_connection_t *tc;
1010 transport_endpoint_t *tep;
Florin Coras74cac882018-09-07 09:13:15 -07001011 u32 tc_index, s_index;
Florin Corasab2f6db2018-08-31 14:31:41 -07001012
1013 /* Transport bind/listen */
1014 tep = session_endpoint_to_transport (sep);
Florin Coras74cac882018-09-07 09:13:15 -07001015 s_index = ls->session_index;
1016 tc_index = tp_vfts[sep->transport_proto].bind (s_index, tep);
Florin Corasab2f6db2018-08-31 14:31:41 -07001017
1018 if (tc_index == (u32) ~ 0)
1019 return -1;
1020
1021 /* Attach transport to session */
Florin Coras74cac882018-09-07 09:13:15 -07001022 ls = listen_session_get (s_index);
Florin Corasab2f6db2018-08-31 14:31:41 -07001023 ls->connection_index = tc_index;
1024
1025 /* Add to the main lookup table after transport was initialized */
1026 tc = tp_vfts[sep->transport_proto].get_listener (tc_index);
Florin Coras74cac882018-09-07 09:13:15 -07001027 session_lookup_add_connection (tc, s_index);
Florin Corasab2f6db2018-08-31 14:31:41 -07001028 return 0;
Florin Coras371ca502018-02-21 12:07:41 -08001029}
1030
Florin Coras6cf30ad2017-04-04 23:08:23 -07001031/**
1032 * Ask transport to stop listening on local transport endpoint.
1033 *
1034 * @param s Session to stop listening on. It must be in state LISTENING.
1035 */
1036int
Florin Corasab2f6db2018-08-31 14:31:41 -07001037session_stop_listen (stream_session_t * s)
Florin Coras6cf30ad2017-04-04 23:08:23 -07001038{
Florin Coras561af9b2017-12-09 10:19:43 -08001039 transport_proto_t tp = session_get_transport_proto (s);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001040 transport_connection_t *tc;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001041 if (s->session_state != SESSION_STATE_LISTENING)
1042 {
1043 clib_warning ("not a listening session");
1044 return -1;
1045 }
1046
Florin Coras561af9b2017-12-09 10:19:43 -08001047 tc = tp_vfts[tp].get_listener (s->connection_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001048 if (!tc)
1049 {
1050 clib_warning ("no transport");
1051 return VNET_API_ERROR_ADDRESS_NOT_IN_USE;
1052 }
1053
Florin Corascea194d2017-10-02 00:18:51 -07001054 session_lookup_del_connection (tc);
Florin Coras561af9b2017-12-09 10:19:43 -08001055 tp_vfts[tp].unbind (s->connection_index);
Florin Corase04c2992017-03-01 08:17:34 -08001056 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001057}
1058
1059/**
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001060 * Initialize session disconnect.
Florin Corasa5464812017-04-19 13:00:05 -07001061 *
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001062 * Request is always sent to session node to ensure that all outstanding
1063 * requests are served before transport is notified.
Dave Barach68b0fb02017-02-28 15:15:56 -05001064 */
1065void
1066stream_session_disconnect (stream_session_t * s)
1067{
Florin Corasb2371c22018-05-31 17:14:10 -07001068 u32 thread_index = vlib_get_thread_index ();
1069 session_manager_main_t *smm = &session_manager_main;
Florin Coras52207f12018-07-12 14:48:06 -07001070 session_event_t *evt;
Florin Corasb2371c22018-05-31 17:14:10 -07001071
Florin Coras25579b42018-06-06 17:55:02 -07001072 if (!s)
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001073 return;
Florin Coras25579b42018-06-06 17:55:02 -07001074
1075 if (s->session_state >= SESSION_STATE_CLOSING)
1076 {
1077 /* Session already closed. Clear the tx fifo */
1078 if (s->session_state == SESSION_STATE_CLOSED)
1079 svm_fifo_dequeue_drop_all (s->server_tx_fifo);
1080 return;
1081 }
1082
Florin Corasb2371c22018-05-31 17:14:10 -07001083 s->session_state = SESSION_STATE_CLOSING;
1084
1085 /* If we are in the handler thread, or being called with the worker barrier
Florin Coras568ebc72018-09-18 16:12:50 -07001086 * held, just append a new event to pending disconnects vector. */
1087 if (vlib_thread_is_main_w_barrier () || thread_index == s->thread_index)
Florin Corasb2371c22018-05-31 17:14:10 -07001088 {
Florin Corasb2371c22018-05-31 17:14:10 -07001089 vec_add2 (smm->pending_disconnects[s->thread_index], evt, 1);
1090 memset (evt, 0, sizeof (*evt));
1091 evt->session_handle = session_handle (s);
1092 evt->event_type = FIFO_EVENT_DISCONNECT;
1093 }
1094 else
Florin Coras3c2fed52018-07-04 04:15:05 -07001095 session_send_ctrl_evt_to_thread (s, FIFO_EVENT_DISCONNECT);
Florin Coras2f8d8fa2018-01-26 06:36:04 -08001096}
1097
1098/**
1099 * Notify transport the session can be disconnected. This should eventually
1100 * result in a delete notification that allows us to cleanup session state.
1101 * Called for both active/passive disconnects.
1102 *
1103 * Must be called from the session's thread.
1104 */
1105void
1106stream_session_disconnect_transport (stream_session_t * s)
1107{
Florin Coras568ebc72018-09-18 16:12:50 -07001108 /* If transport is already closed, just free the session */
1109 if (s->session_state == SESSION_STATE_CLOSED)
1110 {
1111 session_free_w_fifos (s);
1112 return;
1113 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001114 s->session_state = SESSION_STATE_CLOSED;
Florin Coras561af9b2017-12-09 10:19:43 -08001115 tp_vfts[session_get_transport_proto (s)].close (s->connection_index,
1116 s->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001117}
1118
1119/**
1120 * Cleanup transport and session state.
Florin Corasd79b41e2017-03-04 05:37:52 -08001121 *
Florin Coras25579b42018-06-06 17:55:02 -07001122 * Notify transport of the cleanup and free the session. This should
1123 * be called only if transport reported some error and is already
1124 * closed.
Dave Barach68b0fb02017-02-28 15:15:56 -05001125 */
1126void
1127stream_session_cleanup (stream_session_t * s)
1128{
Florin Corasd79b41e2017-03-04 05:37:52 -08001129 s->session_state = SESSION_STATE_CLOSED;
1130
Florin Coras25579b42018-06-06 17:55:02 -07001131 /* Delete from main lookup table before we axe the the transport */
1132 session_lookup_del_session (s);
Florin Coras561af9b2017-12-09 10:19:43 -08001133 tp_vfts[session_get_transport_proto (s)].cleanup (s->connection_index,
1134 s->thread_index);
Florin Coras25579b42018-06-06 17:55:02 -07001135 /* Since we called cleanup, no delete notification will come. So, make
1136 * sure the session is properly freed. */
Florin Coras568ebc72018-09-18 16:12:50 -07001137 session_free_w_fifos (s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001138}
1139
Florin Corasf08f26d2018-05-10 13:20:47 -07001140transport_service_type_t
1141session_transport_service_type (stream_session_t * s)
1142{
1143 transport_proto_t tp;
1144 tp = session_get_transport_proto (s);
1145 return transport_protocol_service_type (tp);
1146}
1147
1148transport_tx_fn_type_t
1149session_transport_tx_fn_type (stream_session_t * s)
1150{
1151 transport_proto_t tp;
1152 tp = session_get_transport_proto (s);
1153 return transport_protocol_tx_fn_type (tp);
1154}
1155
1156u8
1157session_tx_is_dgram (stream_session_t * s)
1158{
1159 return (session_transport_tx_fn_type (s) == TRANSPORT_TX_DGRAM);
1160}
1161
Florin Corasa5464812017-04-19 13:00:05 -07001162/**
Florin Corasb384b542018-01-15 01:08:33 -08001163 * Allocate event queues in the shared-memory segment
1164 *
1165 * That can either be a newly created memfd segment, that will need to be
1166 * mapped by all stack users, or the binary api's svm region. The latter is
1167 * assumed to be already mapped. NOTE that this assumption DOES NOT hold if
1168 * api clients bootstrap shm api over sockets (i.e. use memfd segments) and
1169 * vpp uses api svm region for event queues.
Florin Corasa5464812017-04-19 13:00:05 -07001170 */
1171void
Florin Corasb384b542018-01-15 01:08:33 -08001172session_vpp_event_queues_allocate (session_manager_main_t * smm)
Florin Corasa5464812017-04-19 13:00:05 -07001173{
Florin Coras52207f12018-07-12 14:48:06 -07001174 u32 evt_q_length = 2048, evt_size = sizeof (session_event_t);
Florin Corasb384b542018-01-15 01:08:33 -08001175 ssvm_private_t *eqs = &smm->evt_qs_segment;
Florin Corasa5464812017-04-19 13:00:05 -07001176 api_main_t *am = &api_main;
Florin Corasb384b542018-01-15 01:08:33 -08001177 u64 eqs_size = 64 << 20;
1178 pid_t vpp_pid = getpid ();
Florin Corasa5464812017-04-19 13:00:05 -07001179 void *oldheap;
Florin Corasb384b542018-01-15 01:08:33 -08001180 int i;
Florin Corasa5464812017-04-19 13:00:05 -07001181
Florin Corasb384b542018-01-15 01:08:33 -08001182 if (smm->configured_event_queue_length)
1183 evt_q_length = smm->configured_event_queue_length;
1184
1185 if (smm->evt_qs_use_memfd_seg)
Florin Corasa5464812017-04-19 13:00:05 -07001186 {
Florin Corasb384b542018-01-15 01:08:33 -08001187 if (smm->evt_qs_segment_size)
1188 eqs_size = smm->evt_qs_segment_size;
Florin Corasa5464812017-04-19 13:00:05 -07001189
Florin Corasb384b542018-01-15 01:08:33 -08001190 eqs->ssvm_size = eqs_size;
1191 eqs->i_am_master = 1;
1192 eqs->my_pid = vpp_pid;
1193 eqs->name = format (0, "%s%c", "evt-qs-segment", 0);
1194 eqs->requested_va = smm->session_baseva;
Dave Barach10d8cc62017-05-30 09:30:07 -04001195
Florin Coras95e0ce02018-07-05 23:44:23 -07001196 if (ssvm_master_init (eqs, SSVM_SEGMENT_MEMFD))
1197 {
1198 clib_warning ("failed to initialize queue segment");
1199 return;
1200 }
Florin Corasa5464812017-04-19 13:00:05 -07001201 }
Florin Corasb384b542018-01-15 01:08:33 -08001202
1203 if (smm->evt_qs_use_memfd_seg)
1204 oldheap = ssvm_push_heap (eqs->sh);
1205 else
1206 oldheap = svm_push_data_heap (am->vlib_rp);
1207
1208 for (i = 0; i < vec_len (smm->vpp_event_queues); i++)
1209 {
Florin Coras3c2fed52018-07-04 04:15:05 -07001210 svm_msg_q_cfg_t _cfg, *cfg = &_cfg;
1211 u32 notif_q_size = clib_max (16, evt_q_length >> 4);
1212 svm_msg_q_ring_cfg_t rc[SESSION_MQ_N_RINGS] = {
1213 {evt_q_length, evt_size, 0}
1214 ,
1215 {notif_q_size, 256, 0}
1216 };
1217 cfg->consumer_pid = 0;
1218 cfg->n_rings = 2;
1219 cfg->q_nitems = evt_q_length;
1220 cfg->ring_cfgs = rc;
1221 smm->vpp_event_queues[i] = svm_msg_q_alloc (cfg);
Florin Coras99368312018-08-02 10:45:44 -07001222 if (smm->evt_qs_use_memfd_seg)
1223 {
1224 if (svm_msg_q_alloc_consumer_eventfd (smm->vpp_event_queues[i]))
1225 clib_warning ("eventfd returned");
1226 }
Florin Corasb384b542018-01-15 01:08:33 -08001227 }
1228
1229 if (smm->evt_qs_use_memfd_seg)
1230 ssvm_pop_heap (oldheap);
1231 else
1232 svm_pop_heap (oldheap);
1233}
1234
1235ssvm_private_t *
1236session_manager_get_evt_q_segment (void)
1237{
1238 session_manager_main_t *smm = &session_manager_main;
1239 if (smm->evt_qs_use_memfd_seg)
1240 return &smm->evt_qs_segment;
1241 return 0;
Florin Corasa5464812017-04-19 13:00:05 -07001242}
1243
Florin Coras371ca502018-02-21 12:07:41 -08001244/* *INDENT-OFF* */
1245static session_fifo_rx_fn *session_tx_fns[TRANSPORT_TX_N_FNS] = {
1246 session_tx_fifo_peek_and_snd,
1247 session_tx_fifo_dequeue_and_snd,
Florin Coras7fb0fe12018-04-09 09:24:52 -07001248 session_tx_fifo_dequeue_internal,
1249 session_tx_fifo_dequeue_and_snd
Florin Coras371ca502018-02-21 12:07:41 -08001250};
1251/* *INDENT-ON* */
1252
Florin Coras561af9b2017-12-09 10:19:43 -08001253/**
1254 * Initialize session layer for given transport proto and ip version
1255 *
1256 * Allocates per session type (transport proto + ip version) data structures
1257 * and adds arc from session queue node to session type output node.
1258 */
1259void
1260session_register_transport (transport_proto_t transport_proto,
1261 const transport_proto_vft_t * vft, u8 is_ip4,
1262 u32 output_node)
Dave Barach2c25a622017-06-26 11:35:07 -04001263{
Florin Coras561af9b2017-12-09 10:19:43 -08001264 session_manager_main_t *smm = &session_manager_main;
1265 session_type_t session_type;
1266 u32 next_index = ~0;
Dave Barach2c25a622017-06-26 11:35:07 -04001267
Florin Coras561af9b2017-12-09 10:19:43 -08001268 session_type = session_type_from_proto_and_ip (transport_proto, is_ip4);
1269
1270 vec_validate (smm->session_type_to_next, session_type);
Florin Coras561af9b2017-12-09 10:19:43 -08001271 vec_validate (smm->session_tx_fns, session_type);
1272
1273 /* *INDENT-OFF* */
Florin Coras371ca502018-02-21 12:07:41 -08001274 if (output_node != ~0)
1275 {
1276 foreach_vlib_main (({
1277 next_index = vlib_node_add_next (this_vlib_main,
1278 session_queue_node.index,
1279 output_node);
1280 }));
1281 }
Florin Coras561af9b2017-12-09 10:19:43 -08001282 /* *INDENT-ON* */
1283
1284 smm->session_type_to_next[session_type] = next_index;
Florin Coras371ca502018-02-21 12:07:41 -08001285 smm->session_tx_fns[session_type] = session_tx_fns[vft->tx_type];
Dave Barach2c25a622017-06-26 11:35:07 -04001286}
1287
Florin Coras3cbc04b2017-10-02 00:18:51 -07001288transport_connection_t *
1289session_get_transport (stream_session_t * s)
1290{
Florin Coras561af9b2017-12-09 10:19:43 -08001291 transport_proto_t tp;
Florin Corasade70e42017-10-14 18:56:41 -07001292 if (s->session_state != SESSION_STATE_LISTENING)
Florin Coras561af9b2017-12-09 10:19:43 -08001293 {
1294 tp = session_get_transport_proto (s);
1295 return tp_vfts[tp].get_connection (s->connection_index,
1296 s->thread_index);
1297 }
Florin Coras3cbc04b2017-10-02 00:18:51 -07001298 return 0;
1299}
1300
1301transport_connection_t *
1302listen_session_get_transport (stream_session_t * s)
1303{
Florin Coras561af9b2017-12-09 10:19:43 -08001304 transport_proto_t tp = session_get_transport_proto (s);
1305 return tp_vfts[tp].get_listener (s->connection_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001306}
1307
Florin Corascea194d2017-10-02 00:18:51 -07001308int
1309listen_session_get_local_session_endpoint (stream_session_t * listener,
1310 session_endpoint_t * sep)
1311{
Florin Coras561af9b2017-12-09 10:19:43 -08001312 transport_proto_t tp = session_get_transport_proto (listener);
Florin Corascea194d2017-10-02 00:18:51 -07001313 transport_connection_t *tc;
Florin Coras561af9b2017-12-09 10:19:43 -08001314 tc = tp_vfts[tp].get_listener (listener->connection_index);
Florin Corascea194d2017-10-02 00:18:51 -07001315 if (!tc)
1316 {
1317 clib_warning ("no transport");
1318 return -1;
1319 }
1320
1321 /* N.B. The ip should not be copied because this is the local endpoint */
1322 sep->port = tc->lcl_port;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001323 sep->transport_proto = tc->proto;
Florin Corascea194d2017-10-02 00:18:51 -07001324 sep->is_ip4 = tc->is_ip4;
1325 return 0;
1326}
1327
Florin Corasfd542f12018-05-16 19:28:24 -07001328void
1329session_flush_frames_main_thread (vlib_main_t * vm)
1330{
1331 ASSERT (vlib_get_thread_index () == 0);
1332 vlib_process_signal_event_mt (vm, session_queue_process_node.index,
1333 SESSION_Q_PROCESS_FLUSH_FRAMES, 0);
1334}
1335
Dave Barach68b0fb02017-02-28 15:15:56 -05001336static clib_error_t *
Florin Corase04c2992017-03-01 08:17:34 -08001337session_manager_main_enable (vlib_main_t * vm)
Dave Barach68b0fb02017-02-28 15:15:56 -05001338{
Florin Corasa332c462018-01-31 06:52:17 -08001339 segment_manager_main_init_args_t _sm_args = { 0 }, *sm_args = &_sm_args;
Dave Barach68b0fb02017-02-28 15:15:56 -05001340 session_manager_main_t *smm = &session_manager_main;
Florin Corase04c2992017-03-01 08:17:34 -08001341 vlib_thread_main_t *vtm = vlib_get_thread_main ();
Florin Coras371ca502018-02-21 12:07:41 -08001342 u32 num_threads, preallocated_sessions_per_worker;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001343 int i, j;
Dave Barach68b0fb02017-02-28 15:15:56 -05001344
Dave Barach68b0fb02017-02-28 15:15:56 -05001345 num_threads = 1 /* main thread */ + vtm->n_threads;
1346
1347 if (num_threads < 1)
1348 return clib_error_return (0, "n_thread_stacks not set");
1349
Dave Barach68b0fb02017-02-28 15:15:56 -05001350 /* configure per-thread ** vectors */
1351 vec_validate (smm->sessions, num_threads - 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001352 vec_validate (smm->tx_buffers, num_threads - 1);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001353 vec_validate (smm->pending_event_vector, num_threads - 1);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001354 vec_validate (smm->pending_disconnects, num_threads - 1);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001355 vec_validate (smm->free_event_vector, num_threads - 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001356 vec_validate (smm->vpp_event_queues, num_threads - 1);
Florin Coras84a30ef2018-01-24 10:49:23 -08001357 vec_validate (smm->peekers_rw_locks, num_threads - 1);
Florin Coras8e43d042018-05-04 15:46:57 -07001358 vec_validate_aligned (smm->ctx, num_threads - 1, CLIB_CACHE_LINE_BYTES);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001359
1360 for (i = 0; i < TRANSPORT_N_PROTO; i++)
Florin Coras7fb0fe12018-04-09 09:24:52 -07001361 {
1362 vec_validate (smm->current_enqueue_epoch[i], num_threads - 1);
1363 vec_validate (smm->session_to_enqueue[i], num_threads - 1);
1364 for (j = 0; j < num_threads; j++)
1365 smm->current_enqueue_epoch[i][j] = 1;
1366 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001367
Dave Barachacd2a6a2017-05-16 17:41:34 -04001368 for (i = 0; i < num_threads; i++)
1369 {
1370 vec_validate (smm->free_event_vector[i], 0);
1371 _vec_len (smm->free_event_vector[i]) = 0;
1372 vec_validate (smm->pending_event_vector[i], 0);
1373 _vec_len (smm->pending_event_vector[i]) = 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -07001374 vec_validate (smm->pending_disconnects[i], 0);
1375 _vec_len (smm->pending_disconnects[i]) = 0;
Florin Coras29ca16f2017-11-02 18:14:17 -04001376 if (num_threads > 1)
Florin Coras84a30ef2018-01-24 10:49:23 -08001377 clib_rwlock_init (&smm->peekers_rw_locks[i]);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001378 }
1379
Florin Corasc1a448b2018-04-20 10:51:49 -07001380#if SESSION_DEBUG
Florin Coras3e350af2017-03-30 02:54:28 -07001381 vec_validate (smm->last_event_poll_by_thread, num_threads - 1);
1382#endif
1383
Florin Corasb384b542018-01-15 01:08:33 -08001384 /* Allocate vpp event queues segment and queue */
1385 session_vpp_event_queues_allocate (smm);
1386
1387 /* Initialize fifo segment main baseva and timeout */
Florin Corasa332c462018-01-31 06:52:17 -08001388 sm_args->baseva = smm->session_baseva + smm->evt_qs_segment_size;
1389 sm_args->size = smm->session_va_space_size;
1390 segment_manager_main_init (sm_args);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001391
Florin Coras66b11312017-07-31 17:18:03 -07001392 /* Preallocate sessions */
Dave Barachb7f1faa2017-08-29 11:43:37 -04001393 if (smm->preallocated_sessions)
Dave Barach68b0fb02017-02-28 15:15:56 -05001394 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001395 if (num_threads == 1)
Florin Coras66b11312017-07-31 17:18:03 -07001396 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001397 pool_init_fixed (smm->sessions[0], smm->preallocated_sessions);
Florin Coras66b11312017-07-31 17:18:03 -07001398 }
Dave Barachb7f1faa2017-08-29 11:43:37 -04001399 else
Florin Coras66b11312017-07-31 17:18:03 -07001400 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001401 int j;
1402 preallocated_sessions_per_worker =
1403 (1.1 * (f64) smm->preallocated_sessions /
1404 (f64) (num_threads - 1));
1405
1406 for (j = 1; j < num_threads; j++)
Florin Coras66b11312017-07-31 17:18:03 -07001407 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001408 pool_init_fixed (smm->sessions[j],
1409 preallocated_sessions_per_worker);
Florin Coras66b11312017-07-31 17:18:03 -07001410 }
Florin Coras66b11312017-07-31 17:18:03 -07001411 }
1412 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001413
Florin Coras04e53442017-07-16 17:12:15 -07001414 session_lookup_init ();
Florin Corascea194d2017-10-02 00:18:51 -07001415 app_namespaces_init ();
Florin Coras3cbc04b2017-10-02 00:18:51 -07001416 transport_init ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001417
Florin Corase04c2992017-03-01 08:17:34 -08001418 smm->is_enabled = 1;
1419
Florin Coras561af9b2017-12-09 10:19:43 -08001420 /* Enable transports */
1421 transport_enable_disable (vm, 1);
Florin Corasa0b34a72017-03-07 01:20:52 -08001422
Dave Barach68b0fb02017-02-28 15:15:56 -05001423 return 0;
1424}
1425
Florin Corasa5464812017-04-19 13:00:05 -07001426void
1427session_node_enable_disable (u8 is_en)
1428{
1429 u8 state = is_en ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED;
Florin Corasfd542f12018-05-16 19:28:24 -07001430 vlib_thread_main_t *vtm = vlib_get_thread_main ();
1431 u8 have_workers = vtm->n_threads != 0;
1432
Florin Corasa5464812017-04-19 13:00:05 -07001433 /* *INDENT-OFF* */
1434 foreach_vlib_main (({
Florin Corasfd542f12018-05-16 19:28:24 -07001435 if (have_workers && ii == 0)
1436 {
1437 vlib_node_set_state (this_vlib_main, session_queue_process_node.index,
1438 state);
1439 if (is_en)
1440 {
1441 vlib_node_t *n = vlib_get_node (this_vlib_main,
1442 session_queue_process_node.index);
1443 vlib_start_process (this_vlib_main, n->runtime_index);
1444 }
1445 else
1446 {
1447 vlib_process_signal_event_mt (this_vlib_main,
1448 session_queue_process_node.index,
1449 SESSION_Q_PROCESS_STOP, 0);
1450 }
1451
1452 continue;
1453 }
Florin Corasa5464812017-04-19 13:00:05 -07001454 vlib_node_set_state (this_vlib_main, session_queue_node.index,
1455 state);
1456 }));
1457 /* *INDENT-ON* */
1458}
1459
Florin Corase04c2992017-03-01 08:17:34 -08001460clib_error_t *
1461vnet_session_enable_disable (vlib_main_t * vm, u8 is_en)
1462{
Florin Corascea194d2017-10-02 00:18:51 -07001463 clib_error_t *error = 0;
Florin Corase04c2992017-03-01 08:17:34 -08001464 if (is_en)
1465 {
1466 if (session_manager_main.is_enabled)
1467 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001468
Florin Corasa5464812017-04-19 13:00:05 -07001469 session_node_enable_disable (is_en);
Florin Corascea194d2017-10-02 00:18:51 -07001470 error = session_manager_main_enable (vm);
Florin Corase04c2992017-03-01 08:17:34 -08001471 }
1472 else
1473 {
1474 session_manager_main.is_enabled = 0;
Florin Corasa5464812017-04-19 13:00:05 -07001475 session_node_enable_disable (is_en);
Florin Corase04c2992017-03-01 08:17:34 -08001476 }
1477
Florin Corascea194d2017-10-02 00:18:51 -07001478 return error;
Florin Corase04c2992017-03-01 08:17:34 -08001479}
1480
Florin Corase04c2992017-03-01 08:17:34 -08001481clib_error_t *
1482session_manager_main_init (vlib_main_t * vm)
1483{
1484 session_manager_main_t *smm = &session_manager_main;
Florin Corasb384b542018-01-15 01:08:33 -08001485 smm->session_baseva = 0x200000000ULL;
Florin Corasa332c462018-01-31 06:52:17 -08001486 smm->session_va_space_size = (u64) 128 << 30;
Florin Corasb384b542018-01-15 01:08:33 -08001487 smm->evt_qs_segment_size = 64 << 20;
Florin Corase04c2992017-03-01 08:17:34 -08001488 smm->is_enabled = 0;
Florin Corase04c2992017-03-01 08:17:34 -08001489 return 0;
1490}
1491
Dave Barach2c25a622017-06-26 11:35:07 -04001492VLIB_INIT_FUNCTION (session_manager_main_init);
1493
1494static clib_error_t *
1495session_config_fn (vlib_main_t * vm, unformat_input_t * input)
Dave Barach10d8cc62017-05-30 09:30:07 -04001496{
1497 session_manager_main_t *smm = &session_manager_main;
1498 u32 nitems;
Florin Coras66b11312017-07-31 17:18:03 -07001499 uword tmp;
Dave Barach10d8cc62017-05-30 09:30:07 -04001500
1501 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1502 {
1503 if (unformat (input, "event-queue-length %d", &nitems))
1504 {
1505 if (nitems >= 2048)
1506 smm->configured_event_queue_length = nitems;
1507 else
1508 clib_warning ("event queue length %d too small, ignored", nitems);
1509 }
Florin Coras66b11312017-07-31 17:18:03 -07001510 else if (unformat (input, "preallocated-sessions %d",
1511 &smm->preallocated_sessions))
Dave Barach2c25a622017-06-26 11:35:07 -04001512 ;
Florin Coras66b11312017-07-31 17:18:03 -07001513 else if (unformat (input, "v4-session-table-buckets %d",
1514 &smm->configured_v4_session_table_buckets))
1515 ;
1516 else if (unformat (input, "v4-halfopen-table-buckets %d",
1517 &smm->configured_v4_halfopen_table_buckets))
1518 ;
1519 else if (unformat (input, "v6-session-table-buckets %d",
1520 &smm->configured_v6_session_table_buckets))
1521 ;
1522 else if (unformat (input, "v6-halfopen-table-buckets %d",
1523 &smm->configured_v6_halfopen_table_buckets))
1524 ;
1525 else if (unformat (input, "v4-session-table-memory %U",
1526 unformat_memory_size, &tmp))
1527 {
1528 if (tmp >= 0x100000000)
1529 return clib_error_return (0, "memory size %llx (%lld) too large",
1530 tmp, tmp);
1531 smm->configured_v4_session_table_memory = tmp;
1532 }
1533 else if (unformat (input, "v4-halfopen-table-memory %U",
1534 unformat_memory_size, &tmp))
1535 {
1536 if (tmp >= 0x100000000)
1537 return clib_error_return (0, "memory size %llx (%lld) too large",
1538 tmp, tmp);
1539 smm->configured_v4_halfopen_table_memory = tmp;
1540 }
1541 else if (unformat (input, "v6-session-table-memory %U",
1542 unformat_memory_size, &tmp))
1543 {
1544 if (tmp >= 0x100000000)
1545 return clib_error_return (0, "memory size %llx (%lld) too large",
1546 tmp, tmp);
1547 smm->configured_v6_session_table_memory = tmp;
1548 }
1549 else if (unformat (input, "v6-halfopen-table-memory %U",
1550 unformat_memory_size, &tmp))
1551 {
1552 if (tmp >= 0x100000000)
1553 return clib_error_return (0, "memory size %llx (%lld) too large",
1554 tmp, tmp);
1555 smm->configured_v6_halfopen_table_memory = tmp;
1556 }
Florin Coras93e65802017-11-29 00:07:11 -05001557 else if (unformat (input, "local-endpoints-table-memory %U",
1558 unformat_memory_size, &tmp))
1559 {
1560 if (tmp >= 0x100000000)
1561 return clib_error_return (0, "memory size %llx (%lld) too large",
1562 tmp, tmp);
1563 smm->local_endpoints_table_memory = tmp;
1564 }
1565 else if (unformat (input, "local-endpoints-table-buckets %d",
1566 &smm->local_endpoints_table_buckets))
1567 ;
Florin Corasb384b542018-01-15 01:08:33 -08001568 else if (unformat (input, "evt_qs_memfd_seg"))
1569 smm->evt_qs_use_memfd_seg = 1;
Dave Barach10d8cc62017-05-30 09:30:07 -04001570 else
1571 return clib_error_return (0, "unknown input `%U'",
1572 format_unformat_error, input);
1573 }
1574 return 0;
1575}
1576
1577VLIB_CONFIG_FUNCTION (session_config_fn, "session");
1578
Dave Barach68b0fb02017-02-28 15:15:56 -05001579/*
1580 * fd.io coding-style-patch-verification: ON
1581 *
1582 * Local Variables:
1583 * eval: (c-set-style "gnu")
1584 * End:
1585 */