FD.io VPP  v20.05-21-gb1500e9ff
Vector Packet Processing
session_node.c File Reference
+ Include dependency graph for session_node.c:

Go to the source code of this file.

Data Structures

struct  session_queue_trace_t
 

Macros

#define app_check_thread_and_barrier(_fn, _arg)
 
#define foreach_session_queue_error
 

Enumerations

enum  session_queue_error_t { SESSION_QUEUE_N_ERROR }
 
enum  { SESSION_TX_NO_BUFFERS = -2, SESSION_TX_NO_DATA, SESSION_TX_OK }
 

Functions

static void session_mq_listen_handler (void *data)
 
static void session_mq_listen_uri_handler (void *data)
 
static void session_mq_connect_handler (void *data)
 
static void session_mq_connect_uri_handler (void *data)
 
static void session_mq_disconnect_handler (void *data)
 
static void app_mq_detach_handler (void *data)
 
static void session_mq_unlisten_handler (void *data)
 
static void session_mq_accepted_reply_handler (void *data)
 
static void session_mq_reset_reply_handler (void *data)
 
static void session_mq_disconnected_handler (void *data)
 
static void session_mq_disconnected_reply_handler (void *data)
 
static void session_mq_worker_update_handler (void *data)
 
static u8format_session_queue_trace (u8 *s, va_list *args)
 
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)
 
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)
 
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)
 
static u8 session_tx_not_ready (session_t *s, u8 peek_data)
 
static transport_connection_tsession_tx_get_transport (session_tx_context_t *ctx, u8 peek_data)
 
static void session_tx_set_dequeue_params (vlib_main_t *vm, session_tx_context_t *ctx, u32 max_segs, u8 peek_data)
 
static void session_tx_maybe_reschedule (session_worker_t *wrk, session_tx_context_t *ctx, session_evt_elt_t *elt)
 
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)
 
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)
 
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)
 
int session_tx_fifo_dequeue_internal (session_worker_t *wrk, vlib_node_runtime_t *node, session_evt_elt_t *elt, int *n_tx_packets)
 
static session_tsession_event_get_session (session_event_t *e, u8 thread_index)
 
static void session_event_dispatch_ctrl (session_worker_t *wrk, session_evt_elt_t *elt)
 
static void session_event_dispatch_io (session_worker_t *wrk, vlib_node_runtime_t *node, session_evt_elt_t *elt, u32 thread_index, int *n_tx_packets)
 
static void session_evt_add_to_list (session_worker_t *wrk, session_event_t *evt)
 
static void session_flush_pending_tx_buffers (session_worker_t *wrk, vlib_node_runtime_t *node)
 
