ff32c0a5eea5165505179dbf00d7992b8e528e35
[dpdk.git] / lib / ethdev / rte_flow.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2016 6WIND S.A.
3  * Copyright 2016 Mellanox Technologies, Ltd
4  */
5
6 #ifndef RTE_FLOW_H_
7 #define RTE_FLOW_H_
8
9 /**
10  * @file
11  * RTE generic flow API
12  *
13  * This interface provides the ability to program packet matching and
14  * associated actions in hardware through flow rules.
15  */
16
17 #include <stddef.h>
18 #include <stdint.h>
19
20 #include <rte_arp.h>
21 #include <rte_common.h>
22 #include <rte_ether.h>
23 #include <rte_icmp.h>
24 #include <rte_ip.h>
25 #include <rte_sctp.h>
26 #include <rte_tcp.h>
27 #include <rte_udp.h>
28 #include <rte_vxlan.h>
29 #include <rte_byteorder.h>
30 #include <rte_esp.h>
31 #include <rte_higig.h>
32 #include <rte_ecpri.h>
33 #include <rte_bitops.h>
34 #include <rte_mbuf.h>
35 #include <rte_mbuf_dyn.h>
36 #include <rte_meter.h>
37 #include <rte_gtp.h>
38
39 #ifdef __cplusplus
40 extern "C" {
41 #endif
42
43 /**
44  * Flow rule attributes.
45  *
46  * Priorities are set on a per rule based within groups.
47  *
48  * Lower values denote higher priority, the highest priority for a flow rule
49  * is 0, so that a flow that matches for than one rule, the rule with the
50  * lowest priority value will always be matched.
51  *
52  * Although optional, applications are encouraged to group similar rules as
53  * much as possible to fully take advantage of hardware capabilities
54  * (e.g. optimized matching) and work around limitations (e.g. a single
55  * pattern type possibly allowed in a given group). Applications should be
56  * aware that groups are not linked by default, and that they must be
57  * explicitly linked by the application using the JUMP action.
58  *
59  * Priority levels are arbitrary and up to the application, they
60  * do not need to be contiguous nor start from 0, however the maximum number
61  * varies between devices and may be affected by existing flow rules.
62  *
63  * If a packet is matched by several rules of a given group for a given
64  * priority level, the outcome is undefined. It can take any path, may be
65  * duplicated or even cause unrecoverable errors.
66  *
67  * Note that support for more than a single group and priority level is not
68  * guaranteed.
69  *
70  * Flow rules can apply to inbound and/or outbound traffic (ingress/egress).
71  *
72  * Several pattern items and actions are valid and can be used in both
73  * directions. Those valid for only one direction are described as such.
74  *
75  * At least one direction must be specified.
76  *
77  * Specifying both directions at once for a given rule is not recommended
78  * but may be valid in a few cases.
79  */
80 struct rte_flow_attr {
81         uint32_t group; /**< Priority group. */
82         uint32_t priority; /**< Rule priority level within group. */
83         uint32_t ingress:1; /**< Rule applies to ingress traffic. */
84         uint32_t egress:1; /**< Rule applies to egress traffic. */
85         /**
86          * Instead of simply matching the properties of traffic as it would
87          * appear on a given DPDK port ID, enabling this attribute transfers
88          * a flow rule to the lowest possible level of any device endpoints
89          * found in the pattern.
90          *
91          * When supported, this effectively enables an application to
92          * re-route traffic not necessarily intended for it (e.g. coming
93          * from or addressed to different physical ports, VFs or
94          * applications) at the device level.
95          *
96          * It complements the behavior of some pattern items such as
97          * RTE_FLOW_ITEM_TYPE_PHY_PORT and is meaningless without them.
98          *
99          * When transferring flow rules, ingress and egress attributes keep
100          * their original meaning, as if processing traffic emitted or
101          * received by the application.
102          */
103         uint32_t transfer:1;
104         uint32_t reserved:29; /**< Reserved, must be zero. */
105 };
106
107 /**
108  * Matching pattern item types.
109  *
110  * Pattern items fall in two categories:
111  *
112  * - Matching protocol headers and packet data, usually associated with a
113  *   specification structure. These must be stacked in the same order as the
114  *   protocol layers to match inside packets, starting from the lowest.
115  *
116  * - Matching meta-data or affecting pattern processing, often without a
117  *   specification structure. Since they do not match packet contents, their
118  *   position in the list is usually not relevant.
119  *
120  * See the description of individual types for more information. Those
121  * marked with [META] fall into the second category.
122  */
123 enum rte_flow_item_type {
124         /**
125          * [META]
126          *
127          * End marker for item lists. Prevents further processing of items,
128          * thereby ending the pattern.
129          *
130          * No associated specification structure.
131          */
132         RTE_FLOW_ITEM_TYPE_END,
133
134         /**
135          * [META]
136          *
137          * Used as a placeholder for convenience. It is ignored and simply
138          * discarded by PMDs.
139          *
140          * No associated specification structure.
141          */
142         RTE_FLOW_ITEM_TYPE_VOID,
143
144         /**
145          * [META]
146          *
147          * Inverted matching, i.e. process packets that do not match the
148          * pattern.
149          *
150          * No associated specification structure.
151          */
152         RTE_FLOW_ITEM_TYPE_INVERT,
153
154         /**
155          * Matches any protocol in place of the current layer, a single ANY
156          * may also stand for several protocol layers.
157          *
158          * See struct rte_flow_item_any.
159          */
160         RTE_FLOW_ITEM_TYPE_ANY,
161
162         /**
163          * [META]
164          *
165          * Matches traffic originating from (ingress) or going to (egress)
166          * the physical function of the current device.
167          *
168          * No associated specification structure.
169          */
170         RTE_FLOW_ITEM_TYPE_PF,
171
172         /**
173          * [META]
174          *
175          * Matches traffic originating from (ingress) or going to (egress) a
176          * given virtual function of the current device.
177          *
178          * See struct rte_flow_item_vf.
179          */
180         RTE_FLOW_ITEM_TYPE_VF,
181
182         /**
183          * [META]
184          *
185          * Matches traffic originating from (ingress) or going to (egress) a
186          * physical port of the underlying device.
187          *
188          * See struct rte_flow_item_phy_port.
189          */
190         RTE_FLOW_ITEM_TYPE_PHY_PORT,
191
192         /**
193          * [META]
194          *
195          * Matches traffic originating from (ingress) or going to (egress) a
196          * given DPDK port ID.
197          *
198          * See struct rte_flow_item_port_id.
199          */
200         RTE_FLOW_ITEM_TYPE_PORT_ID,
201
202         /**
203          * Matches a byte string of a given length at a given offset.
204          *
205          * See struct rte_flow_item_raw.
206          */
207         RTE_FLOW_ITEM_TYPE_RAW,
208
209         /**
210          * Matches an Ethernet header.
211          *
212          * See struct rte_flow_item_eth.
213          */
214         RTE_FLOW_ITEM_TYPE_ETH,
215
216         /**
217          * Matches an 802.1Q/ad VLAN tag.
218          *
219          * See struct rte_flow_item_vlan.
220          */
221         RTE_FLOW_ITEM_TYPE_VLAN,
222
223         /**
224          * Matches an IPv4 header.
225          *
226          * See struct rte_flow_item_ipv4.
227          */
228         RTE_FLOW_ITEM_TYPE_IPV4,
229
230         /**
231          * Matches an IPv6 header.
232          *
233          * See struct rte_flow_item_ipv6.
234          */
235         RTE_FLOW_ITEM_TYPE_IPV6,
236
237         /**
238          * Matches an ICMP header.
239          *
240          * See struct rte_flow_item_icmp.
241          */
242         RTE_FLOW_ITEM_TYPE_ICMP,
243
244         /**
245          * Matches a UDP header.
246          *
247          * See struct rte_flow_item_udp.
248          */
249         RTE_FLOW_ITEM_TYPE_UDP,
250
251         /**
252          * Matches a TCP header.
253          *
254          * See struct rte_flow_item_tcp.
255          */
256         RTE_FLOW_ITEM_TYPE_TCP,
257
258         /**
259          * Matches a SCTP header.
260          *
261          * See struct rte_flow_item_sctp.
262          */
263         RTE_FLOW_ITEM_TYPE_SCTP,
264
265         /**
266          * Matches a VXLAN header.
267          *
268          * See struct rte_flow_item_vxlan.
269          */
270         RTE_FLOW_ITEM_TYPE_VXLAN,
271
272         /**
273          * Matches a E_TAG header.
274          *
275          * See struct rte_flow_item_e_tag.
276          */
277         RTE_FLOW_ITEM_TYPE_E_TAG,
278
279         /**
280          * Matches a NVGRE header.
281          *
282          * See struct rte_flow_item_nvgre.
283          */
284         RTE_FLOW_ITEM_TYPE_NVGRE,
285
286         /**
287          * Matches a MPLS header.
288          *
289          * See struct rte_flow_item_mpls.
290          */
291         RTE_FLOW_ITEM_TYPE_MPLS,
292
293         /**
294          * Matches a GRE header.
295          *
296          * See struct rte_flow_item_gre.
297          */
298         RTE_FLOW_ITEM_TYPE_GRE,
299
300         /**
301          * [META]
302          *
303          * Fuzzy pattern match, expect faster than default.
304          *
305          * This is for device that support fuzzy matching option.
306          * Usually a fuzzy matching is fast but the cost is accuracy.
307          *
308          * See struct rte_flow_item_fuzzy.
309          */
310         RTE_FLOW_ITEM_TYPE_FUZZY,
311
312         /**
313          * Matches a GTP header.
314          *
315          * Configure flow for GTP packets.
316          *
317          * See struct rte_flow_item_gtp.
318          */
319         RTE_FLOW_ITEM_TYPE_GTP,
320
321         /**
322          * Matches a GTP header.
323          *
324          * Configure flow for GTP-C packets.
325          *
326          * See struct rte_flow_item_gtp.
327          */
328         RTE_FLOW_ITEM_TYPE_GTPC,
329
330         /**
331          * Matches a GTP header.
332          *
333          * Configure flow for GTP-U packets.
334          *
335          * See struct rte_flow_item_gtp.
336          */
337         RTE_FLOW_ITEM_TYPE_GTPU,
338
339         /**
340          * Matches a ESP header.
341          *
342          * See struct rte_flow_item_esp.
343          */
344         RTE_FLOW_ITEM_TYPE_ESP,
345
346         /**
347          * Matches a GENEVE header.
348          *
349          * See struct rte_flow_item_geneve.
350          */
351         RTE_FLOW_ITEM_TYPE_GENEVE,
352
353         /**
354          * Matches a VXLAN-GPE header.
355          *
356          * See struct rte_flow_item_vxlan_gpe.
357          */
358         RTE_FLOW_ITEM_TYPE_VXLAN_GPE,
359
360         /**
361          * Matches an ARP header for Ethernet/IPv4.
362          *
363          * See struct rte_flow_item_arp_eth_ipv4.
364          */
365         RTE_FLOW_ITEM_TYPE_ARP_ETH_IPV4,
366
367         /**
368          * Matches the presence of any IPv6 extension header.
369          *
370          * See struct rte_flow_item_ipv6_ext.
371          */
372         RTE_FLOW_ITEM_TYPE_IPV6_EXT,
373
374         /**
375          * Matches any ICMPv6 header.
376          *
377          * See struct rte_flow_item_icmp6.
378          */
379         RTE_FLOW_ITEM_TYPE_ICMP6,
380
381         /**
382          * Matches an ICMPv6 neighbor discovery solicitation.
383          *
384          * See struct rte_flow_item_icmp6_nd_ns.
385          */
386         RTE_FLOW_ITEM_TYPE_ICMP6_ND_NS,
387
388         /**
389          * Matches an ICMPv6 neighbor discovery advertisement.
390          *
391          * See struct rte_flow_item_icmp6_nd_na.
392          */
393         RTE_FLOW_ITEM_TYPE_ICMP6_ND_NA,
394
395         /**
396          * Matches the presence of any ICMPv6 neighbor discovery option.
397          *
398          * See struct rte_flow_item_icmp6_nd_opt.
399          */
400         RTE_FLOW_ITEM_TYPE_ICMP6_ND_OPT,
401
402         /**
403          * Matches an ICMPv6 neighbor discovery source Ethernet link-layer
404          * address option.
405          *
406          * See struct rte_flow_item_icmp6_nd_opt_sla_eth.
407          */
408         RTE_FLOW_ITEM_TYPE_ICMP6_ND_OPT_SLA_ETH,
409
410         /**
411          * Matches an ICMPv6 neighbor discovery target Ethernet link-layer
412          * address option.
413          *
414          * See struct rte_flow_item_icmp6_nd_opt_tla_eth.
415          */
416         RTE_FLOW_ITEM_TYPE_ICMP6_ND_OPT_TLA_ETH,
417
418         /**
419          * Matches specified mark field.
420          *
421          * See struct rte_flow_item_mark.
422          */
423         RTE_FLOW_ITEM_TYPE_MARK,
424
425         /**
426          * [META]
427          *
428          * Matches a metadata value.
429          *
430          * See struct rte_flow_item_meta.
431          */
432         RTE_FLOW_ITEM_TYPE_META,
433
434         /**
435          * Matches a GRE optional key field.
436          *
437          * The value should a big-endian 32bit integer.
438          *
439          * When this item present the K bit is implicitly matched as "1"
440          * in the default mask.
441          *
442          * @p spec/mask type:
443          * @code rte_be32_t * @endcode
444          */
445         RTE_FLOW_ITEM_TYPE_GRE_KEY,
446
447         /**
448          * Matches a GTP extension header: PDU session container.
449          *
450          * Configure flow for GTP packets with extension header type 0x85.
451          *
452          * See struct rte_flow_item_gtp_psc.
453          */
454         RTE_FLOW_ITEM_TYPE_GTP_PSC,
455
456         /**
457          * Matches a PPPoE header.
458          *
459          * Configure flow for PPPoE session packets.
460          *
461          * See struct rte_flow_item_pppoe.
462          */
463         RTE_FLOW_ITEM_TYPE_PPPOES,
464
465         /**
466          * Matches a PPPoE header.
467          *
468          * Configure flow for PPPoE discovery packets.
469          *
470          * See struct rte_flow_item_pppoe.
471          */
472         RTE_FLOW_ITEM_TYPE_PPPOED,
473
474         /**
475          * Matches a PPPoE optional proto_id field.
476          *
477          * It only applies to PPPoE session packets.
478          *
479          * See struct rte_flow_item_pppoe_proto_id.
480          */
481         RTE_FLOW_ITEM_TYPE_PPPOE_PROTO_ID,
482
483         /**
484          * Matches Network service header (NSH).
485          * See struct rte_flow_item_nsh.
486          *
487          */
488         RTE_FLOW_ITEM_TYPE_NSH,
489
490         /**
491          * Matches Internet Group Management Protocol (IGMP).
492          * See struct rte_flow_item_igmp.
493          *
494          */
495         RTE_FLOW_ITEM_TYPE_IGMP,
496
497         /**
498          * Matches IP Authentication Header (AH).
499          * See struct rte_flow_item_ah.
500          *
501          */
502         RTE_FLOW_ITEM_TYPE_AH,
503
504         /**
505          * Matches a HIGIG header.
506          * see struct rte_flow_item_higig2_hdr.
507          */
508         RTE_FLOW_ITEM_TYPE_HIGIG2,
509
510         /**
511          * [META]
512          *
513          * Matches a tag value.
514          *
515          * See struct rte_flow_item_tag.
516          */
517         RTE_FLOW_ITEM_TYPE_TAG,
518
519         /**
520          * Matches a L2TPv3 over IP header.
521          *
522          * Configure flow for L2TPv3 over IP packets.
523          *
524          * See struct rte_flow_item_l2tpv3oip.
525          */
526         RTE_FLOW_ITEM_TYPE_L2TPV3OIP,
527
528         /**
529          * Matches PFCP Header.
530          * See struct rte_flow_item_pfcp.
531          *
532          */
533         RTE_FLOW_ITEM_TYPE_PFCP,
534
535         /**
536          * Matches eCPRI Header.
537          *
538          * Configure flow for eCPRI over ETH or UDP packets.
539          *
540          * See struct rte_flow_item_ecpri.
541          */
542         RTE_FLOW_ITEM_TYPE_ECPRI,
543
544         /**
545          * Matches the presence of IPv6 fragment extension header.
546          *
547          * See struct rte_flow_item_ipv6_frag_ext.
548          */
549         RTE_FLOW_ITEM_TYPE_IPV6_FRAG_EXT,
550
551         /**
552          * Matches Geneve Variable Length Option
553          *
554          * See struct rte_flow_item_geneve_opt
555          */
556         RTE_FLOW_ITEM_TYPE_GENEVE_OPT,
557
558         /**
559          * [META]
560          *
561          * Matches on packet integrity.
562          * For some devices application needs to enable integration checks in HW
563          * before using this item.
564          *
565          * @see struct rte_flow_item_integrity.
566          */
567         RTE_FLOW_ITEM_TYPE_INTEGRITY,
568
569         /**
570          * [META]
571          *
572          * Matches conntrack state.
573          *
574          * @see struct rte_flow_item_conntrack.
575          */
576         RTE_FLOW_ITEM_TYPE_CONNTRACK,
577
578         /**
579          * [META]
580          *
581          * Matches traffic entering the embedded switch from the given ethdev.
582          *
583          * @see struct rte_flow_item_ethdev
584          */
585         RTE_FLOW_ITEM_TYPE_PORT_REPRESENTOR,
586
587         /**
588          * [META]
589          *
590          * Matches traffic entering the embedded switch from
591          * the entity represented by the given ethdev.
592          *
593          * @see struct rte_flow_item_ethdev
594          */
595         RTE_FLOW_ITEM_TYPE_REPRESENTED_PORT,
596 };
597
598 /**
599  *
600  * RTE_FLOW_ITEM_TYPE_HIGIG2
601  * Matches higig2 header
602  */
603 RTE_STD_C11
604 struct rte_flow_item_higig2_hdr {
605         struct rte_higig2_hdr hdr;
606 };
607
608 /** Default mask for RTE_FLOW_ITEM_TYPE_HIGIG2. */
609 #ifndef __cplusplus
610 static const struct rte_flow_item_higig2_hdr rte_flow_item_higig2_hdr_mask = {
611         .hdr = {
612                 .ppt1 = {
613                         .classification = 0xffff,
614                         .vid = 0xfff,
615                 },
616         },
617 };
618 #endif
619
620 /**
621  * RTE_FLOW_ITEM_TYPE_ANY
622  *
623  * Matches any protocol in place of the current layer, a single ANY may also
624  * stand for several protocol layers.
625  *
626  * This is usually specified as the first pattern item when looking for a
627  * protocol anywhere in a packet.
628  *
629  * A zeroed mask stands for any number of layers.
630  */
631 struct rte_flow_item_any {
632         uint32_t num; /**< Number of layers covered. */
633 };
634
635 /** Default mask for RTE_FLOW_ITEM_TYPE_ANY. */
636 #ifndef __cplusplus
637 static const struct rte_flow_item_any rte_flow_item_any_mask = {
638         .num = 0x00000000,
639 };
640 #endif
641
642 /**
643  * RTE_FLOW_ITEM_TYPE_VF
644  *
645  * Matches traffic originating from (ingress) or going to (egress) a given
646  * virtual function of the current device.
647  *
648  * If supported, should work even if the virtual function is not managed by
649  * the application and thus not associated with a DPDK port ID.
650  *
651  * Note this pattern item does not match VF representors traffic which, as
652  * separate entities, should be addressed through their own DPDK port IDs.
653  *
654  * - Can be specified multiple times to match traffic addressed to several
655  *   VF IDs.
656  * - Can be combined with a PF item to match both PF and VF traffic.
657  *
658  * A zeroed mask can be used to match any VF ID.
659  */
660 struct rte_flow_item_vf {
661         uint32_t id; /**< VF ID. */
662 };
663
664 /** Default mask for RTE_FLOW_ITEM_TYPE_VF. */
665 #ifndef __cplusplus
666 static const struct rte_flow_item_vf rte_flow_item_vf_mask = {
667         .id = 0x00000000,
668 };
669 #endif
670
671 /**
672  * RTE_FLOW_ITEM_TYPE_PHY_PORT
673  *
674  * Matches traffic originating from (ingress) or going to (egress) a
675  * physical port of the underlying device.
676  *
677  * The first PHY_PORT item overrides the physical port normally associated
678  * with the specified DPDK input port (port_id). This item can be provided
679  * several times to match additional physical ports.
680  *
681  * Note that physical ports are not necessarily tied to DPDK input ports
682  * (port_id) when those are not under DPDK control. Possible values are
683  * specific to each device, they are not necessarily indexed from zero and
684  * may not be contiguous.
685  *
686  * As a device property, the list of allowed values as well as the value
687  * associated with a port_id should be retrieved by other means.
688  *
689  * A zeroed mask can be used to match any port index.
690  */
691 struct rte_flow_item_phy_port {
692         uint32_t index; /**< Physical port index. */
693 };
694
695 /** Default mask for RTE_FLOW_ITEM_TYPE_PHY_PORT. */
696 #ifndef __cplusplus
697 static const struct rte_flow_item_phy_port rte_flow_item_phy_port_mask = {
698         .index = 0x00000000,
699 };
700 #endif
701
702 /**
703  * RTE_FLOW_ITEM_TYPE_PORT_ID
704  *
705  * Matches traffic originating from (ingress) or going to (egress) a given
706  * DPDK port ID.
707  *
708  * Normally only supported if the port ID in question is known by the
709  * underlying PMD and related to the device the flow rule is created
710  * against.
711  *
712  * This must not be confused with @p PHY_PORT which refers to the physical
713  * port of a device, whereas @p PORT_ID refers to a struct rte_eth_dev
714  * object on the application side (also known as "port representor"
715  * depending on the kind of underlying device).
716  */
717 struct rte_flow_item_port_id {
718         uint32_t id; /**< DPDK port ID. */
719 };
720
721 /** Default mask for RTE_FLOW_ITEM_TYPE_PORT_ID. */
722 #ifndef __cplusplus
723 static const struct rte_flow_item_port_id rte_flow_item_port_id_mask = {
724         .id = 0xffffffff,
725 };
726 #endif
727
728 /**
729  * RTE_FLOW_ITEM_TYPE_RAW
730  *
731  * Matches a byte string of a given length at a given offset.
732  *
733  * Offset is either absolute (using the start of the packet) or relative to
734  * the end of the previous matched item in the stack, in which case negative
735  * values are allowed.
736  *
737  * If search is enabled, offset is used as the starting point. The search
738  * area can be delimited by setting limit to a nonzero value, which is the
739  * maximum number of bytes after offset where the pattern may start.
740  *
741  * Matching a zero-length pattern is allowed, doing so resets the relative
742  * offset for subsequent items.
743  *
744  * This type does not support ranges (struct rte_flow_item.last).
745  */
746 struct rte_flow_item_raw {
747         uint32_t relative:1; /**< Look for pattern after the previous item. */
748         uint32_t search:1; /**< Search pattern from offset (see also limit). */
749         uint32_t reserved:30; /**< Reserved, must be set to zero. */
750         int32_t offset; /**< Absolute or relative offset for pattern. */
751         uint16_t limit; /**< Search area limit for start of pattern. */
752         uint16_t length; /**< Pattern length. */
753         const uint8_t *pattern; /**< Byte string to look for. */
754 };
755
756 /** Default mask for RTE_FLOW_ITEM_TYPE_RAW. */
757 #ifndef __cplusplus
758 static const struct rte_flow_item_raw rte_flow_item_raw_mask = {
759         .relative = 1,
760         .search = 1,
761         .reserved = 0x3fffffff,
762         .offset = 0xffffffff,
763         .limit = 0xffff,
764         .length = 0xffff,
765         .pattern = NULL,
766 };
767 #endif
768
769 /**
770  * RTE_FLOW_ITEM_TYPE_ETH
771  *
772  * Matches an Ethernet header.
773  *
774  * Inside @p hdr field, the sub-field @p ether_type stands either for EtherType
775  * or TPID, depending on whether the item is followed by a VLAN item or not. If
776  * two VLAN items follow, the sub-field refers to the outer one, which, in turn,
777  * contains the inner TPID in the similar header field. The innermost VLAN item
778  * contains a layer-3 EtherType. All of that follows the order seen on the wire.
779  *
780  * If the field in question contains a TPID value, only tagged packets with the
781  * specified TPID will match the pattern. Alternatively, it's possible to match
782  * any type of tagged packets by means of the field @p has_vlan rather than use
783  * the EtherType/TPID field. Also, it's possible to leave the two fields unused.
784  * If this is the case, both tagged and untagged packets will match the pattern.
785  */
786 RTE_STD_C11
787 struct rte_flow_item_eth {
788         union {
789                 struct {
790                         /*
791                          * These fields are retained for compatibility.
792                          * Please switch to the new header field below.
793                          */
794                         struct rte_ether_addr dst; /**< Destination MAC. */
795                         struct rte_ether_addr src; /**< Source MAC. */
796                         rte_be16_t type; /**< EtherType or TPID. */
797                 };
798                 struct rte_ether_hdr hdr;
799         };
800         uint32_t has_vlan:1; /**< Packet header contains at least one VLAN. */
801         uint32_t reserved:31; /**< Reserved, must be zero. */
802 };
803
804 /** Default mask for RTE_FLOW_ITEM_TYPE_ETH. */
805 #ifndef __cplusplus
806 static const struct rte_flow_item_eth rte_flow_item_eth_mask = {
807         .hdr.dst_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
808         .hdr.src_addr.addr_bytes = "\xff\xff\xff\xff\xff\xff",
809         .hdr.ether_type = RTE_BE16(0x0000),
810 };
811 #endif
812
813 /**
814  * RTE_FLOW_ITEM_TYPE_VLAN
815  *
816  * Matches an 802.1Q/ad VLAN tag.
817  *
818  * The corresponding standard outer EtherType (TPID) values are
819  * RTE_ETHER_TYPE_VLAN or RTE_ETHER_TYPE_QINQ. It can be overridden by
820  * the preceding pattern item.
821  * If a @p VLAN item is present in the pattern, then only tagged packets will
822  * match the pattern.
823  * The field @p has_more_vlan can be used to match any type of tagged packets,
824  * instead of using the @p eth_proto field of @p hdr.
825  * If the @p eth_proto of @p hdr and @p has_more_vlan fields are not specified,
826  * then any tagged packets will match the pattern.
827  */
828 RTE_STD_C11
829 struct rte_flow_item_vlan {
830         union {
831                 struct {
832                         /*
833                          * These fields are retained for compatibility.
834                          * Please switch to the new header field below.
835                          */
836                         rte_be16_t tci; /**< Tag control information. */
837                         rte_be16_t inner_type; /**< Inner EtherType or TPID. */
838                 };
839                 struct rte_vlan_hdr hdr;
840         };
841         uint32_t has_more_vlan:1;
842         /**< Packet header contains at least one more VLAN, after this VLAN. */
843         uint32_t reserved:31; /**< Reserved, must be zero. */
844 };
845
846 /** Default mask for RTE_FLOW_ITEM_TYPE_VLAN. */
847 #ifndef __cplusplus
848 static const struct rte_flow_item_vlan rte_flow_item_vlan_mask = {
849         .hdr.vlan_tci = RTE_BE16(0x0fff),
850         .hdr.eth_proto = RTE_BE16(0x0000),
851 };
852 #endif
853
854 /**
855  * RTE_FLOW_ITEM_TYPE_IPV4
856  *
857  * Matches an IPv4 header.
858  *
859  * Note: IPv4 options are handled by dedicated pattern items.
860  */
861 struct rte_flow_item_ipv4 {
862         struct rte_ipv4_hdr hdr; /**< IPv4 header definition. */
863 };
864
865 /** Default mask for RTE_FLOW_ITEM_TYPE_IPV4. */
866 #ifndef __cplusplus
867 static const struct rte_flow_item_ipv4 rte_flow_item_ipv4_mask = {
868         .hdr = {
869                 .src_addr = RTE_BE32(0xffffffff),
870                 .dst_addr = RTE_BE32(0xffffffff),
871         },
872 };
873 #endif
874
875 /**
876  * RTE_FLOW_ITEM_TYPE_IPV6.
877  *
878  * Matches an IPv6 header.
879  *
880  * Dedicated flags indicate if header contains specific extension headers.
881  */
882 struct rte_flow_item_ipv6 {
883         struct rte_ipv6_hdr hdr; /**< IPv6 header definition. */
884         uint32_t has_hop_ext:1;
885         /**< Header contains Hop-by-Hop Options extension header. */
886         uint32_t has_route_ext:1;
887         /**< Header contains Routing extension header. */
888         uint32_t has_frag_ext:1;
889         /**< Header contains Fragment extension header. */
890         uint32_t has_auth_ext:1;
891         /**< Header contains Authentication extension header. */
892         uint32_t has_esp_ext:1;
893         /**< Header contains Encapsulation Security Payload extension header. */
894         uint32_t has_dest_ext:1;
895         /**< Header contains Destination Options extension header. */
896         uint32_t has_mobil_ext:1;
897         /**< Header contains Mobility extension header. */
898         uint32_t has_hip_ext:1;
899         /**< Header contains Host Identity Protocol extension header. */
900         uint32_t has_shim6_ext:1;
901         /**< Header contains Shim6 Protocol extension header. */
902         uint32_t reserved:23;
903         /**< Reserved for future extension headers, must be zero. */
904 };
905
906 /** Default mask for RTE_FLOW_ITEM_TYPE_IPV6. */
907 #ifndef __cplusplus
908 static const struct rte_flow_item_ipv6 rte_flow_item_ipv6_mask = {
909         .hdr = {
910                 .src_addr =
911                         "\xff\xff\xff\xff\xff\xff\xff\xff"
912                         "\xff\xff\xff\xff\xff\xff\xff\xff",
913                 .dst_addr =
914                         "\xff\xff\xff\xff\xff\xff\xff\xff"
915                         "\xff\xff\xff\xff\xff\xff\xff\xff",
916         },
917 };
918 #endif
919
920 /**
921  * RTE_FLOW_ITEM_TYPE_ICMP.
922  *
923  * Matches an ICMP header.
924  */
925 struct rte_flow_item_icmp {
926         struct rte_icmp_hdr hdr; /**< ICMP header definition. */
927 };
928
929 /** Default mask for RTE_FLOW_ITEM_TYPE_ICMP. */
930 #ifndef __cplusplus
931 static const struct rte_flow_item_icmp rte_flow_item_icmp_mask = {
932         .hdr = {
933                 .icmp_type = 0xff,
934                 .icmp_code = 0xff,
935         },
936 };
937 #endif
938
939 /**
940  * RTE_FLOW_ITEM_TYPE_UDP.
941  *
942  * Matches a UDP header.
943  */
944 struct rte_flow_item_udp {
945         struct rte_udp_hdr hdr; /**< UDP header definition. */
946 };
947
948 /** Default mask for RTE_FLOW_ITEM_TYPE_UDP. */
949 #ifndef __cplusplus
950 static const struct rte_flow_item_udp rte_flow_item_udp_mask = {
951         .hdr = {
952                 .src_port = RTE_BE16(0xffff),
953                 .dst_port = RTE_BE16(0xffff),
954         },
955 };
956 #endif
957
958 /**
959  * RTE_FLOW_ITEM_TYPE_TCP.
960  *
961  * Matches a TCP header.
962  */
963 struct rte_flow_item_tcp {
964         struct rte_tcp_hdr hdr; /**< TCP header definition. */
965 };
966
967 /** Default mask for RTE_FLOW_ITEM_TYPE_TCP. */
968 #ifndef __cplusplus
969 static const struct rte_flow_item_tcp rte_flow_item_tcp_mask = {
970         .hdr = {
971                 .src_port = RTE_BE16(0xffff),
972                 .dst_port = RTE_BE16(0xffff),
973         },
974 };
975 #endif
976
977 /**
978  * RTE_FLOW_ITEM_TYPE_SCTP.
979  *
980  * Matches a SCTP header.
981  */
982 struct rte_flow_item_sctp {
983         struct rte_sctp_hdr hdr; /**< SCTP header definition. */
984 };
985
986 /** Default mask for RTE_FLOW_ITEM_TYPE_SCTP. */
987 #ifndef __cplusplus
988 static const struct rte_flow_item_sctp rte_flow_item_sctp_mask = {
989         .hdr = {
990                 .src_port = RTE_BE16(0xffff),
991                 .dst_port = RTE_BE16(0xffff),
992         },
993 };
994 #endif
995
996 /**
997  * RTE_FLOW_ITEM_TYPE_VXLAN.
998  *
999  * Matches a VXLAN header (RFC 7348).
1000  */
1001 RTE_STD_C11
1002 struct rte_flow_item_vxlan {
1003         union {
1004                 struct {
1005                         /*
1006                          * These fields are retained for compatibility.
1007                          * Please switch to the new header field below.
1008                          */
1009                         uint8_t flags; /**< Normally 0x08 (I flag). */
1010                         uint8_t rsvd0[3]; /**< Reserved, normally 0x000000. */
1011                         uint8_t vni[3]; /**< VXLAN identifier. */
1012                         uint8_t rsvd1; /**< Reserved, normally 0x00. */
1013                 };
1014                 struct rte_vxlan_hdr hdr;
1015         };
1016 };
1017
1018 /** Default mask for RTE_FLOW_ITEM_TYPE_VXLAN. */
1019 #ifndef __cplusplus
1020 static const struct rte_flow_item_vxlan rte_flow_item_vxlan_mask = {
1021         .hdr.vx_vni = RTE_BE32(0xffffff00), /* (0xffffff << 8) */
1022 };
1023 #endif
1024
1025 /**
1026  * RTE_FLOW_ITEM_TYPE_E_TAG.
1027  *
1028  * Matches a E-tag header.
1029  *
1030  * The corresponding standard outer EtherType (TPID) value is
1031  * RTE_ETHER_TYPE_ETAG. It can be overridden by the preceding pattern item.
1032  */
1033 struct rte_flow_item_e_tag {
1034         /**
1035          * E-Tag control information (E-TCI).
1036          * E-PCP (3b), E-DEI (1b), ingress E-CID base (12b).
1037          */
1038         rte_be16_t epcp_edei_in_ecid_b;
1039         /** Reserved (2b), GRP (2b), E-CID base (12b). */
1040         rte_be16_t rsvd_grp_ecid_b;
1041         uint8_t in_ecid_e; /**< Ingress E-CID ext. */
1042         uint8_t ecid_e; /**< E-CID ext. */
1043         rte_be16_t inner_type; /**< Inner EtherType or TPID. */
1044 };
1045
1046 /** Default mask for RTE_FLOW_ITEM_TYPE_E_TAG. */
1047 #ifndef __cplusplus
1048 static const struct rte_flow_item_e_tag rte_flow_item_e_tag_mask = {
1049         .rsvd_grp_ecid_b = RTE_BE16(0x3fff),
1050 };
1051 #endif
1052
1053 /**
1054  * RTE_FLOW_ITEM_TYPE_NVGRE.
1055  *
1056  * Matches a NVGRE header.
1057  */
1058 struct rte_flow_item_nvgre {
1059         /**
1060          * Checksum (1b), undefined (1b), key bit (1b), sequence number (1b),
1061          * reserved 0 (9b), version (3b).
1062          *
1063          * c_k_s_rsvd0_ver must have value 0x2000 according to RFC 7637.
1064          */
1065         rte_be16_t c_k_s_rsvd0_ver;
1066         rte_be16_t protocol; /**< Protocol type (0x6558). */
1067         uint8_t tni[3]; /**< Virtual subnet ID. */
1068         uint8_t flow_id; /**< Flow ID. */
1069 };
1070
1071 /** Default mask for RTE_FLOW_ITEM_TYPE_NVGRE. */
1072 #ifndef __cplusplus
1073 static const struct rte_flow_item_nvgre rte_flow_item_nvgre_mask = {
1074         .tni = "\xff\xff\xff",
1075 };
1076 #endif
1077
1078 /**
1079  * RTE_FLOW_ITEM_TYPE_MPLS.
1080  *
1081  * Matches a MPLS header.
1082  */
1083 struct rte_flow_item_mpls {
1084         /**
1085          * Label (20b), TC (3b), Bottom of Stack (1b).
1086          */
1087         uint8_t label_tc_s[3];
1088         uint8_t ttl; /** Time-to-Live. */
1089 };
1090
1091 /** Default mask for RTE_FLOW_ITEM_TYPE_MPLS. */
1092 #ifndef __cplusplus
1093 static const struct rte_flow_item_mpls rte_flow_item_mpls_mask = {
1094         .label_tc_s = "\xff\xff\xf0",
1095 };
1096 #endif
1097
1098 /**
1099  * RTE_FLOW_ITEM_TYPE_GRE.
1100  *
1101  * Matches a GRE header.
1102  */
1103 struct rte_flow_item_gre {
1104         /**
1105          * Checksum (1b), reserved 0 (12b), version (3b).
1106          * Refer to RFC 2784.
1107          */
1108         rte_be16_t c_rsvd0_ver;
1109         rte_be16_t protocol; /**< Protocol type. */
1110 };
1111
1112 /** Default mask for RTE_FLOW_ITEM_TYPE_GRE. */
1113 #ifndef __cplusplus
1114 static const struct rte_flow_item_gre rte_flow_item_gre_mask = {
1115         .protocol = RTE_BE16(0xffff),
1116 };
1117 #endif
1118
1119 /**
1120  * RTE_FLOW_ITEM_TYPE_FUZZY
1121  *
1122  * Fuzzy pattern match, expect faster than default.
1123  *
1124  * This is for device that support fuzzy match option.
1125  * Usually a fuzzy match is fast but the cost is accuracy.
1126  * i.e. Signature Match only match pattern's hash value, but it is
1127  * possible two different patterns have the same hash value.
1128  *
1129  * Matching accuracy level can be configure by threshold.
1130  * Driver can divide the range of threshold and map to different
1131  * accuracy levels that device support.
1132  *
1133  * Threshold 0 means perfect match (no fuzziness), while threshold
1134  * 0xffffffff means fuzziest match.
1135  */
1136 struct rte_flow_item_fuzzy {
1137         uint32_t thresh; /**< Accuracy threshold. */
1138 };
1139
1140 /** Default mask for RTE_FLOW_ITEM_TYPE_FUZZY. */
1141 #ifndef __cplusplus
1142 static const struct rte_flow_item_fuzzy rte_flow_item_fuzzy_mask = {
1143         .thresh = 0xffffffff,
1144 };
1145 #endif
1146
1147 /**
1148  * RTE_FLOW_ITEM_TYPE_GTP.
1149  *
1150  * Matches a GTPv1 header.
1151  */
1152 struct rte_flow_item_gtp {
1153         /**
1154          * Version (3b), protocol type (1b), reserved (1b),
1155          * Extension header flag (1b),
1156          * Sequence number flag (1b),
1157          * N-PDU number flag (1b).
1158          */
1159         uint8_t v_pt_rsv_flags;
1160         uint8_t msg_type; /**< Message type. */
1161         rte_be16_t msg_len; /**< Message length. */
1162         rte_be32_t teid; /**< Tunnel endpoint identifier. */
1163 };
1164
1165 /** Default mask for RTE_FLOW_ITEM_TYPE_GTP. */
1166 #ifndef __cplusplus
1167 static const struct rte_flow_item_gtp rte_flow_item_gtp_mask = {
1168         .teid = RTE_BE32(0xffffffff),
1169 };
1170 #endif
1171
1172 /**
1173  * RTE_FLOW_ITEM_TYPE_ESP
1174  *
1175  * Matches an ESP header.
1176  */
1177 struct rte_flow_item_esp {
1178         struct rte_esp_hdr hdr; /**< ESP header definition. */
1179 };
1180
1181 /** Default mask for RTE_FLOW_ITEM_TYPE_ESP. */
1182 #ifndef __cplusplus
1183 static const struct rte_flow_item_esp rte_flow_item_esp_mask = {
1184         .hdr = {
1185                 .spi = RTE_BE32(0xffffffff),
1186         },
1187 };
1188 #endif
1189
1190 /**
1191  * RTE_FLOW_ITEM_TYPE_GENEVE.
1192  *
1193  * Matches a GENEVE header.
1194  */
1195 struct rte_flow_item_geneve {
1196         /**
1197          * Version (2b), length of the options fields (6b), OAM packet (1b),
1198          * critical options present (1b), reserved 0 (6b).
1199          */
1200         rte_be16_t ver_opt_len_o_c_rsvd0;
1201         rte_be16_t protocol; /**< Protocol type. */
1202         uint8_t vni[3]; /**< Virtual Network Identifier. */
1203         uint8_t rsvd1; /**< Reserved, normally 0x00. */
1204 };
1205
1206 /** Default mask for RTE_FLOW_ITEM_TYPE_GENEVE. */
1207 #ifndef __cplusplus
1208 static const struct rte_flow_item_geneve rte_flow_item_geneve_mask = {
1209         .vni = "\xff\xff\xff",
1210 };
1211 #endif
1212
1213 /**
1214  * RTE_FLOW_ITEM_TYPE_VXLAN_GPE (draft-ietf-nvo3-vxlan-gpe-05).
1215  *
1216  * Matches a VXLAN-GPE header.
1217  */
1218 struct rte_flow_item_vxlan_gpe {
1219         uint8_t flags; /**< Normally 0x0c (I and P flags). */
1220         uint8_t rsvd0[2]; /**< Reserved, normally 0x0000. */
1221         uint8_t protocol; /**< Protocol type. */
1222         uint8_t vni[3]; /**< VXLAN identifier. */
1223         uint8_t rsvd1; /**< Reserved, normally 0x00. */
1224 };
1225
1226 /** Default mask for RTE_FLOW_ITEM_TYPE_VXLAN_GPE. */
1227 #ifndef __cplusplus
1228 static const struct rte_flow_item_vxlan_gpe rte_flow_item_vxlan_gpe_mask = {
1229         .vni = "\xff\xff\xff",
1230 };
1231 #endif
1232
1233 /**
1234  * RTE_FLOW_ITEM_TYPE_ARP_ETH_IPV4
1235  *
1236  * Matches an ARP header for Ethernet/IPv4.
1237  */
1238 struct rte_flow_item_arp_eth_ipv4 {
1239         rte_be16_t hrd; /**< Hardware type, normally 1. */
1240         rte_be16_t pro; /**< Protocol type, normally 0x0800. */
1241         uint8_t hln; /**< Hardware address length, normally 6. */
1242         uint8_t pln; /**< Protocol address length, normally 4. */
1243         rte_be16_t op; /**< Opcode (1 for request, 2 for reply). */
1244         struct rte_ether_addr sha; /**< Sender hardware address. */
1245         rte_be32_t spa; /**< Sender IPv4 address. */
1246         struct rte_ether_addr tha; /**< Target hardware address. */
1247         rte_be32_t tpa; /**< Target IPv4 address. */
1248 };
1249
1250 /** Default mask for RTE_FLOW_ITEM_TYPE_ARP_ETH_IPV4. */
1251 #ifndef __cplusplus
1252 static const struct rte_flow_item_arp_eth_ipv4
1253 rte_flow_item_arp_eth_ipv4_mask = {
1254         .sha.addr_bytes = "\xff\xff\xff\xff\xff\xff",
1255         .spa = RTE_BE32(0xffffffff),
1256         .tha.addr_bytes = "\xff\xff\xff\xff\xff\xff",
1257         .tpa = RTE_BE32(0xffffffff),
1258 };
1259 #endif
1260
1261 /**
1262  * RTE_FLOW_ITEM_TYPE_IPV6_EXT
1263  *
1264  * Matches the presence of any IPv6 extension header.
1265  *
1266  * Normally preceded by any of:
1267  *
1268  * - RTE_FLOW_ITEM_TYPE_IPV6
1269  * - RTE_FLOW_ITEM_TYPE_IPV6_EXT
1270  */
1271 struct rte_flow_item_ipv6_ext {
1272         uint8_t next_hdr; /**< Next header. */
1273 };
1274
1275 /** Default mask for RTE_FLOW_ITEM_TYPE_IPV6_EXT. */
1276 #ifndef __cplusplus
1277 static const
1278 struct rte_flow_item_ipv6_ext rte_flow_item_ipv6_ext_mask = {
1279         .next_hdr = 0xff,
1280 };
1281 #endif
1282
1283 /**
1284  * RTE_FLOW_ITEM_TYPE_IPV6_FRAG_EXT
1285  *
1286  * Matches the presence of IPv6 fragment extension header.
1287  *
1288  * Preceded by any of:
1289  *
1290  * - RTE_FLOW_ITEM_TYPE_IPV6
1291  * - RTE_FLOW_ITEM_TYPE_IPV6_EXT
1292  */
1293 struct rte_flow_item_ipv6_frag_ext {
1294         struct rte_ipv6_fragment_ext hdr;
1295 };
1296
1297 /**
1298  * RTE_FLOW_ITEM_TYPE_ICMP6
1299  *
1300  * Matches any ICMPv6 header.
1301  */
1302 struct rte_flow_item_icmp6 {
1303         uint8_t type; /**< ICMPv6 type. */
1304         uint8_t code; /**< ICMPv6 code. */
1305         uint16_t checksum; /**< ICMPv6 checksum. */
1306 };
1307
1308 /** Default mask for RTE_FLOW_ITEM_TYPE_ICMP6. */
1309 #ifndef __cplusplus
1310 static const struct rte_flow_item_icmp6 rte_flow_item_icmp6_mask = {
1311         .type = 0xff,
1312         .code = 0xff,
1313 };
1314 #endif
1315
1316 /**
1317  * RTE_FLOW_ITEM_TYPE_ICMP6_ND_NS
1318  *
1319  * Matches an ICMPv6 neighbor discovery solicitation.
1320  */
1321 struct rte_flow_item_icmp6_nd_ns {
1322         uint8_t type; /**< ICMPv6 type, normally 135. */
1323         uint8_t code; /**< ICMPv6 code, normally 0. */
1324         rte_be16_t checksum; /**< ICMPv6 checksum. */
1325         rte_be32_t reserved; /**< Reserved, normally 0. */
1326         uint8_t target_addr[16]; /**< Target address. */
1327 };
1328
1329 /** Default mask for RTE_FLOW_ITEM_TYPE_ICMP6_ND_NS. */
1330 #ifndef __cplusplus
1331 static const
1332 struct rte_flow_item_icmp6_nd_ns rte_flow_item_icmp6_nd_ns_mask = {
1333         .target_addr =
1334                 "\xff\xff\xff\xff\xff\xff\xff\xff"
1335                 "\xff\xff\xff\xff\xff\xff\xff\xff",
1336 };
1337 #endif
1338
1339 /**
1340  * RTE_FLOW_ITEM_TYPE_ICMP6_ND_NA
1341  *
1342  * Matches an ICMPv6 neighbor discovery advertisement.
1343  */
1344 struct rte_flow_item_icmp6_nd_na {
1345         uint8_t type; /**< ICMPv6 type, normally 136. */
1346         uint8_t code; /**< ICMPv6 code, normally 0. */
1347         rte_be16_t checksum; /**< ICMPv6 checksum. */
1348         /**
1349          * Route flag (1b), solicited flag (1b), override flag (1b),
1350          * reserved (29b).
1351          */
1352         rte_be32_t rso_reserved;
1353         uint8_t target_addr[16]; /**< Target address. */
1354 };
1355
1356 /** Default mask for RTE_FLOW_ITEM_TYPE_ICMP6_ND_NA. */
1357 #ifndef __cplusplus
1358 static const
1359 struct rte_flow_item_icmp6_nd_na rte_flow_item_icmp6_nd_na_mask = {
1360         .target_addr =
1361                 "\xff\xff\xff\xff\xff\xff\xff\xff"
1362                 "\xff\xff\xff\xff\xff\xff\xff\xff",
1363 };
1364 #endif
1365
1366 /**
1367  * RTE_FLOW_ITEM_TYPE_ICMP6_ND_OPT
1368  *
1369  * Matches the presence of any ICMPv6 neighbor discovery option.
1370  *
1371  * Normally preceded by any of:
1372  *
1373  * - RTE_FLOW_ITEM_TYPE_ICMP6_ND_NA
1374  * - RTE_FLOW_ITEM_TYPE_ICMP6_ND_NS
1375  * - RTE_FLOW_ITEM_TYPE_ICMP6_ND_OPT
1376  */
1377 struct rte_flow_item_icmp6_nd_opt {
1378         uint8_t type; /**< ND option type. */
1379         uint8_t length; /**< ND option length. */
1380 };
1381
1382 /** Default mask for RTE_FLOW_ITEM_TYPE_ICMP6_ND_OPT. */
1383 #ifndef __cplusplus
1384 static const struct rte_flow_item_icmp6_nd_opt
1385 rte_flow_item_icmp6_nd_opt_mask = {
1386         .type = 0xff,
1387 };
1388 #endif
1389
1390 /**
1391  * RTE_FLOW_ITEM_TYPE_ICMP6_ND_OPT_SLA_ETH
1392  *
1393  * Matches an ICMPv6 neighbor discovery source Ethernet link-layer address
1394  * option.
1395  *
1396  * Normally preceded by any of:
1397  *
1398  * - RTE_FLOW_ITEM_TYPE_ICMP6_ND_NA
1399  * - RTE_FLOW_ITEM_TYPE_ICMP6_ND_OPT
1400  */
1401 struct rte_flow_item_icmp6_nd_opt_sla_eth {
1402         uint8_t type; /**< ND option type, normally 1. */
1403         uint8_t length; /**< ND option length, normally 1. */
1404         struct rte_ether_addr sla; /**< Source Ethernet LLA. */
1405 };
1406
1407 /** Default mask for RTE_FLOW_ITEM_TYPE_ICMP6_ND_OPT_SLA_ETH. */
1408 #ifndef __cplusplus
1409 static const struct rte_flow_item_icmp6_nd_opt_sla_eth
1410 rte_flow_item_icmp6_nd_opt_sla_eth_mask = {
1411         .sla.addr_bytes = "\xff\xff\xff\xff\xff\xff",
1412 };
1413 #endif
1414
1415 /**
1416  * RTE_FLOW_ITEM_TYPE_ICMP6_ND_OPT_TLA_ETH
1417  *
1418  * Matches an ICMPv6 neighbor discovery target Ethernet link-layer address
1419  * option.
1420  *
1421  * Normally preceded by any of:
1422  *
1423  * - RTE_FLOW_ITEM_TYPE_ICMP6_ND_NS
1424  * - RTE_FLOW_ITEM_TYPE_ICMP6_ND_OPT
1425  */
1426 struct rte_flow_item_icmp6_nd_opt_tla_eth {
1427         uint8_t type; /**< ND option type, normally 2. */
1428         uint8_t length; /**< ND option length, normally 1. */
1429         struct rte_ether_addr tla; /**< Target Ethernet LLA. */
1430 };
1431
1432 /** Default mask for RTE_FLOW_ITEM_TYPE_ICMP6_ND_OPT_TLA_ETH. */
1433 #ifndef __cplusplus
1434 static const struct rte_flow_item_icmp6_nd_opt_tla_eth
1435 rte_flow_item_icmp6_nd_opt_tla_eth_mask = {
1436         .tla.addr_bytes = "\xff\xff\xff\xff\xff\xff",
1437 };
1438 #endif
1439
1440 /**
1441  * RTE_FLOW_ITEM_TYPE_META
1442  *
1443  * Matches a specified metadata value. On egress, metadata can be set
1444  * either by mbuf dynamic metadata field with PKT_TX_DYNF_METADATA flag or
1445  * RTE_FLOW_ACTION_TYPE_SET_META. On ingress, RTE_FLOW_ACTION_TYPE_SET_META
1446  * sets metadata for a packet and the metadata will be reported via mbuf
1447  * metadata dynamic field with PKT_RX_DYNF_METADATA flag. The dynamic mbuf
1448  * field must be registered in advance by rte_flow_dynf_metadata_register().
1449  */
1450 struct rte_flow_item_meta {
1451         uint32_t data;
1452 };
1453
1454 /** Default mask for RTE_FLOW_ITEM_TYPE_META. */
1455 #ifndef __cplusplus
1456 static const struct rte_flow_item_meta rte_flow_item_meta_mask = {
1457         .data = UINT32_MAX,
1458 };
1459 #endif
1460
1461 /**
1462  * RTE_FLOW_ITEM_TYPE_GTP_PSC.
1463  *
1464  * Matches a GTP PDU extension header with type 0x85.
1465  */
1466 struct rte_flow_item_gtp_psc {
1467         struct rte_gtp_psc_generic_hdr hdr; /**< gtp psc generic hdr. */
1468 };
1469
1470 /** Default mask for RTE_FLOW_ITEM_TYPE_GTP_PSC. */
1471 #ifndef __cplusplus
1472 static const struct rte_flow_item_gtp_psc
1473 rte_flow_item_gtp_psc_mask = {
1474         .hdr.qfi = 0x3f,
1475 };
1476 #endif
1477
1478 /**
1479  * RTE_FLOW_ITEM_TYPE_PPPOE.
1480  *
1481  * Matches a PPPoE header.
1482  */
1483 struct rte_flow_item_pppoe {
1484         /**
1485          * Version (4b), type (4b).
1486          */
1487         uint8_t version_type;
1488         uint8_t code; /**< Message type. */
1489         rte_be16_t session_id; /**< Session identifier. */
1490         rte_be16_t length; /**< Payload length. */
1491 };
1492
1493 /**
1494  * RTE_FLOW_ITEM_TYPE_PPPOE_PROTO_ID.
1495  *
1496  * Matches a PPPoE optional proto_id field.
1497  *
1498  * It only applies to PPPoE session packets.
1499  *
1500  * Normally preceded by any of:
1501  *
1502  * - RTE_FLOW_ITEM_TYPE_PPPOE
1503  * - RTE_FLOW_ITEM_TYPE_PPPOE_PROTO_ID
1504  */
1505 struct rte_flow_item_pppoe_proto_id {
1506         rte_be16_t proto_id; /**< PPP protocol identifier. */
1507 };
1508
1509 /** Default mask for RTE_FLOW_ITEM_TYPE_PPPOE_PROTO_ID. */
1510 #ifndef __cplusplus
1511 static const struct rte_flow_item_pppoe_proto_id
1512 rte_flow_item_pppoe_proto_id_mask = {
1513         .proto_id = RTE_BE16(0xffff),
1514 };
1515 #endif
1516
1517 /**
1518  * @warning
1519  * @b EXPERIMENTAL: this structure may change without prior notice
1520  *
1521  * RTE_FLOW_ITEM_TYPE_TAG
1522  *
1523  * Matches a specified tag value at the specified index.
1524  */
1525 struct rte_flow_item_tag {
1526         uint32_t data;
1527         uint8_t index;
1528 };
1529
1530 /** Default mask for RTE_FLOW_ITEM_TYPE_TAG. */
1531 #ifndef __cplusplus
1532 static const struct rte_flow_item_tag rte_flow_item_tag_mask = {
1533         .data = 0xffffffff,
1534         .index = 0xff,
1535 };
1536 #endif
1537
1538 /**
1539  * RTE_FLOW_ITEM_TYPE_L2TPV3OIP.
1540  *
1541  * Matches a L2TPv3 over IP header.
1542  */
1543 struct rte_flow_item_l2tpv3oip {
1544         rte_be32_t session_id; /**< Session ID. */
1545 };
1546
1547 /** Default mask for RTE_FLOW_ITEM_TYPE_L2TPV3OIP. */
1548 #ifndef __cplusplus
1549 static const struct rte_flow_item_l2tpv3oip rte_flow_item_l2tpv3oip_mask = {
1550         .session_id = RTE_BE32(UINT32_MAX),
1551 };
1552 #endif
1553
1554
1555 /**
1556  * @warning
1557  * @b EXPERIMENTAL: this structure may change without prior notice
1558  *
1559  * RTE_FLOW_ITEM_TYPE_MARK
1560  *
1561  * Matches an arbitrary integer value which was set using the ``MARK`` action
1562  * in a previously matched rule.
1563  *
1564  * This item can only be specified once as a match criteria as the ``MARK``
1565  * action can only be specified once in a flow action.
1566  *
1567  * This value is arbitrary and application-defined. Maximum allowed value
1568  * depends on the underlying implementation.
1569  *
1570  * Depending on the underlying implementation the MARK item may be supported on
1571  * the physical device, with virtual groups in the PMD or not at all.
1572  */
1573 struct rte_flow_item_mark {
1574         uint32_t id; /**< Integer value to match against. */
1575 };
1576
1577 /** Default mask for RTE_FLOW_ITEM_TYPE_MARK. */
1578 #ifndef __cplusplus
1579 static const struct rte_flow_item_mark rte_flow_item_mark_mask = {
1580         .id = 0xffffffff,
1581 };
1582 #endif
1583
1584 /**
1585  * @warning
1586  * @b EXPERIMENTAL: this structure may change without prior notice
1587  *
1588  * RTE_FLOW_ITEM_TYPE_NSH
1589  *
1590  * Match network service header (NSH), RFC 8300
1591  *
1592  */
1593 struct rte_flow_item_nsh {
1594         uint32_t version:2;
1595         uint32_t oam_pkt:1;
1596         uint32_t reserved:1;
1597         uint32_t ttl:6;
1598         uint32_t length:6;
1599         uint32_t reserved1:4;
1600         uint32_t mdtype:4;
1601         uint32_t next_proto:8;
1602         uint32_t spi:24;
1603         uint32_t sindex:8;
1604 };
1605
1606 /** Default mask for RTE_FLOW_ITEM_TYPE_NSH. */
1607 #ifndef __cplusplus
1608 static const struct rte_flow_item_nsh rte_flow_item_nsh_mask = {
1609         .mdtype = 0xf,
1610         .next_proto = 0xff,
1611         .spi = 0xffffff,
1612         .sindex = 0xff,
1613 };
1614 #endif
1615
1616 /**
1617  * @warning
1618  * @b EXPERIMENTAL: this structure may change without prior notice
1619  *
1620  * RTE_FLOW_ITEM_TYPE_IGMP
1621  *
1622  * Match Internet Group Management Protocol (IGMP), RFC 2236
1623  *
1624  */
1625 struct rte_flow_item_igmp {
1626         uint32_t type:8;
1627         uint32_t max_resp_time:8;
1628         uint32_t checksum:16;
1629         uint32_t group_addr;
1630 };
1631
1632 /** Default mask for RTE_FLOW_ITEM_TYPE_IGMP. */
1633 #ifndef __cplusplus
1634 static const struct rte_flow_item_igmp rte_flow_item_igmp_mask = {
1635         .group_addr = 0xffffffff,
1636 };
1637 #endif
1638
1639 /**
1640  * @warning
1641  * @b EXPERIMENTAL: this structure may change without prior notice
1642  *
1643  * RTE_FLOW_ITEM_TYPE_AH
1644  *
1645  * Match IP Authentication Header (AH), RFC 4302
1646  *
1647  */
1648 struct rte_flow_item_ah {
1649         uint32_t next_hdr:8;
1650         uint32_t payload_len:8;
1651         uint32_t reserved:16;
1652         uint32_t spi;
1653         uint32_t seq_num;
1654 };
1655
1656 /** Default mask for RTE_FLOW_ITEM_TYPE_AH. */
1657 #ifndef __cplusplus
1658 static const struct rte_flow_item_ah rte_flow_item_ah_mask = {
1659         .spi = 0xffffffff,
1660 };
1661 #endif
1662
1663 /**
1664  * @warning
1665  * @b EXPERIMENTAL: this structure may change without prior notice
1666  *
1667  * RTE_FLOW_ITEM_TYPE_PFCP
1668  *
1669  * Match PFCP Header
1670  */
1671 struct rte_flow_item_pfcp {
1672         uint8_t s_field;
1673         uint8_t msg_type;
1674         rte_be16_t msg_len;
1675         rte_be64_t seid;
1676 };
1677
1678 /** Default mask for RTE_FLOW_ITEM_TYPE_PFCP. */
1679 #ifndef __cplusplus
1680 static const struct rte_flow_item_pfcp rte_flow_item_pfcp_mask = {
1681         .s_field = 0x01,
1682         .seid = RTE_BE64(UINT64_C(0xffffffffffffffff)),
1683 };
1684 #endif
1685
1686 /**
1687  * @warning
1688  * @b EXPERIMENTAL: this structure may change without prior notice
1689  *
1690  * RTE_FLOW_ITEM_TYPE_ECPRI
1691  *
1692  * Match eCPRI Header
1693  */
1694 struct rte_flow_item_ecpri {
1695         struct rte_ecpri_combined_msg_hdr hdr;
1696 };
1697
1698 /** Default mask for RTE_FLOW_ITEM_TYPE_ECPRI. */
1699 #ifndef __cplusplus
1700 static const struct rte_flow_item_ecpri rte_flow_item_ecpri_mask = {
1701         .hdr = {
1702                 .common = {
1703                         .u32 = 0x0,
1704                 },
1705         },
1706 };
1707 #endif
1708
1709 /**
1710  * RTE_FLOW_ITEM_TYPE_GENEVE_OPT
1711  *
1712  * Matches a GENEVE Variable Length Option
1713  */
1714 struct rte_flow_item_geneve_opt {
1715         rte_be16_t option_class;
1716         uint8_t option_type;
1717         uint8_t option_len;
1718         uint32_t *data;
1719 };
1720
1721 /** Default mask for RTE_FLOW_ITEM_TYPE_GENEVE_OPT. */
1722 #ifndef __cplusplus
1723 static const struct rte_flow_item_geneve_opt
1724 rte_flow_item_geneve_opt_mask = {
1725         .option_type = 0xff,
1726 };
1727 #endif
1728
1729 /**
1730  * @warning
1731  * @b EXPERIMENTAL: this structure may change without prior notice
1732  *
1733  * RTE_FLOW_ITEM_TYPE_INTEGRITY
1734  *
1735  * Match on packet integrity check result.
1736  */
1737 struct rte_flow_item_integrity {
1738         /** Tunnel encapsulation level the item should apply to.
1739          * @see rte_flow_action_rss
1740          */
1741         uint32_t level;
1742         RTE_STD_C11
1743         union {
1744                 __extension__
1745                 struct {
1746                         /** The packet is valid after passing all HW checks. */
1747                         uint64_t packet_ok:1;
1748                         /** L2 layer is valid after passing all HW checks. */
1749                         uint64_t l2_ok:1;
1750                         /** L3 layer is valid after passing all HW checks. */
1751                         uint64_t l3_ok:1;
1752                         /** L4 layer is valid after passing all HW checks. */
1753                         uint64_t l4_ok:1;
1754                         /** L2 layer CRC is valid. */
1755                         uint64_t l2_crc_ok:1;
1756                         /** IPv4 layer checksum is valid. */
1757                         uint64_t ipv4_csum_ok:1;
1758                         /** L4 layer checksum is valid. */
1759                         uint64_t l4_csum_ok:1;
1760                         /** L3 length is smaller than frame length. */
1761                         uint64_t l3_len_ok:1;
1762                         uint64_t reserved:56;
1763                 };
1764                 uint64_t value;
1765         };
1766 };
1767
1768 #ifndef __cplusplus
1769 static const struct rte_flow_item_integrity
1770 rte_flow_item_integrity_mask = {
1771         .level = 0,
1772         .value = 0,
1773 };
1774 #endif
1775
1776 /**
1777  * The packet is valid after conntrack checking.
1778  */
1779 #define RTE_FLOW_CONNTRACK_PKT_STATE_VALID RTE_BIT32(0)
1780 /**
1781  * The state of the connection is changed.
1782  */
1783 #define RTE_FLOW_CONNTRACK_PKT_STATE_CHANGED RTE_BIT32(1)
1784 /**
1785  * Error is detected on this packet for this connection and
1786  * an invalid state is set.
1787  */
1788 #define RTE_FLOW_CONNTRACK_PKT_STATE_INVALID RTE_BIT32(2)
1789 /**
1790  * The HW connection tracking module is disabled.
1791  * It can be due to application command or an invalid state.
1792  */
1793 #define RTE_FLOW_CONNTRACK_PKT_STATE_DISABLED RTE_BIT32(3)
1794 /**
1795  * The packet contains some bad field(s) and cannot continue
1796  * with the conntrack module checking.
1797  */
1798 #define RTE_FLOW_CONNTRACK_PKT_STATE_BAD RTE_BIT32(4)
1799
1800 /**
1801  * @warning
1802  * @b EXPERIMENTAL: this structure may change without prior notice
1803  *
1804  * RTE_FLOW_ITEM_TYPE_CONNTRACK
1805  *
1806  * Matches the state of a packet after it passed the connection tracking
1807  * examination. The state is a bitmap of one RTE_FLOW_CONNTRACK_PKT_STATE*
1808  * or a reasonable combination of these bits.
1809  */
1810 struct rte_flow_item_conntrack {
1811         uint32_t flags;
1812 };
1813
1814 /** Default mask for RTE_FLOW_ITEM_TYPE_CONNTRACK. */
1815 #ifndef __cplusplus
1816 static const struct rte_flow_item_conntrack rte_flow_item_conntrack_mask = {
1817         .flags = 0xffffffff,
1818 };
1819 #endif
1820
1821 /**
1822  * @warning
1823  * @b EXPERIMENTAL: this structure may change without prior notice
1824  *
1825  * Provides an ethdev port ID for use with the following items:
1826  * RTE_FLOW_ITEM_TYPE_PORT_REPRESENTOR,
1827  * RTE_FLOW_ITEM_TYPE_REPRESENTED_PORT.
1828  */
1829 struct rte_flow_item_ethdev {
1830         uint16_t port_id; /**< ethdev port ID */
1831 };
1832
1833 /** Default mask for items based on struct rte_flow_item_ethdev */
1834 #ifndef __cplusplus
1835 static const struct rte_flow_item_ethdev rte_flow_item_ethdev_mask = {
1836         .port_id = 0xffff,
1837 };
1838 #endif
1839
1840 /**
1841  * Matching pattern item definition.
1842  *
1843  * A pattern is formed by stacking items starting from the lowest protocol
1844  * layer to match. This stacking restriction does not apply to meta items
1845  * which can be placed anywhere in the stack without affecting the meaning
1846  * of the resulting pattern.
1847  *
1848  * Patterns are terminated by END items.
1849  *
1850  * The spec field should be a valid pointer to a structure of the related
1851  * item type. It may remain unspecified (NULL) in many cases to request
1852  * broad (nonspecific) matching. In such cases, last and mask must also be
1853  * set to NULL.
1854  *
1855  * Optionally, last can point to a structure of the same type to define an
1856  * inclusive range. This is mostly supported by integer and address fields,
1857  * may cause errors otherwise. Fields that do not support ranges must be set
1858  * to 0 or to the same value as the corresponding fields in spec.
1859  *
1860  * Only the fields defined to nonzero values in the default masks (see
1861  * rte_flow_item_{name}_mask constants) are considered relevant by
1862  * default. This can be overridden by providing a mask structure of the
1863  * same type with applicable bits set to one. It can also be used to
1864  * partially filter out specific fields (e.g. as an alternate mean to match
1865  * ranges of IP addresses).
1866  *
1867  * Mask is a simple bit-mask applied before interpreting the contents of
1868  * spec and last, which may yield unexpected results if not used
1869  * carefully. For example, if for an IPv4 address field, spec provides
1870  * 10.1.2.3, last provides 10.3.4.5 and mask provides 255.255.0.0, the
1871  * effective range becomes 10.1.0.0 to 10.3.255.255.
1872  */
1873 struct rte_flow_item {
1874         enum rte_flow_item_type type; /**< Item type. */
1875         const void *spec; /**< Pointer to item specification structure. */
1876         const void *last; /**< Defines an inclusive range (spec to last). */
1877         const void *mask; /**< Bit-mask applied to spec and last. */
1878 };
1879
1880 /**
1881  * Action types.
1882  *
1883  * Each possible action is represented by a type.
1884  * An action can have an associated configuration object.
1885  * Several actions combined in a list can be assigned
1886  * to a flow rule and are performed in order.
1887  *
1888  * They fall in three categories:
1889  *
1890  * - Actions that modify the fate of matching traffic, for instance by
1891  *   dropping or assigning it a specific destination.
1892  *
1893  * - Actions that modify matching traffic contents or its properties. This
1894  *   includes adding/removing encapsulation, encryption, compression and
1895  *   marks.
1896  *
1897  * - Actions related to the flow rule itself, such as updating counters or
1898  *   making it non-terminating.
1899  *
1900  * Flow rules being terminating by default, not specifying any action of the
1901  * fate kind results in undefined behavior. This applies to both ingress and
1902  * egress.
1903  *
1904  * PASSTHRU, when supported, makes a flow rule non-terminating.
1905  */
1906 enum rte_flow_action_type {
1907         /**
1908          * End marker for action lists. Prevents further processing of
1909          * actions, thereby ending the list.
1910          *
1911          * No associated configuration structure.
1912          */
1913         RTE_FLOW_ACTION_TYPE_END,
1914
1915         /**
1916          * Used as a placeholder for convenience. It is ignored and simply
1917          * discarded by PMDs.
1918          *
1919          * No associated configuration structure.
1920          */
1921         RTE_FLOW_ACTION_TYPE_VOID,
1922
1923         /**
1924          * Leaves traffic up for additional processing by subsequent flow
1925          * rules; makes a flow rule non-terminating.
1926          *
1927          * No associated configuration structure.
1928          */
1929         RTE_FLOW_ACTION_TYPE_PASSTHRU,
1930
1931         /**
1932          * RTE_FLOW_ACTION_TYPE_JUMP
1933          *
1934          * Redirects packets to a group on the current device.
1935          *
1936          * See struct rte_flow_action_jump.
1937          */
1938         RTE_FLOW_ACTION_TYPE_JUMP,
1939
1940         /**
1941          * Attaches an integer value to packets and sets PKT_RX_FDIR and
1942          * PKT_RX_FDIR_ID mbuf flags.
1943          *
1944          * See struct rte_flow_action_mark.
1945          *
1946          * One should negotiate mark delivery from the NIC to the PMD.
1947          * @see rte_eth_rx_metadata_negotiate()
1948          * @see RTE_ETH_RX_METADATA_USER_MARK
1949          */
1950         RTE_FLOW_ACTION_TYPE_MARK,
1951
1952         /**
1953          * Flags packets. Similar to MARK without a specific value; only
1954          * sets the PKT_RX_FDIR mbuf flag.
1955          *
1956          * No associated configuration structure.
1957          *
1958          * One should negotiate flag delivery from the NIC to the PMD.
1959          * @see rte_eth_rx_metadata_negotiate()
1960          * @see RTE_ETH_RX_METADATA_USER_FLAG
1961          */
1962         RTE_FLOW_ACTION_TYPE_FLAG,
1963
1964         /**
1965          * Assigns packets to a given queue index.
1966          *
1967          * See struct rte_flow_action_queue.
1968          */
1969         RTE_FLOW_ACTION_TYPE_QUEUE,
1970
1971         /**
1972          * Drops packets.
1973          *
1974          * PASSTHRU overrides this action if both are specified.
1975          *
1976          * No associated configuration structure.
1977          */
1978         RTE_FLOW_ACTION_TYPE_DROP,
1979
1980         /**
1981          * Enables counters for this flow rule.
1982          *
1983          * These counters can be retrieved and reset through rte_flow_query() or
1984          * rte_flow_action_handle_query() if the action provided via handle,
1985          * see struct rte_flow_query_count.
1986          *
1987          * See struct rte_flow_action_count.
1988          */
1989         RTE_FLOW_ACTION_TYPE_COUNT,
1990
1991         /**
1992          * Similar to QUEUE, except RSS is additionally performed on packets
1993          * to spread them among several queues according to the provided
1994          * parameters.
1995          *
1996          * See struct rte_flow_action_rss.
1997          */
1998         RTE_FLOW_ACTION_TYPE_RSS,
1999
2000         /**
2001          * Directs matching traffic to the physical function (PF) of the
2002          * current device.
2003          *
2004          * No associated configuration structure.
2005          */
2006         RTE_FLOW_ACTION_TYPE_PF,
2007
2008         /**
2009          * Directs matching traffic to a given virtual function of the
2010          * current device.
2011          *
2012          * See struct rte_flow_action_vf.
2013          */
2014         RTE_FLOW_ACTION_TYPE_VF,
2015
2016         /**
2017          * Directs packets to a given physical port index of the underlying
2018          * device.
2019          *
2020          * See struct rte_flow_action_phy_port.
2021          */
2022         RTE_FLOW_ACTION_TYPE_PHY_PORT,
2023
2024         /**
2025          * Directs matching traffic to a given DPDK port ID.
2026          *
2027          * See struct rte_flow_action_port_id.
2028          */
2029         RTE_FLOW_ACTION_TYPE_PORT_ID,
2030
2031         /**
2032          * Traffic metering and policing (MTR).
2033          *
2034          * See struct rte_flow_action_meter.
2035          * See file rte_mtr.h for MTR object configuration.
2036          */
2037         RTE_FLOW_ACTION_TYPE_METER,
2038
2039         /**
2040          * Redirects packets to security engine of current device for security
2041          * processing as specified by security session.
2042          *
2043          * See struct rte_flow_action_security.
2044          */
2045         RTE_FLOW_ACTION_TYPE_SECURITY,
2046
2047         /**
2048          * Implements OFPAT_SET_MPLS_TTL ("MPLS TTL") as defined by the
2049          * OpenFlow Switch Specification.
2050          *
2051          * See struct rte_flow_action_of_set_mpls_ttl.
2052          */
2053         RTE_FLOW_ACTION_TYPE_OF_SET_MPLS_TTL,
2054
2055         /**
2056          * Implements OFPAT_DEC_MPLS_TTL ("decrement MPLS TTL") as defined
2057          * by the OpenFlow Switch Specification.
2058          *
2059          * No associated configuration structure.
2060          */
2061         RTE_FLOW_ACTION_TYPE_OF_DEC_MPLS_TTL,
2062
2063         /**
2064          * Implements OFPAT_SET_NW_TTL ("IP TTL") as defined by the OpenFlow
2065          * Switch Specification.
2066          *
2067          * See struct rte_flow_action_of_set_nw_ttl.
2068          */
2069         RTE_FLOW_ACTION_TYPE_OF_SET_NW_TTL,
2070
2071         /**
2072          * Implements OFPAT_DEC_NW_TTL ("decrement IP TTL") as defined by
2073          * the OpenFlow Switch Specification.
2074          *
2075          * No associated configuration structure.
2076          */
2077         RTE_FLOW_ACTION_TYPE_OF_DEC_NW_TTL,
2078
2079         /**
2080          * Implements OFPAT_COPY_TTL_OUT ("copy TTL "outwards" -- from
2081          * next-to-outermost to outermost") as defined by the OpenFlow
2082          * Switch Specification.
2083          *
2084          * No associated configuration structure.
2085          */
2086         RTE_FLOW_ACTION_TYPE_OF_COPY_TTL_OUT,
2087
2088         /**
2089          * Implements OFPAT_COPY_TTL_IN ("copy TTL "inwards" -- from
2090          * outermost to next-to-outermost") as defined by the OpenFlow
2091          * Switch Specification.
2092          *
2093          * No associated configuration structure.
2094          */
2095         RTE_FLOW_ACTION_TYPE_OF_COPY_TTL_IN,
2096
2097         /**
2098          * Implements OFPAT_POP_VLAN ("pop the outer VLAN tag") as defined
2099          * by the OpenFlow Switch Specification.
2100          *
2101          * No associated configuration structure.
2102          */
2103         RTE_FLOW_ACTION_TYPE_OF_POP_VLAN,
2104
2105         /**
2106          * Implements OFPAT_PUSH_VLAN ("push a new VLAN tag") as defined by
2107          * the OpenFlow Switch Specification.
2108          *
2109          * See struct rte_flow_action_of_push_vlan.
2110          */
2111         RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN,
2112
2113         /**
2114          * Implements OFPAT_SET_VLAN_VID ("set the 802.1q VLAN id") as
2115          * defined by the OpenFlow Switch Specification.
2116          *
2117          * See struct rte_flow_action_of_set_vlan_vid.
2118          */
2119         RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID,
2120
2121         /**
2122          * Implements OFPAT_SET_LAN_PCP ("set the 802.1q priority") as
2123          * defined by the OpenFlow Switch Specification.
2124          *
2125          * See struct rte_flow_action_of_set_vlan_pcp.
2126          */
2127         RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP,
2128
2129         /**
2130          * Implements OFPAT_POP_MPLS ("pop the outer MPLS tag") as defined
2131          * by the OpenFlow Switch Specification.
2132          *
2133          * See struct rte_flow_action_of_pop_mpls.
2134          */
2135         RTE_FLOW_ACTION_TYPE_OF_POP_MPLS,
2136
2137         /**
2138          * Implements OFPAT_PUSH_MPLS ("push a new MPLS tag") as defined by
2139          * the OpenFlow Switch Specification.
2140          *
2141          * See struct rte_flow_action_of_push_mpls.
2142          */
2143         RTE_FLOW_ACTION_TYPE_OF_PUSH_MPLS,
2144
2145         /**
2146          * Encapsulate flow in VXLAN tunnel as defined in
2147          * rte_flow_action_vxlan_encap action structure.
2148          *
2149          * See struct rte_flow_action_vxlan_encap.
2150          */
2151         RTE_FLOW_ACTION_TYPE_VXLAN_ENCAP,
2152
2153         /**
2154          * Decapsulate outer most VXLAN tunnel from matched flow.
2155          *
2156          * If flow pattern does not define a valid VXLAN tunnel (as specified by
2157          * RFC7348) then the PMD should return a RTE_FLOW_ERROR_TYPE_ACTION
2158          * error.
2159          */
2160         RTE_FLOW_ACTION_TYPE_VXLAN_DECAP,
2161
2162         /**
2163          * Encapsulate flow in NVGRE tunnel defined in the
2164          * rte_flow_action_nvgre_encap action structure.
2165          *
2166          * See struct rte_flow_action_nvgre_encap.
2167          */
2168         RTE_FLOW_ACTION_TYPE_NVGRE_ENCAP,
2169
2170         /**
2171          * Decapsulate outer most NVGRE tunnel from matched flow.
2172          *
2173          * If flow pattern does not define a valid NVGRE tunnel (as specified by
2174          * RFC7637) then the PMD should return a RTE_FLOW_ERROR_TYPE_ACTION
2175          * error.
2176          */
2177         RTE_FLOW_ACTION_TYPE_NVGRE_DECAP,
2178
2179         /**
2180          * Add outer header whose template is provided in its data buffer
2181          *
2182          * See struct rte_flow_action_raw_encap.
2183          */
2184         RTE_FLOW_ACTION_TYPE_RAW_ENCAP,
2185
2186         /**
2187          * Remove outer header whose template is provided in its data buffer.
2188          *
2189          * See struct rte_flow_action_raw_decap
2190          */
2191         RTE_FLOW_ACTION_TYPE_RAW_DECAP,
2192
2193         /**
2194          * Modify IPv4 source address in the outermost IPv4 header.
2195          *
2196          * If flow pattern does not define a valid RTE_FLOW_ITEM_TYPE_IPV4,
2197          * then the PMD should return a RTE_FLOW_ERROR_TYPE_ACTION error.
2198          *
2199          * See struct rte_flow_action_set_ipv4.
2200          */
2201         RTE_FLOW_ACTION_TYPE_SET_IPV4_SRC,
2202
2203         /**
2204          * Modify IPv4 destination address in the outermost IPv4 header.
2205          *
2206          * If flow pattern does not define a valid RTE_FLOW_ITEM_TYPE_IPV4,
2207          * then the PMD should return a RTE_FLOW_ERROR_TYPE_ACTION error.
2208          *
2209          * See struct rte_flow_action_set_ipv4.
2210          */
2211         RTE_FLOW_ACTION_TYPE_SET_IPV4_DST,
2212
2213         /**
2214          * Modify IPv6 source address in the outermost IPv6 header.
2215          *
2216          * If flow pattern does not define a valid RTE_FLOW_ITEM_TYPE_IPV6,
2217          * then the PMD should return a RTE_FLOW_ERROR_TYPE_ACTION error.
2218          *
2219          * See struct rte_flow_action_set_ipv6.
2220          */
2221         RTE_FLOW_ACTION_TYPE_SET_IPV6_SRC,
2222
2223         /**
2224          * Modify IPv6 destination address in the outermost IPv6 header.
2225          *
2226          * If flow pattern does not define a valid RTE_FLOW_ITEM_TYPE_IPV6,
2227          * then the PMD should return a RTE_FLOW_ERROR_TYPE_ACTION error.
2228          *
2229          * See struct rte_flow_action_set_ipv6.
2230          */
2231         RTE_FLOW_ACTION_TYPE_SET_IPV6_DST,
2232
2233         /**
2234          * Modify source port number in the outermost TCP/UDP header.
2235          *
2236          * If flow pattern does not define a valid RTE_FLOW_ITEM_TYPE_TCP
2237          * or RTE_FLOW_ITEM_TYPE_UDP, then the PMD should return a
2238          * RTE_FLOW_ERROR_TYPE_ACTION error.
2239          *
2240          * See struct rte_flow_action_set_tp.
2241          */
2242         RTE_FLOW_ACTION_TYPE_SET_TP_SRC,
2243
2244         /**
2245          * Modify destination port number in the outermost TCP/UDP header.
2246          *
2247          * If flow pattern does not define a valid RTE_FLOW_ITEM_TYPE_TCP
2248          * or RTE_FLOW_ITEM_TYPE_UDP, then the PMD should return a
2249          * RTE_FLOW_ERROR_TYPE_ACTION error.
2250          *
2251          * See struct rte_flow_action_set_tp.
2252          */
2253         RTE_FLOW_ACTION_TYPE_SET_TP_DST,
2254
2255         /**
2256          * Swap the source and destination MAC addresses in the outermost
2257          * Ethernet header.
2258          *
2259          * If flow pattern does not define a valid RTE_FLOW_ITEM_TYPE_ETH,
2260          * then the PMD should return a RTE_FLOW_ERROR_TYPE_ACTION error.
2261          *
2262          * No associated configuration structure.
2263          */
2264         RTE_FLOW_ACTION_TYPE_MAC_SWAP,
2265
2266         /**
2267          * Decrease TTL value directly
2268          *
2269          * No associated configuration structure.
2270          */
2271         RTE_FLOW_ACTION_TYPE_DEC_TTL,
2272
2273         /**
2274          * Set TTL value
2275          *
2276          * See struct rte_flow_action_set_ttl
2277          */
2278         RTE_FLOW_ACTION_TYPE_SET_TTL,
2279
2280         /**
2281          * Set source MAC address from matched flow.
2282          *
2283          * If flow pattern does not define a valid RTE_FLOW_ITEM_TYPE_ETH,
2284          * the PMD should return a RTE_FLOW_ERROR_TYPE_ACTION error.
2285          *
2286          * See struct rte_flow_action_set_mac.
2287          */
2288         RTE_FLOW_ACTION_TYPE_SET_MAC_SRC,
2289
2290         /**
2291          * Set destination MAC address from matched flow.
2292          *
2293          * If flow pattern does not define a valid RTE_FLOW_ITEM_TYPE_ETH,
2294          * the PMD should return a RTE_FLOW_ERROR_TYPE_ACTION error.
2295          *
2296          * See struct rte_flow_action_set_mac.
2297          */
2298         RTE_FLOW_ACTION_TYPE_SET_MAC_DST,
2299
2300         /**
2301          * Increase sequence number in the outermost TCP header.
2302          *
2303          * Action configuration specifies the value to increase
2304          * TCP sequence number as a big-endian 32 bit integer.
2305          *
2306          * @p conf type:
2307          * @code rte_be32_t * @endcode
2308          *
2309          * Using this action on non-matching traffic will result in
2310          * undefined behavior.
2311          */
2312         RTE_FLOW_ACTION_TYPE_INC_TCP_SEQ,
2313
2314         /**
2315          * Decrease sequence number in the outermost TCP header.
2316          *
2317          * Action configuration specifies the value to decrease
2318          * TCP sequence number as a big-endian 32 bit integer.
2319          *
2320          * @p conf type:
2321          * @code rte_be32_t * @endcode
2322          *
2323          * Using this action on non-matching traffic will result in
2324          * undefined behavior.
2325          */
2326         RTE_FLOW_ACTION_TYPE_DEC_TCP_SEQ,
2327
2328         /**
2329          * Increase acknowledgment number in the outermost TCP header.
2330          *
2331          * Action configuration specifies the value to increase
2332          * TCP acknowledgment number as a big-endian 32 bit integer.
2333          *
2334          * @p conf type:
2335          * @code rte_be32_t * @endcode
2336
2337          * Using this action on non-matching traffic will result in
2338          * undefined behavior.
2339          */
2340         RTE_FLOW_ACTION_TYPE_INC_TCP_ACK,
2341
2342         /**
2343          * Decrease acknowledgment number in the outermost TCP header.
2344          *
2345          * Action configuration specifies the value to decrease
2346          * TCP acknowledgment number as a big-endian 32 bit integer.
2347          *
2348          * @p conf type:
2349          * @code rte_be32_t * @endcode
2350          *
2351          * Using this action on non-matching traffic will result in
2352          * undefined behavior.
2353          */
2354         RTE_FLOW_ACTION_TYPE_DEC_TCP_ACK,
2355
2356         /**
2357          * Set Tag.
2358          *
2359          * Tag is for internal flow usage only and
2360          * is not delivered to the application.
2361          *
2362          * See struct rte_flow_action_set_tag.
2363          */
2364         RTE_FLOW_ACTION_TYPE_SET_TAG,
2365
2366         /**
2367          * Set metadata on ingress or egress path.
2368          *
2369          * See struct rte_flow_action_set_meta.
2370          */
2371         RTE_FLOW_ACTION_TYPE_SET_META,
2372
2373         /**
2374          * Modify IPv4 DSCP in the outermost IP header.
2375          *
2376          * If flow pattern does not define a valid RTE_FLOW_ITEM_TYPE_IPV4,
2377          * then the PMD should return a RTE_FLOW_ERROR_TYPE_ACTION error.
2378          *
2379          * See struct rte_flow_action_set_dscp.
2380          */
2381         RTE_FLOW_ACTION_TYPE_SET_IPV4_DSCP,
2382
2383         /**
2384          * Modify IPv6 DSCP in the outermost IP header.
2385          *
2386          * If flow pattern does not define a valid RTE_FLOW_ITEM_TYPE_IPV6,
2387          * then the PMD should return a RTE_FLOW_ERROR_TYPE_ACTION error.
2388          *
2389          * See struct rte_flow_action_set_dscp.
2390          */
2391         RTE_FLOW_ACTION_TYPE_SET_IPV6_DSCP,
2392
2393         /**
2394          * Report as aged flow if timeout passed without any matching on the
2395          * flow.
2396          *
2397          * See struct rte_flow_action_age.
2398          * See function rte_flow_get_aged_flows
2399          * see enum RTE_ETH_EVENT_FLOW_AGED
2400          * See struct rte_flow_query_age
2401          */
2402         RTE_FLOW_ACTION_TYPE_AGE,
2403
2404         /**
2405          * The matching packets will be duplicated with specified ratio and
2406          * applied with own set of actions with a fate action.
2407          *
2408          * See struct rte_flow_action_sample.
2409          */
2410         RTE_FLOW_ACTION_TYPE_SAMPLE,
2411
2412         /**
2413          * @deprecated
2414          * @see RTE_FLOW_ACTION_TYPE_INDIRECT
2415          *
2416          * Describe action shared across multiple flow rules.
2417          *
2418          * Allow multiple rules reference the same action by handle (see
2419          * struct rte_flow_shared_action).
2420          */
2421         RTE_FLOW_ACTION_TYPE_SHARED,
2422
2423         /**
2424          * Modify a packet header field, tag, mark or metadata.
2425          *
2426          * Allow the modification of an arbitrary header field via
2427          * set, add and sub operations or copying its content into
2428          * tag, meta or mark for future processing.
2429          *
2430          * See struct rte_flow_action_modify_field.
2431          */
2432         RTE_FLOW_ACTION_TYPE_MODIFY_FIELD,
2433
2434         /**
2435          * An action handle is referenced in a rule through an indirect action.
2436          *
2437          * The same action handle may be used in multiple rules for the same
2438          * or different ethdev ports.
2439          */
2440         RTE_FLOW_ACTION_TYPE_INDIRECT,
2441
2442         /**
2443          * [META]
2444          *
2445          * Enable tracking a TCP connection state.
2446          *
2447          * @see struct rte_flow_action_conntrack.
2448          */
2449         RTE_FLOW_ACTION_TYPE_CONNTRACK,
2450
2451         /**
2452          * Color the packet to reflect the meter color result.
2453          * Set the meter color in the mbuf to the selected color.
2454          *
2455          * See struct rte_flow_action_meter_color.
2456          */
2457         RTE_FLOW_ACTION_TYPE_METER_COLOR,
2458
2459         /**
2460          * At embedded switch level, sends matching traffic to the given ethdev.
2461          *
2462          * @see struct rte_flow_action_ethdev
2463          */
2464         RTE_FLOW_ACTION_TYPE_PORT_REPRESENTOR,
2465
2466         /**
2467          * At embedded switch level, send matching traffic to
2468          * the entity represented by the given ethdev.
2469          *
2470          * @see struct rte_flow_action_ethdev
2471          */
2472         RTE_FLOW_ACTION_TYPE_REPRESENTED_PORT,
2473 };
2474
2475 /**
2476  * RTE_FLOW_ACTION_TYPE_MARK
2477  *
2478  * Attaches an integer value to packets and sets PKT_RX_FDIR and
2479  * PKT_RX_FDIR_ID mbuf flags.
2480  *
2481  * This value is arbitrary and application-defined. Maximum allowed value
2482  * depends on the underlying implementation. It is returned in the
2483  * hash.fdir.hi mbuf field.
2484  */
2485 struct rte_flow_action_mark {
2486         uint32_t id; /**< Integer value to return with packets. */
2487 };
2488
2489 /**
2490  * @warning
2491  * @b EXPERIMENTAL: this structure may change without prior notice
2492  *
2493  * RTE_FLOW_ACTION_TYPE_JUMP
2494  *
2495  * Redirects packets to a group on the current device.
2496  *
2497  * In a hierarchy of groups, which can be used to represent physical or logical
2498  * flow tables on the device, this action allows the action to be a redirect to
2499  * a group on that device.
2500  */
2501 struct rte_flow_action_jump {
2502         uint32_t group;
2503 };
2504
2505 /**
2506  * RTE_FLOW_ACTION_TYPE_QUEUE
2507  *
2508  * Assign packets to a given queue index.
2509  */
2510 struct rte_flow_action_queue {
2511         uint16_t index; /**< Queue index to use. */
2512 };
2513
2514 /**
2515  * @warning
2516  * @b EXPERIMENTAL: this structure may change without prior notice
2517  *
2518  * RTE_FLOW_ACTION_TYPE_AGE
2519  *
2520  * Report flow as aged-out if timeout passed without any matching
2521  * on the flow. RTE_ETH_EVENT_FLOW_AGED event is triggered when a
2522  * port detects new aged-out flows.
2523  *
2524  * The flow context and the flow handle will be reported by the
2525  * rte_flow_get_aged_flows API.
2526  */
2527 struct rte_flow_action_age {
2528         uint32_t timeout:24; /**< Time in seconds. */
2529         uint32_t reserved:8; /**< Reserved, must be zero. */
2530         void *context;
2531                 /**< The user flow context, NULL means the rte_flow pointer. */
2532 };
2533
2534 /**
2535  * RTE_FLOW_ACTION_TYPE_AGE (query)
2536  *
2537  * Query structure to retrieve the aging status information of a
2538  * shared AGE action, or a flow rule using the AGE action.
2539  */
2540 struct rte_flow_query_age {
2541         uint32_t reserved:6; /**< Reserved, must be zero. */
2542         uint32_t aged:1; /**< 1 if aging timeout expired, 0 otherwise. */
2543         uint32_t sec_since_last_hit_valid:1;
2544         /**< sec_since_last_hit value is valid. */
2545         uint32_t sec_since_last_hit:24; /**< Seconds since last traffic hit. */
2546 };
2547
2548 /**
2549  * @warning
2550  * @b EXPERIMENTAL: this structure may change without prior notice
2551  *
2552  * RTE_FLOW_ACTION_TYPE_COUNT
2553  *
2554  * Adds a counter action to a matched flow.
2555  *
2556  * If more than one count action is specified in a single flow rule, then each
2557  * action must specify a unique id.
2558  *
2559  * Counters can be retrieved and reset through ``rte_flow_query()``, see
2560  * ``struct rte_flow_query_count``.
2561  *
2562  * For ports within the same switch domain then the counter id namespace extends
2563  * to all ports within that switch domain.
2564  */
2565 struct rte_flow_action_count {
2566         uint32_t id; /**< Counter ID. */
2567 };
2568
2569 /**
2570  * RTE_FLOW_ACTION_TYPE_COUNT (query)
2571  *
2572  * Query structure to retrieve and reset flow rule counters.
2573  */
2574 struct rte_flow_query_count {
2575         uint32_t reset:1; /**< Reset counters after query [in]. */
2576         uint32_t hits_set:1; /**< hits field is set [out]. */
2577         uint32_t bytes_set:1; /**< bytes field is set [out]. */
2578         uint32_t reserved:29; /**< Reserved, must be zero [in, out]. */
2579         uint64_t hits; /**< Number of hits for this rule [out]. */
2580         uint64_t bytes; /**< Number of bytes through this rule [out]. */
2581 };
2582
2583 /**
2584  * Hash function types.
2585  */
2586 enum rte_eth_hash_function {
2587         RTE_ETH_HASH_FUNCTION_DEFAULT = 0,
2588         RTE_ETH_HASH_FUNCTION_TOEPLITZ, /**< Toeplitz */
2589         RTE_ETH_HASH_FUNCTION_SIMPLE_XOR, /**< Simple XOR */
2590         /**
2591          * Symmetric Toeplitz: src, dst will be replaced by
2592          * xor(src, dst). For the case with src/dst only,
2593          * src or dst address will xor with zero pair.
2594          */
2595         RTE_ETH_HASH_FUNCTION_SYMMETRIC_TOEPLITZ,
2596         RTE_ETH_HASH_FUNCTION_MAX,
2597 };
2598
2599 /**
2600  * RTE_FLOW_ACTION_TYPE_RSS
2601  *
2602  * Similar to QUEUE, except RSS is additionally performed on packets to
2603  * spread them among several queues according to the provided parameters.
2604  *
2605  * Unlike global RSS settings used by other DPDK APIs, unsetting the
2606  * @p types field does not disable RSS in a flow rule. Doing so instead
2607  * requests safe unspecified "best-effort" settings from the underlying PMD,
2608  * which depending on the flow rule, may result in anything ranging from
2609  * empty (single queue) to all-inclusive RSS.
2610  *
2611  * Note: RSS hash result is stored in the hash.rss mbuf field which overlaps
2612  * hash.fdir.lo. Since the MARK action sets the hash.fdir.hi field only,
2613  * both can be requested simultaneously.
2614  */
2615 struct rte_flow_action_rss {
2616         enum rte_eth_hash_function func; /**< RSS hash function to apply. */
2617         /**
2618          * Packet encapsulation level RSS hash @p types apply to.
2619          *
2620          * - @p 0 requests the default behavior. Depending on the packet
2621          *   type, it can mean outermost, innermost, anything in between or
2622          *   even no RSS.
2623          *
2624          *   It basically stands for the innermost encapsulation level RSS
2625          *   can be performed on according to PMD and device capabilities.
2626          *
2627          * - @p 1 requests RSS to be performed on the outermost packet
2628          *   encapsulation level.
2629          *
2630          * - @p 2 and subsequent values request RSS to be performed on the
2631          *   specified inner packet encapsulation level, from outermost to
2632          *   innermost (lower to higher values).
2633          *
2634          * Values other than @p 0 are not necessarily supported.
2635          *
2636          * Requesting a specific RSS level on unrecognized traffic results
2637          * in undefined behavior. For predictable results, it is recommended
2638          * to make the flow rule pattern match packet headers up to the
2639          * requested encapsulation level so that only matching traffic goes
2640          * through.
2641          */
2642         uint32_t level;
2643         uint64_t types; /**< Specific RSS hash types (see ETH_RSS_*). */
2644         uint32_t key_len; /**< Hash key length in bytes. */
2645         uint32_t queue_num; /**< Number of entries in @p queue. */
2646         const uint8_t *key; /**< Hash key. */
2647         const uint16_t *queue; /**< Queue indices to use. */
2648 };
2649
2650 /**
2651  * RTE_FLOW_ACTION_TYPE_VF
2652  *
2653  * Directs matching traffic to a given virtual function of the current
2654  * device.
2655  *
2656  * Packets matched by a VF pattern item can be redirected to their original
2657  * VF ID instead of the specified one. This parameter may not be available
2658  * and is not guaranteed to work properly if the VF part is matched by a
2659  * prior flow rule or if packets are not addressed to a VF in the first
2660  * place.
2661  */
2662 struct rte_flow_action_vf {
2663         uint32_t original:1; /**< Use original VF ID if possible. */
2664         uint32_t reserved:31; /**< Reserved, must be zero. */
2665         uint32_t id; /**< VF ID. */
2666 };
2667
2668 /**
2669  * RTE_FLOW_ACTION_TYPE_PHY_PORT
2670  *
2671  * Directs packets to a given physical port index of the underlying
2672  * device.
2673  *
2674  * @see RTE_FLOW_ITEM_TYPE_PHY_PORT
2675  */
2676 struct rte_flow_action_phy_port {
2677         uint32_t original:1; /**< Use original port index if possible. */
2678         uint32_t reserved:31; /**< Reserved, must be zero. */
2679         uint32_t index; /**< Physical port index. */
2680 };
2681
2682 /**
2683  * RTE_FLOW_ACTION_TYPE_PORT_ID
2684  *
2685  * Directs matching traffic to a given DPDK port ID.
2686  *
2687  * @see RTE_FLOW_ITEM_TYPE_PORT_ID
2688  */
2689 struct rte_flow_action_port_id {
2690         uint32_t original:1; /**< Use original DPDK port ID if possible. */
2691         uint32_t reserved:31; /**< Reserved, must be zero. */
2692         uint32_t id; /**< DPDK port ID. */
2693 };
2694
2695 /**
2696  * RTE_FLOW_ACTION_TYPE_METER
2697  *
2698  * Traffic metering and policing (MTR).
2699  *
2700  * Packets matched by items of this type can be either dropped or passed to the
2701  * next item with their color set by the MTR object.
2702  */
2703 struct rte_flow_action_meter {
2704         uint32_t mtr_id; /**< MTR object ID created with rte_mtr_create(). */
2705 };
2706
2707 /**
2708  * RTE_FLOW_ACTION_TYPE_SECURITY
2709  *
2710  * Perform the security action on flows matched by the pattern items
2711  * according to the configuration of the security session.
2712  *
2713  * This action modifies the payload of matched flows. For INLINE_CRYPTO, the
2714  * security protocol headers and IV are fully provided by the application as
2715  * specified in the flow pattern. The payload of matching packets is
2716  * encrypted on egress, and decrypted and authenticated on ingress.
2717  * For INLINE_PROTOCOL, the security protocol is fully offloaded to HW,
2718  * providing full encapsulation and decapsulation of packets in security
2719  * protocols. The flow pattern specifies both the outer security header fields
2720  * and the inner packet fields. The security session specified in the action
2721  * must match the pattern parameters.
2722  *
2723  * The security session specified in the action must be created on the same
2724  * port as the flow action that is being specified.
2725  *
2726  * The ingress/egress flow attribute should match that specified in the
2727  * security session if the security session supports the definition of the
2728  * direction.
2729  *
2730  * Multiple flows can be configured to use the same security session.
2731  *
2732  * The NULL value is allowed for security session. If security session is NULL,
2733  * then SPI field in ESP flow item and IP addresses in flow items 'IPv4' and
2734  * 'IPv6' will be allowed to be a range. The rule thus created can enable
2735  * security processing on multiple flows.
2736  */
2737 struct rte_flow_action_security {
2738         void *security_session; /**< Pointer to security session structure. */
2739 };
2740
2741 /**
2742  * RTE_FLOW_ACTION_TYPE_OF_SET_MPLS_TTL
2743  *
2744  * Implements OFPAT_SET_MPLS_TTL ("MPLS TTL") as defined by the OpenFlow
2745  * Switch Specification.
2746  */
2747 struct rte_flow_action_of_set_mpls_ttl {
2748         uint8_t mpls_ttl; /**< MPLS TTL. */
2749 };
2750
2751 /**
2752  * RTE_FLOW_ACTION_TYPE_OF_SET_NW_TTL
2753  *
2754  * Implements OFPAT_SET_NW_TTL ("IP TTL") as defined by the OpenFlow Switch
2755  * Specification.
2756  */
2757 struct rte_flow_action_of_set_nw_ttl {
2758         uint8_t nw_ttl; /**< IP TTL. */
2759 };
2760
2761 /**
2762  * RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN
2763  *
2764  * Implements OFPAT_PUSH_VLAN ("push a new VLAN tag") as defined by the
2765  * OpenFlow Switch Specification.
2766  */
2767 struct rte_flow_action_of_push_vlan {
2768         rte_be16_t ethertype; /**< EtherType. */
2769 };
2770
2771 /**
2772  * RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID
2773  *
2774  * Implements OFPAT_SET_VLAN_VID ("set the 802.1q VLAN id") as defined by
2775  * the OpenFlow Switch Specification.
2776  */
2777 struct rte_flow_action_of_set_vlan_vid {
2778         rte_be16_t vlan_vid; /**< VLAN id. */
2779 };
2780
2781 /**
2782  * RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP
2783  *
2784  * Implements OFPAT_SET_LAN_PCP ("set the 802.1q priority") as defined by
2785  * the OpenFlow Switch Specification.
2786  */
2787 struct rte_flow_action_of_set_vlan_pcp {
2788         uint8_t vlan_pcp; /**< VLAN priority. */
2789 };
2790
2791 /**
2792  * RTE_FLOW_ACTION_TYPE_OF_POP_MPLS
2793  *
2794  * Implements OFPAT_POP_MPLS ("pop the outer MPLS tag") as defined by the
2795  * OpenFlow Switch Specification.
2796  */
2797 struct rte_flow_action_of_pop_mpls {
2798         rte_be16_t ethertype; /**< EtherType. */
2799 };
2800
2801 /**
2802  * RTE_FLOW_ACTION_TYPE_OF_PUSH_MPLS
2803  *
2804  * Implements OFPAT_PUSH_MPLS ("push a new MPLS tag") as defined by the
2805  * OpenFlow Switch Specification.
2806  */
2807 struct rte_flow_action_of_push_mpls {
2808         rte_be16_t ethertype; /**< EtherType. */
2809 };
2810
2811 /**
2812  * @warning
2813  * @b EXPERIMENTAL: this structure may change without prior notice
2814  *
2815  * RTE_FLOW_ACTION_TYPE_VXLAN_ENCAP
2816  *
2817  * VXLAN tunnel end-point encapsulation data definition
2818  *
2819  * The tunnel definition is provided through the flow item pattern, the
2820  * provided pattern must conform to RFC7348 for the tunnel specified. The flow
2821  * definition must be provided in order from the RTE_FLOW_ITEM_TYPE_ETH
2822  * definition up the end item which is specified by RTE_FLOW_ITEM_TYPE_END.
2823  *
2824  * The mask field allows user to specify which fields in the flow item
2825  * definitions can be ignored and which have valid data and can be used
2826  * verbatim.
2827  *
2828  * Note: the last field is not used in the definition of a tunnel and can be
2829  * ignored.
2830  *
2831  * Valid flow definition for RTE_FLOW_ACTION_TYPE_VXLAN_ENCAP include:
2832  *
2833  * - ETH / IPV4 / UDP / VXLAN / END
2834  * - ETH / IPV6 / UDP / VXLAN / END
2835  * - ETH / VLAN / IPV4 / UDP / VXLAN / END
2836  *
2837  */
2838 struct rte_flow_action_vxlan_encap {
2839         /**
2840          * Encapsulating vxlan tunnel definition
2841          * (terminated by the END pattern item).
2842          */
2843         struct rte_flow_item *definition;
2844 };
2845
2846 /**
2847  * @warning
2848  * @b EXPERIMENTAL: this structure may change without prior notice
2849  *
2850  * RTE_FLOW_ACTION_TYPE_NVGRE_ENCAP
2851  *
2852  * NVGRE tunnel end-point encapsulation data definition
2853  *
2854  * The tunnel definition is provided through the flow item pattern  the
2855  * provided pattern must conform with RFC7637. The flow definition must be
2856  * provided in order from the RTE_FLOW_ITEM_TYPE_ETH definition up the end item
2857  * which is specified by RTE_FLOW_ITEM_TYPE_END.
2858  *
2859  * The mask field allows user to specify which fields in the flow item
2860  * definitions can be ignored and which have valid data and can be used
2861  * verbatim.
2862  *
2863  * Note: the last field is not used in the definition of a tunnel and can be
2864  * ignored.
2865  *
2866  * Valid flow definition for RTE_FLOW_ACTION_TYPE_NVGRE_ENCAP include:
2867  *
2868  * - ETH / IPV4 / NVGRE / END
2869  * - ETH / VLAN / IPV6 / NVGRE / END
2870  *
2871  */
2872 struct rte_flow_action_nvgre_encap {
2873         /**
2874          * Encapsulating vxlan tunnel definition
2875          * (terminated by the END pattern item).
2876          */
2877         struct rte_flow_item *definition;
2878 };
2879
2880 /**
2881  * @warning
2882  * @b EXPERIMENTAL: this structure may change without prior notice
2883  *
2884  * RTE_FLOW_ACTION_TYPE_RAW_ENCAP
2885  *
2886  * Raw tunnel end-point encapsulation data definition.
2887  *
2888  * The data holds the headers definitions to be applied on the packet.
2889  * The data must start with ETH header up to the tunnel item header itself.
2890  * When used right after RAW_DECAP (for decapsulating L3 tunnel type for
2891  * example MPLSoGRE) the data will just hold layer 2 header.
2892  *
2893  * The preserve parameter holds which bits in the packet the PMD is not allowed
2894  * to change, this parameter can also be NULL and then the PMD is allowed
2895  * to update any field.
2896  *
2897  * size holds the number of bytes in @p data and @p preserve.
2898  */
2899 struct rte_flow_action_raw_encap {
2900         uint8_t *data; /**< Encapsulation data. */
2901         uint8_t *preserve; /**< Bit-mask of @p data to preserve on output. */
2902         size_t size; /**< Size of @p data and @p preserve. */
2903 };
2904
2905 /**
2906  * @warning
2907  * @b EXPERIMENTAL: this structure may change without prior notice
2908  *
2909  * RTE_FLOW_ACTION_TYPE_RAW_DECAP
2910  *
2911  * Raw tunnel end-point decapsulation data definition.
2912  *
2913  * The data holds the headers definitions to be removed from the packet.
2914  * The data must start with ETH header up to the tunnel item header itself.
2915  * When used right before RAW_DECAP (for encapsulating L3 tunnel type for
2916  * example MPLSoGRE) the data will just hold layer 2 header.
2917  *
2918  * size holds the number of bytes in @p data.
2919  */
2920 struct rte_flow_action_raw_decap {
2921         uint8_t *data; /**< Encapsulation data. */
2922         size_t size; /**< Size of @p data and @p preserve. */
2923 };
2924
2925 /**
2926  * @warning
2927  * @b EXPERIMENTAL: this structure may change without prior notice
2928  *
2929  * RTE_FLOW_ACTION_TYPE_SET_IPV4_SRC
2930  * RTE_FLOW_ACTION_TYPE_SET_IPV4_DST
2931  *
2932  * Allows modification of IPv4 source (RTE_FLOW_ACTION_TYPE_SET_IPV4_SRC)
2933  * and destination address (RTE_FLOW_ACTION_TYPE_SET_IPV4_DST) in the
2934  * specified outermost IPv4 header.
2935  */
2936 struct rte_flow_action_set_ipv4 {
2937         rte_be32_t ipv4_addr;
2938 };
2939
2940 /**
2941  * @warning
2942  * @b EXPERIMENTAL: this structure may change without prior notice
2943  *
2944  * RTE_FLOW_ACTION_TYPE_SET_IPV6_SRC
2945  * RTE_FLOW_ACTION_TYPE_SET_IPV6_DST
2946  *
2947  * Allows modification of IPv6 source (RTE_FLOW_ACTION_TYPE_SET_IPV6_SRC)
2948  * and destination address (RTE_FLOW_ACTION_TYPE_SET_IPV6_DST) in the
2949  * specified outermost IPv6 header.
2950  */
2951 struct rte_flow_action_set_ipv6 {
2952         uint8_t ipv6_addr[16];
2953 };
2954
2955 /**
2956  * @warning
2957  * @b EXPERIMENTAL: this structure may change without prior notice
2958  *
2959  * RTE_FLOW_ACTION_TYPE_SET_TP_SRC
2960  * RTE_FLOW_ACTION_TYPE_SET_TP_DST
2961  *
2962  * Allows modification of source (RTE_FLOW_ACTION_TYPE_SET_TP_SRC)
2963  * and destination (RTE_FLOW_ACTION_TYPE_SET_TP_DST) port numbers
2964  * in the specified outermost TCP/UDP header.
2965  */
2966 struct rte_flow_action_set_tp {
2967         rte_be16_t port;
2968 };
2969
2970 /**
2971  * RTE_FLOW_ACTION_TYPE_SET_TTL
2972  *
2973  * Set the TTL value directly for IPv4 or IPv6
2974  */
2975 struct rte_flow_action_set_ttl {
2976         uint8_t ttl_value;
2977 };
2978
2979 /**
2980  * RTE_FLOW_ACTION_TYPE_SET_MAC
2981  *
2982  * Set MAC address from the matched flow
2983  */
2984 struct rte_flow_action_set_mac {
2985         uint8_t mac_addr[RTE_ETHER_ADDR_LEN];
2986 };
2987
2988 /**
2989  * @warning
2990  * @b EXPERIMENTAL: this structure may change without prior notice
2991  *
2992  * RTE_FLOW_ACTION_TYPE_SET_TAG
2993  *
2994  * Set a tag which is a transient data used during flow matching. This is not
2995  * delivered to application. Multiple tags are supported by specifying index.
2996  */
2997 struct rte_flow_action_set_tag {
2998         uint32_t data;
2999         uint32_t mask;
3000         uint8_t index;
3001 };
3002
3003 /**
3004  * @warning
3005  * @b EXPERIMENTAL: this structure may change without prior notice
3006  *
3007  * RTE_FLOW_ACTION_TYPE_SET_META
3008  *
3009  * Set metadata. Metadata set by mbuf metadata dynamic field with
3010  * PKT_TX_DYNF_DATA flag on egress will be overridden by this action. On
3011  * ingress, the metadata will be carried by mbuf metadata dynamic field
3012  * with PKT_RX_DYNF_METADATA flag if set.  The dynamic mbuf field must be
3013  * registered in advance by rte_flow_dynf_metadata_register().
3014  *
3015  * Altering partial bits is supported with mask. For bits which have never
3016  * been set, unpredictable value will be seen depending on driver
3017  * implementation. For loopback/hairpin packet, metadata set on Rx/Tx may
3018  * or may not be propagated to the other path depending on HW capability.
3019  *
3020  * RTE_FLOW_ITEM_TYPE_META matches metadata.
3021  */
3022 struct rte_flow_action_set_meta {
3023         uint32_t data;
3024         uint32_t mask;
3025 };
3026
3027 /**
3028  * RTE_FLOW_ACTION_TYPE_SET_IPV4_DSCP
3029  * RTE_FLOW_ACTION_TYPE_SET_IPV6_DSCP
3030  *
3031  * Set the DSCP value for IPv4/IPv6 header.
3032  * DSCP in low 6 bits, rest ignored.
3033  */
3034 struct rte_flow_action_set_dscp {
3035         uint8_t dscp;
3036 };
3037
3038 /**
3039  * @warning
3040  * @b EXPERIMENTAL: this structure may change without prior notice
3041  *
3042  * RTE_FLOW_ACTION_TYPE_INDIRECT
3043  *
3044  * Opaque type returned after successfully creating an indirect action object.
3045  * The definition of the object handle is different per driver or
3046  * per direct action type.
3047  *
3048  * This handle can be used to manage and query the related direct action:
3049  * - referenced in single flow rule or across multiple flow rules
3050  *   over multiple ports
3051  * - update action object configuration
3052  * - query action object data
3053  * - destroy action object
3054  */
3055 struct rte_flow_action_handle;
3056
3057 /**
3058  * The state of a TCP connection.
3059  */
3060 enum rte_flow_conntrack_state {
3061         /** SYN-ACK packet was seen. */
3062         RTE_FLOW_CONNTRACK_STATE_SYN_RECV,
3063         /** 3-way handshake was done. */
3064         RTE_FLOW_CONNTRACK_STATE_ESTABLISHED,
3065         /** First FIN packet was received to close the connection. */
3066         RTE_FLOW_CONNTRACK_STATE_FIN_WAIT,
3067         /** First FIN was ACKed. */
3068         RTE_FLOW_CONNTRACK_STATE_CLOSE_WAIT,
3069         /** Second FIN was received, waiting for the last ACK. */
3070         RTE_FLOW_CONNTRACK_STATE_LAST_ACK,
3071         /** Second FIN was ACKed, connection was closed. */
3072         RTE_FLOW_CONNTRACK_STATE_TIME_WAIT,
3073 };
3074
3075 /**
3076  * The last passed TCP packet flags of a connection.
3077  */
3078 enum rte_flow_conntrack_tcp_last_index {
3079         RTE_FLOW_CONNTRACK_FLAG_NONE = 0, /**< No Flag. */
3080         RTE_FLOW_CONNTRACK_FLAG_SYN = RTE_BIT32(0), /**< With SYN flag. */
3081         RTE_FLOW_CONNTRACK_FLAG_SYNACK = RTE_BIT32(1), /**< With SYNACK flag. */
3082         RTE_FLOW_CONNTRACK_FLAG_FIN = RTE_BIT32(2), /**< With FIN flag. */
3083         RTE_FLOW_CONNTRACK_FLAG_ACK = RTE_BIT32(3), /**< With ACK flag. */
3084         RTE_FLOW_CONNTRACK_FLAG_RST = RTE_BIT32(4), /**< With RST flag. */
3085 };
3086
3087 /**
3088  * @warning
3089  * @b EXPERIMENTAL: this structure may change without prior notice
3090  *
3091  * Configuration parameters for each direction of a TCP connection.
3092  * All fields should be in host byte order.
3093  * If needed, driver should convert all fields to network byte order
3094  * if HW needs them in that way.
3095  */
3096 struct rte_flow_tcp_dir_param {
3097         /** TCP window scaling factor, 0xF to disable. */
3098         uint32_t scale:4;
3099         /** The FIN was sent by this direction. */
3100         uint32_t close_initiated:1;
3101         /** An ACK packet has been received by this side. */
3102         uint32_t last_ack_seen:1;
3103         /**
3104          * If set, it indicates that there is unacknowledged data for the
3105          * packets sent from this direction.
3106          */
3107         uint32_t data_unacked:1;
3108         /**
3109          * Maximal value of sequence + payload length in sent
3110          * packets (next ACK from the opposite direction).
3111          */
3112         uint32_t sent_end;
3113         /**
3114          * Maximal value of (ACK + window size) in received packet + length
3115          * over sent packet (maximal sequence could be sent).
3116          */
3117         uint32_t reply_end;
3118         /** Maximal value of actual window size in sent packets. */
3119         uint32_t max_win;
3120         /** Maximal value of ACK in sent packets. */
3121         uint32_t max_ack;
3122 };
3123
3124 /**
3125  * @warning
3126  * @b EXPERIMENTAL: this structure may change without prior notice
3127  *
3128  * RTE_FLOW_ACTION_TYPE_CONNTRACK
3129  *
3130  * Configuration and initial state for the connection tracking module.
3131  * This structure could be used for both setting and query.
3132  * All fields should be in host byte order.
3133  */
3134 struct rte_flow_action_conntrack {
3135         /** The peer port number, can be the same port. */
3136         uint16_t peer_port;
3137         /**
3138          * Direction of this connection when creating a flow rule, the
3139          * value only affects the creation of subsequent flow rules.
3140          */
3141         uint32_t is_original_dir:1;
3142         /**
3143          * Enable / disable the conntrack HW module. When disabled, the
3144          * result will always be RTE_FLOW_CONNTRACK_FLAG_DISABLED.
3145          * In this state the HW will act as passthrough.
3146          * It only affects this conntrack object in the HW without any effect
3147          * to the other objects.
3148          */
3149         uint32_t enable:1;
3150         /** At least one ack was seen after the connection was established. */
3151         uint32_t live_connection:1;
3152         /** Enable selective ACK on this connection. */
3153         uint32_t selective_ack:1;
3154         /** A challenge ack has passed. */
3155         uint32_t challenge_ack_passed:1;
3156         /**
3157          * 1: The last packet is seen from the original direction.
3158          * 0: The last packet is seen from the reply direction.
3159          */
3160         uint32_t last_direction:1;
3161         /** No TCP check will be done except the state change. */
3162         uint32_t liberal_mode:1;
3163         /**<The current state of this connection. */
3164         enum rte_flow_conntrack_state state;
3165         /** Scaling factor for maximal allowed ACK window. */
3166         uint8_t max_ack_window;
3167         /** Maximal allowed number of retransmission times. */
3168         uint8_t retransmission_limit;
3169         /** TCP parameters of the original direction. */
3170         struct rte_flow_tcp_dir_param original_dir;
3171         /** TCP parameters of the reply direction. */
3172         struct rte_flow_tcp_dir_param reply_dir;
3173         /** The window value of the last packet passed this conntrack. */
3174         uint16_t last_window;
3175         enum rte_flow_conntrack_tcp_last_index last_index;
3176         /** The sequence of the last packet passed this conntrack. */
3177         uint32_t last_seq;
3178         /** The acknowledgment of the last packet passed this conntrack. */
3179         uint32_t last_ack;
3180         /**
3181          * The total value ACK + payload length of the last packet
3182          * passed this conntrack.
3183          */
3184         uint32_t last_end;
3185 };
3186
3187 /**
3188  * RTE_FLOW_ACTION_TYPE_CONNTRACK
3189  *
3190  * Wrapper structure for the context update interface.
3191  * Ports cannot support updating, and the only valid solution is to
3192  * destroy the old context and create a new one instead.
3193  */
3194 struct rte_flow_modify_conntrack {
3195         /** New connection tracking parameters to be updated. */
3196         struct rte_flow_action_conntrack new_ct;
3197         /** The direction field will be updated. */
3198         uint32_t direction:1;
3199         /** All the other fields except direction will be updated. */
3200         uint32_t state:1;
3201         /** Reserved bits for the future usage. */
3202         uint32_t reserved:30;
3203 };
3204
3205 /**
3206  * @warning
3207  * @b EXPERIMENTAL: this structure may change without prior notice
3208  *
3209  * RTE_FLOW_ACTION_TYPE_METER_COLOR
3210  *
3211  * The meter color should be set in the packet meta-data
3212  * (i.e. struct rte_mbuf::sched::color).
3213  */
3214 struct rte_flow_action_meter_color {
3215         enum rte_color color; /**< Packet color. */
3216 };
3217
3218 /**
3219  * @warning
3220  * @b EXPERIMENTAL: this structure may change without prior notice
3221  *
3222  * Provides an ethdev port ID for use with the following actions:
3223  * RTE_FLOW_ACTION_TYPE_PORT_REPRESENTOR,
3224  * RTE_FLOW_ACTION_TYPE_REPRESENTED_PORT.
3225  */
3226 struct rte_flow_action_ethdev {
3227         uint16_t port_id; /**< ethdev port ID */
3228 };
3229
3230 /**
3231  * Field IDs for MODIFY_FIELD action.
3232  */
3233 enum rte_flow_field_id {
3234         RTE_FLOW_FIELD_START = 0,       /**< Start of a packet. */
3235         RTE_FLOW_FIELD_MAC_DST,         /**< Destination MAC Address. */
3236         RTE_FLOW_FIELD_MAC_SRC,         /**< Source MAC Address. */
3237         RTE_FLOW_FIELD_VLAN_TYPE,       /**< 802.1Q Tag Identifier. */
3238         RTE_FLOW_FIELD_VLAN_ID,         /**< 802.1Q VLAN Identifier. */
3239         RTE_FLOW_FIELD_MAC_TYPE,        /**< EtherType. */
3240         RTE_FLOW_FIELD_IPV4_DSCP,       /**< IPv4 DSCP. */
3241         RTE_FLOW_FIELD_IPV4_TTL,        /**< IPv4 Time To Live. */
3242         RTE_FLOW_FIELD_IPV4_SRC,        /**< IPv4 Source Address. */
3243         RTE_FLOW_FIELD_IPV4_DST,        /**< IPv4 Destination Address. */
3244         RTE_FLOW_FIELD_IPV6_DSCP,       /**< IPv6 DSCP. */
3245         RTE_FLOW_FIELD_IPV6_HOPLIMIT,   /**< IPv6 Hop Limit. */
3246         RTE_FLOW_FIELD_IPV6_SRC,        /**< IPv6 Source Address. */
3247         RTE_FLOW_FIELD_IPV6_DST,        /**< IPv6 Destination Address. */
3248         RTE_FLOW_FIELD_TCP_PORT_SRC,    /**< TCP Source Port Number. */
3249         RTE_FLOW_FIELD_TCP_PORT_DST,    /**< TCP Destination Port Number. */
3250         RTE_FLOW_FIELD_TCP_SEQ_NUM,     /**< TCP Sequence Number. */
3251         RTE_FLOW_FIELD_TCP_ACK_NUM,     /**< TCP Acknowledgment Number. */
3252         RTE_FLOW_FIELD_TCP_FLAGS,       /**< TCP Flags. */
3253         RTE_FLOW_FIELD_UDP_PORT_SRC,    /**< UDP Source Port Number. */
3254         RTE_FLOW_FIELD_UDP_PORT_DST,    /**< UDP Destination Port Number. */
3255         RTE_FLOW_FIELD_VXLAN_VNI,       /**< VXLAN Network Identifier. */
3256         RTE_FLOW_FIELD_GENEVE_VNI,      /**< GENEVE Network Identifier. */
3257         RTE_FLOW_FIELD_GTP_TEID,        /**< GTP Tunnel Endpoint Identifier. */
3258         RTE_FLOW_FIELD_TAG,             /**< Tag value. */
3259         RTE_FLOW_FIELD_MARK,            /**< Mark value. */
3260         RTE_FLOW_FIELD_META,            /**< Metadata value. */
3261         RTE_FLOW_FIELD_POINTER,         /**< Memory pointer. */
3262         RTE_FLOW_FIELD_VALUE,           /**< Immediate value. */
3263 };
3264
3265 /**
3266  * Field description for MODIFY_FIELD action.
3267  */
3268 struct rte_flow_action_modify_data {
3269         enum rte_flow_field_id field; /**< Field or memory type ID. */
3270         RTE_STD_C11
3271         union {
3272                 struct {
3273                         /**< Encapsulation level or tag index. */
3274                         uint32_t level;
3275                         /**< Number of bits to skip from a field. */
3276                         uint32_t offset;
3277                 };
3278                 /**
3279                  * Immediate value for RTE_FLOW_FIELD_VALUE or
3280                  * memory address for RTE_FLOW_FIELD_POINTER.
3281                  */
3282                 uint64_t value;
3283         };
3284 };
3285
3286 /**
3287  * Operation types for MODIFY_FIELD action.
3288  */
3289 enum rte_flow_modify_op {
3290         RTE_FLOW_MODIFY_SET = 0, /**< Set a new value. */
3291         RTE_FLOW_MODIFY_ADD,     /**< Add a value to a field.  */
3292         RTE_FLOW_MODIFY_SUB,     /**< Subtract a value from a field. */
3293 };
3294
3295 /**
3296  * @warning
3297  * @b EXPERIMENTAL: this structure may change without prior notice
3298  *
3299  * RTE_FLOW_ACTION_TYPE_MODIFY_FIELD
3300  *
3301  * Modify a destination header field according to the specified
3302  * operation. Another packet field can be used as a source as well
3303  * as tag, mark, metadata, immediate value or a pointer to it.
3304  */
3305 struct rte_flow_action_modify_field {
3306         enum rte_flow_modify_op operation; /**< Operation to perform. */
3307         struct rte_flow_action_modify_data dst; /**< Destination field. */
3308         struct rte_flow_action_modify_data src; /**< Source field. */
3309         uint32_t width; /**< Number of bits to use from a source field. */
3310 };
3311
3312 /* Mbuf dynamic field offset for metadata. */
3313 extern int32_t rte_flow_dynf_metadata_offs;
3314
3315 /* Mbuf dynamic field flag mask for metadata. */
3316 extern uint64_t rte_flow_dynf_metadata_mask;
3317
3318 /* Mbuf dynamic field pointer for metadata. */
3319 #define RTE_FLOW_DYNF_METADATA(m) \
3320         RTE_MBUF_DYNFIELD((m), rte_flow_dynf_metadata_offs, uint32_t *)
3321
3322 /* Mbuf dynamic flags for metadata. */
3323 #define PKT_RX_DYNF_METADATA (rte_flow_dynf_metadata_mask)
3324 #define PKT_TX_DYNF_METADATA (rte_flow_dynf_metadata_mask)
3325
3326 __rte_experimental
3327 static inline uint32_t
3328 rte_flow_dynf_metadata_get(struct rte_mbuf *m)
3329 {
3330         return *RTE_FLOW_DYNF_METADATA(m);
3331 }
3332
3333 __rte_experimental
3334 static inline void
3335 rte_flow_dynf_metadata_set(struct rte_mbuf *m, uint32_t v)
3336 {
3337         *RTE_FLOW_DYNF_METADATA(m) = v;
3338 }
3339
3340 /**
3341  * Definition of a single action.
3342  *
3343  * A list of actions is terminated by a END action.
3344  *
3345  * For simple actions without a configuration object, conf remains NULL.
3346  */
3347 struct rte_flow_action {
3348         enum rte_flow_action_type type; /**< Action type. */
3349         const void *conf; /**< Pointer to action configuration object. */
3350 };
3351
3352 /**
3353  * Opaque type returned after successfully creating a flow.
3354  *
3355  * This handle can be used to manage and query the related flow (e.g. to
3356  * destroy it or retrieve counters).
3357  */
3358 struct rte_flow;
3359
3360 /**
3361  * @warning
3362  * @b EXPERIMENTAL: this structure may change without prior notice
3363  *
3364  * RTE_FLOW_ACTION_TYPE_SAMPLE
3365  *
3366  * Adds a sample action to a matched flow.
3367  *
3368  * The matching packets will be duplicated with specified ratio and applied
3369  * with own set of actions with a fate action, the sampled packet could be
3370  * redirected to queue or port. All the packets continue processing on the
3371  * default flow path.
3372  *
3373  * When the sample ratio is set to 1 then the packets will be 100% mirrored.
3374  * Additional action list be supported to add for sampled or mirrored packets.
3375  */
3376 struct rte_flow_action_sample {
3377         uint32_t ratio; /**< packets sampled equals to '1/ratio'. */
3378         const struct rte_flow_action *actions;
3379                 /**< sub-action list specific for the sampling hit cases. */
3380 };
3381
3382 /**
3383  * Verbose error types.
3384  *
3385  * Most of them provide the type of the object referenced by struct
3386  * rte_flow_error.cause.
3387  */
3388 enum rte_flow_error_type {
3389         RTE_FLOW_ERROR_TYPE_NONE, /**< No error. */
3390         RTE_FLOW_ERROR_TYPE_UNSPECIFIED, /**< Cause unspecified. */
3391         RTE_FLOW_ERROR_TYPE_HANDLE, /**< Flow rule (handle). */
3392         RTE_FLOW_ERROR_TYPE_ATTR_GROUP, /**< Group field. */
3393         RTE_FLOW_ERROR_TYPE_ATTR_PRIORITY, /**< Priority field. */
3394         RTE_FLOW_ERROR_TYPE_ATTR_INGRESS, /**< Ingress field. */
3395         RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, /**< Egress field. */
3396         RTE_FLOW_ERROR_TYPE_ATTR_TRANSFER, /**< Transfer field. */
3397         RTE_FLOW_ERROR_TYPE_ATTR, /**< Attributes structure. */
3398         RTE_FLOW_ERROR_TYPE_ITEM_NUM, /**< Pattern length. */
3399         RTE_FLOW_ERROR_TYPE_ITEM_SPEC, /**< Item specification. */
3400         RTE_FLOW_ERROR_TYPE_ITEM_LAST, /**< Item specification range. */
3401         RTE_FLOW_ERROR_TYPE_ITEM_MASK, /**< Item specification mask. */
3402         RTE_FLOW_ERROR_TYPE_ITEM, /**< Specific pattern item. */
3403         RTE_FLOW_ERROR_TYPE_ACTION_NUM, /**< Number of actions. */
3404         RTE_FLOW_ERROR_TYPE_ACTION_CONF, /**< Action configuration. */
3405         RTE_FLOW_ERROR_TYPE_ACTION, /**< Specific action. */
3406 };
3407
3408 /**
3409  * Verbose error structure definition.
3410  *
3411  * This object is normally allocated by applications and set by PMDs, the
3412  * message points to a constant string which does not need to be freed by
3413  * the application, however its pointer can be considered valid only as long
3414  * as its associated DPDK port remains configured. Closing the underlying
3415  * device or unloading the PMD invalidates it.
3416  *
3417  * Both cause and message may be NULL regardless of the error type.
3418  */
3419 struct rte_flow_error {
3420         enum rte_flow_error_type type; /**< Cause field and error types. */
3421         const void *cause; /**< Object responsible for the error. */
3422         const char *message; /**< Human-readable error message. */
3423 };
3424
3425 /**
3426  * Complete flow rule description.
3427  *
3428  * This object type is used when converting a flow rule description.
3429  *
3430  * @see RTE_FLOW_CONV_OP_RULE
3431  * @see rte_flow_conv()
3432  */
3433 RTE_STD_C11
3434 struct rte_flow_conv_rule {
3435         union {
3436                 const struct rte_flow_attr *attr_ro; /**< RO attributes. */
3437                 struct rte_flow_attr *attr; /**< Attributes. */
3438         };
3439         union {
3440                 const struct rte_flow_item *pattern_ro; /**< RO pattern. */
3441                 struct rte_flow_item *pattern; /**< Pattern items. */
3442         };
3443         union {
3444                 const struct rte_flow_action *actions_ro; /**< RO actions. */
3445                 struct rte_flow_action *actions; /**< List of actions. */
3446         };
3447 };
3448
3449 /**
3450  * Conversion operations for flow API objects.
3451  *
3452  * @see rte_flow_conv()
3453  */
3454 enum rte_flow_conv_op {
3455         /**
3456          * No operation to perform.
3457          *
3458          * rte_flow_conv() simply returns 0.
3459          */
3460         RTE_FLOW_CONV_OP_NONE,
3461
3462         /**
3463          * Convert attributes structure.
3464          *
3465          * This is a basic copy of an attributes structure.
3466          *
3467          * - @p src type:
3468          *   @code const struct rte_flow_attr * @endcode
3469          * - @p dst type:
3470          *   @code struct rte_flow_attr * @endcode
3471          */
3472         RTE_FLOW_CONV_OP_ATTR,
3473
3474         /**
3475          * Convert a single item.
3476          *
3477          * Duplicates @p spec, @p last and @p mask but not outside objects.
3478          *
3479          * - @p src type:
3480          *   @code const struct rte_flow_item * @endcode
3481          * - @p dst type:
3482          *   @code struct rte_flow_item * @endcode
3483          */
3484         RTE_FLOW_CONV_OP_ITEM,
3485
3486         /**
3487          * Convert a single action.
3488          *
3489          * Duplicates @p conf but not outside objects.
3490          *
3491          * - @p src type:
3492          *   @code const struct rte_flow_action * @endcode
3493          * - @p dst type:
3494          *   @code struct rte_flow_action * @endcode
3495          */
3496         RTE_FLOW_CONV_OP_ACTION,
3497
3498         /**
3499          * Convert an entire pattern.
3500          *
3501          * Duplicates all pattern items at once with the same constraints as
3502          * RTE_FLOW_CONV_OP_ITEM.
3503          *
3504          * - @p src type:
3505          *   @code const struct rte_flow_item * @endcode
3506          * - @p dst type:
3507          *   @code struct rte_flow_item * @endcode
3508          */
3509         RTE_FLOW_CONV_OP_PATTERN,
3510
3511         /**
3512          * Convert a list of actions.
3513          *
3514          * Duplicates the entire list of actions at once with the same
3515          * constraints as RTE_FLOW_CONV_OP_ACTION.
3516          *
3517          * - @p src type:
3518          *   @code const struct rte_flow_action * @endcode
3519          * - @p dst type:
3520          *   @code struct rte_flow_action * @endcode
3521          */
3522         RTE_FLOW_CONV_OP_ACTIONS,
3523
3524         /**
3525          * Convert a complete flow rule description.
3526          *
3527          * Comprises attributes, pattern and actions together at once with
3528          * the usual constraints.
3529          *
3530          * - @p src type:
3531          *   @code const struct rte_flow_conv_rule * @endcode
3532          * - @p dst type:
3533          *   @code struct rte_flow_conv_rule * @endcode
3534          */
3535         RTE_FLOW_CONV_OP_RULE,
3536
3537         /**
3538          * Convert item type to its name string.
3539          *
3540          * Writes a NUL-terminated string to @p dst. Like snprintf(), the
3541          * returned value excludes the terminator which is always written
3542          * nonetheless.
3543          *
3544          * - @p src type:
3545          *   @code (const void *)enum rte_flow_item_type @endcode
3546          * - @p dst type:
3547          *   @code char * @endcode
3548          **/
3549         RTE_FLOW_CONV_OP_ITEM_NAME,
3550
3551         /**
3552          * Convert action type to its name string.
3553          *
3554          * Writes a NUL-terminated string to @p dst. Like snprintf(), the
3555          * returned value excludes the terminator which is always written
3556          * nonetheless.
3557          *
3558          * - @p src type:
3559          *   @code (const void *)enum rte_flow_action_type @endcode
3560          * - @p dst type:
3561          *   @code char * @endcode
3562          **/
3563         RTE_FLOW_CONV_OP_ACTION_NAME,
3564
3565         /**
3566          * Convert item type to pointer to item name.
3567          *
3568          * Retrieves item name pointer from its type. The string itself is
3569          * not copied; instead, a unique pointer to an internal static
3570          * constant storage is written to @p dst.
3571          *
3572          * - @p src type:
3573          *   @code (const void *)enum rte_flow_item_type @endcode
3574          * - @p dst type:
3575          *   @code const char ** @endcode
3576          */
3577         RTE_FLOW_CONV_OP_ITEM_NAME_PTR,
3578
3579         /**
3580          * Convert action type to pointer to action name.
3581          *
3582          * Retrieves action name pointer from its type. The string itself is
3583          * not copied; instead, a unique pointer to an internal static
3584          * constant storage is written to @p dst.
3585          *
3586          * - @p src type:
3587          *   @code (const void *)enum rte_flow_action_type @endcode
3588          * - @p dst type:
3589          *   @code const char ** @endcode
3590          */
3591         RTE_FLOW_CONV_OP_ACTION_NAME_PTR,
3592 };
3593
3594 /**
3595  * @warning
3596  * @b EXPERIMENTAL: this API may change without prior notice.
3597  *
3598  * Dump hardware internal representation information of
3599  * rte flow to file.
3600  *
3601  * @param[in] port_id
3602  *    The port identifier of the Ethernet device.
3603  * @param[in] flow
3604  *   The pointer of flow rule to dump. Dump all rules if NULL.
3605  * @param[in] file
3606  *   A pointer to a file for output.
3607  * @param[out] error
3608  *   Perform verbose error reporting if not NULL. PMDs initialize this
3609  *   structure in case of error only.
3610  * @return
3611  *   0 on success, a nagative value otherwise.
3612  */
3613 __rte_experimental
3614 int
3615 rte_flow_dev_dump(uint16_t port_id, struct rte_flow *flow,
3616                 FILE *file, struct rte_flow_error *error);
3617
3618 /**
3619  * Check if mbuf dynamic field for metadata is registered.
3620  *
3621  * @return
3622  *   True if registered, false otherwise.
3623  */
3624 __rte_experimental
3625 static inline int
3626 rte_flow_dynf_metadata_avail(void)
3627 {
3628         return !!rte_flow_dynf_metadata_mask;
3629 }
3630
3631 /**
3632  * Register mbuf dynamic field and flag for metadata.
3633  *
3634  * This function must be called prior to use SET_META action in order to
3635  * register the dynamic mbuf field. Otherwise, the data cannot be delivered to
3636  * application.
3637  *
3638  * @return
3639  *   0 on success, a negative errno value otherwise and rte_errno is set.
3640  */
3641 __rte_experimental
3642 int
3643 rte_flow_dynf_metadata_register(void);
3644
3645 /**
3646  * Check whether a flow rule can be created on a given port.
3647  *
3648  * The flow rule is validated for correctness and whether it could be accepted
3649  * by the device given sufficient resources. The rule is checked against the
3650  * current device mode and queue configuration. The flow rule may also
3651  * optionally be validated against existing flow rules and device resources.
3652  * This function has no effect on the target device.
3653  *
3654  * The returned value is guaranteed to remain valid only as long as no
3655  * successful calls to rte_flow_create() or rte_flow_destroy() are made in
3656  * the meantime and no device parameter affecting flow rules in any way are
3657  * modified, due to possible collisions or resource limitations (although in
3658  * such cases EINVAL should not be returned).
3659  *
3660  * @param port_id
3661  *   Port identifier of Ethernet device.
3662  * @param[in] attr
3663  *   Flow rule attributes.
3664  * @param[in] pattern
3665  *   Pattern specification (list terminated by the END pattern item).
3666  * @param[in] actions
3667  *   Associated actions (list terminated by the END action).
3668  * @param[out] error
3669  *   Perform verbose error reporting if not NULL. PMDs initialize this
3670  *   structure in case of error only.
3671  *
3672  * @return
3673  *   0 if flow rule is valid and can be created. A negative errno value
3674  *   otherwise (rte_errno is also set), the following errors are defined:
3675  *
3676  *   -ENOSYS: underlying device does not support this functionality.
3677  *
3678  *   -EIO: underlying device is removed.
3679  *
3680  *   -EINVAL: unknown or invalid rule specification.
3681  *
3682  *   -ENOTSUP: valid but unsupported rule specification (e.g. partial
3683  *   bit-masks are unsupported).
3684  *
3685  *   -EEXIST: collision with an existing rule. Only returned if device
3686  *   supports flow rule collision checking and there was a flow rule
3687  *   collision. Not receiving this return code is no guarantee that creating
3688  *   the rule will not fail due to a collision.
3689  *
3690  *   -ENOMEM: not enough memory to execute the function, or if the device
3691  *   supports resource validation, resource limitation on the device.
3692  *
3693  *   -EBUSY: action cannot be performed due to busy device resources, may
3694  *   succeed if the affected queues or even the entire port are in a stopped
3695  *   state (see rte_eth_dev_rx_queue_stop() and rte_eth_dev_stop()).
3696  */
3697 int
3698 rte_flow_validate(uint16_t port_id,
3699                   const struct rte_flow_attr *attr,
3700                   const struct rte_flow_item pattern[],
3701                   const struct rte_flow_action actions[],
3702                   struct rte_flow_error *error);
3703
3704 /**
3705  * Create a flow rule on a given port.
3706  *
3707  * @param port_id
3708  *   Port identifier of Ethernet device.
3709  * @param[in] attr
3710  *   Flow rule attributes.
3711  * @param[in] pattern
3712  *   Pattern specification (list terminated by the END pattern item).
3713  * @param[in] actions
3714  *   Associated actions (list terminated by the END action).
3715  * @param[out] error
3716  *   Perform verbose error reporting if not NULL. PMDs initialize this
3717  *   structure in case of error only.
3718  *
3719  * @return
3720  *   A valid handle in case of success, NULL otherwise and rte_errno is set
3721  *   to the positive version of one of the error codes defined for
3722  *   rte_flow_validate().
3723  */
3724 struct rte_flow *
3725 rte_flow_create(uint16_t port_id,
3726                 const struct rte_flow_attr *attr,
3727                 const struct rte_flow_item pattern[],
3728                 const struct rte_flow_action actions[],
3729                 struct rte_flow_error *error);
3730
3731 /**
3732  * Destroy a flow rule on a given port.
3733  *
3734  * Failure to destroy a flow rule handle may occur when other flow rules
3735  * depend on it, and destroying it would result in an inconsistent state.
3736  *
3737  * This function is only guaranteed to succeed if handles are destroyed in
3738  * reverse order of their creation.
3739  *
3740  * @param port_id
3741  *   Port identifier of Ethernet device.
3742  * @param flow
3743  *   Flow rule handle to destroy.
3744  * @param[out] error
3745  *   Perform verbose error reporting if not NULL. PMDs initialize this
3746  *   structure in case of error only.
3747  *
3748  * @return
3749  *   0 on success, a negative errno value otherwise and rte_errno is set.
3750  */
3751 int
3752 rte_flow_destroy(uint16_t port_id,
3753                  struct rte_flow *flow,
3754                  struct rte_flow_error *error);
3755
3756 /**
3757  * Destroy all flow rules associated with a port.
3758  *
3759  * In the unlikely event of failure, handles are still considered destroyed
3760  * and no longer valid but the port must be assumed to be in an inconsistent
3761  * state.
3762  *
3763  * @param port_id
3764  *   Port identifier of Ethernet device.
3765  * @param[out] error
3766  *   Perform verbose error reporting if not NULL. PMDs initialize this
3767  *   structure in case of error only.
3768  *
3769  * @return
3770  *   0 on success, a negative errno value otherwise and rte_errno is set.
3771  */
3772 int
3773 rte_flow_flush(uint16_t port_id,
3774                struct rte_flow_error *error);
3775
3776 /**
3777  * Query an existing flow rule.
3778  *
3779  * This function allows retrieving flow-specific data such as counters.
3780  * Data is gathered by special actions which must be present in the flow
3781  * rule definition.
3782  *
3783  * \see RTE_FLOW_ACTION_TYPE_COUNT
3784  *
3785  * @param port_id
3786  *   Port identifier of Ethernet device.
3787  * @param flow
3788  *   Flow rule handle to query.
3789  * @param action
3790  *   Action definition as defined in original flow rule.
3791  * @param[in, out] data
3792  *   Pointer to storage for the associated query data type.
3793  * @param[out] error
3794  *   Perform verbose error reporting if not NULL. PMDs initialize this
3795  *   structure in case of error only.
3796  *
3797  * @return
3798  *   0 on success, a negative errno value otherwise and rte_errno is set.
3799  */
3800 int
3801 rte_flow_query(uint16_t port_id,
3802                struct rte_flow *flow,
3803                const struct rte_flow_action *action,
3804                void *data,
3805                struct rte_flow_error *error);
3806
3807 /**
3808  * Restrict ingress traffic to the defined flow rules.
3809  *
3810  * Isolated mode guarantees that all ingress traffic comes from defined flow
3811  * rules only (current and future).
3812  *
3813  * Besides making ingress more deterministic, it allows PMDs to safely reuse
3814  * resources otherwise assigned to handle the remaining traffic, such as
3815  * global RSS configuration settings, VLAN filters, MAC address entries,
3816  * legacy filter API rules and so on in order to expand the set of possible
3817  * flow rule types.
3818  *
3819  * Calling this function as soon as possible after device initialization,
3820  * ideally before the first call to rte_eth_dev_configure(), is recommended
3821  * to avoid possible failures due to conflicting settings.
3822  *
3823  * Once effective, leaving isolated mode may not be possible depending on
3824  * PMD implementation.
3825  *
3826  * Additionally, the following functionality has no effect on the underlying
3827  * port and may return errors such as ENOTSUP ("not supported"):
3828  *
3829  * - Toggling promiscuous mode.
3830  * - Toggling allmulticast mode.
3831  * - Configuring MAC addresses.
3832  * - Configuring multicast addresses.
3833  * - Configuring VLAN filters.
3834  * - Configuring Rx filters through the legacy API (e.g. FDIR).
3835  * - Configuring global RSS settings.
3836  *
3837  * @param port_id
3838  *   Port identifier of Ethernet device.
3839  * @param set
3840  *   Nonzero to enter isolated mode, attempt to leave it otherwise.
3841  * @param[out] error
3842  *   Perform verbose error reporting if not NULL. PMDs initialize this
3843  *   structure in case of error only.
3844  *
3845  * @return
3846  *   0 on success, a negative errno value otherwise and rte_errno is set.
3847  */
3848 int
3849 rte_flow_isolate(uint16_t port_id, int set, struct rte_flow_error *error);
3850
3851 /**
3852  * Initialize flow error structure.
3853  *
3854  * @param[out] error
3855  *   Pointer to flow error structure (may be NULL).
3856  * @param code
3857  *   Related error code (rte_errno).
3858  * @param type
3859  *   Cause field and error types.
3860  * @param cause
3861  *   Object responsible for the error.
3862  * @param message
3863  *   Human-readable error message.
3864  *
3865  * @return
3866  *   Negative error code (errno value) and rte_errno is set.
3867  */
3868 int
3869 rte_flow_error_set(struct rte_flow_error *error,
3870                    int code,
3871                    enum rte_flow_error_type type,
3872                    const void *cause,
3873                    const char *message);
3874
3875 /**
3876  * @deprecated
3877  * @see rte_flow_copy()
3878  */
3879 struct rte_flow_desc {
3880         size_t size; /**< Allocated space including data[]. */
3881         struct rte_flow_attr attr; /**< Attributes. */
3882         struct rte_flow_item *items; /**< Items. */
3883         struct rte_flow_action *actions; /**< Actions. */
3884         uint8_t data[]; /**< Storage for items/actions. */
3885 };
3886
3887 /**
3888  * @deprecated
3889  * Copy an rte_flow rule description.
3890  *
3891  * This interface is kept for compatibility with older applications but is
3892  * implemented as a wrapper to rte_flow_conv(). It is deprecated due to its
3893  * lack of flexibility and reliance on a type unusable with C++ programs
3894  * (struct rte_flow_desc).
3895  *
3896  * @param[in] fd
3897  *   Flow rule description.
3898  * @param[in] len
3899  *   Total size of allocated data for the flow description.
3900  * @param[in] attr
3901  *   Flow rule attributes.
3902  * @param[in] items
3903  *   Pattern specification (list terminated by the END pattern item).
3904  * @param[in] actions
3905  *   Associated actions (list terminated by the END action).
3906  *
3907  * @return
3908  *   If len is greater or equal to the size of the flow, the total size of the
3909  *   flow description and its data.
3910  *   If len is lower than the size of the flow, the number of bytes that would
3911  *   have been written to desc had it been sufficient. Nothing is written.
3912  */
3913 __rte_deprecated
3914 size_t
3915 rte_flow_copy(struct rte_flow_desc *fd, size_t len,
3916               const struct rte_flow_attr *attr,
3917               const struct rte_flow_item *items,
3918               const struct rte_flow_action *actions);
3919
3920 /**
3921  * Flow object conversion helper.
3922  *
3923  * This function performs conversion of various flow API objects to a
3924  * pre-allocated destination buffer. See enum rte_flow_conv_op for possible
3925  * operations and details about each of them.
3926  *
3927  * Since destination buffer must be large enough, it works in a manner
3928  * reminiscent of snprintf():
3929  *
3930  * - If @p size is 0, @p dst may be a NULL pointer, otherwise @p dst must be
3931  *   non-NULL.
3932  * - If positive, the returned value represents the number of bytes needed
3933  *   to store the conversion of @p src to @p dst according to @p op
3934  *   regardless of the @p size parameter.
3935  * - Since no more than @p size bytes can be written to @p dst, output is
3936  *   truncated and may be inconsistent when the returned value is larger
3937  *   than that.
3938  * - In case of conversion error, a negative error code is returned and
3939  *   @p dst contents are unspecified.
3940  *
3941  * @param op
3942  *   Operation to perform, related to the object type of @p dst.
3943  * @param[out] dst
3944  *   Destination buffer address. Must be suitably aligned by the caller.
3945  * @param size
3946  *   Destination buffer size in bytes.
3947  * @param[in] src
3948  *   Source object to copy. Depending on @p op, its type may differ from
3949  *   that of @p dst.
3950  * @param[out] error
3951  *   Perform verbose error reporting if not NULL. Initialized in case of
3952  *   error only.
3953  *
3954  * @return
3955  *   The number of bytes required to convert @p src to @p dst on success, a
3956  *   negative errno value otherwise and rte_errno is set.
3957  *
3958  * @see rte_flow_conv_op
3959  */
3960 __rte_experimental
3961 int
3962 rte_flow_conv(enum rte_flow_conv_op op,
3963               void *dst,
3964               size_t size,
3965               const void *src,
3966               struct rte_flow_error *error);
3967
3968 /**
3969  * Get aged-out flows of a given port.
3970  *
3971  * RTE_ETH_EVENT_FLOW_AGED event will be triggered when at least one new aged
3972  * out flow was detected after the last call to rte_flow_get_aged_flows.
3973  * This function can be called to get the aged flows usynchronously from the
3974  * event callback or synchronously regardless the event.
3975  * This is not safe to call rte_flow_get_aged_flows function with other flow
3976  * functions from multiple threads simultaneously.
3977  *
3978  * @param port_id
3979  *   Port identifier of Ethernet device.
3980  * @param[in, out] contexts
3981  *   The address of an array of pointers to the aged-out flows contexts.
3982  * @param[in] nb_contexts
3983  *   The length of context array pointers.
3984  * @param[out] error
3985  *   Perform verbose error reporting if not NULL. Initialized in case of
3986  *   error only.
3987  *
3988  * @return
3989  *   if nb_contexts is 0, return the amount of all aged contexts.
3990  *   if nb_contexts is not 0 , return the amount of aged flows reported
3991  *   in the context array, otherwise negative errno value.
3992  *
3993  * @see rte_flow_action_age
3994  * @see RTE_ETH_EVENT_FLOW_AGED
3995  */
3996 __rte_experimental
3997 int
3998 rte_flow_get_aged_flows(uint16_t port_id, void **contexts,
3999                         uint32_t nb_contexts, struct rte_flow_error *error);
4000
4001 /**
4002  * Specify indirect action object configuration
4003  */
4004 struct rte_flow_indir_action_conf {
4005         /**
4006          * Flow direction for the indirect action configuration.
4007          *
4008          * Action should be valid at least for one flow direction,
4009          * otherwise it is invalid for both ingress and egress rules.
4010          */
4011         uint32_t ingress:1;
4012         /**< Action valid for rules applied to ingress traffic. */
4013         uint32_t egress:1;
4014         /**< Action valid for rules applied to egress traffic. */
4015         /**
4016          * When set to 1, indicates that the action is valid for
4017          * transfer traffic; otherwise, for non-transfer traffic.
4018          */
4019         uint32_t transfer:1;
4020 };
4021
4022 /**
4023  * @warning
4024  * @b EXPERIMENTAL: this API may change without prior notice.
4025  *
4026  * Create an indirect action object that can be used in flow rules
4027  * via its handle.
4028  * The created object handle has single state and configuration
4029  * across all the flow rules using it.
4030  *
4031  * @param[in] port_id
4032  *    The port identifier of the Ethernet device.
4033  * @param[in] conf
4034  *   Action configuration for the indirect action object creation.
4035  * @param[in] action
4036  *   Specific configuration of the indirect action object.
4037  * @param[out] error
4038  *   Perform verbose error reporting if not NULL. PMDs initialize this
4039  *   structure in case of error only.
4040  * @return
4041  *   A valid handle in case of success, NULL otherwise and rte_errno is set
4042  *   to one of the error codes defined:
4043  *   - (ENODEV) if *port_id* invalid.
4044  *   - (ENOSYS) if underlying device does not support this functionality.
4045  *   - (EIO) if underlying device is removed.
4046  *   - (EINVAL) if *action* invalid.
4047  *   - (ENOTSUP) if *action* valid but unsupported.
4048  */
4049 __rte_experimental
4050 struct rte_flow_action_handle *
4051 rte_flow_action_handle_create(uint16_t port_id,
4052                               const struct rte_flow_indir_action_conf *conf,
4053                               const struct rte_flow_action *action,
4054                               struct rte_flow_error *error);
4055
4056 /**
4057  * @warning
4058  * @b EXPERIMENTAL: this API may change without prior notice.
4059  *
4060  * Destroy indirect action by handle.
4061  *
4062  * @param[in] port_id
4063  *    The port identifier of the Ethernet device.
4064  * @param[in] handle
4065  *   Handle for the indirect action object to be destroyed.
4066  * @param[out] error
4067  *   Perform verbose error reporting if not NULL. PMDs initialize this
4068  *   structure in case of error only.
4069  * @return
4070  *   - (0) if success.
4071  *   - (-ENODEV) if *port_id* invalid.
4072  *   - (-ENOSYS) if underlying device does not support this functionality.
4073  *   - (-EIO) if underlying device is removed.
4074  *   - (-ENOENT) if action pointed by *action* handle was not found.
4075  *   - (-EBUSY) if action pointed by *action* handle still used by some rules
4076  *   rte_errno is also set.
4077  */
4078 __rte_experimental
4079 int
4080 rte_flow_action_handle_destroy(uint16_t port_id,
4081                                struct rte_flow_action_handle *handle,
4082                                struct rte_flow_error *error);
4083
4084 /**
4085  * @warning
4086  * @b EXPERIMENTAL: this API may change without prior notice.
4087  *
4088  * Update in-place the action configuration and / or state pointed
4089  * by action *handle* with the configuration provided as *update* argument.
4090  * The update of the action configuration effects all flow rules reusing
4091  * the action via *handle*.
4092  * The update general pointer provides the ability of partial updating.
4093  *
4094  * @param[in] port_id
4095  *    The port identifier of the Ethernet device.
4096  * @param[in] handle
4097  *   Handle for the indirect action object to be updated.
4098  * @param[in] update
4099  *   Update profile specification used to modify the action pointed by handle.
4100  *   *update* could be with the same type of the immediate action corresponding
4101  *   to the *handle* argument when creating, or a wrapper structure includes
4102  *   action configuration to be updated and bit fields to indicate the member
4103  *   of fields inside the action to update.
4104  * @param[out] error
4105  *   Perform verbose error reporting if not NULL. PMDs initialize this
4106  *   structure in case of error only.
4107  * @return
4108  *   - (0) if success.
4109  *   - (-ENODEV) if *port_id* invalid.
4110  *   - (-ENOSYS) if underlying device does not support this functionality.
4111  *   - (-EIO) if underlying device is removed.
4112  *   - (-EINVAL) if *update* invalid.
4113  *   - (-ENOTSUP) if *update* valid but unsupported.
4114  *   - (-ENOENT) if indirect action object pointed by *handle* was not found.
4115  *   rte_errno is also set.
4116  */
4117 __rte_experimental
4118 int
4119 rte_flow_action_handle_update(uint16_t port_id,
4120                               struct rte_flow_action_handle *handle,
4121                               const void *update,
4122                               struct rte_flow_error *error);
4123
4124 /**
4125  * @warning
4126  * @b EXPERIMENTAL: this API may change without prior notice.
4127  *
4128  * Query the direct action by corresponding indirect action object handle.
4129  *
4130  * Retrieve action-specific data such as counters.
4131  * Data is gathered by special action which may be present/referenced in
4132  * more than one flow rule definition.
4133  *
4134  * @see RTE_FLOW_ACTION_TYPE_COUNT
4135  *
4136  * @param port_id
4137  *   Port identifier of Ethernet device.
4138  * @param[in] handle
4139  *   Handle for the action object to query.
4140  * @param[in, out] data
4141  *   Pointer to storage for the associated query data type.
4142  * @param[out] error
4143  *   Perform verbose error reporting if not NULL. PMDs initialize this
4144  *   structure in case of error only.
4145  *
4146  * @return
4147  *   0 on success, a negative errno value otherwise and rte_errno is set.
4148  */
4149 __rte_experimental
4150 int
4151 rte_flow_action_handle_query(uint16_t port_id,
4152                              const struct rte_flow_action_handle *handle,
4153                              void *data, struct rte_flow_error *error);
4154
4155 /* Tunnel has a type and the key information. */
4156 struct rte_flow_tunnel {
4157         /**
4158          * Tunnel type, for example RTE_FLOW_ITEM_TYPE_VXLAN,
4159          * RTE_FLOW_ITEM_TYPE_NVGRE etc.
4160          */
4161         enum rte_flow_item_type type;
4162         uint64_t tun_id; /**< Tunnel identification. */
4163
4164         RTE_STD_C11
4165         union {
4166                 struct {
4167                         rte_be32_t src_addr; /**< IPv4 source address. */
4168                         rte_be32_t dst_addr; /**< IPv4 destination address. */
4169                 } ipv4;
4170                 struct {
4171                         uint8_t src_addr[16]; /**< IPv6 source address. */
4172                         uint8_t dst_addr[16]; /**< IPv6 destination address. */
4173                 } ipv6;
4174         };
4175         rte_be16_t tp_src; /**< Tunnel port source. */
4176         rte_be16_t tp_dst; /**< Tunnel port destination. */
4177         uint16_t   tun_flags; /**< Tunnel flags. */
4178
4179         bool       is_ipv6; /**< True for valid IPv6 fields. Otherwise IPv4. */
4180
4181         /**
4182          * the following members are required to restore packet
4183          * after miss
4184          */
4185         uint8_t    tos; /**< TOS for IPv4, TC for IPv6. */
4186         uint8_t    ttl; /**< TTL for IPv4, HL for IPv6. */
4187         uint32_t label; /**< Flow Label for IPv6. */
4188 };
4189
4190 /**
4191  * Indicate that the packet has a tunnel.
4192  */
4193 #define RTE_FLOW_RESTORE_INFO_TUNNEL  (1ULL << 0)
4194
4195 /**
4196  * Indicate that the packet has a non decapsulated tunnel header.
4197  */
4198 #define RTE_FLOW_RESTORE_INFO_ENCAPSULATED  (1ULL << 1)
4199
4200 /**
4201  * Indicate that the packet has a group_id.
4202  */
4203 #define RTE_FLOW_RESTORE_INFO_GROUP_ID  (1ULL << 2)
4204
4205 /**
4206  * Restore information structure to communicate the current packet processing
4207  * state when some of the processing pipeline is done in hardware and should
4208  * continue in software.
4209  */
4210 struct rte_flow_restore_info {
4211         /**
4212          * Bitwise flags (RTE_FLOW_RESTORE_INFO_*) to indicate validation of
4213          * other fields in struct rte_flow_restore_info.
4214          */
4215         uint64_t flags;
4216         uint32_t group_id; /**< Group ID where packed missed */
4217         struct rte_flow_tunnel tunnel; /**< Tunnel information. */
4218 };
4219
4220 /**
4221  * Allocate an array of actions to be used in rte_flow_create, to implement
4222  * tunnel-decap-set for the given tunnel.
4223  * Sample usage:
4224  *   actions vxlan_decap / tunnel-decap-set(tunnel properties) /
4225  *            jump group 0 / end
4226  *
4227  * @param port_id
4228  *   Port identifier of Ethernet device.
4229  * @param[in] tunnel
4230  *   Tunnel properties.
4231  * @param[out] actions
4232  *   Array of actions to be allocated by the PMD. This array should be
4233  *   concatenated with the actions array provided to rte_flow_create.
4234  * @param[out] num_of_actions
4235  *   Number of actions allocated.
4236  * @param[out] error
4237  *   Perform verbose error reporting if not NULL. PMDs initialize this
4238  *   structure in case of error only.
4239  *
4240  * @return
4241  *   0 on success, a negative errno value otherwise and rte_errno is set.
4242  */
4243 __rte_experimental
4244 int
4245 rte_flow_tunnel_decap_set(uint16_t port_id,
4246                           struct rte_flow_tunnel *tunnel,
4247                           struct rte_flow_action **actions,
4248                           uint32_t *num_of_actions,
4249                           struct rte_flow_error *error);
4250
4251 /**
4252  * Allocate an array of items to be used in rte_flow_create, to implement
4253  * tunnel-match for the given tunnel.
4254  * Sample usage:
4255  *   pattern tunnel-match(tunnel properties) / outer-header-matches /
4256  *           inner-header-matches / end
4257  *
4258  * @param port_id
4259  *   Port identifier of Ethernet device.
4260  * @param[in] tunnel
4261  *   Tunnel properties.
4262  * @param[out] items
4263  *   Array of items to be allocated by the PMD. This array should be
4264  *   concatenated with the items array provided to rte_flow_create.
4265  * @param[out] num_of_items
4266  *   Number of items allocated.
4267  * @param[out] error
4268  *   Perform verbose error reporting if not NULL. PMDs initialize this
4269  *   structure in case of error only.
4270  *
4271  * @return
4272  *   0 on success, a negative errno value otherwise and rte_errno is set.
4273  */
4274 __rte_experimental
4275 int
4276 rte_flow_tunnel_match(uint16_t port_id,
4277                       struct rte_flow_tunnel *tunnel,
4278                       struct rte_flow_item **items,
4279                       uint32_t *num_of_items,
4280                       struct rte_flow_error *error);
4281
4282 /**
4283  * Populate the current packet processing state, if exists, for the given mbuf.
4284  *
4285  * One should negotiate tunnel metadata delivery from the NIC to the HW.
4286  * @see rte_eth_rx_metadata_negotiate()
4287  * @see RTE_ETH_RX_METADATA_TUNNEL_ID
4288  *
4289  * @param port_id
4290  *   Port identifier of Ethernet device.
4291  * @param[in] m
4292  *   Mbuf struct.
4293  * @param[out] info
4294  *   Restore information. Upon success contains the HW state.
4295  * @param[out] error
4296  *   Perform verbose error reporting if not NULL. PMDs initialize this
4297  *   structure in case of error only.
4298  *
4299  * @return
4300  *   0 on success, a negative errno value otherwise and rte_errno is set.
4301  */
4302 __rte_experimental
4303 int
4304 rte_flow_get_restore_info(uint16_t port_id,
4305                           struct rte_mbuf *m,
4306                           struct rte_flow_restore_info *info,
4307                           struct rte_flow_error *error);
4308
4309 /**
4310  * Release the action array as allocated by rte_flow_tunnel_decap_set.
4311  *
4312  * @param port_id
4313  *   Port identifier of Ethernet device.
4314  * @param[in] actions
4315  *   Array of actions to be released.
4316  * @param[in] num_of_actions
4317  *   Number of elements in actions array.
4318  * @param[out] error
4319  *   Perform verbose error reporting if not NULL. PMDs initialize this
4320  *   structure in case of error only.
4321  *
4322  * @return
4323  *   0 on success, a negative errno value otherwise and rte_errno is set.
4324  */
4325 __rte_experimental
4326 int
4327 rte_flow_tunnel_action_decap_release(uint16_t port_id,
4328                                      struct rte_flow_action *actions,
4329                                      uint32_t num_of_actions,
4330                                      struct rte_flow_error *error);
4331
4332 /**
4333  * Release the item array as allocated by rte_flow_tunnel_match.
4334  *
4335  * @param port_id
4336  *   Port identifier of Ethernet device.
4337  * @param[in] items
4338  *   Array of items to be released.
4339  * @param[in] num_of_items
4340  *   Number of elements in item array.
4341  * @param[out] error
4342  *   Perform verbose error reporting if not NULL. PMDs initialize this
4343  *   structure in case of error only.
4344  *
4345  * @return
4346  *   0 on success, a negative errno value otherwise and rte_errno is set.
4347  */
4348 __rte_experimental
4349 int
4350 rte_flow_tunnel_item_release(uint16_t port_id,
4351                              struct rte_flow_item *items,
4352                              uint32_t num_of_items,
4353                              struct rte_flow_error *error);
4354 #ifdef __cplusplus
4355 }
4356 #endif
4357
4358 #endif /* RTE_FLOW_H_ */