DOCA Flow

On This Page

This guide describes how to deploy the DOCA Flow library, the philosophy of the DOCA Flow API, and how to use it. The guide is intended for developers writing network function applications that focus on packet processing (such as gateways). It assumes familiarity with the network stack and DPDK.

DOCA Flow is the most fundamental API for building generic packet processing pipes in hardware. The DOCA Flow library provides an API for building a set of pipes, where each pipe consists of match criteria, monitoring, and a set of actions. Pipes can be chained so that after a pipe-defined action is executed, the packet may proceed to another pipe.

Using DOCA Flow API, it is easy to develop hardware-accelerated applications that have a match on up to two layers of packets (tunneled).

  1. MAC/VLAN/ETHERTYPE

  2. IPv4/IPv6

  3. TCP/UDP/ICMP

  4. GRE/VXLAN/GTP-U

  5. Metadata

The execution pipe can include packet modification actions such as the following:

  • Modify MAC address

  • Modify IP address

  • Modify L4 (ports, TCP sequences and acknowledgments)

  • Strip tunnel

  • Add tunnel

  • Set metadata

The execution pipe can also have monitoring actions such as the following:

  • Count

  • Policers

The pipe also has a forwarding target which can be any of the following:

  • Software (RSS to subset of queues)

  • Port

  • Another pipe

  • Drop packets

A DOCA Flow-based application can run either on the host machine or on an NVIDIA® BlueField® DPU target. Flow-based programs require an allocation of huge pages, hence the following commands are required:

Copy
Copied!
            

echo '1024' | sudo tee -a /sys/kernel/mm/hugepages/hugepages-2048kB/nr_hugepages sudo mkdir /mnt/huge sudo mount -t hugetlbfs nodev /mnt/huge

Warning

On some operating systems (RockyLinux, OpenEuler, CentOS 8.2) the default huge page size on the DPU (and Arm hosts) is larger than 2MB, often 512MB. Users can check the size of the huge pages on their OS using the following command:

Copy
Copied!
            

$ grep -i huge /proc/meminfo   AnonHugePages: 0 kB ShmemHugePages: 0 kB FileHugePages: 0 kB HugePages_Total: 4 HugePages_Free: 4 HugePages_Rsvd: 0 HugePages_Surp: 0 Hugepagesize: 524288 kB Hugetlb: 6291456 kB

In this case, instead of allocating 1024 pages, users should only allocate 4:

Copy
Copied!
            

echo '4' | sudo tee -a /sys/kernel/mm/hugepages/hugepages-524288kB/nr_hugepages

The following diagram shows how the DOCA Flow library defines a pipe template, receives a packet for processing, creates the pipe entry, and offloads the flow rule in NIC hardware.

architecture-diagram-version-1-modificationdate-1707420688227-api-v2.png

Features of DOCA Flow:

  • User-defined set of matches parser and actions

  • DOCA Flow pipes can be created or destroyed dynamically

  • Packet processing is fully accelerated by hardware with a specific entry in a flow pipe

  • Packets that do not match any of the pipe entries in hardware can be sent to Arm cores for exception handling and then reinjected back to hardware

The DOCA Flow pipe consists of the following components:

  • Monitor (MON in the diagram) - counts, meters, or mirrors

  • Modify (MDF in the diagram) - modifies a field

  • Forward (FWD in the diagram) - forwards to the next stage in packet processing

DOCA Flow organizes pipes into high-level containers named domains to address the specific needs of the underlying architecture.

A key element in defining a domain is the packet direction and a set of allowed actions.

  • A domain is a pipe attribute (also relates to shared objects)

  • A domain restricts the set of allowed actions

  • Transition between domains is well-defined (packets cannot cross domains arbitrarily)

  • A domain may restrict the sharing of objects between packet directions

  • Packet direction can restrict the move between domains

List of Steering Domains

DOCA Flow provides the following set of predefined steering domains:

Domain

Description

DOCA_FLOW_PIPE_DOMAIN_DEFAULT

  • Default domain for actions on ingress traffic

  • Encapsulated and secure actions are not allowed here

  • The next milestone is queue or pipe in the EGRESS domain

  • Miss action is: Drop

DOCA_FLOW_PIPE_DOMAIN_SECURE_INGRESS

  • For secure actions on ingress traffic

  • Encapsulation and encrypting actions not allowed here

  • The only allowed domain for decrypting secure actions

  • The next milestone is queue or pipe in the DEFAULT or EGRESS domain

  • Only meta register is preserved

  • Miss action is: Drop

DOCA_FLOW_PIPE_DOMAIN_EGRESS

  • Domain for actions on egress traffic

  • Decapsulation and secure actions are not allowed here

  • The next milestone is wire/representor or pipe in SECURE_EGRESS domain

  • Miss action is: Send to wire/representor

DOCA_FLOW_PIPE_DOMAIN_SECURE_EGRESS

  • Domain for secure actions on egress traffic

  • Decapsulation actions are not allowed here

  • The only allowed domain for encrypting secure action

  • The next milestone is wire/representor

  • Miss action is: Send to wire/representor


Domains in VNF Mode

domains_d1-version-1-modificationdate-1707420689047-api-v2.png


Domains in Switch Mode

domains_d2-version-1-modificationdate-1707420689347-api-v2.png


Note

You can find more detailed information on DOCA Flow API in NVIDIA DOCA Libraries API Reference Manual.

Warning

The pkg-config (*.pc file) for the DOCA Flow library is included in DOCA's regular definitions (i.e., doca).

The following sections provide additional details about the library API.

doca_flow_cfg

This structure is required input for the the DOCA Flow global initialization function - doca_flow_init.

Copy
Copied!
            

struct doca_flow_cfg { uint64_t flags; uint16_t queues; struct doca_flow_resources resource; uint8_t nr_acl_collisions; const char *mode_args; uint32_t nr_shared_resources[DOCA_FLOW_SHARED_RESOURCE_MAX]; unit32_t queue_depth; doca_flow_entry_process_cb cb; doca_flow_shared_resource_unbind_cb unbind_cb; const uint8_t *rss_key; uint32_t rss_key_len; struct doca_flow_resource_rss_cfg rss; };

  • flag – configuration flags
  • pipe_queues – the number of hardware acceleration control queues. It is expected that the same core always uses the same queue_id. In cases where multiple cores access the API using the same queue_id, it is up to the application to use locks between different cores/threads.
  • resource – resource quota. This field includes the flow resource quota defined in the following structs:

    • uint32_t nb_counters – number of regular (non-shared) counters to configure
    • uint32_b nb_meters – number of regular (non-shared) traffic meters to configure
  • nr_acl_collisions – number of collisions for the ACL module. Default value is 3. Maximum value is 8.
  • mode_args – sets the DOCA Flow architecture mode
  • nr_shared_resources – total shared resource per type. See "Shared Counter Resource" section for more information.

    • Index DOCA_FLOW_SHARED_RESOURCE_METER – number of meters that can be shared among flows
    • Index DOCA_FLOW_SHARED_RESOURCE_COUNT – number of counters that can be shared among flows
    • Index DOCA_FLOW_SHARED_RESOURCE_RSS – number of RSS that can be shared among flows
    • Index DOCA_FLOW_SHARED_RESOURCE_CRYPTO – number of crypto actions that can be shared among flows
  • queue_depth – n umber of flow rule operations a queue can hold. This value is preconfigured at port start ( queue_size). Default value is 128 (configuring 0 sets default)
  • cb – callback function for entry to be called during doca_flow_entries_process to complete entry operation (add, update, delete, and aged)
  • unbind_cb – callback for unbinding of a shared resource
  • rss_key – (optional) pointer to RSS key used by default RSS rules. If not set, the underlying driver's default RSS key is used.
  • rss_key_len – the length of RSS key pointed to by rss_key.
  • rss – global RSS configuration for all ports. It is overridden by the port's RSS configuration. This configuration is used at port start which, in non-isolated mode, creates default RSS rules to forward incoming packets to traffic receive queues (i.e., RXQ) created by the user.

    Warning

    If users creates their own hairpin queues (i.e., doca_flow_port_cfg.dev is not set in "switch" mode), RSS configuration must also be set to reflect the number of traffic receive queues and calculate the correct hairpin queue index internally. Otherwise, packets would not go to the correct hairpin queue.

doca_flow_entry_process_cb

Copy
Copied!
            

typedef void (*doca_flow_entry_process_cb)(struct doca_flow_pipe_entry *entry, uint16_t pipe_queue, enum doca_flow_entry_status status, enum doca_flow_entry_op op, void *user_ctx);

  • entry [in] – p ointer to pipe entry
  • pipe_queue [in] – q ueue identifier
  • status [in] – entry processing status (see doca_flow_entry_status)
  • op [in] – entry's operation, defined in the following enum:

    • DOCA_FLOW_ENTRY_OP_ADD – Add entry operation
    • DOCA_FLOW_ENTRY_OP_DEL – Delete entry operation
    • DOCA_FLOW_ENTRY_OP_UPD – Update entry operation
    • DOCA_FLOW_ENTRY_OP_AGED – Aged entry operation
  • user_ctx [in] – user context as provided to doca_flow_pipe_add_entry

    Warning

    User context is set once to the value provided to doca_flow_pipe_add_entry (or to any doca_flow_pipe_*_add_entry variant) as the usr_ctx parameter, and is then reused in subsequent callback invocation for all operations. This user context must remain available for all potential invocations of the callback depending on it, as it is memorized as part of the entry and provided each time.

shared_resource_unbind_cb

Copy
Copied!
            

typedef void (*shared_resource_unbind_cb)(enum engine_shared_resource_type type, uint32_t shared_resource_id, struct engine_bindable *bindable);

  • type [in] – engine shared resource type. Supported types are: meter, counter, rss, crypto, mirror.
  • shared_resource_id [in] – shared resource; unique ID
  • bindable [in] – pointer to bindable object (e.g., port, pipe)

doca_flow_resource_rss_cfg

Copy
Copied!
            

struct doca_flow_resource_rss_cfg { uint32_t outer_flags; uint32_t inner_flags; uint16_t *queues_array; int nr_queues; enum doca_flow_rss_hash_function rss_hash_func; };

  • outer_flags – RSS offload type on the outermost packet
  • inner_flags – RSS offload type on the innermost packet
  • queues_array – pointer to receive queues ID (i.e., [0, 1, 2, 3])
  • nr_queues – number of receive queues ID (i.e., 4)
  • rss_hash_func – RSS hash type, DOCA_FLOW_RSS_HASH_FUNCTION_TOEPLITZ or DOCA_FLOW_RSS_HASH_FUNCTION_SYMMETRIC_TOEPLITZ

    Warning

    outer_flags , inner_flags , rss_hash_func are ignored by default RSS rules which use the driver's default values.

doca_flow_port_cfg

This struct is required input for the DOCA Flow port initialization function, doca_flow_port_start.

Copy
Copied!
            

struct doca_flow_port_cfg { uint16_t port_id; enum doca_flow_port_type type; const char *devargs; uint16_t priv_data_size; void *dev; struct doca_flow_resource_rss_cfg *rss; };

The struct doca_flow_port_cfg contains the following elements:

  • port_id – DPDK port ID.
  • type – depends on underlying API. This field includes the following port type:

    • DOCA_FLOW_PORT_DPDK_BY_ID – DPDK port by mapping ID
  • devargs – a string containing the exact configuration needed according to the type

    Note

    For usage information of the type and devargs fields, refer to section "Start Point".

  • priv_data_size – per port, users may define private data where application-specific info can be stored
  • dev – port's doca_dev; used to create internal hairpin resource for switch mode if it is set
  • rss – (optional) port's RSS configuration used by default RSS rules of this port. This configuration overrides global RSS configuration in doca_flow_cfg.

    Note

    This configuration is used to create default RSS rules of this port to forward packets to traffic receive queues (i.e., RXQ) in non-isolated mode.

doca_flow_pipe_cfg

This is a pipe configuration that contains the user-defined template for the packet process.

Copy
Copied!
            

struct doca_flow_pipe_attr { const char *name; enum doca_flow_pipe_type type; enum doca_flow_pipe_domain domain; bool is_root; uint32_t nb_flows;    bool enable_strict_matching; uint8_t nb_actions; uint8_t nb_ordered_lists; enum doca_flow_direction_info dir_info; bool miss_counter; };

  • name – a string containing the name of the pipeline.
  • type – type of pipe (enum doca_flow_pipe_type). This field includes the following pipe types:

    • DOCA_FLOW_PIPE_BASIC – flow pipe
    • DOCA_FLOW_PIPE_CONTROL – control pipe
    • DOCA_FLOW_PIPE_LPM – LPM pipe
    • DOCA_FLOW_PIPE_ACL – ACL pipe
    • DOCA_FLOW_PIPE_ORDERED_LIST – ordered list pipe
    • DOCA_FLOW_PIPE_HASH – hash pipe
  • domain – pipe steering domain:

    • DOCA_FLOW_PIPE_DOMAIN_DEFAULT – default pipe domain for actions on ingress traffic
    • DOCA_FLOW_PIPE_DOMAIN_SECURE_INGRESS – pipe domain for secure actions on ingress traffic
    • DOCA_FLOW_PIPE_DOMAIN_EGRESS – pipe domain for actions on egress traffic
    • DOCA_FLOW_PIPE_DOMAIN_SECURE_EGRESS – pipe domain for actions on egress traffic
  • is_root – determines whether the pipeline is root. If true, then the pipe is a root pipe executed on packet arrival.

    Warning

    Only one root pipe is allowed per port of any type.

  • enable_strict_matching – if true, relaxed matching (enabled by default) is disabled for this pipe
  • nb_flows – maximum number of flow rules. Default is 8k if not set
  • nb_actions – maximum number of DOCA Flow action array. Default is 1 if not set

    Warning

    nb_actions is mutually exclusive with nb_ordered_lists.

  • nb_ordered_lists – Number of ordered lists in the array. Default is 0.

    Warning

    nb_ordered_lists is mutually exclusive with nb_actions.

  • dir_info – pipe direction information:

    • DOCA_FLOW_DIRECTION_BIDIRECTIONAL – default for traffic in both directions
    • DOCA_FLOW_DIRECTION_NETWORK_TO_HOST – network to host traffic
    • DOCA_FLOW_DIRECTION_HOST_TO_NETWORK – host to network traffic
    Warning

    dir_info is supported in Switch Mode only.

    Warning

    dir_info is optional. It can provide potential optimization at the driver layer. The driver may ignore it silently.

  • miss_counter – determines whether to add a miss counter to the pipe. If true, then the pipe will have a miss counter and the user can query it using doca_flow_query_pipe_miss.

    Warning

    Miss counter may affect performance and should be avoided if not required by the application.

Copy
Copied!
            

struct doca_flow_ordered_list { uint32_t idx; uint32_t size; const void **elements; enum doca_flow_ordered_list_element_type *types; };

  • idx – list index among the lists of the pipe.

    • At pipe creation, it must match the list position in the array of lists
    • At entry insertion, it determines which list to use
  • size – number of elements in the list.
  • elements – an array of DOCA flow structure pointers, depending on the types.
  • types – types of DOCA Flow structures each of the elements is pointing to. This field includes the following ordered list element types:

    • DOCA_FLOW_ORDERED_LIST_ELEMENT_ACTIONS – ordered list element is struct doca_flow_actions. The next element is struct doca_flow_action_descs which is associated with the current element
    • DOCA_FLOW_ORDERED_LIST_ELEMENT_ACTION_DESCS – ordered list element is struct doca_flow_action_descs. If the previous element type is ACTIONS, the current element is associated with it. Otherwise, the current element is ordered with regards to the previous one
    • DOCA_FLOW_ORDERED_LIST_ELEMENT_MONITOR – ordered list element is struct doca_flow_monitor
Copy
Copied!
            

struct doca_flow_pipe_cfg { struct doca_flow_pipe_attr attr; struct doca_flow_port *port; struct doca_flow_match *match; struct doca_flow_match *match_mask; struct doca_flow_actions **actions; struct doca_flow_actions **actions_masks; struct doca_flow_action_descs **action_descs; struct doca_flow_monitor *monitor; struct doca_flow_ordered_list **ordered_lists; };

  • attr – attributes for the pipeline
  • port – port for the pipeline
  • match – matcher for the pipeline except for DOCA_FLOW_PIPE_HASH
  • match_mask – match mask for the pipeline. Only for DOCA_FLOW_PIPE_BASIC, DOCA_FLOW_PIPE_CONTROL, DOCA_FLOW_PIPE_HASH, and DOCA_FLOW_PIPE_ORDERED_LIST
  • actions – action references array for the pipeline. Only for DOCA_FLOW_PIPE_BASIC and DOCA_FLOW_PIPE_HASH
  • actions_masks – actions' masks array for the pipeline. Only for DOCA_FLOW_PIPE_BASIC and DOCA_FLOW_PIPE_HASH
  • action_descs – action descriptors array. Only for DOCA_FLOW_PIPE_BASIC, DOCA_FLOW_PIPE_CONTROL, and DOCA_FLOW_PIPE_HASH
  • monitor – monitor for the pipeline. Only for DOCA_FLOW_PIPE_BASIC, DOCA_FLOW_PIPE_CONTROL, and DOCA_FLOW_PIPE_HASH
  • ordered_list – array of ordered list types. Only for DOCA_FLOW_PIPE_ORDERED_LIST

doca_flow_parser_geneve_opt_cfg

This is a parser configuration that contains the user-defined template for a single GENEVE TLV option.

Copy
Copied!
            

struct doca_flow_parser_geneve_opt_cfg { enum doca_flow_parser_geneve_opt_mode match_on_class_mode; doca_be16_t option_class; uint8_t option_type; uint8_t option_len; doca_be32_t data_mask[DOCA_FLOW_GENEVE_DATA_OPTION_LEN_MAX]; };

  • match_on_class_mode – role of option_class in this option (enum doca_flow_parser_geneve_opt_mode). This field includes the following class modes:

    • DOCA_FLOW_PARSER_GENEVE_OPT_MODE_IGNORE – class is ignored, its value is neither part of the option identifier nor changeable per pipe/entry
    • DOCA_FLOW_PARSER_GENEVE_OPT_MODE_FIXED – class is fixed (the class defines the option along with the type)
    • DOCA_FLOW_PARSER_GENEVE_OPT_MODE_MATCHABLE – class is the field of this option; different values can be matched for the same option (defined by type only)
  • option_class – option class ID (must be set when class mode is fixed)
  • option_type – option type
  • option_len – length of the option data (in 4-byte granularity)
  • data_mask – mask for indicating which dwords (DWs) should be configured on this option

    Warning

    This is not a bit mask. Each DW can contain either 0xffffffff for configure or 0x0 for ignore. Other values are not valid.

doca_flow_meta

There is a maximum DOCA_FLOW_META_MAX-byte scratch area which exists throughout the pipeline.

The user can set a value to metadata, copy from a packet field, then match in later pipes. Mask is supported in both match and modification actions.

The user can modify the metadata in different ways based on its actions' masks or descriptors:

  • ADD – set metadata scratch value from a pipe action or an action of a specific entry. Width is specified by the descriptor.
  • COPY – copy metadata scratch value from a packet field (including the metadata scratch itself). Width is specified by the descriptor.

    Warning

    In a real application, it is encouraged to create a union of doca_flow_meta defining the application's scratch fields to use as metadata.

    Copy
    Copied!
                

    struct doca_flow_meta { union { uint32_t pkt_meta; /**< Shared with application via packet. */ struct { uint32_t lag_port :2; /**< Bits of LAG member port. */ uint32_t type :2; /**< 0: traffic 1: SYN 2: RST 3: FIN. */ uint32_t zone :28; /**< Zone ID for CT processing. */ } ct; }; uint32_t u32[DOCA_FLOW_META_MAX / 4 - 1]; /**< Programmable user data. */ uint32_t mark; /**< Mark id. */ };

  • pkt_meta – Metadata can be received along with the packet
  • u32[] – Scratch are u32[]

    • u32[0] contains the IPsec syndrome in the lower 8 bits if the packet passes the pipe with IPsec crypto action configured in full offload mode:

      • 0 – signifies a successful IPsec operation on the packet
      • 1 – bad replay. Ingress packet sequence number is beyond anti-reply window boundaries.
    • u32[1] contains the IPsec packet sequence number (lower 32 bits) if the packet passes the pipe with IPsec crypto action configured in full offload mode
  • mark – O ptional parameter that may be communicated to the software. If it is set and the packet arrives to the software, the value can be examined using the software API.

    • When DPDK is used, MARK is placed on the struct rte_mbuf (see "Action: MARK" section in official DPDK documentation )
    • When the Kernel is used, MARK is placed on the struct sk_buff 's MARK field

Some DOCA pipe types (or actions) use several bytes in the scratch area for internal usage. So, if the user has set these bytes in PIPE-1 and read them in PIPE-2, and between PIPE-1 and PIPE-2 there is PIPE-A which also uses these bytes for internal purpose, then these bytes are overwritten by the PIPE-A. This must be considered when designing the pipe tree.
The bytes used in the scratch area are presented by pipe type in the following table:

Pipe Type/Action

Bytes Used in Scratch

orderd_list

[0, 1, 2, 3]

LPM

[0, 1, 2, 3]

mirror

[0, 1, 2, 3]

ACL

[0, 1, 2, 3]

Fwd from ingress to egress

[0, 1, 2, 3]

doca_flow_parser_meta

This structure contains all metadata information which hardware extracts from the packet.

These fields contain read-only hardware data which can be used to match on.

Copy
Copied!
            

struct doca_flow_parser_meta { uint32_t port_meta; uint16_t random; uint8_t ipsec_syndrome; enum doca_flow_meter_color meter_color; enum doca_flow_l2_meta outer_l2_type; enum doca_flow_l3_meta outer_l3_type; enum doca_flow_l4_meta outer_l4_type; enum doca_flow_l2_meta inner_l2_type; enum doca_flow_l3_meta inner_l3_type; enum doca_flow_l4_meta inner_l4_type; uint8_t outer_ip_fragmented; uint8_t inner_ip_fragmented; uint8_t outer_l3_ok; uint8_t outer_ip4_checksum_ok; uint8_t outer_l4_ok; uint8_t inner_l3_ok; uint8_t inner_ip4_checksum_ok; uint8_t inner_l4_ok; };

  • port_meta – Programmable source vport.
  • random – Random value to match regardless to packet data/headers content. Application should not assume that this value is kept during the lifetime of the packet. It holds a different random value for each matching.

    Warning

    When random matching is used for sampling, the number of entries in the pipe must be 1 (doca_flow_pipe_attr.nb_flows = 1).

  • ipsec_syndrome – IPsec decrypt/authentication syndrome
  • meter_color – Meter colors (enum doca_flow_meter_color). Valid colors:

    • DOCA_FLOW_METER_COLOR_GREEN – Meter marking packet color as green
    • DOCA_FLOW_METER_COLOR_YELLOW – Meter marking packet color as yellow
    • DOCA_FLOW_METER_COLOR_RED – Meter marking packet color as red.
  • outer_l2_type – Outer L2 packet type (enum doca_flow_l2_meta). Valid L2 types:

    • DOCA_FLOW_L2_META_NO_VLAN – No VLAN present
    • DOCA_FLOW_L2_META_SINGLE_VLAN – Single VLAN present
    • DOCA_FLOW_L2_META_MULTI_VLAN – Multiple VLAN present
  • outer_l3_type – Outer L3 packet type (enum doca_flow_l3_meta). Valid L3 types:

    • DOCA_FLOW_L3_META_NONE – L3 type is none of the below
    • DOCA_FLOW_L3_META_IPV4 – L3 type is IPv4
    • DOCA_FLOW_L3_META_IPV6 – L3 type is IPv6
  • outer_l4_type – Outer L4 packet type (enum doca_flow_l4_meta). Valid L4 types:

    • DOCA_FLOW_L4_META_NONE – L4 type is none of the below
    • DOCA_FLOW_L4_META_TCP – L4 type is TCP
    • DOCA_FLOW_L4_META_UDP – L4 type is UDP
    • DOCA_FLOW_L4_META_ICMP – L4 type is ICMP
    • DOCA_FLOW_L4_META_ESP – L4 type is ESP
  • inner_l2_type – Inner L2 packet type (enum doca_flow_l2_meta). Valid L2 types:

    • DOCA_FLOW_L2_META_NO_VLAN – No VLAN present
    • DOCA_FLOW_L2_META_SINGLE_VLAN – Single VLAN present
    • DOCA_FLOW_L2_META_MULTI_VLAN – Multiple VLAN present
  • inner_l3_type – Inner L3 packet type (enum doca_flow_l3_meta). Valid L3 types:

    • DOCA_FLOW_L3_META_NONE – L3 type is none of the below
    • DOCA_FLOW_L3_META_IPV4 – L3 type is IPv4
    • DOCA_FLOW_L3_META_IPV6 – L3 type is IPv6
  • inner_l4_type – Inner L4 packet type (enum doca_flow_l4_meta). Valid L4 types:

    • DOCA_FLOW_L4_META_NONE – L4 type is none of the below
    • DOCA_FLOW_L4_META_TCP – L4 type is TCP
    • DOCA_FLOW_L4_META_UDP – L4 type is UDP
    • DOCA_FLOW_L4_META_ICMP – L4 type is ICMP
    • DOCA_FLOW_L4_META_ESP – L4 type is ESP
  • outer_ip_fragmented – Whether outer IP packet is fragmented
  • inner_ip_fragmented – Whether inner IP packet is fragmented
  • outer_l3_ok – Whether outer network layer is valid regardless to IPv4 checksum
  • outer_ip4_checksum_ok – Whether outer IPv4 checksum is valid, packets without outer IPv4 header are taken as invalid checksum
  • outer_l4_ok – Whether outer transport layer is valid including L4 checksum
  • inner_l3_ok – Whether inner network layer is valid regardless to IPv4 checksum
  • inner_ip4_checksum_ok – Whether inner IPv4 checksum is valid, packets without inner IPv4 header are taken as invalid checksum
  • inner_l4_ok – Whether inner transport layer is valid including L4 checksum
Warning

Matching on either outer_l4_ok=1 or inner_l4_ok=1 means that all L4 checks (length, checksum, etc.) are ok.

Matching on either outer_l4_ok=0 or inner_l4_ok=0 means that all L4 checks are not ok.

It is not possible to match using these fields for cases where a part of the checks is okay and a part is not ok.

doca_flow_header_format

This structure defines each layer of the packet header format.

Copy
Copied!
            

struct doca_flow_header_format { struct doca_flow_header_eth eth; uint16_t l2_valid_headers; struct doca_flow_header_eth_vlan eth_vlan[DOCA_FLOW_VLAN_MAX]; enum doca_flow_l3_type l3_type; union { struct doca_flow_header_ip4 ip4; struct doca_flow_header_ip6 ip6; }; enum doca_flow_l4_type_ext l4_type_ext; union { struct doca_flow_header_icmp icmp; struct doca_flow_header_udp udp; struct doca_flow_header_tcp tcp; struct doca_flow_header_l4_port transport; }; };

  • eth – Ethernet header format, including source and destination MAC address and the Ethernet layer type. If a VLAN header is present then eth.type represents the type following the last VLAN tag.
  • l2_valid_headers – bitwise OR one of the following options: DOCA_FLOW_L2_VALID_HEADER_VLAN_0, DOCA_FLOW_L2_VALID_HEADER_VLAN_1
  • eth_vlan – VLAN tag control information for each VLAN header.
  • l3_type – Layer 3 type, indicates the next layer is IPv4 or IPv6.
  • ip4 – IPv4 header format including source and destination IP address, type of service (dscp and ecn), and the next protocol.
  • ip6 – IPv6 header format including source and destination IP address, traffic class (dscp and ecn), and the next protocol.
  • l4_type_ext – The next layer type after the layer 3.
  • icmp – ICMP header format.
  • udp – UDP header format.
  • tcp – TCP header format.
  • transport – header format for source and destination ports; used for defining match or actions with relaxed matching while not caring about the L4 protocol (whether TCP or UDP). This is used only if the l4_type_ext is DOCA_FLOW_L4_TYPE_EXT_TRANSPORT.

