FD.io VPP  v18.07.1-19-g511ce25
Vector Packet Processing
dvr_dpo.c File Reference
+ Include dependency graph for dvr_dpo.c:

Go to the source code of this file.

Data Structures

struct  dvr_dpo_trace_t_
 Interface DPO trace data. More...
 

Typedefs

typedef struct dvr_dpo_trace_t_ dvr_dpo_trace_t
 Interface DPO trace data. More...
 
typedef enum dvr_reinject_next_t_ dvr_reinject_next_t
 

Enumerations

enum  dvr_reinject_next_t_ { DVR_REINJECT_OUTPUT = 0 }
 

Functions

static dvr_dpo_tdvr_dpo_alloc (void)
 
static dvr_dpo_tdvr_dpo_get_from_dpo (const dpo_id_t *dpo)
 
static index_t dvr_dpo_get_index (dvr_dpo_t *dd)
 
static void dvr_dpo_lock (dpo_id_t *dpo)
 
static void dvr_dpo_unlock (dpo_id_t *dpo)
 
void dvr_dpo_add_or_lock (u32 sw_if_index, dpo_proto_t dproto, dpo_id_t *dpo)
 
static clib_error_tdvr_dpo_interface_state_change (vnet_main_t *vnm, u32 sw_if_index, u32 flags)
 
 VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (dvr_dpo_interface_state_change)
 
static clib_error_tdvr_dpo_hw_interface_state_change (vnet_main_t *vnm, u32 hw_if_index, u32 flags)
 Registered callback for HW interface state changes. More...
 
 VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION (dvr_dpo_hw_interface_state_change)
 
static clib_error_tdvr_dpo_interface_delete (vnet_main_t *vnm, u32 sw_if_index, u32 is_add)
 
 VNET_SW_INTERFACE_ADD_DEL_FUNCTION (dvr_dpo_interface_delete)
 
u8format_dvr_dpo (u8 *s, va_list *ap)
 
static void dvr_dpo_mem_show (void)
 
void dvr_dpo_module_init (void)
 
static uword dvr_dpo_inline (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame, u8 is_ip6)
 
static u8format_dvr_dpo_trace (u8 *s, va_list *args)
 