static uword session_queue_node_fn (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
 
static clib_error_tsession_queue_exit (vlib_main_t *vm)
 
static uword session_queue_run_on_main (vlib_main_t *vm)
 
static uword session_queue_process (vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
 
static_always_inline uword session_queue_pre_input_inline (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
 

Variables

vlib_node_registration_t session_queue_node
 (constructor) VLIB_REGISTER_NODE (session_queue_node) More...
 
static char * session_queue_error_strings []
 
static const u32 session_evt_msg_sizes []
 
vlib_node_registration_t session_queue_process_node
 (constructor) VLIB_REGISTER_NODE (session_queue_process_node) More...
 
vlib_node_registration_t session_queue_pre_input_node
 (constructor) VLIB_REGISTER_NODE (session_queue_pre_input_node) More...
 

Macro Definition Documentation

◆ app_check_thread_and_barrier

#define app_check_thread_and_barrier (   _fn,
  _arg 
)
Value:
{ \
vlib_rpc_call_main_thread (_fn, (u8 *) _arg, sizeof(*_arg)); \
return; \
}
unsigned char u8
Definition: types.h:56
static u8 vlib_thread_is_main_w_barrier(void)
Definition: threads.h:521

Definition at line 28 of file session_node.c.

◆ foreach_session_queue_error

#define foreach_session_queue_error
Value:
_(TX, "Packets transmitted") \
_(TIMER, "Timer events") \
_(NO_BUFFER, "Out of buffers")

Definition at line 516 of file session_node.c.

Enumeration Type Documentation

◆ anonymous enum

anonymous enum
Enumerator
SESSION_TX_NO_BUFFERS 
SESSION_TX_NO_DATA 
SESSION_TX_OK 

Definition at line 535 of file session_node.c.

◆ session_queue_error_t

Enumerator
SESSION_QUEUE_N_ERROR 

Definition at line 521 of file session_node.c.

Function Documentation

◆ app_mq_detach_handler()

static void app_mq_detach_handler ( void *  data)
static

Definition at line 193 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ format_session_queue_trace()

static u8* format_session_queue_trace ( u8 s,
va_list *  args 
)
static

Definition at line 505 of file session_node.c.

+ Here is the call graph for this function:

◆ session_event_dispatch_ctrl()

static void session_event_dispatch_ctrl ( session_worker_t wrk,
session_evt_elt_t elt 
)
inlinestatic

Definition at line 1166 of file session_node.c.

+ Here is the call graph for this function:

◆ session_event_dispatch_io()

static void session_event_dispatch_io ( session_worker_t wrk,
vlib_node_runtime_t node,
session_evt_elt_t elt,
u32  thread_index,
int *  n_tx_packets 
)
inlinestatic

Definition at line 1248 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_event_get_session()

static session_t* session_event_get_session ( session_event_t *  e,
u8  thread_index 
)
inlinestatic

Definition at line 1160 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_evt_add_to_list()

static void session_evt_add_to_list ( session_worker_t wrk,
session_event_t *  evt 
)
inlinestatic

Definition at line 1317 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_flush_pending_tx_buffers()

static void session_flush_pending_tx_buffers ( session_worker_t wrk,
vlib_node_runtime_t node 
)
static

Definition at line 1345 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_mq_accepted_reply_handler()

static void session_mq_accepted_reply_handler ( void *  data)
static

Definition at line 240 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_mq_connect_handler()

static void session_mq_connect_handler ( void *  data)
static

Definition at line 98 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_mq_connect_uri_handler()

static void session_mq_connect_uri_handler ( void *  data)
static

Definition at line 150 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_mq_disconnect_handler()

static void session_mq_disconnect_handler ( void *  data)
static

Definition at line 177 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_mq_disconnected_handler()

static void session_mq_disconnected_handler ( void *  data)
static

Definition at line 347 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_mq_disconnected_reply_handler()

static void session_mq_disconnected_reply_handler ( void *  data)
static

Definition at line 392 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_mq_listen_handler()

static void session_mq_listen_handler ( void *  data)
static

Definition at line 36 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_mq_listen_uri_handler()

static void session_mq_listen_uri_handler ( void *  data)
static

Definition at line 74 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_mq_reset_reply_handler()

static void session_mq_reset_reply_handler ( void *  data)
static

Definition at line 303 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_mq_unlisten_handler()

static void session_mq_unlisten_handler ( void *  data)
static

Definition at line 211 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_mq_worker_update_handler()

static void session_mq_worker_update_handler ( void *  data)
static

Definition at line 418 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_queue_exit()

static clib_error_t* session_queue_exit ( vlib_main_t vm)
static

Definition at line 1490 of file session_node.c.

+ Here is the call graph for this function:

◆ session_queue_node_fn()

static uword session_queue_node_fn ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t frame 
)
static

Definition at line 1356 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_queue_pre_input_inline()

static_always_inline uword session_queue_pre_input_inline ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t frame 
)

Definition at line 1560 of file session_node.c.

+ Here is the call graph for this function:

◆ session_queue_process()

static uword session_queue_process ( vlib_main_t vm,
vlib_node_runtime_t rt,
vlib_frame_t f 
)
static

Definition at line 1518 of file session_node.c.

+ Here is the call graph for this function:

◆ session_queue_run_on_main()