doca_flow_tun

This structure defines tunnel headers.

Copy
Copied!
            

struct doca_flow_tun { enum doca_flow_tun_type type; union { struct { doca_be32_t vxlan_tun_id; }; struct { bool key_present; doca_be16_t protocol; doca_be32_t gre_key; }; struct { doca_be32_t gtp_teid; }; struct { doca_be32_t esp_spi; doca_be32_t esp_sn; }; struct { struct doca_flow_header_mpls mpls[DOCA_FLOW_MPLS_LABELS_MAX]; }; struct { struct doca_flow_header_geneve geneve; union doca_flow_geneve_option geneve_options[DOCA_FLOW_GENEVE_OPT_LEN_MAX]; }; }; };

  • type – type of tunnel (enum doca_flow_tun_type). Valid tunnel types:

    • DOCA_FLOW_TUN_VXLAN – VXLAN tunnel
    • DOCA_FLOW_TUN_GRE – GRE tunnel with option KEY (optional)
    • DOCA_FLOW_TUN_GTP – GTP tunnel
    • DOCA_FLOW_TUN_ESP – ESP tunnel
    • DOCA_FLOW_TUN_MPLS_O_UDP – MPLS tunnel (supports up to 5 headers)
    • DOCA_FLOW_TUN_GENEVE – GENEVE header format including option length, VNI, next protocol, and options.
  • vxlan_tun_vni – VNI (24) + reserved (8)
  • key_present – GRE option KEY is present
  • protocol – GRE next protocol
  • gre_key – GRE key option, match on this field only when key_present is true
  • gtp_teid – GTP TEID
  • esp_spi – IPsec session parameter index
  • esp_sn – IPsec sequence number
  • mpls – List of MPLS header format
  • geneve – GENEVE header format
  • geneve_options – List DWs describing GENEVE TLV options

The following table details which tunnel types support which operation on the tunnel header:

Tunnel Type

Match(a)

L2 encap(b)

L2 decap(b)

L3 encap(b)

L3 decap(b)

Modify(c)

Copy(d)

DOCA_FLOW_TUN_VXLAN

DOCA_FLOW_TUN_GRE

DOCA_FLOW_TUN_GTP

DOCA_FLOW_TUN_ESP

DOCA_FLOW_TUN_MPLS_O_UDP

DOCA_FLOW_TUN_GENEVE

Warning

(a) Support for matching on this tunnel header, configured in the tun field in struct doca_flow_match.

(b) Decapsulation/encapsulation of the tunnel header is to be enabled in struct doca_flow_actions using the Boolean fields decap and has_encap. An action descriptor with the type DOCA_FLOW_ACTION_DECAP_ENCAP must be provided if decap/encap is enabled. The action descriptor's Boolean field is_l2 determines the decapsulation/encapsulation tunnel type. It is the user's responsibility to determine whether a tunnel is type L2 or L3. If the user sets settings unaligned with the packets coming, anomalous behavior may occur.

(c) Support for modifying this tunnel header, configured in the tun field in struct doca_flow_actions.

(d) Support for copying fields to/from this tunnel header, configured in struct doca_flow_action_descs.

DOCA Flow Tunnel GENEVE

The DOCA_FLOW_TUN_GENEVE type includes the basic header for GENEVE and an array for GENEVE TLV options.

Note

The GENEVE TLV options must be configured before in parser creation (doca_flow_parser_geneve_opt_create).

doca_flow_header_geneve

This structure defines GENEVE protocol header.

Copy
Copied!
            

struct doca_flow_header_geneve { uint8_t ver_opt_len; uint8_t o_c; doca_be16_t next_proto; doca_be32_t vni; };

  • ver_opt_len – version (2) + options length (6). The length is expressed in 4-byte multiples, excluding the GENEVE header.
  • o_c – OAM packet (1) + critical options present (1) + reserved (6).
  • next_proto – GENEVE next protocol. When GENEVE has options, it describes the protocol after the options.
  • gre_key – GENEVE VNI (24) + reserved (8).

doca_flow_geneve_option

This object describes a single DW (4-bytes) from the GENEVE option header. It describes either the first DW in the option including class, type, and length, or any other data DW.

Copy
Copied!
            

union doca_flow_geneve_option { struct { doca_be16_t class_id; uint8_t type; uint8_t length; }; doca_be32_t data; };

  • class_id – Option class ID
  • type – Option type
  • length – Reserved (3) + option data length (5). The length is expressed in 4-byte multiples, excluding the option header.
  • data – 4 bytes of option data

GENEVE Matching Notes

  • Option type and length must be provided for each option at pipe creation time in a match structure
  • When class mode is DOCA_FLOW_PARSER_GENEVE_OPT_MODE_FIXED, option class must also be provided for each option at pipe creation time in a match structure
  • Option length field cannot be matched
  • Type field is the option identifier, it must be provided as a specific value upon pipe creation
  • Option data is taken as changeable when all data is filled with 0xffffffff including DWs which were not configured at parser creation time
  • In the match_mask structure, the DWs which have not been configured at parser creation time must be zero

GENEVE Modification Notes

  • When GENEVE option modification is requested, the actions_mask structure must be provided. The option identifiers are provided in the mask structure while the values are provided in actions structure.
  • The options type and length must be provided for each option at pipe creation time in an action mask structure.
  • When the class mode is DOCA_FLOW_PARSER_GENEVE_OPT_MODE_FIXED, the option class must also be provided for each option at pipe creation time in an action mask structure.
  • Since class_id and type mask fields are used for identifiers, their modification is limited:

    • Specific value 0 is not supported on pipe creation, value 0 is interpreted as ignored. Modifying them to 0 is enabled per entry when they are marked as changeable during pipe creation.
    • Modifying partial mask is not supported.
  • The option length field cannot be modified.
  • The option data is taken as changeable when all the data is filled with 0xffffffff including DWs which were not configured at parser creation time.
  • In the actions_mask structure, the DWs which have not been configured at parser creation time must be zero.
  • Only data DW configured during parser creation can be modified.
  • Modification of the options type and class_id is supported only for options configured with class mode DOCA_FLOW_PARSER_GENEVE_OPT_MODE_MATCHABLE.
  • The order of options in the action structure does not necessarily reflect their order in the packet or match structure.

GENEVE Encapsulation Notes

  • The encapsulation size is constant per doca_flow_actions structure. The size is determined by the tun.geneve.ver_opt_len field, so it must be specified at pipe creation time.
  • The total encapsulation size is limited by 128 bytes. The tun.geneve.ver_opt_len field should follow this limitation according to the requested outer header sizes:

    Header Included in Outer

    Maximal tun.geneve.ver_opt_len Value

    ETH + VLAN + IPV4 + UDP + GENEVE

    18

    ETH + VLAN + IPV6 + UDP + GENEVE

    13

    ETH + IPV4 + UDP + GENEVE

    19

    ETH + IPV6 + UDP + GENEVE

    14

  • Options in encapsulation data do not have to be configured at parser creation time.
  • When at least one of the encap fields are changeable, GENEVE options are also taken as changeable regardless of values provided during pipe creation time. Thus, GENEVE option values must be provided again for each entry.

GENEVE Decapsulation Notes

The options to decapsulate do not have to be configured at parser creation time.

doca_flow_match

This structure is a match configuration that contains the user-defined fields that should be matched on the pipe.

Copy
Copied!
            

struct doca_flow_match { uint32_t flags; struct doca_flow_meta meta; struct doca_flow_parser_meta parser_meta; struct doca_flow_header_format outer; struct doca_flow_tun tun; struct doca_flow_header_format inner; };

  • flags – Match items which are no value needed.
  • meta – Programmable metadata.
  • parser_meta – Read-only metadata.
  • outer – Outer packet header format.
  • tun – Tunnel info
  • inner – Inner packet header format.

doca_flow_match_condition

This structure is a "match with compare result" configuration that contains the user-defined fields compare result that should be matched on the pipe. It can only be used for adding control pipe entry.

Copy
Copied!
            

struct doca_flow_match_condition { enum doca_flow_compare_op operation; union { struct { struct doca_flow_desc_field a; struct doca_flow_desc_field b; uint32_t width; } field_op; }; };

  • operation – Match condition operation
  • a – Compare field descriptor A. The string field must be specified.
  • b – Compare field descriptor B. When string field is NULL, B is the immediate value. The value is taken from the field described by the A string in the attached match structure.
  • width – Compare width

The operation field includes the following compare operations:

  • DOCA_FLOW_COMPARE_EQ – Match with the compare operation to be equal (A = B)
  • DOCA_FLOW_COMPARE_NE – Match with the compare operation to be not equal (A ≠ B)
  • DOCA_FLOW_COMPARE_LT – Match with the compare operation to be less than (A < B)
  • DOCA_FLOW_COMPARE_LE – Match with the compare operation to be less equal (A ≤ B)
  • DOCA_FLOW_COMPARE_GT – Match with the compare operation to great than (A > B)
  • DOCA_FLOW_COMPARE_GE – Match with the compare operation to great equal (A ≥ B)

doca_flow_actions

This structure is a flow actions configuration.

Copy
Copied!
            

struct doca_flow_actions { uint8_t action_idx; uint32_t flags; bool decap; bool pop; struct doca_flow_meta meta; struct doca_flow_header_format outer; struct doca_flow_tun tun; bool has_encap; struct doca_flow_encap_action encap; bool has_push; struct doca_flow_push_action push; bool has_crypto_encap; struct doca_flow_crypto_encap_action crypto_encap; struct doca_flow_crypto_action crypto; };

  • action_idx – Index according to place provided on creation.
  • flags – Action flags.
  • decap – Decap while it is set to true. If set to true, struct doca_flow_action_descs must be provided and an action descriptor of type DOCA_FLOW_ACTION_DECAP_ENCAP must be a part of it.
  • pop – Pop header while it is set to true.
  • meta – Modify meta value.
  • outer – Modify outer header.
  • tun – Modify tunnel header.
  • has_encap – Encap while it is set to true. If set to true, struct doca_flow_action_descs must be provided and an action descriptor of type DOCA_FLOW_ACTION_DECAP_ENCAP must be a part of it.
  • encap – Encap data information.
  • has_push – Push header while it is set to true.
  • push – Push header data information.
  • has_crypto_encap – Perform packet reformat for crypto protocols while it is set to true. If set to true, the structure doca_flow_crypto_encap_action provides a description for the header and trailer to be inserted or removed.
  • crypto_encap – Crypto protocols header and trailer data information.
  • crypto – Contains crypto action information.

doca_flow_encap_action

This structure is an encapsulation action configuration.

Copy
Copied!
            

struct doca_flow_encap_action { struct doca_flow_header_format outer; struct doca_flow_tun tun; };

  • outer – L2/3/4 layers of the outer tunnel header.

    • L2 - src/dst MAC addresses, ether type, VLAN
    • L3 - IPv4/6 src/dst IP addresses, TTL/hop_limit, dscp_ecn
    • L4 - the UDP dst port is determined by the tunnel type
  • tun – The specific fields of the used tunnel protocol. Supported tunnel types: GRE, GTP, VXLAN, MPLS, GENEVE.

doca_flow_push_action

This structure is a push action configuration.

Copy
Copied!
            

struct doca_flow_push_action { enum doca_flow_push_action_type type; union { struct doca_flow_header_eth_vlan vlan; }; };

  • type – Push action type.
  • vlan – VLAN data.

The type field includes the following push action types:

  • DOCA_FLOW_PUSH_ACTION_VLAN – push VLAN.

doca_flow_crypto_encap_action

This structure is a crypto protocol packet reformat action configuration.

Copy
Copied!
            

struct doca_flow_crypto_encap_action { enum doca_flow_crypto_encap_action_type action_type; enum doca_flow_crypto_encap_net_type net_type; uint16_t icv_size; uint16_t data_size; uint8_t encap_data[DOCA_FLOW_CRYPTO_HEADER_LEN_MAX]; };

  • action_type – Reformat action type.
  • net_type – Protocol mode, network header type.
  • icv_size – Integrity check value size, in bytes; defines the trailer size.
  • data_size – Header size in bytes to be inserted from encap_data.
  • encap_data – Header data to be inserted.

The action_type field includes the following crypto encap action types:

  • DOCA_FLOW_CRYPTO_REFORMAT_NONE – No crypto encap action performed.
  • DOCA_FLOW_CRYPTO_REFORMAT_ENCAP – Add/insert the crypto header and trailer to the packet. data_size and encap_data should provide the data for the headers being inserted.
  • DOCA_FLOW_CRYPTO_REFORMAT_DECAP – Remove the crypto header and trailer from the packet. data_size and encap_data should provide the data for the headers being inserted for tunnel mode.

The net_type field includes the following protocol/network header types:

  • DOCA_FLOW_CRYPTO_HEADER_NONE – No header type specified.
  • DOCA_FLOW_CRYPTO_HEADER_ESP_TUNNEL – ESP tunnel mode header type. On encap, the full tunnel header data for new L2+L3+ESP should be provided. On decap, the new L2 header data should be provided.
  • DOCA_FLOW_CRYPTO_HEADER_ESP_OVER_IP – ESP transport over IP mode header type. On encap, the data for ESP header being inserted should be provided.
  • DOCA_FLOW_CRYPTO_HEADER_UDP_ESP_OVER_IP – UDP+ESP transport over IP mode header type. On encap, the data for UDP+ ESP headers being inserted should be provided.
  • DOCA_FLOW_CRYPTO_HEADER_ESP_OVER_LAN – ESP transport over UDP/TCP mode header type. On encap, the data for ESP header being inserted should be provided.

The icv_size field can be either 8, 12 or 16 for ESP.
The data_size field should not exceed DOCA_FLOW_CRYPTO_HEADER_LEN_MAX; can be zero for decap in non-tunnel modes.

doca_flow_crypto_action

This structure is a crypto action configuration to perform packet data encryption and decryption.

Copy
Copied!
            

struct doca_flow_crypto_action { enum doca_flow_crypto_action_type action_type; enum doca_flow_crypto_protocol_type proto_type; union { struct { bool sn_en; } esp; }; uint32_t crypto_id; };

  • action_type – Crypto action type.
  • proto_type – Protocol type.
  • esp.sn_en – Enable ESP sequence number generation/checking.
  • crypto_id – Shared crypto resource ID.

The action_type field includes the following crypto action types:

  • DOCA_FLOW_CRYPTO_ACTION_NONE – No crypto action specified.
  • DOCA_FLOW_CRYPTO_ACTION_ENCRYPT – Encrypt packet data according to the chosen protocol.
  • DOCA_FLOW_CRYPTO_ACTION_DECRYPT – Decrypt packet data according to the chosen protocol.

The proto_type field includes the following protocols supported:

  • DOCA_FLOW_CRYPTO_PROTOCOL_NONE – No crypto protocol specified.
  • DOCA_FLOW_CRYPTO_PROTOCOL_ESP – IPsec ESP protocol.

doca_flow_action_descs

This structure describes operations executed on packets matched by the pipe.

Note

Detailed compatibility matrix and usage can be found in section "Summary of Action Types".

Copy
Copied!
            

struct doca_flow_action_descs { uint8_t nb_action_desc; struct doca_flow_action_desc *desc_array; };

  • nb_action_desc – Maximum number of action descriptor array (i.e., number of descriptor array elements)
  • desc_array – Action descriptor array pointer

struct doca_flow_action_desc

Copy
Copied!
            

struct doca_flow_action_desc { enum doca_flow_action_type type; union { struct { struct doca_flow_desc_field src; struct doca_flow_desc_field dst; unit32_t width; } field_op; struct { bool is_l2; } decap_encap; }; };

  • type – Action type.
  • field_op – Field to copy/add source and destination descriptor. Add always applies from field bit 0 .
  • decap_encap – Descriptor of decap or encap action.

The type field includes the following forwarding modification types:

  • DOCA_FLOW_ACTION_AUTO – modification type derived from pipe action
  • DOCA_FLOW_ACTION_ADD – add from field value or packet field. Supports meta scratch, ipv4_ttl, ipv6_hop, tcp_seq, and tcp_ack.

    Note

    Adding from packet fields is supported only with NVIDIA® BlueField®-3 and NVIDIA® ConnectX®-7.

  • DOCA_FLOW_ACTION_COPY – copy field
  • DOCA_FLOW_ACTION_DECAP_ENCAP – configures decap/encap for L2 or L3 level. Descriptor of this type is mandatory when decap or has_encap is true.

doca_flow_desc_field

This struct is the flow descriptor's field configuration.

Copy
Copied!
            

struct doca_flow_desc_field { const char *field_string; /**< Field selection by string. */ uint32_t bit_offset; /**< Field bit offset. */ };

  • field_string – Field string. Describes which packet field is selected in string format.
  • bit_offset – Bit offset in the field.

    Warning

    The complete supported field string could be found in the "Field String Support" appendix.

doca_flow_monitor

This structure is a monitor configuration.

Copy
Copied!
            

struct doca_flow_monitor { enum doca_flow_resource_type meter_type; /**< Type of meter configuration. */ union { struct { enum doca_flow_meter_limit_type limit_type; /**< Meter rate limit type: bytes / packets per second */ uint64_t cir; /**< Committed Information Rate (bytes/second). */ uint64_t cbs; /**< Committed Burst Size (bytes). */ } non_shared_meter; struct { uint32_t shared_meter_id; /**< shared meter id */ enum doca_flow_meter_color meter_init_color; /**< meter initial color */ } shared_meter; };   enum doca_flow_resource_type counter_type; /**< Type of counter configuration. */ union { struct { uint32_t shared_counter_id; /**< shared counter id */ } shared_counter; };   uint32_t shared_mirror_id; /**< shared mirror id. */   bool aging_enabled; /**< Specify if aging is enabled */ uint32_t aging_sec; /**< aging time in seconds.*/ };

  • meter_type – Defines the type of meter. Meters can be shared, non-shared, or not used at all.
  • non_shared_meter – non-shared meter params

    • limit_type – bytes versus packets measurement
    • cir – committed information rate of non-shared meter
    • cbs – committed burst size of non-shared meter
  • shared_meter – shared meter params

    • shared_meter_id – meter ID that can be shared among multiple pipes
    • meter_init_colr – the initial color assigned to a packet entering the meter
  • counter_type – defines the type of counter. Counters can be shared, or not used at all.

    • shared_counter_id – counter ID that can be shared among multiple pipes
  • shared_mirror_id – mirror ID that can be shared among multiple pipes
  • aging_enabled – set to true to enable aging
  • aging_sec – number of seconds from the last hit after which an entry is aged out

doca_flow_resource_type is defined as follows.:

Copy
Copied!
            

enum doca_flow_resource_type { DOCA_FLOW_RESOURCE_TYPE_NONE, DOCA_FLOW_RESOURCE_TYPE_SHARED, DOCA_FLOW_RESOURCE_TYPE_NON_SHARED };

T(c) is the number of available tokens. For each packet where b equals the number of bytes, if t(c)-b≥0 the packet can continue, and tokens are consumed so that t(c)=t(c)-b. If t(c)-b<0, the packet is dropped.

CIR is the maximum bandwidth at which packets continue being confirmed. Packets surpassing this bandwidth are dropped. CBS is the maximum number of bytes allowed to exceed the CIR to be still CIR confirmed. Confirmed packets are handled based on the fwd parameter.

The number of <cir,cbs> pair different combinations is limited to 128.

Metering packets can be individual (i.e., per entry) or shared among multiple entries:

  • For the individual use case, set meter_type to DOCA_FLOW_RESOURCE_TYPE_NON_SHARED
  • For the shared use case, set meter_type to DOCA_FLOW_RESOURCE_TYPE_SHARED and shared_meter_id to the meter identifier

Counting packets can be individual (i.e., per entry) or shared among multiple entries:

  • For the individual use case, set counter type to DOCA_FLOW_RESOURCE_TYPE_SHARED and shared_counter_id to the counter identifier
  • For the shared use case, use a non-zero shared_counter_id

Mirroring packets can only be used as shared with a non-zero shared_mirror_id.

doca_flow_fwd

This structure is a forward configuration which directs where the packet goes next.

Copy
Copied!
            

struct doca_flow_fwd { enum doca_flow_fwd_type type; union { struct { uint32_t rss_outer_flags; uint32_t rss_inner_flags; unit32_t *rss_queues; int num_of_queues; }; struct { unit16_t port_id; }; struct { struct doca_flow_pipe *next_pipe; }; struct { struct doca_flow_pipe *pipe; uint32_t idx; } ordered_list_pipe; struct { struct doca_flow_target *target; }; }; };

  • type – indicates the forwarding type
  • rss_outer_flags – RSS offload types on the outer-most layer (tunnel or non-tunnel).
  • rss_inner_flags – RSS offload types on the inner layer of a tunneled packet.
  • rss_queues – RSS queues array
  • num_of_queues – number of queues
  • port_id – destination port ID
  • next_pipe – next pipe pointer
  • ordered_list_pipe.pipe – ordered list pipe to select an entry from
  • ordered_list_pipe.idx – index of the ordered list pipe entry
  • target - target pointer

The type field includes the forwarding action types defined in the following enum:

  • DOCA_FLOW_FWD_RSS – forwards packets to RSS
  • DOCA_FLOW_FWD_PORT – forwards packets to port
  • DOCA_FLOW_FWD_PIPE – forwards packets to another pipe
  • DOCA_FLOW_FWD_DROP – drops packets
  • DOCA_FLOW_FWD_ORDERED_LIST_PIPE - forwards packet to a specific entry in an ordered list pipe
  • DOCA_FLOW_FWD_TARGET – forwards packets to a target

The rss_outer_flags and rss_inner_flags fields must be configured exclusively (either outer or inner).
Each outer/inner field is a bitwise OR of the RSS fields defined in the following enum:

  • DOCA_FLOW_RSS_IPV4 – RSS by IPv4 header
  • DOCA_FLOW_RSS_IPV6 – RSS by IPv6 header
  • DOCA_FLOW_RSS_UDP – RSS by UDP header
  • DOCA_FLOW_RSS_TCP – RSS by TCP header

When specifying an RSS L4 type (DOCA_FLOW_RSS_TCP or DOCA_FLOW_RSS_UDP) it must have a bitwise OR with RSS L3 types (DOCA_FLOW_RSS_IPV4 or DOCA_FLOW_RSS_IPV6).

doca_flow_query

This struct is a flow query result.

Copy
Copied!
            

struct doca_flow_query { uint64_t total_bytes; uint64_t total_pkts; };

The struct doca_flow_query contains the following elements:

  • total_bytes – total bytes that hit this flow.
  • total_ptks – total packets that hit this flow.

doca_flow_init

This function is the global initialization function for DOCA Flow.

Copy
Copied!
            

doca_error_t doca_flow_init(const struct doca_flow_cfg *cfg);

  • cfg [in] – Pointer to flow config structure.
  • Returns – DOCA_SUCCESS on success. Error code in case of failure:

    • DOCA_ERROR_INVALID_VALUE – Received invalid input
    • DOCA_ERROR_NO_MEMORY – Memory allocation failed
    • DOCA_ERROR_NOT_SUPPORTED – Unsupported pipe type
    • DOCA_ERROR_UNKNOWN – Otherwise
Warning

doca_flow_init must be invoked first before any other function in this API. This is a one-time call used for DOCA Flow initialization and global configurations.

doca_flow_destroy

This function is the global destroy function for DOCA Flow.

Copy
Copied!
            

void doca_flow_destroy(void);

Note

doca_flow_destroy must be invoked last to stop using DOCA Flow.

doca_flow_port_start

This function starts a port with its given configuration. It creates one port in the DOCA Flow layer, allocates all resources used by this port, and creates the default offload flow rules to redirect packets into software queues .

Copy
Copied!
            

doca_error_t doca_flow_port_start(const struct doca_flow_port_cfg *cfg, struct doca_flow_port **port);

  • cfg [in] – Pointer to DOCA Flow config structure.
  • port [out] – Pointer to DOCA Flow port handler on success.
  • Returns – DOCA_SUCCESS on success. Error code in case of failure:

    • DOCA_ERROR_INVALID_VALUE – Received invalid input
    • DOCA_ERROR_NO_MEMORY – Memory allocation failed
    • DOCA_ERROR_NOT_SUPPORTED – Unsupported pipe type
    • DOCA_ERROR_UNKNOWN – Otherwise
Note

doca_flow_port_start modifies the state of the underlying DPDK port implementing the DOCA port. The DPDK port is stopped, then the flow configuration is applied, calling rte_flow_configure before starting the port again.

Warning

doca_flow_port_start must be called before any other DOCA Flow API to avoid conflicts.

Warning

In switch mode, the representor port must be stopped before switch port is stopped.

doca_flow_port_stop

This function releases all resources used by a DOCA flow port and removes the port's default offload flow rules.

Copy
Copied!
            

doca_error_t doca_flow_port_stop(struct doca_flow_port *port);

  • port [in] – Pointer to DOCA Flow port handler.

doca_flow_port_pair

This function pairs two DOCA ports. After successfully pairing the two ports, traffic received on either port is transmitted via the other port by default.

For a pair of non-representor ports, this operation is required before port-based forwarding flows can be created. It is optional, however, if either port is a representor.

Warning

The two paired ports have no order.

Warning

A port cannot be paired with itself.

Copy
Copied!
            

doca_error_t *doca_flow_port_pair(struct doca_flow_port *port, struct doca_flow_port *pair_port);

  • port [in] – Pointer to the DOCA Flow port structure.
  • pair_port [in] – Pointer to another DOCA Flow port structure.
  • Returns – DOCA_SUCCESS on success. Error code in case of failure:

    • DOCA_ERROR_INVALID_VALUE – Received invalid input.
    • DOCA_ERROR_NO_MEMORY – Memory allocation failed.
    • DOCA_ERROR_UNKNOWN – Otherwise.

doca_flow_pipe_create

This function creates a new pipeline to match and offload specific packets. The pipeline configuration is defined in the doca_flow_pipe_cfg. The API creates a new pipe, but does not start the hardware offload.

When cfg type is DOCA_FLOW_PIPE_CONTROL, the function creates a special type of pipe that can have dynamic matches and forwards with priority.

Copy
Copied!
            

doca_error_t doca_flow_pipe_create(const struct doca_flow_pipe_cfg *cfg, const struct doca_flow_fwd *fwd, const struct doca_flow_fwd *fwd_miss, struct doca_flow_pipe **pipe);

  • cfg [in] – Pointer to flow pipe config structure.
  • fwd [in] – Pointer to flow forward config structure.
  • fwd_miss [in] – Pointer to flow forward miss config structure. NULL for no fwd_miss.

    Warning

    When fwd_miss configuration is provided for basic and hash pipes , they are executed on miss. For any other pipe type, the configuration is ignored.

  • pipe [out] – Pointer to pipe handler on success.
  • Returns – DOCA_SUCCESS on success. Error code in case of failure:

    • DOCA_ERROR_INVALID_VALUE – Received invalid input
    • DOCA_ERROR_NOT_SUPPORTED – Unsupported pipe type
    • DOCA_ERROR_DRIVER – Driver error