static uword ip4_dvr_dpo (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
 
static uword ip6_dvr_dpo (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
 
static uword dvr_reinject_inline (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
 
static uword ip4_dvr_reinject (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
 
static uword ip6_dvr_reinject (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
 
 VNET_FEATURE_INIT (ip4_dvr_reinject_feat_node, static)
 
 VNET_FEATURE_INIT (ip6_dvr_reinject_feat_node, static)
 

Variables

static index_tdvr_dpo_db [DPO_PROTO_NUM]
 The 'DB' of DVR DPOs. More...
 
static const dpo_vft_t dvr_dpo_vft
 
static const char *const dvr_dpo_ip4_nodes []
 The per-protocol VLIB graph nodes that are assigned to a glean object. More...
 
static const char *const dvr_dpo_ip6_nodes []
 
static const char *const *const dvr_dpo_nodes [DPO_PROTO_NUM]
 
vlib_node_registration_t ip4_dvr_dpo_node
 (constructor) VLIB_REGISTER_NODE (ip4_dvr_dpo_node) More...
 
vlib_node_registration_t ip6_dvr_dpo_node
 (constructor) VLIB_REGISTER_NODE (ip6_dvr_dpo_node) More...
 
vlib_node_registration_t ip4_dvr_reinject_node
 (constructor) VLIB_REGISTER_NODE (ip4_dvr_reinject_node) More...
 
vlib_node_registration_t ip6_dvr_reinject_node
 (constructor) VLIB_REGISTER_NODE (ip6_dvr_reinject_node) More...
 

Typedef Documentation

Interface DPO trace data.

Enumeration Type Documentation

Enumerator
DVR_REINJECT_OUTPUT 

Definition at line 432 of file dvr_dpo.c.

Function Documentation

void dvr_dpo_add_or_lock ( u32  sw_if_index,
dpo_proto_t  dproto,
dpo_id_t dpo 
)

Definition at line 87 of file dvr_dpo.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static dvr_dpo_t* dvr_dpo_alloc ( void  )
static

Definition at line 28 of file dvr_dpo.c.

+ Here is the caller graph for this function:

static dvr_dpo_t* dvr_dpo_get_from_dpo ( const dpo_id_t dpo)
inlinestatic

Definition at line 38 of file dvr_dpo.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static index_t dvr_dpo_get_index ( dvr_dpo_t dd)
inlinestatic

Definition at line 46 of file dvr_dpo.c.

+ Here is the caller graph for this function:

static clib_error_t* dvr_dpo_hw_interface_state_change ( vnet_main_t vnm,
u32  hw_if_index,
u32  flags 
)
static

Registered callback for HW interface state changes.

Definition at line 144 of file dvr_dpo.c.

+ Here is the call graph for this function:

static uword dvr_dpo_inline ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t from_frame,
u8  is_ip6 
)
inlinestatic

Definition at line 237 of file dvr_dpo.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static clib_error_t* dvr_dpo_interface_delete ( vnet_main_t vnm,
u32  sw_if_index,
u32  is_add 
)
static

Definition at line 155 of file dvr_dpo.c.

+ Here is the call graph for this function:

static clib_error_t* dvr_dpo_interface_state_change ( vnet_main_t vnm,
u32  sw_if_index,
u32  flags 
)
static

Definition at line 128 of file dvr_dpo.c.

+ Here is the call graph for this function:

static void dvr_dpo_lock ( dpo_id_t dpo)
static

Definition at line 52 of file dvr_dpo.c.

+ Here is the call graph for this function:

static void dvr_dpo_mem_show ( void  )
static

Definition at line 180 of file dvr_dpo.c.

+ Here is the call graph for this function:

void dvr_dpo_module_init ( void  )

Definition at line 221 of file dvr_dpo.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static void dvr_dpo_unlock ( dpo_id_t dpo)
static

Definition at line 61 of file dvr_dpo.c.

+ Here is the call graph for this function:

static uword dvr_reinject_inline ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t from_frame 
)
inlinestatic

Definition at line 438 of file dvr_dpo.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

u8* format_dvr_dpo ( u8 s,
va_list *  ap 
)

Definition at line 166 of file dvr_dpo.c.

+ Here is the call graph for this function:

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

Definition at line 386 of file dvr_dpo.c.

+ Here is the call graph for this function:

static uword ip4_dvr_dpo ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t from_frame 
)
static

Definition at line 399 of file dvr_dpo.c.

+ Here is the call graph for this function:

static uword ip4_dvr_reinject ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t from_frame 
)
static

Definition at line 543 of file dvr_dpo.c.

+ Here is the call graph for this function:

static uword ip6_dvr_dpo ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t from_frame 
)
static

Definition at line 407 of file dvr_dpo.c.

+ Here is the call graph for this function:

static uword ip6_dvr_reinject ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t from_frame 
)
static

Definition at line 551 of file dvr_dpo.c.

+ Here is the call graph for this function:

VNET_FEATURE_INIT ( ip4_dvr_reinject_feat_node  ,
static   
)
VNET_FEATURE_INIT ( ip6_dvr_reinject_feat_node  ,
static   
)
VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION ( dvr_dpo_hw_interface_state_change  )

+ Here is the caller graph for this function:

VNET_SW_INTERFACE_ADD_DEL_FUNCTION ( dvr_dpo_interface_delete  )

+ Here is the caller graph for this function:

VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION ( dvr_dpo_interface_state_change  )

+ Here is the caller graph for this function:

Variable Documentation

index_t* dvr_dpo_db[DPO_PROTO_NUM]
static

The 'DB' of DVR DPOs.

There is one per-interface per-L3 proto, so this is a per-interface vector

Definition at line 25 of file dvr_dpo.c.

const char* const dvr_dpo_ip4_nodes[]
static
Initial value:
=
{
"ip4-dvr-dpo",
}
#define NULL
Definition: clib.h:55

The per-protocol VLIB graph nodes that are assigned to a glean object.

this means that these graph nodes are ones from which a glean is the parent object in the DPO-graph.

Definition at line 203 of file dvr_dpo.c.

const char* const dvr_dpo_ip6_nodes[]
static
Initial value:
=
{
"ip6-dvr-dpo",
}
#define NULL
Definition: clib.h:55