static uword session_queue_run_on_main ( vlib_main_t vm)
static

Definition at line 1509 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_tx_fifo_chain_tail()

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 
)
inlinestatic

Definition at line 563 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_tx_fifo_dequeue_and_snd()

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 
)

Definition at line 1116 of file session_node.c.

+ Here is the call graph for this function:

◆ session_tx_fifo_dequeue_internal()

int session_tx_fifo_dequeue_internal ( session_worker_t wrk,
vlib_node_runtime_t node,
session_evt_elt_t elt,
int *  n_tx_packets 
)

Definition at line 1124 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_tx_fifo_peek_and_snd()

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 
)

Definition at line 1108 of file session_node.c.

+ Here is the call graph for this function:

◆ session_tx_fifo_read_and_snd_i()

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 
)
inlinestatic

Definition at line 902 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_tx_fill_buffer()

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 
)
inlinestatic

Definition at line 648 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_tx_get_transport()

static transport_connection_t* session_tx_get_transport ( session_tx_context_t ctx,
u8  peek_data 
)
inlinestatic

Definition at line 750 of file session_node.c.

+ Here is the caller graph for this function:

◆ session_tx_maybe_reschedule()

static void session_tx_maybe_reschedule ( session_worker_t wrk,
session_tx_context_t ctx,
session_evt_elt_t elt 
)
inlinestatic

Definition at line 889 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_tx_not_ready()

static u8 session_tx_not_ready ( session_t s,
u8  peek_data 
)
inlinestatic

Definition at line 726 of file session_node.c.

+ Here is the caller graph for this function:

◆ session_tx_set_dequeue_params()

static void session_tx_set_dequeue_params ( vlib_main_t vm,
session_tx_context_t ctx,
u32  max_segs,
u8  peek_data 
)
inlinestatic

Definition at line 770 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ session_tx_trace_frame()

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 
)
static

Definition at line 543 of file session_node.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Variable Documentation

◆ session_evt_msg_sizes

const u32 session_evt_msg_sizes[]
static
Initial value:
= {
#define _(symc, sym)
}
#define foreach_session_ctrl_evt

Definition at line 1308 of file session_node.c.

◆ session_queue_error_strings

char* session_queue_error_strings[]
static
Initial value:
= {
#define _(sym,string)
}
#define foreach_session_queue_error
Definition: session_node.c:516

Definition at line 529 of file session_node.c.

◆ session_queue_node

vlib_node_registration_t session_queue_node
Initial value:
=
{
.function = session_queue_node_fn,
.name = "session-queue",
.format_trace = format_session_queue_trace,
.error_strings = session_queue_error_strings,
.state = VLIB_NODE_STATE_DISABLED,
}
#define VLIB_NODE_FLAG_TRACE_SUPPORTED
Definition: node.h:308
static uword session_queue_node_fn(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
static char * session_queue_error_strings[]
Definition: session_node.c:529
#define ARRAY_LEN(x)
Definition: clib.h:66
static u8 * format_session_queue_trace(u8 *s, va_list *args)
Definition: session_node.c:505

(constructor) VLIB_REGISTER_NODE (session_queue_node)

Definition at line 495 of file session_node.c.

◆ session_queue_pre_input_node

vlib_node_registration_t session_queue_pre_input_node
Initial value:
=
{
.name = "session-queue-main",
.state = VLIB_NODE_STATE_DISABLED,
}
static_always_inline uword session_queue_pre_input_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)

(constructor) VLIB_REGISTER_NODE (session_queue_pre_input_node)

Definition at line 1571 of file session_node.c.

◆ session_queue_process_node

vlib_node_registration_t session_queue_process_node
Initial value:
=
{
.function = session_queue_process,
.name = "session-queue-process",
.state = VLIB_NODE_STATE_DISABLED,
}
static uword session_queue_process(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)

(constructor) VLIB_REGISTER_NODE (session_queue_process_node)

Definition at line 1550 of file session_node.c.