doca_flow_pipe_add_entry

This function adds a new entry to a pipe. When a packet matches a single pipe, it starts hardware offload. The pipe defines which fields to match. This API does the actual hardware offload, with the information from the fields of the input packets.

Copy
Copied!
            

doca_error_t doca_flow_pipe_add_entry(uint16_t pipe_queue, struct doca_flow_pipe *pipe, const struct doca_flow_match *match, const struct doca_flow_actions *actions, const struct doca_flow_monitor *monitor, const struct doca_flow_fwd *fwd, unit32_t flags, void *usr_ctx, struct doca_flow_pipe_entry **entry);

  • pipe_queue [in] – Queue identifier
  • pipe [in] – Pointer to flow pipe
  • match [in] – Pointer to flow match. Indicates specific packet match information.
  • actions [in] – Pointer to modify actions. Indicates specific modify information.
  • monitor [in] – Pointer to monitor actions
  • fwd [in] – Pointer to flow forward actions
  • flags [in] – can be set as DOCA_FLOW_WAIT_FOR_BATCH or DOCA_FLOW_NO_WAIT

    • DOCA_FLOW_WAIT_FOR_BATCH – this entry waits to be pushed to hardware
    • DOCA_FLOW_NO_WAIT – this entry is pushed to hardware immediately
  • usr_ctx [in] – Pointer to user context (see note at doca_flow_entry_process_cb)
  • entry [out] – Pointer to pipe entry handler on success
  • Returns – DOCA_SUCCESS on success. Error code in case of failure:

    • DOCA_ERROR_INVALID_VALUE – Received invalid input
    • DOCA_ERROR_DRIVER – Driver error
Warning

Some sanity checks may be omitted to avoid extra delays during flow insertion. For example, when forwarding to a pipe, the next_pipe field of struct doca_flow_fwd must contain a valid pointer. DOCA does not detect misconfigurations like these in the release build of the library.

doca_flow_pipe_update_entry

This function overrides the actions specified when the entry was last updated. If the intent is for some actions to be left unmodified, then the application must pass those as arguments to the update function.

Copy
Copied!
            

doca_error_t doca_flow_pipe_update_entry(uint16_t pipe_queue, struct doca_flow_pipe *pipe, const struct doca_flow_actions *actions, const struct doca_flow_monitor *mon, const struct doca_flow_fwd *fwd, const enum doca_flow_flags_type flags, struct doca_flow_pipe_entry *entry);

  • pipe_queue [in] – Queue identifier.
  • pipe [in] – Pointer to flow pipe.
  • actions [in] – Pointer to modify actions. Indicates specific modify information.
  • mon [in] – Pointer to monitor actions.
  • fwd [in] – Pointer to flow forward actions.
  • flags [in] – can be set as DOCA_FLOW_WAIT_FOR_BATCH or DOCA_FLOW_NO_WAIT.

    • DOCA_FLOW_WAIT_FOR_BATCH – this entry waits to be pushed to hardware.
    • DOCA_FLOW_NO_WAIT – this entry is pushed to hardware immediately.
  • entry [in] – Pointer to pipe entry to update.
  • Returns – DOCA_SUCCESS on success. Error code in case of failure:

    • DOCA_ERROR_INVALID_VALUE – Received invalid input
    • DOCA_ERROR_DRIVER – Driver error

doca_flow_pipe_control_add_entry

This function adds a new entry to a control pipe. When a packet matches a single pipe, it starts hardware offload. The pipe defines which fields to match. This API does the actual hardware offload with the information from the fields of the input packets.

Copy
Copied!
            

doca_error_t doca_flow_pipe_control_add_entry(uint16_t pipe_queue, uint32_t priority, struct doca_flow_pipe *pipe, const struct doca_flow_match *match, const struct doca_flow_match *match_mask, const struct doca_flow_match_condition *condition,                         const struct doca_flow_actions *actions, const struct doca_flow_actions *actions_mask, const struct doca_flow_action_descs *action_descs, const struct doca_flow_monitor *monitor, const struct doca_flow_fwd *fwd, struct doca_flow_pipe_entry **entry);

  • pipe_queue [in] – Queue identifier.
  • priority [in] – Priority value.
  • pipe [in] – Pointer to flow pipe.
  • match [in] – Pointer to flow match. Indicates specific packet match information.
  • match_mask [in] – Pointer to flow match mask information.
  • condition [in] – Pointer to flow match condition information.
  • actions [in] – Pointer to modify actions. Indicates specific modify information.
  • actions_mask [in] – Pointer to modify actions' mask. Indicates specific modify mask information.
  • action_descs [in] – Pointer to action descriptors.
  • monitor [in] – Pointer to monitor actions.
  • fwd [in] – Pointer to flow forward actions.
  • entry [out] – Pointer to pipe entry handler on success.
  • Returns – DOCA_SUCCESS on success. Error code in case of failure:

    • DOCA_ERROR_INVALID_VALUE – Received invalid input
    • DOCA_ERROR_DRIVER – Driver error
Warning

Using a match condition cannot be mixed with exact match. Therefore, when condition is valid match_mask must be NULL.

When condition uses immediate value, the match structure must be provided with the value. Otherwise, match must also be NULL.

doca_flow_pipe_lpm_add_entry

This function adds a new entry to an LPM pipe. This API does the actual hardware offload all entries when flags is set to DOCA_FLOW_NO_WAIT.

Copy
Copied!
            

doca_error_t doca_flow_pipe_lpm_add_entry(uint16_t pipe_queue, struct doca_flow_pipe *pipe, const struct doca_flow_match *match, const struct doca_flow_match *match_mask, const struct doca_flow_actions *actions, const struct doca_flow_monitor *monitor, const struct doca_flow_fwd *fwd, unit32_t flags, void *usr_ctx, struct doca_flow_pipe_entry **entry);

  • pipe_queue [in] – Queue identifier.
  • pipe [in] – Pointer to flow pipe.
  • match [in] – Pointer to flow match. Indicates specific packet match information.
  • match_mask [in] – Pointer to flow match mask information.
  • actions [in] – Pointer to modify actions. Indicates specific modify information.
  • monitor [in] – Pointer to monitor actions.
  • fwd [in] – Pointer to flow FWD actions.
  • flags [in] – Can be set as DOCA_FLOW_WAIT_FOR_BATCH or DOCA_FLOW_NO_WAIT.

    • DOCA_FLOW_WAIT_FOR_BATCH – LPM collects this flow entry
    • DOCA_FLOW_NO_WAIT – LPM adds this entry, builds the LPM software tree, and pushes all entries to hardware immediately
  • usr_ctx [in] – Pointer to user context (see note at doca_flow_entry_process_cb)
  • entry [out] – Pointer to pipe entry handler on success.
  • Returns – DOCA_SUCCESS on success. Error code in case of failure:

    • DOCA_ERROR_INVALID_VALUE – Received invalid input.
    • DOCA_ERROR_DRIVER – Driver error.

doca_flow_pipe_lpm_update_entry

This function updates an LPM entry with a new set of actions.

Copy
Copied!
            

doca_error_t doca_flow_pipe_lpm_update_entry(uint16_t pipe_queue, struct doca_flow_pipe *pipe, const struct doca_flow_actions *actions, const struct doca_flow_monitor *monitor, const struct doca_flow_fwd *fwd, const enum doca_flow_flags_type flags, struct doca_flow_pipe_entry *entry);

  • pipe_queue [in] – Queue identifier.
  • pipe [in] – Pointer to flow pipe.
  • actions [in] – Pointer to modify actions. Indicates specific modify information.
  • monitor [in] – Pointer to monitor actions.
  • fwd [in] – Pointer to flow FWD actions.
  • flags [in] – Can be set as DOCA_FLOW_WAIT_FOR_BATCH or DOCA_FLOW_NO_WAIT.

    • DOCA_FLOW_WAIT_FOR_BATCH – LPM collects this flow entry
    • DOCA_FLOW_NO_WAIT – LPM updates this entry and pushes all entries to hardware immediately
  • entry [in] – Pointer to pipe entry to update.
  • Returns – DOCA_SUCCESS on success. Error code in case of failure:

    • DOCA_ERROR_INVALID_VALUE – Received invalid input.
    • DOCA_ERROR_DRIVER – Driver error.

doca_flow_pipe_acl_add_entry

This function adds a new entry to an ACL pipe. This API performs the actual hardware offload for all entries when flags is set to DOCA_FLOW_NO_WAIT.

Copy
Copied!
            

doca_error_t doca_flow_pipe_acl_add_entry(uint16_t pipe_queue, struct doca_flow_pipe *pipe, const struct doca_flow_match *match, const struct doca_flow_match *match_mask, uint8_t priority, const struct doca_flow_fwd *fwd, unit32_t flags, void *usr_ctx, struct doca_flow_pipe_entry **entry);

  • pipe_queue [in] – Queue identifier.
  • pipe [in] – Pointer to flow pipe.
  • match [in] – Pointer to flow match. Indicates specific packet match information.
  • match_mask [in] – Pointer to flow match mask information.
  • priority [in] – Priority value.
  • fwd [in] – Pointer to flow FWD actions.
  • flags [in] – Can be set as DOCA_FLOW_WAIT_FOR_BATCH or DOCA_FLOW_NO_WAIT.

    • DOCA_FLOW_WAIT_FOR_BATCH – ACL collects this flow entry
    • DOCA_FLOW_NO_WAIT – ACL adds this entry, builds the ACL software model, and pushes all entries to hardware immediately
  • usr_ctx [in] – Pointer to user context (see note at doca_flow_entry_process_cb)
  • entry [out] – Pointer to pipe entry handler on success.
  • Returns – DOCA_SUCCESS on success. Error code in case of failure:

    • DOCA_ERROR_INVALID_VALUE – Received invalid input
    • DOCA_ERROR_DRIVER – Driver error

doca_flow_pipe_ordered_list_add_entry

This function adds a new entry to an order list pipe. When a packet matches a single pipe, it starts hardware offload. The pipe defines which fields to match. This API does the actual hardware offload, with the information from the fields of the input packets.

Copy
Copied!
            

doca_error_t doca_flow_pipe_ordered_list_add_entry(uint16_t pipe_queue, struct doca_flow_pipe *pipe, uint32_t idx, const struct doca_flow_ordered_list *ordered_list, const struct doca_flow_fwd *fwd, enum doca_flow_flags_type flags, void *user_ctx, struct doca_flow_pipe_entry **entry);

  • pipe_queue [in] – Queue identifier.
  • pipe [in] – Pointer to flow pipe.
  • idx [in] – A unique entry index. It is the user's responsibility to ensure uniqueness.
  • ordered_list [in] – Pointer to an ordered list structure with pointers to struct doca_flow_actions and struct doca_flow_monitor at the same indices as they were at the pipe creation time. If the configuration contained an element of struct doca_flow_action_descs, the corresponding array element is ignored and can be NULL.
  • fwd [in] – Pointer to flow FWD actions.
  • flags [in] – Can be set as DOCA_FLOW_WAIT_FOR_BATCH or DOCA_FLOW_NO_WAIT.

    • DOCA_FLOW_WAIT_FOR_BATCH – this entry waits to be pushed to hardware
    • DOCA_FLOW_NO_WAIT – this entry is pushed to hardware immediately
  • user_ctx [in] – Pointer to user context (see note at doca_flow_entry_process_cb).
  • entry [out] – Pointer to pipe entry handler to fill.
  • Returns – DOCA_SUCCESS in case of success. Error code in case of failure:

    • DOCA_ERROR_INVALID_VALUE – Received invalid input.
    • DOCA_ERROR_NO_MEMORY – Memory allocation failed.
    • DOCA_ERROR_DRIVER – Driver error.

doca_flow_pipe_hash_add_entry

This function adds a new entry to a hash pipe. When a packet matches a single pipe, it starts hardware offload. The pipe defines which fields to match. This API does the actual hardware offload with the information from the fields of the input packets.

Copy
Copied!
            

doca_error_t doca_flow_pipe_hash_add_entry(uint16_t pipe_queue, struct doca_flow_pipe *pipe, uint32_t entry_index, const struct doca_flow_actions *actions, const struct doca_flow_monitor *monitor, const struct doca_flow_fwd *fwd, const enum doca_flow_flags_type flags, void *usr_ctx, struct doca_flow_pipe_entry **entry);

  • pipe_queue [in] – Queue identifier.
  • pipe [in] – Pointer to flow pipe.
  • entry_index [in] – A unique entry index. If the index is not unique, the function returns error.
  • actions [in] – Pointer to modify actions. Indicates specific modify information.
  • monitor [in] – Pointer to monitor actions.
  • fwd [in] – Pointer to flow FWD actions.
  • flags [in] – Can be set as DOCA_FLOW_WAIT_FOR_BATCH or DOCA_FLOW_NO_WAIT

    • DOCA_FLOW_WAIT_FOR_BATCH – This entry waits to be pushed to hardware
    • DOCA_FLOW_NO_WAIT – This entry is pushed to hardware immediately
  • usr_ctx [in] – Pointer to user context (see note at doca_flow_entry_process_cb)
  • entry [out] – Pointer to pipe entry handler to fill.
  • Returns – DOCA_SUCCESS in case of success. Error code in case of failure:

    • DOCA_ERROR_INVALID_VALUE – Received invalid input.
    • DOCA_ERROR_DRIVER – Driver error.

doca_flow_pipe_resize

This function resizes a pipe (currently only type DOCA_FLOW_PIPE_CONTROL is supported if, on creation, its configuration had is_resizable == true). The new congestion level is the percentage by which the new pipe size is determined. For example, if there are 800 entries in the pipe and congestion level is 50%, the new size of the pipe would be 1600 entries rounded up to the nearest a power of 2. The nr_entries_changed_cb and entry_relocation_cb are optional callbacks. The first callback informs on the exact new number of entries in the pipe. The second callback informs on entries that have been relocated from the smaller to the resized pipe.

Copy
Copied!
            

doca_error_t doca_flow_pipe_resize(struct doca_flow_pipe *pipe, uint8_t new_congestion_level, doca_flow_pipe_resize_nr_entries_changed_cb nr_entries_changed_cb, doca_flow_pipe_resize_entry_relocate_cb entry_relocation_cb);

  • pipe [in] – Pointer to pipe to be resized
  • new_congestion_level [in] – Percentage to calculate the new new pipe size based on the current number of entries. The final size may be rounded up to the nearest power of 2.
  • nr_entries_changed_cb [in] – Pointer to callback when the new pipe size is set.
  • entry_relocation_cb [in] – Pointer to callback for each entry in the pipe that will be part of the resized pipe.

    Warning

    Callbacks are optional. Either both are set or none.

  • Returns – DOCA_SUCCESS on success. Error code in case of failure.

doca_flow_pipe_process_cb

This typedef callback defines the received notification API for once congestion is reached or once the resize operation is completed.

Copy
Copied!
            

enum doca_flow_pipe_op { DOCA_FLOW_PIPE_OP_CONGESTION_REACHED, DOCA_FLOW_PIPE_OP_RESIZED, ... }; enum doca_flow_pipe_status { DOCA_FLOW_PIPE_STATUS_SUCCESS = 1, DOCA_FLOW_PIPE_STATUS_ERROR, }; typedef void (*doca_flow_pipe_process_cb)(struct doca_flow_pipe *pipe, enum doca_flow_pipe_status status, enum doca_flow_pipe_op op, void *user_ctx);

  • pipe [in] – Pointer to the pipe whose process is reported.
  • status [in] – Process completion status (i.e., success or error).
  • op [in] – Operation reported in process, such as CONGESTION_REACHED, RESIZED.
  • user_ctx [in] – Pointer to user pipe context as configured on pipe creation.

    Warning

    Callbacks are optional. Either both are set or none.

  • Returns – DOCA_SUCCESS on success. Error code in case of failure.

doca_flow_entries_process

This function processes entries in the queue. The application must invoke this function to complete flow rule offloading and to receive the flow rule's operation status.

If doca_flow_pipe_resize() is called, this function must be invoked as well to complete the resize process (i.e., until DOCA_FLOW_OP_PIPE_RESIZED is received as part of doca_flow_pipe_process_cb() callback).

Copy
Copied!
            

doca_error_t doca_flow_entries_process(struct doca_flow_port *port, uint16_t pipe_queue, uint64_t timeout, uint32_t max_processed_entries);

  • port [in] – Pointer to the flow port structure.
  • pipe_queue [in] – Queue identifier.
  • timeout [in] – Timeout value in microseconds.
  • max_processed_entries [in] – Pointer to the flow pipe.
  • Returns – DOCA_SUCCESS on success. Error code in case of failure:

    • DOCA_ERROR_DRIVER – Driver error.

doca_flow_entry_status

This function gets the status of pipe entry.

Copy
Copied!
            

enum doca_flow_entry_status doca_flow_entry_get_status(struct doca_flow_entry *entry);

  • entry [in] – Pointer to the flow pipe entry to query.
  • Returns – Entry's status, defined in the following enum:

    • DOCA_FLOW_ENTRY_STATUS_IN_PROCESS – the operation is in progress
    • DOCA_FLOW_ENTRY_STATUS_SUCCESS – the operation completed successfully
    • DOCA_FLOW_ENTRY_STATUS_ERROR – the operation failed

doca_flow_entry_query

This function queries packet statistics about a specific pipe entry.

Warning

The pipe must have been created with the DOCA_FLOW_MONITOR_COUNT flag or the query will return an error.

Copy
Copied!
            

doca_error_t doca_flow_query_entry(struct doca_flow_pipe_entry *entry, struct doca_flow_query *query_stats);

  • entry [in] – Pointer to the flow pipe entry to query
  • query_stats [out] – Pointer to the data retrieved by the query
  • Returns – DOCA_SUCCESS on success. Error code in case of failure:

    • DOCA_ERROR_INVALID_VALUE – Received invalid input
    • DOCA_ERROR_UNKNOWN – Otherwise

doca_flow_query_pipe_miss

This function queries packet statistics about a specific pipe miss flow.

Warning

The pipe must have been created with the miss_counter set to true or the query will return an error.

Copy
Copied!
            

doca_error_t doca_flow_query_pipe_miss(struct doca_flow_pipe *pipe, struct doca_flow_query *query_stats);

  • pipe [in] – Pointer to the flow pipe to query.
  • query_stats [out] – Pointer to the data retrieved by the query.
  • Returns – DOCA_SUCCESS on success. Error code in case of failure:

    • DOCA_ERROR_INVALID_VALUE – Received invalid input
    • DOCA_ERROR_UNKNOWN – Otherwise

doca_flow_aging_handle

This function handles the aging of all the pipes of a given port. It goes over all flows and releases aged flows from being tracked. The user gets a notification in the callback about the aged entries. Since the number of flows can be very large, it can take a significant amount of time to go over all flows, so this function is limited by a time quota. This means it might return without handling all flows which requires the user to call it again.

Warning

The pipe needs to have been created with the DOCA_FLOW_MONITOR_COUNT flag or the query will return an error.

Copy
Copied!
            

int doca_flow_aging_handle(struct doca_flow_port *port, uint16_t queue, uint64_t quota);

  • queue [in] – Queue identifier.
  • quota [in] – Max time quota in microseconds for this function to handle aging.
  • Returns

    • >0 – the number of aged flows filled in entries array.
    • 0 – no aged entries in current call.
    • -1 – full cycle is done.

doca_flow_mpls_label_encode

This function prepares an MPLS label header in big-endian. Input variables are provided in CPU-endian.

Copy
Copied!
            

doca_error_t doca_flow_mpls_label_encode(uint32_t label, uint8_t traffic_class, uint8_t ttl, bool bottom_of_stack, struct doca_flow_header_mpls *mpls);

  • label [in] – Label value (20 bits).
  • traffic_class [in] – Traffic class (3 bits).
  • ttl [in] – Time to live (8 bits).
  • bottom_of_stack [in] – Whether this MPLS is bottom-of-stack.
  • mpls [out] – Pointer to MPLS structure to fill.
  • Returns – DOCA_SUCCESS on success. Error code in case of failure:

    • DOCA_ERROR_INVALID_VALUE – Received invalid input.

doca_flow_mpls_label_decode

This function decodes an MPLS label header. Output variables are returned in CPU-endian.

Copy
Copied!
            

doca_error_t doca_flow_mpls_label_decode(const struct doca_flow_header_mpls *mpls, uint32_t *label, uint8_t *traffic_class, uint8_t *ttl, bool *bottom_of_stack);

  • mpls [in] – Pointer to MPLS structure to decode.
  • label [out] – Pointer to fill MPLS label value.
  • traffic_class [out] – Pointer to fill MPLS traffic class value.
  • ttl [out] – Pointer to fill MPLS TTL value.
  • bottom_of_stack [out] – Pointer to fill whether this MPLS is bottom-of-stack.
  • Returns – DOCA_SUCCESS on success. Error code in case of failure:

    • DOCA_ERROR_INVALID_VALUE – Received invalid input

doca_flow_parser_geneve_opt_create

Warning

This function must be called before creation of any pipe using GENEVE option.

Warning

This operation is only supported when FLEX_PARSER_PROFILE_ENABLE = 8. To do that, run:

Copy
Copied!
            

mlxconfig -d <device-id> set FLEX_PARSER_PROFILE_ENABLE=8

This function prepares a GENEVE TLV parser for a selected port.

This API is port oriented, but the configuration is done once for all ports under the same physical device. Each port should call this API before using GENEVE options, but it must use the same options in the same order in the list.

Each physical device has 7 DWs for GENEVE TLV options. Each non-zero element in the data_mask array consumes one DW, and choosing a matchable mode per class consumes additional one.

Note

Calling this API for a second port under the same physical device does not consume more DWs as it uses same configuration.

Copy
Copied!
            

doca_error_t doca_flow_parser_geneve_opt_create(const struct doca_flow_port *port, const struct doca_flow_parser_geneve_opt_cfg tlv_list[i], uint8_t nb_options, struct doca_flow_parser **parser);

  • port [in] – Pointer to DOCA Flow port.
  • tlv_list [in] – An array to create GENEVE TLV parser for. The index option in this array is used as an option identifier in the action descriptor string.
  • nb_options [in] – The number of options in the TLV array.
  • parser [out] – Pointer to parser handler to fill on success.
  • Returns – DOCA_SUCCESS on success. Error code in case of failure:

    • DOCA_ERROR_INVALID_VALUE – Received invalid input
    • DOCA_ERROR_NO_MEMORY – Memory allocation failed
    • DOCA_ERROR_NOT_SUPPORTED – Unsupported configuration
    • DOCA_ERROR_ALREADY_EXIST – Physical device already has parser, by either same or another port
    • DOCA_ERROR_UNKNOWN – Otherwise

doca_flow_parser_geneve_opt_destroy

Warning

This function must be called after the last use of the GENEVE option and before port closing.

This function destroys GENEVE TLV parser.

Copy
Copied!
            

doca_error_t doca_flow_parser_geneve_opt_destroy(struct doca_flow_parser *parser);

  • parser [in] – Pointer to parser to be destroyed.
  • Returns – DOCA_SUCCESS on success. Error code in case of failure:

    • DOCA_ERROR_INVALID_VALUE – Received invalid input.
    • DOCA_ERROR_IN_USE – One of the options is being used by a pipe.
    • DOCA_ERROR_DRIVER – There is no valid GENEVE TLV parser in this handle.
    • DOCA_ERROR_UNKNOWN – Otherwise.

doca_flow_get_target

This function gets a target handler.

Copy
Copied!
            

doca_error_t doca_flow_get_target(enum doca_flow_target_type, struct doca_flow_target **target);

  • type [in] – Target type.
  • target [out] – Pointer to target handler.
  • Returns – DOCA_SUCCESS on success. Error code in case of failure:

    • DOCA_ERROR_INVALID_VALUE – Received invalid input.
    • DOCA_ERROR_NOT_SUPPORTED – Unsupported type.

The type field includes the following target type:

  • DOCA_FLOW_TARGET_KERNEL

doca_flow_port_switch_get

Copy
Copied!
            

doca_flow_port_switch_get(const struct doca_flow_port *port);

  • port [in] – The port for which to get the associated switch port
  • Returns - the switch port or NULL if none exists

doca_flow_pipe_calc_hash

Copy
Copied!
            

doca_flow_pipe_calc_hash(struct doca_flow_pipe *pipe, const struct doca_flow_match *match, uint32_t *hash);

  • pipe [in] – Pointer to flow pipe.
  • match [in] – Pointer to flow match. Indicates specific packet match information.
  • hash [out] – Holds the calculation result for a given packet.

Limitations:

  • Can only be used by hash pipe
  • Must have only fixed actions
  • Only supports full masked items. Partial masks are considered full mask.

A shared counter can be used in multiple pipe entries. The following are the steps for configuring and using shared counters.

On doca_flow_init()

Specify the total number of shared counters to be used, nb_shared_counters.

This call implicitly defines the shared counters IDs in the range of 0-nb_shared_counters-1.

Copy
Copied!
            

.nr_shared_resources = { [DOCA_FLOW_SHARED_RESOURCE_COUNT] = nb_shared_counters },


On doca_flow_shared_resource_cfg()

This call can be skipped for shared counters.

On doca_flow_shared_resource_bind()

This call binds a bulk of shared counters IDs to a specific pipe or port.

Copy
Copied!
            

doca_error_t doca_flow_shared_resources_bind(enum doca_flow_shared_resource_type type, uint32_t *res_array, uint32_t res_array_len, void *bindable_obj);

  • res_array [in] – Array of shared counters IDs to be bound.

  • res_array_len [in] – Array length.

  • bindable_obj – Pointer to either a pipe or port.

This call allocates the counter's objects. A counter ID specified in this array can only be used later by the corresponding bindable object (pipe or port).

The following example binds counter IDs 2, 4, and 7 to a pipe. The counters' IDs must be within the range 0-nb_shared_coutners-1.

Copy
Copied!
            

uint32_t shared_counters_ids[] = {2, 4, 7}; struct doca_flow_pipe *pipe = ...   doca_flow_shared_resources_bind( DOCA_FLOW_SHARED_RESOURCE_COUNT, shared_counters_ids, 3, pipe, &error);


On doca_flow_pipe_add_entry() or Pipe Configuration (struct doca_flow_pipe_cfg)

The shared counter ID is included in the monitor parameter. It must be bound in advance to the pipe object.

Copy
Copied!
            

struct doca_flow_monitor { ... uint32_t shared_counter_id; /**< shared counter id */ ... }

Packets matching the pipe entry are counted on the shared_counter_id. In pipe configuration, the shared_counter_id can be changeable (all FFs) and then the pipe entry holds the specific shared counter ID.

In switch mode, verifying counter domain is skipped.

Querying Bulk of Shared Counter IDs

Use this API:

Copy
Copied!
            

int doca_flow_shared_resources_query(enum doca_flow_shared_resource_type type, uint32_t *res_array, struct doca_flow_shared_resource_result *query_results_array, uint32_t array_len, struct doca_flow_error *error);

  • res_array [in] – Array of shared counters IDs to be queried.

  • res_array_len [in] – Array length.

  • query_results_array [out] – Query results array. The user must have allocated it prior to calling this API.

