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;
467 clib_warning (
"invalid s->app_index = %d", s->app_index);
472 if (app->cb_fns.builtin_app_rx_callback)
473 return app->cb_fns.builtin_app_rx_callback (s);
479 evt.fifo = s->server_rx_fifo;
483 q = app->event_queue;
498 ed->data[0] = evt.event_type;
522 indices = smm->session_to_enqueue[transport_proto][thread_index];
524 for (i = 0; i <
vec_len (indices); i++)
532 smm->session_to_enqueue[transport_proto][thread_index] = indices;
533 smm->current_enqueue_epoch[transport_proto][thread_index]++;
555 u32 rx_pointer,
u32 tx_pointer)
566 u32 opaque = 0, new_ti, new_si;
591 opaque = tc->s_index;
607 new_s->app_index = app->index;
608 new_si = new_s->session_index;
609 new_ti = new_s->thread_index;
616 if (app->cb_fns.session_connected_callback (app->index, opaque, new_s,
638 typedef struct _session_switch_pool_args
642 u32 new_thread_index;
643 u32 new_session_index;
653 s =
session_get (args->session_index, args->thread_index);
654 s->server_tx_fifo->master_session_index = args->new_session_index;
655 s->server_tx_fifo->master_thread_index = args->new_thread_index;
657 tp_vfts[tp].cleanup (s->connection_index, s->thread_index);
667 u32 old_thread_index,
677 new_s->connection_index = tc->c_index;
678 new_s->server_rx_fifo->master_session_index = new_s->session_index;
679 new_s->server_rx_fifo->master_thread_index = new_s->thread_index;
688 rpc_args->new_session_index = new_s->session_index;
689 rpc_args->new_thread_index = new_s->thread_index;
690 rpc_args->session_index = tc->s_index;
691 rpc_args->thread_index = old_thread_index;
695 tc->s_index = new_s->session_index;
696 new_s->connection_index = tc->c_index;
697 *new_session = new_s;
709 server->cb_fns.session_accept_callback (s);
727 server->cb_fns.session_disconnect_callback (s);
782 app->cb_fns.session_reset_callback (s);
805 s->app_index = server->index;
806 s->listener_index = listener_index;
812 server->cb_fns.session_accept_callback (s);
829 rv =
tp_vfts[rmt->transport_proto].open (tep);
832 SESSION_DBG (
"Transport failed to open connection.");
833 return VNET_API_ERROR_SESSION_CONNECT;
836 tc =
tp_vfts[rmt->transport_proto].get_half_open ((
u32) rv);
845 s->app_index = app->index;
849 app->cb_fns.session_connected_callback (app->index, opaque, s, 0);
863 rv =
tp_vfts[rmt->transport_proto].open (tep);
866 SESSION_DBG (
"Transport failed to open connection.");
867 return VNET_API_ERROR_SESSION_CONNECT;
870 tc =
tp_vfts[rmt->transport_proto].get_half_open ((
u32) rv);
879 handle = (((
u64) app_index) << 32) | (
u64) tc->c_index;
885 tc->s_index = opaque;
893 sep->app_index = app_index;
894 sep->opaque = opaque;
936 tci =
tp_vfts[sep->transport_proto].bind (s->session_index,
940 if (tci == (
u32) ~ 0)
944 s->connection_index = tci;
945 tc =
tp_vfts[sep->transport_proto].get_listener (tci);
965 tci =
tp_vfts[sep->transport_proto].bind (s->session_index,
969 if (tci == (
u32) ~ 0)
973 s->connection_index = tci;
974 tc =
tp_vfts[sep->transport_proto].get_listener (tci);
995 esep.app_index = s->app_index;
997 return tp_vfts[sep->transport_proto].bind (s->session_index,
1044 tc =
tp_vfts[tp].get_listener (s->connection_index);
1048 return VNET_API_ERROR_ADDRESS_NOT_IN_USE;
1052 tp_vfts[tp].unbind (s->connection_index);
1067 session_fifo_event_t *evt;
1085 || thread_index == s->thread_index)
1087 ASSERT (s->thread_index == thread_index || thread_index == 0);
1088 vec_add2 (smm->pending_disconnects[s->thread_index], evt, 1);
1089 memset (evt, 0,
sizeof (*evt));
1171 u32 evt_q_length = 2048, evt_size =
sizeof (session_fifo_event_t);
1174 u64 eqs_size = 64 << 20;
1175 pid_t vpp_pid = getpid ();
1179 if (smm->configured_event_queue_length)
1180 evt_q_length = smm->configured_event_queue_length;
1182 if (smm->evt_qs_use_memfd_seg)
1184 if (smm->evt_qs_segment_size)
1185 eqs_size = smm->evt_qs_segment_size;
1190 eqs->
name =
format (0,
"%s%c",
"evt-qs-segment", 0);
1196 if (smm->evt_qs_use_memfd_seg)
1201 for (i = 0; i <
vec_len (smm->vpp_event_queues); i++)
1207 if (smm->evt_qs_use_memfd_seg)
1217 if (smm->evt_qs_use_memfd_seg)
1218 return &smm->evt_qs_segment;
1227 session_tx_fifo_dequeue_and_snd
1244 u32 next_index = ~0;
1248 vec_validate (smm->session_type_to_next, session_type);
1252 if (output_node != ~0)
1262 smm->session_type_to_next[session_type] = next_index;
1263 smm->session_tx_fns[session_type] =
session_tx_fns[vft->tx_type];
1273 return tp_vfts[tp].get_connection (s->connection_index,
1283 return tp_vfts[tp].get_listener (s->connection_index);
1292 tc =
tp_vfts[tp].get_listener (listener->connection_index);
1300 sep->port = tc->lcl_port;
1301 sep->transport_proto = tc->proto;
1302 sep->is_ip4 = tc->is_ip4;
1320 u32 num_threads, preallocated_sessions_per_worker;
1325 if (num_threads < 1)
1331 vec_validate (smm->pending_event_vector, num_threads - 1);
1332 vec_validate (smm->pending_disconnects, num_threads - 1);
1333 vec_validate (smm->free_event_vector, num_threads - 1);
1340 vec_validate (smm->current_enqueue_epoch[i], num_threads - 1);
1341 vec_validate (smm->session_to_enqueue[i], num_threads - 1);
1342 for (j = 0; j < num_threads; j++)
1343 smm->current_enqueue_epoch[i][j] = 1;
1346 for (i = 0; i < num_threads; i++)
1349 _vec_len (smm->free_event_vector[i]) = 0;
1351 _vec_len (smm->pending_event_vector[i]) = 0;
1353 _vec_len (smm->pending_disconnects[i]) = 0;
1354 if (num_threads > 1)
1359 vec_validate (smm->last_event_poll_by_thread, num_threads - 1);
1366 sm_args->baseva = smm->session_baseva + smm->evt_qs_segment_size;
1367 sm_args->size = smm->session_va_space_size;
1371 if (smm->preallocated_sessions)
1373 if (num_threads == 1)
1380 preallocated_sessions_per_worker =
1381 (1.1 * (
f64) smm->preallocated_sessions /
1382 (
f64) (num_threads - 1));
1384 for (j = 1; j < num_threads; j++)
1387 preallocated_sessions_per_worker);
1396 smm->is_enabled = 1;
1407 u8 state = is_en ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED;
1413 if (have_workers && ii == 0)
1463 smm->session_baseva = 0x200000000ULL;
1464 smm->session_va_space_size = (
u64) 128 << 30;
1465 smm->evt_qs_segment_size = 64 << 20;
1466 smm->is_enabled = 0;
1481 if (
unformat (input,
"event-queue-length %d", &nitems))
1484 smm->configured_event_queue_length = nitems;
1486 clib_warning (
"event queue length %d too small, ignored", nitems);
1488 else if (
unformat (input,
"preallocated-sessions %d",
1489 &smm->preallocated_sessions))
1491 else if (
unformat (input,
"v4-session-table-buckets %d",
1492 &smm->configured_v4_session_table_buckets))
1494 else if (
unformat (input,
"v4-halfopen-table-buckets %d",
1495 &smm->configured_v4_halfopen_table_buckets))
1497 else if (
unformat (input,
"v6-session-table-buckets %d",
1498 &smm->configured_v6_session_table_buckets))
1500 else if (
unformat (input,
"v6-halfopen-table-buckets %d",
1501 &smm->configured_v6_halfopen_table_buckets))
1503 else if (
unformat (input,
"v4-session-table-memory %U",
1506 if (tmp >= 0x100000000)
1509 smm->configured_v4_session_table_memory = tmp;
1511 else if (
unformat (input,
"v4-halfopen-table-memory %U",
1514 if (tmp >= 0x100000000)
1517 smm->configured_v4_halfopen_table_memory = tmp;
1519 else if (
unformat (input,
"v6-session-table-memory %U",
1522 if (tmp >= 0x100000000)
1525 smm->configured_v6_session_table_memory = tmp;
1527 else if (
unformat (input,
"v6-halfopen-table-memory %U",
1530 if (tmp >= 0x100000000)
1533 smm->configured_v6_halfopen_table_memory = tmp;
1535 else if (
unformat (input,
"local-endpoints-table-memory %U",
1538 if (tmp >= 0x100000000)
1541 smm->local_endpoints_table_memory = tmp;
1543 else if (
unformat (input,
"local-endpoints-table-buckets %d",
1544 &smm->local_endpoints_table_buckets))
1546 else if (
unformat (input,
"evt_qs_memfd_seg"))
1547 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)
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.
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 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)
vhost_vring_state_t state
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.