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

Go to the source code of this file.

Data Structures

struct  mpls_output_trace_t
 
struct  mpls_frag_trace_t_
 
struct  mpls_adj_incomplete_trace_t_
 A struct to hold tracing information for the MPLS label imposition node. More...
 

Macros

#define foreach_mpls_output_next
 
#define mpls_error(n, s)   s,
 
#define foreach_mpls_adj_incomplete_next
 

Typedefs

typedef struct mpls_frag_trace_t_ mpls_frag_trace_t
 
typedef struct mpls_adj_incomplete_trace_t_ mpls_adj_incomplete_trace_t
 A struct to hold tracing information for the MPLS label imposition node. More...
 

Enumerations

enum  mpls_output_mode_t { MPLS_OUTPUT_MODE, MPLS_OUTPUT_MIDCHAIN_MODE }
 
enum  mpls_output_next_t { MPLS_OUTPUT_N_NEXT }
 
enum  mpls_frag_next_t {
  MPLS_FRAG_NEXT_REWRITE, MPLS_FRAG_NEXT_REWRITE_MIDCHAIN, MPLS_FRAG_NEXT_ICMP_ERROR, MPLS_FRAG_NEXT_DROP,
  MPLS_FRAG_N_NEXT
}
 
enum  mpls_adj_incomplete_next_t { MPLS_ADJ_INCOMPLETE_N_NEXT }
 

Functions

static u8format_mpls_output_trace (u8 *s, va_list *args)
 
static uword mpls_output_inline (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame, mpls_output_mode_t mode)
 
VLIB_NODE_FN() mpls_output_node (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
 
VLIB_NODE_FN() mpls_midchain_node (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
 
static uword mpls_frag (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
 
static u8format_mpls_frag_trace (u8 *s, va_list *args)
 
VLIB_NODE_FN() mpls_adj_incomplete_node (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
 Graph node for incomplete MPLS adjacency. More...
 
static u8format_mpls_adj_incomplete_trace (u8 *s, va_list *args)
 

Variables

static char * mpls_error_strings []
 
vlib_node_registration_t mpls_output_node
 (constructor) VLIB_REGISTER_NODE (mpls_output_node) More...
 
vlib_node_registration_t mpls_midchain_node
 (constructor) VLIB_REGISTER_NODE (mpls_midchain_node) More...
 
static char * mpls_frag_error_strings []
 
vlib_node_registration_t mpls_frag_node
 (constructor) VLIB_REGISTER_NODE (mpls_frag_node) More...
 
vlib_node_registration_t mpls_adj_incomplete_node
 (constructor) VLIB_REGISTER_NODE (mpls_adj_incomplete_node) More...
 

Macro Definition Documentation

◆ foreach_mpls_adj_incomplete_next

#define foreach_mpls_adj_incomplete_next
Value:
_(DROP, "error-drop") \
_(IP4, "ip4-arp") \
_(IP6, "ip6-discover-neighbor")
DROP
Definition: error.def:41

Definition at line 545 of file mpls_output.c.

◆ foreach_mpls_output_next

#define foreach_mpls_output_next
Value:
_(DROP, "error-drop") \
_(FRAG, "mpls-frag")
DROP
Definition: error.def:41

Definition at line 35 of file mpls_output.c.

◆ mpls_error

#define mpls_error (   n,
 
)    s,

Typedef Documentation

◆ mpls_adj_incomplete_trace_t

A struct to hold tracing information for the MPLS label imposition node.

◆ mpls_frag_trace_t

Enumeration Type Documentation

◆ mpls_adj_incomplete_next_t

Enumerator
MPLS_ADJ_INCOMPLETE_N_NEXT 

Definition at line 550 of file mpls_output.c.

◆ mpls_frag_next_t

Enumerator
MPLS_FRAG_NEXT_REWRITE 
MPLS_FRAG_NEXT_REWRITE_MIDCHAIN 
MPLS_FRAG_NEXT_ICMP_ERROR 
MPLS_FRAG_NEXT_DROP 
MPLS_FRAG_N_NEXT 

Definition at line 384 of file mpls_output.c.

◆ mpls_output_mode_t

Enumerator
MPLS_OUTPUT_MODE 
MPLS_OUTPUT_MIDCHAIN_MODE 

Definition at line 30 of file mpls_output.c.

◆ mpls_output_next_t

Enumerator
MPLS_OUTPUT_N_NEXT 

Definition at line 39 of file mpls_output.c.

Function Documentation

◆ format_mpls_adj_incomplete_trace()

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

Definition at line 636 of file mpls_output.c.

+ Here is the call graph for this function:

◆ format_mpls_frag_trace()

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

Definition at line 513 of file mpls_output.c.

+ Here is the call graph for this function:

◆ format_mpls_output_trace()

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

Definition at line 47 of file mpls_output.c.

+ Here is the call graph for this function:

◆ mpls_adj_incomplete_node()

VLIB_NODE_FN() mpls_adj_incomplete_node ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t from_frame 
)

Graph node for incomplete MPLS adjacency.

This node will push traffic to either the v4-arp or v6-nd node based on the next-hop proto of the adj. We pay a cost for this 'routing' node, but an incomplete adj is the exception case.

Definition at line 574 of file mpls_output.c.

+ Here is the call graph for this function:

◆ mpls_frag()

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

Definition at line 394 of file mpls_output.c.

+ Here is the call graph for this function:

◆ mpls_midchain_node()

VLIB_NODE_FN() mpls_midchain_node ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t from_frame 
)

Definition at line 354 of file mpls_output.c.

+ Here is the call graph for this function:

◆ mpls_output_inline()

static uword mpls_output_inline ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t from_frame,
mpls_output_mode_t  mode 
)
inlinestatic

Definition at line 61 of file mpls_output.c.

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