The type parameter is DOCA_FLOW_SHARED_RESOURCE_COUNT.

On doca_flow_pipe_destroy() or doca_flow_port_stop()

All bound resource IDs of this pipe or port are destroyed.

A shared meter can be used in multiple pipe entries (hardware steering mode support only).

The shared meter action marks a packet with one of three colors: Green, Yellow, and Red. The packet color can then be matched in the next pipe, and an appropriate action may be taken. For example, packets marked in red color are usually dropped. So, the next pipe to meter action may have an entry which matches on red and has fwd type DOCA_FLOW_FWD_DROP.

DOCA Flow supports three marking algorithms based on RFCs: 2697, 2698, and 4115.

RFC 2697 – Single-rate Three Color Marker (srTCM)

rfc2697-version-1-modificationdate-1707420682697-api-v2.png

CBS (committed burst size) is the bucket size which is granted credentials at a CIR (committed information rate). If CBS overflow occurs, credentials are passed to the EBS (excess burst size) bucket. Packets passing through the meter consume credentials. A packet is marked green if it does not exceed the CBS, yellow if it exceeds the CBS but not the EBS, and red otherwise. A packet can have an initial color upon entering the meter. A pre-colored yellow packet will start consuming credentials from the EBS.

RFC 2698 – Two-rate Three Color Marker (trTCM)

rfc2698-version-1-modificationdate-1707420683227-api-v2.png

CBS and CIR are defined as in RFC 2697. PBS (peak burst size) is a second bucket which is granted credentials at a PIR (peak information rate). There is no overflow of credentials from the CBS bucket to the PBS bucket. The PIR must be equal to or greater than the CIR. Packets consuming CBS credentials consume PBS credentials as well. A packet is marked red if it exceeds the PIR. Otherwise, it is marked either yellow or green depending on whether it exceeds the CIR or not. A packet can have an initial color upon entering the meter. A pre-colored yellow packet starts consuming credentials from the PBS.

RFC 4115 – trTCM without Peak-rate Dependency

rfc4115-version-1-modificationdate-1707420682957-api-v2.png

EBS is a second bucket which is granted credentials at a EIR (excess information rate) and gets overflowed credentials from the CBS. For the packet marking algorithm, refer to RFC 4115.

The following sections present the steps for configuring and using shared meters to mark packets.

On doca_flow_init()

Specify the total number of shared meters to be used, nb_shared_meters.

The following call is an example how to initialize both shared counters and meter ranges. This call implicitly defines the shared counter IDs in the range of 0-nb_shared_counters-1 and the shared meter IDs in the range of 0-nb_shared_meters-1.

Copy
Copied!
            

struct doca_flow_cfg cfg = { .queues = queues, ... .nr_shared_resources = {nb_shared_meters, nb_shared_counters, ...}, } doca_flow_init(&cfg, &error);


On doca_flow_shared_resource_cfg()

This call binds a specific meter ID with its committed information rate (CIR) and committed burst size (CBS).

Copy
Copied!
            

struct doca_flow_resource_meter_cfg { ... uint64_t cir; /**< Committed Information Rate (bytes/second). */ uint64_t cbs; /**< Committed Burst Size (bytes). */ ... };   struct doca_flow_shared_resource_cfg { union { struct doca_flow_resource_meter_cfg meter_cfg; ... }; };   int doca_flow_shared_resource_cfg(enum doca_flow_shared_resource_type type, uint32_t id, struct doca_flow_shared_resource_cfg *cfg, struct doca_flow_error *error);

The following example configures the shared meter ID 5 with a CIR of 0x1000 bytes per second and a CBS of 0x600 bytes:

Copy
Copied!
            

struct doca_flow_shared_resource_cfg shared_cfg = { 0 }; shared_cfg.meter_cfg.cir = 0x1000; shared_cfg.meter_cfg.cbs = 0x600; doca_flow_shared_resource_cfg(DOCA_FLOW_SHARED_RESOURCE_METER, 0x5, &shared_cfg, &error);

The last meter configuration example sets only the CIR and CBS fields (using RFC 2697 algorithm by default).

The following is the full meter configuration struct:

Copy
Copied!
            

enum doca_flow_meter_algorithm_type { DOCA_FLOW_METER_ALGORITHM_TYPE_RFC2697, /**< Single Rate Three Color Marker - IETF RFC 2697. */ DOCA_FLOW_METER_ALGORITHM_TYPE_RFC2698, /**< Two Rate Three Color Marker - IETF RFC 2698. */ DOCA_FLOW_METER_ALGORITHM_TYPE_RFC4115, /**< Two Rate Three Color Marker - IETF RFC 4115. */ };   enum doca_flow_meter_limit_type { DOCA_FLOW_METER_LIMIT_TYPE_BYTES = 0, /**< Meter parameters per bytes */ DOCA_FLOW_METER_LIMIT_TYPE_PACKETS, /**< Meter parameters packets */ };   struct doca_flow_resource_meter_cfg { enum doca_flow_meter_limit_type limit_type; /**< Meter rate limit type: bytes / packets per second */ enum doca_flow_meter_algorithm_type alg; /**< Meter algorithm by RFCs */ uint64_t cir; /**< Committed Information Rate (bytes or packets per second). */ uint64_t cbs; /**< Committed Burst Size (bytes or packets). */ union { struct { uint64_t ebs; /** Excess Burst Size (EBS) (bytes or packets). */ } rfc2697; struct { uint64_t pir; /**< Peak Information Rate (bytes or packets per seconds). */ uint64_t pbs; /**< Peak Burst Size (bytes or packets). */ } rfc2698; struct { uint64_t eir; /**< Excess Information Rate (bytes or packets per seconds). */ uint64_t ebs; /**< Excess Burst Size (EBS) (bytes or packets). */ } rfc4115; }; };

  • limit_type – Bytes versus packets measurement.

  • alg – The meter marking RFC algorithm: 2697, 2698, or 4115.

  • cir – Committed information rate for shared meter.

  • cbs – Committed burst size of shared meter.

  • Pir – Peak information rate of shared meter.

  • Pbs – Peak burst size of shared meter.

  • Eir – Excess information rate of shared meter.

  • Ebs – Excess burst size of shared meter.

On doca_flow_shared_resource_bind()

This call binds a bulk of shared meter IDs to a specific pipe or port.

Copy
Copied!
            

doca_error_t doca_flow_shared_resources_bind(enum doca_flow_shared_resource_type type, uint32_t *res_array, uint32_t res_array_len, void *bindable_obj);

  • res_array [in] – array of shared meter IDs to be bound

  • res_array_len [in] – array length

  • bindable_obj – pointer to either a pipe or port

This call allocates the meter's objects. A meter ID specified in this array can only be used later by the corresponding bindable object (pipe or port).

The following example binds meter IDs 5 and 14 to a pipe. The meter IDs must be within the range 0-nb_shared_meters-1.

Copy
Copied!
            

uint32_t shared_meters_ids[] = {5, 14}; struct doca_flow_pipe *pipe = ...   doca_flow_shared_resources_bind( DOCA_FLOW_SHARED_RESOURCE_METER, shared_meters_ids, 2, pipe, &error);


On doca_flow_pipe_add_entry() or Pipe Configuration (struct doca_flow_pipe_cfg)

The shared meter ID is included in the monitor parameter. It must be bound in advance to the pipe object.

Copy
Copied!
            

struct doca_flow_monitor { ... uint32_t shared_meter_id; /**< shared meter id */ ... }

Packets matching the pipe entry are metered based on the cir and the cbs parameters related to the shared_meter_id. In the pipe configuration, the shared_meter_id can be changeable (all FFs) and then the pipe entry must hold the specific shared meter ID for that entry.

In switch mode, verifying meter domain is skipped.

Querying Bulk of Shared Meter IDs

There is no direct API to query a shared meter ID. To count the number of packets before a meter object, add a counter (shared or single) and use an API to query it. For an example, see section "Querying Bulk of Shared Counter IDs".

On doca_flow_pipe_destroy() or doca_flow_port_stop()

All bound resource IDs of this pipe or port are destroyed.

A shared RSS can be used in multiple pipe entries.

On doca_flow_init()

Specify the total number of shared RSS to be used, nb_shared_rss.

This call implicitly defines the shared RSS IDs in the range between 0 to nb_shared_rss-1.

Copy
Copied!
            

struct doca_flow_cfg cfg;   cfg.nr_shared_resources[DOCA_FLOW_SHARED_RESOURCE_RSS] = nb_shared_rss; doca_flow_init(&cfg, &error);


On doca_flow_shared_resource_cfg()

This call configures shared RSS resource.

Copy
Copied!
            

struct doca_flow_shared_resource_cfg res_cfg;   for (uint8_t i = 0; i < nb_shared_rss; i++) { res_cfg.rss_cfg.nr_queues = nr_queues; res_cfg.rss_cfg.flags = flags; res_cfg.rss_cfg.queues_array = queues_array; doca_flow_shared_resource_cfg(DOCA_FLOW_SHARED_RESOURCE_RSS, i, &rss_cfg, &error); }


On doca_flow_shared_resource_bind()

This call binds a bulk of shared RSS to a specific port.

Copy
Copied!
            

uint32_t shared_rss_ids[] = {2, 4, 7}; struct doca_flow_port *port;   doca_flow_shared_resources_bind( DOCA_FLOW_SHARED_RESOURCE_RSS, shared_rss_ids, 3, port);


On doca_flow_pipe_add_entry()

On doca_flow_pipe_create, the user can input NULL as fwd. On doca_flow_pipe_add_entry, the user can input preconfigured shared RSS as fwd by specifying the shared_rss_id.

Copy
Copied!
            

struct doca_flow_fwd;   fwd.shared_rss_id = 2; fwd.type = DOCA_FLOW_FWD_RSS; doca_flow_pipe_add_entry(queue, pipe, match, action, mon, &fwd, flag, usr_ctx, &error);


On doca_flow_port_stop()

All bound shared_rss resource IDs of this port are destroyed.

A shared crypto resource can be used in multiple pipe entries and is intended to perform crypto offloads (i.e., encrypt or decrypt packet data operations).

The following subsections expand on the steps for configuring and using shared crypto actions.

On doca_flow_init()

Specify the total number of shared crypto operations to be used, nb_shared_crypto.

This call implicitly defines the shared counter IDs in the range of 0-nb_shared_crypto-1.

Copy
Copied!
            

struct doca_flow_cfg cfg = { .queues = queues, ... .nr_shared_resources = {0, 0, 0, nb_shared_crypto}, } doca_flow_init(&cfg, &error);


On doca_flow_shared_resource_cfg()

This call provides the specific crypto ID with its configuration.

Copy
Copied!
            

struct doca_flow_resource_crypto_cfg { enum doca_flow_crypto_protocol_type proto_type; void* security_ctx; };   struct doca_flow_shared_resource_cfg { union { struct doca_flow_crypto_cfg crypto_cfg; ... }; };   int doca_flow_shared_resource_cfg(enum doca_flow_shared_resource_type type, uint32_t id, struct doca_flow_shared_resource_cfg *cfg, struct doca_flow_error *error);


On doca_flow_shared_resource_bind()

This call binds a bulk of shared crypto IDs to a specific pipe or port.

Copy
Copied!
            

doca_error_t doca_flow_shared_resources_bind(enum doca_flow_shared_resource_type type, uint32_t *res_array, uint32_t res_array_len, void *bindable_obj);

  • res_array [in] – Array of shared crypto IDs to be bound.

  • res_array_len [in] – Array length.

  • bindable_obj – Pointer to either a pipe or port.

This call allocates the crypto's objects. A crypto ID specified in this array can only be used later by the corresponding bindable object (pipe or port).

The following example binds crypto IDs 2, 5, and 7 to a pipe. The cryptos' IDs must be within the range 0-nb_shared_crypto-1.

Copy
Copied!
            

uint32_t shared_crypto_ids[] = {2, 5, 7}; struct doca_flow_pipe *pipe = ...   doca_flow_shared_resources_bind( DOCA_FLOW_SHARED_RESOURCE_CRYPTO, shared_crypto_ids, 3, pipe, &error);


On doca_flow_pipe_add_entry() or Pipe Configuration (struct doca_flow_pipe_cfg)

The shared crypto ID is included in the action parameter. It must be bound in advance to the pipe object.

Copy
Copied!
            

struct doca_flow_actions { ... struct { enum doca_flow_crypto_protocol_type proto_type; /**< Crypto shared action type */ uint32_t crypto_id; /**< Crypto shared action id */ } security; }

Crypto operations are performed over the packets matching the pipe entry according to the crypto_id configuration. Afterwards, the flow continues from the point specified in the forward part of the pipe configuration. In pipe configuration, the crypto_id should reference the shared crypto object ID to fetch the security pool information required for pipe creation. crypto_id is always considered changeable (regardless of all FFs) and the pipe entry holds the specific shared crypto ID.

The IPsec shared crypto resource can provide extra information in the u32[] fields of doca_flow_meta and the application can establish a match on these fields in the next pipes.

Warning

Extra information is provided only for actions with an IPsec object configured in full offload mode.


On doca_flow_pipe_destroy() or doca_flow_port_stop()

All bound crypto resource IDs of this pipe or port are destroyed.

A shared mirror can be used in multiple pipe entries (hardware steering mode support only). The following are the steps for configuring and using shared mirrors.

On doca_flow_init()

Specify the total number of shared mirrors to be used, nb_shared_mirrors.

The following call is an example for how to initialize both shared counters and mirror ranges. This call implicitly defines the shared counter IDs in the range of 0-nb_shared_counters-1 and the shared mirror IDs in the range of 0-nb_shared_mirrors-1.

Copy
Copied!
            

struct doca_flow_cfg cfg = { .queues = queues, ... .nr_shared_resources = {nb_shared_mirrors, nb_shared_counters}, } doca_flow_init(&cfg, &error);


On doca_flow_shared_resource_cfg()

This call binds a specific mirror ID with its mirror packet destination and original packet destination.

Copy
Copied!
            

struct doca_flow_mirror_target { bool has_encap; /**< Encap mirrored packets. */ struct doca_flow_encap_action encap; /**< Encap data. */ struct doca_flow_fwd fwd; /**< Mirror target, must be filled. */ };   struct doca_flow_resource_mirror_cfg { int nr_targets; /**< Mirror target number. */ struct doca_flow_mirror_target *target; /**< Mirror target pointer. */ struct doca_flow_fwd fwd; /**< Original packet dst, can be filled optional. */ };   struct doca_flow_shared_resource_cfg { union { struct doca_flow_resource_mirror_cfg mirror_cfg; ... }; };   int doca_flow_shared_resource_cfg(enum doca_flow_shared_resource_type type, uint32_t id, struct doca_flow_shared_resource_cfg *cfg, struct doca_flow_error *error);

The following example configures the shared mirror ID 5 with mirroring the packet to the second hairpin port:

Copy
Copied!
            

struct doca_flow_shared_resource_cfg shared_cfg = { 0 }; target.fwd.type = DOCA_FLOW_FWD_PORT; target.fwd.port_id = 0; shared_cfg.mirror_cfg.nr_targets = 1; shared_cfg.mirror_cfg.target = &target; doca_flow_shared_resource_cfg(DOCA_FLOW_SHARED_RESOURCE_MIRROR, 0x5, &shared_cfg, &error);


On doca_flow_shared_resource_bind()

This call binds a bulk of shared mirror IDs to a specific pipe or port.

Copy
Copied!
            

doca_error_t doca_flow_shared_resources_bind(enum doca_flow_shared_resource_type type, uint32_t *res_array, uint32_t res_array_len, void *bindable_obj);

  • res_array [in] – array of shared mirror IDs to be bound

  • res_array_len [in] – array length

  • bindable_obj – pointer to either a pipe or port

This call allocates the mirror's objects. A mirror ID specified in this array can only be used later by the corresponding bindable object (i.e., pipe or port).

Warning

Mirror can only be used with a BASIC pipe.

The following example binds mirror IDs 5 and 14 to a pipe. The mirror IDs must be within the range 0-nb_shared_mirrors-1.

Copy
Copied!
            

uint32_t shared_mirrors_ids[] = {5, 14}; struct doca_flow_pipe *pipe = ...   doca_flow_shared_resources_bind( DOCA_FLOW_SHARED_RESOURCE_MIRROR, shared_mirrors_ids, 2, pipe, &error);


On doca_flow_pipe_add_entry() or Pipe Configuration (struct doca_flow_pipe_cfg)

The shared mirror ID is included in the monitor parameter. It must be bound in advance to the pipe object.

Copy
Copied!
            

struct doca_flow_monitor { ... uint32_t shared_mirror_id; /**< shared mirror id */ ... }

Packets matching the pipe entry are mirrored to the targets related to the shared_mirror_id. In the pipe configuration, the shared_mirror_id can be changeable (all FFs) and then the pipe entry must hold the specific shared mirror ID for that entry.

Warning

Mirror is not allowed to be used on NIC Tx ("hws,VNF,Tx").

Warning

Mirror can only be used with a BASIC pipe.


Querying Bulk of Shared Mirror IDs

Query is not supported with mirror.

On doca_flow_pipe_destroy() or doca_flow_port_stop()

All bound resource IDs of this pipe or port are destroyed.

Initialization Flow

Before using any DOCA Flow function, it is mandatory to call DOCA Flow initialization, doca_flow_init(), which initializes all resources used by DOCA Flow.

Pipe Mode

This mode ( mode_args) defines the basic traffic in DOCA. It creates some miss rules when the DOCA port initialized. Currently, DOCA supports 3 types:

  • vnf

    The packet arrives from one side of the application, is processed, and sent from the other side. The miss packet by default goes to the RSS of all queues.

    The following diagram shows the basic traffic flow in vnf mode. Packet1 firstly misses to host RSS queues. The app captures this packet and decides how to process it and then creates a pipe entry. Packet2 will hit this pipe entry and do the action, for example, for VXLAN, will do decap, modify, and encap, then is sent out from P1.

  • switch

    Used for internal switching, only representor ports are allowed, for example, uplink representors and SF/VF representors. Packet is forwarded from one port to another. If a packet arrives from an uplink and does not hit the rules defined by the user's pipe. Then the packet is received on all RSS queues of the representor of the uplink.

    The following diagram shows the basic flow of traffic in switch mode. Packet1 firstly misses to host RSS queues. The app captures this packet and decides which representor goes, and then sets the rule. Packets hit this rule and go to representor0.

    If dev is provided in struct doca_flow_port_cfg, then pipe fwd cross-domain from ingress to egress is supported.

  • remote-vnf

    Remote mode is a BlueField mode only, with two physical ports (uplinks). Users must use doca_flow_port_pair to pair one physical port and one of its representors. A packet from this uplink, if it does not hit any rules from the users, is firstly received on this representor. Users must also use doca_flow_port_pair to pair two physical uplinks. If a packet is received from one uplink and hits the rule whose FWD action is to another uplink, then the packets are sent out from it.

    The following diagram shows the basic traffic flow in remote-vnf mode. Packet1, from BlueField uplink P0, firstly misses to host VF0. The app captures this packet and decides whether to drop it or forward it to another uplink (P1). Then, using gRPC to set rules on P0, packet2 hits the rule, then is either dropped or is sent out from P1.

Start Point

DOCA Flow API serves as an abstraction layer API for network acceleration. The packet processing in-network function is described from ingress to egress and, therefore, a pipe must be attached to the origin port. Once a packet arrives to the ingress port, it starts the hardware execution as defined by the DOCA API.

doca_flow_port is an opaque object since the DOCA Flow API is not bound to a specific packet delivery API, such as DPDK. The first step is to start the DOCA Flow port by calling doca_flow_port_start(). The purpose of this step is to attach user application ports to the DOCA Flow ports.

When DPDK is used, the following configuration must be provided:

Copy
Copied!
            

enum doca_flow_port_type type = DOCA_FLOW_PORT_DPDK_BY_ID; const char *devargs = "1";

The devargs parameter points to a string that has the numeric value of the DPDK port_id in decimal format. The port must be configured and started before calling this API. Mapping the DPDK port to the DOCA port is required to synchronize application ports with hardware ports.

Create Pipe and Pipe Entry

Pipe is a template that defines packet processing without adding any specific hardware rule. A pipe consists of a template that includes the following elements:

  • Match
  • Monitor
  • Actions
  • Forward

The following diagram illustrates a pipe structure.

pipe-illustration-version-1-modificationdate-1707420686853-api-v2.png

The creation phase allows the hardware to efficiently build the execution pipe. After the pipe is created, specific entries can be added. A subset of the pipe may be used (e.g., skipping the monitor completely, just using the counter, etc).

Matching

This section explains the concept of matching. Conceptually, the following logic is followed:

matching-diagram-version-1-modificationdate-1707420683543-api-v2.PNG

The packet enters the green filter which modifies it by masking it with the value A. The output value, P&A, is then compared to the value B, and if they are equal, then that is a match.

The values of A and B are evaluated according to the values of the pipe configuration and entry configuration fields, according to the tables in sections "Implicit Match" and "Explicit Match".

Setting Pipe Match

Match is a mandatory parameter when creating a pipe. Using the doca_flow_match struct, users must define the packet fields to be matched by the pipe.

For each doca_flow_match field, users select whether the field type is:

  • Ignore (match any) – the value of the field is ignored in a packet. In other words, match on any value of the field.
  • Constant – all entries in the pipe have the same value for this field. Users should not put a value for each entry.
  • Changeable – the value of the field is defined per entry. Users must provide it upon adding an entry.

    Warning

    L4 type, L3 type, and tunnel type cannot be changeable.

The match field type can be defined either implicitly or explicitly using the doca_flow_pipe_cfg.match_mask pointer. If match_mask == NULL, then it is done implicitly. Otherwise, it is explicit.
In the tables in the following subsections, an example is used of a 16-bit field (such as layer-4 destination port) where:

Warning

The same concept would apply to any other field (such as an IP address occupying 32 bits).

  • P stands for the packet field value
  • V stands for the pipe match field value
  • M stands for the pipe mask field value
  • E stands for the match entry field value

Implicit Match

Match Type

Pipe Match Value (V)

Pipe Match Mask (M)

Entry Match Value (E)

Filter (A)

Rule (B)

Ignore

0

NULL

N/A

0

0

Constant

0<V<0xffff

NULL

N/A

0xffff

V

Changeable (per entry)

0xffff

NULL

0≤E≤0xffff

0xffff

E

To match implicitly, the following considerations should be taken into account.

  • Ignored fields:

    • Field is zeroed
    • Pipeline has no comparison on the field
  • Constant fields

    These are fields that have a constant value among all entries. For example, as shown in the following, the tunnel type is VXLAN.

    Copy
    Copied!
                

    match.tun.type = DOCA_FLOW_TUN_VXLAN;

    These fields must only be configured once at pipe build stage, not once per new pipeline entry.

  • Changeable fields

    These are fields whose value may change per entry. For example, the following shows match on a destination IPv4 address of variable per-entry value (outer 5-tuple):

    Copy
    Copied!
                

    match.outer.ip4.dst_ip = 0xffffffff;

  • The following is an example of a match, where:

    • Outer 5-tuple

      • L3 type is IPv4 – constant among entries by design
      • L4 type is UDP – constant among entries by design
      • Tunnel type is DOCA_FLOW_TUN_VXLAN – constant among entries by design
      • IPv4 destination address varies per entry
      • UDP destination port is always DOCA_VXLAN_DEFAULT_PORT
      • VXLAN tunnel ID varies per entry
      • The rest of the packet fields are ignored
    • Inner 5-tuple

      • L3 type is IPv4 – constant among entries by design
      • L4 type is TCP – constant among entries by design
      • IPv4 source and destination addresses vary per entry
      • TCP source and destination ports vary per entry
      • The rest of the packet fields are ignored
Copy
Copied!
            

// filter creation static void build_underlay_overlay_match(struct doca_flow_match *match) { //outer match->outer.l3_type = DOCA_FLOW_L3_TYPE_IP4; match->outer.l4_type_ext = DOCA_FLOW_L4_TYPE_EXT_UDP;    match->tun.type = DOCA_FLOW_TUN_VXLAN;   match->outer.ip4.dst_ip = 0xffffffff; match->outer.udp.l4_port.dst_port = DOCA_VXLAN_DEFAULT_PORT; match->tun.vxlan_tun_id = 0xffffffff;   //inner match->inner.l3_type = DOCA_FLOW_L3_TYPE_IP4;    match->inner.l4_type_ext = DOCA_FLOW_L4_TYPE_EXT_TCP; match->inner.ip4.dst_ip = 0xffffffff;   match->inner.ip4.src_ip = 0xffffffff; match->inner.tcp.l4_port.src_port = 0xffff; match->inner.tcp.l4_port.dst_port = 0xffff; }   // create entry specifying specific values to match upon doca_error_t add_entry(struct doca_flow_pipe *pipe, struct doca_flow_port *port, struct doca_flow_pipe_entry **entry) {    struct doca_flow_match match = {};    struct entries_status status = {};    doca_error_t result;      match.outer.ip4.dst_ip = BE_IPV4_ADDR(7, 7, 7, 1); match.tun.vxlan_tun_id = RTE_BE32(9876); match.inner.ip4.src_ip = BE_IPV4_ADDR(8, 8, 8, 1); match.inner.ip4.dst_ip = BE_IPV4_ADDR(9, 9, 9, 1); match.inner.tcp.l4_port.src_port = rte_cpu_to_be_16(5678); match.inner.tcp.l4_port.dst_port = rte_cpu_to_be_16(1234);    result = doca_flow_pipe_add_entry(0, pipe, &match, &actions, NULL, NULL, 0, &status, entry); }

Explicit Match

Match Type

Pipe Match Value (V)

Pipe Match Mask (M)

Entry Match Value (E)

Filter (A)

Rule (B)

Constant

V!=0xffff

0<M≤0xffff

0≤E≤0xffff

M

M&V

Changeable

V==0xffff

0<M≤0xffff

0≤E≤0xffff

M

M&E

Ignored

0≤V≤0xffff

M==0

0≤E≤0xffff

0

0

In this case, there are two doca_flow_match items, the following considerations should be considered:

  • Ignored fields

    • M equals zero. This can be seen from the table where the rule equals 0. Since mask is also 0, the resulting packet after the filter is0. Thus, the comparison always succeeds.
    Copy
    Copied!
                

    match_mask.inner.ip4.dst_ip = 0;

  • Constant fields

    These are fields that have a constant value. For example, as shown in the following, the inner 5-tuple match on IPv4 destination addresses belonging to the 0.0.0.0/24 subnet, and this match is constant among all entries:

    Copy
    Copied!
                

    // BE_IPV4_ADDR converts 4 numbers A,B,C,D to a big endian representation of IP address A.B.C.D match.inner.ip4.dst_ip = 0; match_mask.inner.ip4.dst_ip = BE_IPV4_ADDR(255, 255, 255, 0);

    For example, as shown in the following, the inner 5-tuple match on IPv4 destination addresses belonging to the 1.2.0.0/16 subnet, and this match is constant among all entries. The last two octets of the match.inner.ip4.dst_ip are ignored because the match_mask of 255.255.0.0 is applied:

    Copy
    Copied!
                

    // BE_IPV4_ADDR converts 4 numbers A,B,C,D to a big endian representation of IP address A.B.C.D match.inner.ip4.dst_ip = BE_IPV4_ADDR(1, 2, 3, 4); match_mask.inner.ip4.dst_ip = BE_IPV4_ADDR(255, 255, 0, 0);

    Once a field is defined as constant, the field's value cannot be changed per entry.

    Tip

    Users should set constant fields to zero when adding entries for better code readability.

    A more complex example of constant matches may be achieved as follows:

    Copy
    Copied!
                

    match_mask.outer.tcp.l4_port.dst_port = rte_cpu_to_be_16(0xf0f0); match.outer.tcp.l4_port.dst_port = rte_cpu_to_be_16(0x5020)

    The following ports would be matched:

    • 0x5020 - 0x502f
    • 0x5120 - 0x512f
    • ...
    • 0x5f20 - 0x5f2f

