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