DPDK  26.03.0
rte_flow.h
Go to the documentation of this file.
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 
17 #include <stddef.h>
18 #include <stdint.h>
19 
20 #include <rte_compat.h>
21 #include <rte_common.h>
22 #include <rte_ether.h>
23 #include <rte_arp.h>
24 #include <rte_icmp.h>
25 #include <rte_ip.h>
26 #include <rte_sctp.h>
27 #include <rte_tcp.h>
28 #include <rte_udp.h>
29 #include <rte_vxlan.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_dyn.h>
35 #include <rte_meter.h>
36 #include <rte_gtp.h>
37 #include <rte_l2tpv2.h>
38 #include <rte_ppp.h>
39 #include <rte_gre.h>
40 #include <rte_macsec.h>
41 #include <rte_ib.h>
42 
43 #include "rte_ethdev.h"
44 
45 #ifdef __cplusplus
46 extern "C" {
47 #endif
48 
89 struct rte_flow_attr {
100  uint32_t group;
101  uint32_t priority;
105  uint32_t ingress:1;
109  uint32_t egress:1;
127  uint32_t transfer:1;
128  uint32_t reserved:29;
129 };
130 
131 struct rte_flow_group_attr {
132  uint32_t ingress:1;
133  uint32_t egress:1;
134  uint32_t transfer:1;
135 };
136 
163 
173 
183 
191 
205 
212 
219 
226 
233 
240 
247 
254 
261 
268 
275 
282 
289 
296 
303 
315 
324 
333 
342 
349 
356 
366 
373 
380 
387 
394 
401 
408 
416 
424 
431 
440 
453 
462 
471 
480 
489 
496 
503 
510 
516 
525 
534 
541 
550 
557 
564 
575 
584 
593 
603 
612 
619 
626 
633 
640 
647 
654 
661 
668 
675 
684 
692 
699 
707 
720 
727 };
728 
740 };
741 
748  enum rte_flow_quota_state state;
749 };
750 
754 #ifndef __cplusplus
756  .state = (enum rte_flow_quota_state)0xff
757 };
758 #endif
759 
766  struct rte_higig2_hdr hdr;
767 };
768 
770 #ifndef __cplusplus
772  .hdr = {
773  .ppt1 = {
774  .classification = RTE_BE16(UINT16_MAX),
775  .vid = RTE_BE16(0xfff),
776  },
777  },
778 };
779 #endif
780 
793  uint32_t num;
794 };
795 
797 #ifndef __cplusplus
799  .num = 0x00000000,
800 };
801 #endif
802 
818  uint32_t id;
819 };
820 
822 #ifndef __cplusplus
824  .id = 0xffffffff,
825 };
826 #endif
827 
847  uint32_t relative:1;
848  uint32_t search:1;
849  uint32_t reserved:30;
850  int32_t offset;
851  uint16_t limit;
852  uint16_t length;
853  const uint8_t *pattern;
854 };
855 
857 #ifndef __cplusplus
859  .relative = 1,
860  .search = 1,
861  .reserved = 0x3fffffff,
862  .offset = 0xffffffff,
863  .limit = 0xffff,
864  .length = 0xffff,
865  .pattern = NULL,
866 };
867 #endif
868 
887  union {
888  struct {
889  /*
890  * These fields are retained for compatibility.
891  * Please switch to the new header field below.
892  */
893  struct rte_ether_addr dst;
894  struct rte_ether_addr src;
896  };
897  struct rte_ether_hdr hdr;
898  };
899  uint32_t has_vlan:1;
900  uint32_t reserved:31;
901 };
902 
904 #ifndef __cplusplus
906  .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
907  .hdr.src_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
908  .hdr.ether_type = RTE_BE16(0x0000),
909 };
910 #endif
911 
928  union {
929  struct {
930  /*
931  * These fields are retained for compatibility.
932  * Please switch to the new header field below.
933  */
936  };
937  struct rte_vlan_hdr hdr;
938  };
940  uint32_t has_more_vlan:1;
941  uint32_t reserved:31;
942 };
943 
945 #ifndef __cplusplus
947  .hdr.vlan_tci = RTE_BE16(0x0fff),
948  .hdr.eth_proto = RTE_BE16(0x0000),
949 };
950 #endif
951 
960  struct rte_ipv4_hdr hdr;
961 };
962 
964 #ifndef __cplusplus
966  .hdr = {
967  .src_addr = RTE_BE32(0xffffffff),
968  .dst_addr = RTE_BE32(0xffffffff),
969  },
970 };
971 #endif
972 
981  struct rte_ipv6_hdr hdr;
983  uint32_t has_hop_ext:1;
985  uint32_t has_route_ext:1;
987  uint32_t has_frag_ext:1;
989  uint32_t has_auth_ext:1;
991  uint32_t has_esp_ext:1;
993  uint32_t has_dest_ext:1;
995  uint32_t has_mobil_ext:1;
997  uint32_t has_hip_ext:1;
999  uint32_t has_shim6_ext:1;
1001  uint32_t reserved:23;
1002 };
1003 
1005 #ifndef __cplusplus
1007  .hdr = {
1008  .src_addr = RTE_IPV6_MASK_FULL,
1009  .dst_addr = RTE_IPV6_MASK_FULL,
1010  },
1011 };
1012 #endif
1013 
1023  struct rte_ipv6_routing_ext hdr;
1024 };
1025 
1033 };
1034 
1036 #ifndef __cplusplus
1038  .hdr = {
1039  .icmp_type = 0xff,
1040  .icmp_code = 0xff,
1041  },
1042 };
1043 #endif
1044 
1051  struct rte_udp_hdr hdr;
1052 };
1053 
1055 #ifndef __cplusplus
1057  .hdr = {
1058  .src_port = RTE_BE16(0xffff),
1059  .dst_port = RTE_BE16(0xffff),
1060  },
1061 };
1062 #endif
1063 
1070  struct rte_tcp_hdr hdr;
1071 };
1072 
1074 #ifndef __cplusplus
1076  .hdr = {
1077  .src_port = RTE_BE16(0xffff),
1078  .dst_port = RTE_BE16(0xffff),
1079  },
1080 };
1081 #endif
1082 
1090 };
1091 
1093 #ifndef __cplusplus
1095  .hdr = {
1096  .src_port = RTE_BE16(0xffff),
1097  .dst_port = RTE_BE16(0xffff),
1098  },
1099 };
1100 #endif
1101 
1113  union {
1114  struct {
1115  /*
1116  * These fields are retained for compatibility.
1117  * Please switch to the new header field below.
1118  */
1119  uint8_t flags;
1120  uint8_t rsvd0[3];
1121  uint8_t vni[3];
1122  uint8_t rsvd1;
1123  };
1124  struct rte_vxlan_hdr hdr;
1125  };
1126 };
1127 
1129 #ifndef __cplusplus
1131  .hdr.vni = { 0xff, 0xff, 0xff },
1132 };
1133 #endif
1134 
1151  uint8_t in_ecid_e;
1152  uint8_t ecid_e;
1154 };
1155 
1157 #ifndef __cplusplus
1159  .rsvd_grp_ecid_b = RTE_BE16(0x3fff),
1160 };
1161 #endif
1162 
1177  uint8_t tni[3];
1178  uint8_t flow_id;
1179 };
1180 
1182 #ifndef __cplusplus
1184  .tni = { 0xff, 0xff, 0xff },
1185 };
1186 #endif
1187 
1197  uint8_t label_tc_s[3];
1198  uint8_t ttl;
1199 };
1200 
1202 #ifndef __cplusplus
1204  .label_tc_s = { 0xff, 0xff, 0xf0 },
1205 };
1206 #endif
1207 
1220 };
1221 
1223 #ifndef __cplusplus
1225  .protocol = RTE_BE16(0xffff),
1226 };
1227 #endif
1228 
1235  struct rte_gre_hdr_opt_checksum_rsvd checksum_rsvd;
1236  struct rte_gre_hdr_opt_key key;
1237  struct rte_gre_hdr_opt_sequence sequence;
1238 };
1239 
1246  struct rte_macsec_hdr macsec_hdr;
1247 };
1248 
1267  uint32_t thresh;
1268 };
1269 
1271 #ifndef __cplusplus
1273  .thresh = 0xffffffff,
1274 };
1275 #endif
1276 
1283  union {
1284  struct {
1285  /*
1286  * These are old fields kept for compatibility.
1287  * Please prefer hdr field below.
1288  */
1296  uint8_t msg_type;
1299  };
1300  struct rte_gtp_hdr hdr;
1301  };
1302 };
1303 
1305 #ifndef __cplusplus
1307  .hdr.teid = RTE_BE32(UINT32_MAX),
1308 };
1309 #endif
1310 
1317  struct rte_esp_hdr hdr;
1318 };
1319 
1321 #ifndef __cplusplus
1323  .hdr = {
1324  .spi = RTE_BE32(0xffffffff),
1325  },
1326 };
1327 #endif
1328 
1341  uint8_t vni[3];
1342  uint8_t rsvd1;
1343 };
1344 
1346 #ifndef __cplusplus
1348  .vni = { 0xff, 0xff, 0xff },
1349 };
1350 #endif
1351 
1361  union {
1362  struct {
1363  /*
1364  * These are old fields kept for compatibility.
1365  * Please prefer hdr field below.
1366  */
1367  uint8_t flags;
1368  uint8_t rsvd0[2];
1369  uint8_t protocol;
1370  uint8_t vni[3];
1371  uint8_t rsvd1;
1372  };
1373  struct rte_vxlan_gpe_hdr hdr;
1374  };
1375 };
1376 
1383 #ifndef __cplusplus
1385  .hdr.vni = { 0xff, 0xff, 0xff },
1386 };
1387 #endif
1388 
1395  union {
1396  struct {
1397  /*
1398  * These are old fields kept for compatibility.
1399  * Please prefer hdr field below.
1400  */
1403  uint8_t hln;
1404  uint8_t pln;
1406  struct rte_ether_addr sha;
1408  struct rte_ether_addr tha;
1410  };
1411  struct rte_arp_hdr hdr;
1412  };
1413 };
1414 
1416 #ifndef __cplusplus
1417 static const struct rte_flow_item_arp_eth_ipv4
1419  .hdr.arp_data.arp_sha.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
1420  .hdr.arp_data.arp_sip = RTE_BE32(UINT32_MAX),
1421  .hdr.arp_data.arp_tha.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
1422  .hdr.arp_data.arp_tip = RTE_BE32(UINT32_MAX),
1423 };
1424 #endif
1425 
1437  uint8_t next_hdr;
1438 };
1439 
1441 #ifndef __cplusplus
1442 static const
1444  .next_hdr = 0xff,
1445 };
1446 #endif
1447 
1459  struct rte_ipv6_fragment_ext hdr;
1460 };
1461 
1468  uint8_t type;
1469  uint8_t code;
1470  uint16_t checksum;
1471 };
1472 
1474 #ifndef __cplusplus
1476  .type = 0xff,
1477  .code = 0xff,
1478 };
1479 #endif
1480 
1488  struct rte_icmp_echo_hdr hdr;
1489 };
1490 
1497  uint8_t type;
1498  uint8_t code;
1502 };
1503 
1505 #ifndef __cplusplus
1506 static const
1509 };
1510 #endif
1511 
1518  uint8_t type;
1519  uint8_t code;
1527 };
1528 
1530 #ifndef __cplusplus
1531 static const
1534 };
1535 #endif
1536 
1549  uint8_t type;
1550  uint8_t length;
1551 };
1552 
1554 #ifndef __cplusplus
1555 static const struct rte_flow_item_icmp6_nd_opt
1557  .type = 0xff,
1558 };
1559 #endif
1560 
1573  uint8_t type;
1574  uint8_t length;
1575  struct rte_ether_addr sla;
1576 };
1577 
1579 #ifndef __cplusplus
1580 static const struct rte_flow_item_icmp6_nd_opt_sla_eth
1582  .sla.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
1583 };
1584 #endif
1585 
1598  uint8_t type;
1599  uint8_t length;
1600  struct rte_ether_addr tla;
1601 };
1602 
1604 #ifndef __cplusplus
1605 static const struct rte_flow_item_icmp6_nd_opt_tla_eth
1607  .tla.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
1608 };
1609 #endif
1610 
1623  uint32_t data;
1624 };
1625 
1627 #ifndef __cplusplus
1629  .data = UINT32_MAX,
1630 };
1631 #endif
1632 
1640 };
1641 
1643 #ifndef __cplusplus
1644 static const struct rte_flow_item_gtp_psc
1646  .hdr.qfi = 0x3f,
1647 };
1648 #endif
1649 
1659  uint8_t version_type;
1660  uint8_t code;
1663 };
1664 
1679 };
1680 
1682 #ifndef __cplusplus
1683 static const struct rte_flow_item_pppoe_proto_id
1685  .proto_id = RTE_BE16(0xffff),
1686 };
1687 #endif
1688 
1698  uint32_t data;
1699  uint8_t index;
1700 };
1701 
1703 #ifndef __cplusplus
1705  .data = 0xffffffff,
1706  .index = 0xff,
1707 };
1708 #endif
1709 
1717 };
1718 
1720 #ifndef __cplusplus
1722  .session_id = RTE_BE32(UINT32_MAX),
1723 };
1724 #endif
1725 
1726 
1746  uint32_t id;
1747 };
1748 
1750 #ifndef __cplusplus
1752  .id = 0xffffffff,
1753 };
1754 #endif
1755 
1765  uint32_t version:2;
1766  uint32_t oam_pkt:1;
1767  uint32_t reserved:1;
1768  uint32_t ttl:6;
1769  uint32_t length:6;
1770  uint32_t reserved1:4;
1771  uint32_t mdtype:4;
1772  uint32_t next_proto:8;
1773  uint32_t spi:24;
1774  uint32_t sindex:8;
1775 };
1776 
1778 #ifndef __cplusplus
1780  .mdtype = 0xf,
1781  .next_proto = 0xff,
1782  .spi = 0xffffff,
1783  .sindex = 0xff,
1784 };
1785 #endif
1786 
1796  uint32_t type:8;
1797  uint32_t max_resp_time:8;
1798  uint32_t checksum:16;
1799  uint32_t group_addr;
1800 };
1801 
1803 #ifndef __cplusplus
1805  .group_addr = 0xffffffff,
1806 };
1807 #endif
1808 
1818  uint32_t next_hdr:8;
1819  uint32_t payload_len:8;
1820  uint32_t reserved:16;
1821  uint32_t spi;
1822  uint32_t seq_num;
1823 };
1824 
1826 #ifndef __cplusplus
1828  .spi = 0xffffffff,
1829 };
1830 #endif
1831 
1841  uint8_t s_field;
1842  uint8_t msg_type;
1843  rte_be16_t msg_len;
1844  rte_be64_t seid;
1845 };
1846 
1848 #ifndef __cplusplus
1850  .s_field = 0x01,
1851  .seid = RTE_BE64(UINT64_C(0xffffffffffffffff)),
1852 };
1853 #endif
1854 
1864  struct rte_ecpri_combined_msg_hdr hdr;
1865 };
1866 
1868 #ifndef __cplusplus
1870  .hdr = {
1871  .common = {
1872  .u32 = 0x0,
1873  },
1874  },
1875 };
1876 #endif
1877 
1884  rte_be16_t option_class;
1885  uint8_t option_type;
1886  uint8_t option_len;
1887  uint32_t *data;
1888 };
1889 
1891 #ifndef __cplusplus
1892 static const struct rte_flow_item_geneve_opt
1894  .option_type = 0xff,
1895 };
1896 #endif
1897 
1910  uint32_t level;
1911  union {
1912  __extension__
1913  struct {
1915  uint64_t packet_ok:1;
1917  uint64_t l2_ok:1;
1919  uint64_t l3_ok:1;
1921  uint64_t l4_ok:1;
1923  uint64_t l2_crc_ok:1;
1925  uint64_t ipv4_csum_ok:1;
1927  uint64_t l4_csum_ok:1;
1929  uint64_t l3_len_ok:1;
1930  uint64_t reserved:56;
1931  };
1932  uint64_t value;
1933  };
1934 };
1935 
1936 #ifndef __cplusplus
1937 static const struct rte_flow_item_integrity
1938 rte_flow_item_integrity_mask = {
1939  .level = 0,
1940  .value = 0,
1941 };
1942 #endif
1943 
1947 #define RTE_FLOW_CONNTRACK_PKT_STATE_VALID RTE_BIT32(0)
1948 
1951 #define RTE_FLOW_CONNTRACK_PKT_STATE_CHANGED RTE_BIT32(1)
1952 
1956 #define RTE_FLOW_CONNTRACK_PKT_STATE_INVALID RTE_BIT32(2)
1957 
1961 #define RTE_FLOW_CONNTRACK_PKT_STATE_DISABLED RTE_BIT32(3)
1962 
1966 #define RTE_FLOW_CONNTRACK_PKT_STATE_BAD RTE_BIT32(4)
1967 
1979  uint32_t flags;
1980 };
1981 
1983 #ifndef __cplusplus
1985  .flags = 0xffffffff,
1986 };
1987 #endif
1988 
1995  uint16_t port_id;
1996 };
1997 
1999 #ifndef __cplusplus
2001  .port_id = 0xffff,
2002 };
2003 #endif
2004 
2014  struct rte_l2tpv2_combined_msg_hdr hdr;
2015 };
2016 
2018 #ifndef __cplusplus
2020  /*
2021  * flags and version bit mask
2022  * 7 6 5 4 3 2 1 0 7 6 5 4 3 2 1 0
2023  * T L x x S x O P x x x x V V V V
2024  */
2025  .hdr = {
2026  .common = {
2027  .flags_version = RTE_BE16(0xcb0f),
2028  },
2029  },
2030 };
2031 #endif
2032 
2042  struct rte_ppp_hdr hdr;
2043 };
2044 
2046 #ifndef __cplusplus
2048  .hdr = {
2049  .addr = 0xff,
2050  .ctrl = 0xff,
2051  .proto_id = RTE_BE16(0xffff),
2052  }
2053 };
2054 #endif
2055 
2062  struct rte_ib_bth hdr;
2063 };
2064 
2066 #ifndef __cplusplus
2068  .hdr = {
2069  .opcode = 0xff,
2070  .dst_qp = { 0xff, 0xff, 0xff },
2071  },
2072 };
2073 #endif
2074 
2084  uint32_t value;
2085 };
2086 
2088 #ifndef __cplusplus
2090  .value = UINT32_MAX,
2091 };
2092 #endif
2093 
2129  const void *spec;
2130  const void *last;
2131  const void *mask;
2132 };
2133 
2151  struct rte_flow_item_flex_handle *handle;
2152  uint32_t length;
2153  const uint8_t *pattern;
2154 };
2186 };
2187 
2217 };
2218 
2224 __extension__
2228  uint32_t field_size;
2229  int32_t field_base;
2230  uint32_t offset_base;
2231  uint32_t offset_mask;
2232  int32_t offset_shift;
2233  uint32_t field_id:16;
2234  uint32_t reserved:16;
2235 };
2236 
2252  uint32_t next;
2253 };
2254 
2284  uint32_t nb_samples;
2294  uint32_t nb_inputs;
2302  uint32_t nb_outputs;
2303 };
2304 
2312 };
2313 
2315 #ifndef __cplusplus
2317  .color = RTE_COLORS,
2318 };
2319 #endif
2320 
2336  uint8_t affinity;
2337 };
2338 
2340 #ifndef __cplusplus
2341 static const struct rte_flow_item_aggr_affinity
2343  .affinity = 0xff,
2344 };
2345 #endif
2346 
2356  uint16_t tx_queue;
2357 };
2358 
2360 #ifndef __cplusplus
2362  .tx_queue = 0xffff,
2363 };
2364 #endif
2365 
2373  uint32_t packet_type;
2374 };
2375 
2377 #ifndef __cplusplus
2379  .packet_type = 0xffffffff,
2380 };
2381 #endif
2382 
2440 };
2441 
2451  union {
2452  struct {
2454  union {
2455  struct {
2490  uint8_t level;
2491  union {
2497  uint8_t tag_index;
2504  struct {
2508  uint8_t type;
2513  };
2514  };
2515  };
2516  struct rte_flow_item_flex_handle *flex_handle;
2517  };
2519  uint32_t offset;
2520  };
2527  uint8_t value[16];
2533  void *pvalue;
2534  };
2535 };
2536 
2541  RTE_FLOW_ITEM_COMPARE_EQ, /* Compare result equal. */
2542  RTE_FLOW_ITEM_COMPARE_NE, /* Compare result not equal. */
2543  RTE_FLOW_ITEM_COMPARE_LT, /* Compare result less than. */
2544  RTE_FLOW_ITEM_COMPARE_LE, /* Compare result less than or equal. */
2545  RTE_FLOW_ITEM_COMPARE_GT, /* Compare result great than. */
2546  RTE_FLOW_ITEM_COMPARE_GE, /* Compare result great than or equal. */
2547 };
2548 
2558  enum rte_flow_item_compare_op operation; /* The compare operation. */
2559  struct rte_flow_field_data a; /* Field be compared. */
2560  struct rte_flow_field_data b; /* Field as comparator. */
2561  uint32_t width; /* Compare width. */
2562 };
2563 
2598 
2606 
2614 
2623 
2635 
2647 
2654 
2663 
2674 
2683 
2695 
2707 
2718 
2726 
2734 
2745 
2753 
2761 
2769 
2777 
2785 
2793 
2801 
2810 
2818 
2827 
2834 
2841 
2854 
2867 
2880 
2893 
2907 
2921 
2932 
2942 
2952 
2965 
2978 
2995 
3012 
3029 
3046 
3059 
3069 
3082 
3095 
3108 
3116 
3127 
3138 
3146 
3155 
3163 
3170 
3178 
3186 
3196 
3205 
3215 
3224 
3234 
3241 
3250 
3257 
3266 };
3267 
3280 };
3281 
3292  int64_t quota;
3293 };
3294 
3304  int64_t quota;
3305 };
3306 
3318 };
3319 
3330  int64_t quota;
3331 };
3332 
3344  uint32_t id;
3345 };
3346 
3360  uint32_t group;
3361 };
3362 
3369  uint16_t index;
3370 };
3371 
3386  uint32_t timeout:24;
3387  uint32_t reserved:8;
3389  void *context;
3390 };
3391 
3399  uint32_t reserved:6;
3400  uint32_t aged:1;
3403  uint32_t sec_since_last_hit:24;
3404 };
3405 
3426  uint32_t reserved:6;
3427  uint32_t timeout_valid:1;
3428  uint32_t timeout:24;
3430  uint32_t touch:1;
3431 };
3432 
3451  uint32_t id;
3452 };
3453 
3460  uint32_t reset:1;
3461  uint32_t hits_set:1;
3462  uint32_t bytes_set:1;
3463  uint32_t reserved:29;
3464  uint64_t hits;
3465  uint64_t bytes;
3466 };
3467 
3511  uint32_t level;
3512  uint64_t types;
3513  uint32_t key_len;
3514  uint32_t queue_num;
3515  const uint8_t *key;
3516  const uint16_t *queue;
3517 };
3518 
3536  uint32_t original:1;
3537  uint32_t reserved:31;
3538  uint32_t id;
3539 };
3540 
3553  uint32_t original:1;
3554  uint32_t reserved:31;
3555  uint32_t id;
3556 };
3557 
3567  uint32_t mtr_id;
3568 };
3569 
3602 };
3603 
3610 };
3611 
3621  enum rte_flow_nat64_type type;
3622 };
3623 
3632 };
3633 
3642 };
3643 
3651  uint8_t vlan_pcp;
3652 };
3653 
3662 };
3663 
3672 };
3673 
3706 };
3707 
3739 };
3740 
3761  uint8_t *data;
3762  uint8_t *preserve;
3763  size_t size;
3764 };
3765 
3782  uint8_t *data;
3783  size_t size;
3784 };
3785 
3798  rte_be32_t ipv4_addr;
3799 };
3800 
3813  struct rte_ipv6_addr ipv6_addr;
3814 };
3815 
3829  uint8_t *data;
3830  size_t size;
3831  uint8_t type;
3832 };
3833 
3845  uint8_t type;
3846 };
3847 
3860  rte_be16_t port;
3861 };
3862 
3869  uint8_t ttl_value;
3870 };
3871 
3878  uint8_t mac_addr[RTE_ETHER_ADDR_LEN];
3879 };
3880 
3891  uint32_t data;
3892  uint32_t mask;
3893  uint8_t index;
3894 };
3895 
3916  uint32_t data;
3917  uint32_t mask;
3918 };
3919 
3928  uint8_t dscp;
3929 };
3930 
3948 struct rte_flow_action_handle;
3949 
3966 };
3967 
3978 };
3979 
3991  uint32_t scale:4;
3993  uint32_t close_initiated:1;
3995  uint32_t last_ack_seen:1;
4000  uint32_t data_unacked:1;
4005  uint32_t sent_end;
4010  uint32_t reply_end;
4012  uint32_t max_win;
4014  uint32_t max_ack;
4015 };
4016 
4029  uint16_t peer_port;
4034  uint32_t is_original_dir:1;
4042  uint32_t enable:1;
4044  uint32_t live_connection:1;
4046  uint32_t selective_ack:1;
4053  uint32_t last_direction:1;
4055  uint32_t liberal_mode:1;
4067  uint16_t last_window;
4068  enum rte_flow_conntrack_tcp_last_index last_index;
4070  uint32_t last_seq;
4072  uint32_t last_ack;
4077  uint32_t last_end;
4078 };
4079 
4091  uint32_t direction:1;
4093  uint32_t state:1;
4095  uint32_t reserved:30;
4096 };
4097 
4109 };
4110 
4117  uint16_t port_id;
4118 };
4119 
4127 };
4128 
4143  uint32_t width;
4144 };
4145 
4158 
4160  struct rte_flow_meter_profile *profile;
4162  struct rte_flow_meter_policy *policy;
4166  int state;
4167 };
4168 
4178  uint32_t profile_valid:1;
4180  uint32_t policy_valid:1;
4182  uint32_t color_mode_valid:1;
4184  uint32_t state_valid:1;
4186  uint32_t reserved:28;
4187 };
4188 
4198 };
4199 
4213  const char *name;
4215  uint32_t size;
4217  const uint8_t *value;
4218 };
4219 
4235  const char *name;
4237  uint32_t args_num;
4240 };
4241 
4242 /* Mbuf dynamic field offset for metadata. */
4243 extern int32_t rte_flow_dynf_metadata_offs;
4244 
4245 /* Mbuf dynamic field flag mask for metadata. */
4246 extern uint64_t rte_flow_dynf_metadata_mask;
4247 
4248 /* Mbuf dynamic field pointer for metadata. */
4249 #define RTE_FLOW_DYNF_METADATA(m) \
4250  RTE_MBUF_DYNFIELD((m), rte_flow_dynf_metadata_offs, uint32_t *)
4251 
4252 /* Mbuf dynamic flags for metadata. */
4253 #define RTE_MBUF_DYNFLAG_RX_METADATA (rte_flow_dynf_metadata_mask)
4254 #define RTE_MBUF_DYNFLAG_TX_METADATA (rte_flow_dynf_metadata_mask)
4255 
4256 __rte_experimental
4257 static inline uint32_t
4258 rte_flow_dynf_metadata_get(struct rte_mbuf *m)
4259 {
4260  return *RTE_FLOW_DYNF_METADATA(m);
4261 }
4262 
4263 __rte_experimental
4264 static inline void
4265 rte_flow_dynf_metadata_set(struct rte_mbuf *m, uint32_t v)
4266 {
4267  *RTE_FLOW_DYNF_METADATA(m) = v;
4268 }
4269 
4279  struct rte_flow_template_table *table;
4280  uint32_t index;
4281 };
4282 
4292  const void *conf;
4293 };
4294 
4301 struct rte_flow;
4302 
4308 struct rte_flow_meter_profile;
4309 
4315 struct rte_flow_meter_policy;
4316 
4334  uint32_t ratio;
4336  const struct rte_flow_action *actions;
4337 };
4338 
4364 };
4365 
4379  const void *cause;
4380  const char *message;
4381 };
4382 
4392  union {
4393  const struct rte_flow_attr *attr_ro;
4395  };
4396  union {
4397  const struct rte_flow_item *pattern_ro;
4399  };
4400  union {
4401  const struct rte_flow_action *actions_ro;
4403  };
4404 };
4405 
4418 
4430 
4442 
4454 
4466 
4479 
4492 
4505 
4519 
4533 
4547 
4561 };
4562 
4582 __rte_experimental
4583 int
4584 rte_flow_dev_dump(uint16_t port_id, struct rte_flow *flow,
4585  FILE *file, struct rte_flow_error *error);
4586 
4593 __rte_experimental
4594 static inline int
4596 {
4597  return !!rte_flow_dynf_metadata_mask;
4598 }
4599 
4610 __rte_experimental
4611 int
4613 
4666 int
4667 rte_flow_validate(uint16_t port_id,
4668  const struct rte_flow_attr *attr,
4669  const struct rte_flow_item pattern[],
4670  const struct rte_flow_action actions[],
4671  struct rte_flow_error *error);
4672 
4693 struct rte_flow *
4694 rte_flow_create(uint16_t port_id,
4695  const struct rte_flow_attr *attr,
4696  const struct rte_flow_item pattern[],
4697  const struct rte_flow_action actions[],
4698  struct rte_flow_error *error);
4699 
4720 int
4721 rte_flow_destroy(uint16_t port_id,
4722  struct rte_flow *flow,
4723  struct rte_flow_error *error);
4724 
4741 __rte_experimental
4742 int
4743 rte_flow_actions_update(uint16_t port_id,
4744  struct rte_flow *flow,
4745  const struct rte_flow_action actions[],
4746  struct rte_flow_error *error);
4747 
4764 int
4765 rte_flow_flush(uint16_t port_id,
4766  struct rte_flow_error *error);
4767 
4792 int
4793 rte_flow_query(uint16_t port_id,
4794  struct rte_flow *flow,
4795  const struct rte_flow_action *action,
4796  void *data,
4797  struct rte_flow_error *error);
4798 
4844 int
4845 rte_flow_isolate(uint16_t port_id, int set, struct rte_flow_error *error);
4846 
4864 int
4865 rte_flow_error_set(struct rte_flow_error *error,
4866  int code,
4867  enum rte_flow_error_type type,
4868  const void *cause,
4869  const char *message);
4870 
4876  size_t size;
4880  uint8_t data[];
4881 };
4882 
4909 __rte_deprecated
4910 size_t
4911 rte_flow_copy(struct rte_flow_desc *fd, size_t len,
4912  const struct rte_flow_attr *attr,
4913  const struct rte_flow_item *items,
4914  const struct rte_flow_action *actions);
4915 
4956 __rte_experimental
4957 int
4959  void *dst,
4960  size_t size,
4961  const void *src,
4962  struct rte_flow_error *error);
4963 
4992 __rte_experimental
4993 int
4994 rte_flow_get_aged_flows(uint16_t port_id, void **contexts,
4995  uint32_t nb_contexts, struct rte_flow_error *error);
4996 
5036 __rte_experimental
5037 int
5038 rte_flow_get_q_aged_flows(uint16_t port_id, uint32_t queue_id, void **contexts,
5039  uint32_t nb_contexts, struct rte_flow_error *error);
5040 
5052  uint32_t ingress:1;
5054  uint32_t egress:1;
5059  uint32_t transfer:1;
5060 };
5061 
5089 __rte_experimental
5090 struct rte_flow_action_handle *
5091 rte_flow_action_handle_create(uint16_t port_id,
5092  const struct rte_flow_indir_action_conf *conf,
5093  const struct rte_flow_action *action,
5094  struct rte_flow_error *error);
5095 
5118 __rte_experimental
5119 int
5120 rte_flow_action_handle_destroy(uint16_t port_id,
5121  struct rte_flow_action_handle *handle,
5122  struct rte_flow_error *error);
5123 
5157 __rte_experimental
5158 int
5159 rte_flow_action_handle_update(uint16_t port_id,
5160  struct rte_flow_action_handle *handle,
5161  const void *update,
5162  struct rte_flow_error *error);
5163 
5189 __rte_experimental
5190 int
5191 rte_flow_action_handle_query(uint16_t port_id,
5192  const struct rte_flow_action_handle *handle,
5193  void *data, struct rte_flow_error *error);
5194 
5195 /* Tunnel has a type and the key information. */
5196 struct rte_flow_tunnel {
5201  enum rte_flow_item_type type;
5202  uint64_t tun_id;
5204  union {
5205  struct {
5206  rte_be32_t src_addr;
5207  rte_be32_t dst_addr;
5208  } ipv4;
5209  struct {
5210  struct rte_ipv6_addr src_addr;
5211  struct rte_ipv6_addr dst_addr;
5212  } ipv6;
5213  };
5214  rte_be16_t tp_src;
5215  rte_be16_t tp_dst;
5216  uint16_t tun_flags;
5218  bool is_ipv6;
5224  uint8_t tos;
5225  uint8_t ttl;
5226  uint32_t label;
5227 };
5228 
5232 #define RTE_FLOW_RESTORE_INFO_TUNNEL RTE_BIT64(0)
5233 
5237 #define RTE_FLOW_RESTORE_INFO_ENCAPSULATED RTE_BIT64(1)
5238 
5242 #define RTE_FLOW_RESTORE_INFO_GROUP_ID RTE_BIT64(2)
5243 
5254  uint64_t flags;
5255  uint32_t group_id;
5256  struct rte_flow_tunnel tunnel;
5257 };
5258 
5282 __rte_experimental
5283 int
5284 rte_flow_tunnel_decap_set(uint16_t port_id,
5285  struct rte_flow_tunnel *tunnel,
5286  struct rte_flow_action **actions,
5287  uint32_t *num_of_actions,
5288  struct rte_flow_error *error);
5289 
5313 __rte_experimental
5314 int
5315 rte_flow_tunnel_match(uint16_t port_id,
5316  struct rte_flow_tunnel *tunnel,
5317  struct rte_flow_item **items,
5318  uint32_t *num_of_items,
5319  struct rte_flow_error *error);
5320 
5332 __rte_experimental
5333 uint64_t
5335 
5357 __rte_experimental
5358 int
5359 rte_flow_get_restore_info(uint16_t port_id,
5360  struct rte_mbuf *m,
5361  struct rte_flow_restore_info *info,
5362  struct rte_flow_error *error);
5363 
5380 __rte_experimental
5381 int
5382 rte_flow_tunnel_action_decap_release(uint16_t port_id,
5383  struct rte_flow_action *actions,
5384  uint32_t num_of_actions,
5385  struct rte_flow_error *error);
5386 
5403 __rte_experimental
5404 int
5405 rte_flow_tunnel_item_release(uint16_t port_id,
5406  struct rte_flow_item *items,
5407  uint32_t num_of_items,
5408  struct rte_flow_error *error);
5409 
5435 int
5436 rte_flow_pick_transfer_proxy(uint16_t port_id, uint16_t *proxy_port_id,
5437  struct rte_flow_error *error);
5438 
5457 __rte_experimental
5458 struct rte_flow_item_flex_handle *
5459 rte_flow_flex_item_create(uint16_t port_id,
5460  const struct rte_flow_item_flex_conf *conf,
5461  struct rte_flow_error *error);
5462 
5477 __rte_experimental
5478 int
5479 rte_flow_flex_item_release(uint16_t port_id,
5480  const struct rte_flow_item_flex_handle *handle,
5481  struct rte_flow_error *error);
5482 
5487 #define RTE_FLOW_PORT_FLAG_STRICT_QUEUE RTE_BIT32(0)
5488 
5494 #define RTE_FLOW_PORT_FLAG_SHARE_INDIRECT RTE_BIT32(1)
5495 
5507  uint32_t max_nb_queues;
5522  uint32_t max_nb_meters;
5532  uint32_t max_nb_quotas;
5537 };
5538 
5550  uint32_t max_size;
5551 };
5552 
5574 __rte_experimental
5575 int
5576 rte_flow_info_get(uint16_t port_id,
5577  struct rte_flow_port_info *port_info,
5578  struct rte_flow_queue_info *queue_info,
5579  struct rte_flow_error *error);
5580 
5593  uint32_t nb_counters;
5603  uint32_t nb_meters;
5608  uint32_t nb_conn_tracks;
5612  uint16_t host_port_id;
5617  uint32_t nb_quotas;
5621  uint32_t flags;
5622 };
5623 
5635  uint32_t size;
5636 };
5637 
5669 __rte_experimental
5670 int
5671 rte_flow_configure(uint16_t port_id,
5672  const struct rte_flow_port_attr *port_attr,
5673  uint16_t nb_queue,
5674  const struct rte_flow_queue_attr *queue_attr[],
5675  struct rte_flow_error *error);
5676 
5681 struct rte_flow_pattern_template;
5682 
5689 __extension__
5698  uint32_t relaxed_matching:1;
5704  uint32_t ingress:1;
5706  uint32_t egress:1;
5708  uint32_t transfer:1;
5709 };
5710 
5738 __rte_experimental
5739 struct rte_flow_pattern_template *
5740 rte_flow_pattern_template_create(uint16_t port_id,
5741  const struct rte_flow_pattern_template_attr *template_attr,
5742  const struct rte_flow_item pattern[],
5743  struct rte_flow_error *error);
5744 
5765 __rte_experimental
5766 int
5767 rte_flow_pattern_template_destroy(uint16_t port_id,
5768  struct rte_flow_pattern_template *pattern_template,
5769  struct rte_flow_error *error);
5770 
5775 struct rte_flow_actions_template;
5776 
5783 __extension__
5790  uint32_t ingress:1;
5792  uint32_t egress:1;
5794  uint32_t transfer:1;
5795 };
5796 
5832 __rte_experimental
5833 struct rte_flow_actions_template *
5834 rte_flow_actions_template_create(uint16_t port_id,
5835  const struct rte_flow_actions_template_attr *template_attr,
5836  const struct rte_flow_action actions[],
5837  const struct rte_flow_action masks[],
5838  struct rte_flow_error *error);
5839 
5860 __rte_experimental
5861 int
5862 rte_flow_actions_template_destroy(uint16_t port_id,
5863  struct rte_flow_actions_template *actions_template,
5864  struct rte_flow_error *error);
5865 
5870 struct rte_flow_template_table;
5871 
5885 #define RTE_FLOW_TABLE_SPECIALIZE_TRANSFER_WIRE_ORIG RTE_BIT32(0)
5886 
5893 #define RTE_FLOW_TABLE_SPECIALIZE_TRANSFER_VPORT_ORIG RTE_BIT32(1)
5894 
5897 #define RTE_FLOW_TABLE_SPECIALIZE_RESIZABLE RTE_BIT32(2)
5898 
5919 };
5920 
5944 };
5945 
5960  uint32_t nb_flows;
5969  uint32_t specialize;
5978 };
5979 
5994 __rte_experimental
5995 bool
5997  const struct rte_flow_template_table_attr *tbl_attr);
5998 
6031 __rte_experimental
6032 struct rte_flow_template_table *
6033 rte_flow_template_table_create(uint16_t port_id,
6034  const struct rte_flow_template_table_attr *table_attr,
6035  struct rte_flow_pattern_template *pattern_templates[],
6036  uint8_t nb_pattern_templates,
6037  struct rte_flow_actions_template *actions_templates[],
6038  uint8_t nb_actions_templates,
6039  struct rte_flow_error *error);
6040 
6061 __rte_experimental
6062 int
6063 rte_flow_template_table_destroy(uint16_t port_id,
6064  struct rte_flow_template_table *template_table,
6065  struct rte_flow_error *error);
6066 
6088 __rte_experimental
6089 int
6090 rte_flow_group_set_miss_actions(uint16_t port_id,
6091  uint32_t group_id,
6092  const struct rte_flow_group_attr *attr,
6093  const struct rte_flow_action actions[],
6094  struct rte_flow_error *error);
6095 
6102 __extension__
6108  uint32_t postpone:1;
6109 };
6110 
6147 __rte_experimental
6148 struct rte_flow *
6149 rte_flow_async_create(uint16_t port_id,
6150  uint32_t queue_id,
6151  const struct rte_flow_op_attr *op_attr,
6152  struct rte_flow_template_table *template_table,
6153  const struct rte_flow_item pattern[],
6154  uint8_t pattern_template_index,
6155  const struct rte_flow_action actions[],
6156  uint8_t actions_template_index,
6157  void *user_data,
6158  struct rte_flow_error *error);
6159 
6192 __rte_experimental
6193 struct rte_flow *
6194 rte_flow_async_create_by_index(uint16_t port_id,
6195  uint32_t queue_id,
6196  const struct rte_flow_op_attr *op_attr,
6197  struct rte_flow_template_table *template_table,
6198  uint32_t rule_index,
6199  const struct rte_flow_action actions[],
6200  uint8_t actions_template_index,
6201  void *user_data,
6202  struct rte_flow_error *error);
6203 
6244 __rte_experimental
6245 struct rte_flow *
6247  uint32_t queue_id,
6248  const struct rte_flow_op_attr *op_attr,
6249  struct rte_flow_template_table *template_table,
6250  uint32_t rule_index,
6251  const struct rte_flow_item pattern[],
6252  uint8_t pattern_template_index,
6253  const struct rte_flow_action actions[],
6254  uint8_t actions_template_index,
6255  void *user_data,
6256  struct rte_flow_error *error);
6257 
6287 __rte_experimental
6288 int
6289 rte_flow_async_destroy(uint16_t port_id,
6290  uint32_t queue_id,
6291  const struct rte_flow_op_attr *op_attr,
6292  struct rte_flow *flow,
6293  void *user_data,
6294  struct rte_flow_error *error);
6295 
6324 __rte_experimental
6325 int
6326 rte_flow_async_actions_update(uint16_t port_id,
6327  uint32_t queue_id,
6328  const struct rte_flow_op_attr *op_attr,
6329  struct rte_flow *flow,
6330  const struct rte_flow_action actions[],
6331  uint8_t actions_template_index,
6332  void *user_data,
6333  struct rte_flow_error *error);
6334 
6355 __rte_experimental
6356 int
6357 rte_flow_push(uint16_t port_id,
6358  uint32_t queue_id,
6359  struct rte_flow_error *error);
6360 
6376 };
6377 
6384 __extension__
6393  void *user_data;
6394 };
6395 
6421 __rte_experimental
6422 int
6423 rte_flow_pull(uint16_t port_id,
6424  uint32_t queue_id,
6425  struct rte_flow_op_result res[],
6426  uint16_t n_res,
6427  struct rte_flow_error *error);
6428 
6455 __rte_experimental
6456 struct rte_flow_action_handle *
6457 rte_flow_async_action_handle_create(uint16_t port_id,
6458  uint32_t queue_id,
6459  const struct rte_flow_op_attr *op_attr,
6460  const struct rte_flow_indir_action_conf *indir_action_conf,
6461  const struct rte_flow_action *action,
6462  void *user_data,
6463  struct rte_flow_error *error);
6464 
6490 __rte_experimental
6491 int
6492 rte_flow_async_action_handle_destroy(uint16_t port_id,
6493  uint32_t queue_id,
6494  const struct rte_flow_op_attr *op_attr,
6495  struct rte_flow_action_handle *action_handle,
6496  void *user_data,
6497  struct rte_flow_error *error);
6498 
6529 __rte_experimental
6530 int
6531 rte_flow_async_action_handle_update(uint16_t port_id,
6532  uint32_t queue_id,
6533  const struct rte_flow_op_attr *op_attr,
6534  struct rte_flow_action_handle *action_handle,
6535  const void *update,
6536  void *user_data,
6537  struct rte_flow_error *error);
6538 
6573 __rte_experimental
6574 int
6575 rte_flow_async_action_handle_query(uint16_t port_id,
6576  uint32_t queue_id,
6577  const struct rte_flow_op_attr *op_attr,
6578  const struct rte_flow_action_handle *action_handle,
6579  void *data,
6580  void *user_data,
6581  struct rte_flow_error *error);
6582 
6595 };
6596 
6630 __rte_experimental
6631 int
6632 rte_flow_action_handle_query_update(uint16_t port_id,
6633  struct rte_flow_action_handle *handle,
6634  const void *update, void *query,
6635  enum rte_flow_query_update_mode mode,
6636  struct rte_flow_error *error);
6637 
6673 __rte_experimental
6674 int
6675 rte_flow_async_action_handle_query_update(uint16_t port_id, uint32_t queue_id,
6676  const struct rte_flow_op_attr *attr,
6677  struct rte_flow_action_handle *handle,
6678  const void *update, void *query,
6679  enum rte_flow_query_update_mode mode,
6680  void *user_data,
6681  struct rte_flow_error *error);
6682 
6683 struct rte_flow_action_list_handle;
6684 
6695  struct rte_flow_action_list_handle *handle;
6704  const void **conf;
6705 };
6706 
6734 __rte_experimental
6735 struct rte_flow_action_list_handle *
6736 rte_flow_action_list_handle_create(uint16_t port_id,
6737  const
6738  struct rte_flow_indir_action_conf *conf,
6739  const struct rte_flow_action *actions,
6740  struct rte_flow_error *error);
6741 
6776 __rte_experimental
6777 struct rte_flow_action_list_handle *
6778 rte_flow_async_action_list_handle_create(uint16_t port_id, uint32_t queue_id,
6779  const struct rte_flow_op_attr *attr,
6780  const struct rte_flow_indir_action_conf *conf,
6781  const struct rte_flow_action *actions,
6782  void *user_data,
6783  struct rte_flow_error *error);
6784 
6806 __rte_experimental
6807 int
6808 rte_flow_action_list_handle_destroy(uint16_t port_id,
6809  struct rte_flow_action_list_handle *handle,
6810  struct rte_flow_error *error);
6811 
6842 __rte_experimental
6843 int
6845  (uint16_t port_id, uint32_t queue_id,
6846  const struct rte_flow_op_attr *op_attr,
6847  struct rte_flow_action_list_handle *handle,
6848  void *user_data, struct rte_flow_error *error);
6849 
6886 __rte_experimental
6887 int
6889  const struct rte_flow_action_list_handle *handle,
6890  const void **update, void **query,
6891  enum rte_flow_query_update_mode mode,
6892  struct rte_flow_error *error);
6893 
6937 __rte_experimental
6938 int
6939 rte_flow_async_action_list_handle_query_update(uint16_t port_id, uint32_t queue_id,
6940  const struct rte_flow_op_attr *attr,
6941  const struct rte_flow_action_list_handle *handle,
6942  const void **update, void **query,
6943  enum rte_flow_query_update_mode mode,
6944  void *user_data,
6945  struct rte_flow_error *error);
6946 
6973 __rte_experimental
6974 int
6975 rte_flow_calc_table_hash(uint16_t port_id, const struct rte_flow_template_table *table,
6976  const struct rte_flow_item pattern[], uint8_t pattern_template_index,
6977  uint32_t *hash, struct rte_flow_error *error);
6978 
6994 };
6995 
7026 __rte_experimental
7027 int
7028 rte_flow_calc_encap_hash(uint16_t port_id, const struct rte_flow_item pattern[],
7029  enum rte_flow_encap_hash_field dest_field, uint8_t hash_len,
7030  uint8_t *hash, struct rte_flow_error *error);
7031 
7056 __rte_experimental
7057 int
7058 rte_flow_template_table_resize(uint16_t port_id,
7059  struct rte_flow_template_table *table,
7060  uint32_t nb_rules,
7061  struct rte_flow_error *error);
7092 __rte_experimental
7093 int
7094 rte_flow_async_update_resized(uint16_t port_id, uint32_t queue,
7095  const struct rte_flow_op_attr *attr,
7096  struct rte_flow *rule, void *user_data,
7097  struct rte_flow_error *error);
7098 
7122 __rte_experimental
7123 int
7125  struct rte_flow_template_table *table,
7126  struct rte_flow_error *error);
7127 
7128 #ifdef __cplusplus
7129 }
7130 #endif
7131 
7132 #endif /* RTE_FLOW_H_ */
uint32_t reserved
Definition: rte_flow.h:128
static const struct rte_flow_item_icmp6_nd_opt_sla_eth rte_flow_item_icmp6_nd_opt_sla_eth_mask
Definition: rte_flow.h:1581
rte_be32_t u32
Definition: rte_ecpri.h:67
uint32_t nb_quotas
Definition: rte_flow.h:5617
uint8_t addr
Definition: rte_ppp.h:21
rte_flow_field_id
Definition: rte_flow.h:2387
rte_be16_t c_rsvd0_ver
Definition: rte_flow.h:1218
rte_be16_t ver_opt_len_o_c_rsvd0
Definition: rte_flow.h:1339
__rte_experimental int rte_flow_action_handle_update(uint16_t port_id, struct rte_flow_action_handle *handle, const void *update, struct rte_flow_error *error)
__rte_experimental int rte_flow_async_action_handle_query(uint16_t port_id, uint32_t queue_id, const struct rte_flow_op_attr *op_attr, const struct rte_flow_action_handle *action_handle, void *data, void *user_data, struct rte_flow_error *error)
uint32_t reserved
Definition: rte_flow.h:1001
static const struct rte_flow_item_quota rte_flow_item_quota_mask
Definition: rte_flow.h:755
int rte_flow_validate(uint16_t port_id, const struct rte_flow_attr *attr, const struct rte_flow_item pattern[], const struct rte_flow_action actions[], struct rte_flow_error *error)
uint32_t max_nb_aging_objects
Definition: rte_flow.h:5517
struct rte_flow_action * actions
Definition: rte_flow.h:4402
static const struct rte_flow_item_icmp6_nd_na rte_flow_item_icmp6_nd_na_mask
Definition: rte_flow.h:1532
static const struct rte_flow_item_ipv6 rte_flow_item_ipv6_mask
Definition: rte_flow.h:1006
rte_be16_t epcp_edei_in_ecid_b
Definition: rte_flow.h:1148
__rte_experimental int rte_flow_action_handle_query(uint16_t port_id, const struct rte_flow_action_handle *handle, void *data, struct rte_flow_error *error)
__rte_experimental struct rte_flow * rte_flow_async_create(uint16_t port_id, uint32_t queue_id, const struct rte_flow_op_attr *op_attr, struct rte_flow_template_table *template_table, const struct rte_flow_item pattern[], uint8_t pattern_template_index, const struct rte_flow_action actions[], uint8_t actions_template_index, void *user_data, struct rte_flow_error *error)
struct rte_flow_action_list_handle * handle
Definition: rte_flow.h:6695
rte_be16_t protocol
Definition: rte_flow.h:1340
static const struct rte_flow_item_pfcp rte_flow_item_pfcp_mask
Definition: rte_flow.h:1849
__rte_experimental struct rte_flow_action_list_handle * rte_flow_async_action_list_handle_create(uint16_t port_id, uint32_t queue_id, const struct rte_flow_op_attr *attr, const struct rte_flow_indir_action_conf *conf, const struct rte_flow_action *actions, void *user_data, struct rte_flow_error *error)
uint32_t has_auth_ext
Definition: rte_flow.h:989
uint32_t nb_counters
Definition: rte_flow.h:5593
struct rte_ib_bth hdr
Definition: rte_flow.h:2062
uint32_t num
Definition: rte_flow.h:793
__rte_experimental bool rte_flow_template_table_resizable(__rte_unused uint16_t port_id, const struct rte_flow_template_table_attr *tbl_attr)
__rte_experimental int rte_flow_async_destroy(uint16_t port_id, uint32_t queue_id, const struct rte_flow_op_attr *op_attr, struct rte_flow *flow, void *user_data, struct rte_flow_error *error)
struct rte_flow_attr * attr
Definition: rte_flow.h:4394
uint32_t has_mobil_ext
Definition: rte_flow.h:995
uint32_t sec_since_last_hit
Definition: rte_flow.h:3403
uint32_t rte_be32_t
__rte_experimental int rte_flow_action_handle_destroy(uint16_t port_id, struct rte_flow_action_handle *handle, struct rte_flow_error *error)
rte_flow_update_quota_op
Definition: rte_flow.h:3315
rte_flow_encap_hash_field
Definition: rte_flow.h:6989
__rte_experimental int rte_flow_async_action_list_handle_destroy(uint16_t port_id, uint32_t queue_id, const struct rte_flow_op_attr *op_attr, struct rte_flow_action_list_handle *handle, void *user_data, struct rte_flow_error *error)
rte_flow_item_flex_tunnel_mode
Definition: rte_flow.h:2191
uint32_t original
Definition: rte_flow.h:3536
int rte_flow_query(uint16_t port_id, struct rte_flow *flow, const struct rte_flow_action *action, void *data, struct rte_flow_error *error)
struct rte_flow_item_flex_link * input_link
Definition: rte_flow.h:2292
__rte_experimental int rte_flow_async_update_resized(uint16_t port_id, uint32_t queue, const struct rte_flow_op_attr *attr, struct rte_flow *rule, void *user_data, struct rte_flow_error *error)
uint32_t group
Definition: rte_flow.h:100
__rte_experimental int rte_flow_async_action_handle_destroy(uint16_t port_id, uint32_t queue_id, const struct rte_flow_op_attr *op_attr, struct rte_flow_action_handle *action_handle, void *user_data, struct rte_flow_error *error)
uint32_t nb_aging_objects
Definition: rte_flow.h:5598
struct rte_flow_item * definition
Definition: rte_flow.h:3705
uint32_t nb_meters
Definition: rte_flow.h:5603
static const struct rte_flow_item_gre rte_flow_item_gre_mask
Definition: rte_flow.h:1224
struct rte_flow_attr attr
Definition: rte_flow.h:4877
struct rte_flow_meter_profile * profile
Definition: rte_flow.h:4160
rte_be16_t msg_len
Definition: rte_flow.h:1297
__rte_experimental int rte_flow_template_table_destroy(uint16_t port_id, struct rte_flow_template_table *template_table, struct rte_flow_error *error)
struct rte_ether_addr dst_addr
Definition: rte_ether.h:301
struct rte_flow_action_meter_mark meter_mark
Definition: rte_flow.h:4176
static const struct rte_flow_item_gtp rte_flow_item_gtp_mask
Definition: rte_flow.h:1306
uint32_t postpone
Definition: rte_flow.h:6108
static const struct rte_flow_item_icmp rte_flow_item_icmp_mask
Definition: rte_flow.h:1037
rte_be16_t flags_version
Definition: rte_l2tpv2.h:96
#define RTE_ETHER_ADDR_LEN
Definition: rte_ether.h:27
struct rte_ipv6_addr target_addr
Definition: rte_flow.h:1526
static const struct rte_flow_item_geneve rte_flow_item_geneve_mask
Definition: rte_flow.h:1347
const struct rte_flow_attr * attr_ro
Definition: rte_flow.h:4393
static const struct rte_flow_item_sctp rte_flow_item_sctp_mask
Definition: rte_flow.h:1094
int rte_flow_isolate(uint16_t port_id, int set, struct rte_flow_error *error)
static const struct rte_flow_item_any rte_flow_item_any_mask
Definition: rte_flow.h:798
__rte_experimental int rte_flow_action_handle_query_update(uint16_t port_id, struct rte_flow_action_handle *handle, const void *update, void *query, enum rte_flow_query_update_mode mode, struct rte_flow_error *error)
static const struct rte_flow_item_meta rte_flow_item_meta_mask
Definition: rte_flow.h:1628
static const struct rte_flow_item_esp rte_flow_item_esp_mask
Definition: rte_flow.h:1322
rte_flow_conntrack_state
Definition: rte_flow.h:3953
#define __rte_unused
Definition: rte_common.h:248
__rte_experimental int rte_flow_get_restore_info(uint16_t port_id, struct rte_mbuf *m, struct rte_flow_restore_info *info, struct rte_flow_error *error)
struct rte_icmp_hdr hdr
Definition: rte_flow.h:1032
__rte_deprecated size_t rte_flow_copy(struct rte_flow_desc *fd, size_t len, const struct rte_flow_attr *attr, const struct rte_flow_item *items, const struct rte_flow_action *actions)
uint8_t v_pt_rsv_flags
Definition: rte_flow.h:1295
struct rte_ether_addr tla
Definition: rte_flow.h:1600
struct rte_flow_field_data src
Definition: rte_flow.h:4142
enum rte_flow_op_status status
Definition: rte_flow.h:6389
rte_flow_item_flex_field_mode
Definition: rte_flow.h:2158
rte_be16_t protocol
Definition: rte_flow.h:1176
uint32_t reserved
Definition: rte_flow.h:849
rte_be32_t spi
Definition: rte_esp.h:20
static const struct rte_flow_item_meter_color rte_flow_item_meter_color_mask
Definition: rte_flow.h:2316
static const struct rte_flow_item_conntrack rte_flow_item_conntrack_mask
Definition: rte_flow.h:1984
static const struct rte_flow_item_geneve_opt rte_flow_item_geneve_opt_mask
Definition: rte_flow.h:1893
static const struct rte_flow_item_icmp6 rte_flow_item_icmp6_mask
Definition: rte_flow.h:1475
rte_be16_t src_port
Definition: rte_sctp.h:25
struct rte_flow_tcp_dir_param original_dir
Definition: rte_flow.h:4063
struct rte_flow_action * actions
Definition: rte_flow.h:4879
uint32_t nb_conn_tracks
Definition: rte_flow.h:5608
uint8_t data[]
Definition: rte_flow.h:4880
struct rte_ether_addr tha
Definition: rte_flow.h:1408
uint32_t max_nb_conn_tracks
Definition: rte_flow.h:5527
enum rte_color color
Definition: rte_flow.h:2311
struct rte_ipv4_hdr hdr
Definition: rte_flow.h:960
rte_be32_t teid
Definition: rte_gtp.h:50
static const struct rte_flow_item_mark rte_flow_item_mark_mask
Definition: rte_flow.h:1751
uint32_t reserved
Definition: rte_flow.h:3399
struct rte_flow_item_flex_field * sample_data
Definition: rte_flow.h:2282
__rte_experimental int rte_flow_template_table_resize(uint16_t port_id, struct rte_flow_template_table *table, uint32_t nb_rules, struct rte_flow_error *error)
__rte_experimental struct rte_flow * rte_flow_async_create_by_index_with_pattern(uint16_t port_id, uint32_t queue_id, const struct rte_flow_op_attr *op_attr, struct rte_flow_template_table *template_table, uint32_t rule_index, const struct rte_flow_item pattern[], uint8_t pattern_template_index, const struct rte_flow_action actions[], uint8_t actions_template_index, void *user_data, struct rte_flow_error *error)
static const struct rte_flow_item_ib_bth rte_flow_item_ib_bth_mask
Definition: rte_flow.h:2067
static const struct rte_flow_item_icmp6_nd_opt rte_flow_item_icmp6_nd_opt_mask
Definition: rte_flow.h:1556
enum rte_flow_item_flex_tunnel_mode tunnel
Definition: rte_flow.h:2265
struct rte_gtp_hdr hdr
Definition: rte_flow.h:1300
__rte_experimental int rte_flow_actions_update(uint16_t port_id, struct rte_flow *flow, const struct rte_flow_action actions[], struct rte_flow_error *error)
static const struct rte_flow_item_vxlan rte_flow_item_vxlan_mask
Definition: rte_flow.h:1130
#define RTE_BIT32(nr)
Definition: rte_bitops.h:44
static const struct rte_flow_item_port_id rte_flow_item_port_id_mask
Definition: rte_flow.h:823
static const struct rte_flow_item_higig2_hdr rte_flow_item_higig2_hdr_mask
Definition: rte_flow.h:771
static const struct rte_flow_item_nvgre rte_flow_item_nvgre_mask
Definition: rte_flow.h:1183
uint64_t rte_be64_t
uint8_t vni[3]
Definition: rte_vxlan.h:91
struct rte_flow_item_flex_field next_protocol
Definition: rte_flow.h:2276
const void * mask
Definition: rte_flow.h:2131
struct rte_flow_item * pattern
Definition: rte_flow.h:4398
static const struct rte_flow_item_aggr_affinity rte_flow_item_aggr_affinity_mask
Definition: rte_flow.h:2342
enum rte_eth_hash_function func
Definition: rte_flow.h:3485
__rte_experimental struct rte_flow * rte_flow_async_create_by_index(uint16_t port_id, uint32_t queue_id, const struct rte_flow_op_attr *op_attr, struct rte_flow_template_table *template_table, uint32_t rule_index, const struct rte_flow_action actions[], uint8_t actions_template_index, void *user_data, struct rte_flow_error *error)
rte_be16_t type
Definition: rte_flow.h:895
enum rte_flow_error_type type
Definition: rte_flow.h:4378
__rte_experimental int rte_flow_group_set_miss_actions(uint16_t port_id, uint32_t group_id, const struct rte_flow_group_attr *attr, const struct rte_flow_action actions[], struct rte_flow_error *error)
const void * cause
Definition: rte_flow.h:4379
__rte_experimental int rte_flow_async_action_handle_query_update(uint16_t port_id, uint32_t queue_id, const struct rte_flow_op_attr *attr, struct rte_flow_action_handle *handle, const void *update, void *query, enum rte_flow_query_update_mode mode, void *user_data, struct rte_flow_error *error)
__rte_experimental int rte_flow_async_action_handle_update(uint16_t port_id, uint32_t queue_id, const struct rte_flow_op_attr *op_attr, struct rte_flow_action_handle *action_handle, const void *update, void *user_data, struct rte_flow_error *error)
static const struct rte_flow_item_l2tpv2 rte_flow_item_l2tpv2_mask
Definition: rte_flow.h:2019
struct rte_l2tpv2_common_hdr common
Definition: rte_l2tpv2.h:217
static const struct rte_flow_item_udp rte_flow_item_udp_mask
Definition: rte_flow.h:1056
struct rte_flow_item_flex_field next_header
Definition: rte_flow.h:2271
__rte_experimental int rte_flow_get_q_aged_flows(uint16_t port_id, uint32_t queue_id, void **contexts, uint32_t nb_contexts, struct rte_flow_error *error)
struct rte_esp_hdr hdr
Definition: rte_flow.h:1317
rte_flow_error_type
Definition: rte_flow.h:4345
uint32_t has_esp_ext
Definition: rte_flow.h:991
struct rte_ipv6_addr target_addr
Definition: rte_flow.h:1501
rte_flow_conv_op
Definition: rte_flow.h:4411
rte_be16_t src_port
Definition: rte_udp.h:25
__rte_experimental uint64_t rte_flow_restore_info_dynflag(void)
uint8_t value[16]
Definition: rte_flow.h:2527
uint32_t has_shim6_ext
Definition: rte_flow.h:999
__rte_experimental int rte_flow_dev_dump(uint16_t port_id, struct rte_flow *flow, FILE *file, struct rte_flow_error *error)
enum rte_flow_update_quota_op op
Definition: rte_flow.h:3329
uint32_t max_nb_quotas
Definition: rte_flow.h:5532
uint32_t has_route_ext
Definition: rte_flow.h:985
__rte_experimental int rte_flow_actions_template_destroy(uint16_t port_id, struct rte_flow_actions_template *actions_template, struct rte_flow_error *error)
const uint8_t * pattern
Definition: rte_flow.h:853
uint32_t search
Definition: rte_flow.h:848
rte_be16_t rsvd_grp_ecid_b
Definition: rte_flow.h:1150
rte_flow_quota_state
Definition: rte_flow.h:737
enum rte_flow_item_flex_field_mode field_mode
Definition: rte_flow.h:2227
static const struct rte_flow_item_raw rte_flow_item_raw_mask
Definition: rte_flow.h:858
uint16_t limit
Definition: rte_flow.h:851
rte_flow_conntrack_tcp_last_index
Definition: rte_flow.h:3971
__rte_experimental int rte_flow_calc_table_hash(uint16_t port_id, const struct rte_flow_template_table *table, const struct rte_flow_item pattern[], uint8_t pattern_template_index, uint32_t *hash, struct rte_flow_error *error)
__rte_experimental struct rte_flow_item_flex_handle * rte_flow_flex_item_create(uint16_t port_id, const struct rte_flow_item_flex_conf *conf, struct rte_flow_error *error)
rte_eth_hash_function
Definition: rte_ethdev.h:494
struct rte_gtp_psc_generic_hdr hdr
Definition: rte_flow.h:1639
uint32_t max_nb_queues
Definition: rte_flow.h:5507
int rte_flow_flush(uint16_t port_id, struct rte_flow_error *error)
static const struct rte_flow_item_mpls rte_flow_item_mpls_mask
Definition: rte_flow.h:1203
static const struct rte_flow_item_icmp6_nd_ns rte_flow_item_icmp6_nd_ns_mask
Definition: rte_flow.h:1507
__rte_experimental struct rte_flow_action_handle * rte_flow_action_handle_create(uint16_t port_id, const struct rte_flow_indir_action_conf *conf, const struct rte_flow_action *action, struct rte_flow_error *error)
int rte_flow_error_set(struct rte_flow_error *error, int code, enum rte_flow_error_type type, const void *cause, const char *message)
rte_flow_nat64_type
Definition: rte_flow.h:3607
const void * conf
Definition: rte_flow.h:4292
const char * message
Definition: rte_flow.h:4380
uint8_t opcode
Definition: rte_ib.h:26
static const struct rte_flow_item_random rte_flow_item_random_mask
Definition: rte_flow.h:2089
uint32_t close_initiated
Definition: rte_flow.h:3993
__rte_experimental struct rte_flow_action_list_handle * rte_flow_action_list_handle_create(uint16_t port_id, const struct rte_flow_indir_action_conf *conf, const struct rte_flow_action *actions, struct rte_flow_error *error)
uint16_t length
Definition: rte_flow.h:852
rte_flow_item_compare_op
Definition: rte_flow.h:2540
const void * last
Definition: rte_flow.h:2130
uint32_t packet_type
Definition: rte_flow.h:2373
static const struct rte_flow_item_icmp6_nd_opt_tla_eth rte_flow_item_icmp6_nd_opt_tla_eth_mask
Definition: rte_flow.h:1606
rte_be32_t teid
Definition: rte_flow.h:1298
int rte_flow_destroy(uint16_t port_id, struct rte_flow *flow, struct rte_flow_error *error)
uint32_t ingress
Definition: rte_flow.h:105
enum rte_flow_item_type type
Definition: rte_flow.h:2128
rte_be16_t tci
Definition: rte_flow.h:934
struct rte_arp_hdr hdr
Definition: rte_flow.h:1411
uint32_t max_nb_meters
Definition: rte_flow.h:5522
__rte_experimental struct rte_flow_action_handle * rte_flow_async_action_handle_create(uint16_t port_id, uint32_t queue_id, const struct rte_flow_op_attr *op_attr, const struct rte_flow_indir_action_conf *indir_action_conf, const struct rte_flow_action *action, void *user_data, struct rte_flow_error *error)
static const struct rte_flow_item_ipv4 rte_flow_item_ipv4_mask
Definition: rte_flow.h:965
size_t size
Definition: rte_flow.h:4876
rte_be16_t c_k_s_rsvd0_ver
Definition: rte_flow.h:1175
static const struct rte_flow_item_ppp rte_flow_item_ppp_mask
Definition: rte_flow.h:2047
const uint8_t * pattern
Definition: rte_flow.h:2153
static const struct rte_flow_item_gtp_psc rte_flow_item_gtp_psc_mask
Definition: rte_flow.h:1645
uint32_t supported_flags
Definition: rte_flow.h:5536
rte_flow_table_hash_func
Definition: rte_flow.h:5927
rte_be16_t length
Definition: rte_flow.h:1662
const struct rte_flow_action * actions_ro
Definition: rte_flow.h:4401
uint32_t has_vlan
Definition: rte_flow.h:899
#define RTE_IPV6_MASK_FULL
Definition: rte_ip6.h:229
uint32_t has_more_vlan
Definition: rte_flow.h:940
struct rte_flow_item * items
Definition: rte_flow.h:4878
enum rte_flow_modify_op operation
Definition: rte_flow.h:4140
__rte_experimental int rte_flow_get_aged_flows(uint16_t port_id, void **contexts, uint32_t nb_contexts, struct rte_flow_error *error)
uint32_t timeout_valid
Definition: rte_flow.h:3427
rte_flow_action_type
Definition: rte_flow.h:2590
struct rte_ether_addr sla
Definition: rte_flow.h:1575
rte_flow_query_update_mode
Definition: rte_flow.h:6592
__rte_experimental int rte_flow_template_table_resize_complete(uint16_t port_id, struct rte_flow_template_table *table, struct rte_flow_error *error)
rte_flow_quota_mode
Definition: rte_flow.h:3276
struct rte_flow_item_flex_link * output_link
Definition: rte_flow.h:2300
__rte_experimental struct rte_flow_template_table * rte_flow_template_table_create(uint16_t port_id, const struct rte_flow_template_table_attr *table_attr, struct rte_flow_pattern_template *pattern_templates[], uint8_t nb_pattern_templates, struct rte_flow_actions_template *actions_templates[], uint8_t nb_actions_templates, struct rte_flow_error *error)
rte_flow_modify_op
Definition: rte_flow.h:4123
uint32_t has_hop_ext
Definition: rte_flow.h:983
struct rte_flow * rte_flow_create(uint16_t port_id, const struct rte_flow_attr *attr, const struct rte_flow_item pattern[], const struct rte_flow_action actions[], struct rte_flow_error *error)
struct rte_ether_addr dst
Definition: rte_flow.h:893
rte_flow_table_insertion_type
Definition: rte_flow.h:5906
__rte_experimental int rte_flow_pattern_template_destroy(uint16_t port_id, struct rte_flow_pattern_template *pattern_template, struct rte_flow_error *error)
static const struct rte_flow_item_l2tpv3oip rte_flow_item_l2tpv3oip_mask
Definition: rte_flow.h:1721
rte_color
Definition: rte_meter.h:31
static const struct rte_flow_item_igmp rte_flow_item_igmp_mask
Definition: rte_flow.h:1804
const void * spec
Definition: rte_flow.h:2129
uint8_t label_tc_s[3]
Definition: rte_flow.h:1197
static const struct rte_flow_item_tx_queue rte_flow_item_tx_queue_mask
Definition: rte_flow.h:2361
__rte_experimental int rte_flow_action_list_handle_query_update(uint16_t port_id, const struct rte_flow_action_list_handle *handle, const void **update, void **query, enum rte_flow_query_update_mode mode, struct rte_flow_error *error)
uint8_t version_type
Definition: rte_flow.h:1659
enum rte_flow_field_id field
Definition: rte_flow.h:2450
__rte_experimental int rte_flow_tunnel_decap_set(uint16_t port_id, struct rte_flow_tunnel *tunnel, struct rte_flow_action **actions, uint32_t *num_of_actions, struct rte_flow_error *error)
const uint8_t * key
Definition: rte_flow.h:3515
static const struct rte_flow_item_arp_eth_ipv4 rte_flow_item_arp_eth_ipv4_mask
Definition: rte_flow.h:1418
uint32_t has_hip_ext
Definition: rte_flow.h:997
const struct rte_flow_action * actions
Definition: rte_flow.h:4336
__rte_experimental int rte_flow_flex_item_release(uint16_t port_id, const struct rte_flow_item_flex_handle *handle, struct rte_flow_error *error)
uint32_t sec_since_last_hit_valid
Definition: rte_flow.h:3402
enum rte_flow_table_insertion_type insertion_type
Definition: rte_flow.h:5973
rte_be16_t vlan_tci
Definition: rte_ether.h:317
struct rte_ether_addr sha
Definition: rte_flow.h:1406
static const struct rte_flow_item_eth rte_flow_item_eth_mask
Definition: rte_flow.h:905
rte_flow_op_status
Definition: rte_flow.h:6367
rte_be16_t src_port
Definition: rte_tcp.h:25
static const struct rte_flow_item_ethdev rte_flow_item_ethdev_mask
Definition: rte_flow.h:2000
__rte_experimental int rte_flow_info_get(uint16_t port_id, struct rte_flow_port_info *port_info, struct rte_flow_queue_info *queue_info, struct rte_flow_error *error)
uint16_t rte_be16_t
rte_be16_t class_id
Definition: rte_flow.h:2512
__rte_experimental int rte_flow_conv(enum rte_flow_conv_op op, void *dst, size_t size, const void *src, struct rte_flow_error *error)
uint32_t has_frag_ext
Definition: rte_flow.h:987
struct rte_flow_tcp_dir_param reply_dir
Definition: rte_flow.h:4065
uint32_t reserved
Definition: rte_flow.h:3537
__rte_experimental int rte_flow_dynf_metadata_register(void)
static const struct rte_flow_item_ah rte_flow_item_ah_mask
Definition: rte_flow.h:1827
static const struct rte_flow_item_tag rte_flow_item_tag_mask
Definition: rte_flow.h:1704
uint32_t priority
Definition: rte_flow.h:101
uint32_t has_dest_ext
Definition: rte_flow.h:993
struct rte_ether_addr src
Definition: rte_flow.h:894
static const struct rte_flow_item_ipv6_ext rte_flow_item_ipv6_ext_mask
Definition: rte_flow.h:1443
uint32_t max_nb_counters
Definition: rte_flow.h:5512
struct rte_ipv6_hdr hdr
Definition: rte_flow.h:981
static const struct rte_flow_item_ecpri rte_flow_item_ecpri_mask
Definition: rte_flow.h:1869
__rte_experimental struct rte_flow_actions_template * rte_flow_actions_template_create(uint16_t port_id, const struct rte_flow_actions_template_attr *template_attr, const struct rte_flow_action actions[], const struct rte_flow_action masks[], struct rte_flow_error *error)
rte_be16_t protocol
Definition: rte_flow.h:1219
uint32_t queue_num
Definition: rte_flow.h:3514
uint8_t tni[3]
Definition: rte_flow.h:1177
struct rte_tcp_hdr hdr
Definition: rte_flow.h:1070
enum rte_flow_conntrack_state state
Definition: rte_flow.h:4057
enum rte_flow_quota_mode mode
Definition: rte_flow.h:3291
static const struct rte_flow_item_pppoe_proto_id rte_flow_item_pppoe_proto_id_mask
Definition: rte_flow.h:1684
uint32_t transfer
Definition: rte_flow.h:127
struct rte_flow_item * definition
Definition: rte_flow.h:3738
static const struct rte_flow_item_vlan rte_flow_item_vlan_mask
Definition: rte_flow.h:946
uint8_t msg_type
Definition: rte_flow.h:1296
uint32_t reserved
Definition: rte_flow.h:941
uint32_t egress
Definition: rte_flow.h:109
static const struct rte_flow_item_e_tag rte_flow_item_e_tag_mask
Definition: rte_flow.h:1158
static __rte_experimental int rte_flow_dynf_metadata_avail(void)
Definition: rte_flow.h:4595
__rte_experimental int rte_flow_tunnel_item_release(uint16_t port_id, struct rte_flow_item *items, uint32_t num_of_items, struct rte_flow_error *error)
uint16_t host_port_id
Definition: rte_flow.h:5612
__rte_experimental struct rte_flow_pattern_template * rte_flow_pattern_template_create(uint16_t port_id, const struct rte_flow_pattern_template_attr *template_attr, const struct rte_flow_item pattern[], struct rte_flow_error *error)
static const struct rte_flow_item_tcp rte_flow_item_tcp_mask
Definition: rte_flow.h:1075
static const struct rte_flow_item_fuzzy rte_flow_item_fuzzy_mask
Definition: rte_flow.h:1272
rte_be16_t inner_type
Definition: rte_flow.h:935
const struct rte_flow_action_prog_argument * args
Definition: rte_flow.h:4239
struct rte_flow_field_data dst
Definition: rte_flow.h:4141
enum rte_flow_action_type type
Definition: rte_flow.h:4291
uint8_t vni[3]
Definition: rte_vxlan.h:126
uint8_t rsvd0[3]
Definition: rte_flow.h:1120
__rte_experimental int rte_flow_tunnel_action_decap_release(uint16_t port_id, struct rte_flow_action *actions, uint32_t num_of_actions, struct rte_flow_error *error)
__rte_experimental int rte_flow_action_list_handle_destroy(uint16_t port_id, struct rte_flow_action_list_handle *handle, struct rte_flow_error *error)
struct rte_udp_hdr hdr
Definition: rte_flow.h:1051
__rte_experimental int rte_flow_configure(uint16_t port_id, const struct rte_flow_port_attr *port_attr, uint16_t nb_queue, const struct rte_flow_queue_attr *queue_attr[], struct rte_flow_error *error)
enum rte_flow_table_hash_func hash_func
Definition: rte_flow.h:5977
const uint16_t * queue
Definition: rte_flow.h:3516
__rte_experimental int rte_flow_calc_encap_hash(uint16_t port_id, const struct rte_flow_item pattern[], enum rte_flow_encap_hash_field dest_field, uint8_t hash_len, uint8_t *hash, struct rte_flow_error *error)
struct rte_flow_action_conntrack new_ct
Definition: rte_flow.h:4089
const char * name
Definition: rte_flow.h:4235
rte_flow_item_type
Definition: rte_flow.h:153
__rte_experimental int rte_flow_pull(uint16_t port_id, uint32_t queue_id, struct rte_flow_op_result res[], uint16_t n_res, struct rte_flow_error *error)
uint32_t relative
Definition: rte_flow.h:847
struct rte_flow_tunnel tunnel
Definition: rte_flow.h:5256
uint8_t vni[3]
Definition: rte_flow.h:1121
int32_t offset
Definition: rte_flow.h:850
__rte_experimental int rte_flow_async_action_list_handle_query_update(uint16_t port_id, uint32_t queue_id, const struct rte_flow_op_attr *attr, const struct rte_flow_action_list_handle *handle, const void **update, void **query, enum rte_flow_query_update_mode mode, void *user_data, struct rte_flow_error *error)
struct rte_flow_attr flow_attr
Definition: rte_flow.h:5956
static const struct rte_flow_item_ptype rte_flow_item_ptype_mask
Definition: rte_flow.h:2378
rte_be16_t inner_type
Definition: rte_flow.h:1153
__rte_experimental int rte_flow_tunnel_match(uint16_t port_id, struct rte_flow_tunnel *tunnel, struct rte_flow_item **items, uint32_t *num_of_items, struct rte_flow_error *error)
struct rte_flow_item_flex_handle * handle
Definition: rte_flow.h:2151
const struct rte_flow_item * pattern_ro
Definition: rte_flow.h:4397
static const struct rte_flow_item_vxlan_gpe rte_flow_item_vxlan_gpe_mask
Definition: rte_flow.h:1384
rte_be16_t session_id
Definition: rte_flow.h:1661
static const struct rte_flow_item_nsh rte_flow_item_nsh_mask
Definition: rte_flow.h:1779
__rte_experimental int rte_flow_async_actions_update(uint16_t port_id, uint32_t queue_id, const struct rte_flow_op_attr *op_attr, struct rte_flow *flow, const struct rte_flow_action actions[], uint8_t actions_template_index, void *user_data, struct rte_flow_error *error)
__rte_experimental int rte_flow_push(uint16_t port_id, uint32_t queue_id, struct rte_flow_error *error)
int rte_flow_pick_transfer_proxy(uint16_t port_id, uint16_t *proxy_port_id, struct rte_flow_error *error)
struct rte_sctp_hdr hdr
Definition: rte_flow.h:1089
uint32_t reserved
Definition: rte_flow.h:900