1 .. SPDX-License-Identifier: BSD-3-Clause
2 Copyright 2016 6WIND S.A.
3 Copyright 2016 Mellanox Technologies, Ltd
5 Generic flow API (rte_flow)
6 ===========================
11 This API provides a generic means to configure hardware to match specific
12 ingress or egress traffic, alter its fate and query related counters
13 according to any number of user-defined rules.
15 It is named *rte_flow* after the prefix used for all its symbols, and is
16 defined in ``rte_flow.h``.
18 - Matching can be performed on packet data (protocol headers, payload) and
19 properties (e.g. associated physical port, virtual device function ID).
21 - Possible operations include dropping traffic, diverting it to specific
22 queues, to virtual/physical device functions or ports, performing tunnel
23 offloads, adding marks and so on.
25 It is slightly higher-level than the legacy filtering framework which it
26 encompasses and supersedes (including all functions and filter types) in
27 order to expose a single interface with an unambiguous behavior that is
28 common to all poll-mode drivers (PMDs).
36 A flow rule is the combination of attributes with a matching pattern and a
37 list of actions. Flow rules form the basis of this API.
39 Flow rules can have several distinct actions (such as counting,
40 encapsulating, decapsulating before redirecting packets to a particular
41 queue, etc.), instead of relying on several rules to achieve this and having
42 applications deal with hardware implementation details regarding their
45 Support for different priority levels on a rule basis is provided, for
46 example in order to force a more specific rule to come before a more generic
47 one for packets matched by both. However hardware support for more than a
48 single priority level cannot be guaranteed. When supported, the number of
49 available priority levels is usually low, which is why they can also be
50 implemented in software by PMDs (e.g. missing priority levels may be
51 emulated by reordering rules).
53 In order to remain as hardware-agnostic as possible, by default all rules
54 are considered to have the same priority, which means that the order between
55 overlapping rules (when a packet is matched by several filters) is
58 PMDs may refuse to create overlapping rules at a given priority level when
59 they can be detected (e.g. if a pattern matches an existing filter).
61 Thus predictable results for a given priority level can only be achieved
62 with non-overlapping rules, using perfect matching on all protocol layers.
64 Flow rules can also be grouped, the flow rule priority is specific to the
65 group they belong to. All flow rules in a given group are thus processed within
66 the context of that group. Groups are not linked by default, so the logical
67 hierarchy of groups must be explicitly defined by flow rules themselves in each
68 group using the JUMP action to define the next group to redirect too. Only flow
69 rules defined in the default group 0 are guarantee to be matched against, this
70 makes group 0 the origin of any group hierarchy defined by an application.
72 Support for multiple actions per rule may be implemented internally on top
73 of non-default hardware priorities, as a result both features may not be
74 simultaneously available to applications.
76 Considering that allowed pattern/actions combinations cannot be known in
77 advance and would result in an impractically large number of capabilities to
78 expose, a method is provided to validate a given rule from the current
79 device configuration state.
81 This enables applications to check if the rule types they need is supported
82 at initialization time, before starting their data path. This method can be
83 used anytime, its only requirement being that the resources needed by a rule
84 should exist (e.g. a target RX queue should be configured first).
86 Each defined rule is associated with an opaque handle managed by the PMD,
87 applications are responsible for keeping it. These can be used for queries
88 and rules management, such as retrieving counters or other data and
91 To avoid resource leaks on the PMD side, handles must be explicitly
92 destroyed by the application before releasing associated resources such as
95 The following sections cover:
97 - **Attributes** (represented by ``struct rte_flow_attr``): properties of a
98 flow rule such as its direction (ingress or egress) and priority.
100 - **Pattern item** (represented by ``struct rte_flow_item``): part of a
101 matching pattern that either matches specific packet data or traffic
102 properties. It can also describe properties of the pattern itself, such as
105 - **Matching pattern**: traffic properties to look for, a combination of any
108 - **Actions** (represented by ``struct rte_flow_action``): operations to
109 perform whenever a packet is matched by a pattern.
117 Flow rules can be grouped by assigning them a common group number. Groups
118 allow a logical hierarchy of flow rule groups (tables) to be defined. These
119 groups can be supported virtually in the PMD or in the physical device.
120 Group 0 is the default group and this is the only group which flows are
121 guarantee to matched against, all subsequent groups can only be reached by
122 way of the JUMP action from a matched flow rule.
124 Although optional, applications are encouraged to group similar rules as
125 much as possible to fully take advantage of hardware capabilities
126 (e.g. optimized matching) and work around limitations (e.g. a single pattern
127 type possibly allowed in a given group), while being aware that the groups
128 hierarchies must be programmed explicitly.
130 Note that support for more than a single group is not guaranteed.
135 A priority level can be assigned to a flow rule, lower values
136 denote higher priority, with 0 as the maximum.
138 Priority levels are arbitrary and up to the application, they do
139 not need to be contiguous nor start from 0, however the maximum number
140 varies between devices and may be affected by existing flow rules.
142 A flow which matches multiple rules in the same group will always matched by
143 the rule with the highest priority in that group.
145 If a packet is matched by several rules of a given group for a given
146 priority level, the outcome is undefined. It can take any path, may be
147 duplicated or even cause unrecoverable errors.
149 Note that support for more than a single priority level is not guaranteed.
151 Attribute: Traffic direction
152 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
154 Flow rule patterns apply to inbound and/or outbound traffic.
156 In the context of this API, **ingress** and **egress** respectively stand
157 for **inbound** and **outbound** based on the standpoint of the application
158 creating a flow rule.
160 There are no exceptions to this definition.
162 Several pattern items and actions are valid and can be used in both
163 directions. At least one direction must be specified.
165 Specifying both directions at once for a given rule is not recommended but
166 may be valid in a few cases (e.g. shared counters).
171 Instead of simply matching the properties of traffic as it would appear on a
172 given DPDK port ID, enabling this attribute transfers a flow rule to the
173 lowest possible level of any device endpoints found in the pattern.
175 When supported, this effectively enables an application to reroute traffic
176 not necessarily intended for it (e.g. coming from or addressed to different
177 physical ports, VFs or applications) at the device level.
179 It complements the behavior of some pattern items such as `Item: PHY_PORT`_
180 and is meaningless without them.
182 When transferring flow rules, **ingress** and **egress** attributes
183 (`Attribute: Traffic direction`_) keep their original meaning, as if
184 processing traffic emitted or received by the application.
189 Pattern items fall in two categories:
191 - Matching protocol headers and packet data, usually associated with a
192 specification structure. These must be stacked in the same order as the
193 protocol layers to match inside packets, starting from the lowest.
195 - Matching meta-data or affecting pattern processing, often without a
196 specification structure. Since they do not match packet contents, their
197 position in the list is usually not relevant.
199 Item specification structures are used to match specific values among
200 protocol fields (or item properties). Documentation describes for each item
201 whether they are associated with one and their type name if so.
203 Up to three structures of the same type can be set for a given item:
205 - ``spec``: values to match (e.g. a given IPv4 address).
207 - ``last``: upper bound for an inclusive range with corresponding fields in
210 - ``mask``: bit-mask applied to both ``spec`` and ``last`` whose purpose is
211 to distinguish the values to take into account and/or partially mask them
212 out (e.g. in order to match an IPv4 address prefix).
214 Usage restrictions and expected behavior:
216 - Setting either ``mask`` or ``last`` without ``spec`` is an error.
218 - Field values in ``last`` which are either 0 or equal to the corresponding
219 values in ``spec`` are ignored; they do not generate a range. Nonzero
220 values lower than those in ``spec`` are not supported.
222 - Setting ``spec`` and optionally ``last`` without ``mask`` causes the PMD
223 to use the default mask defined for that item (defined as
224 ``rte_flow_item_{name}_mask`` constants).
226 - Not setting any of them (assuming item type allows it) is equivalent to
227 providing an empty (zeroed) ``mask`` for broad (nonspecific) matching.
229 - ``mask`` is a simple bit-mask applied before interpreting the contents of
230 ``spec`` and ``last``, which may yield unexpected results if not used
231 carefully. For example, if for an IPv4 address field, ``spec`` provides
232 *10.1.2.3*, ``last`` provides *10.3.4.5* and ``mask`` provides
233 *255.255.0.0*, the effective range becomes *10.1.0.0* to *10.3.255.255*.
235 Example of an item specification matching an Ethernet header:
237 .. _table_rte_flow_pattern_item_example:
239 .. table:: Ethernet item
241 +----------+----------+-----------------------+
242 | Field | Subfield | Value |
243 +==========+==========+=======================+
244 | ``spec`` | ``src`` | ``00:00:01:02:03:04`` |
245 | +----------+-----------------------+
246 | | ``dst`` | ``00:00:2a:66:00:01`` |
247 | +----------+-----------------------+
248 | | ``type`` | ``0x22aa`` |
249 +----------+----------+-----------------------+
250 | ``last`` | unspecified |
251 +----------+----------+-----------------------+
252 | ``mask`` | ``src`` | ``00:00:ff:ff:ff:00`` |
253 | +----------+-----------------------+
254 | | ``dst`` | ``00:00:00:00:00:ff`` |
255 | +----------+-----------------------+
256 | | ``type`` | ``0x0000`` |
257 +----------+----------+-----------------------+
259 Non-masked bits stand for any value (shown as ``?`` below), Ethernet headers
260 with the following properties are thus matched:
262 - ``src``: ``??:??:01:02:03:??``
263 - ``dst``: ``??:??:??:??:??:01``
264 - ``type``: ``0x????``
269 A pattern is formed by stacking items starting from the lowest protocol
270 layer to match. This stacking restriction does not apply to meta items which
271 can be placed anywhere in the stack without affecting the meaning of the
274 Patterns are terminated by END items.
278 .. _table_rte_flow_tcpv4_as_l4:
280 .. table:: TCPv4 as L4
296 .. _table_rte_flow_tcpv6_in_vxlan:
298 .. table:: TCPv6 in VXLAN
300 +-------+------------+
302 +=======+============+
304 +-------+------------+
306 +-------+------------+
308 +-------+------------+
310 +-------+------------+
312 +-------+------------+
314 +-------+------------+
316 +-------+------------+
318 +-------+------------+
322 .. _table_rte_flow_tcpv4_as_l4_meta:
324 .. table:: TCPv4 as L4 with meta items
346 The above example shows how meta items do not affect packet data matching
347 items, as long as those remain stacked properly. The resulting matching
348 pattern is identical to "TCPv4 as L4".
350 .. _table_rte_flow_udpv6_anywhere:
352 .. table:: UDPv6 anywhere
364 If supported by the PMD, omitting one or several protocol layers at the
365 bottom of the stack as in the above example (missing an Ethernet
366 specification) enables looking up anywhere in packets.
368 It is unspecified whether the payload of supported encapsulations
369 (e.g. VXLAN payload) is matched by such a pattern, which may apply to inner,
370 outer or both packets.
372 .. _table_rte_flow_invalid_l3:
374 .. table:: Invalid, missing L3
386 The above pattern is invalid due to a missing L3 specification between L2
387 (Ethernet) and L4 (UDP). Doing so is only allowed at the bottom and at the
393 They match meta-data or affect pattern processing instead of matching packet
394 data directly, most of them do not need a specification structure. This
395 particularity allows them to be specified anywhere in the stack without
396 causing any side effect.
401 End marker for item lists. Prevents further processing of items, thereby
404 - Its numeric value is 0 for convenience.
405 - PMD support is mandatory.
406 - ``spec``, ``last`` and ``mask`` are ignored.
408 .. _table_rte_flow_item_end:
412 +----------+---------+
414 +==========+=========+
415 | ``spec`` | ignored |
416 +----------+---------+
417 | ``last`` | ignored |
418 +----------+---------+
419 | ``mask`` | ignored |
420 +----------+---------+
425 Used as a placeholder for convenience. It is ignored and simply discarded by
428 - PMD support is mandatory.
429 - ``spec``, ``last`` and ``mask`` are ignored.
431 .. _table_rte_flow_item_void:
435 +----------+---------+
437 +==========+=========+
438 | ``spec`` | ignored |
439 +----------+---------+
440 | ``last`` | ignored |
441 +----------+---------+
442 | ``mask`` | ignored |
443 +----------+---------+
445 One usage example for this type is generating rules that share a common
446 prefix quickly without reallocating memory, only by updating item types:
448 .. _table_rte_flow_item_void_example:
450 .. table:: TCP, UDP or ICMP as L4
452 +-------+--------------------+
454 +=======+====================+
456 +-------+--------------------+
458 +-------+------+------+------+
459 | 2 | UDP | VOID | VOID |
460 +-------+------+------+------+
461 | 3 | VOID | TCP | VOID |
462 +-------+------+------+------+
463 | 4 | VOID | VOID | ICMP |
464 +-------+------+------+------+
466 +-------+--------------------+
471 Inverted matching, i.e. process packets that do not match the pattern.
473 - ``spec``, ``last`` and ``mask`` are ignored.
475 .. _table_rte_flow_item_invert:
479 +----------+---------+
481 +==========+=========+
482 | ``spec`` | ignored |
483 +----------+---------+
484 | ``last`` | ignored |
485 +----------+---------+
486 | ``mask`` | ignored |
487 +----------+---------+
489 Usage example, matching non-TCPv4 packets only:
491 .. _table_rte_flow_item_invert_example:
493 .. table:: Anything but TCPv4
512 Matches traffic originating from (ingress) or going to (egress) the physical
513 function of the current device.
515 If supported, should work even if the physical function is not managed by
516 the application and thus not associated with a DPDK port ID.
518 - Can be combined with any number of `Item: VF`_ to match both PF and VF
520 - ``spec``, ``last`` and ``mask`` must not be set.
522 .. _table_rte_flow_item_pf:
539 Matches traffic originating from (ingress) or going to (egress) a given
540 virtual function of the current device.
542 If supported, should work even if the virtual function is not managed by the
543 application and thus not associated with a DPDK port ID.
545 Note this pattern item does not match VF representors traffic which, as
546 separate entities, should be addressed through their own DPDK port IDs.
548 - Can be specified multiple times to match traffic addressed to several VF
550 - Can be combined with a PF item to match both PF and VF traffic.
551 - Default ``mask`` matches any VF ID.
553 .. _table_rte_flow_item_vf:
557 +----------+----------+---------------------------+
558 | Field | Subfield | Value |
559 +==========+==========+===========================+
560 | ``spec`` | ``id`` | destination VF ID |
561 +----------+----------+---------------------------+
562 | ``last`` | ``id`` | upper range value |
563 +----------+----------+---------------------------+
564 | ``mask`` | ``id`` | zeroed to match any VF ID |
565 +----------+----------+---------------------------+
570 Matches traffic originating from (ingress) or going to (egress) a physical
571 port of the underlying device.
573 The first PHY_PORT item overrides the physical port normally associated with
574 the specified DPDK input port (port_id). This item can be provided several
575 times to match additional physical ports.
577 Note that physical ports are not necessarily tied to DPDK input ports
578 (port_id) when those are not under DPDK control. Possible values are
579 specific to each device, they are not necessarily indexed from zero and may
582 As a device property, the list of allowed values as well as the value
583 associated with a port_id should be retrieved by other means.
585 - Default ``mask`` matches any port index.
587 .. _table_rte_flow_item_phy_port:
591 +----------+-----------+--------------------------------+
592 | Field | Subfield | Value |
593 +==========+===========+================================+
594 | ``spec`` | ``index`` | physical port index |
595 +----------+-----------+--------------------------------+
596 | ``last`` | ``index`` | upper range value |
597 +----------+-----------+--------------------------------+
598 | ``mask`` | ``index`` | zeroed to match any port index |
599 +----------+-----------+--------------------------------+
604 Matches traffic originating from (ingress) or going to (egress) a given DPDK
607 Normally only supported if the port ID in question is known by the
608 underlying PMD and related to the device the flow rule is created against.
610 This must not be confused with `Item: PHY_PORT`_ which refers to the
611 physical port of a device, whereas `Item: PORT_ID`_ refers to a ``struct
612 rte_eth_dev`` object on the application side (also known as "port
613 representor" depending on the kind of underlying device).
615 - Default ``mask`` matches the specified DPDK port ID.
617 .. _table_rte_flow_item_port_id:
621 +----------+----------+-----------------------------+
622 | Field | Subfield | Value |
623 +==========+==========+=============================+
624 | ``spec`` | ``id`` | DPDK port ID |
625 +----------+----------+-----------------------------+
626 | ``last`` | ``id`` | upper range value |
627 +----------+----------+-----------------------------+
628 | ``mask`` | ``id`` | zeroed to match any port ID |
629 +----------+----------+-----------------------------+
634 Matches an arbitrary integer value which was set using the ``MARK`` action in
635 a previously matched rule.
637 This item can only specified once as a match criteria as the ``MARK`` action can
638 only be specified once in a flow action.
640 Note the value of MARK field is arbitrary and application defined.
642 Depending on the underlying implementation the MARK item may be supported on
643 the physical device, with virtual groups in the PMD or not at all.
645 - Default ``mask`` matches any integer value.
647 .. _table_rte_flow_item_mark:
651 +----------+----------+---------------------------+
652 | Field | Subfield | Value |
653 +==========+==========+===========================+
654 | ``spec`` | ``id`` | integer value |
655 +----------+--------------------------------------+
656 | ``last`` | ``id`` | upper range value |
657 +----------+----------+---------------------------+
658 | ``mask`` | ``id`` | zeroed to match any value |
659 +----------+----------+---------------------------+
664 Matches tag item set by other flows. Multiple tags are supported by specifying
667 - Default ``mask`` matches the specified tag value and index.
669 .. _table_rte_flow_item_tag:
673 +----------+----------+----------------------------------------+
674 | Field | Subfield | Value |
675 +==========+===========+=======================================+
676 | ``spec`` | ``data`` | 32 bit flow tag value |
677 | +-----------+---------------------------------------+
678 | | ``index`` | index of flow tag |
679 +----------+-----------+---------------------------------------+
680 | ``last`` | ``data`` | upper range value |
681 | +-----------+---------------------------------------+
682 | | ``index`` | field is ignored |
683 +----------+-----------+---------------------------------------+
684 | ``mask`` | ``data`` | bit-mask applies to "spec" and "last" |
685 | +-----------+---------------------------------------+
686 | | ``index`` | field is ignored |
687 +----------+-----------+---------------------------------------+
692 Matches 32 bit metadata item set.
694 On egress, metadata can be set either by mbuf metadata field with
695 PKT_TX_DYNF_METADATA flag or ``SET_META`` action. On ingress, ``SET_META``
696 action sets metadata for a packet and the metadata will be reported via
697 ``metadata`` dynamic field of ``rte_mbuf`` with PKT_RX_DYNF_METADATA flag.
699 - Default ``mask`` matches the specified Rx metadata value.
701 .. _table_rte_flow_item_meta:
705 +----------+----------+---------------------------------------+
706 | Field | Subfield | Value |
707 +==========+==========+=======================================+
708 | ``spec`` | ``data`` | 32 bit metadata value |
709 +----------+----------+---------------------------------------+
710 | ``last`` | ``data`` | upper range value |
711 +----------+----------+---------------------------------------+
712 | ``mask`` | ``data`` | bit-mask applies to "spec" and "last" |
713 +----------+----------+---------------------------------------+
715 Data matching item types
716 ~~~~~~~~~~~~~~~~~~~~~~~~
718 Most of these are basically protocol header definitions with associated
719 bit-masks. They must be specified (stacked) from lowest to highest protocol
720 layer to form a matching pattern.
722 The following list is not exhaustive, new protocols will be added in the
728 Matches any protocol in place of the current layer, a single ANY may also
729 stand for several protocol layers.
731 This is usually specified as the first pattern item when looking for a
732 protocol anywhere in a packet.
734 - Default ``mask`` stands for any number of layers.
736 .. _table_rte_flow_item_any:
740 +----------+----------+--------------------------------------+
741 | Field | Subfield | Value |
742 +==========+==========+======================================+
743 | ``spec`` | ``num`` | number of layers covered |
744 +----------+----------+--------------------------------------+
745 | ``last`` | ``num`` | upper range value |
746 +----------+----------+--------------------------------------+
747 | ``mask`` | ``num`` | zeroed to cover any number of layers |
748 +----------+----------+--------------------------------------+
750 Example for VXLAN TCP payload matching regardless of outer L3 (IPv4 or IPv6)
751 and L4 (UDP) both matched by the first ANY specification, and inner L3 (IPv4
752 or IPv6) matched by the second ANY specification:
754 .. _table_rte_flow_item_any_example:
756 .. table:: TCP in VXLAN with wildcards
758 +-------+------+----------+----------+-------+
759 | Index | Item | Field | Subfield | Value |
760 +=======+======+==========+==========+=======+
762 +-------+------+----------+----------+-------+
763 | 1 | ANY | ``spec`` | ``num`` | 2 |
764 +-------+------+----------+----------+-------+
766 +-------+------------------------------------+
768 +-------+------+----------+----------+-------+
769 | 4 | ANY | ``spec`` | ``num`` | 1 |
770 +-------+------+----------+----------+-------+
772 +-------+------------------------------------+
774 +-------+------------------------------------+
779 Matches a byte string of a given length at a given offset.
781 Offset is either absolute (using the start of the packet) or relative to the
782 end of the previous matched item in the stack, in which case negative values
785 If search is enabled, offset is used as the starting point. The search area
786 can be delimited by setting limit to a nonzero value, which is the maximum
787 number of bytes after offset where the pattern may start.
789 Matching a zero-length pattern is allowed, doing so resets the relative
790 offset for subsequent items.
792 - This type does not support ranges (``last`` field).
793 - Default ``mask`` matches all fields exactly.
795 .. _table_rte_flow_item_raw:
799 +----------+--------------+-------------------------------------------------+
800 | Field | Subfield | Value |
801 +==========+==============+=================================================+
802 | ``spec`` | ``relative`` | look for pattern after the previous item |
803 | +--------------+-------------------------------------------------+
804 | | ``search`` | search pattern from offset (see also ``limit``) |
805 | +--------------+-------------------------------------------------+
806 | | ``reserved`` | reserved, must be set to zero |
807 | +--------------+-------------------------------------------------+
808 | | ``offset`` | absolute or relative offset for ``pattern`` |
809 | +--------------+-------------------------------------------------+
810 | | ``limit`` | search area limit for start of ``pattern`` |
811 | +--------------+-------------------------------------------------+
812 | | ``length`` | ``pattern`` length |
813 | +--------------+-------------------------------------------------+
814 | | ``pattern`` | byte string to look for |
815 +----------+--------------+-------------------------------------------------+
816 | ``last`` | if specified, either all 0 or with the same values as ``spec`` |
817 +----------+----------------------------------------------------------------+
818 | ``mask`` | bit-mask applied to ``spec`` values with usual behavior |
819 +----------+----------------------------------------------------------------+
821 Example pattern looking for several strings at various offsets of a UDP
822 payload, using combined RAW items:
824 .. _table_rte_flow_item_raw_example:
826 .. table:: UDP payload matching
828 +-------+------+----------+--------------+-------+
829 | Index | Item | Field | Subfield | Value |
830 +=======+======+==========+==============+=======+
832 +-------+----------------------------------------+
834 +-------+----------------------------------------+
836 +-------+------+----------+--------------+-------+
837 | 3 | RAW | ``spec`` | ``relative`` | 1 |
838 | | | +--------------+-------+
839 | | | | ``search`` | 1 |
840 | | | +--------------+-------+
841 | | | | ``offset`` | 10 |
842 | | | +--------------+-------+
843 | | | | ``limit`` | 0 |
844 | | | +--------------+-------+
845 | | | | ``length`` | 3 |
846 | | | +--------------+-------+
847 | | | | ``pattern`` | "foo" |
848 +-------+------+----------+--------------+-------+
849 | 4 | RAW | ``spec`` | ``relative`` | 1 |
850 | | | +--------------+-------+
851 | | | | ``search`` | 0 |
852 | | | +--------------+-------+
853 | | | | ``offset`` | 20 |
854 | | | +--------------+-------+
855 | | | | ``limit`` | 0 |
856 | | | +--------------+-------+
857 | | | | ``length`` | 3 |
858 | | | +--------------+-------+
859 | | | | ``pattern`` | "bar" |
860 +-------+------+----------+--------------+-------+
861 | 5 | RAW | ``spec`` | ``relative`` | 1 |
862 | | | +--------------+-------+
863 | | | | ``search`` | 0 |
864 | | | +--------------+-------+
865 | | | | ``offset`` | -29 |
866 | | | +--------------+-------+
867 | | | | ``limit`` | 0 |
868 | | | +--------------+-------+
869 | | | | ``length`` | 3 |
870 | | | +--------------+-------+
871 | | | | ``pattern`` | "baz" |
872 +-------+------+----------+--------------+-------+
874 +-------+----------------------------------------+
878 - Locate "foo" at least 10 bytes deep inside UDP payload.
879 - Locate "bar" after "foo" plus 20 bytes.
880 - Locate "baz" after "bar" minus 29 bytes.
882 Such a packet may be represented as follows (not to scale)::
885 | |<--------->| |<--------->|
887 |-----|------|-----|-----|-----|-----|-----------|-----|------|
888 | ETH | IPv4 | UDP | ... | baz | foo | ......... | bar | .... |
889 |-----|------|-----|-----|-----|-----|-----------|-----|------|
891 |<--------------------------->|
894 Note that matching subsequent pattern items would resume after "baz", not
895 "bar" since matching is always performed after the previous item of the
901 Matches an Ethernet header.
903 The ``type`` field either stands for "EtherType" or "TPID" when followed by
904 so-called layer 2.5 pattern items such as ``RTE_FLOW_ITEM_TYPE_VLAN``. In
905 the latter case, ``type`` refers to that of the outer header, with the inner
906 EtherType/TPID provided by the subsequent pattern item. This is the same
907 order as on the wire.
908 If the ``type`` field contains a TPID value, then only tagged packets with the
909 specified TPID will match the pattern.
910 Otherwise, only untagged packets will match the pattern.
911 If the ``ETH`` item is the only item in the pattern, and the ``type`` field is
912 not specified, then both tagged and untagged packets will match the pattern.
914 - ``dst``: destination MAC.
915 - ``src``: source MAC.
916 - ``type``: EtherType or TPID.
917 - Default ``mask`` matches destination and source addresses only.
922 Matches an 802.1Q/ad VLAN tag.
924 The corresponding standard outer EtherType (TPID) values are
925 ``RTE_ETHER_TYPE_VLAN`` or ``RTE_ETHER_TYPE_QINQ``. It can be overridden by the
926 preceding pattern item.
927 If a ``VLAN`` item is present in the pattern, then only tagged packets will
930 - ``tci``: tag control information.
931 - ``inner_type``: inner EtherType or TPID.
932 - Default ``mask`` matches the VID part of TCI only (lower 12 bits).
937 Matches an IPv4 header.
939 Note: IPv4 options are handled by dedicated pattern items.
941 - ``hdr``: IPv4 header definition (``rte_ip.h``).
942 - Default ``mask`` matches source and destination addresses only.
947 Matches an IPv6 header.
949 Dedicated flags indicate if header contains specific extension headers.
950 To match on packets containing a specific extension header, an application
951 should match on the dedicated flag set to 1.
952 To match on packets not containing a specific extension header, an application
953 should match on the dedicated flag clear to 0.
954 In case application doesn't care about the existence of a specific extension
955 header, it should not specify the dedicated flag for matching.
957 - ``hdr``: IPv6 header definition (``rte_ip.h``).
958 - ``has_hop_ext``: header contains Hop-by-Hop Options extension header.
959 - ``has_route_ext``: header contains Routing extension header.
960 - ``has_frag_ext``: header contains Fragment extension header.
961 - ``has_auth_ext``: header contains Authentication extension header.
962 - ``has_esp_ext``: header contains Encapsulation Security Payload extension header.
963 - ``has_dest_ext``: header contains Destination Options extension header.
964 - ``has_mobil_ext``: header contains Mobility extension header.
965 - ``has_hip_ext``: header contains Host Identity Protocol extension header.
966 - ``has_shim6_ext``: header contains Shim6 Protocol extension header.
967 - Default ``mask`` matches ``hdr`` source and destination addresses only.
972 Matches an ICMP header.
974 - ``hdr``: ICMP header definition (``rte_icmp.h``).
975 - Default ``mask`` matches ICMP type and code only.
980 Matches a UDP header.
982 - ``hdr``: UDP header definition (``rte_udp.h``).
983 - Default ``mask`` matches source and destination ports only.
988 Matches a TCP header.
990 - ``hdr``: TCP header definition (``rte_tcp.h``).
991 - Default ``mask`` matches source and destination ports only.
996 Matches a SCTP header.
998 - ``hdr``: SCTP header definition (``rte_sctp.h``).
999 - Default ``mask`` matches source and destination ports only.
1004 Matches a VXLAN header (RFC 7348).
1006 - ``flags``: normally 0x08 (I flag).
1007 - ``rsvd0``: reserved, normally 0x000000.
1008 - ``vni``: VXLAN network identifier.
1009 - ``rsvd1``: reserved, normally 0x00.
1010 - Default ``mask`` matches VNI only.
1015 Matches an IEEE 802.1BR E-Tag header.
1017 The corresponding standard outer EtherType (TPID) value is
1018 ``RTE_ETHER_TYPE_ETAG``. It can be overridden by the preceding pattern item.
1020 - ``epcp_edei_in_ecid_b``: E-Tag control information (E-TCI), E-PCP (3b),
1021 E-DEI (1b), ingress E-CID base (12b).
1022 - ``rsvd_grp_ecid_b``: reserved (2b), GRP (2b), E-CID base (12b).
1023 - ``in_ecid_e``: ingress E-CID ext.
1024 - ``ecid_e``: E-CID ext.
1025 - ``inner_type``: inner EtherType or TPID.
1026 - Default ``mask`` simultaneously matches GRP and E-CID base.
1031 Matches a NVGRE header (RFC 7637).
1033 - ``c_k_s_rsvd0_ver``: checksum (1b), undefined (1b), key bit (1b),
1034 sequence number (1b), reserved 0 (9b), version (3b). This field must have
1035 value 0x2000 according to RFC 7637.
1036 - ``protocol``: protocol type (0x6558).
1037 - ``tni``: virtual subnet ID.
1038 - ``flow_id``: flow ID.
1039 - Default ``mask`` matches TNI only.
1044 Matches a MPLS header.
1046 - ``label_tc_s_ttl``: label, TC, Bottom of Stack and TTL.
1047 - Default ``mask`` matches label only.
1052 Matches a GRE header.
1054 - ``c_rsvd0_ver``: checksum, reserved 0 and version.
1055 - ``protocol``: protocol type.
1056 - Default ``mask`` matches protocol only.
1061 Matches a GRE key field.
1062 This should be preceded by item ``GRE``.
1064 - Value to be matched is a big-endian 32 bit integer.
1065 - When this item present it implicitly match K bit in default mask as "1"
1070 Fuzzy pattern match, expect faster than default.
1072 This is for device that support fuzzy match option. Usually a fuzzy match is
1073 fast but the cost is accuracy. i.e. Signature Match only match pattern's hash
1074 value, but it is possible two different patterns have the same hash value.
1076 Matching accuracy level can be configured by threshold. Driver can divide the
1077 range of threshold and map to different accuracy levels that device support.
1079 Threshold 0 means perfect match (no fuzziness), while threshold 0xffffffff
1080 means fuzziest match.
1082 .. _table_rte_flow_item_fuzzy:
1086 +----------+---------------+--------------------------------------------------+
1087 | Field | Subfield | Value |
1088 +==========+===============+==================================================+
1089 | ``spec`` | ``threshold`` | 0 as perfect match, 0xffffffff as fuzziest match |
1090 +----------+---------------+--------------------------------------------------+
1091 | ``last`` | ``threshold`` | upper range value |
1092 +----------+---------------+--------------------------------------------------+
1093 | ``mask`` | ``threshold`` | bit-mask apply to "spec" and "last" |
1094 +----------+---------------+--------------------------------------------------+
1096 Usage example, fuzzy match a TCPv4 packets:
1098 .. _table_rte_flow_item_fuzzy_example:
1100 .. table:: Fuzzy matching
1102 +-------+----------+
1104 +=======+==========+
1106 +-------+----------+
1108 +-------+----------+
1110 +-------+----------+
1112 +-------+----------+
1114 +-------+----------+
1116 Item: ``GTP``, ``GTPC``, ``GTPU``
1117 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1119 Matches a GTPv1 header.
1121 Note: GTP, GTPC and GTPU use the same structure. GTPC and GTPU item
1122 are defined for a user-friendly API when creating GTP-C and GTP-U
1125 - ``v_pt_rsv_flags``: version (3b), protocol type (1b), reserved (1b),
1126 extension header flag (1b), sequence number flag (1b), N-PDU number
1128 - ``msg_type``: message type.
1129 - ``msg_len``: message length.
1130 - ``teid``: tunnel endpoint identifier.
1131 - Default ``mask`` matches teid only.
1136 Matches an ESP header.
1138 - ``hdr``: ESP header definition (``rte_esp.h``).
1139 - Default ``mask`` matches SPI only.
1144 Matches a GENEVE header.
1146 - ``ver_opt_len_o_c_rsvd0``: version (2b), length of the options fields (6b),
1147 OAM packet (1b), critical options present (1b), reserved 0 (6b).
1148 - ``protocol``: protocol type.
1149 - ``vni``: virtual network identifier.
1150 - ``rsvd1``: reserved, normally 0x00.
1151 - Default ``mask`` matches VNI only.
1156 Matches a VXLAN-GPE header (draft-ietf-nvo3-vxlan-gpe-05).
1158 - ``flags``: normally 0x0C (I and P flags).
1159 - ``rsvd0``: reserved, normally 0x0000.
1160 - ``protocol``: protocol type.
1161 - ``vni``: VXLAN network identifier.
1162 - ``rsvd1``: reserved, normally 0x00.
1163 - Default ``mask`` matches VNI only.
1165 Item: ``ARP_ETH_IPV4``
1166 ^^^^^^^^^^^^^^^^^^^^^^
1168 Matches an ARP header for Ethernet/IPv4.
1170 - ``hdr``: hardware type, normally 1.
1171 - ``pro``: protocol type, normally 0x0800.
1172 - ``hln``: hardware address length, normally 6.
1173 - ``pln``: protocol address length, normally 4.
1174 - ``op``: opcode (1 for request, 2 for reply).
1175 - ``sha``: sender hardware address.
1176 - ``spa``: sender IPv4 address.
1177 - ``tha``: target hardware address.
1178 - ``tpa``: target IPv4 address.
1179 - Default ``mask`` matches SHA, SPA, THA and TPA.
1184 Matches the presence of any IPv6 extension header.
1186 - ``next_hdr``: next header.
1187 - Default ``mask`` matches ``next_hdr``.
1189 Normally preceded by any of:
1197 Matches any ICMPv6 header.
1199 - ``type``: ICMPv6 type.
1200 - ``code``: ICMPv6 code.
1201 - ``checksum``: ICMPv6 checksum.
1202 - Default ``mask`` matches ``type`` and ``code``.
1204 Item: ``ICMP6_ND_NS``
1205 ^^^^^^^^^^^^^^^^^^^^^
1207 Matches an ICMPv6 neighbor discovery solicitation.
1209 - ``type``: ICMPv6 type, normally 135.
1210 - ``code``: ICMPv6 code, normally 0.
1211 - ``checksum``: ICMPv6 checksum.
1212 - ``reserved``: reserved, normally 0.
1213 - ``target_addr``: target address.
1214 - Default ``mask`` matches target address only.
1216 Item: ``ICMP6_ND_NA``
1217 ^^^^^^^^^^^^^^^^^^^^^
1219 Matches an ICMPv6 neighbor discovery advertisement.
1221 - ``type``: ICMPv6 type, normally 136.
1222 - ``code``: ICMPv6 code, normally 0.
1223 - ``checksum``: ICMPv6 checksum.
1224 - ``rso_reserved``: route flag (1b), solicited flag (1b), override flag
1225 (1b), reserved (29b).
1226 - ``target_addr``: target address.
1227 - Default ``mask`` matches target address only.
1229 Item: ``ICMP6_ND_OPT``
1230 ^^^^^^^^^^^^^^^^^^^^^^
1232 Matches the presence of any ICMPv6 neighbor discovery option.
1234 - ``type``: ND option type.
1235 - ``length``: ND option length.
1236 - Default ``mask`` matches type only.
1238 Normally preceded by any of:
1240 - `Item: ICMP6_ND_NA`_
1241 - `Item: ICMP6_ND_NS`_
1242 - `Item: ICMP6_ND_OPT`_
1244 Item: ``ICMP6_ND_OPT_SLA_ETH``
1245 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1247 Matches an ICMPv6 neighbor discovery source Ethernet link-layer address
1250 - ``type``: ND option type, normally 1.
1251 - ``length``: ND option length, normally 1.
1252 - ``sla``: source Ethernet LLA.
1253 - Default ``mask`` matches source link-layer address only.
1255 Normally preceded by any of:
1257 - `Item: ICMP6_ND_NA`_
1258 - `Item: ICMP6_ND_OPT`_
1260 Item: ``ICMP6_ND_OPT_TLA_ETH``
1261 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1263 Matches an ICMPv6 neighbor discovery target Ethernet link-layer address
1266 - ``type``: ND option type, normally 2.
1267 - ``length``: ND option length, normally 1.
1268 - ``tla``: target Ethernet LLA.
1269 - Default ``mask`` matches target link-layer address only.
1271 Normally preceded by any of:
1273 - `Item: ICMP6_ND_NS`_
1274 - `Item: ICMP6_ND_OPT`_
1279 Matches an application specific 32 bit metadata item.
1281 - Default ``mask`` matches the specified metadata value.
1286 Matches a GTP PDU extension header with type 0x85.
1288 - ``pdu_type``: PDU type.
1289 - ``qfi``: QoS flow identifier.
1290 - Default ``mask`` matches QFI only.
1292 Item: ``PPPOES``, ``PPPOED``
1293 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1295 Matches a PPPoE header.
1297 - ``version_type``: version (4b), type (4b).
1298 - ``code``: message type.
1299 - ``session_id``: session identifier.
1300 - ``length``: payload length.
1302 Item: ``PPPOE_PROTO_ID``
1303 ^^^^^^^^^^^^^^^^^^^^^^^^
1305 Matches a PPPoE session protocol identifier.
1307 - ``proto_id``: PPP protocol identifier.
1308 - Default ``mask`` matches proto_id only.
1313 Matches a network service header (RFC 8300).
1315 - ``version``: normally 0x0 (2 bits).
1316 - ``oam_pkt``: indicate oam packet (1 bit).
1317 - ``reserved``: reserved bit (1 bit).
1318 - ``ttl``: maximum SFF hopes (6 bits).
1319 - ``length``: total length in 4 bytes words (6 bits).
1320 - ``reserved1``: reserved1 bits (4 bits).
1321 - ``mdtype``: ndicates format of NSH header (4 bits).
1322 - ``next_proto``: indicates protocol type of encap data (8 bits).
1323 - ``spi``: service path identifier (3 bytes).
1324 - ``sindex``: service index (1 byte).
1325 - Default ``mask`` matches mdtype, next_proto, spi, sindex.
1331 Matches a Internet Group Management Protocol (RFC 2236).
1333 - ``type``: IGMP message type (Query/Report).
1334 - ``max_resp_time``: max time allowed before sending report.
1335 - ``checksum``: checksum, 1s complement of whole IGMP message.
1336 - ``group_addr``: group address, for Query value will be 0.
1337 - Default ``mask`` matches group_addr.
1343 Matches a IP Authentication Header (RFC 4302).
1345 - ``next_hdr``: next payload after AH.
1346 - ``payload_len``: total length of AH in 4B words.
1347 - ``reserved``: reserved bits.
1348 - ``spi``: security parameters index.
1349 - ``seq_num``: counter value increased by 1 on each packet sent.
1350 - Default ``mask`` matches spi.
1355 Matches a HIGIG2 header field. It is layer 2.5 protocol and used in
1358 - Default ``mask`` matches classification and vlan.
1363 Matches a L2TPv3 over IP header.
1365 - ``session_id``: L2TPv3 over IP session identifier.
1366 - Default ``mask`` matches session_id only.
1371 Matches a PFCP Header.
1373 - ``s_field``: S field.
1374 - ``msg_type``: message type.
1375 - ``msg_len``: message length.
1376 - ``seid``: session endpoint identifier.
1377 - Default ``mask`` matches s_field and seid.
1382 Matches a eCPRI header.
1384 - ``hdr``: eCPRI header definition (``rte_ecpri.h``).
1385 - Default ``mask`` matches nothing, for all eCPRI messages.
1390 Each possible action is represented by a type.
1391 An action can have an associated configuration object.
1392 Several actions combined in a list can be assigned
1393 to a flow rule and are performed in order.
1395 They fall in three categories:
1397 - Actions that modify the fate of matching traffic, for instance by dropping
1398 or assigning it a specific destination.
1400 - Actions that modify matching traffic contents or its properties. This
1401 includes adding/removing encapsulation, encryption, compression and marks.
1403 - Actions related to the flow rule itself, such as updating counters or
1404 making it non-terminating.
1406 Flow rules being terminating by default, not specifying any action of the
1407 fate kind results in undefined behavior. This applies to both ingress and
1410 PASSTHRU, when supported, makes a flow rule non-terminating.
1412 Like matching patterns, action lists are terminated by END items.
1414 Example of action that redirects packets to queue index 10:
1416 .. _table_rte_flow_action_example:
1418 .. table:: Queue action
1420 +-----------+-------+
1422 +===========+=======+
1424 +-----------+-------+
1426 Actions are performed in list order:
1428 .. _table_rte_flow_count_then_drop:
1430 .. table:: Count then drop
1444 .. _table_rte_flow_mark_count_redirect:
1446 .. table:: Mark, count then redirect
1448 +-------+--------+------------+-------+
1449 | Index | Action | Field | Value |
1450 +=======+========+============+=======+
1451 | 0 | MARK | ``mark`` | 0x2a |
1452 +-------+--------+------------+-------+
1453 | 1 | COUNT | ``shared`` | 0 |
1454 | | +------------+-------+
1456 +-------+--------+------------+-------+
1457 | 2 | QUEUE | ``queue`` | 10 |
1458 +-------+--------+------------+-------+
1460 +-------+-----------------------------+
1464 .. _table_rte_flow_redirect_queue_5:
1466 .. table:: Redirect to queue 5
1468 +-------+--------+-----------+-------+
1469 | Index | Action | Field | Value |
1470 +=======+========+===========+=======+
1472 +-------+--------+-----------+-------+
1473 | 1 | QUEUE | ``queue`` | 5 |
1474 +-------+--------+-----------+-------+
1476 +-------+----------------------------+
1478 In the above example, while DROP and QUEUE must be performed in order, both
1479 have to happen before reaching END. Only QUEUE has a visible effect.
1481 Note that such a list may be thought as ambiguous and rejected on that
1484 .. _table_rte_flow_redirect_queue_5_3:
1486 .. table:: Redirect to queues 5 and 3
1488 +-------+--------+-----------+-------+
1489 | Index | Action | Field | Value |
1490 +=======+========+===========+=======+
1491 | 0 | QUEUE | ``queue`` | 5 |
1492 +-------+--------+-----------+-------+
1494 +-------+--------+-----------+-------+
1495 | 2 | QUEUE | ``queue`` | 3 |
1496 +-------+--------+-----------+-------+
1498 +-------+----------------------------+
1500 As previously described, all actions must be taken into account. This
1501 effectively duplicates traffic to both queues. The above example also shows
1502 that VOID is ignored.
1507 Common action types are described in this section. Like pattern item types,
1508 this list is not exhaustive as new actions will be added in the future.
1513 End marker for action lists. Prevents further processing of actions, thereby
1516 - Its numeric value is 0 for convenience.
1517 - PMD support is mandatory.
1518 - No configurable properties.
1520 .. _table_rte_flow_action_end:
1533 Used as a placeholder for convenience. It is ignored and simply discarded by
1536 - PMD support is mandatory.
1537 - No configurable properties.
1539 .. _table_rte_flow_action_void:
1549 Action: ``PASSTHRU``
1550 ^^^^^^^^^^^^^^^^^^^^
1552 Leaves traffic up for additional processing by subsequent flow rules; makes
1553 a flow rule non-terminating.
1555 - No configurable properties.
1557 .. _table_rte_flow_action_passthru:
1567 Example to copy a packet to a queue and continue processing by subsequent
1570 .. _table_rte_flow_action_passthru_example:
1572 .. table:: Copy to queue 8
1574 +-------+--------+-----------+-------+
1575 | Index | Action | Field | Value |
1576 +=======+========+===========+=======+
1578 +-------+--------+-----------+-------+
1579 | 1 | QUEUE | ``queue`` | 8 |
1580 +-------+--------+-----------+-------+
1582 +-------+----------------------------+
1587 Redirects packets to a group on the current device.
1589 In a hierarchy of groups, which can be used to represent physical or logical
1590 flow group/tables on the device, this action redirects the matched flow to
1591 the specified group on that device.
1593 If a matched flow is redirected to a table which doesn't contain a matching
1594 rule for that flow then the behavior is undefined and the resulting behavior
1595 is up to the specific device. Best practice when using groups would be define
1596 a default flow rule for each group which a defines the default actions in that
1597 group so a consistent behavior is defined.
1599 Defining an action for matched flow in a group to jump to a group which is
1600 higher in the group hierarchy may not be supported by physical devices,
1601 depending on how groups are mapped to the physical devices. In the
1602 definitions of jump actions, applications should be aware that it may be
1603 possible to define flow rules which trigger an undefined behavior causing
1604 flows to loop between groups.
1606 .. _table_rte_flow_action_jump:
1610 +-----------+------------------------------+
1612 +===========+==============================+
1613 | ``group`` | Group to redirect packets to |
1614 +-----------+------------------------------+
1619 Attaches an integer value to packets and sets ``PKT_RX_FDIR`` and
1620 ``PKT_RX_FDIR_ID`` mbuf flags.
1622 This value is arbitrary and application-defined. Maximum allowed value
1623 depends on the underlying implementation. It is returned in the
1624 ``hash.fdir.hi`` mbuf field.
1626 .. _table_rte_flow_action_mark:
1630 +--------+--------------------------------------+
1632 +========+======================================+
1633 | ``id`` | integer value to return with packets |
1634 +--------+--------------------------------------+
1639 Flags packets. Similar to `Action: MARK`_ without a specific value; only
1640 sets the ``PKT_RX_FDIR`` mbuf flag.
1642 - No configurable properties.
1644 .. _table_rte_flow_action_flag:
1657 Assigns packets to a given queue index.
1659 .. _table_rte_flow_action_queue:
1663 +-----------+--------------------+
1665 +===========+====================+
1666 | ``index`` | queue index to use |
1667 +-----------+--------------------+
1674 - No configurable properties.
1676 .. _table_rte_flow_action_drop:
1689 Adds a counter action to a matched flow.
1691 If more than one count action is specified in a single flow rule, then each
1692 action must specify a unique id.
1694 Counters can be retrieved and reset through ``rte_flow_query()``, see
1695 ``struct rte_flow_query_count``.
1697 The shared flag indicates whether the counter is unique to the flow rule the
1698 action is specified with, or whether it is a shared counter.
1700 For a count action with the shared flag set, then a global device
1701 namespace is assumed for the counter id, so that any matched flow rules using
1702 a count action with the same counter id on the same port will contribute to
1705 For ports within the same switch domain then the counter id namespace extends
1706 to all ports within that switch domain.
1708 .. _table_rte_flow_action_count:
1712 +------------+---------------------+
1714 +============+=====================+
1715 | ``shared`` | shared counter flag |
1716 +------------+---------------------+
1717 | ``id`` | counter id |
1718 +------------+---------------------+
1720 Query structure to retrieve and reset flow rule counters:
1722 .. _table_rte_flow_query_count:
1724 .. table:: COUNT query
1726 +---------------+-----+-----------------------------------+
1727 | Field | I/O | Value |
1728 +===============+=====+===================================+
1729 | ``reset`` | in | reset counter after query |
1730 +---------------+-----+-----------------------------------+
1731 | ``hits_set`` | out | ``hits`` field is set |
1732 +---------------+-----+-----------------------------------+
1733 | ``bytes_set`` | out | ``bytes`` field is set |
1734 +---------------+-----+-----------------------------------+
1735 | ``hits`` | out | number of hits for this rule |
1736 +---------------+-----+-----------------------------------+
1737 | ``bytes`` | out | number of bytes through this rule |
1738 +---------------+-----+-----------------------------------+
1743 Similar to QUEUE, except RSS is additionally performed on packets to spread
1744 them among several queues according to the provided parameters.
1746 Unlike global RSS settings used by other DPDK APIs, unsetting the ``types``
1747 field does not disable RSS in a flow rule. Doing so instead requests safe
1748 unspecified "best-effort" settings from the underlying PMD, which depending
1749 on the flow rule, may result in anything ranging from empty (single queue)
1750 to all-inclusive RSS.
1752 If non-applicable for matching packets RSS types are requested,
1753 these RSS types are simply ignored. For example, it happens if:
1755 - Hashing of both TCP and UDP ports is requested
1756 (only one can be present in a packet).
1758 - Requested RSS types contradict to flow rule pattern
1759 (e.g. pattern has UDP item, but RSS types contain TCP).
1761 If requested RSS hash types are not supported by the Ethernet device at all
1762 (not reported in ``dev_info.flow_tpe_rss_offloads``),
1763 the flow creation will fail.
1765 Note: RSS hash result is stored in the ``hash.rss`` mbuf field which
1766 overlaps ``hash.fdir.lo``. Since `Action: MARK`_ sets the ``hash.fdir.hi``
1767 field only, both can be requested simultaneously.
1769 Also, regarding packet encapsulation ``level``:
1771 - ``0`` requests the default behavior. Depending on the packet type, it can
1772 mean outermost, innermost, anything in between or even no RSS.
1774 It basically stands for the innermost encapsulation level RSS can be
1775 performed on according to PMD and device capabilities.
1777 - ``1`` requests RSS to be performed on the outermost packet encapsulation
1780 - ``2`` and subsequent values request RSS to be performed on the specified
1781 inner packet encapsulation level, from outermost to innermost (lower to
1784 Values other than ``0`` are not necessarily supported.
1786 Requesting a specific RSS level on unrecognized traffic results in undefined
1787 behavior. For predictable results, it is recommended to make the flow rule
1788 pattern match packet headers up to the requested encapsulation level so that
1789 only matching traffic goes through.
1791 .. _table_rte_flow_action_rss:
1795 +---------------+---------------------------------------------+
1797 +===============+=============================================+
1798 | ``func`` | RSS hash function to apply |
1799 +---------------+---------------------------------------------+
1800 | ``level`` | encapsulation level for ``types`` |
1801 +---------------+---------------------------------------------+
1802 | ``types`` | specific RSS hash types (see ``ETH_RSS_*``) |
1803 +---------------+---------------------------------------------+
1804 | ``key_len`` | hash key length in bytes |
1805 +---------------+---------------------------------------------+
1806 | ``queue_num`` | number of entries in ``queue`` |
1807 +---------------+---------------------------------------------+
1808 | ``key`` | hash key |
1809 +---------------+---------------------------------------------+
1810 | ``queue`` | queue indices to use |
1811 +---------------+---------------------------------------------+
1816 Directs matching traffic to the physical function (PF) of the current
1821 - No configurable properties.
1823 .. _table_rte_flow_action_pf:
1836 Directs matching traffic to a given virtual function of the current device.
1838 Packets matched by a VF pattern item can be redirected to their original VF
1839 ID instead of the specified one. This parameter may not be available and is
1840 not guaranteed to work properly if the VF part is matched by a prior flow
1841 rule or if packets are not addressed to a VF in the first place.
1845 .. _table_rte_flow_action_vf:
1849 +--------------+--------------------------------+
1851 +==============+================================+
1852 | ``original`` | use original VF ID if possible |
1853 +--------------+--------------------------------+
1855 +--------------+--------------------------------+
1857 Action: ``PHY_PORT``
1858 ^^^^^^^^^^^^^^^^^^^^
1860 Directs matching traffic to a given physical port index of the underlying
1863 See `Item: PHY_PORT`_.
1865 .. _table_rte_flow_action_phy_port:
1869 +--------------+-------------------------------------+
1871 +==============+=====================================+
1872 | ``original`` | use original port index if possible |
1873 +--------------+-------------------------------------+
1874 | ``index`` | physical port index |
1875 +--------------+-------------------------------------+
1879 Directs matching traffic to a given DPDK port ID.
1881 See `Item: PORT_ID`_.
1883 .. _table_rte_flow_action_port_id:
1887 +--------------+---------------------------------------+
1889 +==============+=======================================+
1890 | ``original`` | use original DPDK port ID if possible |
1891 +--------------+---------------------------------------+
1892 | ``id`` | DPDK port ID |
1893 +--------------+---------------------------------------+
1898 Applies a stage of metering and policing.
1900 The metering and policing (MTR) object has to be first created using the
1901 rte_mtr_create() API function. The ID of the MTR object is specified as
1902 action parameter. More than one flow can use the same MTR object through
1903 the meter action. The MTR object can be further updated or queried using
1906 .. _table_rte_flow_action_meter:
1910 +--------------+---------------+
1912 +==============+===============+
1913 | ``mtr_id`` | MTR object ID |
1914 +--------------+---------------+
1916 Action: ``SECURITY``
1917 ^^^^^^^^^^^^^^^^^^^^
1919 Perform the security action on flows matched by the pattern items
1920 according to the configuration of the security session.
1922 This action modifies the payload of matched flows. For INLINE_CRYPTO, the
1923 security protocol headers and IV are fully provided by the application as
1924 specified in the flow pattern. The payload of matching packets is
1925 encrypted on egress, and decrypted and authenticated on ingress.
1926 For INLINE_PROTOCOL, the security protocol is fully offloaded to HW,
1927 providing full encapsulation and decapsulation of packets in security
1928 protocols. The flow pattern specifies both the outer security header fields
1929 and the inner packet fields. The security session specified in the action
1930 must match the pattern parameters.
1932 The security session specified in the action must be created on the same
1933 port as the flow action that is being specified.
1935 The ingress/egress flow attribute should match that specified in the
1936 security session if the security session supports the definition of the
1939 Multiple flows can be configured to use the same security session.
1941 .. _table_rte_flow_action_security:
1945 +----------------------+--------------------------------------+
1947 +======================+======================================+
1948 | ``security_session`` | security session to apply |
1949 +----------------------+--------------------------------------+
1951 The following is an example of configuring IPsec inline using the
1952 INLINE_CRYPTO security session:
1954 The encryption algorithm, keys and salt are part of the opaque
1955 ``rte_security_session``. The SA is identified according to the IP and ESP
1956 fields in the pattern items.
1958 .. _table_rte_flow_item_esp_inline_example:
1960 .. table:: IPsec inline crypto flow pattern items.
1962 +-------+----------+
1964 +=======+==========+
1966 +-------+----------+
1968 +-------+----------+
1970 +-------+----------+
1972 +-------+----------+
1974 .. _table_rte_flow_action_esp_inline_example:
1976 .. table:: IPsec inline flow actions.
1978 +-------+----------+
1980 +=======+==========+
1982 +-------+----------+
1984 +-------+----------+
1986 Action: ``OF_SET_MPLS_TTL``
1987 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
1989 Implements ``OFPAT_SET_MPLS_TTL`` ("MPLS TTL") as defined by the `OpenFlow
1990 Switch Specification`_.
1992 .. _table_rte_flow_action_of_set_mpls_ttl:
1994 .. table:: OF_SET_MPLS_TTL
1996 +--------------+----------+
1998 +==============+==========+
1999 | ``mpls_ttl`` | MPLS TTL |
2000 +--------------+----------+
2002 Action: ``OF_DEC_MPLS_TTL``
2003 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
2005 Implements ``OFPAT_DEC_MPLS_TTL`` ("decrement MPLS TTL") as defined by the
2006 `OpenFlow Switch Specification`_.
2008 .. _table_rte_flow_action_of_dec_mpls_ttl:
2010 .. table:: OF_DEC_MPLS_TTL
2018 Action: ``OF_SET_NW_TTL``
2019 ^^^^^^^^^^^^^^^^^^^^^^^^^
2021 Implements ``OFPAT_SET_NW_TTL`` ("IP TTL") as defined by the `OpenFlow
2022 Switch Specification`_.
2024 .. _table_rte_flow_action_of_set_nw_ttl:
2026 .. table:: OF_SET_NW_TTL
2028 +------------+--------+
2030 +============+========+
2031 | ``nw_ttl`` | IP TTL |
2032 +------------+--------+
2034 Action: ``OF_DEC_NW_TTL``
2035 ^^^^^^^^^^^^^^^^^^^^^^^^^
2037 Implements ``OFPAT_DEC_NW_TTL`` ("decrement IP TTL") as defined by the
2038 `OpenFlow Switch Specification`_.
2040 .. _table_rte_flow_action_of_dec_nw_ttl:
2042 .. table:: OF_DEC_NW_TTL
2050 Action: ``OF_COPY_TTL_OUT``
2051 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
2053 Implements ``OFPAT_COPY_TTL_OUT`` ("copy TTL "outwards" -- from
2054 next-to-outermost to outermost") as defined by the `OpenFlow Switch
2057 .. _table_rte_flow_action_of_copy_ttl_out:
2059 .. table:: OF_COPY_TTL_OUT
2067 Action: ``OF_COPY_TTL_IN``
2068 ^^^^^^^^^^^^^^^^^^^^^^^^^^
2070 Implements ``OFPAT_COPY_TTL_IN`` ("copy TTL "inwards" -- from outermost to
2071 next-to-outermost") as defined by the `OpenFlow Switch Specification`_.
2073 .. _table_rte_flow_action_of_copy_ttl_in:
2075 .. table:: OF_COPY_TTL_IN
2083 Action: ``OF_POP_VLAN``
2084 ^^^^^^^^^^^^^^^^^^^^^^^
2086 Implements ``OFPAT_POP_VLAN`` ("pop the outer VLAN tag") as defined
2087 by the `OpenFlow Switch Specification`_.
2089 .. _table_rte_flow_action_of_pop_vlan:
2091 .. table:: OF_POP_VLAN
2099 Action: ``OF_PUSH_VLAN``
2100 ^^^^^^^^^^^^^^^^^^^^^^^^
2102 Implements ``OFPAT_PUSH_VLAN`` ("push a new VLAN tag") as defined by the
2103 `OpenFlow Switch Specification`_.
2105 .. _table_rte_flow_action_of_push_vlan:
2107 .. table:: OF_PUSH_VLAN
2109 +---------------+-----------+
2111 +===============+===========+
2112 | ``ethertype`` | EtherType |
2113 +---------------+-----------+
2115 Action: ``OF_SET_VLAN_VID``
2116 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
2118 Implements ``OFPAT_SET_VLAN_VID`` ("set the 802.1q VLAN id") as defined by
2119 the `OpenFlow Switch Specification`_.
2121 .. _table_rte_flow_action_of_set_vlan_vid:
2123 .. table:: OF_SET_VLAN_VID
2125 +--------------+---------+
2127 +==============+=========+
2128 | ``vlan_vid`` | VLAN id |
2129 +--------------+---------+
2131 Action: ``OF_SET_VLAN_PCP``
2132 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
2134 Implements ``OFPAT_SET_LAN_PCP`` ("set the 802.1q priority") as defined by
2135 the `OpenFlow Switch Specification`_.
2137 .. _table_rte_flow_action_of_set_vlan_pcp:
2139 .. table:: OF_SET_VLAN_PCP
2141 +--------------+---------------+
2143 +==============+===============+
2144 | ``vlan_pcp`` | VLAN priority |
2145 +--------------+---------------+
2147 Action: ``OF_POP_MPLS``
2148 ^^^^^^^^^^^^^^^^^^^^^^^
2150 Implements ``OFPAT_POP_MPLS`` ("pop the outer MPLS tag") as defined by the
2151 `OpenFlow Switch Specification`_.
2153 .. _table_rte_flow_action_of_pop_mpls:
2155 .. table:: OF_POP_MPLS
2157 +---------------+-----------+
2159 +===============+===========+
2160 | ``ethertype`` | EtherType |
2161 +---------------+-----------+
2163 Action: ``OF_PUSH_MPLS``
2164 ^^^^^^^^^^^^^^^^^^^^^^^^
2166 Implements ``OFPAT_PUSH_MPLS`` ("push a new MPLS tag") as defined by the
2167 `OpenFlow Switch Specification`_.
2169 .. _table_rte_flow_action_of_push_mpls:
2171 .. table:: OF_PUSH_MPLS
2173 +---------------+-----------+
2175 +===============+===========+
2176 | ``ethertype`` | EtherType |
2177 +---------------+-----------+
2179 Action: ``VXLAN_ENCAP``
2180 ^^^^^^^^^^^^^^^^^^^^^^^
2182 Performs a VXLAN encapsulation action by encapsulating the matched flow in the
2183 VXLAN tunnel as defined in the``rte_flow_action_vxlan_encap`` flow items
2186 This action modifies the payload of matched flows. The flow definition specified
2187 in the ``rte_flow_action_tunnel_encap`` action structure must define a valid
2188 VLXAN network overlay which conforms with RFC 7348 (Virtual eXtensible Local
2189 Area Network (VXLAN): A Framework for Overlaying Virtualized Layer 2 Networks
2190 over Layer 3 Networks). The pattern must be terminated with the
2191 RTE_FLOW_ITEM_TYPE_END item type.
2193 .. _table_rte_flow_action_vxlan_encap:
2195 .. table:: VXLAN_ENCAP
2197 +----------------+-------------------------------------+
2199 +================+=====================================+
2200 | ``definition`` | Tunnel end-point overlay definition |
2201 +----------------+-------------------------------------+
2203 .. _table_rte_flow_action_vxlan_encap_example:
2205 .. table:: IPv4 VxLAN flow pattern example.
2207 +-------+----------+
2209 +=======+==========+
2211 +-------+----------+
2213 +-------+----------+
2215 +-------+----------+
2217 +-------+----------+
2219 +-------+----------+
2221 Action: ``VXLAN_DECAP``
2222 ^^^^^^^^^^^^^^^^^^^^^^^
2224 Performs a decapsulation action by stripping all headers of the VXLAN tunnel
2225 network overlay from the matched flow.
2227 The flow items pattern defined for the flow rule with which a ``VXLAN_DECAP``
2228 action is specified, must define a valid VXLAN tunnel as per RFC7348. If the
2229 flow pattern does not specify a valid VXLAN tunnel then a
2230 RTE_FLOW_ERROR_TYPE_ACTION error should be returned.
2232 This action modifies the payload of matched flows.
2234 Action: ``NVGRE_ENCAP``
2235 ^^^^^^^^^^^^^^^^^^^^^^^
2237 Performs a NVGRE encapsulation action by encapsulating the matched flow in the
2238 NVGRE tunnel as defined in the``rte_flow_action_tunnel_encap`` flow item
2241 This action modifies the payload of matched flows. The flow definition specified
2242 in the ``rte_flow_action_tunnel_encap`` action structure must defined a valid
2243 NVGRE network overlay which conforms with RFC 7637 (NVGRE: Network
2244 Virtualization Using Generic Routing Encapsulation). The pattern must be
2245 terminated with the RTE_FLOW_ITEM_TYPE_END item type.
2247 .. _table_rte_flow_action_nvgre_encap:
2249 .. table:: NVGRE_ENCAP
2251 +----------------+-------------------------------------+
2253 +================+=====================================+
2254 | ``definition`` | NVGRE end-point overlay definition |
2255 +----------------+-------------------------------------+
2257 .. _table_rte_flow_action_nvgre_encap_example:
2259 .. table:: IPv4 NVGRE flow pattern example.
2261 +-------+----------+
2263 +=======+==========+
2265 +-------+----------+
2267 +-------+----------+
2269 +-------+----------+
2271 +-------+----------+
2273 Action: ``NVGRE_DECAP``
2274 ^^^^^^^^^^^^^^^^^^^^^^^
2276 Performs a decapsulation action by stripping all headers of the NVGRE tunnel
2277 network overlay from the matched flow.
2279 The flow items pattern defined for the flow rule with which a ``NVGRE_DECAP``
2280 action is specified, must define a valid NVGRE tunnel as per RFC7637. If the
2281 flow pattern does not specify a valid NVGRE tunnel then a
2282 RTE_FLOW_ERROR_TYPE_ACTION error should be returned.
2284 This action modifies the payload of matched flows.
2286 Action: ``RAW_ENCAP``
2287 ^^^^^^^^^^^^^^^^^^^^^
2289 Adds outer header whose template is provided in its data buffer,
2290 as defined in the ``rte_flow_action_raw_encap`` definition.
2292 This action modifies the payload of matched flows. The data supplied must
2293 be a valid header, either holding layer 2 data in case of adding layer 2 after
2294 decap layer 3 tunnel (for example MPLSoGRE) or complete tunnel definition
2295 starting from layer 2 and moving to the tunnel item itself. When applied to
2296 the original packet the resulting packet must be a valid packet.
2298 .. _table_rte_flow_action_raw_encap:
2300 .. table:: RAW_ENCAP
2302 +----------------+----------------------------------------+
2304 +================+========================================+
2305 | ``data`` | Encapsulation data |
2306 +----------------+----------------------------------------+
2307 | ``preserve`` | Bit-mask of data to preserve on output |
2308 +----------------+----------------------------------------+
2309 | ``size`` | Size of data and preserve |
2310 +----------------+----------------------------------------+
2312 Action: ``RAW_DECAP``
2313 ^^^^^^^^^^^^^^^^^^^^^^^
2315 Remove outer header whose template is provided in its data buffer,
2316 as defined in the ``rte_flow_action_raw_decap``
2318 This action modifies the payload of matched flows. The data supplied must
2319 be a valid header, either holding layer 2 data in case of removing layer 2
2320 before encapsulation of layer 3 tunnel (for example MPLSoGRE) or complete
2321 tunnel definition starting from layer 2 and moving to the tunnel item itself.
2322 When applied to the original packet the resulting packet must be a
2325 .. _table_rte_flow_action_raw_decap:
2327 .. table:: RAW_DECAP
2329 +----------------+----------------------------------------+
2331 +================+========================================+
2332 | ``data`` | Decapsulation data |
2333 +----------------+----------------------------------------+
2334 | ``size`` | Size of data |
2335 +----------------+----------------------------------------+
2337 Action: ``SET_IPV4_SRC``
2338 ^^^^^^^^^^^^^^^^^^^^^^^^
2340 Set a new IPv4 source address in the outermost IPv4 header.
2342 It must be used with a valid RTE_FLOW_ITEM_TYPE_IPV4 flow pattern item.
2343 Otherwise, RTE_FLOW_ERROR_TYPE_ACTION error will be returned.
2345 .. _table_rte_flow_action_set_ipv4_src:
2347 .. table:: SET_IPV4_SRC
2349 +-----------------------------------------+
2351 +===============+=========================+
2352 | ``ipv4_addr`` | new IPv4 source address |
2353 +---------------+-------------------------+
2355 Action: ``SET_IPV4_DST``
2356 ^^^^^^^^^^^^^^^^^^^^^^^^
2358 Set a new IPv4 destination address in the outermost IPv4 header.
2360 It must be used with a valid RTE_FLOW_ITEM_TYPE_IPV4 flow pattern item.
2361 Otherwise, RTE_FLOW_ERROR_TYPE_ACTION error will be returned.
2363 .. _table_rte_flow_action_set_ipv4_dst:
2365 .. table:: SET_IPV4_DST
2367 +---------------+------------------------------+
2369 +===============+==============================+
2370 | ``ipv4_addr`` | new IPv4 destination address |
2371 +---------------+------------------------------+
2373 Action: ``SET_IPV6_SRC``
2374 ^^^^^^^^^^^^^^^^^^^^^^^^
2376 Set a new IPv6 source address in the outermost IPv6 header.
2378 It must be used with a valid RTE_FLOW_ITEM_TYPE_IPV6 flow pattern item.
2379 Otherwise, RTE_FLOW_ERROR_TYPE_ACTION error will be returned.
2381 .. _table_rte_flow_action_set_ipv6_src:
2383 .. table:: SET_IPV6_SRC
2385 +---------------+-------------------------+
2387 +===============+=========================+
2388 | ``ipv6_addr`` | new IPv6 source address |
2389 +---------------+-------------------------+
2391 Action: ``SET_IPV6_DST``
2392 ^^^^^^^^^^^^^^^^^^^^^^^^
2394 Set a new IPv6 destination address in the outermost IPv6 header.
2396 It must be used with a valid RTE_FLOW_ITEM_TYPE_IPV6 flow pattern item.
2397 Otherwise, RTE_FLOW_ERROR_TYPE_ACTION error will be returned.
2399 .. _table_rte_flow_action_set_ipv6_dst:
2401 .. table:: SET_IPV6_DST
2403 +---------------+------------------------------+
2405 +===============+==============================+
2406 | ``ipv6_addr`` | new IPv6 destination address |
2407 +---------------+------------------------------+
2409 Action: ``SET_TP_SRC``
2410 ^^^^^^^^^^^^^^^^^^^^^^^^^
2412 Set a new source port number in the outermost TCP/UDP header.
2414 It must be used with a valid RTE_FLOW_ITEM_TYPE_TCP or RTE_FLOW_ITEM_TYPE_UDP
2415 flow pattern item. Otherwise, RTE_FLOW_ERROR_TYPE_ACTION error will be returned.
2417 .. _table_rte_flow_action_set_tp_src:
2419 .. table:: SET_TP_SRC
2421 +----------+-------------------------+
2423 +==========+=========================+
2424 | ``port`` | new TCP/UDP source port |
2425 +---------------+--------------------+
2427 Action: ``SET_TP_DST``
2428 ^^^^^^^^^^^^^^^^^^^^^^^^^
2430 Set a new destination port number in the outermost TCP/UDP header.
2432 It must be used with a valid RTE_FLOW_ITEM_TYPE_TCP or RTE_FLOW_ITEM_TYPE_UDP
2433 flow pattern item. Otherwise, RTE_FLOW_ERROR_TYPE_ACTION error will be returned.
2435 .. _table_rte_flow_action_set_tp_dst:
2437 .. table:: SET_TP_DST
2439 +----------+------------------------------+
2441 +==========+==============================+
2442 | ``port`` | new TCP/UDP destination port |
2443 +---------------+-------------------------+
2445 Action: ``MAC_SWAP``
2446 ^^^^^^^^^^^^^^^^^^^^^^^^^
2448 Swap the source and destination MAC addresses in the outermost Ethernet
2451 It must be used with a valid RTE_FLOW_ITEM_TYPE_ETH flow pattern item.
2452 Otherwise, RTE_FLOW_ERROR_TYPE_ACTION error will be returned.
2454 .. _table_rte_flow_action_mac_swap:
2469 If there is no valid RTE_FLOW_ITEM_TYPE_IPV4 or RTE_FLOW_ITEM_TYPE_IPV6
2470 in pattern, Some PMDs will reject rule because behavior will be undefined.
2472 .. _table_rte_flow_action_dec_ttl:
2485 Assigns a new TTL value.
2487 If there is no valid RTE_FLOW_ITEM_TYPE_IPV4 or RTE_FLOW_ITEM_TYPE_IPV6
2488 in pattern, Some PMDs will reject rule because behavior will be undefined.
2490 .. _table_rte_flow_action_set_ttl:
2494 +---------------+--------------------+
2496 +===============+====================+
2497 | ``ttl_value`` | new TTL value |
2498 +---------------+--------------------+
2500 Action: ``SET_MAC_SRC``
2501 ^^^^^^^^^^^^^^^^^^^^^^^
2503 Set source MAC address.
2505 It must be used with a valid RTE_FLOW_ITEM_TYPE_ETH flow pattern item.
2506 Otherwise, RTE_FLOW_ERROR_TYPE_ACTION error will be returned.
2508 .. _table_rte_flow_action_set_mac_src:
2510 .. table:: SET_MAC_SRC
2512 +--------------+---------------+
2514 +==============+===============+
2515 | ``mac_addr`` | MAC address |
2516 +--------------+---------------+
2518 Action: ``SET_MAC_DST``
2519 ^^^^^^^^^^^^^^^^^^^^^^^
2521 Set destination MAC address.
2523 It must be used with a valid RTE_FLOW_ITEM_TYPE_ETH flow pattern item.
2524 Otherwise, RTE_FLOW_ERROR_TYPE_ACTION error will be returned.
2526 .. _table_rte_flow_action_set_mac_dst:
2528 .. table:: SET_MAC_DST
2530 +--------------+---------------+
2532 +==============+===============+
2533 | ``mac_addr`` | MAC address |
2534 +--------------+---------------+
2536 Action: ``INC_TCP_SEQ``
2537 ^^^^^^^^^^^^^^^^^^^^^^^
2539 Increase sequence number in the outermost TCP header.
2540 Value to increase TCP sequence number by is a big-endian 32 bit integer.
2542 Using this action on non-matching traffic will result in undefined behavior.
2544 Action: ``DEC_TCP_SEQ``
2545 ^^^^^^^^^^^^^^^^^^^^^^^
2547 Decrease sequence number in the outermost TCP header.
2548 Value to decrease TCP sequence number by is a big-endian 32 bit integer.
2550 Using this action on non-matching traffic will result in undefined behavior.
2552 Action: ``INC_TCP_ACK``
2553 ^^^^^^^^^^^^^^^^^^^^^^^
2555 Increase acknowledgment number in the outermost TCP header.
2556 Value to increase TCP acknowledgment number by is a big-endian 32 bit integer.
2558 Using this action on non-matching traffic will result in undefined behavior.
2560 Action: ``DEC_TCP_ACK``
2561 ^^^^^^^^^^^^^^^^^^^^^^^
2563 Decrease acknowledgment number in the outermost TCP header.
2564 Value to decrease TCP acknowledgment number by is a big-endian 32 bit integer.
2566 Using this action on non-matching traffic will result in undefined behavior.
2573 Tag is a transient data used during flow matching. This is not delivered to
2574 application. Multiple tags are supported by specifying index.
2576 .. _table_rte_flow_action_set_tag:
2580 +-----------+----------------------------+
2582 +===========+============================+
2583 | ``data`` | 32 bit tag value |
2584 +-----------+----------------------------+
2585 | ``mask`` | bit-mask applies to "data" |
2586 +-----------+----------------------------+
2587 | ``index`` | index of tag to set |
2588 +-----------+----------------------------+
2590 Action: ``SET_META``
2591 ^^^^^^^^^^^^^^^^^^^^^^^
2593 Set metadata. Item ``META`` matches metadata.
2595 Metadata set by mbuf metadata field with PKT_TX_DYNF_METADATA flag on egress
2596 will be overridden by this action. On ingress, the metadata will be carried by
2597 ``metadata`` dynamic field of ``rte_mbuf`` which can be accessed by
2598 ``RTE_FLOW_DYNF_METADATA()``. PKT_RX_DYNF_METADATA flag will be set along
2601 The mbuf dynamic field must be registered by calling
2602 ``rte_flow_dynf_metadata_register()`` prior to use ``SET_META`` action.
2604 Altering partial bits is supported with ``mask``. For bits which have never been
2605 set, unpredictable value will be seen depending on driver implementation. For
2606 loopback/hairpin packet, metadata set on Rx/Tx may or may not be propagated to
2607 the other path depending on HW capability.
2609 .. _table_rte_flow_action_set_meta:
2613 +----------+----------------------------+
2615 +==========+============================+
2616 | ``data`` | 32 bit metadata value |
2617 +----------+----------------------------+
2618 | ``mask`` | bit-mask applies to "data" |
2619 +----------+----------------------------+
2621 Action: ``SET_IPV4_DSCP``
2622 ^^^^^^^^^^^^^^^^^^^^^^^^^
2626 Modify DSCP in IPv4 header.
2628 It must be used with RTE_FLOW_ITEM_TYPE_IPV4 in pattern.
2629 Otherwise, RTE_FLOW_ERROR_TYPE_ACTION error will be returned.
2631 .. _table_rte_flow_action_set_ipv4_dscp:
2633 .. table:: SET_IPV4_DSCP
2635 +-----------+---------------------------------+
2637 +===========+=================================+
2638 | ``dscp`` | DSCP in low 6 bits, rest ignore |
2639 +-----------+---------------------------------+
2641 Action: ``SET_IPV6_DSCP``
2642 ^^^^^^^^^^^^^^^^^^^^^^^^^
2646 Modify DSCP in IPv6 header.
2648 It must be used with RTE_FLOW_ITEM_TYPE_IPV6 in pattern.
2649 Otherwise, RTE_FLOW_ERROR_TYPE_ACTION error will be returned.
2651 .. _table_rte_flow_action_set_ipv6_dscp:
2653 .. table:: SET_IPV6_DSCP
2655 +-----------+---------------------------------+
2657 +===========+=================================+
2658 | ``dscp`` | DSCP in low 6 bits, rest ignore |
2659 +-----------+---------------------------------+
2664 Set ageing timeout configuration to a flow.
2666 Event RTE_ETH_EVENT_FLOW_AGED will be reported if
2667 timeout passed without any matching on the flow.
2669 .. _table_rte_flow_action_age:
2673 +--------------+---------------------------------+
2675 +==============+=================================+
2676 | ``timeout`` | 24 bits timeout value |
2677 +--------------+---------------------------------+
2678 | ``reserved`` | 8 bits reserved, must be zero |
2679 +--------------+---------------------------------+
2680 | ``context`` | user input flow context |
2681 +--------------+---------------------------------+
2683 Query structure to retrieve ageing status information of a
2684 shared AGE action, or a flow rule using the AGE action:
2686 .. _table_rte_flow_query_age:
2688 .. table:: AGE query
2690 +------------------------------+-----+----------------------------------------+
2691 | Field | I/O | Value |
2692 +==============================+=====+========================================+
2693 | ``aged`` | out | Aging timeout expired |
2694 +------------------------------+-----+----------------------------------------+
2695 | ``sec_since_last_hit_valid`` | out | ``sec_since_last_hit`` value is valid |
2696 +------------------------------+-----+----------------------------------------+
2697 | ``sec_since_last_hit`` | out | Seconds since last traffic hit |
2698 +------------------------------+-----+----------------------------------------+
2703 Adds a sample action to a matched flow.
2705 The matching packets will be duplicated with the specified ``ratio`` and
2706 applied with own set of actions with a fate action, the packets sampled
2707 equals is '1/ratio'. All the packets continue to the target destination.
2709 When the ``ratio`` is set to 1 then the packets will be 100% mirrored.
2710 ``actions`` represent the different set of actions for the sampled or mirrored
2711 packets, and must have a fate action.
2713 .. _table_rte_flow_action_sample:
2717 +--------------+---------------------------------+
2719 +==============+=================================+
2720 | ``ratio`` | 32 bits sample ratio value |
2721 +--------------+---------------------------------+
2722 | ``actions`` | sub-action list for sampling |
2723 +--------------+---------------------------------+
2728 Flow utilize shared action by handle as returned from
2729 ``rte_flow_shared_action_create()``.
2731 The behaviour of the shared action defined by ``action`` argument of type
2732 ``struct rte_flow_action`` passed to ``rte_flow_shared_action_create()``.
2734 .. _table_rte_flow_shared_action:
2747 All specified pattern items (``enum rte_flow_item_type``) and actions
2748 (``enum rte_flow_action_type``) use positive identifiers.
2750 The negative space is reserved for dynamic types generated by PMDs during
2751 run-time. PMDs may encounter them as a result but must not accept negative
2752 identifiers they are not aware of.
2754 A method to generate them remains to be defined.
2759 Pattern item types will be added as new protocols are implemented.
2761 Variable headers support through dedicated pattern items, for example in
2762 order to match specific IPv4 options and IPv6 extension headers would be
2763 stacked after IPv4/IPv6 items.
2765 Other action types are planned but are not defined yet. These include the
2766 ability to alter packet data in several ways, such as performing
2767 encapsulation/decapsulation of tunnel headers.
2772 A rather simple API with few functions is provided to fully manage flow
2775 Each created flow rule is associated with an opaque, PMD-specific handle
2776 pointer. The application is responsible for keeping it until the rule is
2779 Flows rules are represented by ``struct rte_flow`` objects.
2784 Given that expressing a definite set of device capabilities is not
2785 practical, a dedicated function is provided to check if a flow rule is
2786 supported and can be created.
2791 rte_flow_validate(uint16_t port_id,
2792 const struct rte_flow_attr *attr,
2793 const struct rte_flow_item pattern[],
2794 const struct rte_flow_action actions[],
2795 struct rte_flow_error *error);
2797 The flow rule is validated for correctness and whether it could be accepted
2798 by the device given sufficient resources. The rule is checked against the
2799 current device mode and queue configuration. The flow rule may also
2800 optionally be validated against existing flow rules and device resources.
2801 This function has no effect on the target device.
2803 The returned value is guaranteed to remain valid only as long as no
2804 successful calls to ``rte_flow_create()`` or ``rte_flow_destroy()`` are made
2805 in the meantime and no device parameter affecting flow rules in any way are
2806 modified, due to possible collisions or resource limitations (although in
2807 such cases ``EINVAL`` should not be returned).
2811 - ``port_id``: port identifier of Ethernet device.
2812 - ``attr``: flow rule attributes.
2813 - ``pattern``: pattern specification (list terminated by the END pattern
2815 - ``actions``: associated actions (list terminated by the END action).
2816 - ``error``: perform verbose error reporting if not NULL. PMDs initialize
2817 this structure in case of error only.
2821 - 0 if flow rule is valid and can be created. A negative errno value
2822 otherwise (``rte_errno`` is also set), the following errors are defined.
2823 - ``-ENOSYS``: underlying device does not support this functionality.
2824 - ``-EINVAL``: unknown or invalid rule specification.
2825 - ``-ENOTSUP``: valid but unsupported rule specification (e.g. partial
2826 bit-masks are unsupported).
2827 - ``EEXIST``: collision with an existing rule. Only returned if device
2828 supports flow rule collision checking and there was a flow rule
2829 collision. Not receiving this return code is no guarantee that creating
2830 the rule will not fail due to a collision.
2831 - ``ENOMEM``: not enough memory to execute the function, or if the device
2832 supports resource validation, resource limitation on the device.
2833 - ``-EBUSY``: action cannot be performed due to busy device resources, may
2834 succeed if the affected queues or even the entire port are in a stopped
2835 state (see ``rte_eth_dev_rx_queue_stop()`` and ``rte_eth_dev_stop()``).
2840 Creating a flow rule is similar to validating one, except the rule is
2841 actually created and a handle returned.
2846 rte_flow_create(uint16_t port_id,
2847 const struct rte_flow_attr *attr,
2848 const struct rte_flow_item pattern[],
2849 const struct rte_flow_action *actions[],
2850 struct rte_flow_error *error);
2854 - ``port_id``: port identifier of Ethernet device.
2855 - ``attr``: flow rule attributes.
2856 - ``pattern``: pattern specification (list terminated by the END pattern
2858 - ``actions``: associated actions (list terminated by the END action).
2859 - ``error``: perform verbose error reporting if not NULL. PMDs initialize
2860 this structure in case of error only.
2864 A valid handle in case of success, NULL otherwise and ``rte_errno`` is set
2865 to the positive version of one of the error codes defined for
2866 ``rte_flow_validate()``.
2871 Flow rules destruction is not automatic, and a queue or a port should not be
2872 released if any are still attached to them. Applications must take care of
2873 performing this step before releasing resources.
2878 rte_flow_destroy(uint16_t port_id,
2879 struct rte_flow *flow,
2880 struct rte_flow_error *error);
2883 Failure to destroy a flow rule handle may occur when other flow rules depend
2884 on it, and destroying it would result in an inconsistent state.
2886 This function is only guaranteed to succeed if handles are destroyed in
2887 reverse order of their creation.
2891 - ``port_id``: port identifier of Ethernet device.
2892 - ``flow``: flow rule handle to destroy.
2893 - ``error``: perform verbose error reporting if not NULL. PMDs initialize
2894 this structure in case of error only.
2898 - 0 on success, a negative errno value otherwise and ``rte_errno`` is set.
2903 Convenience function to destroy all flow rule handles associated with a
2904 port. They are released as with successive calls to ``rte_flow_destroy()``.
2909 rte_flow_flush(uint16_t port_id,
2910 struct rte_flow_error *error);
2912 In the unlikely event of failure, handles are still considered destroyed and
2913 no longer valid but the port must be assumed to be in an inconsistent state.
2917 - ``port_id``: port identifier of Ethernet device.
2918 - ``error``: perform verbose error reporting if not NULL. PMDs initialize
2919 this structure in case of error only.
2923 - 0 on success, a negative errno value otherwise and ``rte_errno`` is set.
2928 Query an existing flow rule.
2930 This function allows retrieving flow-specific data such as counters. Data
2931 is gathered by special actions which must be present in the flow rule
2937 rte_flow_query(uint16_t port_id,
2938 struct rte_flow *flow,
2939 const struct rte_flow_action *action,
2941 struct rte_flow_error *error);
2945 - ``port_id``: port identifier of Ethernet device.
2946 - ``flow``: flow rule handle to query.
2947 - ``action``: action to query, this must match prototype from flow rule.
2948 - ``data``: pointer to storage for the associated query data type.
2949 - ``error``: perform verbose error reporting if not NULL. PMDs initialize
2950 this structure in case of error only.
2954 - 0 on success, a negative errno value otherwise and ``rte_errno`` is set.
2956 .. _flow_isolated_mode:
2961 The general expectation for ingress traffic is that flow rules process it
2962 first; the remaining unmatched or pass-through traffic usually ends up in a
2963 queue (with or without RSS, locally or in some sub-device instance)
2964 depending on the global configuration settings of a port.
2966 While fine from a compatibility standpoint, this approach makes drivers more
2967 complex as they have to check for possible side effects outside of this API
2968 when creating or destroying flow rules. It results in a more limited set of
2969 available rule types due to the way device resources are assigned (e.g. no
2970 support for the RSS action even on capable hardware).
2972 Given that nonspecific traffic can be handled by flow rules as well,
2973 isolated mode is a means for applications to tell a driver that ingress on
2974 the underlying port must be injected from the defined flow rules only; that
2975 no default traffic is expected outside those rules.
2977 This has the following benefits:
2979 - Applications get finer-grained control over the kind of traffic they want
2980 to receive (no traffic by default).
2982 - More importantly they control at what point nonspecific traffic is handled
2983 relative to other flow rules, by adjusting priority levels.
2985 - Drivers can assign more hardware resources to flow rules and expand the
2986 set of supported rule types.
2988 Because toggling isolated mode may cause profound changes to the ingress
2989 processing path of a driver, it may not be possible to leave it once
2990 entered. Likewise, existing flow rules or global configuration settings may
2991 prevent a driver from entering isolated mode.
2993 Applications relying on this mode are therefore encouraged to toggle it as
2994 soon as possible after device initialization, ideally before the first call
2995 to ``rte_eth_dev_configure()`` to avoid possible failures due to conflicting
2998 Once effective, the following functionality has no effect on the underlying
2999 port and may return errors such as ``ENOTSUP`` ("not supported"):
3001 - Toggling promiscuous mode.
3002 - Toggling allmulticast mode.
3003 - Configuring MAC addresses.
3004 - Configuring multicast addresses.
3005 - Configuring VLAN filters.
3006 - Configuring Rx filters through the legacy API (e.g. FDIR).
3007 - Configuring global RSS settings.
3012 rte_flow_isolate(uint16_t port_id, int set, struct rte_flow_error *error);
3016 - ``port_id``: port identifier of Ethernet device.
3017 - ``set``: nonzero to enter isolated mode, attempt to leave it otherwise.
3018 - ``error``: perform verbose error reporting if not NULL. PMDs initialize
3019 this structure in case of error only.
3023 - 0 on success, a negative errno value otherwise and ``rte_errno`` is set.
3025 Verbose error reporting
3026 -----------------------
3028 The defined *errno* values may not be accurate enough for users or
3029 application developers who want to investigate issues related to flow rules
3030 management. A dedicated error object is defined for this purpose:
3034 enum rte_flow_error_type {
3035 RTE_FLOW_ERROR_TYPE_NONE, /**< No error. */
3036 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, /**< Cause unspecified. */
3037 RTE_FLOW_ERROR_TYPE_HANDLE, /**< Flow rule (handle). */
3038 RTE_FLOW_ERROR_TYPE_ATTR_GROUP, /**< Group field. */
3039 RTE_FLOW_ERROR_TYPE_ATTR_PRIORITY, /**< Priority field. */
3040 RTE_FLOW_ERROR_TYPE_ATTR_INGRESS, /**< Ingress field. */
3041 RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, /**< Egress field. */
3042 RTE_FLOW_ERROR_TYPE_ATTR, /**< Attributes structure. */
3043 RTE_FLOW_ERROR_TYPE_ITEM_NUM, /**< Pattern length. */
3044 RTE_FLOW_ERROR_TYPE_ITEM, /**< Specific pattern item. */
3045 RTE_FLOW_ERROR_TYPE_ACTION_NUM, /**< Number of actions. */
3046 RTE_FLOW_ERROR_TYPE_ACTION, /**< Specific action. */
3049 struct rte_flow_error {
3050 enum rte_flow_error_type type; /**< Cause field and error types. */
3051 const void *cause; /**< Object responsible for the error. */
3052 const char *message; /**< Human-readable error message. */
3055 Error type ``RTE_FLOW_ERROR_TYPE_NONE`` stands for no error, in which case
3056 remaining fields can be ignored. Other error types describe the type of the
3057 object pointed by ``cause``.
3059 If non-NULL, ``cause`` points to the object responsible for the error. For a
3060 flow rule, this may be a pattern item or an individual action.
3062 If non-NULL, ``message`` provides a human-readable error message.
3064 This object is normally allocated by applications and set by PMDs in case of
3065 error, the message points to a constant string which does not need to be
3066 freed by the application, however its pointer can be considered valid only
3067 as long as its associated DPDK port remains configured. Closing the
3068 underlying device or unloading the PMD invalidates it.
3079 rte_flow_error_set(struct rte_flow_error *error,
3081 enum rte_flow_error_type type,
3083 const char *message);
3085 This function initializes ``error`` (if non-NULL) with the provided
3086 parameters and sets ``rte_errno`` to ``code``. A negative error ``code`` is
3095 rte_flow_conv(enum rte_flow_conv_op op,
3099 struct rte_flow_error *error);
3101 Convert ``src`` to ``dst`` according to operation ``op``. Possible
3104 - Attributes, pattern item or action duplication.
3105 - Duplication of an entire pattern or list of actions.
3106 - Duplication of a complete flow rule description.
3107 - Pattern item or action name retrieval.
3112 - DPDK does not keep track of flow rules definitions or flow rule objects
3113 automatically. Applications may keep track of the former and must keep
3114 track of the latter. PMDs may also do it for internal needs, however this
3115 must not be relied on by applications.
3117 - Flow rules are not maintained between successive port initializations. An
3118 application exiting without releasing them and restarting must re-create
3121 - API operations are synchronous and blocking (``EAGAIN`` cannot be
3124 - Stopping the data path (TX/RX) should not be necessary when managing flow
3125 rules. If this cannot be achieved naturally or with workarounds (such as
3126 temporarily replacing the burst function pointers), an appropriate error
3127 code must be returned (``EBUSY``).
3129 - PMDs, not applications, are responsible for maintaining flow rules
3130 configuration when stopping and restarting a port or performing other
3131 actions which may affect them. They can only be destroyed explicitly by
3134 For devices exposing multiple ports sharing global settings affected by flow
3137 - All ports under DPDK control must behave consistently, PMDs are
3138 responsible for making sure that existing flow rules on a port are not
3139 affected by other ports.
3141 - Ports not under DPDK control (unaffected or handled by other applications)
3142 are user's responsibility. They may affect existing flow rules and cause
3143 undefined behavior. PMDs aware of this may prevent flow rules creation
3144 altogether in such cases.
3149 The PMD interface is defined in ``rte_flow_driver.h``. It is not subject to
3150 API/ABI versioning constraints as it is not exposed to applications and may
3151 evolve independently.
3153 It is currently implemented on top of the legacy filtering framework through
3154 filter type *RTE_ETH_FILTER_GENERIC* that accepts the single operation
3155 *RTE_ETH_FILTER_GET* to return PMD-specific *rte_flow* callbacks wrapped
3156 inside ``struct rte_flow_ops``.
3158 This overhead is temporarily necessary in order to keep compatibility with
3159 the legacy filtering framework, which should eventually disappear.
3161 - PMD callbacks implement exactly the interface described in `Rules
3162 management`_, except for the port ID argument which has already been
3163 converted to a pointer to the underlying ``struct rte_eth_dev``.
3165 - Public API functions do not process flow rules definitions at all before
3166 calling PMD functions (no basic error checking, no validation
3167 whatsoever). They only make sure these callbacks are non-NULL or return
3168 the ``ENOSYS`` (function not supported) error.
3170 This interface additionally defines the following helper function:
3172 - ``rte_flow_ops_get()``: get generic flow operations structure from a
3175 If PMD interfaces don't support re-entrancy/multi-thread safety,
3176 the rte_flow API functions will protect threads by mutex per port.
3177 The application can check whether ``RTE_ETH_DEV_FLOW_OPS_THREAD_SAFE``
3178 is set in ``dev_flags``, meaning the PMD is thread-safe regarding rte_flow,
3179 so the API level protection is disabled.
3180 Please note that this API-level mutex protects only rte_flow functions,
3181 other control path functions are not in scope.
3183 More will be added over time.
3185 Device compatibility
3186 --------------------
3188 No known implementation supports all the described features.
3190 Unsupported features or combinations are not expected to be fully emulated
3191 in software by PMDs for performance reasons. Partially supported features
3192 may be completed in software as long as hardware performs most of the work
3193 (such as queue redirection and packet recognition).
3195 However PMDs are expected to do their best to satisfy application requests
3196 by working around hardware limitations as long as doing so does not affect
3197 the behavior of existing flow rules.
3199 The following sections provide a few examples of such cases and describe how
3200 PMDs should handle them, they are based on limitations built into the
3206 Each flow rule comes with its own, per-layer bit-masks, while hardware may
3207 support only a single, device-wide bit-mask for a given layer type, so that
3208 two IPv4 rules cannot use different bit-masks.
3210 The expected behavior in this case is that PMDs automatically configure
3211 global bit-masks according to the needs of the first flow rule created.
3213 Subsequent rules are allowed only if their bit-masks match those, the
3214 ``EEXIST`` error code should be returned otherwise.
3216 Unsupported layer types
3217 ~~~~~~~~~~~~~~~~~~~~~~~
3219 Many protocols can be simulated by crafting patterns with the `Item: RAW`_
3222 PMDs can rely on this capability to simulate support for protocols with
3223 headers not directly recognized by hardware.
3225 ``ANY`` pattern item
3226 ~~~~~~~~~~~~~~~~~~~~
3228 This pattern item stands for anything, which can be difficult to translate
3229 to something hardware would understand, particularly if followed by more
3232 Consider the following pattern:
3234 .. _table_rte_flow_unsupported_any:
3236 .. table:: Pattern with ANY as L3
3238 +-------+-----------------------+
3240 +=======+=======================+
3242 +-------+-----+---------+-------+
3243 | 1 | ANY | ``num`` | ``1`` |
3244 +-------+-----+---------+-------+
3246 +-------+-----------------------+
3248 +-------+-----------------------+
3250 Knowing that TCP does not make sense with something other than IPv4 and IPv6
3251 as L3, such a pattern may be translated to two flow rules instead:
3253 .. _table_rte_flow_unsupported_any_ipv4:
3255 .. table:: ANY replaced with IPV4
3257 +-------+--------------------+
3259 +=======+====================+
3261 +-------+--------------------+
3262 | 1 | IPV4 (zeroed mask) |
3263 +-------+--------------------+
3265 +-------+--------------------+
3267 +-------+--------------------+
3271 .. _table_rte_flow_unsupported_any_ipv6:
3273 .. table:: ANY replaced with IPV6
3275 +-------+--------------------+
3277 +=======+====================+
3279 +-------+--------------------+
3280 | 1 | IPV6 (zeroed mask) |
3281 +-------+--------------------+
3283 +-------+--------------------+
3285 +-------+--------------------+
3287 Note that as soon as a ANY rule covers several layers, this approach may
3288 yield a large number of hidden flow rules. It is thus suggested to only
3289 support the most common scenarios (anything as L2 and/or L3).
3294 - When combined with `Action: QUEUE`_, packet counting (`Action: COUNT`_)
3295 and tagging (`Action: MARK`_ or `Action: FLAG`_) may be implemented in
3296 software as long as the target queue is used by a single rule.
3298 - When a single target queue is provided, `Action: RSS`_ can also be
3299 implemented through `Action: QUEUE`_.
3304 While it would naturally make sense, flow rules cannot be assumed to be
3305 processed by hardware in the same order as their creation for several
3308 - They may be managed internally as a tree or a hash table instead of a
3310 - Removing a flow rule before adding another one can either put the new rule
3311 at the end of the list or reuse a freed entry.
3312 - Duplication may occur when packets are matched by several rules.
3314 For overlapping rules (particularly in order to use `Action: PASSTHRU`_)
3315 predictable behavior is only guaranteed by using different priority levels.
3317 Priority levels are not necessarily implemented in hardware, or may be
3318 severely limited (e.g. a single priority bit).
3320 For these reasons, priority levels may be implemented purely in software by
3323 - For devices expecting flow rules to be added in the correct order, PMDs
3324 may destroy and re-create existing rules after adding a new one with
3327 - A configurable number of dummy or empty rules can be created at
3328 initialization time to save high priority slots for later.
3330 - In order to save priority levels, PMDs may evaluate whether rules are
3331 likely to collide and adjust their priority accordingly.
3336 - A device profile selection function which could be used to force a
3337 permanent profile instead of relying on its automatic configuration based
3338 on existing flow rules.
3340 - A method to optimize *rte_flow* rules with specific pattern items and
3341 action types generated on the fly by PMDs. DPDK should assign negative
3342 numbers to these in order to not collide with the existing types. See
3345 - Adding specific egress pattern items and actions as described in
3346 `Attribute: Traffic direction`_.
3348 - Optional software fallback when PMDs are unable to handle requested flow
3349 rules so applications do not have to implement their own.
3351 .. _OpenFlow Switch Specification: https://www.opennetworking.org/software-defined-standards/specifications/