Changeable fields
The following example matches on either FTP or TELNET well known port numbers and forwards packets to a server after modifying the destination IP address and destination port numbers. In the example, either FTP or TELNET are forwarded to the same server. FTP is forwarded to port 8000 and TELNET is forwarded to port 9000.

Copy
Copied!
            

// at Pipe creation pipe_cfg.attr.name = "PORT_MAPPER"; pipe_cfg.attr.type = DOCA_FLOW_PIPE_BASIC; match.outer.tcp.l4_port.dst_port = rte_cpu_to_be_16(0xffff); // v match_mask.outer.tcp.l4_port.dst_port = rte_cpu_to_be_16(0xffff); // M pipe_cfg.match_mask = &match_mask; pipe_cfg.match = &match; actions_arr[0] = &actions; pipe_cfg.actions = actions_arr; pipe_cfg.attr.is_root = true; pipe_cfg.attr.nb_actions = 1;   // Adding entries // FTP match.outer.tcp.l4_port.dst_port = rte_cpu_to_be_16(20); // E actions.outer.ip4.src_ip = server_addr; actions.outer.tcp.l4_port.dst_port = rte_cpu_to_be_16(8000); result = doca_flow_pipe_add_entry(0, pipe, &match, &actions, NULL, NULL, 0, &status, entry);   // TELNET match.outer.tcp.l4_port.dst_port = rte_cpu_to_be_16(23); // E actions.outer.ip4.src_ip = server_addr; actions.outer.tcp.l4_port.dst_port = rte_cpu_to_be_16(9000); result = doca_flow_pipe_add_entry(0, pipe, &match, &actions, NULL, NULL, 0, &status, entry);

Relaxed Match

Relaxed matching is the default working mode in DOCA flow. However, it can be disabled per pipe using the enable_strict_matching pipe attribute. This mode grants the user more control on matching fields such that only explicitly set match fields by the user (either specific or changeable) are matched by the pipe.

Consider the following strict matching mode example. There are three pipes:

  • Basic pipe A with match.outer.l4_type_ext = DOCA_FLOW_L4_TYPE_EXT_TCP; and match.outer.tcp.flags = 1;
  • Basic pipe B with match.outer.l4_type_ext = DOCA_FLOW_L4_TYPE_EXT_UDP; and match.outer.udp.l4_port.src_port = 8080;
  • Control pipe X with two entries to direct TCP traffic to pipe A and UDP to pipe B. The first entry has match.outer.l4_type_ext = DOCA_FLOW_L4_TYPE_EXT_TCP; while the second has match.outer.l4_type_ext = DOCA_FLOW_L4_TYPE_EXT_UDP;.

As a result, the hardware performs match on the L4 header type twice:

  • First, when the packet enters the filter in control pipe X to decide the next pipe
  • Second, when the packet enters the filter of pipe A or pipe B to do the match on L4 header fields

With particularly large pipelines, such double matches decrease performance and increase the memory footprint in hardware. Relaxed matching mode gives the user greater control of the match to solve the performance problems.
In relaxed mode, type selectors in the outer, inner, and tun parts of the doca_flow_match are used only for the type cast (or selectors) of the underlying unions. Header-type matches are available using the parser_meta API.

Thus, the aforementioned scenario may be overwritten in the following manner. There are three pipes:

  • Basic pipe A with match.outer.l4_type_ext = DOCA_FLOW_L4_TYPE_EXT_TCP; and match.outer.tcp.flags = 1;
  • Basic pipe B with match.outer.l4_type_ext = DOCA_FLOW_L4_TYPE_EXT_UDP; and match.outer.udp.l4_port.src_port = 8080;
  • Control pipe X with two entries to direct TCP traffic to pipe A and UDP to pipe B. The first entry has match.parser_meta.outer_l4_type = DOCA_FLOW_L4_META_TCP; while the second has match.parser_meta.outer_l4_type = DOCA_FLOW_L4_META_UDP;.

As a result, the hardware performs the L4 header-type match only once, when the packet enters the filter of control pipe. Basic pipes' match.outer.l4_type_ext are used only for the selection of the match.outer.tcp or match.outer.udp structures.

Example

The following code snippet is used to demonstrate relaxed matching mode:

Copy
Copied!
            

// filter creation static void build_underlay_overlay_match(struct doca_flow_match *match) { //outer match->outer.l3_type = DOCA_FLOW_L3_TYPE_IP4; match->outer.l4_type_ext = DOCA_FLOW_L4_TYPE_EXT_UDP; match->tun.type = DOCA_FLOW_TUN_VXLAN; match->outer.ip4.dst_ip = 0xffffffff; match->outer.udp.l4_port.src_port = 22; match->tun.vxlan_tun_id = 0xffffffff; }

This match code above is an example of a match where:

  • With relaxed matching disabled (i.e., enable_strict_matching attribute set to true), the following hardware matches are performed:

    • L3 type is IPv4 – constant among entries by design
    • L4 type is UDP – constant among entries by design
    • Tunnel type is DOCA_FLOW_TUN_VXLAN – constant among entries by design
    • IPv4 destination address varies per entry
    • UDP source port is constant among entries
    • VXLAN tunnel ID varies per entry
    • The rest of the packet fields are ignored
  • With relaxed matching enabled (default mode), the following hardware matches are performed :

    • IPv4 destination address varies per entry
    • UDP source port is constant among entries
    • VXLAN tunnel ID varies per entry

In summary, with relaxed matching L3, L4, tunnel protocol types, and similar no longer indicate a match on the specific protocol. They are use d solely as a selector for the relevant header fields. For example, to match on outer.ip4.dst_ip, users must set outer.l3_type = DOCA_FLOW_L3_TYPE_IP4. T hat is, the L3 header is checked for the IPv4 destination address. There is no check that it is of IPv4 type. It is user responsibility to make sure that packets arriving to such a filter indeed have an L3 header of type IPv4 (same goes for L4 UDP header/VXLAN tunnel).

Protocols/Tunnels Type Match

The following section explains how to match on a protocol's and a tunnel's type with relaxed matching.

