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