FD.io VPP  v21.01.1
Vector Packet Processing
session_node.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017-2019 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 #include <math.h>
17 #include <vlib/vlib.h>
18 #include <vnet/vnet.h>
19 #include <vppinfra/elog.h>
20 #include <vnet/session/transport.h>
21 #include <vnet/session/session.h>
26 #include <svm/queue.h>
27 
28 #define app_check_thread_and_barrier(_fn, _arg) \
29  if (!vlib_thread_is_main_w_barrier ()) \
30  { \
31  vlib_rpc_call_main_thread (_fn, (u8 *) _arg, sizeof(*_arg)); \
32  return; \
33  }
34 
35 static void
37 {
39  vnet_listen_args_t _a, *a = &_a;
40  app_worker_t *app_wrk;
41  application_t *app;
42  int rv;
43 
45 
46  app = application_lookup (mp->client_index);
47  if (!app)
48  return;
49 
50  clib_memset (a, 0, sizeof (*a));
51  a->sep.is_ip4 = mp->is_ip4;
52  ip_copy (&a->sep.ip, &mp->ip, mp->is_ip4);
53  a->sep.port = mp->port;
54  a->sep.fib_index = mp->vrf;
55  a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
56  a->sep.transport_proto = mp->proto;
57  a->sep_ext.ckpair_index = mp->ckpair_index;
58  a->sep_ext.crypto_engine = mp->crypto_engine;
59  a->app_index = app->app_index;
60  a->wrk_map_index = mp->wrk_index;
61  a->sep_ext.transport_flags = mp->flags;
62 
63  if ((rv = vnet_listen (a)))
64  clib_warning ("listen returned: %U", format_session_error, rv);
65 
66  app_wrk = application_get_worker (app, mp->wrk_index);
67  mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
68  return;
69 }
70 
71 static void
73 {
75  vnet_listen_args_t _a, *a = &_a;
76  app_worker_t *app_wrk;
77  application_t *app;
78  int rv;
79 
81 
82  app = application_lookup (mp->client_index);
83  if (!app)
84  return;
85 
86  clib_memset (a, 0, sizeof (*a));
87  a->uri = (char *) mp->uri;
88  a->app_index = app->app_index;
89  rv = vnet_bind_uri (a);
90 
91  app_wrk = application_get_worker (app, 0);
92  mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
93 }
94 
95 static void
97 {
99  vnet_connect_args_t _a, *a = &_a;
100  app_worker_t *app_wrk;
101  application_t *app;
102  int rv;
103 
105 
106  app = application_lookup (mp->client_index);
107  if (!app)
108  return;
109 
110  clib_memset (a, 0, sizeof (*a));
111  a->sep.is_ip4 = mp->is_ip4;
112  clib_memcpy_fast (&a->sep.ip, &mp->ip, sizeof (mp->ip));
113  a->sep.port = mp->port;
114  a->sep.transport_proto = mp->proto;
115  a->sep.peer.fib_index = mp->vrf;
116  clib_memcpy_fast (&a->sep.peer.ip, &mp->lcl_ip, sizeof (mp->lcl_ip));
117  if (mp->is_ip4)
118  {
119  ip46_address_mask_ip4 (&a->sep.ip);
120  ip46_address_mask_ip4 (&a->sep.peer.ip);
121  }
122  a->sep.peer.port = mp->lcl_port;
123  a->sep.peer.sw_if_index = ENDPOINT_INVALID_INDEX;
124  a->sep_ext.parent_handle = mp->parent_handle;
125  a->sep_ext.ckpair_index = mp->ckpair_index;
126  a->sep_ext.crypto_engine = mp->crypto_engine;
127  a->sep_ext.transport_flags = mp->flags;
128  if (mp->hostname_len)
129  {
130  vec_validate (a->sep_ext.hostname, mp->hostname_len - 1);
131  clib_memcpy_fast (a->sep_ext.hostname, mp->hostname, mp->hostname_len);
132  }
133  a->api_context = mp->context;
134  a->app_index = app->app_index;
135  a->wrk_map_index = mp->wrk_index;
136 
137  if ((rv = vnet_connect (a)))
138  {
139  clib_warning ("connect returned: %U", format_session_error, rv);
140  app_wrk = application_get_worker (app, mp->wrk_index);
141  mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, rv);
142  }
143 
144  vec_free (a->sep_ext.hostname);
145 }
146 
147 static void
149 {
151  vnet_connect_args_t _a, *a = &_a;
152  app_worker_t *app_wrk;
153  application_t *app;
154  int rv;
155 
157 
158  app = application_lookup (mp->client_index);
159  if (!app)
160  return;
161 
162  clib_memset (a, 0, sizeof (*a));
163  a->uri = (char *) mp->uri;
164  a->api_context = mp->context;
165  a->app_index = app->app_index;
166  if ((rv = vnet_connect_uri (a)))
167  {
168  clib_warning ("connect_uri returned: %d", rv);
169  app_wrk = application_get_worker (app, 0 /* default wrk only */ );
170  mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, rv);
171  }
172 }
173 
174 static void
176 {
178  vnet_disconnect_args_t _a, *a = &_a;
179  application_t *app;
180 
181  app = application_lookup (mp->client_index);
182  if (!app)
183  return;
184 
185  a->app_index = app->app_index;
186  a->handle = mp->handle;
188 }
189 
190 static void
192 {
194  vnet_app_detach_args_t _a, *a = &_a;
195  application_t *app;
196 
198 
199  app = application_lookup (mp->client_index);
200  if (!app)
201  return;
202 
203  a->app_index = app->app_index;
204  a->api_client_index = mp->client_index;
206 }
207 
208 static void
210 {
212  vnet_unlisten_args_t _a, *a = &_a;
213  app_worker_t *app_wrk;
214  application_t *app;
215  int rv;
216 
218 
219  app = application_lookup (mp->client_index);
220  if (!app)
221  return;
222 
223  clib_memset (a, 0, sizeof (*a));
224  a->app_index = app->app_index;
225  a->handle = mp->handle;
226  a->wrk_map_index = mp->wrk_index;
227  if ((rv = vnet_unlisten (a)))
228  clib_warning ("unlisten returned: %d", rv);
229 
230  app_wrk = application_get_worker (app, a->wrk_map_index);
231  if (!app_wrk)
232  return;
233 
234  mq_send_unlisten_reply (app_wrk, mp->handle, mp->context, rv);
235 }
236 
237 static void
239 {
241  vnet_disconnect_args_t _a = { 0 }, *a = &_a;
242  session_state_t old_state;
243  app_worker_t *app_wrk;
244  session_t *s;
245 
246  /* Server isn't interested, kill the session */
247  if (mp->retval)
248  {
249  a->app_index = mp->context;
250  a->handle = mp->handle;
252  return;
253  }
254 
255  /* Mail this back from the main thread. We're not polling in main
256  * thread so we're using other workers for notifications. */
257  if (vlib_num_workers () && vlib_get_thread_index () != 0
258  && session_thread_from_handle (mp->handle) == 0)
259  {
261  (u8 *) mp, sizeof (*mp));
262  return;
263  }
264 
266  if (!s)
267  return;
268 
269  app_wrk = app_worker_get (s->app_wrk_index);
270  if (app_wrk->app_index != mp->context)
271  {
272  clib_warning ("app doesn't own session");
273  return;
274  }
275 
276  if (!session_has_transport (s))
277  {
278  s->session_state = SESSION_STATE_READY;
280  return;
281  }
282  else
283  {
284  old_state = s->session_state;
285  s->session_state = SESSION_STATE_READY;
286 
289 
290  /* Closed while waiting for app to reply. Resend disconnect */
291  if (old_state >= SESSION_STATE_TRANSPORT_CLOSING)
292  {
293  app_worker_close_notify (app_wrk, s);
294  s->session_state = old_state;
295  return;
296  }
297  }
298 }
299 
300 static void
302 {
303  vnet_disconnect_args_t _a = { 0 }, *a = &_a;
305  app_worker_t *app_wrk;
306  session_t *s;
307  application_t *app;
308  u32 index, thread_index;
309 
310  mp = (session_reset_reply_msg_t *) data;
311  app = application_lookup (mp->context);
312  if (!app)
313  return;
314 
315  session_parse_handle (mp->handle, &index, &thread_index);
316  s = session_get_if_valid (index, thread_index);
317 
318  /* No session or not the right session */
319  if (!s || s->session_state < SESSION_STATE_TRANSPORT_CLOSING)
320  return;
321 
322  app_wrk = app_worker_get (s->app_wrk_index);
323  if (!app_wrk || app_wrk->app_index != app->app_index)
324  {
325  clib_warning ("App %u does not own handle 0x%lx!", app->app_index,
326  mp->handle);
327  return;
328  }
329 
330  /* Client objected to resetting the session, log and continue */
331  if (mp->retval)
332  {
333  clib_warning ("client retval %d", mp->retval);
334  return;
335  }
336 
337  /* This comes as a response to a reset, transport only waiting for
338  * confirmation to remove connection state, no need to disconnect */
339  a->handle = mp->handle;
340  a->app_index = app->app_index;
342 }
343 
344 static void
346 {
348  vnet_disconnect_args_t _a, *a = &_a;
349  svm_msg_q_msg_t _msg, *msg = &_msg;
351  app_worker_t *app_wrk;
352  session_event_t *evt;
353  session_t *s;
354  application_t *app;
355  int rv = 0;
356 
357  mp = (session_disconnected_msg_t *) data;
358  if (!(s = session_get_from_handle_if_valid (mp->handle)))
359  {
360  clib_warning ("could not disconnect handle %llu", mp->handle);
361  return;
362  }
363  app_wrk = app_worker_get (s->app_wrk_index);
364  app = application_lookup (mp->client_index);
365  if (!(app_wrk && app && app->app_index == app_wrk->app_index))
366  {
367  clib_warning ("could not disconnect session: %llu app: %u",
368  mp->handle, mp->client_index);
369  return;
370  }
371 
372  a->handle = mp->handle;
373  a->app_index = app_wrk->wrk_index;
374  rv = vnet_disconnect_session (a);
375 
378  SVM_Q_WAIT, msg);
379  evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
380  clib_memset (evt, 0, sizeof (*evt));
381  evt->event_type = SESSION_CTRL_EVT_DISCONNECTED_REPLY;
382  rmp = (session_disconnected_reply_msg_t *) evt->data;
383  rmp->handle = mp->handle;
384  rmp->context = mp->context;
385  rmp->retval = rv;
386  svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
387 }
388 
389 static void
391 {
393  vnet_disconnect_args_t _a, *a = &_a;
394  application_t *app;
395 
396  mp = (session_disconnected_reply_msg_t *) data;
397 
398  /* Client objected to disconnecting the session, log and continue */
399  if (mp->retval)
400  {
401  clib_warning ("client retval %d", mp->retval);
402  return;
403  }
404 
405  /* Disconnect has been confirmed. Confirm close to transport */
406  app = application_lookup (mp->context);
407  if (app)
408  {
409  a->handle = mp->handle;
410  a->app_index = app->app_index;
412  }
413 }
414 
415 static void
417 {
420  svm_msg_q_msg_t _msg, *msg = &_msg;
421  app_worker_t *app_wrk;
422  u32 owner_app_wrk_map;
423  session_event_t *evt;
424  session_t *s;
425  application_t *app;
426 
427  app = application_lookup (mp->client_index);
428  if (!app)
429  return;
430  if (!(s = session_get_from_handle_if_valid (mp->handle)))
431  {
432  clib_warning ("invalid handle %llu", mp->handle);
433  return;
434  }
435  app_wrk = app_worker_get (s->app_wrk_index);
436  if (app_wrk->app_index != app->app_index)
437  {
438  clib_warning ("app %u does not own session %llu", app->app_index,
439  mp->handle);
440  return;
441  }
442  owner_app_wrk_map = app_wrk->wrk_map_index;
443  app_wrk = application_get_worker (app, mp->wrk_index);
444 
445  /* This needs to come from the new owner */
446  if (mp->req_wrk_index == owner_app_wrk_map)
447  {
449 
452  SVM_Q_WAIT, msg);
453  evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
454  clib_memset (evt, 0, sizeof (*evt));
455  evt->event_type = SESSION_CTRL_EVT_REQ_WORKER_UPDATE;
456  wump = (session_req_worker_update_msg_t *) evt->data;
457  wump->session_handle = mp->handle;
458  svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
459  return;
460  }
461 
462  app_worker_own_session (app_wrk, s);
463 
464  /*
465  * Send reply
466  */
469  SVM_Q_WAIT, msg);
470  evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
471  clib_memset (evt, 0, sizeof (*evt));
472  evt->event_type = SESSION_CTRL_EVT_WORKER_UPDATE_REPLY;
473  rmp = (session_worker_update_reply_msg_t *) evt->data;
474  rmp->handle = mp->handle;
475  rmp->rx_fifo = pointer_to_uword (s->rx_fifo);
476  rmp->tx_fifo = pointer_to_uword (s->tx_fifo);
478  svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
479 
480  /*
481  * Retransmit messages that may have been lost
482  */
483  if (s->tx_fifo && !svm_fifo_is_empty (s->tx_fifo))
485 
486  if (s->rx_fifo && !svm_fifo_is_empty (s->rx_fifo))
488 
489  if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
490  app_worker_close_notify (app_wrk, s);
491 }
492 
493 static void
495 {
497  svm_msg_q_msg_t _msg, *msg = &_msg;
499  app_worker_t *app_wrk;
500  session_event_t *evt;
501  application_t *app;
502 
503  app = application_lookup (mp->client_index);
504  if (!app)
505  return;
506 
507  app_wrk = application_get_worker (app, mp->wrk_index);
508 
511  msg);
512  evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
513  clib_memset (evt, 0, sizeof (*evt));
514  evt->event_type = SESSION_CTRL_EVT_APP_WRK_RPC;
515  rmp = (session_app_wrk_rpc_msg_t *) evt->data;
516  clib_memcpy (rmp->data, mp->data, sizeof (mp->data));
517  svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
518 }
519 
521 
522 typedef struct
523 {
527 
528 /* packet trace format function */
529 static u8 *
530 format_session_queue_trace (u8 * s, va_list * args)
531 {
532  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
533  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
534  session_queue_trace_t *t = va_arg (*args, session_queue_trace_t *);
535 
536  s = format (s, "session index %d thread index %d",
538  return s;
539 }
540 
541 #define foreach_session_queue_error \
542 _(TX, "Packets transmitted") \
543 _(TIMER, "Timer events") \
544 _(NO_BUFFER, "Out of buffers")
545 
546 typedef enum
547 {
548 #define _(sym,str) SESSION_QUEUE_ERROR_##sym,
550 #undef _
553 
554 static char *session_queue_error_strings[] = {
555 #define _(sym,string) string,
557 #undef _
558 };
559 
560 enum
561 {
565 };
566 
567 static void
569  u32 next_index, u32 * to_next, u16 n_segs,
570  session_t * s, u32 n_trace)
571 {
572  while (n_trace && n_segs)
573  {
574  vlib_buffer_t *b = vlib_get_buffer (vm, to_next[0]);
575  if (PREDICT_TRUE
577  (vm, node, next_index, b, 1 /* follow_chain */ )))
578  {
580  vlib_add_trace (vm, node, b, sizeof (*t));
583  n_trace--;
584  }
585  to_next++;
586  n_segs--;
587  }
588  vlib_set_trace_count (vm, node, n_trace);
589 }
590 
591 always_inline void
593  vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
594 {
595  vlib_buffer_t *chain_b, *prev_b;
596  u32 chain_bi0, to_deq, left_from_seg;
597  session_worker_t *wrk;
598  u16 len_to_deq, n_bytes_read;
599  u8 *data, j;
600 
601  wrk = session_main_get_worker (ctx->s->thread_index);
602  b->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
604 
605  chain_b = b;
606  left_from_seg = clib_min (ctx->sp.snd_mss - b->current_length,
607  ctx->left_to_snd);
608  to_deq = left_from_seg;
609  for (j = 1; j < ctx->n_bufs_per_seg; j++)
610  {
611  prev_b = chain_b;
612  len_to_deq = clib_min (to_deq, ctx->deq_per_buf);
613 
614  *n_bufs -= 1;
615  chain_bi0 = wrk->tx_buffers[*n_bufs];
616  chain_b = vlib_get_buffer (vm, chain_bi0);
617  chain_b->current_data = 0;
618  data = vlib_buffer_get_current (chain_b);
619  if (peek_data)
620  {
621  n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo,
622  ctx->sp.tx_offset, len_to_deq, data);
623  ctx->sp.tx_offset += n_bytes_read;
624  }
625  else
626  {
627  if (ctx->transport_vft->transport_options.tx_type ==
629  {
630  svm_fifo_t *f = ctx->s->tx_fifo;
631  session_dgram_hdr_t *hdr = &ctx->hdr;
632  u16 deq_now;
633  deq_now = clib_min (hdr->data_length - hdr->data_offset,
634  len_to_deq);
635  n_bytes_read = svm_fifo_peek (f, hdr->data_offset, deq_now,
636  data);
637  ASSERT (n_bytes_read > 0);
638 
639  hdr->data_offset += n_bytes_read;
640  if (hdr->data_offset == hdr->data_length)
641  {
643  svm_fifo_dequeue_drop (f, offset);
644  if (ctx->left_to_snd > n_bytes_read)
645  svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
646  (u8 *) & ctx->hdr);
647  }
648  else if (ctx->left_to_snd == n_bytes_read)
649  svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
650  sizeof (session_dgram_pre_hdr_t));
651  }
652  else
653  n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
654  len_to_deq, data);
655  }
656  ASSERT (n_bytes_read == len_to_deq);
657  chain_b->current_length = n_bytes_read;
659 
660  /* update previous buffer */
661  prev_b->next_buffer = chain_bi0;
662  prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
663 
664  /* update current buffer */
665  chain_b->next_buffer = 0;
666 
667  to_deq -= n_bytes_read;
668  if (to_deq == 0)
669  break;
670  }
671  ASSERT (to_deq == 0
672  && b->total_length_not_including_first_buffer == left_from_seg);
673  ctx->left_to_snd -= left_from_seg;
674 }
675 
676 always_inline void
678  vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
679 {
680  u32 len_to_deq;
681  u8 *data0;
682  int n_bytes_read;
683 
684  /*
685  * Start with the first buffer in chain
686  */
687  b->error = 0;
688  b->flags = VNET_BUFFER_F_LOCALLY_ORIGINATED;
689  b->current_data = 0;
690 
692  len_to_deq = clib_min (ctx->left_to_snd, ctx->deq_per_first_buf);
693 
694  if (peek_data)
695  {
696  n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo, ctx->sp.tx_offset,
697  len_to_deq, data0);
698  ASSERT (n_bytes_read > 0);
699  /* Keep track of progress locally, transport is also supposed to
700  * increment it independently when pushing the header */
701  ctx->sp.tx_offset += n_bytes_read;
702  }
703  else
704  {
705  if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
706  {
707  session_dgram_hdr_t *hdr = &ctx->hdr;
708  svm_fifo_t *f = ctx->s->tx_fifo;
709  u16 deq_now;
710  u32 offset;
711 
712  ASSERT (hdr->data_length > hdr->data_offset);
713  deq_now = clib_min (hdr->data_length - hdr->data_offset,
714  len_to_deq);
715  offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
716  n_bytes_read = svm_fifo_peek (f, offset, deq_now, data0);
717  ASSERT (n_bytes_read > 0);
718 
719  if (ctx->s->session_state == SESSION_STATE_LISTENING)
720  {
721  ip_copy (&ctx->tc->rmt_ip, &hdr->rmt_ip, ctx->tc->is_ip4);
722  ctx->tc->rmt_port = hdr->rmt_port;
723  }
724  hdr->data_offset += n_bytes_read;
725  if (hdr->data_offset == hdr->data_length)
726  {
727  offset = hdr->data_length + SESSION_CONN_HDR_LEN;
728  svm_fifo_dequeue_drop (f, offset);
729  if (ctx->left_to_snd > n_bytes_read)
730  svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
731  (u8 *) & ctx->hdr);
732  }
733  else if (ctx->left_to_snd == n_bytes_read)
734  svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
735  sizeof (session_dgram_pre_hdr_t));
736  }
737  else
738  {
739  n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
740  len_to_deq, data0);
741  ASSERT (n_bytes_read > 0);
742  }
743  }
744  b->current_length = n_bytes_read;
745  ctx->left_to_snd -= n_bytes_read;
746 
747  /*
748  * Fill in the remaining buffers in the chain, if any
749  */
750  if (PREDICT_FALSE (ctx->n_bufs_per_seg > 1 && ctx->left_to_snd))
751  session_tx_fifo_chain_tail (vm, ctx, b, n_bufs, peek_data);
752 }
753 
756 {
757  if (peek_data)
758  {
759  if (PREDICT_TRUE (s->session_state == SESSION_STATE_READY))
760  return 0;
761  /* Can retransmit for closed sessions but can't send new data if
762  * session is not ready or closed */
763  else if (s->session_state < SESSION_STATE_READY)
764  return 1;
765  else if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED)
766  {
767  /* Allow closed transports to still send custom packets.
768  * For instance, tcp may want to send acks in time-wait. */
769  if (s->session_state != SESSION_STATE_TRANSPORT_DELETED
770  && (s->flags & SESSION_F_CUSTOM_TX))
771  return 0;
772  return 2;
773  }
774  }
775  return 0;
776 }
777 
780 {
781  if (peek_data)
782  {
783  return ctx->transport_vft->get_connection (ctx->s->connection_index,
784  ctx->s->thread_index);
785  }
786  else
787  {
788  if (ctx->s->session_state == SESSION_STATE_LISTENING)
789  return ctx->transport_vft->get_listener (ctx->s->connection_index);
790  else
791  {
792  return ctx->transport_vft->get_connection (ctx->s->connection_index,
793  ctx->s->thread_index);
794  }
795  }
796 }
797 
798 always_inline void
800  u32 max_segs, u8 peek_data)
801 {
802  u32 n_bytes_per_buf, n_bytes_per_seg;
803 
804  n_bytes_per_buf = vlib_buffer_get_default_data_size (vm);
806 
807  if (peek_data)
808  {
809  /* Offset in rx fifo from where to peek data */
810  if (PREDICT_FALSE (ctx->sp.tx_offset >= ctx->max_dequeue))
811  {
812  ctx->max_len_to_snd = 0;
813  return;
814  }
815  ctx->max_dequeue -= ctx->sp.tx_offset;
816  }
817  else
818  {
819  if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
820  {
821  u32 len, chain_limit;
822 
823  if (ctx->max_dequeue <= sizeof (ctx->hdr))
824  {
825  ctx->max_len_to_snd = 0;
826  return;
827  }
828 
829  svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
830  (u8 *) & ctx->hdr);
831  ASSERT (ctx->hdr.data_length > ctx->hdr.data_offset);
832  len = ctx->hdr.data_length - ctx->hdr.data_offset;
833 
834  /* Process multiple dgrams if smaller than min (buf_space, mss).
835  * This avoids handling multiple dgrams if they require buffer
836  * chains */
837  chain_limit = clib_min (n_bytes_per_buf - TRANSPORT_MAX_HDRS_LEN,
838  ctx->sp.snd_mss);
839  if (ctx->hdr.data_length <= chain_limit)
840  {
841  u32 first_dgram_len, dgram_len, offset, max_offset;
843 
844  ctx->sp.snd_mss = clib_min (ctx->sp.snd_mss, len);
845  offset = ctx->hdr.data_length + sizeof (session_dgram_hdr_t);
846  first_dgram_len = len;
847  max_offset = clib_min (ctx->max_dequeue, 16 << 10);
848 
849  while (offset < max_offset)
850  {
851  svm_fifo_peek (ctx->s->tx_fifo, offset, sizeof (ctx->hdr),
852  (u8 *) & hdr);
853  ASSERT (hdr.data_length > hdr.data_offset);
854  dgram_len = hdr.data_length - hdr.data_offset;
855  if (len + dgram_len > ctx->max_dequeue
856  || first_dgram_len != dgram_len)
857  break;
858  len += dgram_len;
859  offset += sizeof (hdr) + hdr.data_length;
860  }
861  }
862 
863  ctx->max_dequeue = len;
864  }
865  }
866  ASSERT (ctx->max_dequeue > 0);
867 
868  /* Ensure we're not writing more than transport window allows */
869  if (ctx->max_dequeue < ctx->sp.snd_space)
870  {
871  /* Constrained by tx queue. Try to send only fully formed segments */
872  ctx->max_len_to_snd = (ctx->max_dequeue > ctx->sp.snd_mss) ?
873  (ctx->max_dequeue - (ctx->max_dequeue % ctx->sp.snd_mss)) :
874  ctx->max_dequeue;
875  /* TODO Nagle ? */
876  }
877  else
878  {
879  /* Expectation is that snd_space0 is already a multiple of snd_mss */
880  ctx->max_len_to_snd = ctx->sp.snd_space;
881  }
882 
883  /* Check if we're tx constrained by the node */
884  ctx->n_segs_per_evt = ceil ((f64) ctx->max_len_to_snd / ctx->sp.snd_mss);
885  if (ctx->n_segs_per_evt > max_segs)
886  {
887  ctx->n_segs_per_evt = max_segs;
888  ctx->max_len_to_snd = max_segs * ctx->sp.snd_mss;
889  }
890 
891  ASSERT (n_bytes_per_buf > TRANSPORT_MAX_HDRS_LEN);
892  if (ctx->n_segs_per_evt > 1)
893  {
894  u32 n_bytes_last_seg, n_bufs_last_seg;
895 
896  n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->sp.snd_mss;
897  n_bytes_last_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd
898  - ((ctx->n_segs_per_evt - 1) * ctx->sp.snd_mss);
899  ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
900  n_bufs_last_seg = ceil ((f64) n_bytes_last_seg / n_bytes_per_buf);
901  ctx->n_bufs_needed = ((ctx->n_segs_per_evt - 1) * ctx->n_bufs_per_seg)
902  + n_bufs_last_seg;
903  }
904  else
905  {
906  n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd;
907  ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
908  ctx->n_bufs_needed = ctx->n_bufs_per_seg;
909  }
910 
911  ctx->deq_per_buf = clib_min (ctx->sp.snd_mss, n_bytes_per_buf);
912  ctx->deq_per_first_buf = clib_min (ctx->sp.snd_mss,
913  n_bytes_per_buf -
915 }
916 
917 always_inline void
920  session_evt_elt_t * elt)
921 {
922  session_t *s = ctx->s;
923 
926  if (svm_fifo_set_event (s->tx_fifo))
927  session_evt_add_head_old (wrk, elt);
928 }
929 
930 always_inline int
933  session_evt_elt_t * elt,
934  int *n_tx_packets, u8 peek_data)
935 {
936  u32 n_trace, n_left, pbi, next_index, max_burst;
937  session_tx_context_t *ctx = &wrk->ctx;
939  session_event_t *e = &elt->evt;
940  vlib_main_t *vm = wrk->vm;
942  vlib_buffer_t *pb;
943  u16 n_bufs, rv;
944 
945  if (PREDICT_FALSE ((rv = session_tx_not_ready (ctx->s, peek_data))))
946  {
947  if (rv < 2)
948  session_evt_add_old (wrk, elt);
949  return SESSION_TX_NO_DATA;
950  }
951 
952  next_index = smm->session_type_to_next[ctx->s->session_type];
953  max_burst = SESSION_NODE_FRAME_SIZE - *n_tx_packets;
954 
955  tp = session_get_transport_proto (ctx->s);
957  ctx->tc = session_tx_get_transport (ctx, peek_data);
958 
959  if (PREDICT_FALSE (e->event_type == SESSION_IO_EVT_TX_FLUSH))
960  {
961  if (ctx->transport_vft->flush_data)
962  ctx->transport_vft->flush_data (ctx->tc);
963  e->event_type = SESSION_IO_EVT_TX;
964  }
965 
966  if (ctx->s->flags & SESSION_F_CUSTOM_TX)
967  {
968  u32 n_custom_tx;
969  ctx->s->flags &= ~SESSION_F_CUSTOM_TX;
970  ctx->sp.max_burst_size = max_burst;
971  n_custom_tx = ctx->transport_vft->custom_tx (ctx->tc, &ctx->sp);
972  *n_tx_packets += n_custom_tx;
973  if (PREDICT_FALSE
974  (ctx->s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
975  return SESSION_TX_OK;
976  max_burst -= n_custom_tx;
977  if (!max_burst || (ctx->s->flags & SESSION_F_CUSTOM_TX))
978  {
979  session_evt_add_old (wrk, elt);
980  return SESSION_TX_OK;
981  }
982  }
983 
984  transport_connection_snd_params (ctx->tc, &ctx->sp);
985 
986  if (!ctx->sp.snd_space)
987  {
988  /* If the deschedule flag was set, remove session from scheduler.
989  * Transport is responsible for rescheduling this session. */
990  if (ctx->sp.flags & TRANSPORT_SND_F_DESCHED)
992  /* Request to postpone the session, e.g., zero-wnd and transport
993  * is not currently probing */
994  else if (ctx->sp.flags & TRANSPORT_SND_F_POSTPONE)
995  session_evt_add_old (wrk, elt);
996  /* This flow queue is "empty" so it should be re-evaluated before
997  * the ones that have data to send. */
998  else
999  session_evt_add_head_old (wrk, elt);
1000 
1001  return SESSION_TX_NO_DATA;
1002  }
1003 
1005  {
1006  u32 snd_space = transport_connection_tx_pacer_burst (ctx->tc);
1007  if (snd_space < TRANSPORT_PACER_MIN_BURST)
1008  {
1009  session_evt_add_head_old (wrk, elt);
1010  return SESSION_TX_NO_DATA;
1011  }
1012  snd_space = clib_min (ctx->sp.snd_space, snd_space);
1013  ctx->sp.snd_space = snd_space >= ctx->sp.snd_mss ?
1014  snd_space - snd_space % ctx->sp.snd_mss : snd_space;
1015  }
1016 
1017  /* Check how much we can pull. */
1018  session_tx_set_dequeue_params (vm, ctx, max_burst, peek_data);
1019 
1020  if (PREDICT_FALSE (!ctx->max_len_to_snd))
1021  {
1023  session_tx_maybe_reschedule (wrk, ctx, elt);
1024  return SESSION_TX_NO_DATA;
1025  }
1026 
1029  n_bufs = vlib_buffer_alloc (vm, wrk->tx_buffers, ctx->n_bufs_needed);
1030  if (PREDICT_FALSE (n_bufs < ctx->n_bufs_needed))
1031  {
1032  if (n_bufs)
1033  vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
1034  session_evt_add_head_old (wrk, elt);
1036  SESSION_QUEUE_ERROR_NO_BUFFER, 1);
1037  return SESSION_TX_NO_BUFFERS;
1038  }
1039 
1042 
1043  ctx->left_to_snd = ctx->max_len_to_snd;
1044  n_left = ctx->n_segs_per_evt;
1045 
1046  while (n_left >= 4)
1047  {
1048  vlib_buffer_t *b0, *b1;
1049  u32 bi0, bi1;
1050 
1051  pbi = wrk->tx_buffers[n_bufs - 3];
1052  pb = vlib_get_buffer (vm, pbi);
1053  vlib_prefetch_buffer_header (pb, STORE);
1054  pbi = wrk->tx_buffers[n_bufs - 4];
1055  pb = vlib_get_buffer (vm, pbi);
1056  vlib_prefetch_buffer_header (pb, STORE);
1057 
1058  bi0 = wrk->tx_buffers[--n_bufs];
1059  bi1 = wrk->tx_buffers[--n_bufs];
1060 
1061  b0 = vlib_get_buffer (vm, bi0);
1062  b1 = vlib_get_buffer (vm, bi1);
1063 
1064  session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
1065  session_tx_fill_buffer (vm, ctx, b1, &n_bufs, peek_data);
1066 
1067  ctx->transport_vft->push_header (ctx->tc, b0);
1068  ctx->transport_vft->push_header (ctx->tc, b1);
1069 
1070  n_left -= 2;
1071 
1074 
1075  vec_add1 (wrk->pending_tx_buffers, bi0);
1076  vec_add1 (wrk->pending_tx_buffers, bi1);
1077  vec_add1 (wrk->pending_tx_nexts, next_index);
1078  vec_add1 (wrk->pending_tx_nexts, next_index);
1079  }
1080  while (n_left)
1081  {
1082  vlib_buffer_t *b0;
1083  u32 bi0;
1084 
1085  if (n_left > 1)
1086  {
1087  pbi = wrk->tx_buffers[n_bufs - 2];
1088  pb = vlib_get_buffer (vm, pbi);
1089  vlib_prefetch_buffer_header (pb, STORE);
1090  }
1091 
1092  bi0 = wrk->tx_buffers[--n_bufs];
1093  b0 = vlib_get_buffer (vm, bi0);
1094  session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
1095 
1096  /* Ask transport to push header after current_length and
1097  * total_length_not_including_first_buffer are updated */
1098  ctx->transport_vft->push_header (ctx->tc, b0);
1099 
1100  n_left -= 1;
1101 
1103 
1104  vec_add1 (wrk->pending_tx_buffers, bi0);
1105  vec_add1 (wrk->pending_tx_nexts, next_index);
1106  }
1107 
1108  if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node)) > 0))
1109  session_tx_trace_frame (vm, node, next_index, wrk->pending_tx_buffers,
1110  ctx->n_segs_per_evt, ctx->s, n_trace);
1111 
1112  if (PREDICT_FALSE (n_bufs))
1113  vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
1114 
1115  *n_tx_packets += ctx->n_segs_per_evt;
1116 
1117  SESSION_EVT (SESSION_EVT_DEQ, ctx->s, ctx->max_len_to_snd, ctx->max_dequeue,
1118  ctx->s->tx_fifo->has_event, wrk->last_vlib_time);
1119 
1120  ASSERT (ctx->left_to_snd == 0);
1121 
1122  /* If we couldn't dequeue all bytes reschedule as old flow. Otherwise,
1123  * check if application enqueued more data and reschedule accordingly */
1124  if (ctx->max_len_to_snd < ctx->max_dequeue)
1125  session_evt_add_old (wrk, elt);
1126  else
1127  session_tx_maybe_reschedule (wrk, ctx, elt);
1128 
1129  if (!peek_data)
1130  {
1131  u32 n_dequeued = ctx->max_len_to_snd;
1132  if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
1133  n_dequeued += ctx->n_segs_per_evt * SESSION_CONN_HDR_LEN;
1134  if (svm_fifo_needs_deq_ntf (ctx->s->tx_fifo, n_dequeued))
1135  session_dequeue_notify (ctx->s);
1136  }
1137  return SESSION_TX_OK;
1138 }
1139 
1140 int
1143  session_evt_elt_t * e, int *n_tx_packets)
1144 {
1145  return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 1);
1146 }
1147 
1148 int
1151  session_evt_elt_t * e, int *n_tx_packets)
1152 {
1153  return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 0);
1154 }
1155 
1156 int
1159  session_evt_elt_t * elt, int *n_tx_packets)
1160 {
1161  transport_send_params_t *sp = &wrk->ctx.sp;
1162  session_t *s = wrk->ctx.s;
1163  u32 n_packets;
1164 
1165  if (PREDICT_FALSE (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
1166  return 0;
1167 
1168  /* Clear custom-tx flag used to request reschedule for tx */
1169  s->flags &= ~SESSION_F_CUSTOM_TX;
1170 
1171  sp->max_burst_size = clib_min (SESSION_NODE_FRAME_SIZE - *n_tx_packets,
1173 
1174  n_packets = transport_custom_tx (session_get_transport_proto (s), s, sp);
1175  *n_tx_packets += n_packets;
1176 
1177  if (s->flags & SESSION_F_CUSTOM_TX)
1178  {
1179  session_evt_add_old (wrk, elt);
1180  }
1181  else if (!(sp->flags & TRANSPORT_SND_F_DESCHED))
1182  {
1185  if (svm_fifo_set_event (s->tx_fifo))
1186  session_evt_add_head_old (wrk, elt);
1187  }
1188 
1189  return n_packets;
1190 }
1191 
1193 session_event_get_session (session_worker_t * wrk, session_event_t * e)
1194 {
1196  return 0;
1197 
1198  ASSERT (session_is_valid (e->session_index, wrk->vm->thread_index));
1199  return pool_elt_at_index (wrk->sessions, e->session_index);
1200 }
1201 
1202 always_inline void
1204 {
1205  clib_llist_index_t ei;
1206  void (*fp) (void *);
1207  session_event_t *e;
1208  session_t *s;
1209 
1210  ei = clib_llist_entry_index (wrk->event_elts, elt);
1211  e = &elt->evt;
1212 
1213  switch (e->event_type)
1214  {
1215  case SESSION_CTRL_EVT_RPC:
1216  fp = e->rpc_args.fp;
1217  (*fp) (e->rpc_args.arg);
1218  break;
1220  s = session_get_from_handle_if_valid (e->session_handle);
1221  if (PREDICT_FALSE (!s))
1222  break;
1224  break;
1226  s = session_get_from_handle_if_valid (e->session_handle);
1227  if (PREDICT_FALSE (!s))
1228  break;
1230  break;
1233  break;
1236  break;
1239  break;
1242  break;
1245  break;
1248  break;
1251  break;
1254  break;
1257  elt));
1258  break;
1261  break;
1264  break;
1267  break;
1270  break;
1271  default:
1272  clib_warning ("unhandled event type %d", e->event_type);
1273  }
1274 
1275  /* Regrab elements in case pool moved */
1276  elt = pool_elt_at_index (wrk->event_elts, ei);
1277  if (!clib_llist_elt_is_linked (elt, evt_list))
1278  {
1279  e = &elt->evt;
1280  if (e->event_type >= SESSION_CTRL_EVT_BOUND)
1281  session_evt_ctrl_data_free (wrk, elt);
1282  session_evt_elt_free (wrk, elt);
1283  }
1284  SESSION_EVT (SESSION_EVT_COUNTS, CNT_CTRL_EVTS, 1, wrk);
1285 }
1286 
1287 always_inline void
1289  session_evt_elt_t * elt, int *n_tx_packets)
1290 {
1291  session_main_t *smm = &session_main;
1292  app_worker_t *app_wrk;
1293  clib_llist_index_t ei;
1294  session_event_t *e;
1295  session_t *s;
1296 
1297  ei = clib_llist_entry_index (wrk->event_elts, elt);
1298  e = &elt->evt;
1299 
1300  switch (e->event_type)
1301  {
1303  case SESSION_IO_EVT_TX:
1304  s = session_event_get_session (wrk, e);
1305  if (PREDICT_FALSE (!s))
1306  break;
1308  wrk->ctx.s = s;
1309  /* Spray packets in per session type frames, since they go to
1310  * different nodes */
1311  (smm->session_tx_fns[s->session_type]) (wrk, node, elt, n_tx_packets);
1312  break;
1313  case SESSION_IO_EVT_RX:
1314  s = session_event_get_session (wrk, e);
1315  if (!s)
1316  break;
1319  break;
1321  s = session_event_get_session (wrk, e);
1322  if (PREDICT_FALSE (!s || s->session_state >= SESSION_STATE_CLOSING))
1323  break;
1325  app_wrk = app_worker_get (s->app_wrk_index);
1326  app_worker_builtin_rx (app_wrk, s);
1327  break;
1329  s = session_get_from_handle_if_valid (e->session_handle);
1330  wrk->ctx.s = s;
1331  if (PREDICT_TRUE (s != 0))
1332  session_tx_fifo_dequeue_internal (wrk, node, elt, n_tx_packets);
1333  break;
1334  default:
1335  clib_warning ("unhandled event type %d", e->event_type);
1336  }
1337 
1338  SESSION_EVT (SESSION_IO_EVT_COUNTS, e->event_type, 1, wrk);
1339 
1340  /* Regrab elements in case pool moved */
1341  elt = pool_elt_at_index (wrk->event_elts, ei);
1342  if (!clib_llist_elt_is_linked (elt, evt_list))
1343  session_evt_elt_free (wrk, elt);
1344 }
1345 
1346 /* *INDENT-OFF* */
1347 static const u32 session_evt_msg_sizes[] = {
1348 #define _(symc, sym) \
1349  [SESSION_CTRL_EVT_ ## symc] = sizeof (session_ ## sym ##_msg_t),
1351 #undef _
1352 };
1353 /* *INDENT-ON* */
1354 
1355 always_inline void
1356 session_evt_add_to_list (session_worker_t * wrk, session_event_t * evt)
1357 {
1358  session_evt_elt_t *elt;
1359 
1360  if (evt->event_type >= SESSION_CTRL_EVT_RPC)
1361  {
1362  elt = session_evt_alloc_ctrl (wrk);
1363  if (evt->event_type >= SESSION_CTRL_EVT_BOUND)
1364  {
1365  elt->evt.ctrl_data_index = session_evt_ctrl_data_alloc (wrk);
1366  elt->evt.event_type = evt->event_type;
1367  clib_memcpy_fast (session_evt_ctrl_data (wrk, elt), evt->data,
1368  session_evt_msg_sizes[evt->event_type]);
1369  }
1370  else
1371  {
1372  /* Internal control events fit into io events footprint */
1373  clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1374  }
1375  }
1376  else
1377  {
1378  elt = session_evt_alloc_new (wrk);
1379  clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1380  }
1381 }
1382 
1383 static void
1386 {
1388  wrk->pending_tx_nexts,
1389  vec_len (wrk->pending_tx_nexts));
1392 }
1393 
1394 static uword
1396  vlib_frame_t * frame)
1397 {
1399  u32 thread_index = vm->thread_index, n_to_dequeue;
1400  session_worker_t *wrk = &smm->wrk[thread_index];
1401  session_evt_elt_t *elt, *ctrl_he, *new_he, *old_he;
1402  clib_llist_index_t ei, next_ei, old_ti;
1403  svm_msg_q_msg_t _msg, *msg = &_msg;
1404  int i = 0, n_tx_packets;
1405  session_event_t *evt;
1406  svm_msg_q_t *mq;
1407 
1408  SESSION_EVT (SESSION_EVT_DISPATCH_START, wrk);
1409 
1410  wrk->last_vlib_time = vlib_time_now (vm);
1412 
1413  /*
1414  * Update transport time
1415  */
1416  transport_update_time (wrk->last_vlib_time, thread_index);
1417  n_tx_packets = vec_len (wrk->pending_tx_buffers);
1418  SESSION_EVT (SESSION_EVT_DSP_CNTRS, UPDATE_TIME, wrk);
1419 
1420  /*
1421  * Dequeue and handle new events
1422  */
1423 
1424  /* Try to dequeue what is available. Don't wait for lock.
1425  * XXX: we may need priorities here */
1426  mq = wrk->vpp_event_queue;
1427  n_to_dequeue = svm_msg_q_size (mq);
1428  if (n_to_dequeue && svm_msg_q_try_lock (mq) == 0)
1429  {
1430  for (i = 0; i < n_to_dequeue; i++)
1431  {
1432  svm_msg_q_sub_w_lock (mq, msg);
1433  evt = svm_msg_q_msg_data (mq, msg);
1434  session_evt_add_to_list (wrk, evt);
1435  svm_msg_q_free_msg (mq, msg);
1436  }
1437  svm_msg_q_unlock (mq);
1438  }
1439 
1440  SESSION_EVT (SESSION_EVT_DSP_CNTRS, MQ_DEQ, wrk, n_to_dequeue, !i);
1441 
1442  /*
1443  * Handle control events
1444  */
1445 
1446  ctrl_he = pool_elt_at_index (wrk->event_elts, wrk->ctrl_head);
1447 
1448  /* *INDENT-OFF* */
1449  clib_llist_foreach_safe (wrk->event_elts, evt_list, ctrl_he, elt, ({
1450  clib_llist_remove (wrk->event_elts, evt_list, elt);
1451  session_event_dispatch_ctrl (wrk, elt);
1452  }));
1453  /* *INDENT-ON* */
1454 
1455  SESSION_EVT (SESSION_EVT_DSP_CNTRS, CTRL_EVTS, wrk);
1456 
1457  /*
1458  * Handle the new io events.
1459  */
1460 
1461  new_he = pool_elt_at_index (wrk->event_elts, wrk->new_head);
1462  old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
1463  old_ti = clib_llist_prev_index (old_he, evt_list);
1464 
1465  ei = clib_llist_next_index (new_he, evt_list);
1466  while (ei != wrk->new_head && n_tx_packets < SESSION_NODE_FRAME_SIZE)
1467  {
1468  elt = pool_elt_at_index (wrk->event_elts, ei);
1469  ei = clib_llist_next_index (elt, evt_list);
1470  clib_llist_remove (wrk->event_elts, evt_list, elt);
1471  session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
1472  }
1473 
1474  SESSION_EVT (SESSION_EVT_DSP_CNTRS, NEW_IO_EVTS, wrk);
1475 
1476  /*
1477  * Handle the old io events, if we had any prior to processing the new ones
1478  */
1479 
1480  if (old_ti != wrk->old_head)
1481  {
1482  old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
1483  ei = clib_llist_next_index (old_he, evt_list);
1484 
1485  while (n_tx_packets < SESSION_NODE_FRAME_SIZE)
1486  {
1487  elt = pool_elt_at_index (wrk->event_elts, ei);
1488  next_ei = clib_llist_next_index (elt, evt_list);
1489  clib_llist_remove (wrk->event_elts, evt_list, elt);
1490 
1491  session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
1492 
1493  if (ei == old_ti)
1494  break;
1495 
1496  ei = next_ei;
1497  };
1498  }
1499 
1500  SESSION_EVT (SESSION_EVT_DSP_CNTRS, OLD_IO_EVTS, wrk);
1501 
1502  if (vec_len (wrk->pending_tx_buffers))
1504 
1506  SESSION_QUEUE_ERROR_TX, n_tx_packets);
1507 
1508  SESSION_EVT (SESSION_EVT_DISPATCH_END, wrk, n_tx_packets);
1509 
1510  return n_tx_packets;
1511 }
1512 
1513 /* *INDENT-OFF* */
1515 {
1516  .function = session_queue_node_fn,
1518  .name = "session-queue",
1519  .format_trace = format_session_queue_trace,
1520  .type = VLIB_NODE_TYPE_INPUT,
1521  .n_errors = ARRAY_LEN (session_queue_error_strings),
1522  .error_strings = session_queue_error_strings,
1523  .state = VLIB_NODE_STATE_DISABLED,
1524 };
1525 /* *INDENT-ON* */
1526 
1527 static clib_error_t *
1529 {
1530  if (vec_len (vlib_mains) < 2)
1531  return 0;
1532 
1533  /*
1534  * Shut off (especially) worker-thread session nodes.
1535  * Otherwise, vpp can crash as the main thread unmaps the
1536  * API segment.
1537  */
1539  session_node_enable_disable (0 /* is_enable */ );
1541  return 0;
1542 }
1543 
1545 
1546 static uword
1548 {
1550 
1551  node = vlib_node_get_runtime (vm, session_queue_node.index);
1552  return session_queue_node_fn (vm, node, 0);
1553 }
1554 
1555 static uword
1557  vlib_frame_t * f)
1558 {
1559  uword *event_data = 0;
1560  f64 timeout = 1.0;
1561  uword event_type;
1562 
1563  while (1)
1564  {
1566  event_type = vlib_process_get_events (vm, (uword **) & event_data);
1567 
1568  switch (event_type)
1569  {
1571  /* Run session queue node on main thread */
1573  break;
1576  VLIB_NODE_STATE_DISABLED);
1577  timeout = 100000.0;
1578  break;
1579  case ~0:
1580  /* Timed out. Run on main to ensure all events are handled */
1582  break;
1583  }
1584  vec_reset_length (event_data);
1585  }
1586  return 0;
1587 }
1588 
1589 /* *INDENT-OFF* */
1591 {
1592  .function = session_queue_process,
1593  .type = VLIB_NODE_TYPE_PROCESS,
1594  .name = "session-queue-process",
1595  .state = VLIB_NODE_STATE_DISABLED,
1596 };
1597 /* *INDENT-ON* */
1598 
1601  vlib_frame_t * frame)
1602 {
1604  if (!sm->wrk[0].vpp_event_queue)
1605  return 0;
1606  node = vlib_node_get_runtime (vm, session_queue_node.index);
1607  return session_queue_node_fn (vm, node, frame);
1608 }
1609 
1610 /* *INDENT-OFF* */
1612 {
1613  .function = session_queue_pre_input_inline,
1614  .type = VLIB_NODE_TYPE_PRE_INPUT,
1615  .name = "session-queue-main",
1616  .state = VLIB_NODE_STATE_DISABLED,
1617 };
1618 /* *INDENT-ON* */
1619 
1620 /*
1621  * fd.io coding-style-patch-verification: ON
1622  *
1623  * Local Variables:
1624  * eval: (c-set-style "gnu")
1625  * End:
1626  */
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:509
static void session_tx_trace_frame(vlib_main_t *vm, vlib_node_runtime_t *node, u32 next_index, u32 *to_next, u16 n_segs, session_t *s, u32 n_trace)
Definition: session_node.c:568
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:124
int app_worker_lock_and_send_event(app_worker_t *app, session_t *s, u8 evt_type)
Send event to application.
u32 connection_index
Index of the transport connection associated to the session.
#define ENDPOINT_INVALID_INDEX
void session_transport_reset(session_t *s)
Force transport close.
Definition: session.c:1461
void * svm_msg_q_msg_data(svm_msg_q_t *mq, svm_msg_q_msg_t *msg)
Get data for message in queue.
#define clib_min(x, y)
Definition: clib.h:328
#define CLIB_UNUSED(x)
Definition: clib.h:87
static void app_mq_detach_handler(void *data)
Definition: session_node.c:191
session_type_t session_type
Type built from transport and network protocol types.
static void session_mq_unlisten_handler(void *data)
Definition: session_node.c:209
void ip_copy(ip46_address_t *dst, ip46_address_t *src, u8 is_ip4)
Definition: ip.c:81
int mq_send_session_connected_cb(u32 app_wrk_index, u32 api_context, session_t *s, session_error_t err)
Definition: session_api.c:260
static u32 vlib_get_trace_count(vlib_main_t *vm, vlib_node_runtime_t *rt)
Definition: trace_funcs.h:201
svm_msg_q_t * vpp_event_queue
vpp event message queue for worker
Definition: session.h:80
static f64 vlib_process_wait_for_event_or_clock(vlib_main_t *vm, f64 dt)
Suspend a cooperative multi-tasking thread Waits for an event, or for the indicated number of seconds...
Definition: node_funcs.h:751
vlib_node_registration_t session_queue_pre_input_node
(constructor) VLIB_REGISTER_NODE (session_queue_pre_input_node)
a
Definition: bitmap.h:544
static void vlib_buffer_free(vlib_main_t *vm, u32 *buffers, u32 n_buffers)
Free buffers Frees the entire buffer chain for each buffer.
Definition: buffer_funcs.h:937
svm_fifo_t * tx_fifo
session_main_t session_main
Definition: session.c:25
struct _vnet_connect_args vnet_connect_args_t
static void ip46_address_mask_ip4(ip46_address_t *ip46)
Definition: ip46_address.h:61
struct _vnet_unlisten_args_t vnet_unlisten_args_t
#define clib_llist_next_index(E, name)
Definition: llist.h:69
#define PREDICT_TRUE(x)
Definition: clib.h:122
u32 session_index
Index in thread pool where session was allocated.
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
Definition: buffer.h:110
#define clib_memcpy_fast(a, b, c)
Definition: string.h:81
static int svm_fifo_is_empty_prod(svm_fifo_t *f)
Check if fifo is empty optimized for producer.
Definition: svm_fifo.h:509
session_t * s
Definition: session.h:45
static void session_event_dispatch_ctrl(session_worker_t *wrk, session_evt_elt_t *elt)
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
#define VLIB_NODE_FLAG_TRACE_SUPPORTED
Definition: node.h:306
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:334
static void session_mq_listen_uri_handler(void *data)
Definition: session_node.c:72
svm_fifo_t * rx_fifo
Pointers to rx/tx buffers.
session_worker_t * wrk
Worker contexts.
Definition: session.h:143
static session_t * session_get_if_valid(u64 si, u32 thread_index)
Definition: session.h:314
u32 thread_index
Definition: main.h:250
u16 current_length
Nbytes between current data and the end of this buffer.
Definition: buffer.h:113
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:592
static transport_proto_t session_get_transport_proto(session_t *s)
application_t * application_lookup(u32 api_client_index)
Definition: application.c:394
int svm_fifo_peek(svm_fifo_t *f, u32 offset, u32 len, u8 *dst)
Peek data from fifo.
Definition: svm_fifo.c:1127
u32 wrk_map_index
Worker index in app&#39;s map pool.
Definition: application.h:40
static clib_error_t * session_queue_exit(vlib_main_t *vm)
static uword session_queue_node_fn(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
vlib_main_t * vm
Definition: in2out_ed.c:1580
int vnet_unlisten(vnet_unlisten_args_t *a)
Definition: application.c:1055
session_evt_elt_t * event_elts
Pool of session event list elements.
Definition: session.h:101
static void * session_evt_ctrl_data(session_worker_t *wrk, session_evt_elt_t *elt)
Definition: session.h:266
void svm_fifo_overwrite_head(svm_fifo_t *f, u8 *src, u32 len)
Overwrite fifo head with new data.
Definition: svm_fifo.c:775
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
Definition: vec.h:520
int session_tx_fifo_dequeue_and_snd(session_worker_t *wrk, vlib_node_runtime_t *node, session_evt_elt_t *e, int *n_tx_packets)
u32 flags
Session flags.
static u32 transport_connection_snd_params(transport_connection_t *tc, transport_send_params_t *sp)
Get send parameters for transport connection.
Definition: transport.h:196
void session_node_enable_disable(u8 is_en)
Definition: session.c:1759
vlib_main_t ** vlib_mains
Definition: buffer.c:332
static void session_parse_handle(session_handle_t handle, u32 *index, u32 *thread_index)
unsigned char u8
Definition: types.h:56
app_worker_t * application_get_worker(application_t *app, u32 wrk_map_index)
Definition: application.c:652
transport_send_params_t sp
Definition: session.h:48
u16 * pending_tx_nexts
Vector of nexts for the pending tx buffers.
Definition: session.h:122
u8 data[128]
Definition: ipsec_types.api:90
static void session_tx_fill_buffer(vlib_main_t *vm, session_tx_context_t *ctx, vlib_buffer_t *b, u16 *n_bufs, u8 peek_data)
Definition: session_node.c:677
static u32 session_evt_ctrl_data_alloc(session_worker_t *wrk)
Definition: session.h:248
struct _vnet_bind_args_t vnet_listen_args_t
session_t * sessions
Worker session pool.
Definition: session.h:77
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
double f64
Definition: types.h:142
#define vlib_worker_thread_barrier_sync(X)
Definition: threads.h:205
void transport_update_time(clib_time_type_t time_now, u8 thread_index)
Definition: transport.c:791
#define clib_memcpy(d, s, n)
Definition: string.h:180
static void session_mq_disconnect_handler(void *data)
Definition: session_node.c:175
u32 * tx_buffers
Vector of tx buffer free lists.
Definition: session.h:98
int svm_msg_q_lock_and_alloc_msg_w_ring(svm_msg_q_t *mq, u32 ring_index, u8 noblock, svm_msg_q_msg_t *msg)
Lock message queue and allocate message buffer on ring.
static int svm_fifo_is_empty(svm_fifo_t *f)
Check if fifo is empty.
Definition: svm_fifo.h:522
static session_worker_t * session_main_get_worker(u32 thread_index)
Definition: session.h:631
#define static_always_inline
Definition: clib.h:109
vlib_main_t * vm
Convenience pointer to this worker&#39;s vlib_main.
Definition: session.h:89
static uword vlib_process_get_events(vlib_main_t *vm, uword **data_vector)
Return the first event type which has occurred and a vector of per-event data of that type...
Definition: node_funcs.h:579
struct _vnet_disconnect_args_t vnet_disconnect_args_t
static void session_mq_connect_uri_handler(void *data)
Definition: session_node.c:148
clib_llist_index_t new_head
Head of list of elements.
Definition: session.h:110
static u32 svm_fifo_max_dequeue_cons(svm_fifo_t *f)
Fifo max bytes to dequeue optimized for consumer.
Definition: svm_fifo.h:430
description fragment has unexpected format
Definition: map.api:433
u32 * session_type_to_next
Per session type output nodes.
Definition: session.h:157
#define vlib_prefetch_buffer_header(b, type)
Prefetch buffer metadata.
Definition: buffer.h:207
const cJSON *const b
Definition: cJSON.h:255
unsigned int u32
Definition: types.h:88
int svm_fifo_dequeue(svm_fifo_t *f, u32 len, u8 *dst)
Dequeue data from fifo.
Definition: svm_fifo.c:1092
int session_send_io_evt_to_thread(svm_fifo_t *f, session_evt_type_t evt_type)
Definition: session.c:79
u8 session_is_valid(u32 si, u8 thread_index)
Definition: session.c:224
#define TRANSPORT_PACER_MAX_BURST_PKTS
Definition: transport.h:25
session_state_t
static char * session_queue_error_strings[]
Definition: session_node.c:554
int session_dequeue_notify(session_t *s)
Definition: session.c:712
transport_proto_vft_t * transport_protocol_get_vft(transport_proto_t transport_proto)
Get transport virtual function table.
Definition: transport.c:282
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:136
u32 client_index
app client index
#define TRANSPORT_MAX_HDRS_LEN
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:546
#define CLIB_US_TIME_FREQ
Definition: time.h:207
session_event_t evt
Definition: session.h:64
static void * vlib_buffer_make_headroom(vlib_buffer_t *b, u8 size)
Make head room, typically for packet headers.
Definition: buffer.h:354
session_queue_error_t
Definition: session_node.c:546
transport_proto_vft_t * transport_vft
Definition: session.h:46
long ctx[MAX_CONNS]
Definition: main.c:144
static __clib_warn_unused_result u32 vlib_buffer_alloc(vlib_main_t *vm, u32 *buffers, u32 n_buffers)
Allocate buffers into supplied array.
Definition: buffer_funcs.h:677
static __clib_warn_unused_result int vlib_trace_buffer(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, vlib_buffer_t *b, int follow_chain)
Definition: trace_funcs.h:142
unsigned short u16
Definition: types.h:57
static void session_evt_ctrl_data_free(session_worker_t *wrk, session_evt_elt_t *elt)
Definition: session.h:273
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:233
static uword session_queue_process(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
int mq_send_session_bound_cb(u32 app_wrk_index, u32 api_context, session_handle_t handle, int rv)
Definition: session_api.c:340
int session_tx_fifo_peek_and_snd(session_worker_t *wrk, vlib_node_runtime_t *node, session_evt_elt_t *e, int *n_tx_packets)
#define PREDICT_FALSE(x)
Definition: clib.h:121
#define always_inline
Definition: ipsec.h:28
static void svm_fifo_unset_event(svm_fifo_t *f)
Unset fifo event flag.
Definition: svm_fifo.h:740
static u8 transport_connection_is_tx_paced(transport_connection_t *tc)
Check if transport connection is paced.
Definition: transport.h:319
u32 wrk_index
Worker index in global worker pool.
Definition: application.h:37
u32 node_index
Node index.
Definition: node.h:488
session_fifo_rx_fn ** session_tx_fns
Per transport rx function that can either dequeue or peek.
Definition: session.h:152
int session_tx_fifo_dequeue_internal(session_worker_t *wrk, vlib_node_runtime_t *node, session_evt_elt_t *elt, int *n_tx_packets)
u64 session_segment_handle(session_t *s)
Definition: session.c:1561
static void vlib_node_increment_counter(vlib_main_t *vm, u32 node_index, u32 counter_index, u64 increment)
Definition: node_funcs.h:1231
u8 len
Definition: ip_types.api:103
static session_t * session_get_from_handle_if_valid(session_handle_t handle)
Definition: session.h:336
static_always_inline u32 vlib_buffer_get_default_data_size(vlib_main_t *vm)
Definition: buffer_funcs.h:96
static u8 svm_fifo_set_event(svm_fifo_t *f)
Set fifo event flag.
Definition: svm_fifo.h:727
#define foreach_session_ctrl_evt
The fine-grained event logger allows lightweight, thread-safe event logging at minimum cost...
static void session_event_dispatch_io(session_worker_t *wrk, vlib_node_runtime_t *node, session_evt_elt_t *elt, int *n_tx_packets)
static void session_evt_elt_free(session_worker_t *wrk, session_evt_elt_t *elt)
Definition: session.h:227
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:170
static u8 svm_fifo_needs_deq_ntf(svm_fifo_t *f, u32 n_last_deq)
Check if fifo needs dequeue notification.
Definition: svm_fifo.h:818
static void session_tx_fifo_chain_tail(vlib_main_t *vm, session_tx_context_t *ctx, vlib_buffer_t *b, u16 *n_bufs, u8 peek_data)
Definition: session_node.c:592
static void session_evt_add_to_list(session_worker_t *wrk, session_event_t *evt)
static_always_inline uword vlib_get_thread_index(void)
Definition: threads.h:219
#define CLIB_PREFETCH(addr, size, type)
Definition: cache.h:80
static void svm_msg_q_unlock(svm_msg_q_t *mq)
Unlock message queue.
static_always_inline void vlib_buffer_enqueue_to_next(vlib_main_t *vm, vlib_node_runtime_t *node, u32 *buffers, u16 *nexts, uword count)
Definition: buffer_node.h:339
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:317
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:380
#define SESSION_CONN_HDR_LEN
int app_worker_builtin_rx(app_worker_t *app_wrk, session_t *s)
#define VLIB_MAIN_LOOP_EXIT_FUNCTION(x)
Definition: init.h:178
#define clib_warning(format, args...)
Definition: error.h:59
static vlib_node_runtime_t * vlib_node_get_runtime(vlib_main_t *vm, u32 node_index)
Get node runtime by node index.
Definition: node_funcs.h:115
struct _transport_connection transport_connection_t
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
Definition: pool.h:298
static session_evt_elt_t * session_evt_alloc_new(session_worker_t *wrk)
Definition: session.h:280
static_always_inline uword session_queue_pre_input_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
#define ARRAY_LEN(x)
Definition: clib.h:67
blocking call - best used in combination with condvars, for eventfds we don&#39;t yield the cpu ...
Definition: queue.h:42
u32 * pending_tx_buffers
Vector of buffers to be sent.
Definition: session.h:119
static int svm_msg_q_try_lock(svm_msg_q_t *mq)
Try locking message queue.
static u32 session_thread_from_handle(session_handle_t handle)
vlib_main_t vlib_node_runtime_t * node
Definition: in2out_ed.c:1580
transport_snd_flags_t flags
Definition: transport.h:62
static int transport_custom_tx(transport_proto_t tp, void *s, transport_send_params_t *sp)
Definition: transport.h:169
#define foreach_session_queue_error
Definition: session_node.c:541
#define ASSERT(truth)
static void session_mq_app_wrk_rpc_handler(void *data)
Definition: session_node.c:494
static void session_mq_disconnected_reply_handler(void *data)
Definition: session_node.c:390
void svm_msg_q_add_and_unlock(svm_msg_q_t *mq, svm_msg_q_msg_t *msg)
Producer enqueue one message to queue with mutex held.
void transport_connection_tx_pacer_reset_bucket(transport_connection_t *tc, u32 bucket)
Reset tx pacer bucket.
Definition: transport.c:714
int ct_session_connect_notify(session_t *ss)
datagram mode
session_tx_context_t ctx
Context for session tx.
Definition: session.h:95
int vnet_listen(vnet_listen_args_t *a)
Definition: application.c:964
static u8 * format_session_error(u8 *s, va_list *args)
int vnet_application_detach(vnet_app_detach_args_t *a)
Detach application from vpp.
Definition: application.c:886
u32 clib_llist_index_t
Definition: llist.h:27
#define TRANSPORT_PACER_MIN_BURST
Definition: transport.h:23
enum _transport_proto transport_proto_t
#define clib_llist_elt_is_linked(E, name)
Check if element is linked in a list.
Definition: llist.h:129
u32 wrk_index
dst worker index
static void vlib_node_set_state(vlib_main_t *vm, u32 node_index, vlib_node_state_t new_state)
Set node dispatch state.
Definition: node_funcs.h:174
clib_time_type_t last_vlib_time
vlib_time_now last time around the track
Definition: session.h:83
ip46_address_t rmt_ip
struct _vnet_app_detach_args_t vnet_app_detach_args_t
static uword pointer_to_uword(const void *p)
Definition: types.h:131
int vnet_connect(vnet_connect_args_t *a)
Definition: application.c:1018
static u8 * format_session_queue_trace(u8 *s, va_list *args)
Definition: session_node.c:530
static int transport_app_rx_evt(transport_proto_t tp, u32 conn_index, u32 thread_index)
Definition: transport.h:176
session_dgram_hdr_t hdr
Definition: session.h:58
u8 thread_index
Index of the thread that allocated the session.
void transport_connection_tx_pacer_update_bytes(transport_connection_t *tc, u32 bytes)
Definition: transport.c:759
static void session_tx_set_dequeue_params(vlib_main_t *vm, session_tx_context_t *ctx, u32 max_segs, u8 peek_data)
Definition: session_node.c:799
u32 app_index
App index in app pool.
Definition: application.h:98
struct _vlib_node_registration vlib_node_registration_t
template key/value backing page structure
Definition: bihash_doc.h:44
app_worker_t * app_worker_get(u32 wrk_index)
void svm_msg_q_free_msg(svm_msg_q_t *mq, svm_msg_q_msg_t *msg)
Free message buffer.
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
void vlib_rpc_call_main_thread(void *callback, u8 *args, u32 arg_size)
Definition: threads.c:1945
static u8 session_tx_not_ready(session_t *s, u8 peek_data)
Definition: session_node.c:755
clib_llist_index_t old_head
Head of list of pending events.
Definition: session.h:113
u32 next_buffer
Next buffer for this linked-list of buffers.
Definition: buffer.h:140
volatile u8 session_state
State in session layer state machine.
vlib_main_t vlib_node_runtime_t vlib_frame_t * frame
Definition: in2out_ed.c:1581
#define VLIB_BUFFER_TRACE_TRAJECTORY_INIT(b)
Definition: buffer.h:497
VLIB buffer representation.
Definition: buffer.h:102
u64 uword
Definition: types.h:112
int vnet_bind_uri(vnet_listen_args_t *a)
static const u32 session_evt_msg_sizes[]
static void session_mq_worker_update_handler(void *data)
Definition: session_node.c:416
static void session_evt_add_old(session_worker_t *wrk, session_evt_elt_t *elt)
Definition: session.h:233
u32 index
Definition: flow_types.api:221
int vnet_disconnect_session(vnet_disconnect_args_t *a)
Definition: application.c:1086
static void session_mq_accepted_reply_handler(void *data)
Definition: session_node.c:238
static void session_evt_add_head_old(session_worker_t *wrk, session_evt_elt_t *elt)
Definition: session.h:240
vlib_node_registration_t session_queue_node
(constructor) VLIB_REGISTER_NODE (session_queue_node)
Definition: session_node.c:520
static session_evt_elt_t * session_evt_alloc_ctrl(session_worker_t *wrk)
Definition: session.h:256
struct clib_bihash_value offset
template key/value backing page structure
static void session_mq_disconnected_handler(void *data)
Definition: session_node.c:345
static u8 session_has_transport(session_t *s)
#define clib_llist_prev_index(E, name)
Definition: llist.h:61
static transport_connection_t * session_tx_get_transport(session_tx_context_t *ctx, u8 peek_data)
Definition: session_node.c:779
u32 app_index
Index of owning app.
Definition: application.h:43
transport_connection_t * tc
Definition: session.h:47
static void session_flush_pending_tx_buffers(session_worker_t *wrk, vlib_node_runtime_t *node)
int app_worker_own_session(app_worker_t *app_wrk, session_t *s)
void vlib_worker_thread_barrier_release(vlib_main_t *vm)
Definition: threads.c:1561
clib_us_time_t last_vlib_us_time
vlib_time_now rounded to us precision and as u64
Definition: session.h:86
static u32 vlib_num_workers()
Definition: threads.h:377
static u32 svm_msg_q_size(svm_msg_q_t *mq)
Check length of message queue.
static session_t * session_event_get_session(session_worker_t *wrk, session_event_t *e)
u32 app_wrk_index
Index of the app worker that owns the session.
static void session_mq_listen_handler(void *data)
Definition: session_node.c:36
static int session_tx_fifo_read_and_snd_i(session_worker_t *wrk, vlib_node_runtime_t *node, session_evt_elt_t *elt, int *n_tx_packets, u8 peek_data)
Definition: session_node.c:931
#define clib_llist_remove(LP, name, E)
Remove entry from list.
Definition: llist.h:193
void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
Definition: trace.c:634
static session_main_t * vnet_get_session_main()
Definition: session.h:625
void session_transport_close(session_t *s)
Notify transport the session can be disconnected.
Definition: session.c:1433
clib_llist_index_t ctrl_head
Head of control events list.
Definition: session.h:107
int app_worker_close_notify(app_worker_t *app_wrk, session_t *s)
static void vlib_set_trace_count(vlib_main_t *vm, vlib_node_runtime_t *rt, u32 count)
Definition: trace_funcs.h:215
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
u32 total_length_not_including_first_buffer
Only valid for first buffer in chain.
Definition: buffer.h:167
#define clib_llist_foreach_safe(LP, name, H, E, body)
Walk list starting at head safe.
Definition: llist.h:275
int vnet_connect_uri(vnet_connect_args_t *a)
int svm_fifo_dequeue_drop(svm_fifo_t *f, u32 len)
Dequeue and drop bytes from fifo.
Definition: svm_fifo.c:1151
vlib_node_registration_t session_queue_process_node
(constructor) VLIB_REGISTER_NODE (session_queue_process_node)
static uword session_queue_run_on_main(vlib_main_t *vm)
svm_msg_q_t * event_queue
Application listens for events on this svm queue.
Definition: application.h:46
struct _svm_fifo svm_fifo_t
static void transport_connection_deschedule(transport_connection_t *tc)
Definition: transport.h:209
#define SESSION_NODE_FRAME_SIZE
Definition: session_types.h:25
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:85
struct session_dgram_header_ session_dgram_hdr_t
#define SESSION_EVT(_evt, _args...)
static void session_mq_reset_reply_handler(void *data)
Definition: session_node.c:301
u32 transport_connection_tx_pacer_burst(transport_connection_t *tc)
Get tx pacer max burst.
Definition: transport.c:739
static void session_mq_connect_handler(void *data)
Definition: session_node.c:96
void mq_send_unlisten_reply(app_worker_t *app_wrk, session_handle_t sh, u32 context, int rv)
Definition: session_api.c:400
#define app_check_thread_and_barrier(_fn, _arg)
Definition: session_node.c:28
static void session_tx_maybe_reschedule(session_worker_t *wrk, session_tx_context_t *ctx, session_evt_elt_t *elt)
Definition: session_node.c:918
#define clib_llist_entry_index(LP, E)
Get list entry index.
Definition: llist.h:53
void svm_msg_q_sub_w_lock(svm_msg_q_t *mq, svm_msg_q_msg_t *msg)
Consumer dequeue one message from queue with mutex held.