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