◆ mpls_output_node()

VLIB_NODE_FN() mpls_output_node ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t from_frame 
)

Definition at line 332 of file mpls_output.c.

+ Here is the call graph for this function:

Variable Documentation

◆ mpls_adj_incomplete_node

vlib_node_registration_t mpls_adj_incomplete_node
Initial value:
= {
.name = "mpls-adj-incomplete",
.vector_size = sizeof (u32),
.n_errors = MPLS_N_ERROR,
.error_strings = mpls_error_strings,
.n_next_nodes = MPLS_ADJ_INCOMPLETE_N_NEXT,
.next_nodes = {
#define _(s,n)
},
}
static u8 * format_mpls_adj_incomplete_trace(u8 *s, va_list *args)
Definition: mpls_output.c:636
unsigned int u32
Definition: types.h:88
#define foreach_mpls_adj_incomplete_next
Definition: mpls_output.c:545
static char * mpls_error_strings[]
Definition: mpls_output.c:326

(constructor) VLIB_REGISTER_NODE (mpls_adj_incomplete_node)

Definition at line 652 of file mpls_output.c.

◆ mpls_error_strings

char* mpls_error_strings[]
static
Initial value:
= {
#define mpls_error(n,s)
mpls_error (NONE, "no error")
mpls_error (UNKNOWN_PROTOCOL, "unknown protocol")
mpls_error (UNSUPPORTED_VERSION, "unsupported version")
mpls_error (PKTS_DECAP, "MPLS input packets decapsulated")
mpls_error (PKTS_ENCAP, "MPLS output packets encapsulated")
mpls_error (PKTS_NEED_FRAG, "MPLS output packets needs fragmentation")
mpls_error (NO_LABEL, "MPLS no label for fib/dst")
mpls_error (TTL_EXPIRED, "MPLS ttl expired")
mpls_error (S_NOT_SET, "MPLS s-bit not set")
mpls_error (BAD_LABEL, "invalid FIB id in label")
mpls_error (NOT_IP4, "non-ip4 packets dropped")
mpls_error (DISALLOWED_FIB, "disallowed FIB id")
mpls_error (NOT_ENABLED, "MPLS not enabled")
mpls_error (DROP, "MPLS DROP DPO")
mpls_error (PUNT, "MPLS PUNT DPO")
}
option version
Definition: sample.api:19
for(i=1;i<=collision_buckets;i++)
vl_api_ip_proto_t protocol
Definition: lb_types.api:71
vl_api_ip4_address_t ip4
Definition: one.api:376
u32 label
Definition: fib_types.api:25
vl_api_address_t dst
Definition: gre.api:55
u8 ttl
Definition: fib_types.api:26
DROP
Definition: error.def:41
#define mpls_error(n, s)

Definition at line 326 of file mpls_output.c.

◆ mpls_frag_error_strings

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

Definition at line 372 of file mpls_output.c.

◆ mpls_frag_node

vlib_node_registration_t mpls_frag_node
Initial value:
= {
.function = mpls_frag,
.name = "mpls-frag",
.vector_size = sizeof (u32),
.format_trace = format_mpls_frag_trace,
.n_errors = IP_FRAG_N_ERROR,
.error_strings = mpls_frag_error_strings,
.n_next_nodes = MPLS_FRAG_N_NEXT,
.next_nodes = {
[MPLS_FRAG_NEXT_REWRITE] = "mpls-output",
[MPLS_FRAG_NEXT_REWRITE_MIDCHAIN] = "mpls-midchain",
[MPLS_FRAG_NEXT_ICMP_ERROR] = "ip4-icmp-error",
[MPLS_FRAG_NEXT_DROP] = "mpls-drop"
},
}
static u8 * format_mpls_frag_trace(u8 *s, va_list *args)
Definition: mpls_output.c:513
unsigned int u32
Definition: types.h:88
vl_api_fib_path_type_t type
Definition: fib_types.api:123
static char * mpls_frag_error_strings[]
Definition: mpls_output.c:372
static uword mpls_frag(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: mpls_output.c:394

(constructor) VLIB_REGISTER_NODE (mpls_frag_node)

Definition at line 523 of file mpls_output.c.

◆ mpls_midchain_node

vlib_node_registration_t mpls_midchain_node
Initial value:
= {
.name = "mpls-midchain",
.vector_size = sizeof (u32),
.n_errors = MPLS_N_ERROR,
.error_strings = mpls_error_strings,
.sibling_of = "mpls-output",
.format_trace = format_mpls_output_trace,
}
static u8 * format_mpls_output_trace(u8 *s, va_list *args)
Definition: mpls_output.c:47
unsigned int u32
Definition: types.h:88
static char * mpls_error_strings[]
Definition: mpls_output.c:326

(constructor) VLIB_REGISTER_NODE (mpls_midchain_node)

Definition at line 361 of file mpls_output.c.

◆ mpls_output_node

vlib_node_registration_t mpls_output_node
Initial value:
= {
.name = "mpls-output",
.vector_size = sizeof (u32),
.n_errors = MPLS_N_ERROR,
.error_strings = mpls_error_strings,
.n_next_nodes = MPLS_OUTPUT_N_NEXT,
.next_nodes = {
[MPLS_OUTPUT_NEXT_DROP] = "mpls-drop",
[MPLS_OUTPUT_NEXT_FRAG] = "mpls-frag",
},
.format_trace = format_mpls_output_trace,
}
static u8 * format_mpls_output_trace(u8 *s, va_list *args)
Definition: mpls_output.c:47
unsigned int u32
Definition: types.h:88
static char * mpls_error_strings[]
Definition: mpls_output.c:326

(constructor) VLIB_REGISTER_NODE (mpls_output_node)

Definition at line 339 of file mpls_output.c.