ethdev: add flow action to swap MAC addresses
[dpdk.git] / doc / guides / prog_guide / rte_flow.rst
1 ..  SPDX-License-Identifier: BSD-3-Clause
2     Copyright 2016 6WIND S.A.
3     Copyright 2016 Mellanox Technologies, Ltd
4
5 .. _Generic_flow_API:
6
7 Generic flow API (rte_flow)
8 ===========================
9
10 Overview
11 --------
12
13 This API provides a generic means to configure hardware to match specific
14 ingress or egress traffic, alter its fate and query related counters
15 according to any number of user-defined rules.
16
17 It is named *rte_flow* after the prefix used for all its symbols, and is
18 defined in ``rte_flow.h``.
19
20 - Matching can be performed on packet data (protocol headers, payload) and
21   properties (e.g. associated physical port, virtual device function ID).
22
23 - Possible operations include dropping traffic, diverting it to specific
24   queues, to virtual/physical device functions or ports, performing tunnel
25   offloads, adding marks and so on.
26
27 It is slightly higher-level than the legacy filtering framework which it
28 encompasses and supersedes (including all functions and filter types) in
29 order to expose a single interface with an unambiguous behavior that is
30 common to all poll-mode drivers (PMDs).
31
32 Flow rule
33 ---------
34
35 Description
36 ~~~~~~~~~~~
37
38 A flow rule is the combination of attributes with a matching pattern and a
39 list of actions. Flow rules form the basis of this API.
40
41 Flow rules can have several distinct actions (such as counting,
42 encapsulating, decapsulating before redirecting packets to a particular
43 queue, etc.), instead of relying on several rules to achieve this and having
44 applications deal with hardware implementation details regarding their
45 order.
46
47 Support for different priority levels on a rule basis is provided, for
48 example in order to force a more specific rule to come before a more generic
49 one for packets matched by both. However hardware support for more than a
50 single priority level cannot be guaranteed. When supported, the number of
51 available priority levels is usually low, which is why they can also be
52 implemented in software by PMDs (e.g. missing priority levels may be
53 emulated by reordering rules).
54
55 In order to remain as hardware-agnostic as possible, by default all rules
56 are considered to have the same priority, which means that the order between
57 overlapping rules (when a packet is matched by several filters) is
58 undefined.
59
60 PMDs may refuse to create overlapping rules at a given priority level when
61 they can be detected (e.g. if a pattern matches an existing filter).
62
63 Thus predictable results for a given priority level can only be achieved
64 with non-overlapping rules, using perfect matching on all protocol layers.
65
66 Flow rules can also be grouped, the flow rule priority is specific to the
67 group they belong to. All flow rules in a given group are thus processed within
68 the context of that group. Groups are not linked by default, so the logical
69 hierarchy of groups must be explicitly defined by flow rules themselves in each
70 group using the JUMP action to define the next group to redirect too. Only flow
71 rules defined in the default group 0 are guarantee to be matched against, this
72 makes group 0 the origin of any group hierarchy defined by an application.
73
74 Support for multiple actions per rule may be implemented internally on top
75 of non-default hardware priorities, as a result both features may not be
76 simultaneously available to applications.
77
78 Considering that allowed pattern/actions combinations cannot be known in
79 advance and would result in an impractically large number of capabilities to
80 expose, a method is provided to validate a given rule from the current
81 device configuration state.
82
83 This enables applications to check if the rule types they need is supported
84 at initialization time, before starting their data path. This method can be
85 used anytime, its only requirement being that the resources needed by a rule
86 should exist (e.g. a target RX queue should be configured first).
87
88 Each defined rule is associated with an opaque handle managed by the PMD,
89 applications are responsible for keeping it. These can be used for queries
90 and rules management, such as retrieving counters or other data and
91 destroying them.
92
93 To avoid resource leaks on the PMD side, handles must be explicitly
94 destroyed by the application before releasing associated resources such as
95 queues and ports.
96
97 The following sections cover:
98
99 - **Attributes** (represented by ``struct rte_flow_attr``): properties of a
100   flow rule such as its direction (ingress or egress) and priority.
101
102 - **Pattern item** (represented by ``struct rte_flow_item``): part of a
103   matching pattern that either matches specific packet data or traffic
104   properties. It can also describe properties of the pattern itself, such as
105   inverted matching.
106
107 - **Matching pattern**: traffic properties to look for, a combination of any
108   number of items.
109
110 - **Actions** (represented by ``struct rte_flow_action``): operations to
111   perform whenever a packet is matched by a pattern.
112
113 Attributes
114 ~~~~~~~~~~
115
116 Attribute: Group
117 ^^^^^^^^^^^^^^^^
118
119 Flow rules can be grouped by assigning them a common group number. Groups
120 allow a logical hierarchy of flow rule groups (tables) to be defined. These
121 groups can be supported virtually in the PMD or in the physical device.
122 Group 0 is the default group and this is the only group which flows are
123 guarantee to matched against, all subsequent groups can only be reached by
124 way of the JUMP action from a matched flow rule.
125
126 Although optional, applications are encouraged to group similar rules as
127 much as possible to fully take advantage of hardware capabilities
128 (e.g. optimized matching) and work around limitations (e.g. a single pattern
129 type possibly allowed in a given group), while being aware that the groups
130 hierarchies must be programmed explicitly.
131
132 Note that support for more than a single group is not guaranteed.
133
134 Attribute: Priority
135 ^^^^^^^^^^^^^^^^^^^
136
137 A priority level can be assigned to a flow rule, lower values
138 denote higher priority, with 0 as the maximum.
139
140 Priority levels are arbitrary and up to the application, they do
141 not need to be contiguous nor start from 0, however the maximum number
142 varies between devices and may be affected by existing flow rules.
143
144 A flow which matches multiple rules in the same group will always matched by
145 the rule with the highest priority in that group.
146
147 If a packet is matched by several rules of a given group for a given
148 priority level, the outcome is undefined. It can take any path, may be
149 duplicated or even cause unrecoverable errors.
150
151 Note that support for more than a single priority level is not guaranteed.
152
153 Attribute: Traffic direction
154 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
155
156 Flow rule patterns apply to inbound and/or outbound traffic.
157
158 In the context of this API, **ingress** and **egress** respectively stand
159 for **inbound** and **outbound** based on the standpoint of the application
160 creating a flow rule.
161
162 There are no exceptions to this definition.
163
164 Several pattern items and actions are valid and can be used in both
165 directions. At least one direction must be specified.
166
167 Specifying both directions at once for a given rule is not recommended but
168 may be valid in a few cases (e.g. shared counters).
169
170 Attribute: Transfer
171 ^^^^^^^^^^^^^^^^^^^
172
173 Instead of simply matching the properties of traffic as it would appear on a
174 given DPDK port ID, enabling this attribute transfers a flow rule to the
175 lowest possible level of any device endpoints found in the pattern.
176
177 When supported, this effectively enables an application to reroute traffic
178 not necessarily intended for it (e.g. coming from or addressed to different
179 physical ports, VFs or applications) at the device level.
180
181 It complements the behavior of some pattern items such as `Item: PHY_PORT`_
182 and is meaningless without them.
183
184 When transferring flow rules, **ingress** and **egress** attributes
185 (`Attribute: Traffic direction`_) keep their original meaning, as if
186 processing traffic emitted or received by the application.
187
188 Pattern item
189 ~~~~~~~~~~~~
190
191 Pattern items fall in two categories:
192
193 - Matching protocol headers and packet data, usually associated with a
194   specification structure. These must be stacked in the same order as the
195   protocol layers to match inside packets, starting from the lowest.
196
197 - Matching meta-data or affecting pattern processing, often without a
198   specification structure. Since they do not match packet contents, their
199   position in the list is usually not relevant.
200
201 Item specification structures are used to match specific values among
202 protocol fields (or item properties). Documentation describes for each item
203 whether they are associated with one and their type name if so.
204
205 Up to three structures of the same type can be set for a given item:
206
207 - ``spec``: values to match (e.g. a given IPv4 address).
208
209 - ``last``: upper bound for an inclusive range with corresponding fields in
210   ``spec``.
211
212 - ``mask``: bit-mask applied to both ``spec`` and ``last`` whose purpose is
213   to distinguish the values to take into account and/or partially mask them
214   out (e.g. in order to match an IPv4 address prefix).
215
216 Usage restrictions and expected behavior:
217
218 - Setting either ``mask`` or ``last`` without ``spec`` is an error.
219
220 - Field values in ``last`` which are either 0 or equal to the corresponding
221   values in ``spec`` are ignored; they do not generate a range. Nonzero
222   values lower than those in ``spec`` are not supported.
223
224 - Setting ``spec`` and optionally ``last`` without ``mask`` causes the PMD
225   to use the default mask defined for that item (defined as
226   ``rte_flow_item_{name}_mask`` constants).
227
228 - Not setting any of them (assuming item type allows it) is equivalent to
229   providing an empty (zeroed) ``mask`` for broad (nonspecific) matching.
230
231 - ``mask`` is a simple bit-mask applied before interpreting the contents of
232   ``spec`` and ``last``, which may yield unexpected results if not used
233   carefully. For example, if for an IPv4 address field, ``spec`` provides
234   *10.1.2.3*, ``last`` provides *10.3.4.5* and ``mask`` provides
235   *255.255.0.0*, the effective range becomes *10.1.0.0* to *10.3.255.255*.
236
237 Example of an item specification matching an Ethernet header:
238
239 .. _table_rte_flow_pattern_item_example:
240
241 .. table:: Ethernet item
242
243    +----------+----------+--------------------+
244    | Field    | Subfield | Value              |
245    +==========+==========+====================+
246    | ``spec`` | ``src``  | ``00:01:02:03:04`` |
247    |          +----------+--------------------+
248    |          | ``dst``  | ``00:2a:66:00:01`` |
249    |          +----------+--------------------+
250    |          | ``type`` | ``0x22aa``         |
251    +----------+----------+--------------------+
252    | ``last`` | unspecified                   |
253    +----------+----------+--------------------+
254    | ``mask`` | ``src``  | ``00:ff:ff:ff:00`` |
255    |          +----------+--------------------+
256    |          | ``dst``  | ``00:00:00:00:ff`` |
257    |          +----------+--------------------+
258    |          | ``type`` | ``0x0000``         |
259    +----------+----------+--------------------+
260
261 Non-masked bits stand for any value (shown as ``?`` below), Ethernet headers
262 with the following properties are thus matched:
263
264 - ``src``: ``??:01:02:03:??``
265 - ``dst``: ``??:??:??:??:01``
266 - ``type``: ``0x????``
267
268 Matching pattern
269 ~~~~~~~~~~~~~~~~
270
271 A pattern is formed by stacking items starting from the lowest protocol
272 layer to match. This stacking restriction does not apply to meta items which
273 can be placed anywhere in the stack without affecting the meaning of the
274 resulting pattern.
275
276 Patterns are terminated by END items.
277
278 Examples:
279
280 .. _table_rte_flow_tcpv4_as_l4:
281
282 .. table:: TCPv4 as L4
283
284    +-------+----------+
285    | Index | Item     |
286    +=======+==========+
287    | 0     | Ethernet |
288    +-------+----------+
289    | 1     | IPv4     |
290    +-------+----------+
291    | 2     | TCP      |
292    +-------+----------+
293    | 3     | END      |
294    +-------+----------+
295
296 |
297
298 .. _table_rte_flow_tcpv6_in_vxlan:
299
300 .. table:: TCPv6 in VXLAN
301
302    +-------+------------+
303    | Index | Item       |
304    +=======+============+
305    | 0     | Ethernet   |
306    +-------+------------+
307    | 1     | IPv4       |
308    +-------+------------+
309    | 2     | UDP        |
310    +-------+------------+
311    | 3     | VXLAN      |
312    +-------+------------+
313    | 4     | Ethernet   |
314    +-------+------------+
315    | 5     | IPv6       |
316    +-------+------------+
317    | 6     | TCP        |
318    +-------+------------+
319    | 7     | END        |
320    +-------+------------+
321
322 |
323
324 .. _table_rte_flow_tcpv4_as_l4_meta:
325
326 .. table:: TCPv4 as L4 with meta items
327
328    +-------+----------+
329    | Index | Item     |
330    +=======+==========+
331    | 0     | VOID     |
332    +-------+----------+
333    | 1     | Ethernet |
334    +-------+----------+
335    | 2     | VOID     |
336    +-------+----------+
337    | 3     | IPv4     |
338    +-------+----------+
339    | 4     | TCP      |
340    +-------+----------+
341    | 5     | VOID     |
342    +-------+----------+
343    | 6     | VOID     |
344    +-------+----------+
345    | 7     | END      |
346    +-------+----------+
347
348 The above example shows how meta items do not affect packet data matching
349 items, as long as those remain stacked properly. The resulting matching
350 pattern is identical to "TCPv4 as L4".
351
352 .. _table_rte_flow_udpv6_anywhere:
353
354 .. table:: UDPv6 anywhere
355
356    +-------+------+
357    | Index | Item |
358    +=======+======+
359    | 0     | IPv6 |
360    +-------+------+
361    | 1     | UDP  |
362    +-------+------+
363    | 2     | END  |
364    +-------+------+
365
366 If supported by the PMD, omitting one or several protocol layers at the
367 bottom of the stack as in the above example (missing an Ethernet
368 specification) enables looking up anywhere in packets.
369
370 It is unspecified whether the payload of supported encapsulations
371 (e.g. VXLAN payload) is matched by such a pattern, which may apply to inner,
372 outer or both packets.
373
374 .. _table_rte_flow_invalid_l3:
375
376 .. table:: Invalid, missing L3
377
378    +-------+----------+
379    | Index | Item     |
380    +=======+==========+
381    | 0     | Ethernet |
382    +-------+----------+
383    | 1     | UDP      |
384    +-------+----------+
385    | 2     | END      |
386    +-------+----------+
387
388 The above pattern is invalid due to a missing L3 specification between L2
389 (Ethernet) and L4 (UDP). Doing so is only allowed at the bottom and at the
390 top of the stack.
391
392 Meta item types
393 ~~~~~~~~~~~~~~~
394
395 They match meta-data or affect pattern processing instead of matching packet
396 data directly, most of them do not need a specification structure. This
397 particularity allows them to be specified anywhere in the stack without
398 causing any side effect.
399
400 Item: ``END``
401 ^^^^^^^^^^^^^
402
403 End marker for item lists. Prevents further processing of items, thereby
404 ending the pattern.
405
406 - Its numeric value is 0 for convenience.
407 - PMD support is mandatory.
408 - ``spec``, ``last`` and ``mask`` are ignored.
409
410 .. _table_rte_flow_item_end:
411
412 .. table:: END
413
414    +----------+---------+
415    | Field    | Value   |
416    +==========+=========+
417    | ``spec`` | ignored |
418    +----------+---------+
419    | ``last`` | ignored |
420    +----------+---------+
421    | ``mask`` | ignored |
422    +----------+---------+
423
424 Item: ``VOID``
425 ^^^^^^^^^^^^^^
426
427 Used as a placeholder for convenience. It is ignored and simply discarded by
428 PMDs.
429
430 - PMD support is mandatory.
431 - ``spec``, ``last`` and ``mask`` are ignored.
432
433 .. _table_rte_flow_item_void:
434
435 .. table:: VOID
436
437    +----------+---------+
438    | Field    | Value   |
439    +==========+=========+
440    | ``spec`` | ignored |
441    +----------+---------+
442    | ``last`` | ignored |
443    +----------+---------+
444    | ``mask`` | ignored |
445    +----------+---------+
446
447 One usage example for this type is generating rules that share a common
448 prefix quickly without reallocating memory, only by updating item types:
449
450 .. _table_rte_flow_item_void_example:
451
452 .. table:: TCP, UDP or ICMP as L4
453
454    +-------+--------------------+
455    | Index | Item               |
456    +=======+====================+
457    | 0     | Ethernet           |
458    +-------+--------------------+
459    | 1     | IPv4               |
460    +-------+------+------+------+
461    | 2     | UDP  | VOID | VOID |
462    +-------+------+------+------+
463    | 3     | VOID | TCP  | VOID |
464    +-------+------+------+------+
465    | 4     | VOID | VOID | ICMP |
466    +-------+------+------+------+
467    | 5     | END                |
468    +-------+--------------------+
469
470 Item: ``INVERT``
471 ^^^^^^^^^^^^^^^^
472
473 Inverted matching, i.e. process packets that do not match the pattern.
474
475 - ``spec``, ``last`` and ``mask`` are ignored.
476
477 .. _table_rte_flow_item_invert:
478
479 .. table:: INVERT
480
481    +----------+---------+
482    | Field    | Value   |
483    +==========+=========+
484    | ``spec`` | ignored |
485    +----------+---------+
486    | ``last`` | ignored |
487    +----------+---------+
488    | ``mask`` | ignored |
489    +----------+---------+
490
491 Usage example, matching non-TCPv4 packets only:
492
493 .. _table_rte_flow_item_invert_example:
494
495 .. table:: Anything but TCPv4
496
497    +-------+----------+
498    | Index | Item     |
499    +=======+==========+
500    | 0     | INVERT   |
501    +-------+----------+
502    | 1     | Ethernet |
503    +-------+----------+
504    | 2     | IPv4     |
505    +-------+----------+
506    | 3     | TCP      |
507    +-------+----------+
508    | 4     | END      |
509    +-------+----------+
510
511 Item: ``PF``
512 ^^^^^^^^^^^^
513
514 Matches traffic originating from (ingress) or going to (egress) the physical
515 function of the current device.
516
517 If supported, should work even if the physical function is not managed by
518 the application and thus not associated with a DPDK port ID.
519
520 - Can be combined with any number of `Item: VF`_ to match both PF and VF
521   traffic.
522 - ``spec``, ``last`` and ``mask`` must not be set.
523
524 .. _table_rte_flow_item_pf:
525
526 .. table:: PF
527
528    +----------+-------+
529    | Field    | Value |
530    +==========+=======+
531    | ``spec`` | unset |
532    +----------+-------+
533    | ``last`` | unset |
534    +----------+-------+
535    | ``mask`` | unset |
536    +----------+-------+
537
538 Item: ``VF``
539 ^^^^^^^^^^^^
540
541 Matches traffic originating from (ingress) or going to (egress) a given
542 virtual function of the current device.
543
544 If supported, should work even if the virtual function is not managed by the
545 application and thus not associated with a DPDK port ID.
546
547 Note this pattern item does not match VF representors traffic which, as
548 separate entities, should be addressed through their own DPDK port IDs.
549
550 - Can be specified multiple times to match traffic addressed to several VF
551   IDs.
552 - Can be combined with a PF item to match both PF and VF traffic.
553 - Default ``mask`` matches any VF ID.
554
555 .. _table_rte_flow_item_vf:
556
557 .. table:: VF
558
559    +----------+----------+---------------------------+
560    | Field    | Subfield | Value                     |
561    +==========+==========+===========================+
562    | ``spec`` | ``id``   | destination VF ID         |
563    +----------+----------+---------------------------+
564    | ``last`` | ``id``   | upper range value         |
565    +----------+----------+---------------------------+
566    | ``mask`` | ``id``   | zeroed to match any VF ID |
567    +----------+----------+---------------------------+
568
569 Item: ``PHY_PORT``
570 ^^^^^^^^^^^^^^^^^^
571
572 Matches traffic originating from (ingress) or going to (egress) a physical
573 port of the underlying device.
574
575 The first PHY_PORT item overrides the physical port normally associated with
576 the specified DPDK input port (port_id). This item can be provided several
577 times to match additional physical ports.
578
579 Note that physical ports are not necessarily tied to DPDK input ports
580 (port_id) when those are not under DPDK control. Possible values are
581 specific to each device, they are not necessarily indexed from zero and may
582 not be contiguous.
583
584 As a device property, the list of allowed values as well as the value
585 associated with a port_id should be retrieved by other means.
586
587 - Default ``mask`` matches any port index.
588
589 .. _table_rte_flow_item_phy_port:
590
591 .. table:: PHY_PORT
592
593    +----------+-----------+--------------------------------+
594    | Field    | Subfield  | Value                          |
595    +==========+===========+================================+
596    | ``spec`` | ``index`` | physical port index            |
597    +----------+-----------+--------------------------------+
598    | ``last`` | ``index`` | upper range value              |
599    +----------+-----------+--------------------------------+
600    | ``mask`` | ``index`` | zeroed to match any port index |
601    +----------+-----------+--------------------------------+
602
603 Item: ``PORT_ID``
604 ^^^^^^^^^^^^^^^^^
605
606 Matches traffic originating from (ingress) or going to (egress) a given DPDK
607 port ID.
608
609 Normally only supported if the port ID in question is known by the
610 underlying PMD and related to the device the flow rule is created against.
611
612 This must not be confused with `Item: PHY_PORT`_ which refers to the
613 physical port of a device, whereas `Item: PORT_ID`_ refers to a ``struct
614 rte_eth_dev`` object on the application side (also known as "port
615 representor" depending on the kind of underlying device).
616
617 - Default ``mask`` matches the specified DPDK port ID.
618
619 .. _table_rte_flow_item_port_id:
620
621 .. table:: PORT_ID
622
623    +----------+----------+-----------------------------+
624    | Field    | Subfield | Value                       |
625    +==========+==========+=============================+
626    | ``spec`` | ``id``   | DPDK port ID                |
627    +----------+----------+-----------------------------+
628    | ``last`` | ``id``   | upper range value           |
629    +----------+----------+-----------------------------+
630    | ``mask`` | ``id``   | zeroed to match any port ID |
631    +----------+----------+-----------------------------+
632
633 Item: ``MARK``
634 ^^^^^^^^^^^^^^
635
636 Matches an arbitrary integer value which was set using the ``MARK`` action in
637 a previously matched rule.
638
639 This item can only specified once as a match criteria as the ``MARK`` action can
640 only be specified once in a flow action.
641
642 Note the value of MARK field is arbitrary and application defined.
643
644 Depending on the underlying implementation the MARK item may be supported on
645 the physical device, with virtual groups in the PMD or not at all.
646
647 - Default ``mask`` matches any integer value.
648
649 .. _table_rte_flow_item_mark:
650
651 .. table:: MARK
652
653    +----------+----------+---------------------------+
654    | Field    | Subfield | Value                     |
655    +==========+==========+===========================+
656    | ``spec`` | ``id``   | integer value             |
657    +----------+--------------------------------------+
658    | ``last`` | ``id``   | upper range value         |
659    +----------+----------+---------------------------+
660    | ``mask`` | ``id``   | zeroed to match any value |
661    +----------+----------+---------------------------+
662
663 Data matching item types
664 ~~~~~~~~~~~~~~~~~~~~~~~~
665
666 Most of these are basically protocol header definitions with associated
667 bit-masks. They must be specified (stacked) from lowest to highest protocol
668 layer to form a matching pattern.
669
670 The following list is not exhaustive, new protocols will be added in the
671 future.
672
673 Item: ``ANY``
674 ^^^^^^^^^^^^^
675
676 Matches any protocol in place of the current layer, a single ANY may also
677 stand for several protocol layers.
678
679 This is usually specified as the first pattern item when looking for a
680 protocol anywhere in a packet.
681
682 - Default ``mask`` stands for any number of layers.
683
684 .. _table_rte_flow_item_any:
685
686 .. table:: ANY
687
688    +----------+----------+--------------------------------------+
689    | Field    | Subfield | Value                                |
690    +==========+==========+======================================+
691    | ``spec`` | ``num``  | number of layers covered             |
692    +----------+----------+--------------------------------------+
693    | ``last`` | ``num``  | upper range value                    |
694    +----------+----------+--------------------------------------+
695    | ``mask`` | ``num``  | zeroed to cover any number of layers |
696    +----------+----------+--------------------------------------+
697
698 Example for VXLAN TCP payload matching regardless of outer L3 (IPv4 or IPv6)
699 and L4 (UDP) both matched by the first ANY specification, and inner L3 (IPv4
700 or IPv6) matched by the second ANY specification:
701
702 .. _table_rte_flow_item_any_example:
703
704 .. table:: TCP in VXLAN with wildcards
705
706    +-------+------+----------+----------+-------+
707    | Index | Item | Field    | Subfield | Value |
708    +=======+======+==========+==========+=======+
709    | 0     | Ethernet                           |
710    +-------+------+----------+----------+-------+
711    | 1     | ANY  | ``spec`` | ``num``  | 2     |
712    +-------+------+----------+----------+-------+
713    | 2     | VXLAN                              |
714    +-------+------------------------------------+
715    | 3     | Ethernet                           |
716    +-------+------+----------+----------+-------+
717    | 4     | ANY  | ``spec`` | ``num``  | 1     |
718    +-------+------+----------+----------+-------+
719    | 5     | TCP                                |
720    +-------+------------------------------------+
721    | 6     | END                                |
722    +-------+------------------------------------+
723
724 Item: ``RAW``
725 ^^^^^^^^^^^^^
726
727 Matches a byte string of a given length at a given offset.
728
729 Offset is either absolute (using the start of the packet) or relative to the
730 end of the previous matched item in the stack, in which case negative values
731 are allowed.
732
733 If search is enabled, offset is used as the starting point. The search area
734 can be delimited by setting limit to a nonzero value, which is the maximum
735 number of bytes after offset where the pattern may start.
736
737 Matching a zero-length pattern is allowed, doing so resets the relative
738 offset for subsequent items.
739
740 - This type does not support ranges (``last`` field).
741 - Default ``mask`` matches all fields exactly.
742
743 .. _table_rte_flow_item_raw:
744
745 .. table:: RAW
746
747    +----------+--------------+-------------------------------------------------+
748    | Field    | Subfield     | Value                                           |
749    +==========+==============+=================================================+
750    | ``spec`` | ``relative`` | look for pattern after the previous item        |
751    |          +--------------+-------------------------------------------------+
752    |          | ``search``   | search pattern from offset (see also ``limit``) |
753    |          +--------------+-------------------------------------------------+
754    |          | ``reserved`` | reserved, must be set to zero                   |
755    |          +--------------+-------------------------------------------------+
756    |          | ``offset``   | absolute or relative offset for ``pattern``     |
757    |          +--------------+-------------------------------------------------+
758    |          | ``limit``    | search area limit for start of ``pattern``      |
759    |          +--------------+-------------------------------------------------+
760    |          | ``length``   | ``pattern`` length                              |
761    |          +--------------+-------------------------------------------------+
762    |          | ``pattern``  | byte string to look for                         |
763    +----------+--------------+-------------------------------------------------+
764    | ``last`` | if specified, either all 0 or with the same values as ``spec`` |
765    +----------+----------------------------------------------------------------+
766    | ``mask`` | bit-mask applied to ``spec`` values with usual behavior        |
767    +----------+----------------------------------------------------------------+
768
769 Example pattern looking for several strings at various offsets of a UDP
770 payload, using combined RAW items:
771
772 .. _table_rte_flow_item_raw_example:
773
774 .. table:: UDP payload matching
775
776    +-------+------+----------+--------------+-------+
777    | Index | Item | Field    | Subfield     | Value |
778    +=======+======+==========+==============+=======+
779    | 0     | Ethernet                               |
780    +-------+----------------------------------------+
781    | 1     | IPv4                                   |
782    +-------+----------------------------------------+
783    | 2     | UDP                                    |
784    +-------+------+----------+--------------+-------+
785    | 3     | RAW  | ``spec`` | ``relative`` | 1     |
786    |       |      |          +--------------+-------+
787    |       |      |          | ``search``   | 1     |
788    |       |      |          +--------------+-------+
789    |       |      |          | ``offset``   | 10    |
790    |       |      |          +--------------+-------+
791    |       |      |          | ``limit``    | 0     |
792    |       |      |          +--------------+-------+
793    |       |      |          | ``length``   | 3     |
794    |       |      |          +--------------+-------+
795    |       |      |          | ``pattern``  | "foo" |
796    +-------+------+----------+--------------+-------+
797    | 4     | RAW  | ``spec`` | ``relative`` | 1     |
798    |       |      |          +--------------+-------+
799    |       |      |          | ``search``   | 0     |
800    |       |      |          +--------------+-------+
801    |       |      |          | ``offset``   | 20    |
802    |       |      |          +--------------+-------+
803    |       |      |          | ``limit``    | 0     |
804    |       |      |          +--------------+-------+
805    |       |      |          | ``length``   | 3     |
806    |       |      |          +--------------+-------+
807    |       |      |          | ``pattern``  | "bar" |
808    +-------+------+----------+--------------+-------+
809    | 5     | RAW  | ``spec`` | ``relative`` | 1     |
810    |       |      |          +--------------+-------+
811    |       |      |          | ``search``   | 0     |
812    |       |      |          +--------------+-------+
813    |       |      |          | ``offset``   | -29   |
814    |       |      |          +--------------+-------+
815    |       |      |          | ``limit``    | 0     |
816    |       |      |          +--------------+-------+
817    |       |      |          | ``length``   | 3     |
818    |       |      |          +--------------+-------+
819    |       |      |          | ``pattern``  | "baz" |
820    +-------+------+----------+--------------+-------+
821    | 6     | END                                    |
822    +-------+----------------------------------------+
823
824 This translates to:
825
826 - Locate "foo" at least 10 bytes deep inside UDP payload.
827 - Locate "bar" after "foo" plus 20 bytes.
828 - Locate "baz" after "bar" minus 29 bytes.
829
830 Such a packet may be represented as follows (not to scale)::
831
832  0                     >= 10 B           == 20 B
833  |                  |<--------->|     |<--------->|
834  |                  |           |     |           |
835  |-----|------|-----|-----|-----|-----|-----------|-----|------|
836  | ETH | IPv4 | UDP | ... | baz | foo | ......... | bar | .... |
837  |-----|------|-----|-----|-----|-----|-----------|-----|------|
838                           |                             |
839                           |<--------------------------->|
840                                       == 29 B
841
842 Note that matching subsequent pattern items would resume after "baz", not
843 "bar" since matching is always performed after the previous item of the
844 stack.
845
846 Item: ``ETH``
847 ^^^^^^^^^^^^^
848
849 Matches an Ethernet header.
850
851 The ``type`` field either stands for "EtherType" or "TPID" when followed by
852 so-called layer 2.5 pattern items such as ``RTE_FLOW_ITEM_TYPE_VLAN``. In
853 the latter case, ``type`` refers to that of the outer header, with the inner
854 EtherType/TPID provided by the subsequent pattern item. This is the same
855 order as on the wire.
856
857 - ``dst``: destination MAC.
858 - ``src``: source MAC.
859 - ``type``: EtherType or TPID.
860 - Default ``mask`` matches destination and source addresses only.
861
862 Item: ``VLAN``
863 ^^^^^^^^^^^^^^
864
865 Matches an 802.1Q/ad VLAN tag.
866
867 The corresponding standard outer EtherType (TPID) values are
868 ``ETHER_TYPE_VLAN`` or ``ETHER_TYPE_QINQ``. It can be overridden by the
869 preceding pattern item.
870
871 - ``tci``: tag control information.
872 - ``inner_type``: inner EtherType or TPID.
873 - Default ``mask`` matches the VID part of TCI only (lower 12 bits).
874
875 Item: ``IPV4``
876 ^^^^^^^^^^^^^^
877
878 Matches an IPv4 header.
879
880 Note: IPv4 options are handled by dedicated pattern items.
881
882 - ``hdr``: IPv4 header definition (``rte_ip.h``).
883 - Default ``mask`` matches source and destination addresses only.
884
885 Item: ``IPV6``
886 ^^^^^^^^^^^^^^
887
888 Matches an IPv6 header.
889
890 Note: IPv6 options are handled by dedicated pattern items, see `Item:
891 IPV6_EXT`_.
892
893 - ``hdr``: IPv6 header definition (``rte_ip.h``).
894 - Default ``mask`` matches source and destination addresses only.
895
896 Item: ``ICMP``
897 ^^^^^^^^^^^^^^
898
899 Matches an ICMP header.
900
901 - ``hdr``: ICMP header definition (``rte_icmp.h``).
902 - Default ``mask`` matches ICMP type and code only.
903
904 Item: ``UDP``
905 ^^^^^^^^^^^^^
906
907 Matches a UDP header.
908
909 - ``hdr``: UDP header definition (``rte_udp.h``).
910 - Default ``mask`` matches source and destination ports only.
911
912 Item: ``TCP``
913 ^^^^^^^^^^^^^
914
915 Matches a TCP header.
916
917 - ``hdr``: TCP header definition (``rte_tcp.h``).
918 - Default ``mask`` matches source and destination ports only.
919
920 Item: ``SCTP``
921 ^^^^^^^^^^^^^^
922
923 Matches a SCTP header.
924
925 - ``hdr``: SCTP header definition (``rte_sctp.h``).
926 - Default ``mask`` matches source and destination ports only.
927
928 Item: ``VXLAN``
929 ^^^^^^^^^^^^^^^
930
931 Matches a VXLAN header (RFC 7348).
932
933 - ``flags``: normally 0x08 (I flag).
934 - ``rsvd0``: reserved, normally 0x000000.
935 - ``vni``: VXLAN network identifier.
936 - ``rsvd1``: reserved, normally 0x00.
937 - Default ``mask`` matches VNI only.
938
939 Item: ``E_TAG``
940 ^^^^^^^^^^^^^^^
941
942 Matches an IEEE 802.1BR E-Tag header.
943
944 The corresponding standard outer EtherType (TPID) value is
945 ``ETHER_TYPE_ETAG``. It can be overridden by the preceding pattern item.
946
947 - ``epcp_edei_in_ecid_b``: E-Tag control information (E-TCI), E-PCP (3b),
948   E-DEI (1b), ingress E-CID base (12b).
949 - ``rsvd_grp_ecid_b``: reserved (2b), GRP (2b), E-CID base (12b).
950 - ``in_ecid_e``: ingress E-CID ext.
951 - ``ecid_e``: E-CID ext.
952 - ``inner_type``: inner EtherType or TPID.
953 - Default ``mask`` simultaneously matches GRP and E-CID base.
954
955 Item: ``NVGRE``
956 ^^^^^^^^^^^^^^^
957
958 Matches a NVGRE header (RFC 7637).
959
960 - ``c_k_s_rsvd0_ver``: checksum (1b), undefined (1b), key bit (1b),
961   sequence number (1b), reserved 0 (9b), version (3b). This field must have
962   value 0x2000 according to RFC 7637.
963 - ``protocol``: protocol type (0x6558).
964 - ``tni``: virtual subnet ID.
965 - ``flow_id``: flow ID.
966 - Default ``mask`` matches TNI only.
967
968 Item: ``MPLS``
969 ^^^^^^^^^^^^^^
970
971 Matches a MPLS header.
972
973 - ``label_tc_s_ttl``: label, TC, Bottom of Stack and TTL.
974 - Default ``mask`` matches label only.
975
976 Item: ``GRE``
977 ^^^^^^^^^^^^^
978
979 Matches a GRE header.
980
981 - ``c_rsvd0_ver``: checksum, reserved 0 and version.
982 - ``protocol``: protocol type.
983 - Default ``mask`` matches protocol only.
984
985 Item: ``FUZZY``
986 ^^^^^^^^^^^^^^^
987
988 Fuzzy pattern match, expect faster than default.
989
990 This is for device that support fuzzy match option. Usually a fuzzy match is
991 fast but the cost is accuracy. i.e. Signature Match only match pattern's hash
992 value, but it is possible two different patterns have the same hash value.
993
994 Matching accuracy level can be configured by threshold. Driver can divide the
995 range of threshold and map to different accuracy levels that device support.
996
997 Threshold 0 means perfect match (no fuzziness), while threshold 0xffffffff
998 means fuzziest match.
999
1000 .. _table_rte_flow_item_fuzzy:
1001
1002 .. table:: FUZZY
1003
1004    +----------+---------------+--------------------------------------------------+
1005    | Field    |   Subfield    | Value                                            |
1006    +==========+===============+==================================================+
1007    | ``spec`` | ``threshold`` | 0 as perfect match, 0xffffffff as fuzziest match |
1008    +----------+---------------+--------------------------------------------------+
1009    | ``last`` | ``threshold`` | upper range value                                |
1010    +----------+---------------+--------------------------------------------------+
1011    | ``mask`` | ``threshold`` | bit-mask apply to "spec" and "last"              |
1012    +----------+---------------+--------------------------------------------------+
1013
1014 Usage example, fuzzy match a TCPv4 packets:
1015
1016 .. _table_rte_flow_item_fuzzy_example:
1017
1018 .. table:: Fuzzy matching
1019
1020    +-------+----------+
1021    | Index | Item     |
1022    +=======+==========+
1023    | 0     | FUZZY    |
1024    +-------+----------+
1025    | 1     | Ethernet |
1026    +-------+----------+
1027    | 2     | IPv4     |
1028    +-------+----------+
1029    | 3     | TCP      |
1030    +-------+----------+
1031    | 4     | END      |
1032    +-------+----------+
1033
1034 Item: ``GTP``, ``GTPC``, ``GTPU``
1035 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1036
1037 Matches a GTPv1 header.
1038
1039 Note: GTP, GTPC and GTPU use the same structure. GTPC and GTPU item
1040 are defined for a user-friendly API when creating GTP-C and GTP-U
1041 flow rules.
1042
1043 - ``v_pt_rsv_flags``: version (3b), protocol type (1b), reserved (1b),
1044   extension header flag (1b), sequence number flag (1b), N-PDU number
1045   flag (1b).
1046 - ``msg_type``: message type.
1047 - ``msg_len``: message length.
1048 - ``teid``: tunnel endpoint identifier.
1049 - Default ``mask`` matches teid only.
1050
1051 Item: ``ESP``
1052 ^^^^^^^^^^^^^
1053
1054 Matches an ESP header.
1055
1056 - ``hdr``: ESP header definition (``rte_esp.h``).
1057 - Default ``mask`` matches SPI only.
1058
1059 Item: ``GENEVE``
1060 ^^^^^^^^^^^^^^^^
1061
1062 Matches a GENEVE header.
1063
1064 - ``ver_opt_len_o_c_rsvd0``: version (2b), length of the options fields (6b),
1065   OAM packet (1b), critical options present (1b), reserved 0 (6b).
1066 - ``protocol``: protocol type.
1067 - ``vni``: virtual network identifier.
1068 - ``rsvd1``: reserved, normally 0x00.
1069 - Default ``mask`` matches VNI only.
1070
1071 Item: ``VXLAN-GPE``
1072 ^^^^^^^^^^^^^^^^^^^
1073
1074 Matches a VXLAN-GPE header (draft-ietf-nvo3-vxlan-gpe-05).
1075
1076 - ``flags``: normally 0x0C (I and P flags).
1077 - ``rsvd0``: reserved, normally 0x0000.
1078 - ``protocol``: protocol type.
1079 - ``vni``: VXLAN network identifier.
1080 - ``rsvd1``: reserved, normally 0x00.
1081 - Default ``mask`` matches VNI only.
1082
1083 Item: ``ARP_ETH_IPV4``
1084 ^^^^^^^^^^^^^^^^^^^^^^
1085
1086 Matches an ARP header for Ethernet/IPv4.
1087
1088 - ``hdr``: hardware type, normally 1.
1089 - ``pro``: protocol type, normally 0x0800.
1090 - ``hln``: hardware address length, normally 6.
1091 - ``pln``: protocol address length, normally 4.
1092 - ``op``: opcode (1 for request, 2 for reply).
1093 - ``sha``: sender hardware address.
1094 - ``spa``: sender IPv4 address.
1095 - ``tha``: target hardware address.
1096 - ``tpa``: target IPv4 address.
1097 - Default ``mask`` matches SHA, SPA, THA and TPA.
1098
1099 Item: ``IPV6_EXT``
1100 ^^^^^^^^^^^^^^^^^^
1101
1102 Matches the presence of any IPv6 extension header.
1103
1104 - ``next_hdr``: next header.
1105 - Default ``mask`` matches ``next_hdr``.
1106
1107 Normally preceded by any of:
1108
1109 - `Item: IPV6`_
1110 - `Item: IPV6_EXT`_
1111
1112 Item: ``ICMP6``
1113 ^^^^^^^^^^^^^^^
1114
1115 Matches any ICMPv6 header.
1116
1117 - ``type``: ICMPv6 type.
1118 - ``code``: ICMPv6 code.
1119 - ``checksum``: ICMPv6 checksum.
1120 - Default ``mask`` matches ``type`` and ``code``.
1121
1122 Item: ``ICMP6_ND_NS``
1123 ^^^^^^^^^^^^^^^^^^^^^
1124
1125 Matches an ICMPv6 neighbor discovery solicitation.
1126
1127 - ``type``: ICMPv6 type, normally 135.
1128 - ``code``: ICMPv6 code, normally 0.
1129 - ``checksum``: ICMPv6 checksum.
1130 - ``reserved``: reserved, normally 0.
1131 - ``target_addr``: target address.
1132 - Default ``mask`` matches target address only.
1133
1134 Item: ``ICMP6_ND_NA``
1135 ^^^^^^^^^^^^^^^^^^^^^
1136
1137 Matches an ICMPv6 neighbor discovery advertisement.
1138
1139 - ``type``: ICMPv6 type, normally 136.
1140 - ``code``: ICMPv6 code, normally 0.
1141 - ``checksum``: ICMPv6 checksum.
1142 - ``rso_reserved``: route flag (1b), solicited flag (1b), override flag
1143   (1b), reserved (29b).
1144 - ``target_addr``: target address.
1145 - Default ``mask`` matches target address only.
1146
1147 Item: ``ICMP6_ND_OPT``
1148 ^^^^^^^^^^^^^^^^^^^^^^
1149
1150 Matches the presence of any ICMPv6 neighbor discovery option.
1151
1152 - ``type``: ND option type.
1153 - ``length``: ND option length.
1154 - Default ``mask`` matches type only.
1155
1156 Normally preceded by any of:
1157
1158 - `Item: ICMP6_ND_NA`_
1159 - `Item: ICMP6_ND_NS`_
1160 - `Item: ICMP6_ND_OPT`_
1161
1162 Item: ``ICMP6_ND_OPT_SLA_ETH``
1163 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1164
1165 Matches an ICMPv6 neighbor discovery source Ethernet link-layer address
1166 option.
1167
1168 - ``type``: ND option type, normally 1.
1169 - ``length``: ND option length, normally 1.
1170 - ``sla``: source Ethernet LLA.
1171 - Default ``mask`` matches source link-layer address only.
1172
1173 Normally preceded by any of:
1174
1175 - `Item: ICMP6_ND_NA`_
1176 - `Item: ICMP6_ND_OPT`_
1177
1178 Item: ``ICMP6_ND_OPT_TLA_ETH``
1179 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1180
1181 Matches an ICMPv6 neighbor discovery target Ethernet link-layer address
1182 option.
1183
1184 - ``type``: ND option type, normally 2.
1185 - ``length``: ND option length, normally 1.
1186 - ``tla``: target Ethernet LLA.
1187 - Default ``mask`` matches target link-layer address only.
1188
1189 Normally preceded by any of:
1190
1191 - `Item: ICMP6_ND_NS`_
1192 - `Item: ICMP6_ND_OPT`_
1193
1194 Actions
1195 ~~~~~~~
1196
1197 Each possible action is represented by a type. Some have associated
1198 configuration structures. Several actions combined in a list can be assigned
1199 to a flow rule and are performed in order.
1200
1201 They fall in three categories:
1202
1203 - Actions that modify the fate of matching traffic, for instance by dropping
1204   or assigning it a specific destination.
1205
1206 - Actions that modify matching traffic contents or its properties. This
1207   includes adding/removing encapsulation, encryption, compression and marks.
1208
1209 - Actions related to the flow rule itself, such as updating counters or
1210   making it non-terminating.
1211
1212 Flow rules being terminating by default, not specifying any action of the
1213 fate kind results in undefined behavior. This applies to both ingress and
1214 egress.
1215
1216 PASSTHRU, when supported, makes a flow rule non-terminating.
1217
1218 Like matching patterns, action lists are terminated by END items.
1219
1220 Example of action that redirects packets to queue index 10:
1221
1222 .. _table_rte_flow_action_example:
1223
1224 .. table:: Queue action
1225
1226    +-----------+-------+
1227    | Field     | Value |
1228    +===========+=======+
1229    | ``index`` | 10    |
1230    +-----------+-------+
1231
1232 Actions are performed in list order:
1233
1234 .. _table_rte_flow_count_then_drop:
1235
1236 .. table:: Count then drop
1237
1238    +-------+--------+
1239    | Index | Action |
1240    +=======+========+
1241    | 0     | COUNT  |
1242    +-------+--------+
1243    | 1     | DROP   |
1244    +-------+--------+
1245    | 2     | END    |
1246    +-------+--------+
1247
1248 |
1249
1250 .. _table_rte_flow_mark_count_redirect:
1251
1252 .. table:: Mark, count then redirect
1253
1254    +-------+--------+------------+-------+
1255    | Index | Action | Field      | Value |
1256    +=======+========+============+=======+
1257    | 0     | MARK   | ``mark``   | 0x2a  |
1258    +-------+--------+------------+-------+
1259    | 1     | COUNT  | ``shared`` | 0     |
1260    |       |        +------------+-------+
1261    |       |        | ``id``     | 0     |
1262    +-------+--------+------------+-------+
1263    | 2     | QUEUE  | ``queue``  | 10    |
1264    +-------+--------+------------+-------+
1265    | 3     | END                         |
1266    +-------+-----------------------------+
1267
1268 |
1269
1270 .. _table_rte_flow_redirect_queue_5:
1271
1272 .. table:: Redirect to queue 5
1273
1274    +-------+--------+-----------+-------+
1275    | Index | Action | Field     | Value |
1276    +=======+========+===========+=======+
1277    | 0     | DROP                       |
1278    +-------+--------+-----------+-------+
1279    | 1     | QUEUE  | ``queue`` | 5     |
1280    +-------+--------+-----------+-------+
1281    | 2     | END                        |
1282    +-------+----------------------------+
1283
1284 In the above example, while DROP and QUEUE must be performed in order, both
1285 have to happen before reaching END. Only QUEUE has a visible effect.
1286
1287 Note that such a list may be thought as ambiguous and rejected on that
1288 basis.
1289
1290 .. _table_rte_flow_redirect_queue_5_3:
1291
1292 .. table:: Redirect to queues 5 and 3
1293
1294    +-------+--------+-----------+-------+
1295    | Index | Action | Field     | Value |
1296    +=======+========+===========+=======+
1297    | 0     | QUEUE  | ``queue`` | 5     |
1298    +-------+--------+-----------+-------+
1299    | 1     | VOID                       |
1300    +-------+--------+-----------+-------+
1301    | 2     | QUEUE  | ``queue`` | 3     |
1302    +-------+--------+-----------+-------+
1303    | 3     | END                        |
1304    +-------+----------------------------+
1305
1306 As previously described, all actions must be taken into account. This
1307 effectively duplicates traffic to both queues. The above example also shows
1308 that VOID is ignored.
1309
1310 Action types
1311 ~~~~~~~~~~~~
1312
1313 Common action types are described in this section. Like pattern item types,
1314 this list is not exhaustive as new actions will be added in the future.
1315
1316 Action: ``END``
1317 ^^^^^^^^^^^^^^^
1318
1319 End marker for action lists. Prevents further processing of actions, thereby
1320 ending the list.
1321
1322 - Its numeric value is 0 for convenience.
1323 - PMD support is mandatory.
1324 - No configurable properties.
1325
1326 .. _table_rte_flow_action_end:
1327
1328 .. table:: END
1329
1330    +---------------+
1331    | Field         |
1332    +===============+
1333    | no properties |
1334    +---------------+
1335
1336 Action: ``VOID``
1337 ^^^^^^^^^^^^^^^^
1338
1339 Used as a placeholder for convenience. It is ignored and simply discarded by
1340 PMDs.
1341
1342 - PMD support is mandatory.
1343 - No configurable properties.
1344
1345 .. _table_rte_flow_action_void:
1346
1347 .. table:: VOID
1348
1349    +---------------+
1350    | Field         |
1351    +===============+
1352    | no properties |
1353    +---------------+
1354
1355 Action: ``PASSTHRU``
1356 ^^^^^^^^^^^^^^^^^^^^
1357
1358 Leaves traffic up for additional processing by subsequent flow rules; makes
1359 a flow rule non-terminating.
1360
1361 - No configurable properties.
1362
1363 .. _table_rte_flow_action_passthru:
1364
1365 .. table:: PASSTHRU
1366
1367    +---------------+
1368    | Field         |
1369    +===============+
1370    | no properties |
1371    +---------------+
1372
1373 Example to copy a packet to a queue and continue processing by subsequent
1374 flow rules:
1375
1376 .. _table_rte_flow_action_passthru_example:
1377
1378 .. table:: Copy to queue 8
1379
1380    +-------+--------+-----------+-------+
1381    | Index | Action | Field     | Value |
1382    +=======+========+===========+=======+
1383    | 0     | PASSTHRU                   |
1384    +-------+--------+-----------+-------+
1385    | 1     | QUEUE  | ``queue`` | 8     |
1386    +-------+--------+-----------+-------+
1387    | 2     | END                        |
1388    +-------+----------------------------+
1389
1390 Action: ``JUMP``
1391 ^^^^^^^^^^^^^^^^
1392
1393 Redirects packets to a group on the current device.
1394
1395 In a hierarchy of groups, which can be used to represent physical or logical
1396 flow group/tables on the device, this action redirects the matched flow to
1397 the specified group on that device.
1398
1399 If a matched flow is redirected to a table which doesn't contain a matching
1400 rule for that flow then the behavior is undefined and the resulting behavior
1401 is up to the specific device. Best practice when using groups would be define
1402 a default flow rule for each group which a defines the default actions in that
1403 group so a consistent behavior is defined.
1404
1405 Defining an action for matched flow in a group to jump to a group which is
1406 higher in the group hierarchy may not be supported by physical devices,
1407 depending on how groups are mapped to the physical devices. In the
1408 definitions of jump actions, applications should be aware that it may be
1409 possible to define flow rules which trigger an undefined behavior causing
1410 flows to loop between groups.
1411
1412 .. _table_rte_flow_action_jump:
1413
1414 .. table:: JUMP
1415
1416    +-----------+------------------------------+
1417    | Field     | Value                        |
1418    +===========+==============================+
1419    | ``group`` | Group to redirect packets to |
1420    +-----------+------------------------------+
1421
1422 Action: ``MARK``
1423 ^^^^^^^^^^^^^^^^
1424
1425 Attaches an integer value to packets and sets ``PKT_RX_FDIR`` and
1426 ``PKT_RX_FDIR_ID`` mbuf flags.
1427
1428 This value is arbitrary and application-defined. Maximum allowed value
1429 depends on the underlying implementation. It is returned in the
1430 ``hash.fdir.hi`` mbuf field.
1431
1432 .. _table_rte_flow_action_mark:
1433
1434 .. table:: MARK
1435
1436    +--------+--------------------------------------+
1437    | Field  | Value                                |
1438    +========+======================================+
1439    | ``id`` | integer value to return with packets |
1440    +--------+--------------------------------------+
1441
1442 Action: ``FLAG``
1443 ^^^^^^^^^^^^^^^^
1444
1445 Flags packets. Similar to `Action: MARK`_ without a specific value; only
1446 sets the ``PKT_RX_FDIR`` mbuf flag.
1447
1448 - No configurable properties.
1449
1450 .. _table_rte_flow_action_flag:
1451
1452 .. table:: FLAG
1453
1454    +---------------+
1455    | Field         |
1456    +===============+
1457    | no properties |
1458    +---------------+
1459
1460 Action: ``QUEUE``
1461 ^^^^^^^^^^^^^^^^^
1462
1463 Assigns packets to a given queue index.
1464
1465 .. _table_rte_flow_action_queue:
1466
1467 .. table:: QUEUE
1468
1469    +-----------+--------------------+
1470    | Field     | Value              |
1471    +===========+====================+
1472    | ``index`` | queue index to use |
1473    +-----------+--------------------+
1474
1475 Action: ``DROP``
1476 ^^^^^^^^^^^^^^^^
1477
1478 Drop packets.
1479
1480 - No configurable properties.
1481
1482 .. _table_rte_flow_action_drop:
1483
1484 .. table:: DROP
1485
1486    +---------------+
1487    | Field         |
1488    +===============+
1489    | no properties |
1490    +---------------+
1491
1492 Action: ``COUNT``
1493 ^^^^^^^^^^^^^^^^^
1494
1495 Adds a counter action to a matched flow.
1496
1497 If more than one count action is specified in a single flow rule, then each
1498 action must specify a unique id.
1499
1500 Counters can be retrieved and reset through ``rte_flow_query()``, see
1501 ``struct rte_flow_query_count``.
1502
1503 The shared flag indicates whether the counter is unique to the flow rule the
1504 action is specified with, or whether it is a shared counter.
1505
1506 For a count action with the shared flag set, then then a global device
1507 namespace is assumed for the counter id, so that any matched flow rules using
1508 a count action with the same counter id on the same port will contribute to
1509 that counter.
1510
1511 For ports within the same switch domain then the counter id namespace extends
1512 to all ports within that switch domain.
1513
1514 .. _table_rte_flow_action_count:
1515
1516 .. table:: COUNT
1517
1518    +------------+---------------------+
1519    | Field      | Value               |
1520    +============+=====================+
1521    | ``shared`` | shared counter flag |
1522    +------------+---------------------+
1523    | ``id``     | counter id          |
1524    +------------+---------------------+
1525
1526 Query structure to retrieve and reset flow rule counters:
1527
1528 .. _table_rte_flow_query_count:
1529
1530 .. table:: COUNT query
1531
1532    +---------------+-----+-----------------------------------+
1533    | Field         | I/O | Value                             |
1534    +===============+=====+===================================+
1535    | ``reset``     | in  | reset counter after query         |
1536    +---------------+-----+-----------------------------------+
1537    | ``hits_set``  | out | ``hits`` field is set             |
1538    +---------------+-----+-----------------------------------+
1539    | ``bytes_set`` | out | ``bytes`` field is set            |
1540    +---------------+-----+-----------------------------------+
1541    | ``hits``      | out | number of hits for this rule      |
1542    +---------------+-----+-----------------------------------+
1543    | ``bytes``     | out | number of bytes through this rule |
1544    +---------------+-----+-----------------------------------+
1545
1546 Action: ``RSS``
1547 ^^^^^^^^^^^^^^^
1548
1549 Similar to QUEUE, except RSS is additionally performed on packets to spread
1550 them among several queues according to the provided parameters.
1551
1552 Unlike global RSS settings used by other DPDK APIs, unsetting the ``types``
1553 field does not disable RSS in a flow rule. Doing so instead requests safe
1554 unspecified "best-effort" settings from the underlying PMD, which depending
1555 on the flow rule, may result in anything ranging from empty (single queue)
1556 to all-inclusive RSS.
1557
1558 Note: RSS hash result is stored in the ``hash.rss`` mbuf field which
1559 overlaps ``hash.fdir.lo``. Since `Action: MARK`_ sets the ``hash.fdir.hi``
1560 field only, both can be requested simultaneously.
1561
1562 Also, regarding packet encapsulation ``level``:
1563
1564 - ``0`` requests the default behavior. Depending on the packet type, it can
1565   mean outermost, innermost, anything in between or even no RSS.
1566
1567   It basically stands for the innermost encapsulation level RSS can be
1568   performed on according to PMD and device capabilities.
1569
1570 - ``1`` requests RSS to be performed on the outermost packet encapsulation
1571   level.
1572
1573 - ``2`` and subsequent values request RSS to be performed on the specified
1574    inner packet encapsulation level, from outermost to innermost (lower to
1575    higher values).
1576
1577 Values other than ``0`` are not necessarily supported.
1578
1579 Requesting a specific RSS level on unrecognized traffic results in undefined
1580 behavior. For predictable results, it is recommended to make the flow rule
1581 pattern match packet headers up to the requested encapsulation level so that
1582 only matching traffic goes through.
1583
1584 .. _table_rte_flow_action_rss:
1585
1586 .. table:: RSS
1587
1588    +---------------+---------------------------------------------+
1589    | Field         | Value                                       |
1590    +===============+=============================================+
1591    | ``func``      | RSS hash function to apply                  |
1592    +---------------+---------------------------------------------+
1593    | ``level``     | encapsulation level for ``types``           |
1594    +---------------+---------------------------------------------+
1595    | ``types``     | specific RSS hash types (see ``ETH_RSS_*``) |
1596    +---------------+---------------------------------------------+
1597    | ``key_len``   | hash key length in bytes                    |
1598    +---------------+---------------------------------------------+
1599    | ``queue_num`` | number of entries in ``queue``              |
1600    +---------------+---------------------------------------------+
1601    | ``key``       | hash key                                    |
1602    +---------------+---------------------------------------------+
1603    | ``queue``     | queue indices to use                        |
1604    +---------------+---------------------------------------------+
1605
1606 Action: ``PF``
1607 ^^^^^^^^^^^^^^
1608
1609 Directs matching traffic to the physical function (PF) of the current
1610 device.
1611
1612 See `Item: PF`_.
1613
1614 - No configurable properties.
1615
1616 .. _table_rte_flow_action_pf:
1617
1618 .. table:: PF
1619
1620    +---------------+
1621    | Field         |
1622    +===============+
1623    | no properties |
1624    +---------------+
1625
1626 Action: ``VF``
1627 ^^^^^^^^^^^^^^
1628
1629 Directs matching traffic to a given virtual function of the current device.
1630
1631 Packets matched by a VF pattern item can be redirected to their original VF
1632 ID instead of the specified one. This parameter may not be available and is
1633 not guaranteed to work properly if the VF part is matched by a prior flow
1634 rule or if packets are not addressed to a VF in the first place.
1635
1636 See `Item: VF`_.
1637
1638 .. _table_rte_flow_action_vf:
1639
1640 .. table:: VF
1641
1642    +--------------+--------------------------------+
1643    | Field        | Value                          |
1644    +==============+================================+
1645    | ``original`` | use original VF ID if possible |
1646    +--------------+--------------------------------+
1647    | ``id``       | VF ID                          |
1648    +--------------+--------------------------------+
1649
1650 Action: ``PHY_PORT``
1651 ^^^^^^^^^^^^^^^^^^^^
1652
1653 Directs matching traffic to a given physical port index of the underlying
1654 device.
1655
1656 See `Item: PHY_PORT`_.
1657
1658 .. _table_rte_flow_action_phy_port:
1659
1660 .. table:: PHY_PORT
1661
1662    +--------------+-------------------------------------+
1663    | Field        | Value                               |
1664    +==============+=====================================+
1665    | ``original`` | use original port index if possible |
1666    +--------------+-------------------------------------+
1667    | ``index``    | physical port index                 |
1668    +--------------+-------------------------------------+
1669
1670 Action: ``PORT_ID``
1671 ^^^^^^^^^^^^^^^^^^^
1672 Directs matching traffic to a given DPDK port ID.
1673
1674 See `Item: PORT_ID`_.
1675
1676 .. _table_rte_flow_action_port_id:
1677
1678 .. table:: PORT_ID
1679
1680    +--------------+---------------------------------------+
1681    | Field        | Value                                 |
1682    +==============+=======================================+
1683    | ``original`` | use original DPDK port ID if possible |
1684    +--------------+---------------------------------------+
1685    | ``id``       | DPDK port ID                          |
1686    +--------------+---------------------------------------+
1687
1688 Action: ``METER``
1689 ^^^^^^^^^^^^^^^^^
1690
1691 Applies a stage of metering and policing.
1692
1693 The metering and policing (MTR) object has to be first created using the
1694 rte_mtr_create() API function. The ID of the MTR object is specified as
1695 action parameter. More than one flow can use the same MTR object through
1696 the meter action. The MTR object can be further updated or queried using
1697 the rte_mtr* API.
1698
1699 .. _table_rte_flow_action_meter:
1700
1701 .. table:: METER
1702
1703    +--------------+---------------+
1704    | Field        | Value         |
1705    +==============+===============+
1706    | ``mtr_id``   | MTR object ID |
1707    +--------------+---------------+
1708
1709 Action: ``SECURITY``
1710 ^^^^^^^^^^^^^^^^^^^^
1711
1712 Perform the security action on flows matched by the pattern items
1713 according to the configuration of the security session.
1714
1715 This action modifies the payload of matched flows. For INLINE_CRYPTO, the
1716 security protocol headers and IV are fully provided by the application as
1717 specified in the flow pattern. The payload of matching packets is
1718 encrypted on egress, and decrypted and authenticated on ingress.
1719 For INLINE_PROTOCOL, the security protocol is fully offloaded to HW,
1720 providing full encapsulation and decapsulation of packets in security
1721 protocols. The flow pattern specifies both the outer security header fields
1722 and the inner packet fields. The security session specified in the action
1723 must match the pattern parameters.
1724
1725 The security session specified in the action must be created on the same
1726 port as the flow action that is being specified.
1727
1728 The ingress/egress flow attribute should match that specified in the
1729 security session if the security session supports the definition of the
1730 direction.
1731
1732 Multiple flows can be configured to use the same security session.
1733
1734 .. _table_rte_flow_action_security:
1735
1736 .. table:: SECURITY
1737
1738    +----------------------+--------------------------------------+
1739    | Field                | Value                                |
1740    +======================+======================================+
1741    | ``security_session`` | security session to apply            |
1742    +----------------------+--------------------------------------+
1743
1744 The following is an example of configuring IPsec inline using the
1745 INLINE_CRYPTO security session:
1746
1747 The encryption algorithm, keys and salt are part of the opaque
1748 ``rte_security_session``. The SA is identified according to the IP and ESP
1749 fields in the pattern items.
1750
1751 .. _table_rte_flow_item_esp_inline_example:
1752
1753 .. table:: IPsec inline crypto flow pattern items.
1754
1755    +-------+----------+
1756    | Index | Item     |
1757    +=======+==========+
1758    | 0     | Ethernet |
1759    +-------+----------+
1760    | 1     | IPv4     |
1761    +-------+----------+
1762    | 2     | ESP      |
1763    +-------+----------+
1764    | 3     | END      |
1765    +-------+----------+
1766
1767 .. _table_rte_flow_action_esp_inline_example:
1768
1769 .. table:: IPsec inline flow actions.
1770
1771    +-------+----------+
1772    | Index | Action   |
1773    +=======+==========+
1774    | 0     | SECURITY |
1775    +-------+----------+
1776    | 1     | END      |
1777    +-------+----------+
1778
1779 Action: ``OF_SET_MPLS_TTL``
1780 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
1781
1782 Implements ``OFPAT_SET_MPLS_TTL`` ("MPLS TTL") as defined by the `OpenFlow
1783 Switch Specification`_.
1784
1785 .. _table_rte_flow_action_of_set_mpls_ttl:
1786
1787 .. table:: OF_SET_MPLS_TTL
1788
1789    +--------------+----------+
1790    | Field        | Value    |
1791    +==============+==========+
1792    | ``mpls_ttl`` | MPLS TTL |
1793    +--------------+----------+
1794
1795 Action: ``OF_DEC_MPLS_TTL``
1796 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
1797
1798 Implements ``OFPAT_DEC_MPLS_TTL`` ("decrement MPLS TTL") as defined by the
1799 `OpenFlow Switch Specification`_.
1800
1801 .. _table_rte_flow_action_of_dec_mpls_ttl:
1802
1803 .. table:: OF_DEC_MPLS_TTL
1804
1805    +---------------+
1806    | Field         |
1807    +===============+
1808    | no properties |
1809    +---------------+
1810
1811 Action: ``OF_SET_NW_TTL``
1812 ^^^^^^^^^^^^^^^^^^^^^^^^^
1813
1814 Implements ``OFPAT_SET_NW_TTL`` ("IP TTL") as defined by the `OpenFlow
1815 Switch Specification`_.
1816
1817 .. _table_rte_flow_action_of_set_nw_ttl:
1818
1819 .. table:: OF_SET_NW_TTL
1820
1821    +------------+--------+
1822    | Field      | Value  |
1823    +============+========+
1824    | ``nw_ttl`` | IP TTL |
1825    +------------+--------+
1826
1827 Action: ``OF_DEC_NW_TTL``
1828 ^^^^^^^^^^^^^^^^^^^^^^^^^
1829
1830 Implements ``OFPAT_DEC_NW_TTL`` ("decrement IP TTL") as defined by the
1831 `OpenFlow Switch Specification`_.
1832
1833 .. _table_rte_flow_action_of_dec_nw_ttl:
1834
1835 .. table:: OF_DEC_NW_TTL
1836
1837    +---------------+
1838    | Field         |
1839    +===============+
1840    | no properties |
1841    +---------------+
1842
1843 Action: ``OF_COPY_TTL_OUT``
1844 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
1845
1846 Implements ``OFPAT_COPY_TTL_OUT`` ("copy TTL "outwards" -- from
1847 next-to-outermost to outermost") as defined by the `OpenFlow Switch
1848 Specification`_.
1849
1850 .. _table_rte_flow_action_of_copy_ttl_out:
1851
1852 .. table:: OF_COPY_TTL_OUT
1853
1854    +---------------+
1855    | Field         |
1856    +===============+
1857    | no properties |
1858    +---------------+
1859
1860 Action: ``OF_COPY_TTL_IN``
1861 ^^^^^^^^^^^^^^^^^^^^^^^^^^
1862
1863 Implements ``OFPAT_COPY_TTL_IN`` ("copy TTL "inwards" -- from outermost to
1864 next-to-outermost") as defined by the `OpenFlow Switch Specification`_.
1865
1866 .. _table_rte_flow_action_of_copy_ttl_in:
1867
1868 .. table:: OF_COPY_TTL_IN
1869
1870    +---------------+
1871    | Field         |
1872    +===============+
1873    | no properties |
1874    +---------------+
1875
1876 Action: ``OF_POP_VLAN``
1877 ^^^^^^^^^^^^^^^^^^^^^^^
1878
1879 Implements ``OFPAT_POP_VLAN`` ("pop the outer VLAN tag") as defined
1880 by the `OpenFlow Switch Specification`_.
1881
1882 .. _table_rte_flow_action_of_pop_vlan:
1883
1884 .. table:: OF_POP_VLAN
1885
1886    +---------------+
1887    | Field         |
1888    +===============+
1889    | no properties |
1890    +---------------+
1891
1892 Action: ``OF_PUSH_VLAN``
1893 ^^^^^^^^^^^^^^^^^^^^^^^^
1894
1895 Implements ``OFPAT_PUSH_VLAN`` ("push a new VLAN tag") as defined by the
1896 `OpenFlow Switch Specification`_.
1897
1898 .. _table_rte_flow_action_of_push_vlan:
1899
1900 .. table:: OF_PUSH_VLAN
1901
1902    +---------------+-----------+
1903    | Field         | Value     |
1904    +===============+===========+
1905    | ``ethertype`` | EtherType |
1906    +---------------+-----------+
1907
1908 Action: ``OF_SET_VLAN_VID``
1909 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
1910
1911 Implements ``OFPAT_SET_VLAN_VID`` ("set the 802.1q VLAN id") as defined by
1912 the `OpenFlow Switch Specification`_.
1913
1914 .. _table_rte_flow_action_of_set_vlan_vid:
1915
1916 .. table:: OF_SET_VLAN_VID
1917
1918    +--------------+---------+
1919    | Field        | Value   |
1920    +==============+=========+
1921    | ``vlan_vid`` | VLAN id |
1922    +--------------+---------+
1923
1924 Action: ``OF_SET_VLAN_PCP``
1925 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
1926
1927 Implements ``OFPAT_SET_LAN_PCP`` ("set the 802.1q priority") as defined by
1928 the `OpenFlow Switch Specification`_.
1929
1930 .. _table_rte_flow_action_of_set_vlan_pcp:
1931
1932 .. table:: OF_SET_VLAN_PCP
1933
1934    +--------------+---------------+
1935    | Field        | Value         |
1936    +==============+===============+
1937    | ``vlan_pcp`` | VLAN priority |
1938    +--------------+---------------+
1939
1940 Action: ``OF_POP_MPLS``
1941 ^^^^^^^^^^^^^^^^^^^^^^^
1942
1943 Implements ``OFPAT_POP_MPLS`` ("pop the outer MPLS tag") as defined by the
1944 `OpenFlow Switch Specification`_.
1945
1946 .. _table_rte_flow_action_of_pop_mpls:
1947
1948 .. table:: OF_POP_MPLS
1949
1950    +---------------+-----------+
1951    | Field         | Value     |
1952    +===============+===========+
1953    | ``ethertype`` | EtherType |
1954    +---------------+-----------+
1955
1956 Action: ``OF_PUSH_MPLS``
1957 ^^^^^^^^^^^^^^^^^^^^^^^^
1958
1959 Implements ``OFPAT_PUSH_MPLS`` ("push a new MPLS tag") as defined by the
1960 `OpenFlow Switch Specification`_.
1961
1962 .. _table_rte_flow_action_of_push_mpls:
1963
1964 .. table:: OF_PUSH_MPLS
1965
1966    +---------------+-----------+
1967    | Field         | Value     |
1968    +===============+===========+
1969    | ``ethertype`` | EtherType |
1970    +---------------+-----------+
1971
1972 Action: ``VXLAN_ENCAP``
1973 ^^^^^^^^^^^^^^^^^^^^^^^
1974
1975 Performs a VXLAN encapsulation action by encapsulating the matched flow in the
1976 VXLAN tunnel as defined in the``rte_flow_action_vxlan_encap`` flow items
1977 definition.
1978
1979 This action modifies the payload of matched flows. The flow definition specified
1980 in the ``rte_flow_action_tunnel_encap`` action structure must define a valid
1981 VLXAN network overlay which conforms with RFC 7348 (Virtual eXtensible Local
1982 Area Network (VXLAN): A Framework for Overlaying Virtualized Layer 2 Networks
1983 over Layer 3 Networks). The pattern must be terminated with the
1984 RTE_FLOW_ITEM_TYPE_END item type.
1985
1986 .. _table_rte_flow_action_vxlan_encap:
1987
1988 .. table:: VXLAN_ENCAP
1989
1990    +----------------+-------------------------------------+
1991    | Field          | Value                               |
1992    +================+=====================================+
1993    | ``definition`` | Tunnel end-point overlay definition |
1994    +----------------+-------------------------------------+
1995
1996 .. _table_rte_flow_action_vxlan_encap_example:
1997
1998 .. table:: IPv4 VxLAN flow pattern example.
1999
2000    +-------+----------+
2001    | Index | Item     |
2002    +=======+==========+
2003    | 0     | Ethernet |
2004    +-------+----------+
2005    | 1     | IPv4     |
2006    +-------+----------+
2007    | 2     | UDP      |
2008    +-------+----------+
2009    | 3     | VXLAN    |
2010    +-------+----------+
2011    | 4     | END      |
2012    +-------+----------+
2013
2014 Action: ``VXLAN_DECAP``
2015 ^^^^^^^^^^^^^^^^^^^^^^^
2016
2017 Performs a decapsulation action by stripping all headers of the VXLAN tunnel
2018 network overlay from the matched flow.
2019
2020 The flow items pattern defined for the flow rule with which a ``VXLAN_DECAP``
2021 action is specified, must define a valid VXLAN tunnel as per RFC7348. If the
2022 flow pattern does not specify a valid VXLAN tunnel then a
2023 RTE_FLOW_ERROR_TYPE_ACTION error should be returned.
2024
2025 This action modifies the payload of matched flows.
2026
2027 Action: ``NVGRE_ENCAP``
2028 ^^^^^^^^^^^^^^^^^^^^^^^
2029
2030 Performs a NVGRE encapsulation action by encapsulating the matched flow in the
2031 NVGRE tunnel as defined in the``rte_flow_action_tunnel_encap`` flow item
2032 definition.
2033
2034 This action modifies the payload of matched flows. The flow definition specified
2035 in the ``rte_flow_action_tunnel_encap`` action structure must defined a valid
2036 NVGRE network overlay which conforms with RFC 7637 (NVGRE: Network
2037 Virtualization Using Generic Routing Encapsulation). The pattern must be
2038 terminated with the RTE_FLOW_ITEM_TYPE_END item type.
2039
2040 .. _table_rte_flow_action_nvgre_encap:
2041
2042 .. table:: NVGRE_ENCAP
2043
2044    +----------------+-------------------------------------+
2045    | Field          | Value                               |
2046    +================+=====================================+
2047    | ``definition`` | NVGRE end-point overlay definition  |
2048    +----------------+-------------------------------------+
2049
2050 .. _table_rte_flow_action_nvgre_encap_example:
2051
2052 .. table:: IPv4 NVGRE flow pattern example.
2053
2054    +-------+----------+
2055    | Index | Item     |
2056    +=======+==========+
2057    | 0     | Ethernet |
2058    +-------+----------+
2059    | 1     | IPv4     |
2060    +-------+----------+
2061    | 2     | NVGRE    |
2062    +-------+----------+
2063    | 3     | END      |
2064    +-------+----------+
2065
2066 Action: ``NVGRE_DECAP``
2067 ^^^^^^^^^^^^^^^^^^^^^^^
2068
2069 Performs a decapsulation action by stripping all headers of the NVGRE tunnel
2070 network overlay from the matched flow.
2071
2072 The flow items pattern defined for the flow rule with which a ``NVGRE_DECAP``
2073 action is specified, must define a valid NVGRE tunnel as per RFC7637. If the
2074 flow pattern does not specify a valid NVGRE tunnel then a
2075 RTE_FLOW_ERROR_TYPE_ACTION error should be returned.
2076
2077 This action modifies the payload of matched flows.
2078
2079 Action: ``SET_IPV4_SRC``
2080 ^^^^^^^^^^^^^^^^^^^^^^^^
2081
2082 Set a new IPv4 source address in the outermost IPv4 header.
2083
2084 It must be used with a valid RTE_FLOW_ITEM_TYPE_IPV4 flow pattern item.
2085 Otherwise, RTE_FLOW_ERROR_TYPE_ACTION error will be returned.
2086
2087 .. _table_rte_flow_action_set_ipv4_src:
2088
2089 .. table:: SET_IPV4_SRC
2090
2091    +-----------------------------------------+
2092    | Field         | Value                   |
2093    +===============+=========================+
2094    | ``ipv4_addr`` | new IPv4 source address |
2095    +---------------+-------------------------+
2096
2097 Action: ``SET_IPV4_DST``
2098 ^^^^^^^^^^^^^^^^^^^^^^^^
2099
2100 Set a new IPv4 destination address in the outermost IPv4 header.
2101
2102 It must be used with a valid RTE_FLOW_ITEM_TYPE_IPV4 flow pattern item.
2103 Otherwise, RTE_FLOW_ERROR_TYPE_ACTION error will be returned.
2104
2105 .. _table_rte_flow_action_set_ipv4_dst:
2106
2107 .. table:: SET_IPV4_DST
2108
2109    +---------------+------------------------------+
2110    | Field         | Value                        |
2111    +===============+==============================+
2112    | ``ipv4_addr`` | new IPv4 destination address |
2113    +---------------+------------------------------+
2114
2115 Action: ``SET_IPV6_SRC``
2116 ^^^^^^^^^^^^^^^^^^^^^^^^
2117
2118 Set a new IPv6 source address in the outermost IPv6 header.
2119
2120 It must be used with a valid RTE_FLOW_ITEM_TYPE_IPV6 flow pattern item.
2121 Otherwise, RTE_FLOW_ERROR_TYPE_ACTION error will be returned.
2122
2123 .. _table_rte_flow_action_set_ipv6_src:
2124
2125 .. table:: SET_IPV6_SRC
2126
2127    +---------------+-------------------------+
2128    | Field         | Value                   |
2129    +===============+=========================+
2130    | ``ipv6_addr`` | new IPv6 source address |
2131    +---------------+-------------------------+
2132
2133 Action: ``SET_IPV6_DST``
2134 ^^^^^^^^^^^^^^^^^^^^^^^^
2135
2136 Set a new IPv6 destination address in the outermost IPv6 header.
2137
2138 It must be used with a valid RTE_FLOW_ITEM_TYPE_IPV6 flow pattern item.
2139 Otherwise, RTE_FLOW_ERROR_TYPE_ACTION error will be returned.
2140
2141 .. _table_rte_flow_action_set_ipv6_dst:
2142
2143 .. table:: SET_IPV6_DST
2144
2145    +---------------+------------------------------+
2146    | Field         | Value                        |
2147    +===============+==============================+
2148    | ``ipv6_addr`` | new IPv6 destination address |
2149    +---------------+------------------------------+
2150
2151 Action: ``SET_TP_SRC``
2152 ^^^^^^^^^^^^^^^^^^^^^^^^^
2153
2154 Set a new source port number in the outermost TCP/UDP header.
2155
2156 It must be used with a valid RTE_FLOW_ITEM_TYPE_TCP or RTE_FLOW_ITEM_TYPE_UDP
2157 flow pattern item. Otherwise, RTE_FLOW_ERROR_TYPE_ACTION error will be returned.
2158
2159 .. _table_rte_flow_action_set_tp_src:
2160
2161 .. table:: SET_TP_SRC
2162
2163    +----------+-------------------------+
2164    | Field    | Value                   |
2165    +==========+=========================+
2166    | ``port`` | new TCP/UDP source port |
2167    +---------------+--------------------+
2168
2169 Action: ``SET_TP_DST``
2170 ^^^^^^^^^^^^^^^^^^^^^^^^^
2171
2172 Set a new destination port number in the outermost TCP/UDP header.
2173
2174 It must be used with a valid RTE_FLOW_ITEM_TYPE_TCP or RTE_FLOW_ITEM_TYPE_UDP
2175 flow pattern item. Otherwise, RTE_FLOW_ERROR_TYPE_ACTION error will be returned.
2176
2177 .. _table_rte_flow_action_set_tp_dst:
2178
2179 .. table:: SET_TP_DST
2180
2181    +----------+------------------------------+
2182    | Field    | Value                        |
2183    +==========+==============================+
2184    | ``port`` | new TCP/UDP destination port |
2185    +---------------+-------------------------+
2186
2187 Action: ``MAC_SWAP``
2188 ^^^^^^^^^^^^^^^^^^^^^^^^^
2189
2190 Swap the source and destination MAC addresses in the outermost Ethernet
2191 header.
2192
2193 It must be used with a valid RTE_FLOW_ITEM_TYPE_ETH flow pattern item.
2194 Otherwise, RTE_FLOW_ERROR_TYPE_ACTION error will be returned.
2195
2196 .. _table_rte_flow_action_mac_swap:
2197
2198 .. table:: MAC_SWAP
2199
2200    +---------------+
2201    | Field         |
2202    +===============+
2203    | no properties |
2204    +---------------+
2205
2206 Negative types
2207 ~~~~~~~~~~~~~~
2208
2209 All specified pattern items (``enum rte_flow_item_type``) and actions
2210 (``enum rte_flow_action_type``) use positive identifiers.
2211
2212 The negative space is reserved for dynamic types generated by PMDs during
2213 run-time. PMDs may encounter them as a result but must not accept negative
2214 identifiers they are not aware of.
2215
2216 A method to generate them remains to be defined.
2217
2218 Planned types
2219 ~~~~~~~~~~~~~
2220
2221 Pattern item types will be added as new protocols are implemented.
2222
2223 Variable headers support through dedicated pattern items, for example in
2224 order to match specific IPv4 options and IPv6 extension headers would be
2225 stacked after IPv4/IPv6 items.
2226
2227 Other action types are planned but are not defined yet. These include the
2228 ability to alter packet data in several ways, such as performing
2229 encapsulation/decapsulation of tunnel headers.
2230
2231 Rules management
2232 ----------------
2233
2234 A rather simple API with few functions is provided to fully manage flow
2235 rules.
2236
2237 Each created flow rule is associated with an opaque, PMD-specific handle
2238 pointer. The application is responsible for keeping it until the rule is
2239 destroyed.
2240
2241 Flows rules are represented by ``struct rte_flow`` objects.
2242
2243 Validation
2244 ~~~~~~~~~~
2245
2246 Given that expressing a definite set of device capabilities is not
2247 practical, a dedicated function is provided to check if a flow rule is
2248 supported and can be created.
2249
2250 .. code-block:: c
2251
2252    int
2253    rte_flow_validate(uint16_t port_id,
2254                      const struct rte_flow_attr *attr,
2255                      const struct rte_flow_item pattern[],
2256                      const struct rte_flow_action actions[],
2257                      struct rte_flow_error *error);
2258
2259 The flow rule is validated for correctness and whether it could be accepted
2260 by the device given sufficient resources. The rule is checked against the
2261 current device mode and queue configuration. The flow rule may also
2262 optionally be validated against existing flow rules and device resources.
2263 This function has no effect on the target device.
2264
2265 The returned value is guaranteed to remain valid only as long as no
2266 successful calls to ``rte_flow_create()`` or ``rte_flow_destroy()`` are made
2267 in the meantime and no device parameter affecting flow rules in any way are
2268 modified, due to possible collisions or resource limitations (although in
2269 such cases ``EINVAL`` should not be returned).
2270
2271 Arguments:
2272
2273 - ``port_id``: port identifier of Ethernet device.
2274 - ``attr``: flow rule attributes.
2275 - ``pattern``: pattern specification (list terminated by the END pattern
2276   item).
2277 - ``actions``: associated actions (list terminated by the END action).
2278 - ``error``: perform verbose error reporting if not NULL. PMDs initialize
2279   this structure in case of error only.
2280
2281 Return values:
2282
2283 - 0 if flow rule is valid and can be created. A negative errno value
2284   otherwise (``rte_errno`` is also set), the following errors are defined.
2285 - ``-ENOSYS``: underlying device does not support this functionality.
2286 - ``-EINVAL``: unknown or invalid rule specification.
2287 - ``-ENOTSUP``: valid but unsupported rule specification (e.g. partial
2288   bit-masks are unsupported).
2289 - ``EEXIST``: collision with an existing rule. Only returned if device
2290   supports flow rule collision checking and there was a flow rule
2291   collision. Not receiving this return code is no guarantee that creating
2292   the rule will not fail due to a collision.
2293 - ``ENOMEM``: not enough memory to execute the function, or if the device
2294   supports resource validation, resource limitation on the device.
2295 - ``-EBUSY``: action cannot be performed due to busy device resources, may
2296   succeed if the affected queues or even the entire port are in a stopped
2297   state (see ``rte_eth_dev_rx_queue_stop()`` and ``rte_eth_dev_stop()``).
2298
2299 Creation
2300 ~~~~~~~~
2301
2302 Creating a flow rule is similar to validating one, except the rule is
2303 actually created and a handle returned.
2304
2305 .. code-block:: c
2306
2307    struct rte_flow *
2308    rte_flow_create(uint16_t port_id,
2309                    const struct rte_flow_attr *attr,
2310                    const struct rte_flow_item pattern[],
2311                    const struct rte_flow_action *actions[],
2312                    struct rte_flow_error *error);
2313
2314 Arguments:
2315
2316 - ``port_id``: port identifier of Ethernet device.
2317 - ``attr``: flow rule attributes.
2318 - ``pattern``: pattern specification (list terminated by the END pattern
2319   item).
2320 - ``actions``: associated actions (list terminated by the END action).
2321 - ``error``: perform verbose error reporting if not NULL. PMDs initialize
2322   this structure in case of error only.
2323
2324 Return values:
2325
2326 A valid handle in case of success, NULL otherwise and ``rte_errno`` is set
2327 to the positive version of one of the error codes defined for
2328 ``rte_flow_validate()``.
2329
2330 Destruction
2331 ~~~~~~~~~~~
2332
2333 Flow rules destruction is not automatic, and a queue or a port should not be
2334 released if any are still attached to them. Applications must take care of
2335 performing this step before releasing resources.
2336
2337 .. code-block:: c
2338
2339    int
2340    rte_flow_destroy(uint16_t port_id,
2341                     struct rte_flow *flow,
2342                     struct rte_flow_error *error);
2343
2344
2345 Failure to destroy a flow rule handle may occur when other flow rules depend
2346 on it, and destroying it would result in an inconsistent state.
2347
2348 This function is only guaranteed to succeed if handles are destroyed in
2349 reverse order of their creation.
2350
2351 Arguments:
2352
2353 - ``port_id``: port identifier of Ethernet device.
2354 - ``flow``: flow rule handle to destroy.
2355 - ``error``: perform verbose error reporting if not NULL. PMDs initialize
2356   this structure in case of error only.
2357
2358 Return values:
2359
2360 - 0 on success, a negative errno value otherwise and ``rte_errno`` is set.
2361
2362 Flush
2363 ~~~~~
2364
2365 Convenience function to destroy all flow rule handles associated with a
2366 port. They are released as with successive calls to ``rte_flow_destroy()``.
2367
2368 .. code-block:: c
2369
2370    int
2371    rte_flow_flush(uint16_t port_id,
2372                   struct rte_flow_error *error);
2373
2374 In the unlikely event of failure, handles are still considered destroyed and
2375 no longer valid but the port must be assumed to be in an inconsistent state.
2376
2377 Arguments:
2378
2379 - ``port_id``: port identifier of Ethernet device.
2380 - ``error``: perform verbose error reporting if not NULL. PMDs initialize
2381   this structure in case of error only.
2382
2383 Return values:
2384
2385 - 0 on success, a negative errno value otherwise and ``rte_errno`` is set.
2386
2387 Query
2388 ~~~~~
2389
2390 Query an existing flow rule.
2391
2392 This function allows retrieving flow-specific data such as counters. Data
2393 is gathered by special actions which must be present in the flow rule
2394 definition.
2395
2396 .. code-block:: c
2397
2398    int
2399    rte_flow_query(uint16_t port_id,
2400                   struct rte_flow *flow,
2401                   const struct rte_flow_action *action,
2402                   void *data,
2403                   struct rte_flow_error *error);
2404
2405 Arguments:
2406
2407 - ``port_id``: port identifier of Ethernet device.
2408 - ``flow``: flow rule handle to query.
2409 - ``action``: action to query, this must match prototype from flow rule.
2410 - ``data``: pointer to storage for the associated query data type.
2411 - ``error``: perform verbose error reporting if not NULL. PMDs initialize
2412   this structure in case of error only.
2413
2414 Return values:
2415
2416 - 0 on success, a negative errno value otherwise and ``rte_errno`` is set.
2417
2418 Isolated mode
2419 -------------
2420
2421 The general expectation for ingress traffic is that flow rules process it
2422 first; the remaining unmatched or pass-through traffic usually ends up in a
2423 queue (with or without RSS, locally or in some sub-device instance)
2424 depending on the global configuration settings of a port.
2425
2426 While fine from a compatibility standpoint, this approach makes drivers more
2427 complex as they have to check for possible side effects outside of this API
2428 when creating or destroying flow rules. It results in a more limited set of
2429 available rule types due to the way device resources are assigned (e.g. no
2430 support for the RSS action even on capable hardware).
2431
2432 Given that nonspecific traffic can be handled by flow rules as well,
2433 isolated mode is a means for applications to tell a driver that ingress on
2434 the underlying port must be injected from the defined flow rules only; that
2435 no default traffic is expected outside those rules.
2436
2437 This has the following benefits:
2438
2439 - Applications get finer-grained control over the kind of traffic they want
2440   to receive (no traffic by default).
2441
2442 - More importantly they control at what point nonspecific traffic is handled
2443   relative to other flow rules, by adjusting priority levels.
2444
2445 - Drivers can assign more hardware resources to flow rules and expand the
2446   set of supported rule types.
2447
2448 Because toggling isolated mode may cause profound changes to the ingress
2449 processing path of a driver, it may not be possible to leave it once
2450 entered. Likewise, existing flow rules or global configuration settings may
2451 prevent a driver from entering isolated mode.
2452
2453 Applications relying on this mode are therefore encouraged to toggle it as
2454 soon as possible after device initialization, ideally before the first call
2455 to ``rte_eth_dev_configure()`` to avoid possible failures due to conflicting
2456 settings.
2457
2458 Once effective, the following functionality has no effect on the underlying
2459 port and may return errors such as ``ENOTSUP`` ("not supported"):
2460
2461 - Toggling promiscuous mode.
2462 - Toggling allmulticast mode.
2463 - Configuring MAC addresses.
2464 - Configuring multicast addresses.
2465 - Configuring VLAN filters.
2466 - Configuring Rx filters through the legacy API (e.g. FDIR).
2467 - Configuring global RSS settings.
2468
2469 .. code-block:: c
2470
2471    int
2472    rte_flow_isolate(uint16_t port_id, int set, struct rte_flow_error *error);
2473
2474 Arguments:
2475
2476 - ``port_id``: port identifier of Ethernet device.
2477 - ``set``: nonzero to enter isolated mode, attempt to leave it otherwise.
2478 - ``error``: perform verbose error reporting if not NULL. PMDs initialize
2479   this structure in case of error only.
2480
2481 Return values:
2482
2483 - 0 on success, a negative errno value otherwise and ``rte_errno`` is set.
2484
2485 Verbose error reporting
2486 -----------------------
2487
2488 The defined *errno* values may not be accurate enough for users or
2489 application developers who want to investigate issues related to flow rules
2490 management. A dedicated error object is defined for this purpose:
2491
2492 .. code-block:: c
2493
2494    enum rte_flow_error_type {
2495        RTE_FLOW_ERROR_TYPE_NONE, /**< No error. */
2496        RTE_FLOW_ERROR_TYPE_UNSPECIFIED, /**< Cause unspecified. */
2497        RTE_FLOW_ERROR_TYPE_HANDLE, /**< Flow rule (handle). */
2498        RTE_FLOW_ERROR_TYPE_ATTR_GROUP, /**< Group field. */
2499        RTE_FLOW_ERROR_TYPE_ATTR_PRIORITY, /**< Priority field. */
2500        RTE_FLOW_ERROR_TYPE_ATTR_INGRESS, /**< Ingress field. */
2501        RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, /**< Egress field. */
2502        RTE_FLOW_ERROR_TYPE_ATTR, /**< Attributes structure. */
2503        RTE_FLOW_ERROR_TYPE_ITEM_NUM, /**< Pattern length. */
2504        RTE_FLOW_ERROR_TYPE_ITEM, /**< Specific pattern item. */
2505        RTE_FLOW_ERROR_TYPE_ACTION_NUM, /**< Number of actions. */
2506        RTE_FLOW_ERROR_TYPE_ACTION, /**< Specific action. */
2507    };
2508
2509    struct rte_flow_error {
2510        enum rte_flow_error_type type; /**< Cause field and error types. */
2511        const void *cause; /**< Object responsible for the error. */
2512        const char *message; /**< Human-readable error message. */
2513    };
2514
2515 Error type ``RTE_FLOW_ERROR_TYPE_NONE`` stands for no error, in which case
2516 remaining fields can be ignored. Other error types describe the type of the
2517 object pointed by ``cause``.
2518
2519 If non-NULL, ``cause`` points to the object responsible for the error. For a
2520 flow rule, this may be a pattern item or an individual action.
2521
2522 If non-NULL, ``message`` provides a human-readable error message.
2523
2524 This object is normally allocated by applications and set by PMDs in case of
2525 error, the message points to a constant string which does not need to be
2526 freed by the application, however its pointer can be considered valid only
2527 as long as its associated DPDK port remains configured. Closing the
2528 underlying device or unloading the PMD invalidates it.
2529
2530 Helpers
2531 -------
2532
2533 Error initializer
2534 ~~~~~~~~~~~~~~~~~
2535
2536 .. code-block:: c
2537
2538    static inline int
2539    rte_flow_error_set(struct rte_flow_error *error,
2540                       int code,
2541                       enum rte_flow_error_type type,
2542                       const void *cause,
2543                       const char *message);
2544
2545 This function initializes ``error`` (if non-NULL) with the provided
2546 parameters and sets ``rte_errno`` to ``code``. A negative error ``code`` is
2547 then returned.
2548
2549 Object conversion
2550 ~~~~~~~~~~~~~~~~~
2551
2552 .. code-block:: c
2553
2554    int
2555    rte_flow_conv(enum rte_flow_conv_op op,
2556                  void *dst,
2557                  size_t size,
2558                  const void *src,
2559                  struct rte_flow_error *error);
2560
2561 Convert ``src`` to ``dst`` according to operation ``op``. Possible
2562 operations include:
2563
2564 - Attributes, pattern item or action duplication.
2565 - Duplication of an entire pattern or list of actions.
2566 - Duplication of a complete flow rule description.
2567 - Pattern item or action name retrieval.
2568
2569 Caveats
2570 -------
2571
2572 - DPDK does not keep track of flow rules definitions or flow rule objects
2573   automatically. Applications may keep track of the former and must keep
2574   track of the latter. PMDs may also do it for internal needs, however this
2575   must not be relied on by applications.
2576
2577 - Flow rules are not maintained between successive port initializations. An
2578   application exiting without releasing them and restarting must re-create
2579   them from scratch.
2580
2581 - API operations are synchronous and blocking (``EAGAIN`` cannot be
2582   returned).
2583
2584 - There is no provision for reentrancy/multi-thread safety, although nothing
2585   should prevent different devices from being configured at the same
2586   time. PMDs may protect their control path functions accordingly.
2587
2588 - Stopping the data path (TX/RX) should not be necessary when managing flow
2589   rules. If this cannot be achieved naturally or with workarounds (such as
2590   temporarily replacing the burst function pointers), an appropriate error
2591   code must be returned (``EBUSY``).
2592
2593 - PMDs, not applications, are responsible for maintaining flow rules
2594   configuration when stopping and restarting a port or performing other
2595   actions which may affect them. They can only be destroyed explicitly by
2596   applications.
2597
2598 For devices exposing multiple ports sharing global settings affected by flow
2599 rules:
2600
2601 - All ports under DPDK control must behave consistently, PMDs are
2602   responsible for making sure that existing flow rules on a port are not
2603   affected by other ports.
2604
2605 - Ports not under DPDK control (unaffected or handled by other applications)
2606   are user's responsibility. They may affect existing flow rules and cause
2607   undefined behavior. PMDs aware of this may prevent flow rules creation
2608   altogether in such cases.
2609
2610 PMD interface
2611 -------------
2612
2613 The PMD interface is defined in ``rte_flow_driver.h``. It is not subject to
2614 API/ABI versioning constraints as it is not exposed to applications and may
2615 evolve independently.
2616
2617 It is currently implemented on top of the legacy filtering framework through
2618 filter type *RTE_ETH_FILTER_GENERIC* that accepts the single operation
2619 *RTE_ETH_FILTER_GET* to return PMD-specific *rte_flow* callbacks wrapped
2620 inside ``struct rte_flow_ops``.
2621
2622 This overhead is temporarily necessary in order to keep compatibility with
2623 the legacy filtering framework, which should eventually disappear.
2624
2625 - PMD callbacks implement exactly the interface described in `Rules
2626   management`_, except for the port ID argument which has already been
2627   converted to a pointer to the underlying ``struct rte_eth_dev``.
2628
2629 - Public API functions do not process flow rules definitions at all before
2630   calling PMD functions (no basic error checking, no validation
2631   whatsoever). They only make sure these callbacks are non-NULL or return
2632   the ``ENOSYS`` (function not supported) error.
2633
2634 This interface additionally defines the following helper function:
2635
2636 - ``rte_flow_ops_get()``: get generic flow operations structure from a
2637   port.
2638
2639 More will be added over time.
2640
2641 Device compatibility
2642 --------------------
2643
2644 No known implementation supports all the described features.
2645
2646 Unsupported features or combinations are not expected to be fully emulated
2647 in software by PMDs for performance reasons. Partially supported features
2648 may be completed in software as long as hardware performs most of the work
2649 (such as queue redirection and packet recognition).
2650
2651 However PMDs are expected to do their best to satisfy application requests
2652 by working around hardware limitations as long as doing so does not affect
2653 the behavior of existing flow rules.
2654
2655 The following sections provide a few examples of such cases and describe how
2656 PMDs should handle them, they are based on limitations built into the
2657 previous APIs.
2658
2659 Global bit-masks
2660 ~~~~~~~~~~~~~~~~
2661
2662 Each flow rule comes with its own, per-layer bit-masks, while hardware may
2663 support only a single, device-wide bit-mask for a given layer type, so that
2664 two IPv4 rules cannot use different bit-masks.
2665
2666 The expected behavior in this case is that PMDs automatically configure
2667 global bit-masks according to the needs of the first flow rule created.
2668
2669 Subsequent rules are allowed only if their bit-masks match those, the
2670 ``EEXIST`` error code should be returned otherwise.
2671
2672 Unsupported layer types
2673 ~~~~~~~~~~~~~~~~~~~~~~~
2674
2675 Many protocols can be simulated by crafting patterns with the `Item: RAW`_
2676 type.
2677
2678 PMDs can rely on this capability to simulate support for protocols with
2679 headers not directly recognized by hardware.
2680
2681 ``ANY`` pattern item
2682 ~~~~~~~~~~~~~~~~~~~~
2683
2684 This pattern item stands for anything, which can be difficult to translate
2685 to something hardware would understand, particularly if followed by more
2686 specific types.
2687
2688 Consider the following pattern:
2689
2690 .. _table_rte_flow_unsupported_any:
2691
2692 .. table:: Pattern with ANY as L3
2693
2694    +-------+-----------------------+
2695    | Index | Item                  |
2696    +=======+=======================+
2697    | 0     | ETHER                 |
2698    +-------+-----+---------+-------+
2699    | 1     | ANY | ``num`` | ``1`` |
2700    +-------+-----+---------+-------+
2701    | 2     | TCP                   |
2702    +-------+-----------------------+
2703    | 3     | END                   |
2704    +-------+-----------------------+
2705
2706 Knowing that TCP does not make sense with something other than IPv4 and IPv6
2707 as L3, such a pattern may be translated to two flow rules instead:
2708
2709 .. _table_rte_flow_unsupported_any_ipv4:
2710
2711 .. table:: ANY replaced with IPV4
2712
2713    +-------+--------------------+
2714    | Index | Item               |
2715    +=======+====================+
2716    | 0     | ETHER              |
2717    +-------+--------------------+
2718    | 1     | IPV4 (zeroed mask) |
2719    +-------+--------------------+
2720    | 2     | TCP                |
2721    +-------+--------------------+
2722    | 3     | END                |
2723    +-------+--------------------+
2724
2725 |
2726
2727 .. _table_rte_flow_unsupported_any_ipv6:
2728
2729 .. table:: ANY replaced with IPV6
2730
2731    +-------+--------------------+
2732    | Index | Item               |
2733    +=======+====================+
2734    | 0     | ETHER              |
2735    +-------+--------------------+
2736    | 1     | IPV6 (zeroed mask) |
2737    +-------+--------------------+
2738    | 2     | TCP                |
2739    +-------+--------------------+
2740    | 3     | END                |
2741    +-------+--------------------+
2742
2743 Note that as soon as a ANY rule covers several layers, this approach may
2744 yield a large number of hidden flow rules. It is thus suggested to only
2745 support the most common scenarios (anything as L2 and/or L3).
2746
2747 Unsupported actions
2748 ~~~~~~~~~~~~~~~~~~~
2749
2750 - When combined with `Action: QUEUE`_, packet counting (`Action: COUNT`_)
2751   and tagging (`Action: MARK`_ or `Action: FLAG`_) may be implemented in
2752   software as long as the target queue is used by a single rule.
2753
2754 - When a single target queue is provided, `Action: RSS`_ can also be
2755   implemented through `Action: QUEUE`_.
2756
2757 Flow rules priority
2758 ~~~~~~~~~~~~~~~~~~~
2759
2760 While it would naturally make sense, flow rules cannot be assumed to be
2761 processed by hardware in the same order as their creation for several
2762 reasons:
2763
2764 - They may be managed internally as a tree or a hash table instead of a
2765   list.
2766 - Removing a flow rule before adding another one can either put the new rule
2767   at the end of the list or reuse a freed entry.
2768 - Duplication may occur when packets are matched by several rules.
2769
2770 For overlapping rules (particularly in order to use `Action: PASSTHRU`_)
2771 predictable behavior is only guaranteed by using different priority levels.
2772
2773 Priority levels are not necessarily implemented in hardware, or may be
2774 severely limited (e.g. a single priority bit).
2775
2776 For these reasons, priority levels may be implemented purely in software by
2777 PMDs.
2778
2779 - For devices expecting flow rules to be added in the correct order, PMDs
2780   may destroy and re-create existing rules after adding a new one with
2781   a higher priority.
2782
2783 - A configurable number of dummy or empty rules can be created at
2784   initialization time to save high priority slots for later.
2785
2786 - In order to save priority levels, PMDs may evaluate whether rules are
2787   likely to collide and adjust their priority accordingly.
2788
2789 Future evolutions
2790 -----------------
2791
2792 - A device profile selection function which could be used to force a
2793   permanent profile instead of relying on its automatic configuration based
2794   on existing flow rules.
2795
2796 - A method to optimize *rte_flow* rules with specific pattern items and
2797   action types generated on the fly by PMDs. DPDK should assign negative
2798   numbers to these in order to not collide with the existing types. See
2799   `Negative types`_.
2800
2801 - Adding specific egress pattern items and actions as described in
2802   `Attribute: Traffic direction`_.
2803
2804 - Optional software fallback when PMDs are unable to handle requested flow
2805   rules so applications do not have to implement their own.
2806
2807 .. _OpenFlow Switch Specification: https://www.opennetworking.org/software-defined-standards/specifications/