Definition at line 208 of file dvr_dpo.c.

const char* const* const dvr_dpo_nodes[DPO_PROTO_NUM]
static
Initial value:
=
{
}
static const char *const dvr_dpo_ip6_nodes[]
Definition: dvr_dpo.c:208
static const char *const dvr_dpo_ip4_nodes[]
The per-protocol VLIB graph nodes that are assigned to a glean object.
Definition: dvr_dpo.c:203

Definition at line 214 of file dvr_dpo.c.

const dpo_vft_t dvr_dpo_vft
static
Initial value:
= {
.dv_lock = dvr_dpo_lock,
.dv_unlock = dvr_dpo_unlock,
.dv_format = format_dvr_dpo,
.dv_mem_show = dvr_dpo_mem_show,
}
u8 * format_dvr_dpo(u8 *s, va_list *ap)
Definition: dvr_dpo.c:166
static void dvr_dpo_lock(dpo_id_t *dpo)
Definition: dvr_dpo.c:52
static void dvr_dpo_unlock(dpo_id_t *dpo)
Definition: dvr_dpo.c:61
static void dvr_dpo_mem_show(void)
Definition: dvr_dpo.c:180

Definition at line 189 of file dvr_dpo.c.

vlib_node_registration_t ip4_dvr_dpo_node
Initial value:
= {
.function = ip4_dvr_dpo,
.name = "ip4-dvr-dpo",
.vector_size = sizeof (u32),
.format_trace = format_dvr_dpo_trace,
.sibling_of = "ip4-rewrite",
}
static u8 * format_dvr_dpo_trace(u8 *s, va_list *args)
Definition: dvr_dpo.c:386
unsigned int u32
Definition: types.h:88
static uword ip4_dvr_dpo(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
Definition: dvr_dpo.c:399

(constructor) VLIB_REGISTER_NODE (ip4_dvr_dpo_node)

Definition at line 414 of file dvr_dpo.c.

vlib_node_registration_t ip4_dvr_reinject_node
Initial value:
= {
.function = ip4_dvr_reinject,
.name = "ip4-dvr-reinject",
.vector_size = sizeof (u32),
.format_trace = format_dvr_dpo_trace,
.n_next_nodes = 1,
.next_nodes = {
[DVR_REINJECT_OUTPUT] = "l2-output",
},
}
static u8 * format_dvr_dpo_trace(u8 *s, va_list *args)
Definition: dvr_dpo.c:386
unsigned int u32
Definition: types.h:88
static uword ip4_dvr_reinject(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
Definition: dvr_dpo.c:543

(constructor) VLIB_REGISTER_NODE (ip4_dvr_reinject_node)

Definition at line 558 of file dvr_dpo.c.

vlib_node_registration_t ip6_dvr_dpo_node
Initial value:
= {
.function = ip6_dvr_dpo,
.name = "ip6-dvr-dpo",
.vector_size = sizeof (u32),
.format_trace = format_dvr_dpo_trace,
.sibling_of = "ip6-rewrite",
}
static u8 * format_dvr_dpo_trace(u8 *s, va_list *args)
Definition: dvr_dpo.c:386
unsigned int u32
Definition: types.h:88
static uword ip6_dvr_dpo(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
Definition: dvr_dpo.c:407

(constructor) VLIB_REGISTER_NODE (ip6_dvr_dpo_node)

Definition at line 421 of file dvr_dpo.c.

vlib_node_registration_t ip6_dvr_reinject_node
Initial value:
= {
.function = ip6_dvr_reinject,
.name = "ip6-dvr-reinject",
.vector_size = sizeof (u32),
.format_trace = format_dvr_dpo_trace,
.n_next_nodes = 1,
.next_nodes = {
[DVR_REINJECT_OUTPUT] = "l2-output",
},
}
static u8 * format_dvr_dpo_trace(u8 *s, va_list *args)
Definition: dvr_dpo.c:386
unsigned int u32
Definition: types.h:88
static uword ip6_dvr_reinject(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
Definition: dvr_dpo.c:551

(constructor) VLIB_REGISTER_NODE (ip6_dvr_reinject_node)

Definition at line 570 of file dvr_dpo.c.