FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
ip_frag.c File Reference
+ Include dependency graph for ip_frag.c:

Go to the source code of this file.

Data Structures

struct  ip_frag_trace_t
 

Functions

static u8format_ip_frag_trace (u8 *s, va_list *args)
 
static void frag_set_sw_if_index (vlib_buffer_t *to, vlib_buffer_t *from)
 
static vlib_buffer_tfrag_buffer_alloc (vlib_buffer_t *org_b, u32 *bi)
 
void ip4_frag_do_fragment (vlib_main_t *vm, u32 from_bi, u32 **buffer, ip_frag_error_t *error)
 
void ip_frag_set_vnet_buffer (vlib_buffer_t *b, u16 mtu, u8 next_index, u8 flags)
 
static uword frag_node_inline (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, u32 node_index, bool is_ip6)
 
static uword ip4_frag (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
 
static uword ip6_frag (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
 
void ip6_frag_do_fragment (vlib_main_t *vm, u32 from_bi, u32 **buffer, ip_frag_error_t *error)
 

Variables

static u32 running_fragment_id
 
static char * ip4_frag_error_strings []
 
vlib_node_registration_t ip4_frag_node
 (constructor) VLIB_REGISTER_NODE (ip4_frag_node) More...
 
vlib_node_registration_t ip6_frag_node
 (constructor) VLIB_REGISTER_NODE (ip6_frag_node) More...
 

Function Documentation

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

Definition at line 36 of file ip_frag.c.

+ Here is the call graph for this function:

static vlib_buffer_t* frag_buffer_alloc ( vlib_buffer_t org_b,
u32 bi 
)
static

Definition at line 74 of file ip_frag.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static uword frag_node_inline ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t frame,
u32  node_index,
bool  is_ip6 
)
inlinestatic

Definition at line 250 of file ip_frag.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static void frag_set_sw_if_index ( vlib_buffer_t to,
vlib_buffer_t from 
)
static

Definition at line 49 of file ip_frag.c.

+ Here is the caller graph for this function:

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

Definition at line 372 of file ip_frag.c.

+ Here is the call graph for this function:

void ip4_frag_do_fragment ( vlib_main_t vm,
u32  from_bi,
u32 **  buffer,
ip_frag_error_t error 
)

Definition at line 94 of file ip_frag.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

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

Definition at line 379 of file ip_frag.c.

+ Here is the call graph for this function:

void ip6_frag_do_fragment ( vlib_main_t vm,
u32  from_bi,
u32 **  buffer,
ip_frag_error_t error 
)

Definition at line 390 of file ip_frag.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void ip_frag_set_vnet_buffer ( vlib_buffer_t b,
u16  mtu,
u8  next_index,
u8  flags 
)

Definition at line 241 of file ip_frag.c.

+ Here is the caller graph for this function:

Variable Documentation

char* ip4_frag_error_strings[]
static
Initial value:
= {
#define _(sym,string)
}
#define foreach_ip_frag_error
Definition: ip_frag.h:68

Definition at line 500 of file ip_frag.c.

vlib_node_registration_t ip4_frag_node
Initial value:
= {
.function = ip4_frag,
.vector_size = sizeof (u32),
.format_trace = format_ip_frag_trace,
.n_errors = IP_FRAG_N_ERROR,
.error_strings = ip4_frag_error_strings,
.n_next_nodes = IP4_FRAG_N_NEXT,
.next_nodes = {
[IP4_FRAG_NEXT_IP4_REWRITE] = "ip4-rewrite",
[IP4_FRAG_NEXT_IP4_LOOKUP] = "ip4-lookup",
[IP4_FRAG_NEXT_IP6_LOOKUP] = "ip6-lookup",
[IP4_FRAG_NEXT_ICMP_ERROR] = "ip4-icmp-error",
[IP4_FRAG_NEXT_DROP] = "ip4-drop"
},
}
static u8 * format_ip_frag_trace(u8 *s, va_list *args)
Definition: ip_frag.c:36
static uword ip4_frag(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: ip_frag.c:372
unsigned int u32
Definition: types.h:88
vl_api_fib_path_type_t type
Definition: fib_types.api:123
#define IP4_FRAG_NODE_NAME
Definition: ip_frag.h:43
static char * ip4_frag_error_strings[]
Definition: ip_frag.c:500

(constructor) VLIB_REGISTER_NODE (ip4_frag_node)

Definition at line 507 of file ip_frag.c.

vlib_node_registration_t ip6_frag_node
Initial value:
= {
.function = ip6_frag,
.vector_size = sizeof (u32),
.format_trace = format_ip_frag_trace,
.n_errors = IP_FRAG_N_ERROR,
.error_strings = ip4_frag_error_strings,
.n_next_nodes = IP6_FRAG_N_NEXT,
.next_nodes = {
[IP6_FRAG_NEXT_IP6_REWRITE] = "ip6-rewrite",
[IP6_FRAG_NEXT_IP4_LOOKUP] = "ip4-lookup",
[IP6_FRAG_NEXT_IP6_LOOKUP] = "ip6-lookup",
[IP6_FRAG_NEXT_DROP] = "ip6-drop"
},
}
#define IP6_FRAG_NODE_NAME
Definition: ip_frag.h:44
static u8 * format_ip_frag_trace(u8 *s, va_list *args)
Definition: ip_frag.c:36
unsigned int u32
Definition: types.h:88
vl_api_fib_path_type_t type
Definition: fib_types.api:123
static char * ip4_frag_error_strings[]
Definition: ip_frag.c:500
static uword ip6_frag(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: ip_frag.c:379

(constructor) VLIB_REGISTER_NODE (ip6_frag_node)

Definition at line 529 of file ip_frag.c.

u32 running_fragment_id
static

Definition at line 46 of file ip_frag.c.