32 u32 thread_index,
void *fp,
void *rpc_args)
34 session_fifo_event_t evt = { {0}, };
36 u32 tries = 0, max_tries;
38 evt.event_type = evt_type;
42 evt.rpc_args.arg = rpc_args;
51 if (tries++ == max_tries)
75 void (*fnp) (
void *) = fp;
101 memset (s, 0,
sizeof (*s));
103 s->thread_index = thread_index;
112 memset (s, 0xFA,
sizeof (*s));
118 svm_fifo_t *server_rx_fifo = 0, *server_tx_fifo = 0;
119 u32 fifo_segment_index;
124 &fifo_segment_index)))
127 server_rx_fifo->master_session_index = s->session_index;
128 server_rx_fifo->master_thread_index = s->thread_index;
130 server_tx_fifo->master_session_index = s->session_index;
131 server_tx_fifo->master_thread_index = s->thread_index;
133 s->server_rx_fifo = server_rx_fifo;
134 s->server_tx_fifo = server_tx_fifo;
135 s->svm_segment_index = fifo_segment_index;
143 u32 thread_index = tc->thread_index;
151 s->enqueue_epoch = ~0;
154 s->connection_index = tc->c_index;
155 tc->s_index = s->session_index;
192 u32 to_drop = n_bytes_to_drop;
194 while (to_drop && (next->
flags & VLIB_BUFFER_NEXT_PRESENT))
222 u32 chain_bi, len, diff;
228 if (is_in_order && offset)
256 return (rv > 0) ? (written + rv) : written;
282 while ((chain_bi = (chain_b->
flags & VLIB_BUFFER_NEXT_PRESENT)
308 u8 queue_event,
u8 is_in_order)
311 int enqueued = 0, rv, in_order_off;
346 u32 thread_index = s->thread_index;
347 u32 enqueue_epoch = smm->current_enqueue_epoch[tc->proto][thread_index];
349 if (s->enqueue_epoch != enqueue_epoch)
351 s->enqueue_epoch = enqueue_epoch;
352 vec_add1 (smm->session_to_enqueue[tc->proto][thread_index],
353 s - smm->sessions[thread_index]);
363 session_dgram_hdr_t * hdr,
366 int enqueued = 0, rv, in_order_off;
387 u32 thread_index = s->thread_index;
388 u32 enqueue_epoch = smm->current_enqueue_epoch[proto][thread_index];
390 if (s->enqueue_epoch != enqueue_epoch)
392 s->enqueue_epoch = enqueue_epoch;
393 vec_add1 (smm->session_to_enqueue[proto][thread_index],
394 s - smm->sessions[thread_index]);
420 if (!s->server_tx_fifo)
430 return svm_fifo_peek (s->server_tx_fifo, offset, max_bytes, buffer);
452 session_fifo_event_t evt;
465 clib_warning (
"invalid s->app_index = %d", s->app_index);
470 if (app->cb_fns.builtin_app_rx_callback)
471 return app->cb_fns.builtin_app_rx_callback (s);
477 evt.fifo = s->server_rx_fifo;
481 q = app->event_queue;
496 ed->data[0] = evt.event_type;
517 q = app->event_queue;
520 session_fifo_event_t evt = {
522 .fifo = s->server_tx_fifo
549 indices = smm->session_to_enqueue[transport_proto][thread_index];
551 for (i = 0; i <
vec_len (indices); i++)
559 smm->session_to_enqueue[transport_proto][thread_index] = indices;
560 smm->current_enqueue_epoch[transport_proto][thread_index]++;
582 u32 rx_pointer,
u32 tx_pointer)
593 u32 opaque = 0, new_ti, new_si;
618 opaque = tc->s_index;
634 new_s->app_index = app->index;
635 new_si = new_s->session_index;
636 new_ti = new_s->thread_index;
643 if (app->cb_fns.session_connected_callback (app->index, opaque, new_s,
665 typedef struct _session_switch_pool_args
669 u32 new_thread_index;
670 u32 new_session_index;
680 s =
session_get (args->session_index, args->thread_index);
681 s->server_tx_fifo->master_session_index = args->new_session_index;
682 s->server_tx_fifo->master_thread_index = args->new_thread_index;
684 tp_vfts[tp].cleanup (s->connection_index, s->thread_index);
694 u32 old_thread_index,
704 new_s->connection_index = tc->c_index;
705 new_s->server_rx_fifo->master_session_index = new_s->session_index;
706 new_s->server_rx_fifo->master_thread_index = new_s->thread_index;
715 rpc_args->new_session_index = new_s->session_index;
716 rpc_args->new_thread_index = new_s->thread_index;
717 rpc_args->session_index = tc->s_index;
718 rpc_args->thread_index = old_thread_index;
722 tc->s_index = new_s->session_index;
723 new_s->connection_index = tc->c_index;
724 *new_session = new_s;
736 server->cb_fns.session_accept_callback (s);
754 server->cb_fns.session_disconnect_callback (s);
809 app->cb_fns.session_reset_callback (s);
832 s->app_index = server->index;
833 s->listener_index = listener_index;
839 server->cb_fns.session_accept_callback (s);
856 rv =
tp_vfts[rmt->transport_proto].open (tep);
859 SESSION_DBG (
"Transport failed to open connection.");
860 return VNET_API_ERROR_SESSION_CONNECT;
863 tc =
tp_vfts[rmt->transport_proto].get_half_open ((
u32) rv);
872 s->app_index = app->index;
876 app->cb_fns.session_connected_callback (app->index, opaque, s, 0);
890 rv =
tp_vfts[rmt->transport_proto].open (tep);
893 SESSION_DBG (
"Transport failed to open connection.");
894 return VNET_API_ERROR_SESSION_CONNECT;
897 tc =
tp_vfts[rmt->transport_proto].get_half_open ((
u32) rv);
906 handle = (((
u64) app_index) << 32) | (
u64) tc->c_index;
912 tc->s_index = opaque;
920 sep->app_index = app_index;
921 sep->opaque = opaque;
963 tci =
tp_vfts[sep->transport_proto].bind (s->session_index,
967 if (tci == (
u32) ~ 0)
971 s->connection_index = tci;
972 tc =
tp_vfts[sep->transport_proto].get_listener (tci);
992 tci =
tp_vfts[sep->transport_proto].bind (s->session_index,
996 if (tci == (
u32) ~ 0)
1000 s->connection_index = tci;
1001 tc =
tp_vfts[sep->transport_proto].get_listener (tci);
1022 esep.app_index = s->app_index;
1024 return tp_vfts[sep->transport_proto].bind (s->session_index,
1071 tc =
tp_vfts[tp].get_listener (s->connection_index);
1075 return VNET_API_ERROR_ADDRESS_NOT_IN_USE;
1079 tp_vfts[tp].unbind (s->connection_index);
1094 session_fifo_event_t *evt;
1112 || thread_index == s->thread_index)
1114 ASSERT (s->thread_index == thread_index || thread_index == 0);
1115 vec_add2 (smm->pending_disconnects[s->thread_index], evt, 1);
1116 memset (evt, 0,
sizeof (*evt));
1198 u32 evt_q_length = 2048, evt_size =
sizeof (session_fifo_event_t);
1201 u64 eqs_size = 64 << 20;
1202 pid_t vpp_pid = getpid ();
1206 if (smm->configured_event_queue_length)
1207 evt_q_length = smm->configured_event_queue_length;
1209 if (smm->evt_qs_use_memfd_seg)
1211 if (smm->evt_qs_segment_size)
1212 eqs_size = smm->evt_qs_segment_size;
1217 eqs->
name =
format (0,
"%s%c",
"evt-qs-segment", 0);
1227 if (smm->evt_qs_use_memfd_seg)
1232 for (i = 0; i <
vec_len (smm->vpp_event_queues); i++)
1238 if (smm->evt_qs_use_memfd_seg)
1248 if (smm->evt_qs_use_memfd_seg)
1249 return &smm->evt_qs_segment;
1258 session_tx_fifo_dequeue_and_snd
1275 u32 next_index = ~0;
1279 vec_validate (smm->session_type_to_next, session_type);
1283 if (output_node != ~0)
1293 smm->session_type_to_next[session_type] = next_index;
1294 smm->session_tx_fns[session_type] =
session_tx_fns[vft->tx_type];
1304 return tp_vfts[tp].get_connection (s->connection_index,
1314 return tp_vfts[tp].get_listener (s->connection_index);
1323 tc =
tp_vfts[tp].get_listener (listener->connection_index);
1331 sep->port = tc->lcl_port;
1332 sep->transport_proto = tc->proto;
1333 sep->is_ip4 = tc->is_ip4;
1351 u32 num_threads, preallocated_sessions_per_worker;
1356 if (num_threads < 1)
1362 vec_validate (smm->pending_event_vector, num_threads - 1);
1363 vec_validate (smm->pending_disconnects, num_threads - 1);
1364 vec_validate (smm->free_event_vector, num_threads - 1);
1371 vec_validate (smm->current_enqueue_epoch[i], num_threads - 1);
1372 vec_validate (smm->session_to_enqueue[i], num_threads - 1);
1373 for (j = 0; j < num_threads; j++)
1374 smm->current_enqueue_epoch[i][j] = 1;
1377 for (i = 0; i < num_threads; i++)
1380 _vec_len (smm->free_event_vector[i]) = 0;
1382 _vec_len (smm->pending_event_vector[i]) = 0;
1384 _vec_len (smm->pending_disconnects[i]) = 0;
1385 if (num_threads > 1)
1390 vec_validate (smm->last_event_poll_by_thread, num_threads - 1);
1397 sm_args->baseva = smm->session_baseva + smm->evt_qs_segment_size;
1398 sm_args->size = smm->session_va_space_size;
1402 if (smm->preallocated_sessions)
1404 if (num_threads == 1)
1411 preallocated_sessions_per_worker =
1412 (1.1 * (
f64) smm->preallocated_sessions /
1413 (
f64) (num_threads - 1));
1415 for (j = 1; j < num_threads; j++)
1418 preallocated_sessions_per_worker);
1427 smm->is_enabled = 1;
1438 u8 state = is_en ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED;
1444 if (have_workers && ii == 0)
1494 smm->session_baseva = 0x200000000ULL;
1495 smm->session_va_space_size = (
u64) 128 << 30;
1496 smm->evt_qs_segment_size = 64 << 20;
1497 smm->is_enabled = 0;
1512 if (
unformat (input,
"event-queue-length %d", &nitems))
1515 smm->configured_event_queue_length = nitems;
1517 clib_warning (
"event queue length %d too small, ignored", nitems);
1519 else if (
unformat (input,
"preallocated-sessions %d",
1520 &smm->preallocated_sessions))
1522 else if (
unformat (input,
"v4-session-table-buckets %d",
1523 &smm->configured_v4_session_table_buckets))
1525 else if (
unformat (input,
"v4-halfopen-table-buckets %d",
1526 &smm->configured_v4_halfopen_table_buckets))
1528 else if (
unformat (input,
"v6-session-table-buckets %d",
1529 &smm->configured_v6_session_table_buckets))
1531 else if (
unformat (input,
"v6-halfopen-table-buckets %d",
1532 &smm->configured_v6_halfopen_table_buckets))
1534 else if (
unformat (input,
"v4-session-table-memory %U",
1537 if (tmp >= 0x100000000)
1540 smm->configured_v4_session_table_memory = tmp;
1542 else if (
unformat (input,
"v4-halfopen-table-memory %U",
1545 if (tmp >= 0x100000000)
1548 smm->configured_v4_halfopen_table_memory = tmp;
1550 else if (
unformat (input,
"v6-session-table-memory %U",
1553 if (tmp >= 0x100000000)
1556 smm->configured_v6_session_table_memory = tmp;
1558 else if (
unformat (input,
"v6-halfopen-table-memory %U",
1561 if (tmp >= 0x100000000)
1564 smm->configured_v6_halfopen_table_memory = tmp;
1566 else if (
unformat (input,
"local-endpoints-table-memory %U",
1569 if (tmp >= 0x100000000)
1572 smm->local_endpoints_table_memory = tmp;
1574 else if (
unformat (input,
"local-endpoints-table-buckets %d",
1575 &smm->local_endpoints_table_buckets))
1577 else if (
unformat (input,
"evt_qs_memfd_seg"))
1578 smm->evt_qs_use_memfd_seg = 1;
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
static session_open_service_fn session_open_srv_fns[TRANSPORT_N_SERVICES]
static svm_queue_t * session_manager_get_vpp_event_queue(u32 thread_index)
void session_flush_frames_main_thread(vlib_main_t *vm)
int session_open_vc(u32 app_index, session_endpoint_t *rmt, u32 opaque)
static session_listen_service_fn session_listen_srv_fns[TRANSPORT_N_SERVICES]
int session_lookup_del_connection(transport_connection_t *tc)
Delete transport connection from session table.
static void svm_pop_heap(void *oldheap)
int svm_queue_add(svm_queue_t *q, u8 *elem, int nowait)
void svm_fifo_init_pointers(svm_fifo_t *f, u32 pointer)
Set fifo pointers to requested offset.
#define SESSION_Q_PROCESS_FLUSH_FRAMES
static void clib_rwlock_writer_lock(clib_rwlock_t *p)
transport_proto_vft_t * tp_vfts
Per-type vector of transport protocol virtual function tables.
struct _transport_connection transport_connection_t
int session_listen_cl(stream_session_t *s, session_endpoint_t *sep)
session_manager_main_t session_manager_main
static int session_enqueue_notify(stream_session_t *s, u8 block)
Notify session peer that new data has been enqueued.
#define pool_get_aligned_will_expand(P, YESNO, A)
See if pool_get will expand the pool or not.
struct _transport_proto_vft transport_proto_vft_t
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
void session_send_rpc_evt_to_thread(u32 thread_index, void *fp, void *rpc_args)
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
transport_tx_fn_type_t transport_protocol_tx_fn_type(transport_proto_t tp)
void svm_fifo_dequeue_drop_all(svm_fifo_t *f)
transport_connection_t * session_get_transport(stream_session_t *s)
static u32 svm_fifo_max_enqueue(svm_fifo_t *f)
ssvm_shared_header_t * sh
int session_lookup_del_session(stream_session_t *s)
void segment_manager_dealloc_fifos(u32 segment_index, svm_fifo_t *rx_fifo, svm_fifo_t *tx_fifo)
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
int session_enqueue_stream_connection(transport_connection_t *tc, vlib_buffer_t *b, u32 offset, u8 queue_event, u8 is_in_order)
u64 session_lookup_half_open_handle(transport_connection_t *tc)
void session_node_enable_disable(u8 is_en)
vlib_node_registration_t session_queue_node
(constructor) VLIB_REGISTER_NODE (session_queue_node)
enum transport_service_type_ transport_service_type_t
static uword vlib_node_add_next(vlib_main_t *vm, uword node, uword next_node)
session_fifo_rx_fn session_tx_fifo_peek_and_snd
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
static session_fifo_rx_fn * session_tx_fns[TRANSPORT_TX_N_FNS]
static void session_send_evt_to_thread(u64 session_handle, fifo_event_type_t evt_type, u32 thread_index, void *fp, void *rpc_args)
struct _svm_fifo svm_fifo_t
void session_free(stream_session_t *s)
svm_queue_t * svm_queue_init(int nels, int elsize, int consumer_pid, int signal_when_queue_non_empty)
int session_open_app(u32 app_index, session_endpoint_t *rmt, u32 opaque)
segment_manager_t * application_get_listen_segment_manager(application_t *app, stream_session_t *s)
void app_namespaces_init(void)
static clib_error_t * session_config_fn(vlib_main_t *vm, unformat_input_t *input)
#define VLIB_INIT_FUNCTION(x)
static void * svm_push_data_heap(svm_region_t *rp)
void stream_session_accept_notify(transport_connection_t *tc)
static u32 svm_fifo_max_dequeue(svm_fifo_t *f)
static stream_session_t * session_alloc_for_connection(transport_connection_t *tc)
int session_listen_vc(stream_session_t *s, session_endpoint_t *sep)
int session_dequeue_notify(stream_session_t *s)
static stream_session_t * listen_session_get(u32 index)
static void * ssvm_push_heap(ssvm_shared_header_t *sh)
#define clib_error_return(e, args...)
svm_region_t * vlib_rp
Current binary api segment descriptor.
int svm_fifo_enqueue_nowait(svm_fifo_t *f, u32 max_bytes, const u8 *copy_from_here)
void stream_session_delete_notify(transport_connection_t *tc)
Notification from transport that connection is being deleted.
vhost_vring_state_t state
int session_enqueue_dgram_connection(stream_session_t *s, session_dgram_hdr_t *hdr, vlib_buffer_t *b, u8 proto, u8 queue_event)
void stream_session_cleanup(stream_session_t *s)
Cleanup transport and session state.
void stream_session_delete(stream_session_t *s)
Cleans up session and lookup table.
struct _stream_session_t stream_session_t
void session_vpp_event_queues_allocate(session_manager_main_t *smm)
Allocate event queues in the shared-memory segment.
int ssvm_master_init(ssvm_private_t *ssvm, ssvm_segment_type_t type)
enum transport_dequeue_type_ transport_tx_fn_type_t
static void ssvm_pop_heap(void *oldheap)
void session_send_session_evt_to_thread(u64 session_handle, fifo_event_type_t evt_type, u32 thread_index)
int session_lookup_del_half_open(transport_connection_t *tc)
static u32 vlib_get_buffer_index(vlib_main_t *vm, void *p)
Translate buffer pointer into buffer index.
static clib_error_t * session_manager_main_enable(vlib_main_t *vm)
#define session_endpoint_to_transport(_sep)
static transport_proto_t session_get_transport_proto(stream_session_t *s)
u32 stream_session_dequeue_drop(transport_connection_t *tc, u32 max_bytes)
int session_open(u32 app_index, session_endpoint_t *rmt, u32 opaque)
Ask transport to open connection to remote transport endpoint.
int segment_manager_alloc_session_fifos(segment_manager_t *sm, svm_fifo_t **rx_fifo, svm_fifo_t **tx_fifo, u32 *fifo_segment_index)
int application_is_builtin(application_t *app)
int session_dgram_connect_notify(transport_connection_t *tc, u32 old_thread_index, stream_session_t **new_session)
Move dgram session to the right thread.
static session_manager_main_t * vnet_get_session_manager_main()
static void clib_rwlock_init(clib_rwlock_t *p)
transport_service_type_t transport_protocol_service_type(transport_proto_t tp)
u16 current_length
Nbytes between current data and the end of this buffer.
struct _session_endpoint session_endpoint_t
static session_handle_t session_handle(stream_session_t *s)
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
#define pool_put(P, E)
Free an object E in pool P.
#define VLIB_CONFIG_FUNCTION(x, n,...)
clib_error_t * session_manager_main_init(vlib_main_t *vm)
static stream_session_t * session_get_if_valid(u64 si, u32 thread_index)
struct _session_manager_main session_manager_main_t
#define foreach_vlib_main(body)
int stream_session_accept(transport_connection_t *tc, u32 listener_index, u8 notify)
Accept a stream session.
clib_error_t * vnet_session_enable_disable(vlib_main_t *vm, u8 is_en)
static stream_session_t * session_get(u32 si, u32 thread_index)
struct _session_switch_pool_args session_switch_pool_args_t
API main structure, used by both vpp and binary API clients.
int session_alloc_fifos(segment_manager_t *sm, stream_session_t *s)
#define pool_get_aligned(P, E, A)
Allocate an object E from a pool P (general version).
#define SESSION_DBG(_fmt, _args...)
static u8 svm_fifo_set_event(svm_fifo_t *f)
Sets fifo event flag.
static void clib_rwlock_writer_unlock(clib_rwlock_t *p)
#define SESSION_EVT_DBG(_evt, _args...)
void transport_init(void)
session_fifo_rx_fn session_tx_fifo_dequeue_and_snd
static_always_inline uword vlib_get_thread_index(void)
static vlib_process_t * vlib_get_current_process(vlib_main_t *vm)
static session_type_t session_type_from_proto_and_ip(transport_proto_t proto, u8 is_ip4)
static void vlib_process_signal_event_mt(vlib_main_t *vm, uword node_index, uword type_opaque, uword data)
Signal event to process from any thread.
transport_service_type_t session_transport_service_type(stream_session_t *s)
segment_manager_t * application_get_connect_segment_manager(application_t *app)
#define clib_warning(format, args...)
void stream_session_init_fifos_pointers(transport_connection_t *tc, u32 rx_pointer, u32 tx_pointer)
Init fifo tail and head pointers.
#define clib_memcpy(a, b, c)
struct _application application_t
int( session_fifo_rx_fn)(vlib_main_t *vm, vlib_node_runtime_t *node, session_fifo_event_t *e0, stream_session_t *s0, int *n_tx_pkts)
void transport_enable_disable(vlib_main_t *vm, u8 is_en)
#define pool_init_fixed(pool, max_elts)
initialize a fixed-size, preallocated pool
void stream_session_disconnect_notify(transport_connection_t *tc)
Notification from transport that connection is being closed.
#define SESSION_Q_PROCESS_STOP
ssvm_private_t * session_manager_get_evt_q_segment(void)
u32 session_tx_fifo_max_dequeue(transport_connection_t *tc)
u32 next_buffer
Next buffer for this linked-list of buffers.
void segment_manager_main_init(segment_manager_main_init_args_t *a)
static void clib_mem_free(void *p)
int listen_session_get_local_session_endpoint(stream_session_t *listener, session_endpoint_t *sep)
void stream_session_disconnect(stream_session_t *s)
Initialize session disconnect.
static void vlib_buffer_advance(vlib_buffer_t *b, word l)
Advance current data pointer by the supplied (signed!) amount.
void stream_session_reset_notify(transport_connection_t *tc)
Notify application that connection has been reset.
static void vlib_node_set_state(vlib_main_t *vm, u32 node_index, vlib_node_state_t new_state)
Set node dispatch state.
int session_listen_app(stream_session_t *s, session_endpoint_t *sep)
int svm_fifo_enqueue_with_offset(svm_fifo_t *f, u32 offset, u32 required_bytes, u8 *copy_from_here)
int stream_session_stop_listen(stream_session_t *s)
Ask transport to stop listening on local transport endpoint.
static void * clib_mem_alloc(uword size)
static vlib_main_t * vlib_get_main(void)
stream_session_t * session_alloc(u32 thread_index)
#define HALF_OPEN_LOOKUP_INVALID_VALUE
static void session_enqueue_discard_chain_bytes(vlib_main_t *vm, vlib_buffer_t *b, vlib_buffer_t **chain_b, u32 n_bytes_to_drop)
Discards bytes from buffer chain.
u32 total_length_not_including_first_buffer
Only valid for first buffer in chain.
template key/value backing page structure
static void session_switch_pool(void *cb_args)
int svm_fifo_dequeue_drop(svm_fifo_t *f, u32 max_bytes)
enum _transport_proto transport_proto_t
transport_connection_t * listen_session_get_transport(stream_session_t *s)
void session_lookup_init(void)
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
session_fifo_rx_fn session_tx_fifo_dequeue_internal
static stream_session_t * session_clone_safe(u32 session_index, u32 thread_index)
application_t * application_get(u32 index)
struct _transport_endpoint transport_endpoint_t
struct _segment_manager segment_manager_t
struct _svm_queue svm_queue_t
int session_manager_flush_all_enqueue_events(u8 transport_proto)
int session_lookup_add_connection(transport_connection_t *tc, u64 value)
Add transport connection to a session table.
transport_tx_fn_type_t session_transport_tx_fn_type(stream_session_t *s)
int session_manager_flush_enqueue_events(u8 transport_proto, u32 thread_index)
Flushes queue of sessions that are to be notified of new data enqueued events.
int session_stream_connect_notify(transport_connection_t *tc, u8 is_fail)
static vlib_thread_main_t * vlib_get_thread_main()
vlib_node_registration_t session_queue_process_node
(constructor) VLIB_REGISTER_NODE (session_queue_process_node)
static u32 vlib_num_workers()
static vlib_node_t * vlib_get_node(vlib_main_t *vm, u32 i)
Get vlib node by index.
static int session_enqueue_chain_tail(stream_session_t *s, vlib_buffer_t *b, u32 offset, u8 is_in_order)
Enqueue buffer chain tail.
u8 session_tx_is_dgram(stream_session_t *s)
int(* session_open_service_fn)(u32, session_endpoint_t *, u32)
int session_open_cl(u32 app_index, session_endpoint_t *rmt, u32 opaque)
int application_is_builtin_proxy(application_t *app)
int(* session_listen_service_fn)(stream_session_t *, session_endpoint_t *)
#define CLIB_CACHE_LINE_BYTES
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
static int session_alloc_and_init(segment_manager_t *sm, transport_connection_t *tc, u8 alloc_fifos, stream_session_t **ret_s)
void vlib_start_process(vlib_main_t *vm, uword process_index)
int svm_fifo_peek(svm_fifo_t *f, u32 relative_offset, u32 max_bytes, u8 *copy_here)
void session_register_transport(transport_proto_t transport_proto, const transport_proto_vft_t *vft, u8 is_ip4, u32 output_node)
Initialize session layer for given transport proto and ip version.
int session_lookup_add_half_open(transport_connection_t *tc, u64 value)
int stream_session_peek_bytes(transport_connection_t *tc, u8 *buffer, u32 offset, u32 max_bytes)
u8 transport_protocol_is_cl(transport_proto_t tp)
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
void stream_session_disconnect_transport(stream_session_t *s)
Notify transport the session can be disconnected.
struct _session_endpoint_extended session_endpoint_extended_t
application_t * application_get_if_valid(u32 index)
u8 stream_session_no_space(transport_connection_t *tc, u32 thread_index, u16 data_len)
Check if we have space in rx fifo to push more bytes.
int stream_session_listen(stream_session_t *s, session_endpoint_t *sep)
Ask transport to listen on local transport endpoint.