To match on a specific protocol/tunnel type, consider the following:

  • To match on an inner/outer L3/L4 protocol type, one can use relevant doca_flow_parser_meta fields (e.g., for outer protocols, parser_meta.outer_l[3,4]_type fields can be used).
  • To match on a specific tunnel type (e.g., VXLAN/GRE and so on), users should match on a tunnel according to its specification (e.g., for VXLAN, a match on UDP destination port 4789 can be used). Another option is to use the L3 next protocol field (e.g., for IPv4 with next header GRE, one can match on the IPv4 header's next protocol field value to match GRE IP protocol number 47).

Example

Using the aforementioned example, to add the match on the same L3,L4 protocol type and on a VXLAN tunnel with relaxed matching enabled, the following function implementation should be considered:

Copy
Copied!
            

// filter creation static void build_underlay_overlay_match(struct doca_flow_match *match) { //outer match->parser_meta.outer_l3_type = DOCA_FLOW_L3_META_IPV4; match->parser_meta.outer_l4_type = DOCA_FLOW_L4_META_UDP; match->outer.l3_type = DOCA_FLOW_L3_TYPE_IP4; match->outer.l4_type_ext = DOCA_FLOW_L4_TYPE_EXT_UDP; match->tun.type = DOCA_FLOW_TUN_VXLAN; match->outer.ip4.dst_ip = 0xffffffff; match->outer.udp.l4_port.src_port = 22; match->outer.udp.l4_port.dst_port = DOCA_VXLAN_DEFAULT_PORT; match->tun.vxlan_tun_id = 0xffffffff; }

The match code above is an example of a match, where:

  • With relaxed matching disabled (i.e., enable_strict_matching attribute set to true), the following hardware matches are performed:

    • L3 type is IPv4 – constant among entries by design
    • L4 type is UDP – constant among entries by design
    • Tunnel type is DOCA_FLOW_TUN_VXLAN – constant among entries by design
    • IPv4 destination address varies per entry
    • UDP source port is always 22
    • UDP destination port is always DOCA_VXLAN_DEFAULT_PORT
    • VXLAN tunnel ID varies per entry
    • The rest of the packet fields are ignored
  • With relaxed matching enabled (default mode), the following hardware matches are performed:

    • L3 type is IPv4 – constant among entries by design
    • L4 type is UDP – constant among entries by design
    • IPv4 destination address varies per entry
    • UDP source port is always 22
    • UDP destination port is always DOCA_VXLAN_DEFAULT_PORT
    • VXLAN tunnel ID varies per entry
Warning

With relaxed matching, if any of the selectors is used without setting a relevant field, the pipe/entry creation would fail with the following error message:

Copy
Copied!
            

failed building active opcode - active opcode <opcode number> is protocol only

Setting Pipe Actions

Auto-modification

Similarly to setting pipe match, actions also have a template definition.

Similarly to doca_flow_match in the creation phase, only the subset of actions that should be executed per packet are defined. This is done in a similar way to match, namely by classifying a field of doca_flow_match to one of the following:

  • Ignored field – field is zeroed, modify is not used
  • Constant fields – when a field must be modified per packet, but the value is the same for all packets, a one-time value on action definitions can be used
  • Changeable fields – fields that may have more than one possible value, and the exact values are set by the user per entry

    Copy
    Copied!
                

    actions.outer.ip4.dst_ip = 0xffffffff;

  • Boolean fields – Boolean values, has_encap and decap are considered as constant values. It is not allowed to generate actions with has_encap=true and to then have an entry without an encap.

For example:

Copy
Copied!
            

static void create_decap_inner_modify_actions(struct doca_flow_actions *actions) { actions->decap = true; /* After decap, inner become outer. */ actions->outer.ip4.dst_ip = 0xffffffff; }

Explicit Modification Type

It is possible to force constant modification or per-entry modification with action mask. For example:

Copy
Copied!
            

static void create_constant_modify_actions(struct doca_flow_actions *actions, struct doca_flow_actions *actions_mask, struct doca_flow_action_descs *descs) { actions->outer.l4_type_ext = DOCA_FLOW_L4_TYPE_EXT_UDP; actions->outer.udp.src_port = 0x1234; actions_mask->outer.udp.src_port = 0xffff; }

Copy Field

The action descriptor can be used to copy between the packet field and metadata. For example:

Copy
Copied!
            

#define META_U32_BIT_OFFSET(idx) (offsetof(struct doca_flow_meta, u32[(idx)]) << 3)   static void  create_copy_packet_to_meta_actions(struct doca_flow_match *match, struct doca_flow_action_desc *desc) { desc->type = DOCA_FLOW_ACTION_COPY; desc->field_op.src.field_string = "outer.ipv4.src_ip"; desc->field_op.src.bit_offset = 0; desc->field_op.dst.field_string = "meta.data"; desc->field_op.dst.bit_offset = META_U32_BIT_OFFSET(1); /* Bit offset of meta.u32[1] */; }

Multiple Actions List

Creating a pipe is possible using a list of multiple actions. For example:

Copy
Copied!
            

static void create_multi_actions_for_pipe_cfg() { struct doca_flow_actions *actions_arr[2]; struct doca_flow_actions actions_0 = {0}, actions_1 = {0}; struct doca_flow_pipe_cfg pipe_cfg = {0}; /* input configurations for actions_0 and actions_1 */  actions_arr[0] = &actions_0; actions_arr[1] = &actions_1; pipe_cfg.attr.nb_actions = 2; pipe_cfg.actions = actions_arr; }

Summary of Action Types

Pipe Creation

Entry Creation

Behavior

action_desc

Pipe Actions

Pipe Actions Mask

Entry Actions

doca_flow_action_type

Configuration

DOCA_FLOW_ACTION_AUTO/

action_desc = NULL

No specific config

0

0

N/A

Field ignored, no modification

0

mask != 0

N/A

Apply 0 and mask to all entries

val != 0 && val != 0xFF

mask != 0

N/A

Apply val and mask to all entries

val = 0xFF

mask = 0

N/A

Apply 0xFF to all entries

val = 0xFF

mask != 0

Define val per entry

Apply entry's val and mask

DOCA_FLOW_ACTION_ADD

Add field value or from src

Define only the dst field and width

val != 0

N/A

N/A

Apply this val to all entries

val == 0

N/A

Define val per entry

Apply entry's val

Define the src and dst fields and width

Define the source and destination fields.

  • Meta field → header field

  • Header field → meta field

  • Meta field → meta field

N/A

N/A

Add data from src fields to dst for all entries

DOCA_FLOW_ACTION_COPY

Copy field to another field

N/A

Define the source and destination fields.

  • Meta field → header field

  • Header field → meta field

  • Meta field → meta field

N/A

N/A

Copy data between fields for all entries

DOCA_FLOW_ACTION_DECAP_ENCAP

Perform decap/encap for L2 or L3 tunnel

is_l2 == false

decap == true

N/A

N/A

Tunnel is of L3 type. After decap, the inner packet is encapped with an empty ETH header automatically. Use actions.outer.eth to fill in the details of that header.

has_encap == true

Tunnel is of L3 type. Before encap of the original packet, ETH header is removed from it.

is_l2 == true

decap == true

Tunnel is of L2 type. After decap, no automatic actions are performed. actions.outer.eth can be used to modify the ETH header of the inner packet.

has_encap == true

Tunnel is of L2 type. Before encap, no automatic actions are performed.

Summary of Fields

Field

Match

Modification

Add

Copy

meta.pkt_meta

x

x

x

meta.u32

x

x

x

Packet outer fields

x (field list)

x (field list)

TTL

Between meta[1]

Packet tunnel

x

To meta

Packet inner fields

x (field list)

To meta[1]

Warning

[1] Copy from meta to IP is not supported.

Setting Pipe Monitoring

If a meter policer should be used, then it is possible to have the same configuration for all policers on the pipe or to have a specific configuration per entry. The meter policer is determined by the FWD action. If an entry has NULL FWD action, the policer FWD action is taken from the pipe.

If a mirror should be used, mirror can be shared on the pipe or configured to have a specific value per entry.

The monitor also includes the aging configuration, if the aging time is set, this entry ages out if timeout passes without any matching on the entry.

For example:

Copy
Copied!
            

static void build_entry_monitor(struct doca_flow_monitor *monitor, void *user_ctx) { monitor->flags |= DOCA_FLOW_MONITOR_AGING; monitor->aging_sec = 10; }

Refer to Pipe Entry Aged Query for more information.

Setting Pipe Forwarding

The FWD (forwarding) action is the last action in a pipe, and it directs where the packet goes next. Users may configure one of the following destinations:

  • Send to software (representor)
  • Send to wire
  • Jump to next pipe
  • Drop packets

The FORWARDING action may be set for pipe create, but it can also be unique per entry.
A pipe can be defined with constant forwarding (e.g., always send packets on a specific port). In this case, all entries will have the exact same forwarding. If forwarding is not defined when a pipe is created, users must define forwarding per entry. In this instance, pipes may have different forwarding actions.

When a pipe includes meter monitor <cir, cbs>, it must have fwd defined as well as the policer.

If a pipe is created with a dedicate constant mirror with FWD, the pipe FWD can be from a mirror FWD or a pipe FWD and the two FWDs are exclusive. It is not allowed to specify a mirror with a FWD to a pipe with FWD also.

If a mirror FWD is not configured, the FWD is from the pipe configuration. The FWD of the pipe with a mirror cannot be direct RSS, only shared RSS from NULL FWD is allowed.

The following is an RSS forwarding example:

Copy
Copied!
            

fwd->type = DOCA_FLOW_FWD_RSS; fwd->rss_queues = queues; fwd->rss_flags = DOCA_FLOW_RSS_IP | DOCA_FLOW_RSS_UDP; fwd->num_of_queues = 4;

Queues point to the uint16_t array that contains the queue numbers. When a port is started, the number of queues is defined, starting from zero up to the number of queues minus 1. RSS queue numbers may contain any subset of those predefined queue numbers. For a specific match, a packet may be directed to a single queue by having RSS forwarding with a single queue.

Changeable RSS forwarding is supported. When creating the pipe, the num_of_queues must be set to 0xffffffff, then different forwarding RSS information can be set when adding each entry.

Copy
Copied!
            

fwd->num_of_queues = 0xffffffff;

The port_id is provided in struct doca_flow_port_cfg.

The packet is directed to the port. In many instances the complete pipe is executed in the hardware, including the forwarding of the packet back to the wire. The packet never arrives to the software.

Example code for forwarding to port:

Copy
Copied!
            

struct doca_flow_fwd *fwd = malloc(sizeof(struct doca_flow_fwd)); memset(fwd, 0, sizeof(struct doca_flow_fwd)); fwd->type = DOCA_FLOW_FWD_PORT; fwd->port_id = port_cfg->port_id;

The type of forwarding is DOCA_FLOW_FWD_PORT and the only data required is the port_id as defined in DOCA_FLOW_PORT.

Changeable port forwarding is also supported. When creating the pipe, the port_id must be set to 0xffff, then different forwarding port_id values can be set when adding each entry.

Copy
Copied!
            

fwd->port_id = 0xffff;

Basic Pipe Create

Once all parameters are defined, the user should call doca_flow_pipe_create to create a pipe.

The return value of the function is a handle to the pipe. This handle should be given when adding entries to pipe. If a failure occurs, the function returns NULL, and the error reason and message are put in the error argument if provided by the user.

Refer to the NVIDIA DOCA Library APIs to see which fields are optional and may be skipped. It is typically recommended to set optional fields to 0 when not in use. See Miss Pipe and Control Pipe for more information.

Once a pipe is created, a new entry can be added to it. These entries are bound to a pipe, so when a pipe is destroyed, all the entries in the pipe are removed. Please refer to section Pipe Entry for more information.

There is no priority between pipes or entries. The way that priority can be implemented is to match the highest priority first, and if a miss occurs, to jump to the next PIPE. There can be more than one PIPE on a root as long the pipes are not overlapping. If entries overlap, the priority is set according to the order of entries added. So, if two pipes have overlapping matching and PIPE1 has higher priority than PIPE2, users should add an entry to PIPE1 after all entries are added to PIPE2.

Pipe Entry (doca_flow_pipe_add_entry)

An entry is a specific instance inside of a pipe. When defining a pipe, users define match criteria (subset of fields to be matched), the type of actions to be done on matched packets, monitor, and, optionally, the FWD action.

When a user calls doca_flow_pipe_add_entry() to add an entry, they should define the values that are not constant among all entries in the pipe. And if FWD is not defined then that is also mandatory.

DOCA Flow is designed to support concurrency in an efficient way. Since the expected rate is going to be in millions of new entries per second, it is mandatory to use a similar architecture as the data path. Having a unique queue ID per core saves the DOCA engine from having to lock the data structure and enables the usage of multiple queues when interacting with hardware.

pipe-entry-queue-diagram-version-1-modificationdate-1707420686453-api-v2.png

Each core is expected to use its own dedicated pipe_queue number when calling doca_flow_pipe_entry. Using the same pipe_queue from different cores causes a race condition and has unexpected results.

Upon success, a handle is returned. If a failure occurs, a NULL value is returned, and an error message is filled. The application can keep this handle and call remove on the entry using its handle.

Copy
Copied!
            

int doca_flow_pipe_rm_entry(uint16_t pipe_queue, void *usr_ctx, struct doca_flow_pipe_entry *entry);

Pipe Entry Counting

By default, no counter is added. If defined in monitor, a unique counter is added per entry.

Warning

Having a counter per entry affects performance and should be avoided if it is not required by the application.

The retrieved statistics are stored in struct doca_flow_query.

Pipe Entry Aged Query

When a user calls doca_flow_aging_handle(), this query is used to get the aged-out entries by the time quota in microseconds. The user callback is invoked by this API with the aged entries.

Since the number of flows can be very large, the query of aged flows is limited by a quota in microseconds. This means that it may return without all flows and requires the user to call it again. When the query has gone over all flows, a full cycle is done.

Pipe Entry With Multiple Actions

Users can define multiple actions per pipe. This gives the user the option to define different actions per entry in the same pipe by providing the action_idx in struct doca_flow_actions.

For example, to create two flows with the same match but with different actions, users can provide two actions upon pipe creation, Action_0 and Action_1, which have indices 0 and 1 respectively in the actions array in the pipe configuration. Action_0 has modify_mac, and Action_1 has modify_ip.

Users can also add two kinds of entries to the pipe, the first one with Action_0 and the second with Action_1. This is done by assigning 0 in the action_idx field in struct doca_flow_actions when creating the first entry and 1 when creating the second one.

Miss Pipe and Control Pipe

Warning

Only one root pipe is allowed. If more than one is needed, create a control pipe as root and forward the packets to relevant non-root pipes.

To set priority between pipes, users must use miss-pipes. Miss pipes allow to look up entries associated with pipe X, and if there are no matches, to jump to pipe X+1 and perform a lookup on entries associated with pipe X+1.

The following figure illustrates the hardware table structure:

miss-pipe-hw-table-structure-version-1-modificationdate-1707420684577-api-v2.png

The first lookup is performed on the table with priority 0. If no hits are found, then it jumps to the next table and performs another lookup.

The way to implement a miss pipe in DOCA Flow is to use a miss pipe in FWD. In struct doca_flow_fwd, the field next_pipe signifies that when creating a pipe, if a fwd_miss is configured then if a packet does not match the specific pipe, steering should jump to next_pipe in fwd_miss.

Warning

fwd_miss is of type struct doca_flow_fwd but it only implements two forward types of this struct:

  • DOCA_FLOW_FWD_PIPE – forwards the packet to another pipe

  • DOCA_FLOW_FWD_DROP – drops the packet

Other forwarding types (e.g., forwarding to port or sending to RSS queue) are not supported.

next_pipe is defined as doca_flow_pipe and created by doca_flow_pipe_create. To separate miss_pipe and a general one, is_root is introduced in struct doca_flow_pipe_cfg. If is_root is true, it means the pipe is a root pipe executed on packet arrival. Otherwise, the pipe is next_pipe.

When fwd_miss is not null, the packet that does not match the criteria is handled by next_pipe which is defined in fwd_miss.

In internal implementations of doca_flow_pipe_create, if fwd_miss is not null and the forwarding action type of miss_pipe is DOCA_FLOW_FWD_PIPE, a flow with the lowest priority is created that always jumps to the group for the next_pipe of the fwd_miss. Then the flow of next_pipe can handle the packets, or drop the packets if the forwarding action type of miss_pipe is DOCA_FLOW_FWD_DROP.

For example, VXLAN packets are forwarded as RSS and hairpin for other packets. The miss_pipe is for the other packets (non-VXLAN packets) and the match is for general Ethernet packets. The fwd_miss is defined by miss_pipe and the type is DOCA_FLOW_FWD_PIPE. For the VXLAN pipe, it is created by doca_flow_create() and fwd_miss is introduced.

Since, in the example, the jump flow is for general Ethernet packets, it is possible that some VXLAN packets match it and cause conflicts. For example, VXLAN flow entry for ipA is created. A VXLAN packet with ipB comes in, no flow entry is added for ipB, so it hits miss_pipe and is hairpinned.

A control pipe is introduced to handle the conflict. When a user calls doca_flow_create_control_pipe(), the new control pipe is created without any configuration except for the port. Then the user can add different matches with different forwarding and priorities when there are conflicts.

The user can add a control entry by calling doca_flow_control_pipe_add_entry().

priority must be defined as higher than the lowest priority (3) and lower than the highest one (0).

The other parameters represent the same meaning of the parameters in doca_flow_pipe_create. In the example above, a control entry for VXLAN is created. The VLXAN packets with ipB hit the control entry.

doca_flow_pipe_lpm

doca_flow_pipe_lpm uses longest prefix match (LPM) matching. LPM matching is limited to a single field of the doca_flow_match (e.g., the outer destination IP). Each entry is consisted of a value and a mask (e.g., 10.0.0.0/8, 10.10.0.0/16, etc). The LPM match is defined as the entry that has the maximum matching bits. For example, using the two entries 10.7.0.0/16 and 10.0.0.0/8, the IP 10.1.9.2 matches on 10.0.0.0/8 and IP 10.7.9.2 matches on 10.7.0.0/16 because 16 bits are the longest prefix matched.

The actions and FWD of the DOCA Flow LPM pipe works the same as the basic DOCA Flow pipe.

Warning

The monitor only supports non-shared counters in the LPM pipe.

doca_flow_pipe_lpm insertion max latency can be measured in milliseconds in some cases and, therefore, it is better to insert it from the control path. To get the best insertion performance, entries should be added in large batches.

Warning

An LPM pipe cannot be a root pipe. You must create a pipe as root and forward the packets to the LPM pipe.

Warning

For monitoring, an LPM pipe only supports non-shared counters and does not support other capabilities of doca_flow_monitor.

doca_flow_pipe_acl

doca_flow_pipe_acl uses a ccess-control list (ACL) matching. ACL matching is five tuple of the doca_flow_match. Each entry consists of a value and a mask (e.g., 10.0.0.0/8, 10.10.0.0/16, etc.) for IP address fields, port range, or specific port in the port fields, protocol, and priority of the entry.

ACL entry port configuration:

  • Mask port is 0 ==> Any port
  • Mask port is equal to match port ==> Exact port. Port with mask 0xffff.
  • Mask port > match port ==> Match port is used as port from and mask port is used as port to

Monitor actions are not supported in ACL. FWD of the DOCA Flow ACL pipe works the same as the basic DOCA Flow pipe.
ACL supports the following types of FWD:

  • DOCA_FLOW_FWD_PORT
  • DOCA_FLOW_FWD_PIPE
  • DOCA_FLOW_FWD_DROP

doca_flow_pipe_lpm insertion max latency can be measured in milliseconds in some cases and, therefore, it is better to insert it from the control path. To get the best insertion performance, entries should be added in large batches.

Warning

An ACL pipe can be a root pipe.

Warning

An ACL pipe can be in ingress and egress domain.

Warning

An ACL pipe must be accessed on a single queue. Different ACL pipes may be accessed on different queues.

Warning

Adding an entry to the ACL pipe after sending an entry with flag DOCA_FLOW_NO_WAIT is not supported.

Warning

Removing an entry from an ACL pipe is not supported.

doca_flow_pipe_ordered_list

doca_flow_pipe_ordered_list allows the user to define a specific order of actions and multiply the same type of actions (i.e., specific ordering between counter/meter and encap/decap).

An ordered list pipe is defined by an array of actions (i.e., sequences of actions). Each entry can be an instance one of these sequences. An ordered list pipe may consist of up to an array of 8 different actions. The maximum size of each action array is 4 elements. Resource allocation may be optimized when combining multiple action arrays in one ordered list pipe.

doca_flow_pipe_hash

doca_flow_pipe_hash allows the user to insert entries by index. The index represents the packet hash calculation.

An hash pipe gets doca_flow_match only on pipe creation and only mask. The mask provides all fields to be used for hash calculation.

The monitor, actions, actions_descs, and FWD of the DOCA Flow hash pipe works the same as the basic DOCA Flow pipe.

Warning

The nb_flows in doca_flow_pipe_attr should be a power of 2.

Hardware Steering Mode

Users can enable hardware steering mode by setting devarg dv_flow_en to 2.

The following is an example of running DOCA with hardware steering mode:

Copy
Copied!
            

.... –a 03:00.0, dv_flow_en=2 –a 03:00.1, dv_flow_en=2....

The following is an example of running DOCA with software steering mode:

Copy
Copied!
            

.... –a 03:00.0 –a 03:00.1 ....

The dv_flow_en=2 means that hardware steering mode is enabled.

In the struct doca_flow_cfg, the member mode_args represents DOCA applications. If it is defined with hws (e.g., "vnf,hws", "switch,hws", "remmote_vnf,hws") then hardware steering mode is enabled.

To create an entry by calling doca_flow_pipe_add_entry, the parameter flags can be set as DOCA_FLOW_WAIT_FOR_BATCH or DOCA_FLOW_NO_WAIT:

  • DOCA_FLOW_WAIT_FOR_BATCH means that this flow entry waits to be pushed to hardware. Batch flows then can be pushed only at once. This reduces the push times and enhances the insertion rate.
  • DOCA_FLOW_NO_WAIT means that the flow entry is pushed to hardware immediately.

The parameter usr_ctx is handled in the callback defined in struct doca_flow_cfg.
doca_flow_entries_process processes all the flows in this queue. After the flow is handled and the status is returned, the callback is executed with the status and usr_ctx.

If the user does not define the callback in doca_flow_cfg, the user can get the status using doca_flow_entry_get_status to check if the flow has completed offloading or not.

Isolated Mode

In non-isolated mode (default) any received packets (following an RSS forward, for example) can be processed by the DOCA application, bypassing the kernel. In the same way, the DOCA application can send packets to the NIC without kernel knowledge. This is why, by default, no replies are received when pinging a host with a running DOCA application. If only specific packet types (e.g., DNS packets) should be processed by the DOCA application, while other packets (e.g., ICMP ping) should be handled directly the kernel, then isolated mode becomes relevant.

In isolated mode, packets that match root pipe entries are steered to the DOCA application (as usual) while other packets are received/sent directly by the kernel.

If you plan to create a pipe with matches followed by action/monitor/forward operations, due to functional/performance considerations, it is advised that root pipes entries include the matches followed by a next pipe forward operation. In the next pipe, all the planned matches actions/monitor/forward operations could be specified. Unmatched packets are received and sent by the kernel.

To activate isolated mode, two configurations are required:

  1. DOCA configuration: Update the string member mode_args (struct doca_flow_cfg) which represents the DOCA application mode and add "isolated" (separated by comma) to the other mode arguments. For example: "vnf,hws,isolated", "switch,isolated".
  2. DPDK configuration: Set isolated_mode to 1 (struct application_port_config). For example, if DPDK is initialized by the API: dpdk_queues_and_ports_init(struct application_dpdk_config *app_dpdk_config).
Copy
Copied!
            

struct application_dpdk_config app_dpdk_config = { .port_config = { .isolated_mode = 1, .nb_ports = ... ... }, ... };

Pipe Resize

The move to HWS improves performance because rule insertion is implemented in hardware rather than software. However, this move imposes additional limitations, such as the need to commit in advance on the size of the pipes (the number of rule entries). For applications that require pipe sizes to grow over time, a static size can be challenging: Committing to a pipe size too small can cause the the application to fail once the number of rule entries exceeds the committed number, and pre-committing to an excessively high number of rules can result in memory over-allocation.

This is where pipe resizing comes in handy. This feature allows the pipe size to increase during runtime with support for all entries in a new resized pipe.

Note

For this release, pipe resizing it is only operational in Control Pipes.

Increasing Pipe Size

It is possible to set a congestion level by percentage (CONGESTION_PERCENTAGE). Once the number of entries in the pipe exceeds this value, a callback is invoked. For example, for a pipe with 1000 entries and a CONGESTION_PERCENTAGE of 80%, the CONGESTION_REACHED callback is invoked after the 800th entry is added.

Following the CONGESTION_REACHED callback, the application should call the pipe resize API (resize()). The following are optional callbacks during the resize callback:

  • A callback on the new number of entries allocated to the pipe
  • A callback on each entry that existed in the smaller pipe and is now allocated to the resized pipe
Note

The pipe pointer remains the same for the application to use even after being resized.

Upon completion of the internal transfer of all entries from the small pipe to the resized pipe, a RESIZED callback is invoked.

A CONGESTION_REACHED callback is received exactly once before the RESIZED callback. Receiving another CONGESTION_REACHED only happens after calling resize() and receiving its completion with a RESIZED callback.

List of Callbacks

  • CONGESTION_REACHED – on the updated number of entries in the pipe (if pipe is resizable)

    Note

    Receiving a CONGESTION_REACHED callback can occur after adding a small number of entries and for moving entries from a small to resized pipe. The application must always call pipe resize after receiving the CONGESTION_REACHED callback to handle such cases.

  • RESIZED – upon completion of the resize operation

    Warning

    Calling pipe resize returns immediately. It starts an internal process that ends later with the RESIZED callback.

  • NR_ENTRIES_CHANGED (optional) – on the new max number of entries in the pipe
  • ENTRY_RELOCATE (optional) – on each entry moved from the small pipe to the resized pipe

Order of Operations for Pipe Resizing

  1. set a process callback on doca_flow_init():

    Copy
    Copied!
                

    .pipe_process_cb = <pipe-process-callback>

    This will inform on OP_CONGESTION_REACHED and OP_RESIZED operations when applicable.

  2. Set the following pipe attributes on pipe creation:

    Copy
    Copied!
                

    .is_resizable = true, .congestion_level_threshold = <CONGESTION_PERCENTAGE>, .user_ctx = <pipe-user-context>

  3. Start adding entries:

    Copy
    Copied!
                

    doca_flow_pipe_control_add_entry()

  4. Once the number of entries in the pipe crosses the congestion threshold, an OP_CONGESTION_REACHED operation callback is received.
  5. Mark the pipe's congestion threshold event and, upon return, call:

    Copy
    Copied!
                

    doca_flow_pipe_resize()

    For this call, add the following parameters:

      • The new threshold percentage for calculating the new size
      • A callback on the new pipe size (optional):

        Copy
        Copied!
                    

        doca_flow_pipe_resize_nr_entries_changed_cb nr_entries_changed_cb

      • A callback on the entries to be transferred to the resized pipe:

        Copy
        Copied!
                    

        doca_flow_pipe_resize_entry_relocate_cb entry_relocation_cb

  6. Call doca_flow_entries_process() to trigger the transfer of entries. At this phase, adding new entries to the pipe is permitted. The entries are added directly to the resized pipe and therefore do not need to be transferred.
  7. Once all entries are transferred, an OP_RESIZED operation callback is received, at which point calling doca_flow_entries_process() can be stopped. Also, at this point a new OP_CONGESTION_REACHED operation callback can be received again.

Hairpin Configuration

In switch mode, if dev is provided in struct doca_flow_port_cfg, then an internal hairpin is created for direct wire-to-wire fwd. Users may specify the hairpin configuration using mode_args. The supported options as follows:

  • hairpinq_num=[n] – the hairpin queue number
  • use_huge_mem – determines whether the Tx buffer uses hugepage memory
  • lock_rx_mem – locks Rx queue memory

Teardown

Pipe Entry Teardown

When an entry is terminated by the user application or ages-out, the user should call the entry destroy function, doca_flow_pipe_rm_entry(). This frees the pipe entry and cancels hardware offload.

Pipe Teardown

When a pipe is terminated by the user application, the user should call the pipe destroy function, doca_flow_pipe_destroy(). This destroys the pipe and the pipe entries that match it.

When all pipes of a port are terminated by the user application, the user should call the pipe flush function, doca_flow_port_pipes_flush(). This destroys all pipes and all pipe entries belonging to this port.

Important

During doca_flow_pipe_destroy() execution, the application must avoid adding/removing entries or checking for aged entries of any other pipes.

Port Teardown

When the port is not used anymore, the user should call the port stop function, doca_flow_port_stop(). This stops the DOCA port, disables the traffic, destroys the port and frees all resources of the port.

Flow Teardown

When the DOCA Flow is not used anymore, the user should call the flow destroy function, doca_flow_destroy(). This releases all the resources used by DOCA Flow.

In situations where there is a port without a pipe defined, or with a pipe defined but without any entry, the default behavior is that all packets arrive to a port in the software.

packet-processing-no-flow-version-1-modificationdate-1707420686127-api-v2.png

Once entries are added to the pipe, if a packet has no match then it continues to the port in the software. If it is matched, then the rules defined in the pipe are executed.

packet-processing-w-flow-version-1-modificationdate-1707420685807-api-v2.png

If the packet is forwarded in RSS, the packet is forwarded to software according to the RSS definition. If the packet is forwarded to a port, the packet is redirected back to the wire. If the packet is forwarded to the next pipe, then the software attempts to match it with the next pipe.

Note that the number of pipes impacts performance. The longer the number of matches and actions that the packet goes through, the longer it takes the hardware to process it. When there is a very large number of entries, the hardware must access the main memory to retrieve the entry context which increases latency.

This chapter describes gRPC support for DOCA Flow. The DOCA Flow gRPC-based API allows users on the host to leverage the hardware offload capabilities of the BlueField DPU using gRPCs from the host itself.

DOCA Flow gRPC server implementation is based on gRPC's async API to maximize the performance offered to the gRPC client on the host. In addition, the gRPC support in the DOCA Flow library provides a client interface which gives the user the ability to send/receive messages to/from the client application in C.
This section is divided into the following parts:

  • proto-buff – this section details the messages defined in the proto-buff

  • Client interface – this section details the API for communicating with the server

  • Usage – this section explains how to use the client interface to develop your own client application based on DOCA Flow gRPC support

Refer to NVIDIA DOCA gRPC Infrastructure User Guide for more information about DOCA gRPC support.

Warning

The pkg-config (*.pc file) for the DOCA Flow library is included in DOCA's regular definitions (i.e., doca-grpc).

The following figure illustrates the DOCA Flow gRPC server-client communication when running in VNF mode.

ovs-arch-version-1-modificationdate-1707420684910-api-v2.png

Running the DOCA Flow gRPC Server

Installation

Refer to the NVIDIA DOCA Installation Guide for Linux for instructions on installing BlueField-related software.

Prerequisites

  1. Refer to NVIDIA DOCA gRPC Infrastructure User Guide for information on configuring the required steps for DOCA's gRPC infrastructure.

    Note

    Refer to the NVIDIA DOCA Troubleshooting Guide for any issue you may encounter with the installation or execution of the DOCA gRPC infrastructure.

  2. The DOCA Flow gRPC server requires the user to allocate huge pages:

    Copy
    Copied!
                

    echo '2048' | sudo tee -a /sys/kernel/mm/hugepages/hugepages-2048kB/nr_hugepages

    Warning

    On some operating systems (RockyLinux, OpenEuler, CentOS 8.2) the default huge page size on the DPU (and Arm hosts) is larger than 2MB, and is often 512MB instead. In such cases, the guiding principal is to allocate 4GB of RAM, and instead of allocating 2048 pages, one should allocate the matching amount (8 pages):

    Copy
    Copied!
                

    sudo echo 8 > /proc/sys/vm/nr_hugepages

DOCA Flow gRPC Server Execution

Server usage instructions:

Copy
Copied!
            

Usage: doca_flow_grpc [DPDK Flags] -- [DOCA Flags] [Program Flags]   DOCA Flags: -h, --help Print a help synopsis -v, --version Print program version information -l, --log-level Set the (numeric) log level for the program <10=DISABLE, 20=CRITICAL, 30=ERROR, 40=WARNING, 50=INFO, 60=DEBUG, 70=TRACE> --sdk-log-level Set the SDK (numeric) log level for the program <10=DISABLE, 20=CRITICAL, 30=ERROR, 40=WARNING, 50=INFO, 60=DEBUG, 70=TRACE> -j, --json <path> Parse all command flags from an input json file -g, --grpc-address ip_address[:port] Set the IP address for the grpc server   Program Flags: -hqs, --nb_hairpin_qs Set number of hairpin queues -iso, --isolated_mode Set isolated mode -hbd, --hybrid_dev set hybrid device configuration -ddev, --doca_dev set use of doca device

For additional information, refer to section "Command Line Flags".

The following is a CLI example deploying the gRPC server on the DPU using the gRPC orchestrator client on the host:

Copy
Copied!
            

/opt/mellanox/doca/infrastructure/doca_grpc/orchestrator/doca_grpc_client.py 192.168.103.2 create doca_flow_grpc -a auxiliary:mlx5_core.sf.2,dv_flow_en=2 -a auxiliary:mlx5_core.sf.3,dv_flow_en=2 -- -l 60 --nb_hairpin_qs 2


Command Line Flags

Flag Type

Short Flag

Long Flag/JSON Key

Description

General flags

h

help

Prints a help synopsis

v

version

Prints program version information

l

log-level

Set the log level for the application:

  • DISABLE=10

  • CRITICAL=20

  • ERROR=30

  • WARNING=40

  • INFO=50

  • DEBUG=60

  • TRACE=70 (requires compilation with Trace level support)

N/A

sdk-log-level

Sets the log level for the program:

  • DISABLE=10

  • CRITICAL=20

  • ERROR=30

  • WARNING=40

  • INFO=50

  • DEBUG=60

  • TRACE=70

j

json

Parse all command flags from an input JSON file

g

grpc-address

Set the IP address for the gRPC server

Program flags

hqs

nb_hairpin_qs

Set the number of hairpin queues

iso

isolated_mode

Activate isolated mode

hbd

hybrid_dev

Set hybrid device configuration

ddev

doca_dev

Set use of DOCA Device

Refer to DOCA Arg Parser for more information regarding the supported flags and execution modes.

Proto-Buff

As with every gRPC proto-buff, DOCA Flow gRPC proto-buff defines the services it introduces, and the messages used for the communication between the client and the server. Each proto-buff DOCA Flow method:

  • Represents exactly one function in DOCA Flow API

  • Has its request message, depending on the type of the service

  • Has the same response message (DocaFlowResponse)

In addition, DOCA Flow gRPC proto-buff defines several of messages that are used for defining request messages, the response message, or other messages.

Each message defined in the proto-buff represents either a struct or an enum defined by DOCA Flow API. The following figure illustrates how DOCA Flow gRPC server represents the DOCA Flow API.

proto-buff-diagram-version-1-modificationdate-1707420685187-api-v2.png

The proto-buff path for DOCA Flow gRPC is /opt/mellanox/doca/infrastructure/doca_grpc/doca_flow/doca_flow.proto.

Response Message

All services have the same response message. DocaFlowResponse contains all types of results that the services may return to the client.

Copy
Copied!
            

/** General DOCA Flow response message */ message DocaFlowResponse{         bool success = 1;        /* True in case of success */         DocaFlowError error = 2; /* Otherwise, this field contains the error information */         /* in case of success, one or more of the following may be used */ uint32 port_id = 3; uint64 pipe_id = 4; uint64 entry_id = 5; string port_pipes_dump = 6; DocaFlowQueryRes query_stats = 7; bytes priv_data = 8; DocaFlowHandleAgingRes handle_aging_res = 9; uint64 nb_entries_processed = 10; DocaFlowEntryStatus status = 11; }


DocaFlowCfg

The DocaFlowCfg message represents the doca_flow_cfg struct.

DocaFlowPortCfg

The DocaFlowPortCfg message represents the doca_flow_port_cfg struct.

DocaFlowPipeCfg

The DocaFlowPipeCfg message represents the doca_flow_pipe_cfg struct.

DocaFlowMeta

The DocaFlowMeta message represents the doca_flow_meta struct.

The DocaFlowMatch message contains fields of types DocaFlowIPAddress and DocaFlowTun. These types are messages which are also defined in the doca_flow.proto file and represent doca_flow_ip_address and doca_flow_tun respectively.

DocaFlowMatch

The DocaFlowMatch message represents the doca_flow_match struct.

The DocaFlowMatch message contains fields of types DocaFlowIPAddress and DocaFlowTun. These types are messages which are also defined in the doca_flow.proto file and represent doca_flow_ip_address and doca_flow_tun respectively.

DocaFlowActions

The DocaFlowActions message represents the doca_flow_actions struct.

DocaFlowActionDesc

The DocaFlowActionDesc message represents the doca_flow_action_desc struct.

The DocaFlowActionDesc message contains fields of type DocaFlowActionDescField which are also defined in the doca_flow.proto file and represent doca_flow_action_desc_field.

DocaFlowMonitor

The DocaFlowMonitor message represents the doca_flow_monitor struct.

DocaFlowFwd

The DocaFlowFwd message represents the doca_flow_fwd struct.

DocaFlowQueryStats

The DocaFlowQueryStats message represents the doca_flow_query struct.

DocaFlowHandleAgingRes

The DocaFlowHandleAgingRes message contains all the parameters needed to save the result of an aging handler.

DocaFlowInit

DOCA Flow initialization gRPC:

Copy
Copied!
            

rpc DocaFlowInit(DocaFlowCfg) returns (DocaFlowResponse);

If successful, the success field in the response message is set to true. Otherwise, the error field is populated with the error information.

DocaFlowPortStart

The service for starting the DOCA flow ports:

Copy
Copied!
            

rpc DocaFlowPortStart(DocaFlowPortCfg) returns (DocaFlowResponse);

If successful, the success field in the DocaFlowResponse is set to true. Otherwise, the error field is populated with the error information.

DocaFlowPortPair

The DocaFlowPortPairRequest message contains all the necessary information for port pairing:

Copy
Copied!
            

message DocaFlowPortPairRequest {   uint32 port_id = 1; /* port identefier of doca flow port. */ uint32 pair_port_id = 2; /* port identefier to the pair port. */ }

Once all the parameters are defined, a "port pair" service can be called:

The service for DOCA Flow port pair is as follows:

Copy
Copied!
            

rpc DocaFlowPortPair(DocaFlowPortPairRequest) returns (DocaFlowResponse);

If successful, the success field in the DocaFlowResponse is set to true. Otherwise, the error field is populated with the error information.

DocaFlowPipeCreate

The DocaFlowPipeCreateRequest message contains all the necessary information for pipe creation as the DOCA Flow API suggests:

Copy
Copied!
            

message DocaFlowPipeCreateRequest { DocaFlowPipeCfg cfg = 1; /* the pipe configurations */ DocaFlowFwd fwd = 2; /* the pipe's FORWARDING component */ DocaFlowFwd fwd_miss = 3; /* The FORWARDING miss component */ }

Once all the parameters are defined, a "create pipe" service can be called:

Copy
Copied!
            

rpc DocaFlowPipeCreate (DocaFlowPipeCreateRequest) returns (DocaFlowResponse);

If successful, the success field in DocaFlowResponse is set to true, and the pipe_id field is populated with the ID of the added entry. This ID should be given when adding entries to the pipe. Otherwise, the error field is filled accordingly.

DocaFlowPipeAddEntry

The DocaFlowPipeAddEntryRequest message contains all the necessary information for adding an entry to the pipe:

Copy
Copied!
            

message DocaFlowPipeAddEntryRequest{ uint32 pipe_queue = 2; /* the pipe queue */ uint64 pipe_id = 3; /* the pipe ID to add the entry to */ DocaFlowMatch match = 4; /* matcher for the entry */ DocaFlowActions actions = 5; /* actions for the entry */ DocaFlowMonitor monitor = 6; /* monitor for the entry */ DocaFlowFwd fwd = 7; /* The entry's FORWARDING component */ uint32 flags = 1; /* whether the flow entry is pushed to HW immediately or not */ }

Once all the parameters are defined, an "add entry to pipe" service can be called:

Copy
Copied!
            

rpc DocaFlowPipeAddEntry(DocaFlowPipeAddEntryRequest) returns (DocaFlowResponse);

If successful, the success field in DocaFlowResponse is set to true, and the entry_id field is populated with the ID of the added entry. This ID should be given when adding entries to the pipe. Otherwise, the error field is filled accordingly.

DocaFlowPipeControlAddEntry

The DocaFlowPipeControlAddEntryRequest message contains the required arguments for adding entries to the control pipe:

Copy
Copied!
            

message DocaFlowPipeControlAddEntryRequest { uint32 priority = 2; /* he priority of the added entry to the filter pipe */ uint32 pipe_queue = 3; /* the pipe queue */ uint64 pipe_id = 4; /* the pipe ID to add the entry to */ DocaFlowMatch match = 5; /* matcher for the entry */ DocaFlowMatch match_mask = 6; /* matcher mask for the entry */ DocaFlowFwd fwd = 7; /* The entry’s FORWARDING component */ }

Once all the parameters are defined, an "add entry to pipe" service can be called:

Copy
Copied!
            

rpc DocaFlowPipeControlAddEntry(DocaFlowPipeControlAddEntryRequest) returns (DocaFlowResponse);

If successful, the success field in DocaFlowResponse is set to true, and the entry_id field is populated with the ID of the added entry. This ID should be given when adding entries to the pipe. Otherwise, the error field is filled accordingly.

DocaFlowPipeLpmAddEntry

The DocaFlowPipeLpmAddEntryRequest message contains the required arguments for adding entries to the LPM pipe:

Copy
Copied!
            

message DocaFlowPipeLpmAddEntryRequest{ uint32 pipe_queue = 1; /* the pipe queue */ uint64 pipe_id = 2; /* the pipe ID to add the entry to */ DocaFlowMatch match = 3; /* matcher for the entry */ DocaFlowMatch match_mask = 4; /* matcher mask for the entry */ DocaFlowActions actions = 5; /* actions for the entry */ DocaFlowMonitor monitor = 6; /* monitor for the entry */       DocaFlowFwd fwd = 7; /* The entry’s FORWARDING component */      uint32 flag = 8; /* whether the flow entry will be pushed to HW immediately or not */ }

Once all the parameters are defined, an "add entry to LPM pipe" service can be called:

Copy
Copied!
            

rpc DocaFlowPipeLpmAddEntry(DocaFlowPipeLpmAddEntryRequest) returns (DocaFlowResponse);

If successful, the success field in DocaFlowResponse is set to true, and the entry_id field is populated with the ID of the added entry. This ID should be given when adding entries to the pipe. Otherwise, the error field is filled accordingly.

DocaFlowEntriesProcess

The DocaFlowEntriesProcessRequest message contains the required arguments for processing the entries in the queue.

Copy
Copied!
            

message DocaFlowEntriesProcessRequest{ uint32 port_id = 1; /* the port ID of the entries to process. */ uint32 pipe_queue = 2; /* the pipe queue of the entries to process. */ /* max time in micro seconds for the actual API to process entries. */ uint64 timeout = 3; /* An upper bound for the required number of entries to process. */ uint32 max_processed_entries = 4; }

Once all the parameters are defined, the "entries process" service can be called:

Copy
Copied!
            

rpc DocaFlowEntriesProcess(DocaFlowEntriesProcessRequest) returns (DocaFlowResponse);

If successful, the success field in DocaFlowResponse is set to true, and the nb_entries_processed field is populated with the ID of the number of processed entries.

DocaFlowEntyGetStatus

The DocaFlowEntryGetStatusRequest message contains the required arguments for fetching the status of a given entry.

Copy
Copied!
            

message DocaFlowEntryGetStatusRequest{ /* the entry identifier of the requested entry’s status. */ uint64 entry_id = 1; }

Once all the parameters are defined, the "entry get status" service can be called:

Copy
Copied!
            

rpc DocaFlowEntriesProcess(DocaFlowEntriesProcessRequest) returns (DocaFlowResponse);

If successful, the success field in DocaFlowResponse is set to true, and the status field is populated with the status of the requested entry. This field's type is DocaFlowEntryStatus, which is an enum defined in the proto-buff, and represents the enum doca_flow_entry_status, defined in the DOCA Flow header.

DocaFlowQuery

The DocaFlowQueryRequest message contains the required arguments for querying a given entry.

Copy
Copied!
            

message DocaFlowQueryRequest{ uint64 entry_id = 3; /* the entry id. */ }

Once all the parameters are defined, the "query" service can be called:

Copy
Copied!
            

rpc DocaFlowQuery(DocaFlowQueryRequest) returns (DocaFlowResponse);

If successful, the success field in DocaFlowResponse is set to true, and the query_stats field is populated with the query result of the requested entry. This field's type is DocaFlowQueryStats which represents the doca_flow_query struct.

DocaFlowAgingHandle

The DocaFlowAgingHandleRequest message contains the required arguments for handling aging by DOCA Flow.

Copy
Copied!
            

message DocaFlowAgingHandleRequest{ uint32 port_id = 1; /* the port id handle aging to. */ uint32 queue = 2; /* the queue identifier */ uint64 quota = 3; /* the max time quota in micro seconds for this function to handle aging. */ }

Once all the parameters are defined, the "handle aging" service can be called:

Copy
Copied!
            

rpc DocaFlowAgingHandle(DocaFlowAgingHandleRequest) returns (DocaFlowResponse);

If successful, the success field in DocaFlowResponse is set to true, and the handle_aging_res is populated with the aging handler result. This field's type is DocaFlowHandleAgingRes.

DocaFlowSharedResourceCfg

The DocaFlowSharedResourceCfgRequest message contains the required arguments for configuring a shared resource by DOCA Flow.

Copy
Copied!
            

message DocaFlowSharedResourceCfgRequest { DocaFlowSharedResourceType type = 1; /* Shared resource type */ uint32 id = 2; /* Shared resource id */ SharedResourceCfg cfg= 3; /* Shared resource configuration */ }

Once all the parameters are defined, the "config shared resource" service can be called:

Copy
Copied!
            

rpc DocaFlowSharedResourceCfg(DocaFlowSharedResourceCfgRequest ) returns (DocaFlowResponse);

If successful, the success field in DocaFlowResponse is set to true.

DocaFlowSharedResourcesBind

The DocaFlowSharedResourcesBindRequest message contains the required arguments for configuring a shared resource by DOCA Flow.

Copy
Copied!
            

message DocaFlowSharedResourcesBindRequest { DocaFlowSharedResourceType type = 1; /* Shared resource type */ repeated uint32 resource_arr = 2; /* Repeated shared resource IDs */ /* id of allowed bindable object, use 0 to bind globally */ oneof bindable_obj_id { uint64 port_id = 3; /* Used if the bindable object is port */ uint64 pipe_id = 4; /* Used if the bindable object is pipe */ } }

Once all the parameters are defined, the "bind shared resources" service can be called:

Copy
Copied!
            

rpc DocaFlowSharedResourcesBind(DocaFlowSharedResourcesBindRequest ) returns (DocaFlowResponse);

If successful, the success field in DocaFlowResponse is set to true.

DocaFlowSharedResourcesQuery

The DocaFlowSharedResourcesQueryRequest message contains the required arguments for configuring a shared resource by DOCA Flow.

Copy
Copied!
            

message DocaFlowSharedResourcesQueryRequest { DocaFlowSharedResourceType type = 1; /* Shared object type */ repeated uint32 res_array = 2; /* Array of shared objects IDs to query */ }

Once all the parameters are defined, the "query shared resources" service can be called:

Copy
Copied!
            

rpc DocaFlowSharedResourcesBind(DocaFlowSharedResourcesBindRequest ) returns (DocaFlowResponse);

If successful, the success field in DocaFlowResponse is set to true and the query_result is populated with the query shared resources result. This field's type is DocaFlowQueryStats which represents the doca_flow_query struct.

DOCA Flow gRPC Client API

This section describes the recommended way for C developers to utilize gRPC support for DOCA Flow API. Refer to the DOCA Flow gRPC API in NVIDIA DOCA Libraries API Reference Manual for the library API reference.

The following sections provide additional details about the library API.

The DOCA installation includes libdoca_flow_grpc which is a library that provides a C API wrapper to the C++ gRPC, while mimicking the regular DOCA Flow API, for ease of use, and allowing smooth transition to the Arm.

This library API is exposed in doca_flow_grpc_client.h and is essentially the same as doca_flow.h, with the notation differences detailed in the following subsections. In general, the client interface API usage is almost identical to the regular API (i.e., DOCA Flow API). The arguments of each function in DOCA Flow API, are almost identical to the arguments of each function defined in the client API, except that each pointer is replaced with an ID representing the pointer.

For example, when creating a pipe or adding an entry, the original API returns a pointer to the created pipe or the added entry. However, when adding an entry or creating a pipe using the client interface, an ID representing the added entry or the created pipe is returned to the client application instead of the pointer.

doca_flow_grpc_response

doca_flow_grpc_response is a general response struct that holds information regarding the function result. Each API returns this struct. If an error occurs, the error field is populated with the error's information, and the success field is set to false. Otherwise, the success field is set to true and one of the other fields may hold a return value depending on the called function.

For example, when calling doca_flow_grpc_create_pipe() the pipe_id field is populated with the ID of the created pipe in case of success.

Copy
Copied!
            

struct doca_flow_grpc_response { bool success; struct doca_flow_error error; uint64_t pipe_id; uint64_t entry_id; uint32_t aging_res; uint64_t nb_entries_processed; enum doca_flow_entry_status entry_status; };

  • success – In case of success, the value should be true.

  • error – In case of error, this struct should contain the error information.

  • pipe_id – Pipe ID of the created pipe.

  • entry_id – Entry ID of the created entry.

  • aging_res – Return value from handle aging.

  • nb_entries_processed – Return value from entries process.

  • entry_status – Return value from entry get status.

doca_flow_grpc_pipe_cfg

doca_flow_grpc_pipe_cfg is a pipeline configuration wrapper.

Copy
Copied!
            

struct doca_flow_grpc_pipe_cfg { struct doca_flow_pipe_cfg cfg; uint16_t port_id; };

  • cfg – Pipe configuration containing the user-defined template for the packet process.

  • port_id – Port ID for the pipeline.

doca_flow_grpc_fwd

doca_flow_grpc_fwd is a forwarding configuration wrapper.

Copy
Copied!
            

struct doca_flow_grpc_fwd { struct doca_flow_fwd fwd; uint64_t next_pipe_id; };

  • fwd – Forward configuration which directs where the packet goes next.

  • next_pipe_id – When using DOCA_FLOW_FWD_PIPE, this field contains the next pipe's ID.

doca_flow_grpc_client_create

This function initializes a channel to DOCA Flow gRPC server.

This must be invoked first before any other function in this API. This is a one-time call.

Copy
Copied!
            

void doca_flow_grpc_client_create(char *grpc_address);

  • grpc_address [in] – String representing the server IP.

DOCA Flow gRPC Usage

A DOCA flow gRPC based server is implemented using the async API of gRPC. This is because the async API gives the server the ability to expose DOCA flow's concurrency support. Therefore, it is very important to use the client interface API for communicating with the DOCA Flow gRPC server because it hides all gRPC-related details from the users, which eases the use of the server, and exposes to the client applications the efficiency of DOCA Flow, in terms of flow insertion rates.

The following phases demonstrate a basic flow of client applications:

  • Init Phase – client interface and environment initializations

  • Flow life cycle – this phase is the same phase described in chapter Flow Life Cycle

It is important to emphasize that the number of threads for adding entries should be the same as the number of queues used when starting the server and initializing the environment (DPDK) and DOCA Flow API. This is to prevent bottlenecks on the server side.

If a client application starts the server on BlueField with N cores (through EAL arguments), this means that environment and DOCA Flow initialization should be done with N queues. As a result, the server launches N lcores, each one responsible for exactly one queue that is accessed only by it. Therefore, the client application should launch N threads as well, each being responsible for adding entries to a specific queue which is accessed by it only as well.

The following illustration demonstrates the relation between thread "j" on the client side and lcore "j" on the server side:

doca-flow-grpc-usage-diagram-version-1-modificationdate-1707420685507-api-v2.png


This section provides DOCA Flow sample implementation on top of the BlueField DPU.

Sample Prerequisites

The DOCA Flow samples are based on DPDK libraries. Therefore, the user is required to provide DPDK flags, and allocate huge pages.

Copy
Copied!
            

sudo echo 2048 > /sys/kernel/mm/hugepages/hugepages-2048kB/nr_hugepages

Warning

On some operating systems (RockyLinux, OpenEuler, CentOS 8.2) the default huge page size on the DPU (and Arm hosts) is larger than 2MB, and is often 512MB instead. In such cases, the guiding principal is to allocate 4GB of RAM, and instead of allocating 2048 pages, one should allocate the matching amount (8 pages):

Copy
Copied!
            

sudo echo 8 > /proc/sys/vm/nr_hugepages


Running the Sample

  1. Refer to the following documents:

  2. To build a given sample:

    Copy
    Copied!
                

    cd /opt/mellanox/doca/samples/doca_flow/<sample_name> meson /tmp/build ninja -C /tmp/build

    Warning

    The binary doca_<sample_name> will be created under /tmp/build/.

  3. Sample (e.g., flow_aging) usage:

    Copy
    Copied!
                

    Usage: doca_flow_aging [DPDK Flags] –- [DOCA Flags]   DOCA Flags: -h, --help Print a help synopsis -v, --version Print program version information -l, --log-level Set the (numeric) log level for the program <10=DISABLE, 20=CRITICAL, 30=ERROR, 40=WARNING, 50=INFO, 60=DEBUG, 70=TRACE> --sdk-log-level Set the SDK (numeric) log level for the program <10=DISABLE, 20=CRITICAL, 30=ERROR, 40=WARNING, 50=INFO, 60=DEBUG, 70=TRACE> -j, --json <path> Parse all command flags from an input json file

  4. For additional information per sample, use the -h option after the -- separator:

    Copy
    Copied!
                

    /tmp/build/doca_<sample_name> -- -h

  5. DOCA Flow samples are based on DPDK libraries. Therefore, the user is required to provide DPDK flags. The following is an example from an execution on the DPU:

    • CLI example for running the samples with "vnf" mode:

      Copy
      Copied!
                  

      /tmp/build/doca_<sample_name> -a auxiliary:mlx5_core.sf.2 -a auxiliary:mlx5_core.sf.3 -- -l 60

    • CLI example for running the samples with vnf,hws mode:

      Copy
      Copied!
                  

      /tmp/build/doca_<sample_name> -a auxiliary:mlx5_core.sf.2,dv_flow_en=2 -a auxiliary:mlx5_core.sf.3,dv_flow_en=2 -- -l 60

    • CLI example for running the samples with switch,hws mode:

      Copy
      Copied!
                  

      /tmp/build/doca_<sample_name> -a 03:00.0,representor=sf[2-3],dv_flow_en=2 -- -l 60

      Warning

      When running on the DPU with switch,hws mode , it is not necessary to configure the OVS.

      Warning

      When running on the DPU using the command above, sub-functions must be enabled according to the NVIDIA BlueField DPU Scalable Function User Guide.

      Warning

      When running on the host, virtual functions must be used according to the instructions in the NVIDIA DOCA Virtual Functions User Guide.

Samples

Flow ACL

This sample illustrates how to use the access-control list (ACL) pipe.

The sample logic includes:

  1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

  2. Starting two DOCA Flow ports.

  3. On each port:

    1. Building an ACL pipe that matches changeable:

      1. Source IPv4 address

      2. Destination IPv4 address

      3. Source port

      4. Destination port

    2. Adding four example 5-tuple entries:

      1. The first entry with:

        • Full mask on source IPv4 address

        • Full mask on destination IPv4 address

        • Null mask on source port (any source port)

        • Null mask on destination port (any destination port)

        • TCP protocol

        • Priority 10

        • Action "deny" (drop action)

      2. The second entry with:

        • Full mask on source IPv4 address

        • Full mask on destination IPv4 address

        • Null mask on source port (any source port)

        • Value set in mask on destination port is used as part of port range:

          • Destination port in match is used as port from

          • Destination port in mask is used as port to

        • UDP protocol

        • Priority 50

        • Action "allow" (forward port action)

      3. The third entry with:

        • Full mask on source IPv4 address

        • Full mask on destination IPv4 address

        • Value set in mask on source port is equal to the source port in match. It is the exact port. ACL uses the port with full mask.

        • Null mask on destination port (any destination port)

        • TCP protocol

        • Priority 40

        • Action "allow" (forward port action)

      4. The fourth entry with:

        • 24-bit mask on source IPv4 address

        • 24-bit mask on destination IPv4 address

        • Value set in mask on source port is used as part of port range : source port in match is used as port from, source port in mask is used as port to.

        • Value set in mask on destination port is equal to the destination port in match. It is the exact port. ACL uses the port with full mask.

        • TCP protocol

        • Priority 20

        • Action "allow" (forward port action)

    3. The sample shows how to run the ACL pipe on ingress and egress domains. To change the domain, use the global parameter flow_acl_sample.c.

      1. Ingress domain: ACL is created as root pipe

      2. Egress domain:

        • Building a control pipe with one entry that forwards the IPv4 traffic hairpin port.

        • ACL is created as a root pipe on the hairpin port.

Reference:

  • /opt/mellanox/doca/samples/doca_flow/flow_acl/flow_acl_sample.c

  • /opt/mellanox/doca/samples/doca_flow/flow_acl/flow_acl_main.c

  • /opt/mellanox/doca/samples/doca_flow/flow_acl/meson.build

Flow Aging

This sample illustrates the use of DOCA Flow's aging functionality. It demonstrates how to build a pipe and add different entries with different aging times and user data.

The sample logic includes:

  1. Initializing DOCA Flow with mode_args="vnf,hws" in the doca_flow_cfg struct.

  2. Starting two DOCA Flow port.

  3. On each port:

    1. Building a pipe with changeable 5-tuple match and forward port action.

    2. Adding 10 entries with different 5-tuple match, a monitor with different aging time (5-60 seconds), and setting user data in the monitor. The user data will contain the port ID, entry number, and entry pointer.

  4. Handling aging every 5 seconds and removing each entry after age-out.

  5. Running these commands until all entries age out.

Reference:

  • /opt/mellanox/doca/samples/doca_flow/flow_aging/flow_aging_sample.c

  • /opt/mellanox/doca/samples/doca_flow/flow_aging/flow_aging_main.c

  • /opt/mellanox/doca/samples/doca_flow/flow_aging/meson.build

Flow Control Pipe

This sample shows how to use the DOCA Flow control pipe and decap action.

The sample logic includes:

  1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

  2. Starting two DOCA Flow ports.

  3. On each port:

    1. Building VXLAN pipe with match on VNI field, decap action, action descriptor for decap, and forwarding the matched packets to the second port.

    2. Building GRE pipe with match on GRE key field, decap and build eth header actions, action descriptor for decap, and forwarding the matched packets to the second port.

    3. Building MPLS pipe with match on third MPLS label field, decap and build eth header actions, action descriptor for decap, and forwarding the matched packets to the second port.

    4. Building a control pipe with the following entries:

      • If L4 type is UDP and destination port is 4789, forward to VXLAN pipe

      • If L4 type is UDP and destination port is 6635, forward to MPLS pipe

      • If tunnel type and L4 type is GRE, forward to GRE pipe

Warning

When any tunnel is decapped, it is user responsibility to identify if it is an L2 or L3 tunnel within the action descriptor. If the tunnel is L3, the complete outer layer, tunnel, and inner L2 are removed and the inner L3 layer is exposed. To keep the packet valid, DOCA Flow automatically encaps the inner packet with an empty ETH header. To make the ETH header valid, the user must modify the L2 source/destination MAC addresses and VLAN may optionally be modified. For example:

Copy
Copied!
            

actions.decap = true; /* append eth header after decap GRE tunnel */ SET_MAC_ADDR(actions.outer.eth.src_mac, src_mac[0], src_mac[1], src_mac[2], src_mac[3], src_mac[4], src_mac[5]); SET_MAC_ADDR(actions.outer.eth.dst_mac, dst_mac[0], dst_mac[1], dst_mac[2], dst_mac[3], dst_mac[4], dst_mac[5]); actions.outer.l3_type = DOCA_FLOW_L3_TYPE_IP4;   /* identify that the tunnel is of L3 type */ desc_array[0].type = DOCA_FLOW_ACTION_DECAP_ENCAP; desc_array[0].decap_encap.is_l2 = false;

For a VXLAN tunnel, since VXLAN is a L2 tunnel, the user must indicate that to the DOCA Flow using an action descriptor so it does not execute any automatic actions:

Copy
Copied!
            

actions.decap = true;   /* identify that the tunnel is of L2 type */ desc_array[0].type = DOCA_FLOW_ACTION_DECAP_ENCAP; desc_array[0].decap_encap.is_l2 = true;

Reference:

  • /opt/mellanox/doca/samples/doca_flow/flow_control_pipe/flow_control_pipe_sample.c

  • /opt/mellanox/doca/samples/doca_flow/flow_control_pipe/flow_control_pipe_main.c

  • /opt/mellanox/doca/samples/doca_flow/flow_control_pipe/meson.build

Flow Copy to Meta

This sample shows how to use the DOCA Flow copy-to-metadata action to copy the source MAC address and then match on it.

The sample logic includes:

  1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

  2. Starting two DOCA Flow ports.

  3. On each port:

    1. Building a pipe with changeable match on meta_data and forwarding the matched packets to the second port.

    2. Adding an entry that matches an example source MAC that has been copied to metadata.

    3. Building a pipe with changeable 5-tuple match, copying source MAC action, and fwd to the first pipe.

    4. Adding example 5-tuple entry to the pipe.

    Reference:

    • /opt/mellanox/doca/samples/doca_flow/flow_copy_to_meta/flow_copy_to_meta_sample.c

    • /opt/mellanox/doca/samples/doca_flow/flow_copy_to_meta/flow_copy_to_meta_main.c

    • /opt/mellanox/doca/samples/doca_flow/flow_copy_to_meta/meson.build

    Flow Add to Metadata

    This sample shows how to use the DOCA Flow add-to-metadata action to accumulate the source IPv4 address for double to meta and then match on the meta.

    The sample logic includes:

    1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

    2. Starting two DOCA Flow ports.

    3. On each port:

      1. Building a pipe with changeable match on meta_data and forwarding the matched packets to the second port.

      2. Adding an entry that matches an example double of source IPv4 address that has been added to metadata.

      3. Building a pipe with changeable 5-tuple match, copying the source IPv4, and adding the value again to the meta action, and forwarding to the first pipe.

      4. Adding an example 5-tuple entry to the pipe.

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_add_to_meta/flow_add_to_meta_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_add_to_meta/flow_add_to_meta_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_add_to_meta/meson.build

      Flow Drop

      This sample illustrates how to build a pipe with 5-tuple match, forward action drop, and forward miss action to the hairpin pipe. The sample also demonstrates how to dump pipe information to a file and query entry.

      The sample logic includes:

      1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

      2. Starting two DOCA Flow ports.

      3. On each port:

        1. Building a hairpin pipe with an entry that matches all traffic and forwarding traffic to the second port.

        2. Building a pipe with a changeable 5-tuple match, forwarding action drop, and miss forward to the hairpin pipe. This pipe serves as a root pipe.

        3. Adding an example 5-tuple entry to the drop pipe with a counter as monitor to query the entry later.

      4. Waiting 5 seconds and querying the drop entry (total bytes and total packets).

      5. Dumping the pipe information to a file.

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_drop/flow_drop_sample_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_drop/flow_drop_sample_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_drop/meson.build

      Flow ESP

      This sample illustrates how to match match ESP fields in two ways:

      • Exact match for both esp_spi and esp_en fields using the doca_flow_match structure.

      • Comparison match for esp_en field using the doca_flow_match_condition structure.

      The sample logic includes:

      1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

      2. Starting two DOCA Flow ports.

      3. On each port:

        1. Building a control pipe with entry that match esp_en > 3 (GT pipe).

        2. Building a control pipe with entry that match esp_en < 3 (LT pipe).

        3. Building a root pipe with changeable next_pipe FWD and esp_spi match along with specific esp_sn match + IPv4 and ESP exitance (matching parser_meta).

        4. Adding example esp_spi = 8 entry to the root pipe which forwards to GT pipe (and miss condition).

        5. Adding example esp_spi = 5 entry to the root pipe which forwards to LT pipe (and hit condition).

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_esp/flow_esp_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_esp/flow_esp_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_esp/meson.build

      Flow Forward Target (DOCA_FLOW_TARGET_KERNEL)

      The sample illustrates how to use DOCA_FLOW_FWD_TARGET type of forward, as well as the doca_flow_get_target API to obtain an instance of struct doca_flow_target.

      The sample logic includes:

      1. Initializing DOCA Flow with "vnf,isolated,hws".

      2. Initializing two ports.

      3. Obtaining an instance of doca_flow_target by calling doca_flow_get_target(DOCA_FLOW_TARGET_KERNEL, &kernel_target);.

      4. On each port, creating:

        1. Non-root basic pipe with 5 tuple match.

          1. If hit – forward the packet to another port.

          2. If miss – forward the packet to the kernel for processing by using the instance of doca_flow_target obtained in previous steps.

          3. Then add a single entry with a specific 5-tuple which is hit, and the rest is forwarded to the kernel.

        2. Root control pipe with a match on outer L3 type being IPv4.

          1. If hit – forward the packet to the non-root pipe.

          2. If miss – drop the packet.

          3. Add a single entry that implements the logic described.

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_fwd_target/flow_fwd_target_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_fwd_target/flow_fwd_target_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_fwd_target/meson.build

      Flow GENEVE Encap

      This sample illustrates how to use DOCA Flow actions to create a GENEVE tunnel.

      The sample logic includes:

      1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

      2. Starting two DOCA Flow ports.

      3. On each port:

        1. Building ingress pipe with changeable 5-tuple match, copying to pkt_meta action, and forwarding port action.

        2. Building egress pipe with pkt_meta match and 4 different encapsulation actions:

          • L2 encap without options

          • L2 encap with options

          • L3 encap without options

          • L3 encap with options

        3. Adding example 5-tuple and encapsulation values entries to the pipes.

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_geneve_encap/flow_geneve_encap_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_geneve_encap/flow_geneve_encap_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_geneve_encap/meson.build

      Flow GENEVE Options

      This sample illustrates how to prepare a GENEVE options parser, match on configured options, and decap GENEVE tunnel.

      Warning

      This sample works only with PF. VFs and SFs are not supported.

      The sample logic includes:

      1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

      2. Starting two DOCA Flow ports.

      3. On each port:

        1. Building GENEVE options parser, same input for all ports.

        2. Building match pipe with GENEVE VNI and options match and forwards decap pipe.

        3. Building decap pipe with more GENEVE options match, and 2 different decapsulation actions:

          • L2 decap

          • L3 decap with changeable mac addresses

        4. Adding example GENEVE options and MAC address values entries to the pipes.

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_geneve_opt/flow_geneve_opt_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_geneve_opt/flow_geneve_opt_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_geneve_opt/meson.build

      Flow Hairpin VNF

      This sample illustrates how to build a pipe with 5-tuple match and to forward packets to the other port.

      The sample logic includes:

      1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

      2. Starting two DOCA Flow ports.

      3. On each port:

        1. Building a pipe with changeable 5-tuple match and forwarding port action.

        2. Adding example 5-tuple entry to the pipe.

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_hairpin_vnf/flow_hairpin_vnf_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_hairpin_vnf/flow_hairpin_vnf_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_hairpin_vnf/meson.build

      Flow Switch to Wire

      This sample illustrates how to build a pipe with 5-tuple match and forward packets from the wire back to the wire.

      The sample shows how to build a basic pipe in a switch and hardware steering (HWS) mode. Each pipe contains two entries, each of which forwards matched packets to two different representors.

      The sample also demonstrates how to obtain the switch port of a given port using doca_flow_port_switch_get().

      Warning

      The test requires one PF with two representors (either VFs or SFs). fdb_def_rule_en=0,vport_match=1 should be added to the DPDK devargs.

      The sample logic includes:

      1. Initializing DOCA Flow by indicating mode_args="switch,hws" in the doca_flow_cfg struct.

      2. Starting DOCA Flow ports with doca_dev in struct doca_flow_port_cfg.

      3. On the switch's PF port:

        1. Building ingress and egress pipes with changeable 5-tuple match and forwarding port action.

        2. Adding example 5-tuple entry to the pipe.

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_switch_to_wire/flow_switch_to_wire_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_switch_to_wire/flow_switch_to_wire_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_switch_to_wire/meson.build

      Flow Hash Pipe

      This sample illustrates how to build a hash pipe in hardware steering (HWS) mode.

      The hash pipe contains two entries, each of which forwards "matched" packets to two different SF representors. For each received packet, the hash pipe calculates the entry index to use based on the IPv4 destination address.

      The sample logic includes:

      1. Initializing DOCA Flow by indicating mode_args="switch,hws" in the doca_flow_cfg struct.

      2. Starting DOCA Flow ports: Physical port and two SF representors.

      3. On switch port:

        1. Building a hash pipe while indicating which fields to use to calculate the hash in the struct match_mask.

        2. Adding two entries to the created pipe, each of which forwards packets to a different port representor.

      4. Printing the hash result calculated by the software with the following message: "hash value for" for dest ip = 192.168.1.1.

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_hash_pipe/flow_hash_pipe_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_hash_pipe/flow_hash_pipe_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_hash_pipe/meson.build

      Flow Loopback

      This sample illustrates how to implement packet re-injection, or loopback, in VNF mode.

      The sample logic includes:

      1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

      2. Starting two DOCA Flow ports.

      3. On each port:

        1. Building a UDP pipe that matches a changeable source and destination IPv4 address, while the forwarding component is RSS to queues. Upon match, setting the packet meta on this UDP pipe which is referred to as an RSS_UDP_IP pipe.

        2. Adding one entry to the RSS_UDP_IP pipe that matches a packet with a specific source and destination IPv4 address and setting the meta to 10.

        3. Building a TCP pipe that matches changeable 4-tuple source and destination IPv4 and port addresses, while the forwarding component is RSS to queues (this pipe is called RSS_TCP_IP and it is the root pipe on ingress domain).

        4. Adding one entry to the RSS_TCP_IP pipe, that matches a packet with a specific source and destination port and IPv4 addresses.

        5. On the egress domain, creating the loopback pipe, which is root, and matching TCP over IPv4 with changeable 4-tuple source and destination port and IPv4 addresses, while encapsulating the matched packets with VXLAN tunneling and setting the destination and source MAC addresses to be changeable per entry.

        6. Adding one entry to the loopback pipe with specific values for the match and actions part while setting the destination MAC address to the port to which to inject the packet (in this case, it is the ingress port where the packet arrived).

        7. Starting to receive packets loop and printing the metadata

          • For packets that were re-injected, metadata equaling 10 is printed

          • Otherwise, 0 is be printed as metadata (indicating that it is the first time the packet has been encountered)

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_loopback/flow_loopback_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_loopback/flow_loopback_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_loopback/meson.build

      Flow LPM

      This sample illustrates how to use LPM (Longest Prefix Match) pipe

      The sample logic includes:

      1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

      2. Starting two DOCA Flow ports.

      3. On each port:

        1. Building an LPM pipe that matches changeable source IPv4 address.

        2. Adding two example 5-tuple entries:

          1. The first entry with full mask and forward port action

          2. The second entry with 16-bit mask and drop action

        3. Building a control pipe with one entry that forwards IPv4 traffic to the LPM pipe.

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_lpm/flow_lpm_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_lpm/flow_lpm_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_lpm/meson.build

      Flow Modify Header

      This sample illustrates how to use DOCA Flow actions to decrease TTL by 1 and modify the destination MAC address.

      The sample logic includes:

      1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

      2. Starting two DOCA Flow ports.

      3. On each port:

        1. Building a pipe with action dec_ttl=true and changeable mod_dst_mac. The pipe matches IPv4 traffic with a changeable destination IP and forwards the matched packets to the second port.

        2. Adding an entry with an example destination IP and mod_dst_mac value.

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_modify_header/flow_modify_header_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_modify_header/flow_modify_header_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_modify_header/meson.build

      Flow Monitor Meter

      This sample illustrates how to use DOCA Flow monitor meter.

      The sample logic includes:

      1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

      2. Starting two DOCA Flow ports.

      3. On each port:

        1. Building a pipe with monitor meter flag and changeable 5-tuple match. The pipe forwards the matched packets to the second port.

        2. Adding an entry with an example CIR and CBS values.

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_monitor_meter/flow_monitor_meter_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_monitor_meter/flow_monitor_meter_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_monitor_meter/meson.build

      Flow Multi-actions

      This sample shows how to use a DOCA Flow array of actions in a pipe.

      The sample logic includes:

      1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

      2. Starting two DOCA Flow ports.

      3. On each port:

        1. Building a pipe with changeable source IP match which forwards the matched packets to the second port and sets different actions in the actions array:

          • Changeable modify source MAC address

          • Changeable modify source IP address

        2. Adding two entries to the pipe with different source IP match:

          1. The first entry with an example modify source MAC address.

          2. The second with a modify source IP address.

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_multi_actions/flow_multi_actions_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_multi_actions/flow_multi_actions_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_multi_actions/meson.build

      Flow Multi-fwd

      This sample shows how to use a different forward in pipe entries.

      The sample logic includes:

      1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

      2. Starting two DOCA Flow ports.

      3. On each port:

        1. Building a pipe with changeable source IP match and sending NULL in the forward.

        2. Adding two entries to the pipe with different source IP match, and different forward:

          • The first entry with forward to the second port

          • The second with drop

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_multi_fwd/flow_multi_fwd_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_multi_fwd/flow_multi_fwd_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_multi_fwd/meson.build

      Flow Ordered List

      This sample shows how to use a DOCA Flow ordered list pipe.

      The sample logic includes:

      1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

      2. Starting two DOCA Flow ports.

      3. On each port:

        1. Building a root pipe with changeable 5-tuple match and forwarding to an ordered list pipe with a changeable index.

        2. Adding two entries to the pipe with an example value sent to a different index in the ordered list pipe.

        3. Building ordered list pipe with two lists, one for each entry:

          • First list uses meter and then shared counter

          • Second list uses shared counter and then meter

      4. Waiting 5 seconds and querying the entries (total bytes and total packets).

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_ordered_list/flow_ordered_list_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_ordered_list/flow_ordered_list_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_ordered_list/meson.build

      Flow Parser Meta

      This sample shows how to use some of match.parser_meta fields from 3 families:

      • IP fragmentation – matching on whether a packet is IP fragmented

      • Integrity bits – matching on whether a specific protocol is OK (length, checksum etc.)

      • Packet types – matching on a specific layer packet type

      The sample logic includes:

      1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

      2. Starting two DOCA Flow ports.

      3. On each port:

        1. Building a root pipe with outer IP fragmentation match:

          • If a packet is IP fragmented – forward it to the second port regardless of next pipes in the pipeline

          • If a packet is not IP fragmented – proceed with the the pipeline by forwarding it to integrity pipe

        2. Building an "integrity" pipe with a single entry which continues to the next pipe when:

          • The outer IPv4 checksum is OK

          • The inner L3 is OK (incorrect length should be dropped)

        3. Building a "packet type" pipe which forwards packets to the second port when:

          • The outer L3 type is IPv4

          • The inner L4 type is either TCP or UDP

      4. Waiting 5 seconds for traffic to arrive.

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_parser_meta/flow_parser_meta_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_parser_meta/flow_parser_meta_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_parser_meta/meson.build

      Flow Random

      This sample shows how to use match.parser_meta.random field for 2 different use-cases:

      • Sampling – sampling certain percentage of traffic regardless of flow content

      • Distribution – distributing traffic in 8 different queues

      The sample logic includes:

      1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

      2. Starting two DOCA Flow ports.

      3. On each port:

        1. Building a root pipe with changeable 5-tuple match and forwarding to specific use-case pipe according to changeable source IP address.

        2. Adding two entries to the pipe with different source IP match, and different forward:

          • The first entry with forward to the sampling pipe.

          • The second entry with forward to the distribution pipe.

        3. Building a "sampling" pipe with a single entry and preparing the entry to sample 12.5% of traffic.

        4. Building a "distribution" hash pipe with 8 entries and preparing the entries to get 12.5% of traffic for each queue.

      4. Waiting 15 seconds and querying the entries (total packets after sampling/distribution related to total packets before).

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_random/flow_random_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_random/flow_random_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_random/meson.build

      Flow RSS Meta

      This sample shows how to use DOCA Flow forward RSS, set meta action, and then retrieve the matched packets in the sample.

      The sample logic includes:

      1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

      2. Starting two DOCA Flow ports.

      3. On each port:

        1. Building a pipe with a changeable 5-tuple match, forwarding to RSS queue with index 0, and setting changeable packet meta data.

        2. Adding an entry with an example 5-tuple and metadata value to the pipe.

      4. Retrieving the packets on both ports from a receive queue , and printing the packet metadata value.

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_rss_meta/flow_rss_meta_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_rss_meta/flow_rss_meta_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_rss_meta/meson.build

      Flow Sampling

      This sample shows how to sample certain percentage of traffic regardless of flow content using doca_flow_match_condition structure with parser_meta.random.value field string.

      The sample logic includes:

      1. Initializing DOCA Flow by indicating mode_args="switch,hws" in the doca_flow_cfg struct.

      2. Starting DOCA Flow ports: Physical port and two SF representors.

      3. On switch port:

        1. Building a root pipe with changeable 5-tuple match and forwarding to sampling pipe.

        2. Adding entry with an example 5-tuple to the pipe.

        3. Building a "sampling" control pipe with a single entry.

        4. calculating the requested random value for getting 35% of traffic.

        5. Adding entry with an example condition random value to the pipe.

      4. Waiting 15 seconds and querying the entries (total packets after sampling related to total packets before).

      Reference:

      • /opt/mellanox/doca/samples/doca_flow/flow_sampling/flow_sampling_sample.c

      • /opt/mellanox/doca/samples/doca_flow/flow_sampling/flow_sampling_main.c

      • /opt/mellanox/doca/samples/doca_flow/flow_sampling/meson.build

      Flow Set Meta

      This sample shows how to use the DOCA Flow set metadata action and then match on it.

      The sample logic includes:

      1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

      2. Starting two DOCA Flow ports.

      3. On each port:

        1. Building a pipe with a changeable match on metadata and forwarding the matched packets to the second port.

        2. Adding an entry that matches an example metadata value.

        3. Building a pipe with changeable 5-tuple match, changeable metadata action, and fwd to the first pipe.

        4. Adding entry with an example 5-tuple and metadata value to the pipe.

        Reference:

        • /opt/mellanox/doca/samples/doca_flow/flow_set_meta/flow_set_meta_sample.c

        • /opt/mellanox/doca/samples/doca_flow/flow_set_meta/flow_set_meta_main.c

        • /opt/mellanox/doca/samples/doca_flow/flow_set_meta/meson.build

        Flow Shared Counter

        This sample shows how to use the DOCA Flow shared counter and query it to get the counter statistics.

        The sample logic includes:

        1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

        2. Starting two DOCA Flow ports.

        3. On each port:

          1. Binding the shared counter to the port.

          2. Building a pipe with changeable 5-tuple match with UDP protocol, changeable shared counter ID and forwarding the matched packets to the second port.

          3. Adding an entry with an example 5-tuple match and shared counter with ID=port_id.

          4. Building a pipe with changeable 5-tuple match with TCP protocol, changeable shared counter ID and forwarding the matched packets to the second port.

          5. Adding an entry with an example 5-tuple match and shared counter with ID=port_id.

          6. Building a control pipe with the following entries:

            • If L4 type is UDP, forwards the packets to the UDP pipe

            • If L4 type is TCP, forwards the packets to the TCP pipe

        4. Waiting 5 seconds and querying the shared counters (total bytes and total packets).

        Reference:

        • /opt/mellanox/doca/samples/doca_flow/flow_shared_counter/flow_shared_counter_sample.c

        • /opt/mellanox/doca/samples/doca_flow/flow_shared_counter/flow_shared_counter_main.c

        • /opt/mellanox/doca/samples/doca_flow/flow_shared_counter/meson.build

        Flow Shared Meter

        This sample shows how to use the DOCA Flow shared meter.

        The sample logic includes:

        1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

        2. Starting two DOCA Flow ports.

        3. On each port:

          1. Config a shared meter with specific cir and cbs values.

          2. Binding the shared meter to the port.

          3. Building a pipe with a changeable 5-tuple match with UDP protocol, changeable shared meter ID and forwarding the matched packets to the second port.

          4. Adding an entry with an example 5-tuple match and shared meter with ID=port_id.

          5. Building a pipe with a changeable 5-tuple match with TCP protocol, changeable shared meter ID and forwarding the matched packets to the second port.

          6. Adding an entry with an example 5-tuple match and shared meter with ID=port_id.

          7. Building a control pipe with the following entries:

            • If L4 type is UDP, forwards the packets to the UDP pipe

            • If L4 type is TCP, forwards the packets to the TCP pipe

        Reference:

        • /opt/mellanox/doca/samples/doca_flow/flow_shared_meter/flow_shared_meter_sample.c

        • /opt/mellanox/doca/samples/doca_flow/flow_shared_meter/flow_shared_meter_main.c

        • /opt/mellanox/doca/samples/doca_flow/flow_shared_meter/meson.build

        Flow Switch Control Pipe

        This sample shows how to use the DOCA Flow control pipe in switch mode.

        The sample logic includes:

        1. Initializing DOCA Flow by indicating mode_args="switch,hws" in the doca_flow_cfg struct.

        2. Starting two DOCA Flow ports.

        3. On each port:

          1. Building control pipe with match on VNI field.

          2. Adding two entries to the control pipe, both matching TRANSPORT (UDP or TCP proto) over IPv4 with source port 80 and forwarding to the other port, where the first entry matches destination port 1234 and the second 12345.

          3. Both entries have counters, so that after the successful insertions of both entries, the sample queries those counters to check the number of matched packets per entry.

        Reference:

        • /opt/mellanox/doca/samples/doca_flow/flow_switch_control_pipe/flow_switch_control_pipe_sample.c

        • /opt/mellanox/doca/samples/doca_flow/flow_switch_control_pipe/flow_switch_control_pipe_main.c

        • /opt/mellanox/doca/samples/doca_flow/flow_switch_control_pipe/meson.build

        Flow Switch – Multiple Switches

        This sample illustrates how to use two switches working concurrently on two different physical functions.

        It shows how to build a basic pipe in a switch and hardware steering (HWS) mode. Each pipe contains two entries, each of which forwards matched packets to two different representors.

        The sample also demonstrates how to obtain the switch port of a given port using doca_flow_port_switch_get().

        Warning

        The test requires two PFs with two (either VF or SF) representors on each.

        The sample logic includes:

        1. Initializing DOCA Flow by indicating mode_args="switch,hws" in the doca_flow_cfg struct.

        2. Starting DOCA Flow ports: Two physical ports and two representors each (totaling six ports).

        3. On the switch port:

          1. Building a basic pipe while indicating which fields to match on using struct doca_flow_match match.

          2. Adding two entries to the created pipe, each of which forwards packets to a different port representor.

        Reference:

        • /opt/mellanox/doca/samples/doca_flow/flow_switch/flow_switch_sample.c

        • /opt/mellanox/doca/samples/doca_flow/flow_switch/flow_switch_main.c

        • /opt/mellanox/doca/samples/doca_flow/flow_switch/meson.build

        Flow Switch – Single Switch

        This sample is identical to the previous sample, before the flow switch sample was extended to take advantage of the capabilities of DOCA to support multiple switches concurrently, each based on a different physical device.

        The reason we add this original version is that it removes the constraints imposed by the modified flow switch version, allowing to use arbitrary number of representors in the switch configuration.

        The logic of this sample is identical to that of the previous sample.

        Reference:

        • /opt/mellanox/doca/samples/doca_flow/flow_switch_single/flow_switch_single_sample.c

        • /opt/mellanox/doca/samples/doca_flow/flow_switch_single/flow_switch_single_main.c

        • /opt/mellanox/doca/samples/doca_flow/flow_switch_single/meson.build

        Flow Switch (Direction Info)

        This sample illustrates how to give a hint to the driver for potential optimizations based on the direction information.

        Note

        This sample requires a single PF with two representors (either VF or SF).

        The sample also demonstrates usage of the match.parser_meta.port_meta to detect by the switch pipe the source from where the packet has arrived.

        The sample logic includes:

        1. Initializing DOCA Flow by indicating mode_args="switch,hws" in the doca_flow_cfg struct.

        2. Starting 3 DOCA Flow ports, 1 physical port and 2 representors.

        3. On the switch port:

          1. Network-to-host pipe:

            1. Building basic pipe with a changeable ipv4.next_proto field and configuring the pipe with the hint of direction by setting attr.dir_info = DOCA_FLOW_DIRECTION_NETWORK_TO_HOST.

            2. Adding two entries:

              • If ipv4.next_proto is TCP, the packet is forwarded to the first representor, to the host.

              • If ipv4.next_proto is UDP, the packet is forwarder to the second representor, to the host.

          2. Host-to-network pipe:

            1. Building a basic pipe with a match on aa:aa:aa:aa:aa:aa as a source MAC address and configuring a pipe with the hint of direction by setting attr.dir_info = DOCA_FLOW_DIRECTION_HOST_TO_NETWORK.

            2. Adding an entry. If the source MAC is matched, forward the packet to the physical port (i.e., to the network).

          3. Switch pipe:

            1. Building a basic pipe with a changeable parser_meta.port_meta to detect where the packet has arrived from.

            2. Adding 3 entries:

              • If the packet arrived from port 0 (i.e., the network), forward it to the network-to-host pipe to decide for further logic

              • If the packet arrived from port 1 (i.e., the host's first representor), forward it to the host-to-network pipe to decide for further logic

              • If the packet arrived from port 2, (i.e., the host's second representor), forward it to the host-to-network pipe to decide for further logic

        Reference:

        • /opt/mellanox/doca/samples/doca_flow/flow_switch_direction_info/flow_switch_direction_info_sample.c

        • /opt/mellanox/doca/samples/doca_flow/flow_switch_direction_info/flow_switch_direction_info_main.c

        • /opt/mellanox/doca/samples/doca_flow/flow_switch_direction_info/meson.build

        Flow VXLAN Encap

        This sample shows how to use DOCA Flow actions to create a VXLAN tunnel as well as illustrating the usage of matching TCP and UDP packets in the same pipe.

        The sample logic includes:

        1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

        2. Starting two DOCA Flow ports.

        3. On each port:

          1. Building a pipe with changeable 5-tuple match, encap action, and forward port action.

          2. Adding example 5-tuple and encapsulation values entry to the pipe. Every TCP or UDP over IPv4 packet with the same 5-tuple is matched and encapsulated.

        Reference:

        • /opt/mellanox/doca/samples/doca_flow/flow_vxlan_encap/flow_vxlan_encap_sample.c

        • /opt/mellanox/doca/samples/doca_flow/flow_vxlan_encap/flow_vxlan_encap_main.c

        • /opt/mellanox/doca/samples/doca_flow/flow_vxlan_encap/meson.build

        Flow gRPC Counter

        This sample shows how to use DOCA Flow gRPC library to create a pipe and entry with a counter and to query the entry stats.

        The sample logic includes:

        1. Creating gRPC environment.

        2. Initializing DOCA Flow.

        3. Starting two DOCA Flow ports.

        4. On each port:

          1. Building a pipe with changeable 5-tuple match.

          2. Adding example 5-tuple and monitoring with counter flag.

          3. Waiting 5 seconds and querying the entries (total bytes and total packets).

        References:

        • /opt/mellanox/doca/samples/doca_flow/grpc_flow_counter/grpc_flow_counter_sample.c

        • /opt/mellanox/doca/samples/doca_flow/grpc_flow_counter/grpc_flow_counter_main.c

        • /opt/mellanox/doca/samples/doca_flow/grpc_flow_counter/meson.build

        Flow Shared Mirror

        This sample shows how to use the DOCA Flow shared mirror.

        The sample logic includes:

        1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

        2. Starting two DOCA Flow ports.

        3. On each port:

          1. Configuring a shared mirror with a clone destination hairpin to the second port.

          2. Binding the shared mirror to the port.

          3. Building a pipe with a changeable 5-tuple match with UDP protocol, changeable shared mirror ID, and forwarding the matched packets to the second port.

          4. Adding an entry with an example 5-tuple match and shared mirror with ID=port_id+1.

          5. Building a pipe with a changeable 5-tuple match with TCP protocol, changeable shared mirror ID, and forwarding the matched packets to the second port.

          6. Adding an entry with an example 5-tuple match and shared mirror with ID=port_id+1.

          7. Building a control pipe with the following entries:

            • If L4 type is UDP, forwards the packets to the UDP pipe

            • If L4 type is TCP, forwards the packets to the TCP pipe

          8. Waiting 15 seconds to clone any incoming traffic. Should see the same two packets received on the second port (one from the clone and another from the original).

        Reference:

        • /opt/mellanox/doca/samples/doca_flow/flow_shared_mirror/flow_shared_mirror_sample.c

        • /opt/mellanox/doca/samples/doca_flow/flow_shared_mirror/flow_shared_mirror_main.c

        • /opt/mellanox/doca/samples/doca_flow/flow_shared_mirror/meson.build

        Flow Match Comparison

        This sample shows how to use the DOCA Flow match with a comparison result.

        The sample logic includes:

        1. Initializing DOCA Flow by indicating mode_args="vnf,hws" in the doca_flow_cfg struct.

        2. Starting two DOCA Flow ports.

        3. On each port:

          1. Building a pipe with a changeable match on meta_data[0] and forwarding the matched packets to the second port.

          2. Adding an entry that matches on meta_data[0] equal with TCP header length.

          3. Building a control pipe for comparison purpose.

          4. Adding an entry to the control pipe match with comparison result the meta_data[0] value greater than meta_data[1] and forwarding the matched packets to match with the meta pipe.

          5. Building a pipe with a changeable 5-tuple match, copying ipv4.total_len to meta_data[1], and accumulating ipv4.version_ihl << 2 tcp.data_offset << 2 to meta_data[1], then forwarding to the second pipe.

          6. Adding an example 5-tuple entry to the pipe.

        Reference:

        • /opt/mellanox/doca/samples/doca_flow/flow_match_comparison/flow_match_comparison_sample.c

        • /opt/mellanox/doca/samples/doca_flow/flow_match_comparison/flow_match_comparison_main.c

        • /opt/mellanox/doca/samples/doca_flow/flow_match_comparison/meson.build

        Flow Pipe Resize

        This sample shows how the DOCA Flow pipe resize feature behaves as pipe size increases.

        The sample logic includes:

        1. Initializing DOCA Flow by indicating mode_args="switch,hws,cpds" in the doca_flow_cfg struct.

          Note

          By default, a control pipe's internal tables have a default size of 64 entries. Using the CPDS (control pipe dynamic size) mode, each table's initial size matches the control pipe size.

        2. Starting a PF port with two representors of subfunction (SF) or virtual functions (VF). For example:

          Copy
          Copied!
                      

          ./doca_flow_pipe_resize -a 03:00.0,representor=sf[0-1],dv_flow_en=2 -- -l 60

        3. Starting with a control pipe of a max size of 10 entries then adding 80 entries. Instead of failing on adding the 11th entry, the pipe continues increasing in the following manner:

          1. Receiving a CONGESTION_REACHED callback whenever the number of current entries exceeds a threshold level of 80%.

          2. Calling doca_flow_pipe_resize() with threshold percentage of 50%. Roughly, the new size is calculated as: (current entries) / (50%) rounded up to the nearest power of 2. A callback can indicate the exact number of entries.

          3. Receiving a callback on the exact new calculated size of the pipe:

            Copy
            Copied!
                        

            typedef doca_error_t (*doca_flow_pipe_resize_nr_entries_changed_cb)(void *pipe_user_ctx, uint32_t nr_entries);

          4. Start calling doca_flow_entries_process() in a loop on each thread ID to trigger the entry relocations.

            Note

            The loop should continue as long as the resize process was not ended.

          5. Receiving a callback on each entry relocated to the new resized pipe:

            Copy
            Copied!
                        

            typedef doca_error_t (*doca_flow_pipe_resize_entry_relocate_cb)(void *pipe_user_ctx, uint16_t pipe_queue, void *entry_user_ctx, void **new_entry_user_ctx)

          6. Receiving a PIPE_RESIZED callback upon completion of the resize process. At this point, calling doca_flow_entries_process() should stop.

            Note

            The resize cycles described above repeats five times increasing the pipe sizes in these steps: 10 -> 16 -> 32 -> 64 -> 128.

            Note

            The pipe control entries define a match on increasing destination IP address. The fwd action send packet to the other port.

          7. Waiting 5 seconds to send any traffic that matches the flows and seeing them on the other port.

        Reference:

        • /opt/mellanox/doca/samples/doca_flow/flow_pipe_resize/flow_pipe_resize_sample.c

        • /opt/mellanox/doca/samples/doca_flow/flow_pipe_resize/flow_pipe_resize_main.c

        • /opt/mellanox/doca/samples/doca_flow/flow_pipe_resize/meson.build

        Flow Entropy

        This sample shows how to use the DOCA Flow entropy calculation.

        The sample logic includes:

        1. Initializing DOCA Flow by indicating mode_args="switch,hws" in the doca_flow_cfg struct.

        2. Starting one DOCA Flow port.

        3. Configuring the doca_flow_entropy_format structure with 5-tuple values.

        4. Calling to doca_flow_port_calc_entropy to get the calculated entropy.

        5. Logging the calculated entropy.

        Reference:

        • /opt/mellanox/doca/samples/doca_flow/flow_entropy/flow_entropy_sample.c

        • /opt/mellanox/doca/samples/doca_flow/flow_entropy/flow_entropy_main.c

        • /opt/mellanox/doca/samples/doca_flow/flow_entropy/meson.build

        Supported Field String

        String Field

        Path in Match Structure

        Set

        Add

        Dst Copy

        Src Copy

        meta.data

        meta.pkt_meta

        meta.u32[i]

        meta.mark

        meta.mark

        meta.flags

        flags

        parser_meta.hash.result

        None. See section "Copy Hash Result" for details.

        parser_meta.port.id

        parser_meta.port_meta

        parser_meta.ipsec.syndrome

        parser_meta.ipsec_syndrome

        parser_meta.random.value

        parser_meta.random

        parser_meta.meter.color

        parser_meta.meter_color

        parser_meta.packet_type.l2_outer

        parser_meta.outer_l2_type

        parser_meta.packet_type.l3_outer

        parser_meta.outer_l3_type

        parser_meta.packet_type.l4_outer

        parser_meta.outer_l4_type

        parser_meta.packet_type.l2_inner

        parser_meta.inner_l2_type

        parser_meta.packet_type.l3_inner

        parser_meta.inner_l3_type

        parser_meta.packet_type.l4_inner

        parser_meta.inner_l4_type

        parser_meta.outer_ip_fragmented.flag

        parser_meta.outer_ip_fragmented

        parser_meta.inner_ip_fragmented.flag

        parser_meta.inner_ip_fragmented

        parser_meta.outer_integrity.l3_ok

        parser_meta.outer_l3_ok

        parser_meta.outer_integrity.ipv4_checksum_ok

        parser_meta.outer_ip4_checksum_ok

        parser_meta.outer_integrity.l4_ok

        parser_meta.outer_l4_ok

        parser_meta.inner_integrity.l3_ok

        parser_meta.inner_l3_ok

        parser_meta.inner_integrity.ipv4_checksum_ok

        parser_meta.inner_ip4_checksum_ok

        parser_meta.inner_integrity.l4_ok

        parser_meta.inner_l4_ok

        outer.eth.dst_mac

        outer.eth.dst_mac

        outer.eth.src_mac

        outer.eth.src_mac

        outer.eth.type

        outer.eth.type

        outer.eth_vlan0.tci

        outer.eth_vlan[0].tci

        outer.eth_vlan1.tci

        outer.eth_vlan[1].tci

        outer.ipv4.src_ip

        outer.ip4.src_ip

        outer.ipv4.dst_ip

        outer.ip4.dst_ip

        outer.ipv4.dscp_ecn

        outer.ip4.dscp_ecn

        outer.ipv4.next_proto

        outer.ip4.next_proto

        outer.ipv4.ttl

        outer.ip4.ttl

        outer.ipv4.version_ihl

        outer.ip4.version_ihl

        outer.ipv4.total_len

        outer.ip4.total_len

        outer.ipv6.src_ip

        outer.ip6.src_ip

        outer.ipv6.dst_ip

        outer.ip6.dst_ip

        outer.ipv6.dscp_ecn

        outer.ip6.dscp_ecn

        outer.ipv6.next_proto

        outer.ip6.next_proto

        outer.ipv6.hop_limit

        outer.ip6.hop_limit

        outer.ipv6.payload_len

        outer.ip6.payload_len

        outer.udp.src_port

        outer.udp.l4_port.src_port

        outer.udp.dst_port

        outer.udp.l4_port.dst_port

        outer.transport.src_port

        outer.transport.src_port

        outer.transport.dst_port

        outer.transport.dst_port

        outer.tcp.src_port

        outer.tcp.l4_port.src_port

        outer.tcp.dst_port

        outer.tcp.l4_port.dst_port

        outer.tcp.flags

        outer.tcp.flags

        outer.tcp.data_offset

        outer.tcp.data_offset

        outer.icmp4.type

        outer.icmp.type

        outer.icmp4.code

        outer.icmp.code

        outer.icmp4.ident

        outer.icmp.ident

        outer.icmp6.type

        outer.icmp.type

        outer.icmp6.code

        outer.icmp.code

        tunnel.gre.protocol

        tun.protocol

        tunnel.gre_key.value

        tun.gre_key

        tunnel.vxlan.vni

        tun.vxlan_tun_id

        tunnel.gtp.teid

        tun.gtp_teid

        tunnel.esp.spi

        tun.esp_spi

        tunnel.esp.sn

        tun.esp_sn

        tunnel.mpls[0].label

        tun.mpls[0].label

        tunnel.mpls[1].label

        tun.mpls[1].label

        tunnel.mpls[2].label

        tun.mpls[2].label

        tunnel.mpls[3].label

        tun.mpls[3].label

        tunnel.mpls[4].label

        tun.mpls[4].label

        tunnel.geneve.ver_opt_len

        tun.geneve.ver_opt_len

        tunnel.geneve.o_c

        tun.geneve.o_c

        tunnel.geneve.next_proto

        tun.geneve.next_proto

        tunnel.geneve.vni

        tun.geneve.vni

        tunnel.geneve_opt[i].type

        None. See section "Copy Geneve Options" for details.

        tunnel.geneve_opt[i].class

        tunnel.geneve_opt[i].data

        inner.eth.dst_mac

        inner.eth.dst_mac

        inner.eth.src_mac

        inner.eth.src_mac

        inner.eth.type

        inner.eth.type

        inner.eth_vlan0.tci

        inner.eth_vlan[0].tci

        inner.eth_vlan1.tci

        inner.eth_vlan[1].tci

        inner.ipv4.src_ip

        inner.ip4.src_ip

        inner.ipv4.dst_ip

        inner.ip4.dst_ip

        inner.ipv4.dscp_ecn

        inner.ip4.dscp_ecn

        inner.ipv4.next_proto

        inner.ip4.next_proto

        inner.ipv4.ttl

        inner.ip4.ttl

        inner.ipv4.version_ihl

        inner.ip4.version_ihl

        inner.ipv4.total_len

        inner.ip4.total_len

        inner.ipv6.src_ip

        inner.ip6.src_ip

        inner.ipv6.dst_ip

        inner.ip6.dst_ip

        inner.ipv6.dscp_ecn

        inner.ip6.dscp_ecn

        inner.ipv6.next_proto

        inner.ip6.next_proto

        inner.ipv6.hop_limit

        inner.ip6.hop_limit

        inner.ipv6.payload_len

        inner.ip6.payload_len

        inner.udp.src_port

        inner.udp.l4_port.src_port

        inner.udp.dst_port

        inner.udp.l4_port.dst_port

        inner.transport.src_port

        inner.transport.src_port

        inner.transport.dst_port

        inner.transport.dst_port

        inner.tcp.src_port

        inner.tcp.l4_port.src_port

        inner.tcp.dst_port

        inner.tcp.l4_port.dst_port

        inner.tcp.flags

        inner.tcp.flags

        inner.tcp.data_offset

        inner.tcp.data_offset

        inner.icmp4.type

        inner.icmp.type

        inner.icmp4.code

        inner.icmp.code

        inner.icmp4.ident

        inner.icmp.ident

        inner.icmp6.type

        inner.icmp.type

        inner.icmp6.code

        inner.icmp.code


        Supported Non-field String

        Users can modify fields which are not included in doca_flow_match structure.

        Copy Hash Result

        Users can copy the the matcher hash calculation into other fields using the "parser_meta.hash" string.

        Copy GENEVE Options

        User can copy GENEVE option type/class/data using the following strings:

        • "tunnel.geneve_opt[i].type" – Copy from/to option type (only for option configured with DOCA_FLOW_PARSER_GENEVE_OPT_MODE_MATCHABLE).

        • "tunnel.geneve_opt[i].class" – Copy from/to option class (only for option configured with DOCA_FLOW_PARSER_GENEVE_OPT_MODE_MATCHABLE).

        • "tunnel.geneve_opt[i].data" – Copy from/to option data, the bit offset is from the start of the data.

        i is the index of the option in tlv_list array provided in doca_flow_parser_geneve_opt_create.

        © Copyright 2023, NVIDIA. Last updated on Feb 9, 2024.