FD.io VPP  v17.01.1-3-gc6833f8
Vector Packet Processing
flowperpkt.h File Reference

flow-per-packet plugin header file More...

+ Include dependency graph for flowperpkt.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  flowperpkt_main_t
 

Functions

void flowperpkt_flush_callback (void)
 

Variables

flowperpkt_main_t flowperpkt_main
 
vlib_node_registration_t flowperpkt_node
 IPFIX flow-per-packet graph node. More...
 

Detailed Description

flow-per-packet plugin header file

Definition in file flowperpkt.h.

Function Documentation

void flowperpkt_flush_callback ( void  )

Definition at line 295 of file node.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

Variable Documentation

flowperpkt_main_t flowperpkt_main

Definition at line 53 of file flowperpkt.c.

vlib_node_registration_t flowperpkt_node
Initial value:
= {
.function = flowperpkt_node_fn,
.name = "flowperpkt",
.vector_size = sizeof (u32),
.format_trace = format_flowperpkt_trace,
.error_strings = flowperpkt_error_strings,
.n_next_nodes = FLOWPERPKT_N_NEXT,
.next_nodes = {
[FLOWPERPKT_NEXT_DROP] = "error-drop",
},
}
bad routing header type(not 4)") sr_error (NO_MORE_SEGMENTS
static u8 * format_flowperpkt_trace(u8 *s, va_list *args)
Definition: node.c:44
static char * flowperpkt_error_strings[]
Definition: node.c:72
static uword flowperpkt_node_fn(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: node.c:312
#define ARRAY_LEN(x)
Definition: clib.h:59
unsigned int u32
Definition: types.h:88

IPFIX flow-per-packet graph node.

Node Identifier:
flowperpkt

This is the IPFIX flow-record-per-packet node.

Parameters
vmvlib_main_t corresponding to the current thread.
nodevlib_node_runtime_t data for this node.
framevlib_frame_t whose contents should be dispatched.
Graph mechanics: buffer metadata, next index usage

Uses:

  • vnet_buffer(b)->ip.save_rewrite_length
    • tells the node the length of the rewrite which was applied in ip4/6_rewrite_inline, allows the code to find the IP header without having to parse L2 headers, or make stupid assumptions about their length.
  • vnet_buffer(b)->flags & VLIB_BUFFER_FLOW_REPORT
    • Used to suppress flow record generation for flow record packets.

Sets:

  • vnet_buffer(b)->flags & VLIB_BUFFER_FLOW_REPORT
    • To suppress flow record generation for flow record packets

Next Index:

  • Next configured output feature on the interface, usually "interface-output." Generated flow records head for ip4-lookup(constructor) VLIB_REGISTER_NODE (flowperpkt_node)

Definition at line 60 of file flowperpkt.h.