1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2018 Mellanox Technologies, Ltd
11 #include <rte_common.h>
12 #include <rte_ether.h>
13 #include <rte_ethdev_driver.h>
15 #include <rte_flow_driver.h>
16 #include <rte_malloc.h>
17 #include <rte_cycles.h>
20 #include <rte_vxlan.h>
22 #include <rte_eal_paging.h>
25 #include <mlx5_glue.h>
26 #include <mlx5_devx_cmds.h>
28 #include <mlx5_malloc.h>
30 #include "mlx5_defs.h"
32 #include "mlx5_common_os.h"
33 #include "mlx5_flow.h"
34 #include "mlx5_flow_os.h"
35 #include "mlx5_rxtx.h"
36 #include "rte_pmd_mlx5.h"
38 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
40 #ifndef HAVE_IBV_FLOW_DEVX_COUNTERS
41 #define MLX5DV_FLOW_ACTION_COUNTERS_DEVX 0
44 #ifndef HAVE_MLX5DV_DR_ESWITCH
45 #ifndef MLX5DV_FLOW_TABLE_TYPE_FDB
46 #define MLX5DV_FLOW_TABLE_TYPE_FDB 0
50 #ifndef HAVE_MLX5DV_DR
51 #define MLX5DV_DR_ACTION_FLAGS_ROOT_LEVEL 1
54 /* VLAN header definitions */
55 #define MLX5DV_FLOW_VLAN_PCP_SHIFT 13
56 #define MLX5DV_FLOW_VLAN_PCP_MASK (0x7 << MLX5DV_FLOW_VLAN_PCP_SHIFT)
57 #define MLX5DV_FLOW_VLAN_VID_MASK 0x0fff
58 #define MLX5DV_FLOW_VLAN_PCP_MASK_BE RTE_BE16(MLX5DV_FLOW_VLAN_PCP_MASK)
59 #define MLX5DV_FLOW_VLAN_VID_MASK_BE RTE_BE16(MLX5DV_FLOW_VLAN_VID_MASK)
74 flow_dv_tbl_resource_release(struct mlx5_dev_ctx_shared *sh,
75 struct mlx5_flow_tbl_resource *tbl);
78 flow_dv_encap_decap_resource_release(struct rte_eth_dev *dev,
79 uint32_t encap_decap_idx);
82 flow_dv_port_id_action_resource_release(struct rte_eth_dev *dev,
85 flow_dv_shared_rss_action_release(struct rte_eth_dev *dev, uint32_t srss);
88 * Initialize flow attributes structure according to flow items' types.
90 * flow_dv_validate() avoids multiple L3/L4 layers cases other than tunnel
91 * mode. For tunnel mode, the items to be modified are the outermost ones.
94 * Pointer to item specification.
96 * Pointer to flow attributes structure.
98 * Pointer to the sub flow.
99 * @param[in] tunnel_decap
100 * Whether action is after tunnel decapsulation.
103 flow_dv_attr_init(const struct rte_flow_item *item, union flow_dv_attr *attr,
104 struct mlx5_flow *dev_flow, bool tunnel_decap)
106 uint64_t layers = dev_flow->handle->layers;
109 * If layers is already initialized, it means this dev_flow is the
110 * suffix flow, the layers flags is set by the prefix flow. Need to
111 * use the layer flags from prefix flow as the suffix flow may not
112 * have the user defined items as the flow is split.
115 if (layers & MLX5_FLOW_LAYER_OUTER_L3_IPV4)
117 else if (layers & MLX5_FLOW_LAYER_OUTER_L3_IPV6)
119 if (layers & MLX5_FLOW_LAYER_OUTER_L4_TCP)
121 else if (layers & MLX5_FLOW_LAYER_OUTER_L4_UDP)
126 for (; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
127 uint8_t next_protocol = 0xff;
128 switch (item->type) {
129 case RTE_FLOW_ITEM_TYPE_GRE:
130 case RTE_FLOW_ITEM_TYPE_NVGRE:
131 case RTE_FLOW_ITEM_TYPE_VXLAN:
132 case RTE_FLOW_ITEM_TYPE_VXLAN_GPE:
133 case RTE_FLOW_ITEM_TYPE_GENEVE:
134 case RTE_FLOW_ITEM_TYPE_MPLS:
138 case RTE_FLOW_ITEM_TYPE_IPV4:
141 if (item->mask != NULL &&
142 ((const struct rte_flow_item_ipv4 *)
143 item->mask)->hdr.next_proto_id)
145 ((const struct rte_flow_item_ipv4 *)
146 (item->spec))->hdr.next_proto_id &
147 ((const struct rte_flow_item_ipv4 *)
148 (item->mask))->hdr.next_proto_id;
149 if ((next_protocol == IPPROTO_IPIP ||
150 next_protocol == IPPROTO_IPV6) && tunnel_decap)
153 case RTE_FLOW_ITEM_TYPE_IPV6:
156 if (item->mask != NULL &&
157 ((const struct rte_flow_item_ipv6 *)
158 item->mask)->hdr.proto)
160 ((const struct rte_flow_item_ipv6 *)
161 (item->spec))->hdr.proto &
162 ((const struct rte_flow_item_ipv6 *)
163 (item->mask))->hdr.proto;
164 if ((next_protocol == IPPROTO_IPIP ||
165 next_protocol == IPPROTO_IPV6) && tunnel_decap)
168 case RTE_FLOW_ITEM_TYPE_UDP:
172 case RTE_FLOW_ITEM_TYPE_TCP:
184 * Convert rte_mtr_color to mlx5 color.
193 rte_col_2_mlx5_col(enum rte_color rcol)
196 case RTE_COLOR_GREEN:
197 return MLX5_FLOW_COLOR_GREEN;
198 case RTE_COLOR_YELLOW:
199 return MLX5_FLOW_COLOR_YELLOW;
201 return MLX5_FLOW_COLOR_RED;
205 return MLX5_FLOW_COLOR_UNDEFINED;
208 struct field_modify_info {
209 uint32_t size; /* Size of field in protocol header, in bytes. */
210 uint32_t offset; /* Offset of field in protocol header, in bytes. */
211 enum mlx5_modification_field id;
214 struct field_modify_info modify_eth[] = {
215 {4, 0, MLX5_MODI_OUT_DMAC_47_16},
216 {2, 4, MLX5_MODI_OUT_DMAC_15_0},
217 {4, 6, MLX5_MODI_OUT_SMAC_47_16},
218 {2, 10, MLX5_MODI_OUT_SMAC_15_0},
222 struct field_modify_info modify_vlan_out_first_vid[] = {
223 /* Size in bits !!! */
224 {12, 0, MLX5_MODI_OUT_FIRST_VID},
228 struct field_modify_info modify_ipv4[] = {
229 {1, 1, MLX5_MODI_OUT_IP_DSCP},
230 {1, 8, MLX5_MODI_OUT_IPV4_TTL},
231 {4, 12, MLX5_MODI_OUT_SIPV4},
232 {4, 16, MLX5_MODI_OUT_DIPV4},
236 struct field_modify_info modify_ipv6[] = {
237 {1, 0, MLX5_MODI_OUT_IP_DSCP},
238 {1, 7, MLX5_MODI_OUT_IPV6_HOPLIMIT},
239 {4, 8, MLX5_MODI_OUT_SIPV6_127_96},
240 {4, 12, MLX5_MODI_OUT_SIPV6_95_64},
241 {4, 16, MLX5_MODI_OUT_SIPV6_63_32},
242 {4, 20, MLX5_MODI_OUT_SIPV6_31_0},
243 {4, 24, MLX5_MODI_OUT_DIPV6_127_96},
244 {4, 28, MLX5_MODI_OUT_DIPV6_95_64},
245 {4, 32, MLX5_MODI_OUT_DIPV6_63_32},
246 {4, 36, MLX5_MODI_OUT_DIPV6_31_0},
250 struct field_modify_info modify_udp[] = {
251 {2, 0, MLX5_MODI_OUT_UDP_SPORT},
252 {2, 2, MLX5_MODI_OUT_UDP_DPORT},
256 struct field_modify_info modify_tcp[] = {
257 {2, 0, MLX5_MODI_OUT_TCP_SPORT},
258 {2, 2, MLX5_MODI_OUT_TCP_DPORT},
259 {4, 4, MLX5_MODI_OUT_TCP_SEQ_NUM},
260 {4, 8, MLX5_MODI_OUT_TCP_ACK_NUM},
265 mlx5_flow_tunnel_ip_check(const struct rte_flow_item *item __rte_unused,
266 uint8_t next_protocol, uint64_t *item_flags,
269 MLX5_ASSERT(item->type == RTE_FLOW_ITEM_TYPE_IPV4 ||
270 item->type == RTE_FLOW_ITEM_TYPE_IPV6);
271 if (next_protocol == IPPROTO_IPIP) {
272 *item_flags |= MLX5_FLOW_LAYER_IPIP;
275 if (next_protocol == IPPROTO_IPV6) {
276 *item_flags |= MLX5_FLOW_LAYER_IPV6_ENCAP;
281 /* Update VLAN's VID/PCP based on input rte_flow_action.
284 * Pointer to struct rte_flow_action.
286 * Pointer to struct rte_vlan_hdr.
289 mlx5_update_vlan_vid_pcp(const struct rte_flow_action *action,
290 struct rte_vlan_hdr *vlan)
293 if (action->type == RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP) {
295 ((const struct rte_flow_action_of_set_vlan_pcp *)
296 action->conf)->vlan_pcp;
297 vlan_tci = vlan_tci << MLX5DV_FLOW_VLAN_PCP_SHIFT;
298 vlan->vlan_tci &= ~MLX5DV_FLOW_VLAN_PCP_MASK;
299 vlan->vlan_tci |= vlan_tci;
300 } else if (action->type == RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID) {
301 vlan->vlan_tci &= ~MLX5DV_FLOW_VLAN_VID_MASK;
302 vlan->vlan_tci |= rte_be_to_cpu_16
303 (((const struct rte_flow_action_of_set_vlan_vid *)
304 action->conf)->vlan_vid);
309 * Fetch 1, 2, 3 or 4 byte field from the byte array
310 * and return as unsigned integer in host-endian format.
313 * Pointer to data array.
315 * Size of field to extract.
318 * converted field in host endian format.
320 static inline uint32_t
321 flow_dv_fetch_field(const uint8_t *data, uint32_t size)
330 ret = rte_be_to_cpu_16(*(const unaligned_uint16_t *)data);
333 ret = rte_be_to_cpu_16(*(const unaligned_uint16_t *)data);
334 ret = (ret << 8) | *(data + sizeof(uint16_t));
337 ret = rte_be_to_cpu_32(*(const unaligned_uint32_t *)data);
348 * Convert modify-header action to DV specification.
350 * Data length of each action is determined by provided field description
351 * and the item mask. Data bit offset and width of each action is determined
352 * by provided item mask.
355 * Pointer to item specification.
357 * Pointer to field modification information.
358 * For MLX5_MODIFICATION_TYPE_SET specifies destination field.
359 * For MLX5_MODIFICATION_TYPE_ADD specifies destination field.
360 * For MLX5_MODIFICATION_TYPE_COPY specifies source field.
362 * Destination field info for MLX5_MODIFICATION_TYPE_COPY in @type.
363 * Negative offset value sets the same offset as source offset.
364 * size field is ignored, value is taken from source field.
365 * @param[in,out] resource
366 * Pointer to the modify-header resource.
368 * Type of modification.
370 * Pointer to the error structure.
373 * 0 on success, a negative errno value otherwise and rte_errno is set.
376 flow_dv_convert_modify_action(struct rte_flow_item *item,
377 struct field_modify_info *field,
378 struct field_modify_info *dcopy,
379 struct mlx5_flow_dv_modify_hdr_resource *resource,
380 uint32_t type, struct rte_flow_error *error)
382 uint32_t i = resource->actions_num;
383 struct mlx5_modification_cmd *actions = resource->actions;
386 * The item and mask are provided in big-endian format.
387 * The fields should be presented as in big-endian format either.
388 * Mask must be always present, it defines the actual field width.
390 MLX5_ASSERT(item->mask);
391 MLX5_ASSERT(field->size);
398 if (i >= MLX5_MAX_MODIFY_NUM)
399 return rte_flow_error_set(error, EINVAL,
400 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
401 "too many items to modify");
402 /* Fetch variable byte size mask from the array. */
403 mask = flow_dv_fetch_field((const uint8_t *)item->mask +
404 field->offset, field->size);
409 /* Deduce actual data width in bits from mask value. */
410 off_b = rte_bsf32(mask);
411 size_b = sizeof(uint32_t) * CHAR_BIT -
412 off_b - __builtin_clz(mask);
414 size_b = size_b == sizeof(uint32_t) * CHAR_BIT ? 0 : size_b;
415 actions[i] = (struct mlx5_modification_cmd) {
421 /* Convert entire record to expected big-endian format. */
422 actions[i].data0 = rte_cpu_to_be_32(actions[i].data0);
423 if (type == MLX5_MODIFICATION_TYPE_COPY) {
425 actions[i].dst_field = dcopy->id;
426 actions[i].dst_offset =
427 (int)dcopy->offset < 0 ? off_b : dcopy->offset;
428 /* Convert entire record to big-endian format. */
429 actions[i].data1 = rte_cpu_to_be_32(actions[i].data1);
431 MLX5_ASSERT(item->spec);
432 data = flow_dv_fetch_field((const uint8_t *)item->spec +
433 field->offset, field->size);
434 /* Shift out the trailing masked bits from data. */
435 data = (data & mask) >> off_b;
436 actions[i].data1 = rte_cpu_to_be_32(data);
440 } while (field->size);
441 if (resource->actions_num == i)
442 return rte_flow_error_set(error, EINVAL,
443 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
444 "invalid modification flow item");
445 resource->actions_num = i;
450 * Convert modify-header set IPv4 address action to DV specification.
452 * @param[in,out] resource
453 * Pointer to the modify-header resource.
455 * Pointer to action specification.
457 * Pointer to the error structure.
460 * 0 on success, a negative errno value otherwise and rte_errno is set.
463 flow_dv_convert_action_modify_ipv4
464 (struct mlx5_flow_dv_modify_hdr_resource *resource,
465 const struct rte_flow_action *action,
466 struct rte_flow_error *error)
468 const struct rte_flow_action_set_ipv4 *conf =
469 (const struct rte_flow_action_set_ipv4 *)(action->conf);
470 struct rte_flow_item item = { .type = RTE_FLOW_ITEM_TYPE_IPV4 };
471 struct rte_flow_item_ipv4 ipv4;
472 struct rte_flow_item_ipv4 ipv4_mask;
474 memset(&ipv4, 0, sizeof(ipv4));
475 memset(&ipv4_mask, 0, sizeof(ipv4_mask));
476 if (action->type == RTE_FLOW_ACTION_TYPE_SET_IPV4_SRC) {
477 ipv4.hdr.src_addr = conf->ipv4_addr;
478 ipv4_mask.hdr.src_addr = rte_flow_item_ipv4_mask.hdr.src_addr;
480 ipv4.hdr.dst_addr = conf->ipv4_addr;
481 ipv4_mask.hdr.dst_addr = rte_flow_item_ipv4_mask.hdr.dst_addr;
484 item.mask = &ipv4_mask;
485 return flow_dv_convert_modify_action(&item, modify_ipv4, NULL, resource,
486 MLX5_MODIFICATION_TYPE_SET, error);
490 * Convert modify-header set IPv6 address action to DV specification.
492 * @param[in,out] resource
493 * Pointer to the modify-header resource.
495 * Pointer to action specification.
497 * Pointer to the error structure.
500 * 0 on success, a negative errno value otherwise and rte_errno is set.
503 flow_dv_convert_action_modify_ipv6
504 (struct mlx5_flow_dv_modify_hdr_resource *resource,
505 const struct rte_flow_action *action,
506 struct rte_flow_error *error)
508 const struct rte_flow_action_set_ipv6 *conf =
509 (const struct rte_flow_action_set_ipv6 *)(action->conf);
510 struct rte_flow_item item = { .type = RTE_FLOW_ITEM_TYPE_IPV6 };
511 struct rte_flow_item_ipv6 ipv6;
512 struct rte_flow_item_ipv6 ipv6_mask;
514 memset(&ipv6, 0, sizeof(ipv6));
515 memset(&ipv6_mask, 0, sizeof(ipv6_mask));
516 if (action->type == RTE_FLOW_ACTION_TYPE_SET_IPV6_SRC) {
517 memcpy(&ipv6.hdr.src_addr, &conf->ipv6_addr,
518 sizeof(ipv6.hdr.src_addr));
519 memcpy(&ipv6_mask.hdr.src_addr,
520 &rte_flow_item_ipv6_mask.hdr.src_addr,
521 sizeof(ipv6.hdr.src_addr));
523 memcpy(&ipv6.hdr.dst_addr, &conf->ipv6_addr,
524 sizeof(ipv6.hdr.dst_addr));
525 memcpy(&ipv6_mask.hdr.dst_addr,
526 &rte_flow_item_ipv6_mask.hdr.dst_addr,
527 sizeof(ipv6.hdr.dst_addr));
530 item.mask = &ipv6_mask;
531 return flow_dv_convert_modify_action(&item, modify_ipv6, NULL, resource,
532 MLX5_MODIFICATION_TYPE_SET, error);
536 * Convert modify-header set MAC address action to DV specification.
538 * @param[in,out] resource
539 * Pointer to the modify-header resource.
541 * Pointer to action specification.
543 * Pointer to the error structure.
546 * 0 on success, a negative errno value otherwise and rte_errno is set.
549 flow_dv_convert_action_modify_mac
550 (struct mlx5_flow_dv_modify_hdr_resource *resource,
551 const struct rte_flow_action *action,
552 struct rte_flow_error *error)
554 const struct rte_flow_action_set_mac *conf =
555 (const struct rte_flow_action_set_mac *)(action->conf);
556 struct rte_flow_item item = { .type = RTE_FLOW_ITEM_TYPE_ETH };
557 struct rte_flow_item_eth eth;
558 struct rte_flow_item_eth eth_mask;
560 memset(ð, 0, sizeof(eth));
561 memset(ð_mask, 0, sizeof(eth_mask));
562 if (action->type == RTE_FLOW_ACTION_TYPE_SET_MAC_SRC) {
563 memcpy(ð.src.addr_bytes, &conf->mac_addr,
564 sizeof(eth.src.addr_bytes));
565 memcpy(ð_mask.src.addr_bytes,
566 &rte_flow_item_eth_mask.src.addr_bytes,
567 sizeof(eth_mask.src.addr_bytes));
569 memcpy(ð.dst.addr_bytes, &conf->mac_addr,
570 sizeof(eth.dst.addr_bytes));
571 memcpy(ð_mask.dst.addr_bytes,
572 &rte_flow_item_eth_mask.dst.addr_bytes,
573 sizeof(eth_mask.dst.addr_bytes));
576 item.mask = ð_mask;
577 return flow_dv_convert_modify_action(&item, modify_eth, NULL, resource,
578 MLX5_MODIFICATION_TYPE_SET, error);
582 * Convert modify-header set VLAN VID action to DV specification.
584 * @param[in,out] resource
585 * Pointer to the modify-header resource.
587 * Pointer to action specification.
589 * Pointer to the error structure.
592 * 0 on success, a negative errno value otherwise and rte_errno is set.
595 flow_dv_convert_action_modify_vlan_vid
596 (struct mlx5_flow_dv_modify_hdr_resource *resource,
597 const struct rte_flow_action *action,
598 struct rte_flow_error *error)
600 const struct rte_flow_action_of_set_vlan_vid *conf =
601 (const struct rte_flow_action_of_set_vlan_vid *)(action->conf);
602 int i = resource->actions_num;
603 struct mlx5_modification_cmd *actions = resource->actions;
604 struct field_modify_info *field = modify_vlan_out_first_vid;
606 if (i >= MLX5_MAX_MODIFY_NUM)
607 return rte_flow_error_set(error, EINVAL,
608 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
609 "too many items to modify");
610 actions[i] = (struct mlx5_modification_cmd) {
611 .action_type = MLX5_MODIFICATION_TYPE_SET,
613 .length = field->size,
614 .offset = field->offset,
616 actions[i].data0 = rte_cpu_to_be_32(actions[i].data0);
617 actions[i].data1 = conf->vlan_vid;
618 actions[i].data1 = actions[i].data1 << 16;
619 resource->actions_num = ++i;
624 * Convert modify-header set TP action to DV specification.
626 * @param[in,out] resource
627 * Pointer to the modify-header resource.
629 * Pointer to action specification.
631 * Pointer to rte_flow_item objects list.
633 * Pointer to flow attributes structure.
634 * @param[in] dev_flow
635 * Pointer to the sub flow.
636 * @param[in] tunnel_decap
637 * Whether action is after tunnel decapsulation.
639 * Pointer to the error structure.
642 * 0 on success, a negative errno value otherwise and rte_errno is set.
645 flow_dv_convert_action_modify_tp
646 (struct mlx5_flow_dv_modify_hdr_resource *resource,
647 const struct rte_flow_action *action,
648 const struct rte_flow_item *items,
649 union flow_dv_attr *attr, struct mlx5_flow *dev_flow,
650 bool tunnel_decap, struct rte_flow_error *error)
652 const struct rte_flow_action_set_tp *conf =
653 (const struct rte_flow_action_set_tp *)(action->conf);
654 struct rte_flow_item item;
655 struct rte_flow_item_udp udp;
656 struct rte_flow_item_udp udp_mask;
657 struct rte_flow_item_tcp tcp;
658 struct rte_flow_item_tcp tcp_mask;
659 struct field_modify_info *field;
662 flow_dv_attr_init(items, attr, dev_flow, tunnel_decap);
664 memset(&udp, 0, sizeof(udp));
665 memset(&udp_mask, 0, sizeof(udp_mask));
666 if (action->type == RTE_FLOW_ACTION_TYPE_SET_TP_SRC) {
667 udp.hdr.src_port = conf->port;
668 udp_mask.hdr.src_port =
669 rte_flow_item_udp_mask.hdr.src_port;
671 udp.hdr.dst_port = conf->port;
672 udp_mask.hdr.dst_port =
673 rte_flow_item_udp_mask.hdr.dst_port;
675 item.type = RTE_FLOW_ITEM_TYPE_UDP;
677 item.mask = &udp_mask;
680 MLX5_ASSERT(attr->tcp);
681 memset(&tcp, 0, sizeof(tcp));
682 memset(&tcp_mask, 0, sizeof(tcp_mask));
683 if (action->type == RTE_FLOW_ACTION_TYPE_SET_TP_SRC) {
684 tcp.hdr.src_port = conf->port;
685 tcp_mask.hdr.src_port =
686 rte_flow_item_tcp_mask.hdr.src_port;
688 tcp.hdr.dst_port = conf->port;
689 tcp_mask.hdr.dst_port =
690 rte_flow_item_tcp_mask.hdr.dst_port;
692 item.type = RTE_FLOW_ITEM_TYPE_TCP;
694 item.mask = &tcp_mask;
697 return flow_dv_convert_modify_action(&item, field, NULL, resource,
698 MLX5_MODIFICATION_TYPE_SET, error);
702 * Convert modify-header set TTL action to DV specification.
704 * @param[in,out] resource
705 * Pointer to the modify-header resource.
707 * Pointer to action specification.
709 * Pointer to rte_flow_item objects list.
711 * Pointer to flow attributes structure.
712 * @param[in] dev_flow
713 * Pointer to the sub flow.
714 * @param[in] tunnel_decap
715 * Whether action is after tunnel decapsulation.
717 * Pointer to the error structure.
720 * 0 on success, a negative errno value otherwise and rte_errno is set.
723 flow_dv_convert_action_modify_ttl
724 (struct mlx5_flow_dv_modify_hdr_resource *resource,
725 const struct rte_flow_action *action,
726 const struct rte_flow_item *items,
727 union flow_dv_attr *attr, struct mlx5_flow *dev_flow,
728 bool tunnel_decap, struct rte_flow_error *error)
730 const struct rte_flow_action_set_ttl *conf =
731 (const struct rte_flow_action_set_ttl *)(action->conf);
732 struct rte_flow_item item;
733 struct rte_flow_item_ipv4 ipv4;
734 struct rte_flow_item_ipv4 ipv4_mask;
735 struct rte_flow_item_ipv6 ipv6;
736 struct rte_flow_item_ipv6 ipv6_mask;
737 struct field_modify_info *field;
740 flow_dv_attr_init(items, attr, dev_flow, tunnel_decap);
742 memset(&ipv4, 0, sizeof(ipv4));
743 memset(&ipv4_mask, 0, sizeof(ipv4_mask));
744 ipv4.hdr.time_to_live = conf->ttl_value;
745 ipv4_mask.hdr.time_to_live = 0xFF;
746 item.type = RTE_FLOW_ITEM_TYPE_IPV4;
748 item.mask = &ipv4_mask;
751 MLX5_ASSERT(attr->ipv6);
752 memset(&ipv6, 0, sizeof(ipv6));
753 memset(&ipv6_mask, 0, sizeof(ipv6_mask));
754 ipv6.hdr.hop_limits = conf->ttl_value;
755 ipv6_mask.hdr.hop_limits = 0xFF;
756 item.type = RTE_FLOW_ITEM_TYPE_IPV6;
758 item.mask = &ipv6_mask;
761 return flow_dv_convert_modify_action(&item, field, NULL, resource,
762 MLX5_MODIFICATION_TYPE_SET, error);
766 * Convert modify-header decrement TTL action to DV specification.
768 * @param[in,out] resource
769 * Pointer to the modify-header resource.
771 * Pointer to action specification.
773 * Pointer to rte_flow_item objects list.
775 * Pointer to flow attributes structure.
776 * @param[in] dev_flow
777 * Pointer to the sub flow.
778 * @param[in] tunnel_decap
779 * Whether action is after tunnel decapsulation.
781 * Pointer to the error structure.
784 * 0 on success, a negative errno value otherwise and rte_errno is set.
787 flow_dv_convert_action_modify_dec_ttl
788 (struct mlx5_flow_dv_modify_hdr_resource *resource,
789 const struct rte_flow_item *items,
790 union flow_dv_attr *attr, struct mlx5_flow *dev_flow,
791 bool tunnel_decap, struct rte_flow_error *error)
793 struct rte_flow_item item;
794 struct rte_flow_item_ipv4 ipv4;
795 struct rte_flow_item_ipv4 ipv4_mask;
796 struct rte_flow_item_ipv6 ipv6;
797 struct rte_flow_item_ipv6 ipv6_mask;
798 struct field_modify_info *field;
801 flow_dv_attr_init(items, attr, dev_flow, tunnel_decap);
803 memset(&ipv4, 0, sizeof(ipv4));
804 memset(&ipv4_mask, 0, sizeof(ipv4_mask));
805 ipv4.hdr.time_to_live = 0xFF;
806 ipv4_mask.hdr.time_to_live = 0xFF;
807 item.type = RTE_FLOW_ITEM_TYPE_IPV4;
809 item.mask = &ipv4_mask;
812 MLX5_ASSERT(attr->ipv6);
813 memset(&ipv6, 0, sizeof(ipv6));
814 memset(&ipv6_mask, 0, sizeof(ipv6_mask));
815 ipv6.hdr.hop_limits = 0xFF;
816 ipv6_mask.hdr.hop_limits = 0xFF;
817 item.type = RTE_FLOW_ITEM_TYPE_IPV6;
819 item.mask = &ipv6_mask;
822 return flow_dv_convert_modify_action(&item, field, NULL, resource,
823 MLX5_MODIFICATION_TYPE_ADD, error);
827 * Convert modify-header increment/decrement TCP Sequence number
828 * to DV specification.
830 * @param[in,out] resource
831 * Pointer to the modify-header resource.
833 * Pointer to action specification.
835 * Pointer to the error structure.
838 * 0 on success, a negative errno value otherwise and rte_errno is set.
841 flow_dv_convert_action_modify_tcp_seq
842 (struct mlx5_flow_dv_modify_hdr_resource *resource,
843 const struct rte_flow_action *action,
844 struct rte_flow_error *error)
846 const rte_be32_t *conf = (const rte_be32_t *)(action->conf);
847 uint64_t value = rte_be_to_cpu_32(*conf);
848 struct rte_flow_item item;
849 struct rte_flow_item_tcp tcp;
850 struct rte_flow_item_tcp tcp_mask;
852 memset(&tcp, 0, sizeof(tcp));
853 memset(&tcp_mask, 0, sizeof(tcp_mask));
854 if (action->type == RTE_FLOW_ACTION_TYPE_DEC_TCP_SEQ)
856 * The HW has no decrement operation, only increment operation.
857 * To simulate decrement X from Y using increment operation
858 * we need to add UINT32_MAX X times to Y.
859 * Each adding of UINT32_MAX decrements Y by 1.
862 tcp.hdr.sent_seq = rte_cpu_to_be_32((uint32_t)value);
863 tcp_mask.hdr.sent_seq = RTE_BE32(UINT32_MAX);
864 item.type = RTE_FLOW_ITEM_TYPE_TCP;
866 item.mask = &tcp_mask;
867 return flow_dv_convert_modify_action(&item, modify_tcp, NULL, resource,
868 MLX5_MODIFICATION_TYPE_ADD, error);
872 * Convert modify-header increment/decrement TCP Acknowledgment number
873 * to DV specification.
875 * @param[in,out] resource
876 * Pointer to the modify-header resource.
878 * Pointer to action specification.
880 * Pointer to the error structure.
883 * 0 on success, a negative errno value otherwise and rte_errno is set.
886 flow_dv_convert_action_modify_tcp_ack
887 (struct mlx5_flow_dv_modify_hdr_resource *resource,
888 const struct rte_flow_action *action,
889 struct rte_flow_error *error)
891 const rte_be32_t *conf = (const rte_be32_t *)(action->conf);
892 uint64_t value = rte_be_to_cpu_32(*conf);
893 struct rte_flow_item item;
894 struct rte_flow_item_tcp tcp;
895 struct rte_flow_item_tcp tcp_mask;
897 memset(&tcp, 0, sizeof(tcp));
898 memset(&tcp_mask, 0, sizeof(tcp_mask));
899 if (action->type == RTE_FLOW_ACTION_TYPE_DEC_TCP_ACK)
901 * The HW has no decrement operation, only increment operation.
902 * To simulate decrement X from Y using increment operation
903 * we need to add UINT32_MAX X times to Y.
904 * Each adding of UINT32_MAX decrements Y by 1.
907 tcp.hdr.recv_ack = rte_cpu_to_be_32((uint32_t)value);
908 tcp_mask.hdr.recv_ack = RTE_BE32(UINT32_MAX);
909 item.type = RTE_FLOW_ITEM_TYPE_TCP;
911 item.mask = &tcp_mask;
912 return flow_dv_convert_modify_action(&item, modify_tcp, NULL, resource,
913 MLX5_MODIFICATION_TYPE_ADD, error);
916 static enum mlx5_modification_field reg_to_field[] = {
917 [REG_NON] = MLX5_MODI_OUT_NONE,
918 [REG_A] = MLX5_MODI_META_DATA_REG_A,
919 [REG_B] = MLX5_MODI_META_DATA_REG_B,
920 [REG_C_0] = MLX5_MODI_META_REG_C_0,
921 [REG_C_1] = MLX5_MODI_META_REG_C_1,
922 [REG_C_2] = MLX5_MODI_META_REG_C_2,
923 [REG_C_3] = MLX5_MODI_META_REG_C_3,
924 [REG_C_4] = MLX5_MODI_META_REG_C_4,
925 [REG_C_5] = MLX5_MODI_META_REG_C_5,
926 [REG_C_6] = MLX5_MODI_META_REG_C_6,
927 [REG_C_7] = MLX5_MODI_META_REG_C_7,
931 * Convert register set to DV specification.
933 * @param[in,out] resource
934 * Pointer to the modify-header resource.
936 * Pointer to action specification.
938 * Pointer to the error structure.
941 * 0 on success, a negative errno value otherwise and rte_errno is set.
944 flow_dv_convert_action_set_reg
945 (struct mlx5_flow_dv_modify_hdr_resource *resource,
946 const struct rte_flow_action *action,
947 struct rte_flow_error *error)
949 const struct mlx5_rte_flow_action_set_tag *conf = action->conf;
950 struct mlx5_modification_cmd *actions = resource->actions;
951 uint32_t i = resource->actions_num;
953 if (i >= MLX5_MAX_MODIFY_NUM)
954 return rte_flow_error_set(error, EINVAL,
955 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
956 "too many items to modify");
957 MLX5_ASSERT(conf->id != REG_NON);
958 MLX5_ASSERT(conf->id < RTE_DIM(reg_to_field));
959 actions[i] = (struct mlx5_modification_cmd) {
960 .action_type = MLX5_MODIFICATION_TYPE_SET,
961 .field = reg_to_field[conf->id],
963 actions[i].data0 = rte_cpu_to_be_32(actions[i].data0);
964 actions[i].data1 = rte_cpu_to_be_32(conf->data);
966 resource->actions_num = i;
971 * Convert SET_TAG action to DV specification.
974 * Pointer to the rte_eth_dev structure.
975 * @param[in,out] resource
976 * Pointer to the modify-header resource.
978 * Pointer to action specification.
980 * Pointer to the error structure.
983 * 0 on success, a negative errno value otherwise and rte_errno is set.
986 flow_dv_convert_action_set_tag
987 (struct rte_eth_dev *dev,
988 struct mlx5_flow_dv_modify_hdr_resource *resource,
989 const struct rte_flow_action_set_tag *conf,
990 struct rte_flow_error *error)
992 rte_be32_t data = rte_cpu_to_be_32(conf->data);
993 rte_be32_t mask = rte_cpu_to_be_32(conf->mask);
994 struct rte_flow_item item = {
998 struct field_modify_info reg_c_x[] = {
1001 enum mlx5_modification_field reg_type;
1004 ret = mlx5_flow_get_reg_id(dev, MLX5_APP_TAG, conf->index, error);
1007 MLX5_ASSERT(ret != REG_NON);
1008 MLX5_ASSERT((unsigned int)ret < RTE_DIM(reg_to_field));
1009 reg_type = reg_to_field[ret];
1010 MLX5_ASSERT(reg_type > 0);
1011 reg_c_x[0] = (struct field_modify_info){4, 0, reg_type};
1012 return flow_dv_convert_modify_action(&item, reg_c_x, NULL, resource,
1013 MLX5_MODIFICATION_TYPE_SET, error);
1017 * Convert internal COPY_REG action to DV specification.
1020 * Pointer to the rte_eth_dev structure.
1021 * @param[in,out] res
1022 * Pointer to the modify-header resource.
1024 * Pointer to action specification.
1026 * Pointer to the error structure.
1029 * 0 on success, a negative errno value otherwise and rte_errno is set.
1032 flow_dv_convert_action_copy_mreg(struct rte_eth_dev *dev,
1033 struct mlx5_flow_dv_modify_hdr_resource *res,
1034 const struct rte_flow_action *action,
1035 struct rte_flow_error *error)
1037 const struct mlx5_flow_action_copy_mreg *conf = action->conf;
1038 rte_be32_t mask = RTE_BE32(UINT32_MAX);
1039 struct rte_flow_item item = {
1043 struct field_modify_info reg_src[] = {
1044 {4, 0, reg_to_field[conf->src]},
1047 struct field_modify_info reg_dst = {
1049 .id = reg_to_field[conf->dst],
1051 /* Adjust reg_c[0] usage according to reported mask. */
1052 if (conf->dst == REG_C_0 || conf->src == REG_C_0) {
1053 struct mlx5_priv *priv = dev->data->dev_private;
1054 uint32_t reg_c0 = priv->sh->dv_regc0_mask;
1056 MLX5_ASSERT(reg_c0);
1057 MLX5_ASSERT(priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY);
1058 if (conf->dst == REG_C_0) {
1059 /* Copy to reg_c[0], within mask only. */
1060 reg_dst.offset = rte_bsf32(reg_c0);
1062 * Mask is ignoring the enianness, because
1063 * there is no conversion in datapath.
1065 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
1066 /* Copy from destination lower bits to reg_c[0]. */
1067 mask = reg_c0 >> reg_dst.offset;
1069 /* Copy from destination upper bits to reg_c[0]. */
1070 mask = reg_c0 << (sizeof(reg_c0) * CHAR_BIT -
1071 rte_fls_u32(reg_c0));
1074 mask = rte_cpu_to_be_32(reg_c0);
1075 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
1076 /* Copy from reg_c[0] to destination lower bits. */
1079 /* Copy from reg_c[0] to destination upper bits. */
1080 reg_dst.offset = sizeof(reg_c0) * CHAR_BIT -
1081 (rte_fls_u32(reg_c0) -
1086 return flow_dv_convert_modify_action(&item,
1087 reg_src, ®_dst, res,
1088 MLX5_MODIFICATION_TYPE_COPY,
1093 * Convert MARK action to DV specification. This routine is used
1094 * in extensive metadata only and requires metadata register to be
1095 * handled. In legacy mode hardware tag resource is engaged.
1098 * Pointer to the rte_eth_dev structure.
1100 * Pointer to MARK action specification.
1101 * @param[in,out] resource
1102 * Pointer to the modify-header resource.
1104 * Pointer to the error structure.
1107 * 0 on success, a negative errno value otherwise and rte_errno is set.
1110 flow_dv_convert_action_mark(struct rte_eth_dev *dev,
1111 const struct rte_flow_action_mark *conf,
1112 struct mlx5_flow_dv_modify_hdr_resource *resource,
1113 struct rte_flow_error *error)
1115 struct mlx5_priv *priv = dev->data->dev_private;
1116 rte_be32_t mask = rte_cpu_to_be_32(MLX5_FLOW_MARK_MASK &
1117 priv->sh->dv_mark_mask);
1118 rte_be32_t data = rte_cpu_to_be_32(conf->id) & mask;
1119 struct rte_flow_item item = {
1123 struct field_modify_info reg_c_x[] = {
1129 return rte_flow_error_set(error, EINVAL,
1130 RTE_FLOW_ERROR_TYPE_ACTION_CONF,
1131 NULL, "zero mark action mask");
1132 reg = mlx5_flow_get_reg_id(dev, MLX5_FLOW_MARK, 0, error);
1135 MLX5_ASSERT(reg > 0);
1136 if (reg == REG_C_0) {
1137 uint32_t msk_c0 = priv->sh->dv_regc0_mask;
1138 uint32_t shl_c0 = rte_bsf32(msk_c0);
1140 data = rte_cpu_to_be_32(rte_cpu_to_be_32(data) << shl_c0);
1141 mask = rte_cpu_to_be_32(mask) & msk_c0;
1142 mask = rte_cpu_to_be_32(mask << shl_c0);
1144 reg_c_x[0] = (struct field_modify_info){4, 0, reg_to_field[reg]};
1145 return flow_dv_convert_modify_action(&item, reg_c_x, NULL, resource,
1146 MLX5_MODIFICATION_TYPE_SET, error);
1150 * Get metadata register index for specified steering domain.
1153 * Pointer to the rte_eth_dev structure.
1155 * Attributes of flow to determine steering domain.
1157 * Pointer to the error structure.
1160 * positive index on success, a negative errno value otherwise
1161 * and rte_errno is set.
1163 static enum modify_reg
1164 flow_dv_get_metadata_reg(struct rte_eth_dev *dev,
1165 const struct rte_flow_attr *attr,
1166 struct rte_flow_error *error)
1169 mlx5_flow_get_reg_id(dev, attr->transfer ?
1173 MLX5_METADATA_RX, 0, error);
1175 return rte_flow_error_set(error,
1176 ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
1177 NULL, "unavailable "
1178 "metadata register");
1183 * Convert SET_META action to DV specification.
1186 * Pointer to the rte_eth_dev structure.
1187 * @param[in,out] resource
1188 * Pointer to the modify-header resource.
1190 * Attributes of flow that includes this item.
1192 * Pointer to action specification.
1194 * Pointer to the error structure.
1197 * 0 on success, a negative errno value otherwise and rte_errno is set.
1200 flow_dv_convert_action_set_meta
1201 (struct rte_eth_dev *dev,
1202 struct mlx5_flow_dv_modify_hdr_resource *resource,
1203 const struct rte_flow_attr *attr,
1204 const struct rte_flow_action_set_meta *conf,
1205 struct rte_flow_error *error)
1207 uint32_t data = conf->data;
1208 uint32_t mask = conf->mask;
1209 struct rte_flow_item item = {
1213 struct field_modify_info reg_c_x[] = {
1216 int reg = flow_dv_get_metadata_reg(dev, attr, error);
1221 * In datapath code there is no endianness
1222 * coversions for perfromance reasons, all
1223 * pattern conversions are done in rte_flow.
1225 if (reg == REG_C_0) {
1226 struct mlx5_priv *priv = dev->data->dev_private;
1227 uint32_t msk_c0 = priv->sh->dv_regc0_mask;
1230 MLX5_ASSERT(msk_c0);
1231 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
1232 shl_c0 = rte_bsf32(msk_c0);
1234 shl_c0 = sizeof(msk_c0) * CHAR_BIT - rte_fls_u32(msk_c0);
1238 MLX5_ASSERT(!(~msk_c0 & rte_cpu_to_be_32(mask)));
1240 reg_c_x[0] = (struct field_modify_info){4, 0, reg_to_field[reg]};
1241 /* The routine expects parameters in memory as big-endian ones. */
1242 return flow_dv_convert_modify_action(&item, reg_c_x, NULL, resource,
1243 MLX5_MODIFICATION_TYPE_SET, error);
1247 * Convert modify-header set IPv4 DSCP action to DV specification.
1249 * @param[in,out] resource
1250 * Pointer to the modify-header resource.
1252 * Pointer to action specification.
1254 * Pointer to the error structure.
1257 * 0 on success, a negative errno value otherwise and rte_errno is set.
1260 flow_dv_convert_action_modify_ipv4_dscp
1261 (struct mlx5_flow_dv_modify_hdr_resource *resource,
1262 const struct rte_flow_action *action,
1263 struct rte_flow_error *error)
1265 const struct rte_flow_action_set_dscp *conf =
1266 (const struct rte_flow_action_set_dscp *)(action->conf);
1267 struct rte_flow_item item = { .type = RTE_FLOW_ITEM_TYPE_IPV4 };
1268 struct rte_flow_item_ipv4 ipv4;
1269 struct rte_flow_item_ipv4 ipv4_mask;
1271 memset(&ipv4, 0, sizeof(ipv4));
1272 memset(&ipv4_mask, 0, sizeof(ipv4_mask));
1273 ipv4.hdr.type_of_service = conf->dscp;
1274 ipv4_mask.hdr.type_of_service = RTE_IPV4_HDR_DSCP_MASK >> 2;
1276 item.mask = &ipv4_mask;
1277 return flow_dv_convert_modify_action(&item, modify_ipv4, NULL, resource,
1278 MLX5_MODIFICATION_TYPE_SET, error);
1282 * Convert modify-header set IPv6 DSCP action to DV specification.
1284 * @param[in,out] resource
1285 * Pointer to the modify-header resource.
1287 * Pointer to action specification.
1289 * Pointer to the error structure.
1292 * 0 on success, a negative errno value otherwise and rte_errno is set.
1295 flow_dv_convert_action_modify_ipv6_dscp
1296 (struct mlx5_flow_dv_modify_hdr_resource *resource,
1297 const struct rte_flow_action *action,
1298 struct rte_flow_error *error)
1300 const struct rte_flow_action_set_dscp *conf =
1301 (const struct rte_flow_action_set_dscp *)(action->conf);
1302 struct rte_flow_item item = { .type = RTE_FLOW_ITEM_TYPE_IPV6 };
1303 struct rte_flow_item_ipv6 ipv6;
1304 struct rte_flow_item_ipv6 ipv6_mask;
1306 memset(&ipv6, 0, sizeof(ipv6));
1307 memset(&ipv6_mask, 0, sizeof(ipv6_mask));
1309 * Even though the DSCP bits offset of IPv6 is not byte aligned,
1310 * rdma-core only accept the DSCP bits byte aligned start from
1311 * bit 0 to 5 as to be compatible with IPv4. No need to shift the
1312 * bits in IPv6 case as rdma-core requires byte aligned value.
1314 ipv6.hdr.vtc_flow = conf->dscp;
1315 ipv6_mask.hdr.vtc_flow = RTE_IPV6_HDR_DSCP_MASK >> 22;
1317 item.mask = &ipv6_mask;
1318 return flow_dv_convert_modify_action(&item, modify_ipv6, NULL, resource,
1319 MLX5_MODIFICATION_TYPE_SET, error);
1323 * Validate MARK item.
1326 * Pointer to the rte_eth_dev structure.
1328 * Item specification.
1330 * Attributes of flow that includes this item.
1332 * Pointer to error structure.
1335 * 0 on success, a negative errno value otherwise and rte_errno is set.
1338 flow_dv_validate_item_mark(struct rte_eth_dev *dev,
1339 const struct rte_flow_item *item,
1340 const struct rte_flow_attr *attr __rte_unused,
1341 struct rte_flow_error *error)
1343 struct mlx5_priv *priv = dev->data->dev_private;
1344 struct mlx5_dev_config *config = &priv->config;
1345 const struct rte_flow_item_mark *spec = item->spec;
1346 const struct rte_flow_item_mark *mask = item->mask;
1347 const struct rte_flow_item_mark nic_mask = {
1348 .id = priv->sh->dv_mark_mask,
1352 if (config->dv_xmeta_en == MLX5_XMETA_MODE_LEGACY)
1353 return rte_flow_error_set(error, ENOTSUP,
1354 RTE_FLOW_ERROR_TYPE_ITEM, item,
1355 "extended metadata feature"
1357 if (!mlx5_flow_ext_mreg_supported(dev))
1358 return rte_flow_error_set(error, ENOTSUP,
1359 RTE_FLOW_ERROR_TYPE_ITEM, item,
1360 "extended metadata register"
1361 " isn't supported");
1363 return rte_flow_error_set(error, ENOTSUP,
1364 RTE_FLOW_ERROR_TYPE_ITEM, item,
1365 "extended metadata register"
1366 " isn't available");
1367 ret = mlx5_flow_get_reg_id(dev, MLX5_FLOW_MARK, 0, error);
1371 return rte_flow_error_set(error, EINVAL,
1372 RTE_FLOW_ERROR_TYPE_ITEM_SPEC,
1374 "data cannot be empty");
1375 if (spec->id >= (MLX5_FLOW_MARK_MAX & nic_mask.id))
1376 return rte_flow_error_set(error, EINVAL,
1377 RTE_FLOW_ERROR_TYPE_ACTION_CONF,
1379 "mark id exceeds the limit");
1383 return rte_flow_error_set(error, EINVAL,
1384 RTE_FLOW_ERROR_TYPE_ITEM_SPEC, NULL,
1385 "mask cannot be zero");
1387 ret = mlx5_flow_item_acceptable(item, (const uint8_t *)mask,
1388 (const uint8_t *)&nic_mask,
1389 sizeof(struct rte_flow_item_mark),
1390 MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
1397 * Validate META item.
1400 * Pointer to the rte_eth_dev structure.
1402 * Item specification.
1404 * Attributes of flow that includes this item.
1406 * Pointer to error structure.
1409 * 0 on success, a negative errno value otherwise and rte_errno is set.
1412 flow_dv_validate_item_meta(struct rte_eth_dev *dev __rte_unused,
1413 const struct rte_flow_item *item,
1414 const struct rte_flow_attr *attr,
1415 struct rte_flow_error *error)
1417 struct mlx5_priv *priv = dev->data->dev_private;
1418 struct mlx5_dev_config *config = &priv->config;
1419 const struct rte_flow_item_meta *spec = item->spec;
1420 const struct rte_flow_item_meta *mask = item->mask;
1421 struct rte_flow_item_meta nic_mask = {
1428 return rte_flow_error_set(error, EINVAL,
1429 RTE_FLOW_ERROR_TYPE_ITEM_SPEC,
1431 "data cannot be empty");
1432 if (config->dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
1433 if (!mlx5_flow_ext_mreg_supported(dev))
1434 return rte_flow_error_set(error, ENOTSUP,
1435 RTE_FLOW_ERROR_TYPE_ITEM, item,
1436 "extended metadata register"
1437 " isn't supported");
1438 reg = flow_dv_get_metadata_reg(dev, attr, error);
1442 return rte_flow_error_set(error, ENOTSUP,
1443 RTE_FLOW_ERROR_TYPE_ITEM, item,
1447 nic_mask.data = priv->sh->dv_meta_mask;
1448 } else if (attr->transfer) {
1449 return rte_flow_error_set(error, ENOTSUP,
1450 RTE_FLOW_ERROR_TYPE_ITEM, item,
1451 "extended metadata feature "
1452 "should be enabled when "
1453 "meta item is requested "
1454 "with e-switch mode ");
1457 mask = &rte_flow_item_meta_mask;
1459 return rte_flow_error_set(error, EINVAL,
1460 RTE_FLOW_ERROR_TYPE_ITEM_SPEC, NULL,
1461 "mask cannot be zero");
1463 ret = mlx5_flow_item_acceptable(item, (const uint8_t *)mask,
1464 (const uint8_t *)&nic_mask,
1465 sizeof(struct rte_flow_item_meta),
1466 MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
1471 * Validate TAG item.
1474 * Pointer to the rte_eth_dev structure.
1476 * Item specification.
1478 * Attributes of flow that includes this item.
1480 * Pointer to error structure.
1483 * 0 on success, a negative errno value otherwise and rte_errno is set.
1486 flow_dv_validate_item_tag(struct rte_eth_dev *dev,
1487 const struct rte_flow_item *item,
1488 const struct rte_flow_attr *attr __rte_unused,
1489 struct rte_flow_error *error)
1491 const struct rte_flow_item_tag *spec = item->spec;
1492 const struct rte_flow_item_tag *mask = item->mask;
1493 const struct rte_flow_item_tag nic_mask = {
1494 .data = RTE_BE32(UINT32_MAX),
1499 if (!mlx5_flow_ext_mreg_supported(dev))
1500 return rte_flow_error_set(error, ENOTSUP,
1501 RTE_FLOW_ERROR_TYPE_ITEM, item,
1502 "extensive metadata register"
1503 " isn't supported");
1505 return rte_flow_error_set(error, EINVAL,
1506 RTE_FLOW_ERROR_TYPE_ITEM_SPEC,
1508 "data cannot be empty");
1510 mask = &rte_flow_item_tag_mask;
1512 return rte_flow_error_set(error, EINVAL,
1513 RTE_FLOW_ERROR_TYPE_ITEM_SPEC, NULL,
1514 "mask cannot be zero");
1516 ret = mlx5_flow_item_acceptable(item, (const uint8_t *)mask,
1517 (const uint8_t *)&nic_mask,
1518 sizeof(struct rte_flow_item_tag),
1519 MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
1522 if (mask->index != 0xff)
1523 return rte_flow_error_set(error, EINVAL,
1524 RTE_FLOW_ERROR_TYPE_ITEM_SPEC, NULL,
1525 "partial mask for tag index"
1526 " is not supported");
1527 ret = mlx5_flow_get_reg_id(dev, MLX5_APP_TAG, spec->index, error);
1530 MLX5_ASSERT(ret != REG_NON);
1535 * Validate vport item.
1538 * Pointer to the rte_eth_dev structure.
1540 * Item specification.
1542 * Attributes of flow that includes this item.
1543 * @param[in] item_flags
1544 * Bit-fields that holds the items detected until now.
1546 * Pointer to error structure.
1549 * 0 on success, a negative errno value otherwise and rte_errno is set.
1552 flow_dv_validate_item_port_id(struct rte_eth_dev *dev,
1553 const struct rte_flow_item *item,
1554 const struct rte_flow_attr *attr,
1555 uint64_t item_flags,
1556 struct rte_flow_error *error)
1558 const struct rte_flow_item_port_id *spec = item->spec;
1559 const struct rte_flow_item_port_id *mask = item->mask;
1560 const struct rte_flow_item_port_id switch_mask = {
1563 struct mlx5_priv *esw_priv;
1564 struct mlx5_priv *dev_priv;
1567 if (!attr->transfer)
1568 return rte_flow_error_set(error, EINVAL,
1569 RTE_FLOW_ERROR_TYPE_ITEM,
1571 "match on port id is valid only"
1572 " when transfer flag is enabled");
1573 if (item_flags & MLX5_FLOW_ITEM_PORT_ID)
1574 return rte_flow_error_set(error, ENOTSUP,
1575 RTE_FLOW_ERROR_TYPE_ITEM, item,
1576 "multiple source ports are not"
1579 mask = &switch_mask;
1580 if (mask->id != 0xffffffff)
1581 return rte_flow_error_set(error, ENOTSUP,
1582 RTE_FLOW_ERROR_TYPE_ITEM_MASK,
1584 "no support for partial mask on"
1586 ret = mlx5_flow_item_acceptable
1587 (item, (const uint8_t *)mask,
1588 (const uint8_t *)&rte_flow_item_port_id_mask,
1589 sizeof(struct rte_flow_item_port_id),
1590 MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
1595 esw_priv = mlx5_port_to_eswitch_info(spec->id, false);
1597 return rte_flow_error_set(error, rte_errno,
1598 RTE_FLOW_ERROR_TYPE_ITEM_SPEC, spec,
1599 "failed to obtain E-Switch info for"
1601 dev_priv = mlx5_dev_to_eswitch_info(dev);
1603 return rte_flow_error_set(error, rte_errno,
1604 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1606 "failed to obtain E-Switch info");
1607 if (esw_priv->domain_id != dev_priv->domain_id)
1608 return rte_flow_error_set(error, EINVAL,
1609 RTE_FLOW_ERROR_TYPE_ITEM_SPEC, spec,
1610 "cannot match on a port from a"
1611 " different E-Switch");
1616 * Validate VLAN item.
1619 * Item specification.
1620 * @param[in] item_flags
1621 * Bit-fields that holds the items detected until now.
1623 * Ethernet device flow is being created on.
1625 * Pointer to error structure.
1628 * 0 on success, a negative errno value otherwise and rte_errno is set.
1631 flow_dv_validate_item_vlan(const struct rte_flow_item *item,
1632 uint64_t item_flags,
1633 struct rte_eth_dev *dev,
1634 struct rte_flow_error *error)
1636 const struct rte_flow_item_vlan *mask = item->mask;
1637 const struct rte_flow_item_vlan nic_mask = {
1638 .tci = RTE_BE16(UINT16_MAX),
1639 .inner_type = RTE_BE16(UINT16_MAX),
1642 const int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
1644 const uint64_t l34m = tunnel ? (MLX5_FLOW_LAYER_INNER_L3 |
1645 MLX5_FLOW_LAYER_INNER_L4) :
1646 (MLX5_FLOW_LAYER_OUTER_L3 |
1647 MLX5_FLOW_LAYER_OUTER_L4);
1648 const uint64_t vlanm = tunnel ? MLX5_FLOW_LAYER_INNER_VLAN :
1649 MLX5_FLOW_LAYER_OUTER_VLAN;
1651 if (item_flags & vlanm)
1652 return rte_flow_error_set(error, EINVAL,
1653 RTE_FLOW_ERROR_TYPE_ITEM, item,
1654 "multiple VLAN layers not supported");
1655 else if ((item_flags & l34m) != 0)
1656 return rte_flow_error_set(error, EINVAL,
1657 RTE_FLOW_ERROR_TYPE_ITEM, item,
1658 "VLAN cannot follow L3/L4 layer");
1660 mask = &rte_flow_item_vlan_mask;
1661 ret = mlx5_flow_item_acceptable(item, (const uint8_t *)mask,
1662 (const uint8_t *)&nic_mask,
1663 sizeof(struct rte_flow_item_vlan),
1664 MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
1667 if (!tunnel && mask->tci != RTE_BE16(0x0fff)) {
1668 struct mlx5_priv *priv = dev->data->dev_private;
1670 if (priv->vmwa_context) {
1672 * Non-NULL context means we have a virtual machine
1673 * and SR-IOV enabled, we have to create VLAN interface
1674 * to make hypervisor to setup E-Switch vport
1675 * context correctly. We avoid creating the multiple
1676 * VLAN interfaces, so we cannot support VLAN tag mask.
1678 return rte_flow_error_set(error, EINVAL,
1679 RTE_FLOW_ERROR_TYPE_ITEM,
1681 "VLAN tag mask is not"
1682 " supported in virtual"
1690 * GTP flags are contained in 1 byte of the format:
1691 * -------------------------------------------
1692 * | bit | 0 - 2 | 3 | 4 | 5 | 6 | 7 |
1693 * |-----------------------------------------|
1694 * | value | Version | PT | Res | E | S | PN |
1695 * -------------------------------------------
1697 * Matching is supported only for GTP flags E, S, PN.
1699 #define MLX5_GTP_FLAGS_MASK 0x07
1702 * Validate GTP item.
1705 * Pointer to the rte_eth_dev structure.
1707 * Item specification.
1708 * @param[in] item_flags
1709 * Bit-fields that holds the items detected until now.
1711 * Pointer to error structure.
1714 * 0 on success, a negative errno value otherwise and rte_errno is set.
1717 flow_dv_validate_item_gtp(struct rte_eth_dev *dev,
1718 const struct rte_flow_item *item,
1719 uint64_t item_flags,
1720 struct rte_flow_error *error)
1722 struct mlx5_priv *priv = dev->data->dev_private;
1723 const struct rte_flow_item_gtp *spec = item->spec;
1724 const struct rte_flow_item_gtp *mask = item->mask;
1725 const struct rte_flow_item_gtp nic_mask = {
1726 .v_pt_rsv_flags = MLX5_GTP_FLAGS_MASK,
1728 .teid = RTE_BE32(0xffffffff),
1731 if (!priv->config.hca_attr.tunnel_stateless_gtp)
1732 return rte_flow_error_set(error, ENOTSUP,
1733 RTE_FLOW_ERROR_TYPE_ITEM, item,
1734 "GTP support is not enabled");
1735 if (item_flags & MLX5_FLOW_LAYER_TUNNEL)
1736 return rte_flow_error_set(error, ENOTSUP,
1737 RTE_FLOW_ERROR_TYPE_ITEM, item,
1738 "multiple tunnel layers not"
1740 if (!(item_flags & MLX5_FLOW_LAYER_OUTER_L4_UDP))
1741 return rte_flow_error_set(error, EINVAL,
1742 RTE_FLOW_ERROR_TYPE_ITEM, item,
1743 "no outer UDP layer found");
1745 mask = &rte_flow_item_gtp_mask;
1746 if (spec && spec->v_pt_rsv_flags & ~MLX5_GTP_FLAGS_MASK)
1747 return rte_flow_error_set(error, ENOTSUP,
1748 RTE_FLOW_ERROR_TYPE_ITEM, item,
1749 "Match is supported for GTP"
1751 return mlx5_flow_item_acceptable(item, (const uint8_t *)mask,
1752 (const uint8_t *)&nic_mask,
1753 sizeof(struct rte_flow_item_gtp),
1754 MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
1758 * Validate IPV4 item.
1759 * Use existing validation function mlx5_flow_validate_item_ipv4(), and
1760 * add specific validation of fragment_offset field,
1763 * Item specification.
1764 * @param[in] item_flags
1765 * Bit-fields that holds the items detected until now.
1767 * Pointer to error structure.
1770 * 0 on success, a negative errno value otherwise and rte_errno is set.
1773 flow_dv_validate_item_ipv4(const struct rte_flow_item *item,
1774 uint64_t item_flags,
1776 uint16_t ether_type,
1777 struct rte_flow_error *error)
1780 const struct rte_flow_item_ipv4 *spec = item->spec;
1781 const struct rte_flow_item_ipv4 *last = item->last;
1782 const struct rte_flow_item_ipv4 *mask = item->mask;
1783 rte_be16_t fragment_offset_spec = 0;
1784 rte_be16_t fragment_offset_last = 0;
1785 const struct rte_flow_item_ipv4 nic_ipv4_mask = {
1787 .src_addr = RTE_BE32(0xffffffff),
1788 .dst_addr = RTE_BE32(0xffffffff),
1789 .type_of_service = 0xff,
1790 .fragment_offset = RTE_BE16(0xffff),
1791 .next_proto_id = 0xff,
1792 .time_to_live = 0xff,
1796 ret = mlx5_flow_validate_item_ipv4(item, item_flags, last_item,
1797 ether_type, &nic_ipv4_mask,
1798 MLX5_ITEM_RANGE_ACCEPTED, error);
1802 fragment_offset_spec = spec->hdr.fragment_offset &
1803 mask->hdr.fragment_offset;
1804 if (!fragment_offset_spec)
1807 * spec and mask are valid, enforce using full mask to make sure the
1808 * complete value is used correctly.
1810 if ((mask->hdr.fragment_offset & RTE_BE16(MLX5_IPV4_FRAG_OFFSET_MASK))
1811 != RTE_BE16(MLX5_IPV4_FRAG_OFFSET_MASK))
1812 return rte_flow_error_set(error, EINVAL,
1813 RTE_FLOW_ERROR_TYPE_ITEM_MASK,
1814 item, "must use full mask for"
1815 " fragment_offset");
1817 * Match on fragment_offset 0x2000 means MF is 1 and frag-offset is 0,
1818 * indicating this is 1st fragment of fragmented packet.
1819 * This is not yet supported in MLX5, return appropriate error message.
1821 if (fragment_offset_spec == RTE_BE16(RTE_IPV4_HDR_MF_FLAG))
1822 return rte_flow_error_set(error, ENOTSUP,
1823 RTE_FLOW_ERROR_TYPE_ITEM, item,
1824 "match on first fragment not "
1826 if (fragment_offset_spec && !last)
1827 return rte_flow_error_set(error, ENOTSUP,
1828 RTE_FLOW_ERROR_TYPE_ITEM, item,
1829 "specified value not supported");
1830 /* spec and last are valid, validate the specified range. */
1831 fragment_offset_last = last->hdr.fragment_offset &
1832 mask->hdr.fragment_offset;
1834 * Match on fragment_offset spec 0x2001 and last 0x3fff
1835 * means MF is 1 and frag-offset is > 0.
1836 * This packet is fragment 2nd and onward, excluding last.
1837 * This is not yet supported in MLX5, return appropriate
1840 if (fragment_offset_spec == RTE_BE16(RTE_IPV4_HDR_MF_FLAG + 1) &&
1841 fragment_offset_last == RTE_BE16(MLX5_IPV4_FRAG_OFFSET_MASK))
1842 return rte_flow_error_set(error, ENOTSUP,
1843 RTE_FLOW_ERROR_TYPE_ITEM_LAST,
1844 last, "match on following "
1845 "fragments not supported");
1847 * Match on fragment_offset spec 0x0001 and last 0x1fff
1848 * means MF is 0 and frag-offset is > 0.
1849 * This packet is last fragment of fragmented packet.
1850 * This is not yet supported in MLX5, return appropriate
1853 if (fragment_offset_spec == RTE_BE16(1) &&
1854 fragment_offset_last == RTE_BE16(RTE_IPV4_HDR_OFFSET_MASK))
1855 return rte_flow_error_set(error, ENOTSUP,
1856 RTE_FLOW_ERROR_TYPE_ITEM_LAST,
1857 last, "match on last "
1858 "fragment not supported");
1860 * Match on fragment_offset spec 0x0001 and last 0x3fff
1861 * means MF and/or frag-offset is not 0.
1862 * This is a fragmented packet.
1863 * Other range values are invalid and rejected.
1865 if (!(fragment_offset_spec == RTE_BE16(1) &&
1866 fragment_offset_last == RTE_BE16(MLX5_IPV4_FRAG_OFFSET_MASK)))
1867 return rte_flow_error_set(error, ENOTSUP,
1868 RTE_FLOW_ERROR_TYPE_ITEM_LAST, last,
1869 "specified range not supported");
1874 * Validate IPV6 fragment extension item.
1877 * Item specification.
1878 * @param[in] item_flags
1879 * Bit-fields that holds the items detected until now.
1881 * Pointer to error structure.
1884 * 0 on success, a negative errno value otherwise and rte_errno is set.
1887 flow_dv_validate_item_ipv6_frag_ext(const struct rte_flow_item *item,
1888 uint64_t item_flags,
1889 struct rte_flow_error *error)
1891 const struct rte_flow_item_ipv6_frag_ext *spec = item->spec;
1892 const struct rte_flow_item_ipv6_frag_ext *last = item->last;
1893 const struct rte_flow_item_ipv6_frag_ext *mask = item->mask;
1894 rte_be16_t frag_data_spec = 0;
1895 rte_be16_t frag_data_last = 0;
1896 const int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
1897 const uint64_t l4m = tunnel ? MLX5_FLOW_LAYER_INNER_L4 :
1898 MLX5_FLOW_LAYER_OUTER_L4;
1900 struct rte_flow_item_ipv6_frag_ext nic_mask = {
1902 .next_header = 0xff,
1903 .frag_data = RTE_BE16(0xffff),
1907 if (item_flags & l4m)
1908 return rte_flow_error_set(error, EINVAL,
1909 RTE_FLOW_ERROR_TYPE_ITEM, item,
1910 "ipv6 fragment extension item cannot "
1912 if ((tunnel && !(item_flags & MLX5_FLOW_LAYER_INNER_L3_IPV6)) ||
1913 (!tunnel && !(item_flags & MLX5_FLOW_LAYER_OUTER_L3_IPV6)))
1914 return rte_flow_error_set(error, EINVAL,
1915 RTE_FLOW_ERROR_TYPE_ITEM, item,
1916 "ipv6 fragment extension item must "
1917 "follow ipv6 item");
1919 frag_data_spec = spec->hdr.frag_data & mask->hdr.frag_data;
1920 if (!frag_data_spec)
1923 * spec and mask are valid, enforce using full mask to make sure the
1924 * complete value is used correctly.
1926 if ((mask->hdr.frag_data & RTE_BE16(RTE_IPV6_FRAG_USED_MASK)) !=
1927 RTE_BE16(RTE_IPV6_FRAG_USED_MASK))
1928 return rte_flow_error_set(error, EINVAL,
1929 RTE_FLOW_ERROR_TYPE_ITEM_MASK,
1930 item, "must use full mask for"
1933 * Match on frag_data 0x00001 means M is 1 and frag-offset is 0.
1934 * This is 1st fragment of fragmented packet.
1936 if (frag_data_spec == RTE_BE16(RTE_IPV6_EHDR_MF_MASK))
1937 return rte_flow_error_set(error, ENOTSUP,
1938 RTE_FLOW_ERROR_TYPE_ITEM, item,
1939 "match on first fragment not "
1941 if (frag_data_spec && !last)
1942 return rte_flow_error_set(error, EINVAL,
1943 RTE_FLOW_ERROR_TYPE_ITEM, item,
1944 "specified value not supported");
1945 ret = mlx5_flow_item_acceptable
1946 (item, (const uint8_t *)mask,
1947 (const uint8_t *)&nic_mask,
1948 sizeof(struct rte_flow_item_ipv6_frag_ext),
1949 MLX5_ITEM_RANGE_ACCEPTED, error);
1952 /* spec and last are valid, validate the specified range. */
1953 frag_data_last = last->hdr.frag_data & mask->hdr.frag_data;
1955 * Match on frag_data spec 0x0009 and last 0xfff9
1956 * means M is 1 and frag-offset is > 0.
1957 * This packet is fragment 2nd and onward, excluding last.
1958 * This is not yet supported in MLX5, return appropriate
1961 if (frag_data_spec == RTE_BE16(RTE_IPV6_EHDR_FO_ALIGN |
1962 RTE_IPV6_EHDR_MF_MASK) &&
1963 frag_data_last == RTE_BE16(RTE_IPV6_FRAG_USED_MASK))
1964 return rte_flow_error_set(error, ENOTSUP,
1965 RTE_FLOW_ERROR_TYPE_ITEM_LAST,
1966 last, "match on following "
1967 "fragments not supported");
1969 * Match on frag_data spec 0x0008 and last 0xfff8
1970 * means M is 0 and frag-offset is > 0.
1971 * This packet is last fragment of fragmented packet.
1972 * This is not yet supported in MLX5, return appropriate
1975 if (frag_data_spec == RTE_BE16(RTE_IPV6_EHDR_FO_ALIGN) &&
1976 frag_data_last == RTE_BE16(RTE_IPV6_EHDR_FO_MASK))
1977 return rte_flow_error_set(error, ENOTSUP,
1978 RTE_FLOW_ERROR_TYPE_ITEM_LAST,
1979 last, "match on last "
1980 "fragment not supported");
1981 /* Other range values are invalid and rejected. */
1982 return rte_flow_error_set(error, EINVAL,
1983 RTE_FLOW_ERROR_TYPE_ITEM_LAST, last,
1984 "specified range not supported");
1988 * Validate the pop VLAN action.
1991 * Pointer to the rte_eth_dev structure.
1992 * @param[in] action_flags
1993 * Holds the actions detected until now.
1995 * Pointer to the pop vlan action.
1996 * @param[in] item_flags
1997 * The items found in this flow rule.
1999 * Pointer to flow attributes.
2001 * Pointer to error structure.
2004 * 0 on success, a negative errno value otherwise and rte_errno is set.
2007 flow_dv_validate_action_pop_vlan(struct rte_eth_dev *dev,
2008 uint64_t action_flags,
2009 const struct rte_flow_action *action,
2010 uint64_t item_flags,
2011 const struct rte_flow_attr *attr,
2012 struct rte_flow_error *error)
2014 const struct mlx5_priv *priv = dev->data->dev_private;
2018 if (!priv->sh->pop_vlan_action)
2019 return rte_flow_error_set(error, ENOTSUP,
2020 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
2022 "pop vlan action is not supported");
2024 return rte_flow_error_set(error, ENOTSUP,
2025 RTE_FLOW_ERROR_TYPE_ATTR_EGRESS,
2027 "pop vlan action not supported for "
2029 if (action_flags & MLX5_FLOW_VLAN_ACTIONS)
2030 return rte_flow_error_set(error, ENOTSUP,
2031 RTE_FLOW_ERROR_TYPE_ACTION, action,
2032 "no support for multiple VLAN "
2034 /* Pop VLAN with preceding Decap requires inner header with VLAN. */
2035 if ((action_flags & MLX5_FLOW_ACTION_DECAP) &&
2036 !(item_flags & MLX5_FLOW_LAYER_INNER_VLAN))
2037 return rte_flow_error_set(error, ENOTSUP,
2038 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
2040 "cannot pop vlan after decap without "
2041 "match on inner vlan in the flow");
2042 /* Pop VLAN without preceding Decap requires outer header with VLAN. */
2043 if (!(action_flags & MLX5_FLOW_ACTION_DECAP) &&
2044 !(item_flags & MLX5_FLOW_LAYER_OUTER_VLAN))
2045 return rte_flow_error_set(error, ENOTSUP,
2046 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
2048 "cannot pop vlan without a "
2049 "match on (outer) vlan in the flow");
2050 if (action_flags & MLX5_FLOW_ACTION_PORT_ID)
2051 return rte_flow_error_set(error, EINVAL,
2052 RTE_FLOW_ERROR_TYPE_ACTION, action,
2053 "wrong action order, port_id should "
2054 "be after pop VLAN action");
2055 if (!attr->transfer && priv->representor)
2056 return rte_flow_error_set(error, ENOTSUP,
2057 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
2058 "pop vlan action for VF representor "
2059 "not supported on NIC table");
2064 * Get VLAN default info from vlan match info.
2067 * the list of item specifications.
2069 * pointer VLAN info to fill to.
2072 * 0 on success, a negative errno value otherwise and rte_errno is set.
2075 flow_dev_get_vlan_info_from_items(const struct rte_flow_item *items,
2076 struct rte_vlan_hdr *vlan)
2078 const struct rte_flow_item_vlan nic_mask = {
2079 .tci = RTE_BE16(MLX5DV_FLOW_VLAN_PCP_MASK |
2080 MLX5DV_FLOW_VLAN_VID_MASK),
2081 .inner_type = RTE_BE16(0xffff),
2086 for (; items->type != RTE_FLOW_ITEM_TYPE_END; items++) {
2087 int type = items->type;
2089 if (type == RTE_FLOW_ITEM_TYPE_VLAN ||
2090 type == MLX5_RTE_FLOW_ITEM_TYPE_VLAN)
2093 if (items->type != RTE_FLOW_ITEM_TYPE_END) {
2094 const struct rte_flow_item_vlan *vlan_m = items->mask;
2095 const struct rte_flow_item_vlan *vlan_v = items->spec;
2097 /* If VLAN item in pattern doesn't contain data, return here. */
2102 /* Only full match values are accepted */
2103 if ((vlan_m->tci & MLX5DV_FLOW_VLAN_PCP_MASK_BE) ==
2104 MLX5DV_FLOW_VLAN_PCP_MASK_BE) {
2105 vlan->vlan_tci &= ~MLX5DV_FLOW_VLAN_PCP_MASK;
2107 rte_be_to_cpu_16(vlan_v->tci &
2108 MLX5DV_FLOW_VLAN_PCP_MASK_BE);
2110 if ((vlan_m->tci & MLX5DV_FLOW_VLAN_VID_MASK_BE) ==
2111 MLX5DV_FLOW_VLAN_VID_MASK_BE) {
2112 vlan->vlan_tci &= ~MLX5DV_FLOW_VLAN_VID_MASK;
2114 rte_be_to_cpu_16(vlan_v->tci &
2115 MLX5DV_FLOW_VLAN_VID_MASK_BE);
2117 if (vlan_m->inner_type == nic_mask.inner_type)
2118 vlan->eth_proto = rte_be_to_cpu_16(vlan_v->inner_type &
2119 vlan_m->inner_type);
2124 * Validate the push VLAN action.
2127 * Pointer to the rte_eth_dev structure.
2128 * @param[in] action_flags
2129 * Holds the actions detected until now.
2130 * @param[in] item_flags
2131 * The items found in this flow rule.
2133 * Pointer to the action structure.
2135 * Pointer to flow attributes
2137 * Pointer to error structure.
2140 * 0 on success, a negative errno value otherwise and rte_errno is set.
2143 flow_dv_validate_action_push_vlan(struct rte_eth_dev *dev,
2144 uint64_t action_flags,
2145 const struct rte_flow_item_vlan *vlan_m,
2146 const struct rte_flow_action *action,
2147 const struct rte_flow_attr *attr,
2148 struct rte_flow_error *error)
2150 const struct rte_flow_action_of_push_vlan *push_vlan = action->conf;
2151 const struct mlx5_priv *priv = dev->data->dev_private;
2153 if (push_vlan->ethertype != RTE_BE16(RTE_ETHER_TYPE_VLAN) &&
2154 push_vlan->ethertype != RTE_BE16(RTE_ETHER_TYPE_QINQ))
2155 return rte_flow_error_set(error, EINVAL,
2156 RTE_FLOW_ERROR_TYPE_ACTION, action,
2157 "invalid vlan ethertype");
2158 if (action_flags & MLX5_FLOW_ACTION_PORT_ID)
2159 return rte_flow_error_set(error, EINVAL,
2160 RTE_FLOW_ERROR_TYPE_ACTION, action,
2161 "wrong action order, port_id should "
2162 "be after push VLAN");
2163 if (!attr->transfer && priv->representor)
2164 return rte_flow_error_set(error, ENOTSUP,
2165 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
2166 "push vlan action for VF representor "
2167 "not supported on NIC table");
2169 (vlan_m->tci & MLX5DV_FLOW_VLAN_PCP_MASK_BE) &&
2170 (vlan_m->tci & MLX5DV_FLOW_VLAN_PCP_MASK_BE) !=
2171 MLX5DV_FLOW_VLAN_PCP_MASK_BE &&
2172 !(action_flags & MLX5_FLOW_ACTION_OF_SET_VLAN_PCP) &&
2173 !(mlx5_flow_find_action
2174 (action + 1, RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP)))
2175 return rte_flow_error_set(error, EINVAL,
2176 RTE_FLOW_ERROR_TYPE_ACTION, action,
2177 "not full match mask on VLAN PCP and "
2178 "there is no of_set_vlan_pcp action, "
2179 "push VLAN action cannot figure out "
2182 (vlan_m->tci & MLX5DV_FLOW_VLAN_VID_MASK_BE) &&
2183 (vlan_m->tci & MLX5DV_FLOW_VLAN_VID_MASK_BE) !=
2184 MLX5DV_FLOW_VLAN_VID_MASK_BE &&
2185 !(action_flags & MLX5_FLOW_ACTION_OF_SET_VLAN_VID) &&
2186 !(mlx5_flow_find_action
2187 (action + 1, RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID)))
2188 return rte_flow_error_set(error, EINVAL,
2189 RTE_FLOW_ERROR_TYPE_ACTION, action,
2190 "not full match mask on VLAN VID and "
2191 "there is no of_set_vlan_vid action, "
2192 "push VLAN action cannot figure out "
2199 * Validate the set VLAN PCP.
2201 * @param[in] action_flags
2202 * Holds the actions detected until now.
2203 * @param[in] actions
2204 * Pointer to the list of actions remaining in the flow rule.
2206 * Pointer to error structure.
2209 * 0 on success, a negative errno value otherwise and rte_errno is set.
2212 flow_dv_validate_action_set_vlan_pcp(uint64_t action_flags,
2213 const struct rte_flow_action actions[],
2214 struct rte_flow_error *error)
2216 const struct rte_flow_action *action = actions;
2217 const struct rte_flow_action_of_set_vlan_pcp *conf = action->conf;
2219 if (conf->vlan_pcp > 7)
2220 return rte_flow_error_set(error, EINVAL,
2221 RTE_FLOW_ERROR_TYPE_ACTION, action,
2222 "VLAN PCP value is too big");
2223 if (!(action_flags & MLX5_FLOW_ACTION_OF_PUSH_VLAN))
2224 return rte_flow_error_set(error, ENOTSUP,
2225 RTE_FLOW_ERROR_TYPE_ACTION, action,
2226 "set VLAN PCP action must follow "
2227 "the push VLAN action");
2228 if (action_flags & MLX5_FLOW_ACTION_OF_SET_VLAN_PCP)
2229 return rte_flow_error_set(error, ENOTSUP,
2230 RTE_FLOW_ERROR_TYPE_ACTION, action,
2231 "Multiple VLAN PCP modification are "
2233 if (action_flags & MLX5_FLOW_ACTION_PORT_ID)
2234 return rte_flow_error_set(error, EINVAL,
2235 RTE_FLOW_ERROR_TYPE_ACTION, action,
2236 "wrong action order, port_id should "
2237 "be after set VLAN PCP");
2242 * Validate the set VLAN VID.
2244 * @param[in] item_flags
2245 * Holds the items detected in this rule.
2246 * @param[in] action_flags
2247 * Holds the actions detected until now.
2248 * @param[in] actions
2249 * Pointer to the list of actions remaining in the flow rule.
2251 * Pointer to error structure.
2254 * 0 on success, a negative errno value otherwise and rte_errno is set.
2257 flow_dv_validate_action_set_vlan_vid(uint64_t item_flags,
2258 uint64_t action_flags,
2259 const struct rte_flow_action actions[],
2260 struct rte_flow_error *error)
2262 const struct rte_flow_action *action = actions;
2263 const struct rte_flow_action_of_set_vlan_vid *conf = action->conf;
2265 if (rte_be_to_cpu_16(conf->vlan_vid) > 0xFFE)
2266 return rte_flow_error_set(error, EINVAL,
2267 RTE_FLOW_ERROR_TYPE_ACTION, action,
2268 "VLAN VID value is too big");
2269 if (!(action_flags & MLX5_FLOW_ACTION_OF_PUSH_VLAN) &&
2270 !(item_flags & MLX5_FLOW_LAYER_OUTER_VLAN))
2271 return rte_flow_error_set(error, ENOTSUP,
2272 RTE_FLOW_ERROR_TYPE_ACTION, action,
2273 "set VLAN VID action must follow push"
2274 " VLAN action or match on VLAN item");
2275 if (action_flags & MLX5_FLOW_ACTION_OF_SET_VLAN_VID)
2276 return rte_flow_error_set(error, ENOTSUP,
2277 RTE_FLOW_ERROR_TYPE_ACTION, action,
2278 "Multiple VLAN VID modifications are "
2280 if (action_flags & MLX5_FLOW_ACTION_PORT_ID)
2281 return rte_flow_error_set(error, EINVAL,
2282 RTE_FLOW_ERROR_TYPE_ACTION, action,
2283 "wrong action order, port_id should "
2284 "be after set VLAN VID");
2289 * Validate the FLAG action.
2292 * Pointer to the rte_eth_dev structure.
2293 * @param[in] action_flags
2294 * Holds the actions detected until now.
2296 * Pointer to flow attributes
2298 * Pointer to error structure.
2301 * 0 on success, a negative errno value otherwise and rte_errno is set.
2304 flow_dv_validate_action_flag(struct rte_eth_dev *dev,
2305 uint64_t action_flags,
2306 const struct rte_flow_attr *attr,
2307 struct rte_flow_error *error)
2309 struct mlx5_priv *priv = dev->data->dev_private;
2310 struct mlx5_dev_config *config = &priv->config;
2313 /* Fall back if no extended metadata register support. */
2314 if (config->dv_xmeta_en == MLX5_XMETA_MODE_LEGACY)
2315 return mlx5_flow_validate_action_flag(action_flags, attr,
2317 /* Extensive metadata mode requires registers. */
2318 if (!mlx5_flow_ext_mreg_supported(dev))
2319 return rte_flow_error_set(error, ENOTSUP,
2320 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2321 "no metadata registers "
2322 "to support flag action");
2323 if (!(priv->sh->dv_mark_mask & MLX5_FLOW_MARK_DEFAULT))
2324 return rte_flow_error_set(error, ENOTSUP,
2325 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2326 "extended metadata register"
2327 " isn't available");
2328 ret = mlx5_flow_get_reg_id(dev, MLX5_FLOW_MARK, 0, error);
2331 MLX5_ASSERT(ret > 0);
2332 if (action_flags & MLX5_FLOW_ACTION_MARK)
2333 return rte_flow_error_set(error, EINVAL,
2334 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2335 "can't mark and flag in same flow");
2336 if (action_flags & MLX5_FLOW_ACTION_FLAG)
2337 return rte_flow_error_set(error, EINVAL,
2338 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2340 " actions in same flow");
2345 * Validate MARK action.
2348 * Pointer to the rte_eth_dev structure.
2350 * Pointer to action.
2351 * @param[in] action_flags
2352 * Holds the actions detected until now.
2354 * Pointer to flow attributes
2356 * Pointer to error structure.
2359 * 0 on success, a negative errno value otherwise and rte_errno is set.
2362 flow_dv_validate_action_mark(struct rte_eth_dev *dev,
2363 const struct rte_flow_action *action,
2364 uint64_t action_flags,
2365 const struct rte_flow_attr *attr,
2366 struct rte_flow_error *error)
2368 struct mlx5_priv *priv = dev->data->dev_private;
2369 struct mlx5_dev_config *config = &priv->config;
2370 const struct rte_flow_action_mark *mark = action->conf;
2373 /* Fall back if no extended metadata register support. */
2374 if (config->dv_xmeta_en == MLX5_XMETA_MODE_LEGACY)
2375 return mlx5_flow_validate_action_mark(action, action_flags,
2377 /* Extensive metadata mode requires registers. */
2378 if (!mlx5_flow_ext_mreg_supported(dev))
2379 return rte_flow_error_set(error, ENOTSUP,
2380 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2381 "no metadata registers "
2382 "to support mark action");
2383 if (!priv->sh->dv_mark_mask)
2384 return rte_flow_error_set(error, ENOTSUP,
2385 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2386 "extended metadata register"
2387 " isn't available");
2388 ret = mlx5_flow_get_reg_id(dev, MLX5_FLOW_MARK, 0, error);
2391 MLX5_ASSERT(ret > 0);
2393 return rte_flow_error_set(error, EINVAL,
2394 RTE_FLOW_ERROR_TYPE_ACTION, action,
2395 "configuration cannot be null");
2396 if (mark->id >= (MLX5_FLOW_MARK_MAX & priv->sh->dv_mark_mask))
2397 return rte_flow_error_set(error, EINVAL,
2398 RTE_FLOW_ERROR_TYPE_ACTION_CONF,
2400 "mark id exceeds the limit");
2401 if (action_flags & MLX5_FLOW_ACTION_FLAG)
2402 return rte_flow_error_set(error, EINVAL,
2403 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2404 "can't flag and mark in same flow");
2405 if (action_flags & MLX5_FLOW_ACTION_MARK)
2406 return rte_flow_error_set(error, EINVAL,
2407 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2408 "can't have 2 mark actions in same"
2414 * Validate SET_META action.
2417 * Pointer to the rte_eth_dev structure.
2419 * Pointer to the action structure.
2420 * @param[in] action_flags
2421 * Holds the actions detected until now.
2423 * Pointer to flow attributes
2425 * Pointer to error structure.
2428 * 0 on success, a negative errno value otherwise and rte_errno is set.
2431 flow_dv_validate_action_set_meta(struct rte_eth_dev *dev,
2432 const struct rte_flow_action *action,
2433 uint64_t action_flags __rte_unused,
2434 const struct rte_flow_attr *attr,
2435 struct rte_flow_error *error)
2437 const struct rte_flow_action_set_meta *conf;
2438 uint32_t nic_mask = UINT32_MAX;
2441 if (!mlx5_flow_ext_mreg_supported(dev))
2442 return rte_flow_error_set(error, ENOTSUP,
2443 RTE_FLOW_ERROR_TYPE_ACTION, action,
2444 "extended metadata register"
2445 " isn't supported");
2446 reg = flow_dv_get_metadata_reg(dev, attr, error);
2449 if (reg != REG_A && reg != REG_B) {
2450 struct mlx5_priv *priv = dev->data->dev_private;
2452 nic_mask = priv->sh->dv_meta_mask;
2454 if (!(action->conf))
2455 return rte_flow_error_set(error, EINVAL,
2456 RTE_FLOW_ERROR_TYPE_ACTION, action,
2457 "configuration cannot be null");
2458 conf = (const struct rte_flow_action_set_meta *)action->conf;
2460 return rte_flow_error_set(error, EINVAL,
2461 RTE_FLOW_ERROR_TYPE_ACTION, action,
2462 "zero mask doesn't have any effect");
2463 if (conf->mask & ~nic_mask)
2464 return rte_flow_error_set(error, EINVAL,
2465 RTE_FLOW_ERROR_TYPE_ACTION, action,
2466 "meta data must be within reg C0");
2471 * Validate SET_TAG action.
2474 * Pointer to the rte_eth_dev structure.
2476 * Pointer to the action structure.
2477 * @param[in] action_flags
2478 * Holds the actions detected until now.
2480 * Pointer to flow attributes
2482 * Pointer to error structure.
2485 * 0 on success, a negative errno value otherwise and rte_errno is set.
2488 flow_dv_validate_action_set_tag(struct rte_eth_dev *dev,
2489 const struct rte_flow_action *action,
2490 uint64_t action_flags,
2491 const struct rte_flow_attr *attr,
2492 struct rte_flow_error *error)
2494 const struct rte_flow_action_set_tag *conf;
2495 const uint64_t terminal_action_flags =
2496 MLX5_FLOW_ACTION_DROP | MLX5_FLOW_ACTION_QUEUE |
2497 MLX5_FLOW_ACTION_RSS;
2500 if (!mlx5_flow_ext_mreg_supported(dev))
2501 return rte_flow_error_set(error, ENOTSUP,
2502 RTE_FLOW_ERROR_TYPE_ACTION, action,
2503 "extensive metadata register"
2504 " isn't supported");
2505 if (!(action->conf))
2506 return rte_flow_error_set(error, EINVAL,
2507 RTE_FLOW_ERROR_TYPE_ACTION, action,
2508 "configuration cannot be null");
2509 conf = (const struct rte_flow_action_set_tag *)action->conf;
2511 return rte_flow_error_set(error, EINVAL,
2512 RTE_FLOW_ERROR_TYPE_ACTION, action,
2513 "zero mask doesn't have any effect");
2514 ret = mlx5_flow_get_reg_id(dev, MLX5_APP_TAG, conf->index, error);
2517 if (!attr->transfer && attr->ingress &&
2518 (action_flags & terminal_action_flags))
2519 return rte_flow_error_set(error, EINVAL,
2520 RTE_FLOW_ERROR_TYPE_ACTION, action,
2521 "set_tag has no effect"
2522 " with terminal actions");
2527 * Validate count action.
2530 * Pointer to rte_eth_dev structure.
2532 * Pointer to error structure.
2535 * 0 on success, a negative errno value otherwise and rte_errno is set.
2538 flow_dv_validate_action_count(struct rte_eth_dev *dev,
2539 struct rte_flow_error *error)
2541 struct mlx5_priv *priv = dev->data->dev_private;
2543 if (!priv->config.devx)
2545 #ifdef HAVE_IBV_FLOW_DEVX_COUNTERS
2549 return rte_flow_error_set
2551 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
2553 "count action not supported");
2557 * Validate the L2 encap action.
2560 * Pointer to the rte_eth_dev structure.
2561 * @param[in] action_flags
2562 * Holds the actions detected until now.
2564 * Pointer to the action structure.
2566 * Pointer to flow attributes.
2568 * Pointer to error structure.
2571 * 0 on success, a negative errno value otherwise and rte_errno is set.
2574 flow_dv_validate_action_l2_encap(struct rte_eth_dev *dev,
2575 uint64_t action_flags,
2576 const struct rte_flow_action *action,
2577 const struct rte_flow_attr *attr,
2578 struct rte_flow_error *error)
2580 const struct mlx5_priv *priv = dev->data->dev_private;
2582 if (!(action->conf))
2583 return rte_flow_error_set(error, EINVAL,
2584 RTE_FLOW_ERROR_TYPE_ACTION, action,
2585 "configuration cannot be null");
2586 if (action_flags & MLX5_FLOW_ACTION_ENCAP)
2587 return rte_flow_error_set(error, EINVAL,
2588 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2589 "can only have a single encap action "
2591 if (!attr->transfer && priv->representor)
2592 return rte_flow_error_set(error, ENOTSUP,
2593 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
2594 "encap action for VF representor "
2595 "not supported on NIC table");
2600 * Validate a decap action.
2603 * Pointer to the rte_eth_dev structure.
2604 * @param[in] action_flags
2605 * Holds the actions detected until now.
2607 * Pointer to flow attributes
2609 * Pointer to error structure.
2612 * 0 on success, a negative errno value otherwise and rte_errno is set.
2615 flow_dv_validate_action_decap(struct rte_eth_dev *dev,
2616 uint64_t action_flags,
2617 const struct rte_flow_attr *attr,
2618 struct rte_flow_error *error)
2620 const struct mlx5_priv *priv = dev->data->dev_private;
2622 if (priv->config.hca_attr.scatter_fcs_w_decap_disable &&
2623 !priv->config.decap_en)
2624 return rte_flow_error_set(error, ENOTSUP,
2625 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2626 "decap is not enabled");
2627 if (action_flags & MLX5_FLOW_XCAP_ACTIONS)
2628 return rte_flow_error_set(error, ENOTSUP,
2629 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2631 MLX5_FLOW_ACTION_DECAP ? "can only "
2632 "have a single decap action" : "decap "
2633 "after encap is not supported");
2634 if (action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS)
2635 return rte_flow_error_set(error, EINVAL,
2636 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2637 "can't have decap action after"
2640 return rte_flow_error_set(error, ENOTSUP,
2641 RTE_FLOW_ERROR_TYPE_ATTR_EGRESS,
2643 "decap action not supported for "
2645 if (!attr->transfer && priv->representor)
2646 return rte_flow_error_set(error, ENOTSUP,
2647 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
2648 "decap action for VF representor "
2649 "not supported on NIC table");
2653 const struct rte_flow_action_raw_decap empty_decap = {.data = NULL, .size = 0,};
2656 * Validate the raw encap and decap actions.
2659 * Pointer to the rte_eth_dev structure.
2661 * Pointer to the decap action.
2663 * Pointer to the encap action.
2665 * Pointer to flow attributes
2666 * @param[in/out] action_flags
2667 * Holds the actions detected until now.
2668 * @param[out] actions_n
2669 * pointer to the number of actions counter.
2671 * Pointer to error structure.
2674 * 0 on success, a negative errno value otherwise and rte_errno is set.
2677 flow_dv_validate_action_raw_encap_decap
2678 (struct rte_eth_dev *dev,
2679 const struct rte_flow_action_raw_decap *decap,
2680 const struct rte_flow_action_raw_encap *encap,
2681 const struct rte_flow_attr *attr, uint64_t *action_flags,
2682 int *actions_n, struct rte_flow_error *error)
2684 const struct mlx5_priv *priv = dev->data->dev_private;
2687 if (encap && (!encap->size || !encap->data))
2688 return rte_flow_error_set(error, EINVAL,
2689 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2690 "raw encap data cannot be empty");
2691 if (decap && encap) {
2692 if (decap->size <= MLX5_ENCAPSULATION_DECISION_SIZE &&
2693 encap->size > MLX5_ENCAPSULATION_DECISION_SIZE)
2696 else if (encap->size <=
2697 MLX5_ENCAPSULATION_DECISION_SIZE &&
2699 MLX5_ENCAPSULATION_DECISION_SIZE)
2702 else if (encap->size >
2703 MLX5_ENCAPSULATION_DECISION_SIZE &&
2705 MLX5_ENCAPSULATION_DECISION_SIZE)
2706 /* 2 L2 actions: encap and decap. */
2709 return rte_flow_error_set(error,
2711 RTE_FLOW_ERROR_TYPE_ACTION,
2712 NULL, "unsupported too small "
2713 "raw decap and too small raw "
2714 "encap combination");
2717 ret = flow_dv_validate_action_decap(dev, *action_flags, attr,
2721 *action_flags |= MLX5_FLOW_ACTION_DECAP;
2725 if (encap->size <= MLX5_ENCAPSULATION_DECISION_SIZE)
2726 return rte_flow_error_set(error, ENOTSUP,
2727 RTE_FLOW_ERROR_TYPE_ACTION,
2729 "small raw encap size");
2730 if (*action_flags & MLX5_FLOW_ACTION_ENCAP)
2731 return rte_flow_error_set(error, EINVAL,
2732 RTE_FLOW_ERROR_TYPE_ACTION,
2734 "more than one encap action");
2735 if (!attr->transfer && priv->representor)
2736 return rte_flow_error_set
2738 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
2739 "encap action for VF representor "
2740 "not supported on NIC table");
2741 *action_flags |= MLX5_FLOW_ACTION_ENCAP;
2748 * Match encap_decap resource.
2751 * Pointer to the hash list.
2753 * Pointer to exist resource entry object.
2755 * Key of the new entry.
2757 * Pointer to new encap_decap resource.
2760 * 0 on matching, none-zero otherwise.
2763 flow_dv_encap_decap_match_cb(struct mlx5_hlist *list __rte_unused,
2764 struct mlx5_hlist_entry *entry,
2765 uint64_t key __rte_unused, void *cb_ctx)
2767 struct mlx5_flow_cb_ctx *ctx = cb_ctx;
2768 struct mlx5_flow_dv_encap_decap_resource *resource = ctx->data;
2769 struct mlx5_flow_dv_encap_decap_resource *cache_resource;
2771 cache_resource = container_of(entry,
2772 struct mlx5_flow_dv_encap_decap_resource,
2774 if (resource->entry.key == cache_resource->entry.key &&
2775 resource->reformat_type == cache_resource->reformat_type &&
2776 resource->ft_type == cache_resource->ft_type &&
2777 resource->flags == cache_resource->flags &&
2778 resource->size == cache_resource->size &&
2779 !memcmp((const void *)resource->buf,
2780 (const void *)cache_resource->buf,
2787 * Allocate encap_decap resource.
2790 * Pointer to the hash list.
2792 * Pointer to exist resource entry object.
2794 * Pointer to new encap_decap resource.
2797 * 0 on matching, none-zero otherwise.
2799 struct mlx5_hlist_entry *
2800 flow_dv_encap_decap_create_cb(struct mlx5_hlist *list,
2801 uint64_t key __rte_unused,
2804 struct mlx5_dev_ctx_shared *sh = list->ctx;
2805 struct mlx5_flow_cb_ctx *ctx = cb_ctx;
2806 struct mlx5dv_dr_domain *domain;
2807 struct mlx5_flow_dv_encap_decap_resource *resource = ctx->data;
2808 struct mlx5_flow_dv_encap_decap_resource *cache_resource;
2812 if (resource->ft_type == MLX5DV_FLOW_TABLE_TYPE_FDB)
2813 domain = sh->fdb_domain;
2814 else if (resource->ft_type == MLX5DV_FLOW_TABLE_TYPE_NIC_RX)
2815 domain = sh->rx_domain;
2817 domain = sh->tx_domain;
2818 /* Register new encap/decap resource. */
2819 cache_resource = mlx5_ipool_zmalloc(sh->ipool[MLX5_IPOOL_DECAP_ENCAP],
2821 if (!cache_resource) {
2822 rte_flow_error_set(ctx->error, ENOMEM,
2823 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
2824 "cannot allocate resource memory");
2827 *cache_resource = *resource;
2828 cache_resource->idx = idx;
2829 ret = mlx5_flow_os_create_flow_action_packet_reformat
2830 (sh->ctx, domain, cache_resource,
2831 &cache_resource->action);
2833 mlx5_ipool_free(sh->ipool[MLX5_IPOOL_DECAP_ENCAP], idx);
2834 rte_flow_error_set(ctx->error, ENOMEM,
2835 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
2836 NULL, "cannot create action");
2840 return &cache_resource->entry;
2844 * Find existing encap/decap resource or create and register a new one.
2846 * @param[in, out] dev
2847 * Pointer to rte_eth_dev structure.
2848 * @param[in, out] resource
2849 * Pointer to encap/decap resource.
2850 * @parm[in, out] dev_flow
2851 * Pointer to the dev_flow.
2853 * pointer to error structure.
2856 * 0 on success otherwise -errno and errno is set.
2859 flow_dv_encap_decap_resource_register
2860 (struct rte_eth_dev *dev,
2861 struct mlx5_flow_dv_encap_decap_resource *resource,
2862 struct mlx5_flow *dev_flow,
2863 struct rte_flow_error *error)
2865 struct mlx5_priv *priv = dev->data->dev_private;
2866 struct mlx5_dev_ctx_shared *sh = priv->sh;
2867 struct mlx5_hlist_entry *entry;
2871 uint32_t refmt_type:8;
2873 * Header reformat actions can be shared between
2874 * non-root tables. One bit to indicate non-root
2878 uint32_t reserve:15;
2881 } encap_decap_key = {
2883 .ft_type = resource->ft_type,
2884 .refmt_type = resource->reformat_type,
2885 .is_root = !!dev_flow->dv.group,
2889 struct mlx5_flow_cb_ctx ctx = {
2894 resource->flags = dev_flow->dv.group ? 0 : 1;
2895 resource->entry.key = __rte_raw_cksum(&encap_decap_key.v32,
2896 sizeof(encap_decap_key.v32), 0);
2897 if (resource->reformat_type !=
2898 MLX5DV_FLOW_ACTION_PACKET_REFORMAT_TYPE_L2_TUNNEL_TO_L2 &&
2900 resource->entry.key = __rte_raw_cksum(resource->buf,
2902 resource->entry.key);
2903 entry = mlx5_hlist_register(sh->encaps_decaps, resource->entry.key,
2907 resource = container_of(entry, typeof(*resource), entry);
2908 dev_flow->dv.encap_decap = resource;
2909 dev_flow->handle->dvh.rix_encap_decap = resource->idx;
2914 * Find existing table jump resource or create and register a new one.
2916 * @param[in, out] dev
2917 * Pointer to rte_eth_dev structure.
2918 * @param[in, out] tbl
2919 * Pointer to flow table resource.
2920 * @parm[in, out] dev_flow
2921 * Pointer to the dev_flow.
2923 * pointer to error structure.
2926 * 0 on success otherwise -errno and errno is set.
2929 flow_dv_jump_tbl_resource_register
2930 (struct rte_eth_dev *dev __rte_unused,
2931 struct mlx5_flow_tbl_resource *tbl,
2932 struct mlx5_flow *dev_flow,
2933 struct rte_flow_error *error __rte_unused)
2935 struct mlx5_flow_tbl_data_entry *tbl_data =
2936 container_of(tbl, struct mlx5_flow_tbl_data_entry, tbl);
2939 MLX5_ASSERT(tbl_data->jump.action);
2940 dev_flow->handle->rix_jump = tbl_data->idx;
2941 dev_flow->dv.jump = &tbl_data->jump;
2946 flow_dv_port_id_match_cb(struct mlx5_cache_list *list __rte_unused,
2947 struct mlx5_cache_entry *entry, void *cb_ctx)
2949 struct mlx5_flow_cb_ctx *ctx = cb_ctx;
2950 struct mlx5_flow_dv_port_id_action_resource *ref = ctx->data;
2951 struct mlx5_flow_dv_port_id_action_resource *res =
2952 container_of(entry, typeof(*res), entry);
2954 return ref->port_id != res->port_id;
2957 struct mlx5_cache_entry *
2958 flow_dv_port_id_create_cb(struct mlx5_cache_list *list,
2959 struct mlx5_cache_entry *entry __rte_unused,
2962 struct mlx5_dev_ctx_shared *sh = list->ctx;
2963 struct mlx5_flow_cb_ctx *ctx = cb_ctx;
2964 struct mlx5_flow_dv_port_id_action_resource *ref = ctx->data;
2965 struct mlx5_flow_dv_port_id_action_resource *cache;
2969 /* Register new port id action resource. */
2970 cache = mlx5_ipool_zmalloc(sh->ipool[MLX5_IPOOL_PORT_ID], &idx);
2972 rte_flow_error_set(ctx->error, ENOMEM,
2973 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
2974 "cannot allocate port_id action cache memory");
2978 ret = mlx5_flow_os_create_flow_action_dest_port(sh->fdb_domain,
2982 mlx5_ipool_free(sh->ipool[MLX5_IPOOL_PORT_ID], idx);
2983 rte_flow_error_set(ctx->error, ENOMEM,
2984 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
2985 "cannot create action");
2988 return &cache->entry;
2992 * Find existing table port ID resource or create and register a new one.
2994 * @param[in, out] dev
2995 * Pointer to rte_eth_dev structure.
2996 * @param[in, out] resource
2997 * Pointer to port ID action resource.
2998 * @parm[in, out] dev_flow
2999 * Pointer to the dev_flow.
3001 * pointer to error structure.
3004 * 0 on success otherwise -errno and errno is set.
3007 flow_dv_port_id_action_resource_register
3008 (struct rte_eth_dev *dev,
3009 struct mlx5_flow_dv_port_id_action_resource *resource,
3010 struct mlx5_flow *dev_flow,
3011 struct rte_flow_error *error)
3013 struct mlx5_priv *priv = dev->data->dev_private;
3014 struct mlx5_cache_entry *entry;
3015 struct mlx5_flow_dv_port_id_action_resource *cache;
3016 struct mlx5_flow_cb_ctx ctx = {
3021 entry = mlx5_cache_register(&priv->sh->port_id_action_list, &ctx);
3024 cache = container_of(entry, typeof(*cache), entry);
3025 dev_flow->dv.port_id_action = cache;
3026 dev_flow->handle->rix_port_id_action = cache->idx;
3031 flow_dv_push_vlan_match_cb(struct mlx5_cache_list *list __rte_unused,
3032 struct mlx5_cache_entry *entry, void *cb_ctx)
3034 struct mlx5_flow_cb_ctx *ctx = cb_ctx;
3035 struct mlx5_flow_dv_push_vlan_action_resource *ref = ctx->data;
3036 struct mlx5_flow_dv_push_vlan_action_resource *res =
3037 container_of(entry, typeof(*res), entry);
3039 return ref->vlan_tag != res->vlan_tag || ref->ft_type != res->ft_type;
3042 struct mlx5_cache_entry *
3043 flow_dv_push_vlan_create_cb(struct mlx5_cache_list *list,
3044 struct mlx5_cache_entry *entry __rte_unused,
3047 struct mlx5_dev_ctx_shared *sh = list->ctx;
3048 struct mlx5_flow_cb_ctx *ctx = cb_ctx;
3049 struct mlx5_flow_dv_push_vlan_action_resource *ref = ctx->data;
3050 struct mlx5_flow_dv_push_vlan_action_resource *cache;
3051 struct mlx5dv_dr_domain *domain;
3055 /* Register new port id action resource. */
3056 cache = mlx5_ipool_zmalloc(sh->ipool[MLX5_IPOOL_PUSH_VLAN], &idx);
3058 rte_flow_error_set(ctx->error, ENOMEM,
3059 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
3060 "cannot allocate push_vlan action cache memory");
3064 if (ref->ft_type == MLX5DV_FLOW_TABLE_TYPE_FDB)
3065 domain = sh->fdb_domain;
3066 else if (ref->ft_type == MLX5DV_FLOW_TABLE_TYPE_NIC_RX)
3067 domain = sh->rx_domain;
3069 domain = sh->tx_domain;
3070 ret = mlx5_flow_os_create_flow_action_push_vlan(domain, ref->vlan_tag,
3073 mlx5_ipool_free(sh->ipool[MLX5_IPOOL_PUSH_VLAN], idx);
3074 rte_flow_error_set(ctx->error, ENOMEM,
3075 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
3076 "cannot create push vlan action");
3079 return &cache->entry;
3083 * Find existing push vlan resource or create and register a new one.
3085 * @param [in, out] dev
3086 * Pointer to rte_eth_dev structure.
3087 * @param[in, out] resource
3088 * Pointer to port ID action resource.
3089 * @parm[in, out] dev_flow
3090 * Pointer to the dev_flow.
3092 * pointer to error structure.
3095 * 0 on success otherwise -errno and errno is set.
3098 flow_dv_push_vlan_action_resource_register
3099 (struct rte_eth_dev *dev,
3100 struct mlx5_flow_dv_push_vlan_action_resource *resource,
3101 struct mlx5_flow *dev_flow,
3102 struct rte_flow_error *error)
3104 struct mlx5_priv *priv = dev->data->dev_private;
3105 struct mlx5_flow_dv_push_vlan_action_resource *cache;
3106 struct mlx5_cache_entry *entry;
3107 struct mlx5_flow_cb_ctx ctx = {
3112 entry = mlx5_cache_register(&priv->sh->push_vlan_action_list, &ctx);
3115 cache = container_of(entry, typeof(*cache), entry);
3117 dev_flow->handle->dvh.rix_push_vlan = cache->idx;
3118 dev_flow->dv.push_vlan_res = cache;
3123 * Get the size of specific rte_flow_item_type hdr size
3125 * @param[in] item_type
3126 * Tested rte_flow_item_type.
3129 * sizeof struct item_type, 0 if void or irrelevant.
3132 flow_dv_get_item_hdr_len(const enum rte_flow_item_type item_type)
3136 switch (item_type) {
3137 case RTE_FLOW_ITEM_TYPE_ETH:
3138 retval = sizeof(struct rte_ether_hdr);
3140 case RTE_FLOW_ITEM_TYPE_VLAN:
3141 retval = sizeof(struct rte_vlan_hdr);
3143 case RTE_FLOW_ITEM_TYPE_IPV4:
3144 retval = sizeof(struct rte_ipv4_hdr);
3146 case RTE_FLOW_ITEM_TYPE_IPV6:
3147 retval = sizeof(struct rte_ipv6_hdr);
3149 case RTE_FLOW_ITEM_TYPE_UDP:
3150 retval = sizeof(struct rte_udp_hdr);
3152 case RTE_FLOW_ITEM_TYPE_TCP:
3153 retval = sizeof(struct rte_tcp_hdr);
3155 case RTE_FLOW_ITEM_TYPE_VXLAN:
3156 case RTE_FLOW_ITEM_TYPE_VXLAN_GPE:
3157 retval = sizeof(struct rte_vxlan_hdr);
3159 case RTE_FLOW_ITEM_TYPE_GRE:
3160 case RTE_FLOW_ITEM_TYPE_NVGRE:
3161 retval = sizeof(struct rte_gre_hdr);
3163 case RTE_FLOW_ITEM_TYPE_MPLS:
3164 retval = sizeof(struct rte_mpls_hdr);
3166 case RTE_FLOW_ITEM_TYPE_VOID: /* Fall through. */
3174 #define MLX5_ENCAP_IPV4_VERSION 0x40
3175 #define MLX5_ENCAP_IPV4_IHL_MIN 0x05
3176 #define MLX5_ENCAP_IPV4_TTL_DEF 0x40
3177 #define MLX5_ENCAP_IPV6_VTC_FLOW 0x60000000
3178 #define MLX5_ENCAP_IPV6_HOP_LIMIT 0xff
3179 #define MLX5_ENCAP_VXLAN_FLAGS 0x08000000
3180 #define MLX5_ENCAP_VXLAN_GPE_FLAGS 0x04
3183 * Convert the encap action data from list of rte_flow_item to raw buffer
3186 * Pointer to rte_flow_item objects list.
3188 * Pointer to the output buffer.
3190 * Pointer to the output buffer size.
3192 * Pointer to the error structure.
3195 * 0 on success, a negative errno value otherwise and rte_errno is set.
3198 flow_dv_convert_encap_data(const struct rte_flow_item *items, uint8_t *buf,
3199 size_t *size, struct rte_flow_error *error)
3201 struct rte_ether_hdr *eth = NULL;
3202 struct rte_vlan_hdr *vlan = NULL;
3203 struct rte_ipv4_hdr *ipv4 = NULL;
3204 struct rte_ipv6_hdr *ipv6 = NULL;
3205 struct rte_udp_hdr *udp = NULL;
3206 struct rte_vxlan_hdr *vxlan = NULL;
3207 struct rte_vxlan_gpe_hdr *vxlan_gpe = NULL;
3208 struct rte_gre_hdr *gre = NULL;
3210 size_t temp_size = 0;
3213 return rte_flow_error_set(error, EINVAL,
3214 RTE_FLOW_ERROR_TYPE_ACTION,
3215 NULL, "invalid empty data");
3216 for (; items->type != RTE_FLOW_ITEM_TYPE_END; items++) {
3217 len = flow_dv_get_item_hdr_len(items->type);
3218 if (len + temp_size > MLX5_ENCAP_MAX_LEN)
3219 return rte_flow_error_set(error, EINVAL,
3220 RTE_FLOW_ERROR_TYPE_ACTION,
3221 (void *)items->type,
3222 "items total size is too big"
3223 " for encap action");
3224 rte_memcpy((void *)&buf[temp_size], items->spec, len);
3225 switch (items->type) {
3226 case RTE_FLOW_ITEM_TYPE_ETH:
3227 eth = (struct rte_ether_hdr *)&buf[temp_size];
3229 case RTE_FLOW_ITEM_TYPE_VLAN:
3230 vlan = (struct rte_vlan_hdr *)&buf[temp_size];
3232 return rte_flow_error_set(error, EINVAL,
3233 RTE_FLOW_ERROR_TYPE_ACTION,
3234 (void *)items->type,
3235 "eth header not found");
3236 if (!eth->ether_type)
3237 eth->ether_type = RTE_BE16(RTE_ETHER_TYPE_VLAN);
3239 case RTE_FLOW_ITEM_TYPE_IPV4:
3240 ipv4 = (struct rte_ipv4_hdr *)&buf[temp_size];
3242 return rte_flow_error_set(error, EINVAL,
3243 RTE_FLOW_ERROR_TYPE_ACTION,
3244 (void *)items->type,
3245 "neither eth nor vlan"
3247 if (vlan && !vlan->eth_proto)
3248 vlan->eth_proto = RTE_BE16(RTE_ETHER_TYPE_IPV4);
3249 else if (eth && !eth->ether_type)
3250 eth->ether_type = RTE_BE16(RTE_ETHER_TYPE_IPV4);
3251 if (!ipv4->version_ihl)
3252 ipv4->version_ihl = MLX5_ENCAP_IPV4_VERSION |
3253 MLX5_ENCAP_IPV4_IHL_MIN;
3254 if (!ipv4->time_to_live)
3255 ipv4->time_to_live = MLX5_ENCAP_IPV4_TTL_DEF;
3257 case RTE_FLOW_ITEM_TYPE_IPV6:
3258 ipv6 = (struct rte_ipv6_hdr *)&buf[temp_size];
3260 return rte_flow_error_set(error, EINVAL,
3261 RTE_FLOW_ERROR_TYPE_ACTION,
3262 (void *)items->type,
3263 "neither eth nor vlan"
3265 if (vlan && !vlan->eth_proto)
3266 vlan->eth_proto = RTE_BE16(RTE_ETHER_TYPE_IPV6);
3267 else if (eth && !eth->ether_type)
3268 eth->ether_type = RTE_BE16(RTE_ETHER_TYPE_IPV6);
3269 if (!ipv6->vtc_flow)
3271 RTE_BE32(MLX5_ENCAP_IPV6_VTC_FLOW);
3272 if (!ipv6->hop_limits)
3273 ipv6->hop_limits = MLX5_ENCAP_IPV6_HOP_LIMIT;
3275 case RTE_FLOW_ITEM_TYPE_UDP:
3276 udp = (struct rte_udp_hdr *)&buf[temp_size];
3278 return rte_flow_error_set(error, EINVAL,
3279 RTE_FLOW_ERROR_TYPE_ACTION,
3280 (void *)items->type,
3281 "ip header not found");
3282 if (ipv4 && !ipv4->next_proto_id)
3283 ipv4->next_proto_id = IPPROTO_UDP;
3284 else if (ipv6 && !ipv6->proto)
3285 ipv6->proto = IPPROTO_UDP;
3287 case RTE_FLOW_ITEM_TYPE_VXLAN:
3288 vxlan = (struct rte_vxlan_hdr *)&buf[temp_size];
3290 return rte_flow_error_set(error, EINVAL,
3291 RTE_FLOW_ERROR_TYPE_ACTION,
3292 (void *)items->type,
3293 "udp header not found");
3295 udp->dst_port = RTE_BE16(MLX5_UDP_PORT_VXLAN);
3296 if (!vxlan->vx_flags)
3298 RTE_BE32(MLX5_ENCAP_VXLAN_FLAGS);
3300 case RTE_FLOW_ITEM_TYPE_VXLAN_GPE:
3301 vxlan_gpe = (struct rte_vxlan_gpe_hdr *)&buf[temp_size];
3303 return rte_flow_error_set(error, EINVAL,
3304 RTE_FLOW_ERROR_TYPE_ACTION,
3305 (void *)items->type,
3306 "udp header not found");
3307 if (!vxlan_gpe->proto)
3308 return rte_flow_error_set(error, EINVAL,
3309 RTE_FLOW_ERROR_TYPE_ACTION,
3310 (void *)items->type,
3311 "next protocol not found");
3314 RTE_BE16(MLX5_UDP_PORT_VXLAN_GPE);
3315 if (!vxlan_gpe->vx_flags)
3316 vxlan_gpe->vx_flags =
3317 MLX5_ENCAP_VXLAN_GPE_FLAGS;
3319 case RTE_FLOW_ITEM_TYPE_GRE:
3320 case RTE_FLOW_ITEM_TYPE_NVGRE:
3321 gre = (struct rte_gre_hdr *)&buf[temp_size];
3323 return rte_flow_error_set(error, EINVAL,
3324 RTE_FLOW_ERROR_TYPE_ACTION,
3325 (void *)items->type,
3326 "next protocol not found");
3328 return rte_flow_error_set(error, EINVAL,
3329 RTE_FLOW_ERROR_TYPE_ACTION,
3330 (void *)items->type,
3331 "ip header not found");
3332 if (ipv4 && !ipv4->next_proto_id)
3333 ipv4->next_proto_id = IPPROTO_GRE;
3334 else if (ipv6 && !ipv6->proto)
3335 ipv6->proto = IPPROTO_GRE;
3337 case RTE_FLOW_ITEM_TYPE_VOID:
3340 return rte_flow_error_set(error, EINVAL,
3341 RTE_FLOW_ERROR_TYPE_ACTION,
3342 (void *)items->type,
3343 "unsupported item type");
3353 flow_dv_zero_encap_udp_csum(void *data, struct rte_flow_error *error)
3355 struct rte_ether_hdr *eth = NULL;
3356 struct rte_vlan_hdr *vlan = NULL;
3357 struct rte_ipv6_hdr *ipv6 = NULL;
3358 struct rte_udp_hdr *udp = NULL;
3362 eth = (struct rte_ether_hdr *)data;
3363 next_hdr = (char *)(eth + 1);
3364 proto = RTE_BE16(eth->ether_type);
3367 while (proto == RTE_ETHER_TYPE_VLAN || proto == RTE_ETHER_TYPE_QINQ) {
3368 vlan = (struct rte_vlan_hdr *)next_hdr;
3369 proto = RTE_BE16(vlan->eth_proto);
3370 next_hdr += sizeof(struct rte_vlan_hdr);
3373 /* HW calculates IPv4 csum. no need to proceed */
3374 if (proto == RTE_ETHER_TYPE_IPV4)
3377 /* non IPv4/IPv6 header. not supported */
3378 if (proto != RTE_ETHER_TYPE_IPV6) {
3379 return rte_flow_error_set(error, ENOTSUP,
3380 RTE_FLOW_ERROR_TYPE_ACTION,
3381 NULL, "Cannot offload non IPv4/IPv6");
3384 ipv6 = (struct rte_ipv6_hdr *)next_hdr;
3386 /* ignore non UDP */
3387 if (ipv6->proto != IPPROTO_UDP)
3390 udp = (struct rte_udp_hdr *)(ipv6 + 1);
3391 udp->dgram_cksum = 0;
3397 * Convert L2 encap action to DV specification.
3400 * Pointer to rte_eth_dev structure.
3402 * Pointer to action structure.
3403 * @param[in, out] dev_flow
3404 * Pointer to the mlx5_flow.
3405 * @param[in] transfer
3406 * Mark if the flow is E-Switch flow.
3408 * Pointer to the error structure.
3411 * 0 on success, a negative errno value otherwise and rte_errno is set.
3414 flow_dv_create_action_l2_encap(struct rte_eth_dev *dev,
3415 const struct rte_flow_action *action,
3416 struct mlx5_flow *dev_flow,
3418 struct rte_flow_error *error)
3420 const struct rte_flow_item *encap_data;
3421 const struct rte_flow_action_raw_encap *raw_encap_data;
3422 struct mlx5_flow_dv_encap_decap_resource res = {
3424 MLX5DV_FLOW_ACTION_PACKET_REFORMAT_TYPE_L2_TO_L2_TUNNEL,
3425 .ft_type = transfer ? MLX5DV_FLOW_TABLE_TYPE_FDB :
3426 MLX5DV_FLOW_TABLE_TYPE_NIC_TX,
3429 if (action->type == RTE_FLOW_ACTION_TYPE_RAW_ENCAP) {
3431 (const struct rte_flow_action_raw_encap *)action->conf;
3432 res.size = raw_encap_data->size;
3433 memcpy(res.buf, raw_encap_data->data, res.size);
3435 if (action->type == RTE_FLOW_ACTION_TYPE_VXLAN_ENCAP)
3437 ((const struct rte_flow_action_vxlan_encap *)
3438 action->conf)->definition;
3441 ((const struct rte_flow_action_nvgre_encap *)
3442 action->conf)->definition;
3443 if (flow_dv_convert_encap_data(encap_data, res.buf,
3447 if (flow_dv_zero_encap_udp_csum(res.buf, error))
3449 if (flow_dv_encap_decap_resource_register(dev, &res, dev_flow, error))
3450 return rte_flow_error_set(error, EINVAL,
3451 RTE_FLOW_ERROR_TYPE_ACTION,
3452 NULL, "can't create L2 encap action");
3457 * Convert L2 decap action to DV specification.
3460 * Pointer to rte_eth_dev structure.
3461 * @param[in, out] dev_flow
3462 * Pointer to the mlx5_flow.
3463 * @param[in] transfer
3464 * Mark if the flow is E-Switch flow.
3466 * Pointer to the error structure.
3469 * 0 on success, a negative errno value otherwise and rte_errno is set.
3472 flow_dv_create_action_l2_decap(struct rte_eth_dev *dev,
3473 struct mlx5_flow *dev_flow,
3475 struct rte_flow_error *error)
3477 struct mlx5_flow_dv_encap_decap_resource res = {
3480 MLX5DV_FLOW_ACTION_PACKET_REFORMAT_TYPE_L2_TUNNEL_TO_L2,
3481 .ft_type = transfer ? MLX5DV_FLOW_TABLE_TYPE_FDB :
3482 MLX5DV_FLOW_TABLE_TYPE_NIC_RX,
3485 if (flow_dv_encap_decap_resource_register(dev, &res, dev_flow, error))
3486 return rte_flow_error_set(error, EINVAL,
3487 RTE_FLOW_ERROR_TYPE_ACTION,
3488 NULL, "can't create L2 decap action");
3493 * Convert raw decap/encap (L3 tunnel) action to DV specification.
3496 * Pointer to rte_eth_dev structure.
3498 * Pointer to action structure.
3499 * @param[in, out] dev_flow
3500 * Pointer to the mlx5_flow.
3502 * Pointer to the flow attributes.
3504 * Pointer to the error structure.
3507 * 0 on success, a negative errno value otherwise and rte_errno is set.
3510 flow_dv_create_action_raw_encap(struct rte_eth_dev *dev,
3511 const struct rte_flow_action *action,
3512 struct mlx5_flow *dev_flow,
3513 const struct rte_flow_attr *attr,
3514 struct rte_flow_error *error)
3516 const struct rte_flow_action_raw_encap *encap_data;
3517 struct mlx5_flow_dv_encap_decap_resource res;
3519 memset(&res, 0, sizeof(res));
3520 encap_data = (const struct rte_flow_action_raw_encap *)action->conf;
3521 res.size = encap_data->size;
3522 memcpy(res.buf, encap_data->data, res.size);
3523 res.reformat_type = res.size < MLX5_ENCAPSULATION_DECISION_SIZE ?
3524 MLX5DV_FLOW_ACTION_PACKET_REFORMAT_TYPE_L3_TUNNEL_TO_L2 :
3525 MLX5DV_FLOW_ACTION_PACKET_REFORMAT_TYPE_L2_TO_L3_TUNNEL;
3527 res.ft_type = MLX5DV_FLOW_TABLE_TYPE_FDB;
3529 res.ft_type = attr->egress ? MLX5DV_FLOW_TABLE_TYPE_NIC_TX :
3530 MLX5DV_FLOW_TABLE_TYPE_NIC_RX;
3531 if (flow_dv_encap_decap_resource_register(dev, &res, dev_flow, error))
3532 return rte_flow_error_set(error, EINVAL,
3533 RTE_FLOW_ERROR_TYPE_ACTION,
3534 NULL, "can't create encap action");
3539 * Create action push VLAN.
3542 * Pointer to rte_eth_dev structure.
3544 * Pointer to the flow attributes.
3546 * Pointer to the vlan to push to the Ethernet header.
3547 * @param[in, out] dev_flow
3548 * Pointer to the mlx5_flow.
3550 * Pointer to the error structure.
3553 * 0 on success, a negative errno value otherwise and rte_errno is set.
3556 flow_dv_create_action_push_vlan(struct rte_eth_dev *dev,
3557 const struct rte_flow_attr *attr,
3558 const struct rte_vlan_hdr *vlan,
3559 struct mlx5_flow *dev_flow,
3560 struct rte_flow_error *error)
3562 struct mlx5_flow_dv_push_vlan_action_resource res;
3564 memset(&res, 0, sizeof(res));
3566 rte_cpu_to_be_32(((uint32_t)vlan->eth_proto) << 16 |
3569 res.ft_type = MLX5DV_FLOW_TABLE_TYPE_FDB;
3571 res.ft_type = attr->egress ? MLX5DV_FLOW_TABLE_TYPE_NIC_TX :
3572 MLX5DV_FLOW_TABLE_TYPE_NIC_RX;
3573 return flow_dv_push_vlan_action_resource_register
3574 (dev, &res, dev_flow, error);
3577 static int fdb_mirror;
3580 * Validate the modify-header actions.
3582 * @param[in] action_flags
3583 * Holds the actions detected until now.
3585 * Pointer to the modify action.
3587 * Pointer to error structure.
3590 * 0 on success, a negative errno value otherwise and rte_errno is set.
3593 flow_dv_validate_action_modify_hdr(const uint64_t action_flags,
3594 const struct rte_flow_action *action,
3595 struct rte_flow_error *error)
3597 if (action->type != RTE_FLOW_ACTION_TYPE_DEC_TTL && !action->conf)
3598 return rte_flow_error_set(error, EINVAL,
3599 RTE_FLOW_ERROR_TYPE_ACTION_CONF,
3600 NULL, "action configuration not set");
3601 if (action_flags & MLX5_FLOW_ACTION_ENCAP)
3602 return rte_flow_error_set(error, EINVAL,
3603 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
3604 "can't have encap action before"
3606 if ((action_flags & MLX5_FLOW_ACTION_SAMPLE) && fdb_mirror)
3607 return rte_flow_error_set(error, EINVAL,
3608 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
3609 "can't support sample action before"
3610 " modify action for E-Switch"
3616 * Validate the modify-header MAC address actions.
3618 * @param[in] action_flags
3619 * Holds the actions detected until now.
3621 * Pointer to the modify action.
3622 * @param[in] item_flags
3623 * Holds the items detected.
3625 * Pointer to error structure.
3628 * 0 on success, a negative errno value otherwise and rte_errno is set.
3631 flow_dv_validate_action_modify_mac(const uint64_t action_flags,
3632 const struct rte_flow_action *action,
3633 const uint64_t item_flags,
3634 struct rte_flow_error *error)
3638 ret = flow_dv_validate_action_modify_hdr(action_flags, action, error);
3640 if (!(item_flags & MLX5_FLOW_LAYER_L2))
3641 return rte_flow_error_set(error, EINVAL,
3642 RTE_FLOW_ERROR_TYPE_ACTION,
3644 "no L2 item in pattern");
3650 * Validate the modify-header IPv4 address actions.
3652 * @param[in] action_flags
3653 * Holds the actions detected until now.
3655 * Pointer to the modify action.
3656 * @param[in] item_flags
3657 * Holds the items detected.
3659 * Pointer to error structure.
3662 * 0 on success, a negative errno value otherwise and rte_errno is set.
3665 flow_dv_validate_action_modify_ipv4(const uint64_t action_flags,
3666 const struct rte_flow_action *action,
3667 const uint64_t item_flags,
3668 struct rte_flow_error *error)
3673 ret = flow_dv_validate_action_modify_hdr(action_flags, action, error);
3675 layer = (action_flags & MLX5_FLOW_ACTION_DECAP) ?
3676 MLX5_FLOW_LAYER_INNER_L3_IPV4 :
3677 MLX5_FLOW_LAYER_OUTER_L3_IPV4;
3678 if (!(item_flags & layer))
3679 return rte_flow_error_set(error, EINVAL,
3680 RTE_FLOW_ERROR_TYPE_ACTION,
3682 "no ipv4 item in pattern");
3688 * Validate the modify-header IPv6 address actions.
3690 * @param[in] action_flags
3691 * Holds the actions detected until now.
3693 * Pointer to the modify action.
3694 * @param[in] item_flags
3695 * Holds the items detected.
3697 * Pointer to error structure.
3700 * 0 on success, a negative errno value otherwise and rte_errno is set.
3703 flow_dv_validate_action_modify_ipv6(const uint64_t action_flags,
3704 const struct rte_flow_action *action,
3705 const uint64_t item_flags,
3706 struct rte_flow_error *error)
3711 ret = flow_dv_validate_action_modify_hdr(action_flags, action, error);
3713 layer = (action_flags & MLX5_FLOW_ACTION_DECAP) ?
3714 MLX5_FLOW_LAYER_INNER_L3_IPV6 :
3715 MLX5_FLOW_LAYER_OUTER_L3_IPV6;
3716 if (!(item_flags & layer))
3717 return rte_flow_error_set(error, EINVAL,
3718 RTE_FLOW_ERROR_TYPE_ACTION,
3720 "no ipv6 item in pattern");
3726 * Validate the modify-header TP actions.
3728 * @param[in] action_flags
3729 * Holds the actions detected until now.
3731 * Pointer to the modify action.
3732 * @param[in] item_flags
3733 * Holds the items detected.
3735 * Pointer to error structure.
3738 * 0 on success, a negative errno value otherwise and rte_errno is set.
3741 flow_dv_validate_action_modify_tp(const uint64_t action_flags,
3742 const struct rte_flow_action *action,
3743 const uint64_t item_flags,
3744 struct rte_flow_error *error)
3749 ret = flow_dv_validate_action_modify_hdr(action_flags, action, error);
3751 layer = (action_flags & MLX5_FLOW_ACTION_DECAP) ?
3752 MLX5_FLOW_LAYER_INNER_L4 :
3753 MLX5_FLOW_LAYER_OUTER_L4;
3754 if (!(item_flags & layer))
3755 return rte_flow_error_set(error, EINVAL,
3756 RTE_FLOW_ERROR_TYPE_ACTION,
3757 NULL, "no transport layer "
3764 * Validate the modify-header actions of increment/decrement
3765 * TCP Sequence-number.
3767 * @param[in] action_flags
3768 * Holds the actions detected until now.
3770 * Pointer to the modify action.
3771 * @param[in] item_flags
3772 * Holds the items detected.
3774 * Pointer to error structure.
3777 * 0 on success, a negative errno value otherwise and rte_errno is set.
3780 flow_dv_validate_action_modify_tcp_seq(const uint64_t action_flags,
3781 const struct rte_flow_action *action,
3782 const uint64_t item_flags,
3783 struct rte_flow_error *error)
3788 ret = flow_dv_validate_action_modify_hdr(action_flags, action, error);
3790 layer = (action_flags & MLX5_FLOW_ACTION_DECAP) ?
3791 MLX5_FLOW_LAYER_INNER_L4_TCP :
3792 MLX5_FLOW_LAYER_OUTER_L4_TCP;
3793 if (!(item_flags & layer))
3794 return rte_flow_error_set(error, EINVAL,
3795 RTE_FLOW_ERROR_TYPE_ACTION,
3796 NULL, "no TCP item in"
3798 if ((action->type == RTE_FLOW_ACTION_TYPE_INC_TCP_SEQ &&
3799 (action_flags & MLX5_FLOW_ACTION_DEC_TCP_SEQ)) ||
3800 (action->type == RTE_FLOW_ACTION_TYPE_DEC_TCP_SEQ &&
3801 (action_flags & MLX5_FLOW_ACTION_INC_TCP_SEQ)))
3802 return rte_flow_error_set(error, EINVAL,
3803 RTE_FLOW_ERROR_TYPE_ACTION,
3805 "cannot decrease and increase"
3806 " TCP sequence number"
3807 " at the same time");
3813 * Validate the modify-header actions of increment/decrement
3814 * TCP Acknowledgment number.
3816 * @param[in] action_flags
3817 * Holds the actions detected until now.
3819 * Pointer to the modify action.
3820 * @param[in] item_flags
3821 * Holds the items detected.
3823 * Pointer to error structure.
3826 * 0 on success, a negative errno value otherwise and rte_errno is set.
3829 flow_dv_validate_action_modify_tcp_ack(const uint64_t action_flags,
3830 const struct rte_flow_action *action,
3831 const uint64_t item_flags,
3832 struct rte_flow_error *error)
3837 ret = flow_dv_validate_action_modify_hdr(action_flags, action, error);
3839 layer = (action_flags & MLX5_FLOW_ACTION_DECAP) ?
3840 MLX5_FLOW_LAYER_INNER_L4_TCP :
3841 MLX5_FLOW_LAYER_OUTER_L4_TCP;
3842 if (!(item_flags & layer))
3843 return rte_flow_error_set(error, EINVAL,
3844 RTE_FLOW_ERROR_TYPE_ACTION,
3845 NULL, "no TCP item in"
3847 if ((action->type == RTE_FLOW_ACTION_TYPE_INC_TCP_ACK &&
3848 (action_flags & MLX5_FLOW_ACTION_DEC_TCP_ACK)) ||
3849 (action->type == RTE_FLOW_ACTION_TYPE_DEC_TCP_ACK &&
3850 (action_flags & MLX5_FLOW_ACTION_INC_TCP_ACK)))
3851 return rte_flow_error_set(error, EINVAL,
3852 RTE_FLOW_ERROR_TYPE_ACTION,
3854 "cannot decrease and increase"
3855 " TCP acknowledgment number"
3856 " at the same time");
3862 * Validate the modify-header TTL actions.
3864 * @param[in] action_flags
3865 * Holds the actions detected until now.
3867 * Pointer to the modify action.
3868 * @param[in] item_flags
3869 * Holds the items detected.
3871 * Pointer to error structure.
3874 * 0 on success, a negative errno value otherwise and rte_errno is set.
3877 flow_dv_validate_action_modify_ttl(const uint64_t action_flags,
3878 const struct rte_flow_action *action,
3879 const uint64_t item_flags,
3880 struct rte_flow_error *error)
3885 ret = flow_dv_validate_action_modify_hdr(action_flags, action, error);
3887 layer = (action_flags & MLX5_FLOW_ACTION_DECAP) ?
3888 MLX5_FLOW_LAYER_INNER_L3 :
3889 MLX5_FLOW_LAYER_OUTER_L3;
3890 if (!(item_flags & layer))
3891 return rte_flow_error_set(error, EINVAL,
3892 RTE_FLOW_ERROR_TYPE_ACTION,
3894 "no IP protocol in pattern");
3900 * Validate jump action.
3903 * Pointer to the jump action.
3904 * @param[in] action_flags
3905 * Holds the actions detected until now.
3906 * @param[in] attributes
3907 * Pointer to flow attributes
3908 * @param[in] external
3909 * Action belongs to flow rule created by request external to PMD.
3911 * Pointer to error structure.
3914 * 0 on success, a negative errno value otherwise and rte_errno is set.
3917 flow_dv_validate_action_jump(struct rte_eth_dev *dev,
3918 const struct mlx5_flow_tunnel *tunnel,
3919 const struct rte_flow_action *action,
3920 uint64_t action_flags,
3921 const struct rte_flow_attr *attributes,
3922 bool external, struct rte_flow_error *error)
3924 uint32_t target_group, table;
3926 struct flow_grp_info grp_info = {
3927 .external = !!external,
3928 .transfer = !!attributes->transfer,
3932 if (action_flags & (MLX5_FLOW_FATE_ACTIONS |
3933 MLX5_FLOW_FATE_ESWITCH_ACTIONS))
3934 return rte_flow_error_set(error, EINVAL,
3935 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
3936 "can't have 2 fate actions in"
3938 if (action_flags & MLX5_FLOW_ACTION_METER)
3939 return rte_flow_error_set(error, ENOTSUP,
3940 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
3941 "jump with meter not support");
3942 if ((action_flags & MLX5_FLOW_ACTION_SAMPLE) && fdb_mirror)
3943 return rte_flow_error_set(error, EINVAL,
3944 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
3945 "E-Switch mirroring can't support"
3946 " Sample action and jump action in"
3949 return rte_flow_error_set(error, EINVAL,
3950 RTE_FLOW_ERROR_TYPE_ACTION_CONF,
3951 NULL, "action configuration not set");
3953 ((const struct rte_flow_action_jump *)action->conf)->group;
3954 ret = mlx5_flow_group_to_table(dev, tunnel, target_group, &table,
3958 if (attributes->group == target_group &&
3959 !(action_flags & (MLX5_FLOW_ACTION_TUNNEL_SET |
3960 MLX5_FLOW_ACTION_TUNNEL_MATCH)))
3961 return rte_flow_error_set(error, EINVAL,
3962 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
3963 "target group must be other than"
3964 " the current flow group");
3969 * Validate the port_id action.
3972 * Pointer to rte_eth_dev structure.
3973 * @param[in] action_flags
3974 * Bit-fields that holds the actions detected until now.
3976 * Port_id RTE action structure.
3978 * Attributes of flow that includes this action.
3980 * Pointer to error structure.
3983 * 0 on success, a negative errno value otherwise and rte_errno is set.
3986 flow_dv_validate_action_port_id(struct rte_eth_dev *dev,
3987 uint64_t action_flags,
3988 const struct rte_flow_action *action,
3989 const struct rte_flow_attr *attr,
3990 struct rte_flow_error *error)
3992 const struct rte_flow_action_port_id *port_id;
3993 struct mlx5_priv *act_priv;
3994 struct mlx5_priv *dev_priv;
3997 if (!attr->transfer)
3998 return rte_flow_error_set(error, ENOTSUP,
3999 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
4001 "port id action is valid in transfer"
4003 if (!action || !action->conf)
4004 return rte_flow_error_set(error, ENOTSUP,
4005 RTE_FLOW_ERROR_TYPE_ACTION_CONF,
4007 "port id action parameters must be"
4009 if (action_flags & (MLX5_FLOW_FATE_ACTIONS |
4010 MLX5_FLOW_FATE_ESWITCH_ACTIONS))
4011 return rte_flow_error_set(error, EINVAL,
4012 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
4013 "can have only one fate actions in"
4015 dev_priv = mlx5_dev_to_eswitch_info(dev);
4017 return rte_flow_error_set(error, rte_errno,
4018 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
4020 "failed to obtain E-Switch info");
4021 port_id = action->conf;
4022 port = port_id->original ? dev->data->port_id : port_id->id;
4023 act_priv = mlx5_port_to_eswitch_info(port, false);
4025 return rte_flow_error_set
4027 RTE_FLOW_ERROR_TYPE_ACTION_CONF, port_id,
4028 "failed to obtain E-Switch port id for port");
4029 if (act_priv->domain_id != dev_priv->domain_id)
4030 return rte_flow_error_set
4032 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
4033 "port does not belong to"
4034 " E-Switch being configured");
4039 * Get the maximum number of modify header actions.
4042 * Pointer to rte_eth_dev structure.
4044 * Flags bits to check if root level.
4047 * Max number of modify header actions device can support.
4049 static inline unsigned int
4050 flow_dv_modify_hdr_action_max(struct rte_eth_dev *dev __rte_unused,
4054 * There's no way to directly query the max capacity from FW.
4055 * The maximal value on root table should be assumed to be supported.
4057 if (!(flags & MLX5DV_DR_ACTION_FLAGS_ROOT_LEVEL))
4058 return MLX5_MAX_MODIFY_NUM;
4060 return MLX5_ROOT_TBL_MODIFY_NUM;
4064 * Validate the meter action.
4067 * Pointer to rte_eth_dev structure.
4068 * @param[in] action_flags
4069 * Bit-fields that holds the actions detected until now.
4071 * Pointer to the meter action.
4073 * Attributes of flow that includes this action.
4075 * Pointer to error structure.
4078 * 0 on success, a negative errno value otherwise and rte_ernno is set.
4081 mlx5_flow_validate_action_meter(struct rte_eth_dev *dev,
4082 uint64_t action_flags,
4083 const struct rte_flow_action *action,
4084 const struct rte_flow_attr *attr,
4085 struct rte_flow_error *error)
4087 struct mlx5_priv *priv = dev->data->dev_private;
4088 const struct rte_flow_action_meter *am = action->conf;
4089 struct mlx5_flow_meter *fm;
4092 return rte_flow_error_set(error, EINVAL,
4093 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
4094 "meter action conf is NULL");
4096 if (action_flags & MLX5_FLOW_ACTION_METER)
4097 return rte_flow_error_set(error, ENOTSUP,
4098 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
4099 "meter chaining not support");
4100 if (action_flags & MLX5_FLOW_ACTION_JUMP)
4101 return rte_flow_error_set(error, ENOTSUP,
4102 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
4103 "meter with jump not support");
4105 return rte_flow_error_set(error, ENOTSUP,
4106 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
4108 "meter action not supported");
4109 fm = mlx5_flow_meter_find(priv, am->mtr_id);
4111 return rte_flow_error_set(error, EINVAL,
4112 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
4114 if (fm->ref_cnt && (!(fm->transfer == attr->transfer ||
4115 (!fm->ingress && !attr->ingress && attr->egress) ||
4116 (!fm->egress && !attr->egress && attr->ingress))))
4117 return rte_flow_error_set(error, EINVAL,
4118 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
4119 "Flow attributes are either invalid "
4120 "or have a conflict with current "
4121 "meter attributes");
4126 * Validate the age action.
4128 * @param[in] action_flags
4129 * Holds the actions detected until now.
4131 * Pointer to the age action.
4133 * Pointer to the Ethernet device structure.
4135 * Pointer to error structure.
4138 * 0 on success, a negative errno value otherwise and rte_errno is set.
4141 flow_dv_validate_action_age(uint64_t action_flags,
4142 const struct rte_flow_action *action,
4143 struct rte_eth_dev *dev,
4144 struct rte_flow_error *error)
4146 struct mlx5_priv *priv = dev->data->dev_private;
4147 const struct rte_flow_action_age *age = action->conf;
4149 if (!priv->config.devx || (priv->sh->cmng.counter_fallback &&
4150 !priv->sh->aso_age_mng))
4151 return rte_flow_error_set(error, ENOTSUP,
4152 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
4154 "age action not supported");
4155 if (!(action->conf))
4156 return rte_flow_error_set(error, EINVAL,
4157 RTE_FLOW_ERROR_TYPE_ACTION, action,
4158 "configuration cannot be null");
4159 if (!(age->timeout))
4160 return rte_flow_error_set(error, EINVAL,
4161 RTE_FLOW_ERROR_TYPE_ACTION, action,
4162 "invalid timeout value 0");
4163 if (action_flags & MLX5_FLOW_ACTION_AGE)
4164 return rte_flow_error_set(error, EINVAL,
4165 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
4166 "duplicate age actions set");
4171 * Validate the modify-header IPv4 DSCP actions.
4173 * @param[in] action_flags
4174 * Holds the actions detected until now.
4176 * Pointer to the modify action.
4177 * @param[in] item_flags
4178 * Holds the items detected.
4180 * Pointer to error structure.
4183 * 0 on success, a negative errno value otherwise and rte_errno is set.
4186 flow_dv_validate_action_modify_ipv4_dscp(const uint64_t action_flags,
4187 const struct rte_flow_action *action,
4188 const uint64_t item_flags,
4189 struct rte_flow_error *error)
4193 ret = flow_dv_validate_action_modify_hdr(action_flags, action, error);
4195 if (!(item_flags & MLX5_FLOW_LAYER_L3_IPV4))
4196 return rte_flow_error_set(error, EINVAL,
4197 RTE_FLOW_ERROR_TYPE_ACTION,
4199 "no ipv4 item in pattern");
4205 * Validate the modify-header IPv6 DSCP actions.
4207 * @param[in] action_flags
4208 * Holds the actions detected until now.
4210 * Pointer to the modify action.
4211 * @param[in] item_flags
4212 * Holds the items detected.
4214 * Pointer to error structure.
4217 * 0 on success, a negative errno value otherwise and rte_errno is set.
4220 flow_dv_validate_action_modify_ipv6_dscp(const uint64_t action_flags,
4221 const struct rte_flow_action *action,
4222 const uint64_t item_flags,
4223 struct rte_flow_error *error)
4227 ret = flow_dv_validate_action_modify_hdr(action_flags, action, error);
4229 if (!(item_flags & MLX5_FLOW_LAYER_L3_IPV6))
4230 return rte_flow_error_set(error, EINVAL,
4231 RTE_FLOW_ERROR_TYPE_ACTION,
4233 "no ipv6 item in pattern");
4239 * Match modify-header resource.
4242 * Pointer to the hash list.
4244 * Pointer to exist resource entry object.
4246 * Key of the new entry.
4248 * Pointer to new modify-header resource.
4251 * 0 on matching, non-zero otherwise.
4254 flow_dv_modify_match_cb(struct mlx5_hlist *list __rte_unused,
4255 struct mlx5_hlist_entry *entry,
4256 uint64_t key __rte_unused, void *cb_ctx)
4258 struct mlx5_flow_cb_ctx *ctx = cb_ctx;
4259 struct mlx5_flow_dv_modify_hdr_resource *ref = ctx->data;
4260 struct mlx5_flow_dv_modify_hdr_resource *resource =
4261 container_of(entry, typeof(*resource), entry);
4262 uint32_t key_len = sizeof(*ref) - offsetof(typeof(*ref), ft_type);
4264 key_len += ref->actions_num * sizeof(ref->actions[0]);
4265 return ref->actions_num != resource->actions_num ||
4266 memcmp(&ref->ft_type, &resource->ft_type, key_len);
4269 struct mlx5_hlist_entry *
4270 flow_dv_modify_create_cb(struct mlx5_hlist *list, uint64_t key __rte_unused,
4273 struct mlx5_dev_ctx_shared *sh = list->ctx;
4274 struct mlx5_flow_cb_ctx *ctx = cb_ctx;
4275 struct mlx5dv_dr_domain *ns;
4276 struct mlx5_flow_dv_modify_hdr_resource *entry;
4277 struct mlx5_flow_dv_modify_hdr_resource *ref = ctx->data;
4279 uint32_t data_len = ref->actions_num * sizeof(ref->actions[0]);
4280 uint32_t key_len = sizeof(*ref) - offsetof(typeof(*ref), ft_type);
4282 entry = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*entry) + data_len, 0,
4285 rte_flow_error_set(ctx->error, ENOMEM,
4286 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
4287 "cannot allocate resource memory");
4290 rte_memcpy(&entry->ft_type,
4291 RTE_PTR_ADD(ref, offsetof(typeof(*ref), ft_type)),
4292 key_len + data_len);
4293 if (entry->ft_type == MLX5DV_FLOW_TABLE_TYPE_FDB)
4294 ns = sh->fdb_domain;
4295 else if (entry->ft_type == MLX5DV_FLOW_TABLE_TYPE_NIC_TX)
4299 ret = mlx5_flow_os_create_flow_action_modify_header
4300 (sh->ctx, ns, entry,
4301 data_len, &entry->action);
4304 rte_flow_error_set(ctx->error, ENOMEM,
4305 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
4306 NULL, "cannot create modification action");
4309 return &entry->entry;
4313 * Validate the sample action.
4315 * @param[in] action_flags
4316 * Holds the actions detected until now.
4318 * Pointer to the sample action.
4320 * Pointer to the Ethernet device structure.
4322 * Attributes of flow that includes this action.
4324 * Pointer to error structure.
4327 * 0 on success, a negative errno value otherwise and rte_errno is set.
4330 flow_dv_validate_action_sample(uint64_t action_flags,
4331 const struct rte_flow_action *action,
4332 struct rte_eth_dev *dev,
4333 const struct rte_flow_attr *attr,
4334 struct rte_flow_error *error)
4336 struct mlx5_priv *priv = dev->data->dev_private;
4337 struct mlx5_dev_config *dev_conf = &priv->config;
4338 const struct rte_flow_action_sample *sample = action->conf;
4339 const struct rte_flow_action *act;
4340 uint64_t sub_action_flags = 0;
4341 uint16_t queue_index = 0xFFFF;
4347 return rte_flow_error_set(error, EINVAL,
4348 RTE_FLOW_ERROR_TYPE_ACTION, action,
4349 "configuration cannot be NULL");
4350 if (sample->ratio == 0)
4351 return rte_flow_error_set(error, EINVAL,
4352 RTE_FLOW_ERROR_TYPE_ACTION, action,
4353 "ratio value starts from 1");
4354 if (!priv->config.devx || (sample->ratio > 0 && !priv->sampler_en))
4355 return rte_flow_error_set(error, ENOTSUP,
4356 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
4358 "sample action not supported");
4359 if (action_flags & MLX5_FLOW_ACTION_SAMPLE)
4360 return rte_flow_error_set(error, EINVAL,
4361 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
4362 "Multiple sample actions not "
4364 if (action_flags & MLX5_FLOW_ACTION_METER)
4365 return rte_flow_error_set(error, EINVAL,
4366 RTE_FLOW_ERROR_TYPE_ACTION, action,
4367 "wrong action order, meter should "
4368 "be after sample action");
4369 if (action_flags & MLX5_FLOW_ACTION_JUMP)
4370 return rte_flow_error_set(error, EINVAL,
4371 RTE_FLOW_ERROR_TYPE_ACTION, action,
4372 "wrong action order, jump should "
4373 "be after sample action");
4374 act = sample->actions;
4375 for (; act->type != RTE_FLOW_ACTION_TYPE_END; act++) {
4376 if (actions_n == MLX5_DV_MAX_NUMBER_OF_ACTIONS)
4377 return rte_flow_error_set(error, ENOTSUP,
4378 RTE_FLOW_ERROR_TYPE_ACTION,
4379 act, "too many actions");
4380 switch (act->type) {
4381 case RTE_FLOW_ACTION_TYPE_QUEUE:
4382 ret = mlx5_flow_validate_action_queue(act,
4388 queue_index = ((const struct rte_flow_action_queue *)
4389 (act->conf))->index;
4390 sub_action_flags |= MLX5_FLOW_ACTION_QUEUE;
4393 case RTE_FLOW_ACTION_TYPE_MARK:
4394 ret = flow_dv_validate_action_mark(dev, act,
4399 if (dev_conf->dv_xmeta_en != MLX5_XMETA_MODE_LEGACY)
4400 sub_action_flags |= MLX5_FLOW_ACTION_MARK |
4401 MLX5_FLOW_ACTION_MARK_EXT;
4403 sub_action_flags |= MLX5_FLOW_ACTION_MARK;
4406 case RTE_FLOW_ACTION_TYPE_COUNT:
4407 ret = flow_dv_validate_action_count(dev, error);
4410 sub_action_flags |= MLX5_FLOW_ACTION_COUNT;
4413 case RTE_FLOW_ACTION_TYPE_PORT_ID:
4414 ret = flow_dv_validate_action_port_id(dev,
4421 sub_action_flags |= MLX5_FLOW_ACTION_PORT_ID;
4424 case RTE_FLOW_ACTION_TYPE_RAW_ENCAP:
4425 ret = flow_dv_validate_action_raw_encap_decap
4426 (dev, NULL, act->conf, attr, &sub_action_flags,
4433 return rte_flow_error_set(error, ENOTSUP,
4434 RTE_FLOW_ERROR_TYPE_ACTION,
4436 "Doesn't support optional "
4440 if (attr->ingress && !attr->transfer) {
4441 if (!(sub_action_flags & MLX5_FLOW_ACTION_QUEUE))
4442 return rte_flow_error_set(error, EINVAL,
4443 RTE_FLOW_ERROR_TYPE_ACTION,
4445 "Ingress must has a dest "
4446 "QUEUE for Sample");
4447 } else if (attr->egress && !attr->transfer) {
4448 return rte_flow_error_set(error, ENOTSUP,
4449 RTE_FLOW_ERROR_TYPE_ACTION,
4451 "Sample Only support Ingress "
4453 } else if (sample->actions->type != RTE_FLOW_ACTION_TYPE_END) {
4454 MLX5_ASSERT(attr->transfer);
4455 if (sample->ratio > 1)
4456 return rte_flow_error_set(error, ENOTSUP,
4457 RTE_FLOW_ERROR_TYPE_ACTION,
4459 "E-Switch doesn't support "
4460 "any optional action "
4463 if (sub_action_flags & MLX5_FLOW_ACTION_QUEUE)
4464 return rte_flow_error_set(error, ENOTSUP,
4465 RTE_FLOW_ERROR_TYPE_ACTION,
4467 "unsupported action QUEUE");
4468 if (!(sub_action_flags & MLX5_FLOW_ACTION_PORT_ID))
4469 return rte_flow_error_set(error, EINVAL,
4470 RTE_FLOW_ERROR_TYPE_ACTION,
4472 "E-Switch must has a dest "
4473 "port for mirroring");
4475 /* Continue validation for Xcap actions.*/
4476 if ((sub_action_flags & MLX5_FLOW_XCAP_ACTIONS) &&
4477 (queue_index == 0xFFFF ||
4478 mlx5_rxq_get_type(dev, queue_index) != MLX5_RXQ_TYPE_HAIRPIN)) {
4479 if ((sub_action_flags & MLX5_FLOW_XCAP_ACTIONS) ==
4480 MLX5_FLOW_XCAP_ACTIONS)
4481 return rte_flow_error_set(error, ENOTSUP,
4482 RTE_FLOW_ERROR_TYPE_ACTION,
4483 NULL, "encap and decap "
4484 "combination aren't "
4486 if (!attr->transfer && attr->ingress && (sub_action_flags &
4487 MLX5_FLOW_ACTION_ENCAP))
4488 return rte_flow_error_set(error, ENOTSUP,
4489 RTE_FLOW_ERROR_TYPE_ACTION,
4490 NULL, "encap is not supported"
4491 " for ingress traffic");
4497 * Find existing modify-header resource or create and register a new one.
4499 * @param dev[in, out]
4500 * Pointer to rte_eth_dev structure.
4501 * @param[in, out] resource
4502 * Pointer to modify-header resource.
4503 * @parm[in, out] dev_flow
4504 * Pointer to the dev_flow.
4506 * pointer to error structure.
4509 * 0 on success otherwise -errno and errno is set.
4512 flow_dv_modify_hdr_resource_register
4513 (struct rte_eth_dev *dev,
4514 struct mlx5_flow_dv_modify_hdr_resource *resource,
4515 struct mlx5_flow *dev_flow,
4516 struct rte_flow_error *error)
4518 struct mlx5_priv *priv = dev->data->dev_private;
4519 struct mlx5_dev_ctx_shared *sh = priv->sh;
4520 uint32_t key_len = sizeof(*resource) -
4521 offsetof(typeof(*resource), ft_type) +
4522 resource->actions_num * sizeof(resource->actions[0]);
4523 struct mlx5_hlist_entry *entry;
4524 struct mlx5_flow_cb_ctx ctx = {
4529 resource->flags = dev_flow->dv.group ? 0 :
4530 MLX5DV_DR_ACTION_FLAGS_ROOT_LEVEL;
4531 if (resource->actions_num > flow_dv_modify_hdr_action_max(dev,
4533 return rte_flow_error_set(error, EOVERFLOW,
4534 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
4535 "too many modify header items");
4536 resource->entry.key = __rte_raw_cksum(&resource->ft_type, key_len, 0);
4537 entry = mlx5_hlist_register(sh->modify_cmds, resource->entry.key, &ctx);
4540 resource = container_of(entry, typeof(*resource), entry);
4541 dev_flow->handle->dvh.modify_hdr = resource;
4546 * Get DV flow counter by index.
4549 * Pointer to the Ethernet device structure.
4551 * mlx5 flow counter index in the container.
4553 * mlx5 flow counter pool in the container,
4556 * Pointer to the counter, NULL otherwise.
4558 static struct mlx5_flow_counter *
4559 flow_dv_counter_get_by_idx(struct rte_eth_dev *dev,
4561 struct mlx5_flow_counter_pool **ppool)
4563 struct mlx5_priv *priv = dev->data->dev_private;
4564 struct mlx5_flow_counter_mng *cmng = &priv->sh->cmng;
4565 struct mlx5_flow_counter_pool *pool;
4567 /* Decrease to original index and clear shared bit. */
4568 idx = (idx - 1) & (MLX5_CNT_SHARED_OFFSET - 1);
4569 MLX5_ASSERT(idx / MLX5_COUNTERS_PER_POOL < cmng->n);
4570 pool = cmng->pools[idx / MLX5_COUNTERS_PER_POOL];
4574 return MLX5_POOL_GET_CNT(pool, idx % MLX5_COUNTERS_PER_POOL);
4578 * Check the devx counter belongs to the pool.
4581 * Pointer to the counter pool.
4583 * The counter devx ID.
4586 * True if counter belongs to the pool, false otherwise.
4589 flow_dv_is_counter_in_pool(struct mlx5_flow_counter_pool *pool, int id)
4591 int base = (pool->min_dcs->id / MLX5_COUNTERS_PER_POOL) *
4592 MLX5_COUNTERS_PER_POOL;
4594 if (id >= base && id < base + MLX5_COUNTERS_PER_POOL)
4600 * Get a pool by devx counter ID.
4603 * Pointer to the counter management.
4605 * The counter devx ID.
4608 * The counter pool pointer if exists, NULL otherwise,
4610 static struct mlx5_flow_counter_pool *
4611 flow_dv_find_pool_by_id(struct mlx5_flow_counter_mng *cmng, int id)
4614 struct mlx5_flow_counter_pool *pool = NULL;
4616 rte_spinlock_lock(&cmng->pool_update_sl);
4617 /* Check last used pool. */
4618 if (cmng->last_pool_idx != POOL_IDX_INVALID &&
4619 flow_dv_is_counter_in_pool(cmng->pools[cmng->last_pool_idx], id)) {
4620 pool = cmng->pools[cmng->last_pool_idx];
4623 /* ID out of range means no suitable pool in the container. */
4624 if (id > cmng->max_id || id < cmng->min_id)
4627 * Find the pool from the end of the container, since mostly counter
4628 * ID is sequence increasing, and the last pool should be the needed
4633 struct mlx5_flow_counter_pool *pool_tmp = cmng->pools[i];
4635 if (flow_dv_is_counter_in_pool(pool_tmp, id)) {
4641 rte_spinlock_unlock(&cmng->pool_update_sl);
4646 * Resize a counter container.
4649 * Pointer to the Ethernet device structure.
4652 * 0 on success, otherwise negative errno value and rte_errno is set.
4655 flow_dv_container_resize(struct rte_eth_dev *dev)
4657 struct mlx5_priv *priv = dev->data->dev_private;
4658 struct mlx5_flow_counter_mng *cmng = &priv->sh->cmng;
4659 void *old_pools = cmng->pools;
4660 uint32_t resize = cmng->n + MLX5_CNT_CONTAINER_RESIZE;
4661 uint32_t mem_size = sizeof(struct mlx5_flow_counter_pool *) * resize;
4662 void *pools = mlx5_malloc(MLX5_MEM_ZERO, mem_size, 0, SOCKET_ID_ANY);
4669 memcpy(pools, old_pools, cmng->n *
4670 sizeof(struct mlx5_flow_counter_pool *));
4672 cmng->pools = pools;
4674 mlx5_free(old_pools);
4679 * Query a devx flow counter.
4682 * Pointer to the Ethernet device structure.
4684 * Index to the flow counter.
4686 * The statistics value of packets.
4688 * The statistics value of bytes.
4691 * 0 on success, otherwise a negative errno value and rte_errno is set.
4694 _flow_dv_query_count(struct rte_eth_dev *dev, uint32_t counter, uint64_t *pkts,
4697 struct mlx5_priv *priv = dev->data->dev_private;
4698 struct mlx5_flow_counter_pool *pool = NULL;
4699 struct mlx5_flow_counter *cnt;
4702 cnt = flow_dv_counter_get_by_idx(dev, counter, &pool);
4704 if (priv->sh->cmng.counter_fallback)
4705 return mlx5_devx_cmd_flow_counter_query(cnt->dcs_when_active, 0,
4706 0, pkts, bytes, 0, NULL, NULL, 0);
4707 rte_spinlock_lock(&pool->sl);
4712 offset = MLX5_CNT_ARRAY_IDX(pool, cnt);
4713 *pkts = rte_be_to_cpu_64(pool->raw->data[offset].hits);
4714 *bytes = rte_be_to_cpu_64(pool->raw->data[offset].bytes);
4716 rte_spinlock_unlock(&pool->sl);
4721 * Create and initialize a new counter pool.
4724 * Pointer to the Ethernet device structure.
4726 * The devX counter handle.
4728 * Whether the pool is for counter that was allocated for aging.
4729 * @param[in/out] cont_cur
4730 * Pointer to the container pointer, it will be update in pool resize.
4733 * The pool container pointer on success, NULL otherwise and rte_errno is set.
4735 static struct mlx5_flow_counter_pool *
4736 flow_dv_pool_create(struct rte_eth_dev *dev, struct mlx5_devx_obj *dcs,
4739 struct mlx5_priv *priv = dev->data->dev_private;
4740 struct mlx5_flow_counter_pool *pool;
4741 struct mlx5_flow_counter_mng *cmng = &priv->sh->cmng;
4742 bool fallback = priv->sh->cmng.counter_fallback;
4743 uint32_t size = sizeof(*pool);
4745 size += MLX5_COUNTERS_PER_POOL * MLX5_CNT_SIZE;
4746 size += (!age ? 0 : MLX5_COUNTERS_PER_POOL * MLX5_AGE_SIZE);
4747 pool = mlx5_malloc(MLX5_MEM_ZERO, size, 0, SOCKET_ID_ANY);
4753 pool->is_aged = !!age;
4754 pool->query_gen = 0;
4755 pool->min_dcs = dcs;
4756 rte_spinlock_init(&pool->sl);
4757 rte_spinlock_init(&pool->csl);
4758 TAILQ_INIT(&pool->counters[0]);
4759 TAILQ_INIT(&pool->counters[1]);
4760 pool->time_of_last_age_check = MLX5_CURR_TIME_SEC;
4761 rte_spinlock_lock(&cmng->pool_update_sl);
4762 pool->index = cmng->n_valid;
4763 if (pool->index == cmng->n && flow_dv_container_resize(dev)) {
4765 rte_spinlock_unlock(&cmng->pool_update_sl);
4768 cmng->pools[pool->index] = pool;
4770 if (unlikely(fallback)) {
4771 int base = RTE_ALIGN_FLOOR(dcs->id, MLX5_COUNTERS_PER_POOL);
4773 if (base < cmng->min_id)
4774 cmng->min_id = base;
4775 if (base > cmng->max_id)
4776 cmng->max_id = base + MLX5_COUNTERS_PER_POOL - 1;
4777 cmng->last_pool_idx = pool->index;
4779 rte_spinlock_unlock(&cmng->pool_update_sl);
4784 * Prepare a new counter and/or a new counter pool.
4787 * Pointer to the Ethernet device structure.
4788 * @param[out] cnt_free
4789 * Where to put the pointer of a new counter.
4791 * Whether the pool is for counter that was allocated for aging.
4794 * The counter pool pointer and @p cnt_free is set on success,
4795 * NULL otherwise and rte_errno is set.
4797 static struct mlx5_flow_counter_pool *
4798 flow_dv_counter_pool_prepare(struct rte_eth_dev *dev,
4799 struct mlx5_flow_counter **cnt_free,
4802 struct mlx5_priv *priv = dev->data->dev_private;
4803 struct mlx5_flow_counter_mng *cmng = &priv->sh->cmng;
4804 struct mlx5_flow_counter_pool *pool;
4805 struct mlx5_counters tmp_tq;
4806 struct mlx5_devx_obj *dcs = NULL;
4807 struct mlx5_flow_counter *cnt;
4808 enum mlx5_counter_type cnt_type =
4809 age ? MLX5_COUNTER_TYPE_AGE : MLX5_COUNTER_TYPE_ORIGIN;
4810 bool fallback = priv->sh->cmng.counter_fallback;
4814 /* bulk_bitmap must be 0 for single counter allocation. */
4815 dcs = mlx5_devx_cmd_flow_counter_alloc(priv->sh->ctx, 0);
4818 pool = flow_dv_find_pool_by_id(cmng, dcs->id);
4820 pool = flow_dv_pool_create(dev, dcs, age);
4822 mlx5_devx_cmd_destroy(dcs);
4826 i = dcs->id % MLX5_COUNTERS_PER_POOL;
4827 cnt = MLX5_POOL_GET_CNT(pool, i);
4829 cnt->dcs_when_free = dcs;
4833 dcs = mlx5_devx_cmd_flow_counter_alloc(priv->sh->ctx, 0x4);
4835 rte_errno = ENODATA;
4838 pool = flow_dv_pool_create(dev, dcs, age);
4840 mlx5_devx_cmd_destroy(dcs);
4843 TAILQ_INIT(&tmp_tq);
4844 for (i = 1; i < MLX5_COUNTERS_PER_POOL; ++i) {
4845 cnt = MLX5_POOL_GET_CNT(pool, i);
4847 TAILQ_INSERT_HEAD(&tmp_tq, cnt, next);
4849 rte_spinlock_lock(&cmng->csl[cnt_type]);
4850 TAILQ_CONCAT(&cmng->counters[cnt_type], &tmp_tq, next);
4851 rte_spinlock_unlock(&cmng->csl[cnt_type]);
4852 *cnt_free = MLX5_POOL_GET_CNT(pool, 0);
4853 (*cnt_free)->pool = pool;
4858 * Allocate a flow counter.
4861 * Pointer to the Ethernet device structure.
4863 * Whether the counter was allocated for aging.
4866 * Index to flow counter on success, 0 otherwise and rte_errno is set.
4869 flow_dv_counter_alloc(struct rte_eth_dev *dev, uint32_t age)
4871 struct mlx5_priv *priv = dev->data->dev_private;
4872 struct mlx5_flow_counter_pool *pool = NULL;
4873 struct mlx5_flow_counter *cnt_free = NULL;
4874 bool fallback = priv->sh->cmng.counter_fallback;
4875 struct mlx5_flow_counter_mng *cmng = &priv->sh->cmng;
4876 enum mlx5_counter_type cnt_type =
4877 age ? MLX5_COUNTER_TYPE_AGE : MLX5_COUNTER_TYPE_ORIGIN;
4880 if (!priv->config.devx) {
4881 rte_errno = ENOTSUP;
4884 /* Get free counters from container. */
4885 rte_spinlock_lock(&cmng->csl[cnt_type]);
4886 cnt_free = TAILQ_FIRST(&cmng->counters[cnt_type]);
4888 TAILQ_REMOVE(&cmng->counters[cnt_type], cnt_free, next);
4889 rte_spinlock_unlock(&cmng->csl[cnt_type]);
4890 if (!cnt_free && !flow_dv_counter_pool_prepare(dev, &cnt_free, age))
4892 pool = cnt_free->pool;
4894 cnt_free->dcs_when_active = cnt_free->dcs_when_free;
4895 /* Create a DV counter action only in the first time usage. */
4896 if (!cnt_free->action) {
4898 struct mlx5_devx_obj *dcs;
4902 offset = MLX5_CNT_ARRAY_IDX(pool, cnt_free);
4903 dcs = pool->min_dcs;
4906 dcs = cnt_free->dcs_when_free;
4908 ret = mlx5_flow_os_create_flow_action_count(dcs->obj, offset,
4915 cnt_idx = MLX5_MAKE_CNT_IDX(pool->index,
4916 MLX5_CNT_ARRAY_IDX(pool, cnt_free));
4917 /* Update the counter reset values. */
4918 if (_flow_dv_query_count(dev, cnt_idx, &cnt_free->hits,
4921 if (!fallback && !priv->sh->cmng.query_thread_on)
4922 /* Start the asynchronous batch query by the host thread. */
4923 mlx5_set_query_alarm(priv->sh);
4927 cnt_free->pool = pool;
4929 cnt_free->dcs_when_free = cnt_free->dcs_when_active;
4930 rte_spinlock_lock(&cmng->csl[cnt_type]);
4931 TAILQ_INSERT_TAIL(&cmng->counters[cnt_type], cnt_free, next);
4932 rte_spinlock_unlock(&cmng->csl[cnt_type]);
4938 * Allocate a shared flow counter.
4941 * Pointer to the shared counter configuration.
4943 * Pointer to save the allocated counter index.
4946 * Index to flow counter on success, 0 otherwise and rte_errno is set.
4950 flow_dv_counter_alloc_shared_cb(void *ctx, union mlx5_l3t_data *data)
4952 struct mlx5_shared_counter_conf *conf = ctx;
4953 struct rte_eth_dev *dev = conf->dev;
4954 struct mlx5_flow_counter *cnt;
4956 data->dword = flow_dv_counter_alloc(dev, 0);
4957 data->dword |= MLX5_CNT_SHARED_OFFSET;
4958 cnt = flow_dv_counter_get_by_idx(dev, data->dword, NULL);
4959 cnt->shared_info.id = conf->id;
4964 * Get a shared flow counter.
4967 * Pointer to the Ethernet device structure.
4969 * Counter identifier.
4972 * Index to flow counter on success, 0 otherwise and rte_errno is set.
4975 flow_dv_counter_get_shared(struct rte_eth_dev *dev, uint32_t id)
4977 struct mlx5_priv *priv = dev->data->dev_private;
4978 struct mlx5_shared_counter_conf conf = {
4982 union mlx5_l3t_data data = {
4986 mlx5_l3t_prepare_entry(priv->sh->cnt_id_tbl, id, &data,
4987 flow_dv_counter_alloc_shared_cb, &conf);
4992 * Get age param from counter index.
4995 * Pointer to the Ethernet device structure.
4996 * @param[in] counter
4997 * Index to the counter handler.
5000 * The aging parameter specified for the counter index.
5002 static struct mlx5_age_param*
5003 flow_dv_counter_idx_get_age(struct rte_eth_dev *dev,
5006 struct mlx5_flow_counter *cnt;
5007 struct mlx5_flow_counter_pool *pool = NULL;
5009 flow_dv_counter_get_by_idx(dev, counter, &pool);
5010 counter = (counter - 1) % MLX5_COUNTERS_PER_POOL;
5011 cnt = MLX5_POOL_GET_CNT(pool, counter);
5012 return MLX5_CNT_TO_AGE(cnt);
5016 * Remove a flow counter from aged counter list.
5019 * Pointer to the Ethernet device structure.
5020 * @param[in] counter
5021 * Index to the counter handler.
5023 * Pointer to the counter handler.
5026 flow_dv_counter_remove_from_age(struct rte_eth_dev *dev,
5027 uint32_t counter, struct mlx5_flow_counter *cnt)
5029 struct mlx5_age_info *age_info;
5030 struct mlx5_age_param *age_param;
5031 struct mlx5_priv *priv = dev->data->dev_private;
5032 uint16_t expected = AGE_CANDIDATE;
5034 age_info = GET_PORT_AGE_INFO(priv);
5035 age_param = flow_dv_counter_idx_get_age(dev, counter);
5036 if (!__atomic_compare_exchange_n(&age_param->state, &expected,
5037 AGE_FREE, false, __ATOMIC_RELAXED,
5038 __ATOMIC_RELAXED)) {
5040 * We need the lock even it is age timeout,
5041 * since counter may still in process.
5043 rte_spinlock_lock(&age_info->aged_sl);
5044 TAILQ_REMOVE(&age_info->aged_counters, cnt, next);
5045 rte_spinlock_unlock(&age_info->aged_sl);
5046 __atomic_store_n(&age_param->state, AGE_FREE, __ATOMIC_RELAXED);
5051 * Release a flow counter.
5054 * Pointer to the Ethernet device structure.
5055 * @param[in] counter
5056 * Index to the counter handler.
5059 flow_dv_counter_free(struct rte_eth_dev *dev, uint32_t counter)
5061 struct mlx5_priv *priv = dev->data->dev_private;
5062 struct mlx5_flow_counter_pool *pool = NULL;
5063 struct mlx5_flow_counter *cnt;
5064 enum mlx5_counter_type cnt_type;
5068 cnt = flow_dv_counter_get_by_idx(dev, counter, &pool);
5070 if (IS_SHARED_CNT(counter) &&
5071 mlx5_l3t_clear_entry(priv->sh->cnt_id_tbl, cnt->shared_info.id))
5074 flow_dv_counter_remove_from_age(dev, counter, cnt);
5077 * Put the counter back to list to be updated in none fallback mode.
5078 * Currently, we are using two list alternately, while one is in query,
5079 * add the freed counter to the other list based on the pool query_gen
5080 * value. After query finishes, add counter the list to the global
5081 * container counter list. The list changes while query starts. In
5082 * this case, lock will not be needed as query callback and release
5083 * function both operate with the different list.
5086 if (!priv->sh->cmng.counter_fallback) {
5087 rte_spinlock_lock(&pool->csl);
5088 TAILQ_INSERT_TAIL(&pool->counters[pool->query_gen], cnt, next);
5089 rte_spinlock_unlock(&pool->csl);
5091 cnt->dcs_when_free = cnt->dcs_when_active;
5092 cnt_type = pool->is_aged ? MLX5_COUNTER_TYPE_AGE :
5093 MLX5_COUNTER_TYPE_ORIGIN;
5094 rte_spinlock_lock(&priv->sh->cmng.csl[cnt_type]);
5095 TAILQ_INSERT_TAIL(&priv->sh->cmng.counters[cnt_type],
5097 rte_spinlock_unlock(&priv->sh->cmng.csl[cnt_type]);
5102 * Verify the @p attributes will be correctly understood by the NIC and store
5103 * them in the @p flow if everything is correct.
5106 * Pointer to dev struct.
5107 * @param[in] attributes
5108 * Pointer to flow attributes
5109 * @param[in] external
5110 * This flow rule is created by request external to PMD.
5112 * Pointer to error structure.
5115 * - 0 on success and non root table.
5116 * - 1 on success and root table.
5117 * - a negative errno value otherwise and rte_errno is set.
5120 flow_dv_validate_attributes(struct rte_eth_dev *dev,
5121 const struct mlx5_flow_tunnel *tunnel,
5122 const struct rte_flow_attr *attributes,
5123 const struct flow_grp_info *grp_info,
5124 struct rte_flow_error *error)
5126 struct mlx5_priv *priv = dev->data->dev_private;
5127 uint32_t priority_max = priv->config.flow_prio - 1;
5130 #ifndef HAVE_MLX5DV_DR
5131 RTE_SET_USED(tunnel);
5132 RTE_SET_USED(grp_info);
5133 if (attributes->group)
5134 return rte_flow_error_set(error, ENOTSUP,
5135 RTE_FLOW_ERROR_TYPE_ATTR_GROUP,
5137 "groups are not supported");
5141 ret = mlx5_flow_group_to_table(dev, tunnel, attributes->group, &table,
5146 ret = MLX5DV_DR_ACTION_FLAGS_ROOT_LEVEL;
5148 if (attributes->priority != MLX5_FLOW_PRIO_RSVD &&
5149 attributes->priority >= priority_max)
5150 return rte_flow_error_set(error, ENOTSUP,
5151 RTE_FLOW_ERROR_TYPE_ATTR_PRIORITY,
5153 "priority out of range");
5154 if (attributes->transfer) {
5155 if (!priv->config.dv_esw_en)
5156 return rte_flow_error_set
5158 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
5159 "E-Switch dr is not supported");
5160 if (!(priv->representor || priv->master))
5161 return rte_flow_error_set
5162 (error, EINVAL, RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
5163 NULL, "E-Switch configuration can only be"
5164 " done by a master or a representor device");
5165 if (attributes->egress)
5166 return rte_flow_error_set
5168 RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, attributes,
5169 "egress is not supported");
5171 if (!(attributes->egress ^ attributes->ingress))
5172 return rte_flow_error_set(error, ENOTSUP,
5173 RTE_FLOW_ERROR_TYPE_ATTR, NULL,
5174 "must specify exactly one of "
5175 "ingress or egress");
5180 * Internal validation function. For validating both actions and items.
5183 * Pointer to the rte_eth_dev structure.
5185 * Pointer to the flow attributes.
5187 * Pointer to the list of items.
5188 * @param[in] actions
5189 * Pointer to the list of actions.
5190 * @param[in] external
5191 * This flow rule is created by request external to PMD.
5192 * @param[in] hairpin
5193 * Number of hairpin TX actions, 0 means classic flow.
5195 * Pointer to the error structure.
5198 * 0 on success, a negative errno value otherwise and rte_errno is set.
5201 flow_dv_validate(struct rte_eth_dev *dev, const struct rte_flow_attr *attr,
5202 const struct rte_flow_item items[],
5203 const struct rte_flow_action actions[],
5204 bool external, int hairpin, struct rte_flow_error *error)
5207 uint64_t action_flags = 0;
5208 uint64_t item_flags = 0;
5209 uint64_t last_item = 0;
5210 uint8_t next_protocol = 0xff;
5211 uint16_t ether_type = 0;
5213 uint8_t item_ipv6_proto = 0;
5214 const struct rte_flow_item *gre_item = NULL;
5215 const struct rte_flow_action_raw_decap *decap;
5216 const struct rte_flow_action_raw_encap *encap;
5217 const struct rte_flow_action_rss *rss;
5218 const struct rte_flow_item_tcp nic_tcp_mask = {
5221 .src_port = RTE_BE16(UINT16_MAX),
5222 .dst_port = RTE_BE16(UINT16_MAX),
5225 const struct rte_flow_item_ipv6 nic_ipv6_mask = {
5228 "\xff\xff\xff\xff\xff\xff\xff\xff"
5229 "\xff\xff\xff\xff\xff\xff\xff\xff",
5231 "\xff\xff\xff\xff\xff\xff\xff\xff"
5232 "\xff\xff\xff\xff\xff\xff\xff\xff",
5233 .vtc_flow = RTE_BE32(0xffffffff),
5239 const struct rte_flow_item_ecpri nic_ecpri_mask = {
5243 RTE_BE32(((const struct rte_ecpri_common_hdr) {
5247 .dummy[0] = 0xffffffff,
5250 struct mlx5_priv *priv = dev->data->dev_private;
5251 struct mlx5_dev_config *dev_conf = &priv->config;
5252 uint16_t queue_index = 0xFFFF;
5253 const struct rte_flow_item_vlan *vlan_m = NULL;
5254 int16_t rw_act_num = 0;
5256 const struct mlx5_flow_tunnel *tunnel;
5257 struct flow_grp_info grp_info = {
5258 .external = !!external,
5259 .transfer = !!attr->transfer,
5260 .fdb_def_rule = !!priv->fdb_def_rule,
5262 const struct rte_eth_hairpin_conf *conf;
5266 if (is_flow_tunnel_match_rule(dev, attr, items, actions)) {
5267 tunnel = flow_items_to_tunnel(items);
5268 action_flags |= MLX5_FLOW_ACTION_TUNNEL_MATCH |
5269 MLX5_FLOW_ACTION_DECAP;
5270 } else if (is_flow_tunnel_steer_rule(dev, attr, items, actions)) {
5271 tunnel = flow_actions_to_tunnel(actions);
5272 action_flags |= MLX5_FLOW_ACTION_TUNNEL_SET;
5276 grp_info.std_tbl_fix = tunnel_use_standard_attr_group_translate
5277 (dev, tunnel, attr, items, actions);
5278 ret = flow_dv_validate_attributes(dev, tunnel, attr, &grp_info, error);
5281 is_root = (uint64_t)ret;
5282 for (; items->type != RTE_FLOW_ITEM_TYPE_END; items++) {
5283 int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
5284 int type = items->type;
5286 if (!mlx5_flow_os_item_supported(type))
5287 return rte_flow_error_set(error, ENOTSUP,
5288 RTE_FLOW_ERROR_TYPE_ITEM,
5289 NULL, "item not supported");
5291 case MLX5_RTE_FLOW_ITEM_TYPE_TUNNEL:
5292 if (items[0].type != (typeof(items[0].type))
5293 MLX5_RTE_FLOW_ITEM_TYPE_TUNNEL)
5294 return rte_flow_error_set
5296 RTE_FLOW_ERROR_TYPE_ITEM,
5297 NULL, "MLX5 private items "
5298 "must be the first");
5300 case RTE_FLOW_ITEM_TYPE_VOID:
5302 case RTE_FLOW_ITEM_TYPE_PORT_ID:
5303 ret = flow_dv_validate_item_port_id
5304 (dev, items, attr, item_flags, error);
5307 last_item = MLX5_FLOW_ITEM_PORT_ID;
5309 case RTE_FLOW_ITEM_TYPE_ETH:
5310 ret = mlx5_flow_validate_item_eth(items, item_flags,
5314 last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L2 :
5315 MLX5_FLOW_LAYER_OUTER_L2;
5316 if (items->mask != NULL && items->spec != NULL) {
5318 ((const struct rte_flow_item_eth *)
5321 ((const struct rte_flow_item_eth *)
5323 ether_type = rte_be_to_cpu_16(ether_type);
5328 case RTE_FLOW_ITEM_TYPE_VLAN:
5329 ret = flow_dv_validate_item_vlan(items, item_flags,
5333 last_item = tunnel ? MLX5_FLOW_LAYER_INNER_VLAN :
5334 MLX5_FLOW_LAYER_OUTER_VLAN;
5335 if (items->mask != NULL && items->spec != NULL) {
5337 ((const struct rte_flow_item_vlan *)
5338 items->spec)->inner_type;
5340 ((const struct rte_flow_item_vlan *)
5341 items->mask)->inner_type;
5342 ether_type = rte_be_to_cpu_16(ether_type);
5346 /* Store outer VLAN mask for of_push_vlan action. */
5348 vlan_m = items->mask;
5350 case RTE_FLOW_ITEM_TYPE_IPV4:
5351 mlx5_flow_tunnel_ip_check(items, next_protocol,
5352 &item_flags, &tunnel);
5353 ret = flow_dv_validate_item_ipv4(items, item_flags,
5354 last_item, ether_type,
5358 last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L3_IPV4 :
5359 MLX5_FLOW_LAYER_OUTER_L3_IPV4;
5360 if (items->mask != NULL &&
5361 ((const struct rte_flow_item_ipv4 *)
5362 items->mask)->hdr.next_proto_id) {
5364 ((const struct rte_flow_item_ipv4 *)
5365 (items->spec))->hdr.next_proto_id;
5367 ((const struct rte_flow_item_ipv4 *)
5368 (items->mask))->hdr.next_proto_id;
5370 /* Reset for inner layer. */
5371 next_protocol = 0xff;
5374 case RTE_FLOW_ITEM_TYPE_IPV6:
5375 mlx5_flow_tunnel_ip_check(items, next_protocol,
5376 &item_flags, &tunnel);
5377 ret = mlx5_flow_validate_item_ipv6(items, item_flags,
5384 last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L3_IPV6 :
5385 MLX5_FLOW_LAYER_OUTER_L3_IPV6;
5386 if (items->mask != NULL &&
5387 ((const struct rte_flow_item_ipv6 *)
5388 items->mask)->hdr.proto) {
5390 ((const struct rte_flow_item_ipv6 *)
5391 items->spec)->hdr.proto;
5393 ((const struct rte_flow_item_ipv6 *)
5394 items->spec)->hdr.proto;
5396 ((const struct rte_flow_item_ipv6 *)
5397 items->mask)->hdr.proto;
5399 /* Reset for inner layer. */
5400 next_protocol = 0xff;
5403 case RTE_FLOW_ITEM_TYPE_IPV6_FRAG_EXT:
5404 ret = flow_dv_validate_item_ipv6_frag_ext(items,
5409 last_item = tunnel ?
5410 MLX5_FLOW_LAYER_INNER_L3_IPV6_FRAG_EXT :
5411 MLX5_FLOW_LAYER_OUTER_L3_IPV6_FRAG_EXT;
5412 if (items->mask != NULL &&
5413 ((const struct rte_flow_item_ipv6_frag_ext *)
5414 items->mask)->hdr.next_header) {
5416 ((const struct rte_flow_item_ipv6_frag_ext *)
5417 items->spec)->hdr.next_header;
5419 ((const struct rte_flow_item_ipv6_frag_ext *)
5420 items->mask)->hdr.next_header;
5422 /* Reset for inner layer. */
5423 next_protocol = 0xff;
5426 case RTE_FLOW_ITEM_TYPE_TCP:
5427 ret = mlx5_flow_validate_item_tcp
5434 last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L4_TCP :
5435 MLX5_FLOW_LAYER_OUTER_L4_TCP;
5437 case RTE_FLOW_ITEM_TYPE_UDP:
5438 ret = mlx5_flow_validate_item_udp(items, item_flags,
5443 last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L4_UDP :
5444 MLX5_FLOW_LAYER_OUTER_L4_UDP;
5446 case RTE_FLOW_ITEM_TYPE_GRE:
5447 ret = mlx5_flow_validate_item_gre(items, item_flags,
5448 next_protocol, error);
5452 last_item = MLX5_FLOW_LAYER_GRE;
5454 case RTE_FLOW_ITEM_TYPE_NVGRE:
5455 ret = mlx5_flow_validate_item_nvgre(items, item_flags,
5460 last_item = MLX5_FLOW_LAYER_NVGRE;
5462 case RTE_FLOW_ITEM_TYPE_GRE_KEY:
5463 ret = mlx5_flow_validate_item_gre_key
5464 (items, item_flags, gre_item, error);
5467 last_item = MLX5_FLOW_LAYER_GRE_KEY;
5469 case RTE_FLOW_ITEM_TYPE_VXLAN:
5470 ret = mlx5_flow_validate_item_vxlan(items, item_flags,
5474 last_item = MLX5_FLOW_LAYER_VXLAN;
5476 case RTE_FLOW_ITEM_TYPE_VXLAN_GPE:
5477 ret = mlx5_flow_validate_item_vxlan_gpe(items,
5482 last_item = MLX5_FLOW_LAYER_VXLAN_GPE;
5484 case RTE_FLOW_ITEM_TYPE_GENEVE:
5485 ret = mlx5_flow_validate_item_geneve(items,
5490 last_item = MLX5_FLOW_LAYER_GENEVE;
5492 case RTE_FLOW_ITEM_TYPE_MPLS:
5493 ret = mlx5_flow_validate_item_mpls(dev, items,
5498 last_item = MLX5_FLOW_LAYER_MPLS;
5501 case RTE_FLOW_ITEM_TYPE_MARK:
5502 ret = flow_dv_validate_item_mark(dev, items, attr,
5506 last_item = MLX5_FLOW_ITEM_MARK;
5508 case RTE_FLOW_ITEM_TYPE_META:
5509 ret = flow_dv_validate_item_meta(dev, items, attr,
5513 last_item = MLX5_FLOW_ITEM_METADATA;
5515 case RTE_FLOW_ITEM_TYPE_ICMP:
5516 ret = mlx5_flow_validate_item_icmp(items, item_flags,
5521 last_item = MLX5_FLOW_LAYER_ICMP;
5523 case RTE_FLOW_ITEM_TYPE_ICMP6:
5524 ret = mlx5_flow_validate_item_icmp6(items, item_flags,
5529 item_ipv6_proto = IPPROTO_ICMPV6;
5530 last_item = MLX5_FLOW_LAYER_ICMP6;
5532 case RTE_FLOW_ITEM_TYPE_TAG:
5533 ret = flow_dv_validate_item_tag(dev, items,
5537 last_item = MLX5_FLOW_ITEM_TAG;
5539 case MLX5_RTE_FLOW_ITEM_TYPE_TAG:
5540 case MLX5_RTE_FLOW_ITEM_TYPE_TX_QUEUE:
5542 case RTE_FLOW_ITEM_TYPE_GTP:
5543 ret = flow_dv_validate_item_gtp(dev, items, item_flags,
5547 last_item = MLX5_FLOW_LAYER_GTP;
5549 case RTE_FLOW_ITEM_TYPE_ECPRI:
5550 /* Capacity will be checked in the translate stage. */
5551 ret = mlx5_flow_validate_item_ecpri(items, item_flags,
5558 last_item = MLX5_FLOW_LAYER_ECPRI;
5561 return rte_flow_error_set(error, ENOTSUP,
5562 RTE_FLOW_ERROR_TYPE_ITEM,
5563 NULL, "item not supported");
5565 item_flags |= last_item;
5567 for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
5568 int type = actions->type;
5570 if (!mlx5_flow_os_action_supported(type))
5571 return rte_flow_error_set(error, ENOTSUP,
5572 RTE_FLOW_ERROR_TYPE_ACTION,
5574 "action not supported");
5575 if (actions_n == MLX5_DV_MAX_NUMBER_OF_ACTIONS)
5576 return rte_flow_error_set(error, ENOTSUP,
5577 RTE_FLOW_ERROR_TYPE_ACTION,
5578 actions, "too many actions");
5580 case RTE_FLOW_ACTION_TYPE_VOID:
5582 case RTE_FLOW_ACTION_TYPE_PORT_ID:
5583 ret = flow_dv_validate_action_port_id(dev,
5590 action_flags |= MLX5_FLOW_ACTION_PORT_ID;
5593 case RTE_FLOW_ACTION_TYPE_FLAG:
5594 ret = flow_dv_validate_action_flag(dev, action_flags,
5598 if (dev_conf->dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
5599 /* Count all modify-header actions as one. */
5600 if (!(action_flags &
5601 MLX5_FLOW_MODIFY_HDR_ACTIONS))
5603 action_flags |= MLX5_FLOW_ACTION_FLAG |
5604 MLX5_FLOW_ACTION_MARK_EXT;
5606 action_flags |= MLX5_FLOW_ACTION_FLAG;
5609 rw_act_num += MLX5_ACT_NUM_SET_MARK;
5611 case RTE_FLOW_ACTION_TYPE_MARK:
5612 ret = flow_dv_validate_action_mark(dev, actions,
5617 if (dev_conf->dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
5618 /* Count all modify-header actions as one. */
5619 if (!(action_flags &
5620 MLX5_FLOW_MODIFY_HDR_ACTIONS))
5622 action_flags |= MLX5_FLOW_ACTION_MARK |
5623 MLX5_FLOW_ACTION_MARK_EXT;
5625 action_flags |= MLX5_FLOW_ACTION_MARK;
5628 rw_act_num += MLX5_ACT_NUM_SET_MARK;
5630 case RTE_FLOW_ACTION_TYPE_SET_META:
5631 ret = flow_dv_validate_action_set_meta(dev, actions,
5636 /* Count all modify-header actions as one action. */
5637 if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
5639 action_flags |= MLX5_FLOW_ACTION_SET_META;
5640 rw_act_num += MLX5_ACT_NUM_SET_META;
5642 case RTE_FLOW_ACTION_TYPE_SET_TAG:
5643 ret = flow_dv_validate_action_set_tag(dev, actions,
5648 /* Count all modify-header actions as one action. */
5649 if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
5651 action_flags |= MLX5_FLOW_ACTION_SET_TAG;
5652 rw_act_num += MLX5_ACT_NUM_SET_TAG;
5654 case RTE_FLOW_ACTION_TYPE_DROP:
5655 ret = mlx5_flow_validate_action_drop(action_flags,
5659 action_flags |= MLX5_FLOW_ACTION_DROP;
5662 case RTE_FLOW_ACTION_TYPE_QUEUE:
5663 ret = mlx5_flow_validate_action_queue(actions,
5668 queue_index = ((const struct rte_flow_action_queue *)
5669 (actions->conf))->index;
5670 action_flags |= MLX5_FLOW_ACTION_QUEUE;
5673 case RTE_FLOW_ACTION_TYPE_RSS:
5674 rss = actions->conf;
5675 ret = mlx5_flow_validate_action_rss(actions,
5681 if (rss != NULL && rss->queue_num)
5682 queue_index = rss->queue[0];
5683 action_flags |= MLX5_FLOW_ACTION_RSS;
5686 case MLX5_RTE_FLOW_ACTION_TYPE_DEFAULT_MISS:
5688 mlx5_flow_validate_action_default_miss(action_flags,
5692 action_flags |= MLX5_FLOW_ACTION_DEFAULT_MISS;
5695 case RTE_FLOW_ACTION_TYPE_COUNT:
5696 ret = flow_dv_validate_action_count(dev, error);
5699 action_flags |= MLX5_FLOW_ACTION_COUNT;
5702 case RTE_FLOW_ACTION_TYPE_OF_POP_VLAN:
5703 if (flow_dv_validate_action_pop_vlan(dev,
5709 action_flags |= MLX5_FLOW_ACTION_OF_POP_VLAN;
5712 case RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN:
5713 ret = flow_dv_validate_action_push_vlan(dev,
5720 action_flags |= MLX5_FLOW_ACTION_OF_PUSH_VLAN;
5723 case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP:
5724 ret = flow_dv_validate_action_set_vlan_pcp
5725 (action_flags, actions, error);
5728 /* Count PCP with push_vlan command. */
5729 action_flags |= MLX5_FLOW_ACTION_OF_SET_VLAN_PCP;
5731 case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID:
5732 ret = flow_dv_validate_action_set_vlan_vid
5733 (item_flags, action_flags,
5737 /* Count VID with push_vlan command. */
5738 action_flags |= MLX5_FLOW_ACTION_OF_SET_VLAN_VID;
5739 rw_act_num += MLX5_ACT_NUM_MDF_VID;
5741 case RTE_FLOW_ACTION_TYPE_VXLAN_ENCAP:
5742 case RTE_FLOW_ACTION_TYPE_NVGRE_ENCAP:
5743 ret = flow_dv_validate_action_l2_encap(dev,
5749 action_flags |= MLX5_FLOW_ACTION_ENCAP;
5752 case RTE_FLOW_ACTION_TYPE_VXLAN_DECAP:
5753 case RTE_FLOW_ACTION_TYPE_NVGRE_DECAP:
5754 ret = flow_dv_validate_action_decap(dev, action_flags,
5758 action_flags |= MLX5_FLOW_ACTION_DECAP;
5761 case RTE_FLOW_ACTION_TYPE_RAW_ENCAP:
5762 ret = flow_dv_validate_action_raw_encap_decap
5763 (dev, NULL, actions->conf, attr, &action_flags,
5768 case RTE_FLOW_ACTION_TYPE_RAW_DECAP:
5769 decap = actions->conf;
5770 while ((++actions)->type == RTE_FLOW_ACTION_TYPE_VOID)
5772 if (actions->type != RTE_FLOW_ACTION_TYPE_RAW_ENCAP) {
5776 encap = actions->conf;
5778 ret = flow_dv_validate_action_raw_encap_decap
5780 decap ? decap : &empty_decap, encap,
5781 attr, &action_flags, &actions_n,
5786 case RTE_FLOW_ACTION_TYPE_SET_MAC_SRC:
5787 case RTE_FLOW_ACTION_TYPE_SET_MAC_DST:
5788 ret = flow_dv_validate_action_modify_mac(action_flags,
5794 /* Count all modify-header actions as one action. */
5795 if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
5797 action_flags |= actions->type ==
5798 RTE_FLOW_ACTION_TYPE_SET_MAC_SRC ?
5799 MLX5_FLOW_ACTION_SET_MAC_SRC :
5800 MLX5_FLOW_ACTION_SET_MAC_DST;
5802 * Even if the source and destination MAC addresses have
5803 * overlap in the header with 4B alignment, the convert
5804 * function will handle them separately and 4 SW actions
5805 * will be created. And 2 actions will be added each
5806 * time no matter how many bytes of address will be set.
5808 rw_act_num += MLX5_ACT_NUM_MDF_MAC;
5810 case RTE_FLOW_ACTION_TYPE_SET_IPV4_SRC:
5811 case RTE_FLOW_ACTION_TYPE_SET_IPV4_DST:
5812 ret = flow_dv_validate_action_modify_ipv4(action_flags,
5818 /* Count all modify-header actions as one action. */
5819 if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
5821 action_flags |= actions->type ==
5822 RTE_FLOW_ACTION_TYPE_SET_IPV4_SRC ?
5823 MLX5_FLOW_ACTION_SET_IPV4_SRC :
5824 MLX5_FLOW_ACTION_SET_IPV4_DST;
5825 rw_act_num += MLX5_ACT_NUM_MDF_IPV4;
5827 case RTE_FLOW_ACTION_TYPE_SET_IPV6_SRC:
5828 case RTE_FLOW_ACTION_TYPE_SET_IPV6_DST:
5829 ret = flow_dv_validate_action_modify_ipv6(action_flags,
5835 if (item_ipv6_proto == IPPROTO_ICMPV6)
5836 return rte_flow_error_set(error, ENOTSUP,
5837 RTE_FLOW_ERROR_TYPE_ACTION,
5839 "Can't change header "
5840 "with ICMPv6 proto");
5841 /* Count all modify-header actions as one action. */
5842 if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
5844 action_flags |= actions->type ==
5845 RTE_FLOW_ACTION_TYPE_SET_IPV6_SRC ?
5846 MLX5_FLOW_ACTION_SET_IPV6_SRC :
5847 MLX5_FLOW_ACTION_SET_IPV6_DST;
5848 rw_act_num += MLX5_ACT_NUM_MDF_IPV6;
5850 case RTE_FLOW_ACTION_TYPE_SET_TP_SRC:
5851 case RTE_FLOW_ACTION_TYPE_SET_TP_DST:
5852 ret = flow_dv_validate_action_modify_tp(action_flags,
5858 /* Count all modify-header actions as one action. */
5859 if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
5861 action_flags |= actions->type ==
5862 RTE_FLOW_ACTION_TYPE_SET_TP_SRC ?
5863 MLX5_FLOW_ACTION_SET_TP_SRC :
5864 MLX5_FLOW_ACTION_SET_TP_DST;
5865 rw_act_num += MLX5_ACT_NUM_MDF_PORT;
5867 case RTE_FLOW_ACTION_TYPE_DEC_TTL:
5868 case RTE_FLOW_ACTION_TYPE_SET_TTL:
5869 ret = flow_dv_validate_action_modify_ttl(action_flags,
5875 /* Count all modify-header actions as one action. */
5876 if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
5878 action_flags |= actions->type ==
5879 RTE_FLOW_ACTION_TYPE_SET_TTL ?
5880 MLX5_FLOW_ACTION_SET_TTL :
5881 MLX5_FLOW_ACTION_DEC_TTL;
5882 rw_act_num += MLX5_ACT_NUM_MDF_TTL;
5884 case RTE_FLOW_ACTION_TYPE_JUMP:
5885 ret = flow_dv_validate_action_jump(dev, tunnel, actions,
5892 action_flags |= MLX5_FLOW_ACTION_JUMP;
5894 case RTE_FLOW_ACTION_TYPE_INC_TCP_SEQ:
5895 case RTE_FLOW_ACTION_TYPE_DEC_TCP_SEQ:
5896 ret = flow_dv_validate_action_modify_tcp_seq
5903 /* Count all modify-header actions as one action. */
5904 if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
5906 action_flags |= actions->type ==
5907 RTE_FLOW_ACTION_TYPE_INC_TCP_SEQ ?
5908 MLX5_FLOW_ACTION_INC_TCP_SEQ :
5909 MLX5_FLOW_ACTION_DEC_TCP_SEQ;
5910 rw_act_num += MLX5_ACT_NUM_MDF_TCPSEQ;
5912 case RTE_FLOW_ACTION_TYPE_INC_TCP_ACK:
5913 case RTE_FLOW_ACTION_TYPE_DEC_TCP_ACK:
5914 ret = flow_dv_validate_action_modify_tcp_ack
5921 /* Count all modify-header actions as one action. */
5922 if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
5924 action_flags |= actions->type ==
5925 RTE_FLOW_ACTION_TYPE_INC_TCP_ACK ?
5926 MLX5_FLOW_ACTION_INC_TCP_ACK :
5927 MLX5_FLOW_ACTION_DEC_TCP_ACK;
5928 rw_act_num += MLX5_ACT_NUM_MDF_TCPACK;
5930 case MLX5_RTE_FLOW_ACTION_TYPE_MARK:
5932 case MLX5_RTE_FLOW_ACTION_TYPE_TAG:
5933 case MLX5_RTE_FLOW_ACTION_TYPE_COPY_MREG:
5934 rw_act_num += MLX5_ACT_NUM_SET_TAG;
5936 case RTE_FLOW_ACTION_TYPE_METER:
5937 ret = mlx5_flow_validate_action_meter(dev,
5943 action_flags |= MLX5_FLOW_ACTION_METER;
5945 /* Meter action will add one more TAG action. */
5946 rw_act_num += MLX5_ACT_NUM_SET_TAG;
5948 case MLX5_RTE_FLOW_ACTION_TYPE_AGE:
5950 return rte_flow_error_set(error, ENOTSUP,
5951 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
5953 "Shared ASO age action is not supported for group 0");
5954 action_flags |= MLX5_FLOW_ACTION_AGE;
5957 case RTE_FLOW_ACTION_TYPE_AGE:
5958 ret = flow_dv_validate_action_age(action_flags,
5963 action_flags |= MLX5_FLOW_ACTION_AGE;
5966 case RTE_FLOW_ACTION_TYPE_SET_IPV4_DSCP:
5967 ret = flow_dv_validate_action_modify_ipv4_dscp
5974 /* Count all modify-header actions as one action. */
5975 if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
5977 action_flags |= MLX5_FLOW_ACTION_SET_IPV4_DSCP;
5978 rw_act_num += MLX5_ACT_NUM_SET_DSCP;
5980 case RTE_FLOW_ACTION_TYPE_SET_IPV6_DSCP:
5981 ret = flow_dv_validate_action_modify_ipv6_dscp
5988 /* Count all modify-header actions as one action. */
5989 if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
5991 action_flags |= MLX5_FLOW_ACTION_SET_IPV6_DSCP;
5992 rw_act_num += MLX5_ACT_NUM_SET_DSCP;
5994 case RTE_FLOW_ACTION_TYPE_SAMPLE:
5995 ret = flow_dv_validate_action_sample(action_flags,
6000 action_flags |= MLX5_FLOW_ACTION_SAMPLE;
6003 case MLX5_RTE_FLOW_ACTION_TYPE_TUNNEL_SET:
6004 if (actions[0].type != (typeof(actions[0].type))
6005 MLX5_RTE_FLOW_ACTION_TYPE_TUNNEL_SET)
6006 return rte_flow_error_set
6008 RTE_FLOW_ERROR_TYPE_ACTION,
6009 NULL, "MLX5 private action "
6010 "must be the first");
6012 action_flags |= MLX5_FLOW_ACTION_TUNNEL_SET;
6015 return rte_flow_error_set(error, ENOTSUP,
6016 RTE_FLOW_ERROR_TYPE_ACTION,
6018 "action not supported");
6022 * Validate actions in flow rules
6023 * - Explicit decap action is prohibited by the tunnel offload API.
6024 * - Drop action in tunnel steer rule is prohibited by the API.
6025 * - Application cannot use MARK action because it's value can mask
6026 * tunnel default miss nitification.
6027 * - JUMP in tunnel match rule has no support in current PMD
6029 * - TAG & META are reserved for future uses.
6031 if (action_flags & MLX5_FLOW_ACTION_TUNNEL_SET) {
6032 uint64_t bad_actions_mask = MLX5_FLOW_ACTION_DECAP |
6033 MLX5_FLOW_ACTION_MARK |
6034 MLX5_FLOW_ACTION_SET_TAG |
6035 MLX5_FLOW_ACTION_SET_META |
6036 MLX5_FLOW_ACTION_DROP;
6038 if (action_flags & bad_actions_mask)
6039 return rte_flow_error_set
6041 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
6042 "Invalid RTE action in tunnel "
6044 if (!(action_flags & MLX5_FLOW_ACTION_JUMP))
6045 return rte_flow_error_set
6047 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
6048 "tunnel set decap rule must terminate "
6051 return rte_flow_error_set
6053 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
6054 "tunnel flows for ingress traffic only");
6056 if (action_flags & MLX5_FLOW_ACTION_TUNNEL_MATCH) {
6057 uint64_t bad_actions_mask = MLX5_FLOW_ACTION_JUMP |
6058 MLX5_FLOW_ACTION_MARK |
6059 MLX5_FLOW_ACTION_SET_TAG |
6060 MLX5_FLOW_ACTION_SET_META;
6062 if (action_flags & bad_actions_mask)
6063 return rte_flow_error_set
6065 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
6066 "Invalid RTE action in tunnel "
6070 * Validate the drop action mutual exclusion with other actions.
6071 * Drop action is mutually-exclusive with any other action, except for
6074 if ((action_flags & MLX5_FLOW_ACTION_DROP) &&
6075 (action_flags & ~(MLX5_FLOW_ACTION_DROP | MLX5_FLOW_ACTION_COUNT)))
6076 return rte_flow_error_set(error, EINVAL,
6077 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
6078 "Drop action is mutually-exclusive "
6079 "with any other action, except for "
6081 /* Eswitch has few restrictions on using items and actions */
6082 if (attr->transfer) {
6083 if (!mlx5_flow_ext_mreg_supported(dev) &&
6084 action_flags & MLX5_FLOW_ACTION_FLAG)
6085 return rte_flow_error_set(error, ENOTSUP,
6086 RTE_FLOW_ERROR_TYPE_ACTION,
6088 "unsupported action FLAG");
6089 if (!mlx5_flow_ext_mreg_supported(dev) &&
6090 action_flags & MLX5_FLOW_ACTION_MARK)
6091 return rte_flow_error_set(error, ENOTSUP,
6092 RTE_FLOW_ERROR_TYPE_ACTION,
6094 "unsupported action MARK");
6095 if (action_flags & MLX5_FLOW_ACTION_QUEUE)
6096 return rte_flow_error_set(error, ENOTSUP,
6097 RTE_FLOW_ERROR_TYPE_ACTION,
6099 "unsupported action QUEUE");
6100 if (action_flags & MLX5_FLOW_ACTION_RSS)
6101 return rte_flow_error_set(error, ENOTSUP,
6102 RTE_FLOW_ERROR_TYPE_ACTION,
6104 "unsupported action RSS");
6105 if (!(action_flags & MLX5_FLOW_FATE_ESWITCH_ACTIONS))
6106 return rte_flow_error_set(error, EINVAL,
6107 RTE_FLOW_ERROR_TYPE_ACTION,
6109 "no fate action is found");
6111 if (!(action_flags & MLX5_FLOW_FATE_ACTIONS) && attr->ingress)
6112 return rte_flow_error_set(error, EINVAL,
6113 RTE_FLOW_ERROR_TYPE_ACTION,
6115 "no fate action is found");
6118 * Continue validation for Xcap and VLAN actions.
6119 * If hairpin is working in explicit TX rule mode, there is no actions
6120 * splitting and the validation of hairpin ingress flow should be the
6121 * same as other standard flows.
6123 if ((action_flags & (MLX5_FLOW_XCAP_ACTIONS |
6124 MLX5_FLOW_VLAN_ACTIONS)) &&
6125 (queue_index == 0xFFFF ||
6126 mlx5_rxq_get_type(dev, queue_index) != MLX5_RXQ_TYPE_HAIRPIN ||
6127 ((conf = mlx5_rxq_get_hairpin_conf(dev, queue_index)) != NULL &&
6128 conf->tx_explicit != 0))) {
6129 if ((action_flags & MLX5_FLOW_XCAP_ACTIONS) ==
6130 MLX5_FLOW_XCAP_ACTIONS)
6131 return rte_flow_error_set(error, ENOTSUP,
6132 RTE_FLOW_ERROR_TYPE_ACTION,
6133 NULL, "encap and decap "
6134 "combination aren't supported");
6135 if (!attr->transfer && attr->ingress) {
6136 if (action_flags & MLX5_FLOW_ACTION_ENCAP)
6137 return rte_flow_error_set
6139 RTE_FLOW_ERROR_TYPE_ACTION,
6140 NULL, "encap is not supported"
6141 " for ingress traffic");
6142 else if (action_flags & MLX5_FLOW_ACTION_OF_PUSH_VLAN)
6143 return rte_flow_error_set
6145 RTE_FLOW_ERROR_TYPE_ACTION,
6146 NULL, "push VLAN action not "
6147 "supported for ingress");
6148 else if ((action_flags & MLX5_FLOW_VLAN_ACTIONS) ==
6149 MLX5_FLOW_VLAN_ACTIONS)
6150 return rte_flow_error_set
6152 RTE_FLOW_ERROR_TYPE_ACTION,
6153 NULL, "no support for "
6154 "multiple VLAN actions");
6158 * Hairpin flow will add one more TAG action in TX implicit mode.
6159 * In TX explicit mode, there will be no hairpin flow ID.
6162 rw_act_num += MLX5_ACT_NUM_SET_TAG;
6163 /* extra metadata enabled: one more TAG action will be add. */
6164 if (dev_conf->dv_flow_en &&
6165 dev_conf->dv_xmeta_en != MLX5_XMETA_MODE_LEGACY &&
6166 mlx5_flow_ext_mreg_supported(dev))
6167 rw_act_num += MLX5_ACT_NUM_SET_TAG;
6168 if ((uint32_t)rw_act_num >
6169 flow_dv_modify_hdr_action_max(dev, is_root)) {
6170 return rte_flow_error_set(error, ENOTSUP,
6171 RTE_FLOW_ERROR_TYPE_ACTION,
6172 NULL, "too many header modify"
6173 " actions to support");
6179 * Internal preparation function. Allocates the DV flow size,
6180 * this size is constant.
6183 * Pointer to the rte_eth_dev structure.
6185 * Pointer to the flow attributes.
6187 * Pointer to the list of items.
6188 * @param[in] actions
6189 * Pointer to the list of actions.
6191 * Pointer to the error structure.
6194 * Pointer to mlx5_flow object on success,
6195 * otherwise NULL and rte_errno is set.
6197 static struct mlx5_flow *
6198 flow_dv_prepare(struct rte_eth_dev *dev,
6199 const struct rte_flow_attr *attr __rte_unused,
6200 const struct rte_flow_item items[] __rte_unused,
6201 const struct rte_flow_action actions[] __rte_unused,
6202 struct rte_flow_error *error)
6204 uint32_t handle_idx = 0;
6205 struct mlx5_flow *dev_flow;
6206 struct mlx5_flow_handle *dev_handle;
6207 struct mlx5_priv *priv = dev->data->dev_private;
6208 struct mlx5_flow_workspace *wks = mlx5_flow_get_thread_workspace();
6211 /* In case of corrupting the memory. */
6212 if (wks->flow_idx >= MLX5_NUM_MAX_DEV_FLOWS) {
6213 rte_flow_error_set(error, ENOSPC,
6214 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
6215 "not free temporary device flow");
6218 dev_handle = mlx5_ipool_zmalloc(priv->sh->ipool[MLX5_IPOOL_MLX5_FLOW],
6221 rte_flow_error_set(error, ENOMEM,
6222 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
6223 "not enough memory to create flow handle");
6226 MLX5_ASSERT(wks->flow_idx + 1 < RTE_DIM(wks->flows));
6227 dev_flow = &wks->flows[wks->flow_idx++];
6228 dev_flow->handle = dev_handle;
6229 dev_flow->handle_idx = handle_idx;
6231 * In some old rdma-core releases, before continuing, a check of the
6232 * length of matching parameter will be done at first. It needs to use
6233 * the length without misc4 param. If the flow has misc4 support, then
6234 * the length needs to be adjusted accordingly. Each param member is
6235 * aligned with a 64B boundary naturally.
6237 dev_flow->dv.value.size = MLX5_ST_SZ_BYTES(fte_match_param) -
6238 MLX5_ST_SZ_BYTES(fte_match_set_misc4);
6240 * The matching value needs to be cleared to 0 before using. In the
6241 * past, it will be automatically cleared when using rte_*alloc
6242 * API. The time consumption will be almost the same as before.
6244 memset(dev_flow->dv.value.buf, 0, MLX5_ST_SZ_BYTES(fte_match_param));
6245 dev_flow->ingress = attr->ingress;
6246 dev_flow->dv.transfer = attr->transfer;
6250 #ifdef RTE_LIBRTE_MLX5_DEBUG
6252 * Sanity check for match mask and value. Similar to check_valid_spec() in
6253 * kernel driver. If unmasked bit is present in value, it returns failure.
6256 * pointer to match mask buffer.
6257 * @param match_value
6258 * pointer to match value buffer.
6261 * 0 if valid, -EINVAL otherwise.
6264 flow_dv_check_valid_spec(void *match_mask, void *match_value)
6266 uint8_t *m = match_mask;
6267 uint8_t *v = match_value;
6270 for (i = 0; i < MLX5_ST_SZ_BYTES(fte_match_param); ++i) {
6273 "match_value differs from match_criteria"
6274 " %p[%u] != %p[%u]",
6275 match_value, i, match_mask, i);
6284 * Add match of ip_version.
6288 * @param[in] headers_v
6289 * Values header pointer.
6290 * @param[in] headers_m
6291 * Masks header pointer.
6292 * @param[in] ip_version
6293 * The IP version to set.
6296 flow_dv_set_match_ip_version(uint32_t group,
6302 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_version, 0xf);
6304 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_version,
6306 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_version, ip_version);
6307 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ethertype, 0);
6308 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ethertype, 0);
6312 * Add Ethernet item to matcher and to the value.
6314 * @param[in, out] matcher
6316 * @param[in, out] key
6317 * Flow matcher value.
6319 * Flow pattern to translate.
6321 * Item is inner pattern.
6324 flow_dv_translate_item_eth(void *matcher, void *key,
6325 const struct rte_flow_item *item, int inner,
6328 const struct rte_flow_item_eth *eth_m = item->mask;
6329 const struct rte_flow_item_eth *eth_v = item->spec;
6330 const struct rte_flow_item_eth nic_mask = {
6331 .dst.addr_bytes = "\xff\xff\xff\xff\xff\xff",
6332 .src.addr_bytes = "\xff\xff\xff\xff\xff\xff",
6333 .type = RTE_BE16(0xffff),
6346 hdrs_m = MLX5_ADDR_OF(fte_match_param, matcher,
6348 hdrs_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
6350 hdrs_m = MLX5_ADDR_OF(fte_match_param, matcher,
6352 hdrs_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
6354 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, hdrs_m, dmac_47_16),
6355 ð_m->dst, sizeof(eth_m->dst));
6356 /* The value must be in the range of the mask. */
6357 l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, hdrs_v, dmac_47_16);
6358 for (i = 0; i < sizeof(eth_m->dst); ++i)
6359 l24_v[i] = eth_m->dst.addr_bytes[i] & eth_v->dst.addr_bytes[i];
6360 memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, hdrs_m, smac_47_16),
6361 ð_m->src, sizeof(eth_m->src));
6362 l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, hdrs_v, smac_47_16);
6363 /* The value must be in the range of the mask. */
6364 for (i = 0; i < sizeof(eth_m->dst); ++i)
6365 l24_v[i] = eth_m->src.addr_bytes[i] & eth_v->src.addr_bytes[i];
6367 * HW supports match on one Ethertype, the Ethertype following the last
6368 * VLAN tag of the packet (see PRM).
6369 * Set match on ethertype only if ETH header is not followed by VLAN.
6370 * HW is optimized for IPv4/IPv6. In such cases, avoid setting
6371 * ethertype, and use ip_version field instead.
6372 * eCPRI over Ether layer will use type value 0xAEFE.
6374 if (eth_m->type == 0xFFFF) {
6375 /* Set cvlan_tag mask for any single\multi\un-tagged case. */
6376 MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, cvlan_tag, 1);
6377 switch (eth_v->type) {
6378 case RTE_BE16(RTE_ETHER_TYPE_VLAN):
6379 MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, cvlan_tag, 1);
6381 case RTE_BE16(RTE_ETHER_TYPE_QINQ):
6382 MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, svlan_tag, 1);
6383 MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, svlan_tag, 1);
6385 case RTE_BE16(RTE_ETHER_TYPE_IPV4):
6386 flow_dv_set_match_ip_version(group, hdrs_v, hdrs_m, 4);
6388 case RTE_BE16(RTE_ETHER_TYPE_IPV6):
6389 flow_dv_set_match_ip_version(group, hdrs_v, hdrs_m, 6);
6395 if (eth_m->has_vlan) {
6396 MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, cvlan_tag, 1);
6397 if (eth_v->has_vlan) {
6399 * Here, when also has_more_vlan field in VLAN item is
6400 * not set, only single-tagged packets will be matched.
6402 MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, cvlan_tag, 1);
6406 MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, ethertype,
6407 rte_be_to_cpu_16(eth_m->type));
6408 l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, hdrs_v, ethertype);
6409 *(uint16_t *)(l24_v) = eth_m->type & eth_v->type;
6413 * Add VLAN item to matcher and to the value.
6415 * @param[in, out] dev_flow
6417 * @param[in, out] matcher
6419 * @param[in, out] key
6420 * Flow matcher value.
6422 * Flow pattern to translate.
6424 * Item is inner pattern.
6427 flow_dv_translate_item_vlan(struct mlx5_flow *dev_flow,
6428 void *matcher, void *key,
6429 const struct rte_flow_item *item,
6430 int inner, uint32_t group)
6432 const struct rte_flow_item_vlan *vlan_m = item->mask;
6433 const struct rte_flow_item_vlan *vlan_v = item->spec;
6440 hdrs_m = MLX5_ADDR_OF(fte_match_param, matcher,
6442 hdrs_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
6444 hdrs_m = MLX5_ADDR_OF(fte_match_param, matcher,
6446 hdrs_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
6448 * This is workaround, masks are not supported,
6449 * and pre-validated.
6452 dev_flow->handle->vf_vlan.tag =
6453 rte_be_to_cpu_16(vlan_v->tci) & 0x0fff;
6456 * When VLAN item exists in flow, mark packet as tagged,
6457 * even if TCI is not specified.
6459 if (!MLX5_GET(fte_match_set_lyr_2_4, hdrs_v, svlan_tag)) {
6460 MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, cvlan_tag, 1);
6461 MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, cvlan_tag, 1);
6466 vlan_m = &rte_flow_item_vlan_mask;
6467 tci_m = rte_be_to_cpu_16(vlan_m->tci);
6468 tci_v = rte_be_to_cpu_16(vlan_m->tci & vlan_v->tci);
6469 MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, first_vid, tci_m);
6470 MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, first_vid, tci_v);
6471 MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, first_cfi, tci_m >> 12);
6472 MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, first_cfi, tci_v >> 12);
6473 MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, first_prio, tci_m >> 13);
6474 MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, first_prio, tci_v >> 13);
6476 * HW is optimized for IPv4/IPv6. In such cases, avoid setting
6477 * ethertype, and use ip_version field instead.
6479 if (vlan_m->inner_type == 0xFFFF) {
6480 switch (vlan_v->inner_type) {
6481 case RTE_BE16(RTE_ETHER_TYPE_VLAN):
6482 MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, svlan_tag, 1);
6483 MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, svlan_tag, 1);
6484 MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, cvlan_tag, 0);
6486 case RTE_BE16(RTE_ETHER_TYPE_IPV4):
6487 flow_dv_set_match_ip_version(group, hdrs_v, hdrs_m, 4);
6489 case RTE_BE16(RTE_ETHER_TYPE_IPV6):
6490 flow_dv_set_match_ip_version(group, hdrs_v, hdrs_m, 6);
6496 if (vlan_m->has_more_vlan && vlan_v->has_more_vlan) {
6497 MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, svlan_tag, 1);
6498 MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, svlan_tag, 1);
6499 /* Only one vlan_tag bit can be set. */
6500 MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, cvlan_tag, 0);
6503 MLX5_SET(fte_match_set_lyr_2_4, hdrs_m, ethertype,
6504 rte_be_to_cpu_16(vlan_m->inner_type));
6505 MLX5_SET(fte_match_set_lyr_2_4, hdrs_v, ethertype,
6506 rte_be_to_cpu_16(vlan_m->inner_type & vlan_v->inner_type));
6510 * Add IPV4 item to matcher and to the value.
6512 * @param[in, out] matcher
6514 * @param[in, out] key
6515 * Flow matcher value.
6517 * Flow pattern to translate.
6519 * Item is inner pattern.
6521 * The group to insert the rule.
6524 flow_dv_translate_item_ipv4(void *matcher, void *key,
6525 const struct rte_flow_item *item,
6526 int inner, uint32_t group)
6528 const struct rte_flow_item_ipv4 *ipv4_m = item->mask;
6529 const struct rte_flow_item_ipv4 *ipv4_v = item->spec;
6530 const struct rte_flow_item_ipv4 nic_mask = {
6532 .src_addr = RTE_BE32(0xffffffff),
6533 .dst_addr = RTE_BE32(0xffffffff),
6534 .type_of_service = 0xff,
6535 .next_proto_id = 0xff,
6536 .time_to_live = 0xff,
6546 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
6548 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
6550 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
6552 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
6554 flow_dv_set_match_ip_version(group, headers_v, headers_m, 4);
6559 l24_m = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_m,
6560 dst_ipv4_dst_ipv6.ipv4_layout.ipv4);
6561 l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
6562 dst_ipv4_dst_ipv6.ipv4_layout.ipv4);
6563 *(uint32_t *)l24_m = ipv4_m->hdr.dst_addr;
6564 *(uint32_t *)l24_v = ipv4_m->hdr.dst_addr & ipv4_v->hdr.dst_addr;
6565 l24_m = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_m,
6566 src_ipv4_src_ipv6.ipv4_layout.ipv4);
6567 l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
6568 src_ipv4_src_ipv6.ipv4_layout.ipv4);
6569 *(uint32_t *)l24_m = ipv4_m->hdr.src_addr;
6570 *(uint32_t *)l24_v = ipv4_m->hdr.src_addr & ipv4_v->hdr.src_addr;
6571 tos = ipv4_m->hdr.type_of_service & ipv4_v->hdr.type_of_service;
6572 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_ecn,
6573 ipv4_m->hdr.type_of_service);
6574 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_ecn, tos);
6575 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_dscp,
6576 ipv4_m->hdr.type_of_service >> 2);
6577 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_dscp, tos >> 2);
6578 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_protocol,
6579 ipv4_m->hdr.next_proto_id);
6580 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol,
6581 ipv4_v->hdr.next_proto_id & ipv4_m->hdr.next_proto_id);
6582 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_ttl_hoplimit,
6583 ipv4_m->hdr.time_to_live);
6584 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_ttl_hoplimit,
6585 ipv4_v->hdr.time_to_live & ipv4_m->hdr.time_to_live);
6586 MLX5_SET(fte_match_set_lyr_2_4, headers_m, frag,
6587 !!(ipv4_m->hdr.fragment_offset));
6588 MLX5_SET(fte_match_set_lyr_2_4, headers_v, frag,
6589 !!(ipv4_v->hdr.fragment_offset & ipv4_m->hdr.fragment_offset));
6593 * Add IPV6 item to matcher and to the value.
6595 * @param[in, out] matcher
6597 * @param[in, out] key
6598 * Flow matcher value.
6600 * Flow pattern to translate.
6602 * Item is inner pattern.
6604 * The group to insert the rule.
6607 flow_dv_translate_item_ipv6(void *matcher, void *key,
6608 const struct rte_flow_item *item,
6609 int inner, uint32_t group)
6611 const struct rte_flow_item_ipv6 *ipv6_m = item->mask;
6612 const struct rte_flow_item_ipv6 *ipv6_v = item->spec;
6613 const struct rte_flow_item_ipv6 nic_mask = {
6616 "\xff\xff\xff\xff\xff\xff\xff\xff"
6617 "\xff\xff\xff\xff\xff\xff\xff\xff",
6619 "\xff\xff\xff\xff\xff\xff\xff\xff"
6620 "\xff\xff\xff\xff\xff\xff\xff\xff",
6621 .vtc_flow = RTE_BE32(0xffffffff),
6628 void *misc_m = MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters);
6629 void *misc_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters);
6638 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
6640 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
6642 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
6644 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
6646 flow_dv_set_match_ip_version(group, headers_v, headers_m, 6);
6651 size = sizeof(ipv6_m->hdr.dst_addr);
6652 l24_m = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_m,
6653 dst_ipv4_dst_ipv6.ipv6_layout.ipv6);
6654 l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
6655 dst_ipv4_dst_ipv6.ipv6_layout.ipv6);
6656 memcpy(l24_m, ipv6_m->hdr.dst_addr, size);
6657 for (i = 0; i < size; ++i)
6658 l24_v[i] = l24_m[i] & ipv6_v->hdr.dst_addr[i];
6659 l24_m = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_m,
6660 src_ipv4_src_ipv6.ipv6_layout.ipv6);
6661 l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
6662 src_ipv4_src_ipv6.ipv6_layout.ipv6);
6663 memcpy(l24_m, ipv6_m->hdr.src_addr, size);
6664 for (i = 0; i < size; ++i)
6665 l24_v[i] = l24_m[i] & ipv6_v->hdr.src_addr[i];
6667 vtc_m = rte_be_to_cpu_32(ipv6_m->hdr.vtc_flow);
6668 vtc_v = rte_be_to_cpu_32(ipv6_m->hdr.vtc_flow & ipv6_v->hdr.vtc_flow);
6669 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_ecn, vtc_m >> 20);
6670 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_ecn, vtc_v >> 20);
6671 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_dscp, vtc_m >> 22);
6672 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_dscp, vtc_v >> 22);
6675 MLX5_SET(fte_match_set_misc, misc_m, inner_ipv6_flow_label,
6677 MLX5_SET(fte_match_set_misc, misc_v, inner_ipv6_flow_label,
6680 MLX5_SET(fte_match_set_misc, misc_m, outer_ipv6_flow_label,
6682 MLX5_SET(fte_match_set_misc, misc_v, outer_ipv6_flow_label,
6686 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_protocol,
6688 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol,
6689 ipv6_v->hdr.proto & ipv6_m->hdr.proto);
6691 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_ttl_hoplimit,
6692 ipv6_m->hdr.hop_limits);
6693 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_ttl_hoplimit,
6694 ipv6_v->hdr.hop_limits & ipv6_m->hdr.hop_limits);
6695 MLX5_SET(fte_match_set_lyr_2_4, headers_m, frag,
6696 !!(ipv6_m->has_frag_ext));
6697 MLX5_SET(fte_match_set_lyr_2_4, headers_v, frag,
6698 !!(ipv6_v->has_frag_ext & ipv6_m->has_frag_ext));
6702 * Add IPV6 fragment extension item to matcher and to the value.
6704 * @param[in, out] matcher
6706 * @param[in, out] key
6707 * Flow matcher value.
6709 * Flow pattern to translate.
6711 * Item is inner pattern.
6714 flow_dv_translate_item_ipv6_frag_ext(void *matcher, void *key,
6715 const struct rte_flow_item *item,
6718 const struct rte_flow_item_ipv6_frag_ext *ipv6_frag_ext_m = item->mask;
6719 const struct rte_flow_item_ipv6_frag_ext *ipv6_frag_ext_v = item->spec;
6720 const struct rte_flow_item_ipv6_frag_ext nic_mask = {
6722 .next_header = 0xff,
6723 .frag_data = RTE_BE16(0xffff),
6730 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
6732 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
6734 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
6736 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
6738 /* IPv6 fragment extension item exists, so packet is IP fragment. */
6739 MLX5_SET(fte_match_set_lyr_2_4, headers_m, frag, 1);
6740 MLX5_SET(fte_match_set_lyr_2_4, headers_v, frag, 1);
6741 if (!ipv6_frag_ext_v)
6743 if (!ipv6_frag_ext_m)
6744 ipv6_frag_ext_m = &nic_mask;
6745 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_protocol,
6746 ipv6_frag_ext_m->hdr.next_header);
6747 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol,
6748 ipv6_frag_ext_v->hdr.next_header &
6749 ipv6_frag_ext_m->hdr.next_header);
6753 * Add TCP item to matcher and to the value.
6755 * @param[in, out] matcher
6757 * @param[in, out] key
6758 * Flow matcher value.
6760 * Flow pattern to translate.
6762 * Item is inner pattern.
6765 flow_dv_translate_item_tcp(void *matcher, void *key,
6766 const struct rte_flow_item *item,
6769 const struct rte_flow_item_tcp *tcp_m = item->mask;
6770 const struct rte_flow_item_tcp *tcp_v = item->spec;
6775 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
6777 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
6779 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
6781 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
6783 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_protocol, 0xff);
6784 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol, IPPROTO_TCP);
6788 tcp_m = &rte_flow_item_tcp_mask;
6789 MLX5_SET(fte_match_set_lyr_2_4, headers_m, tcp_sport,
6790 rte_be_to_cpu_16(tcp_m->hdr.src_port));
6791 MLX5_SET(fte_match_set_lyr_2_4, headers_v, tcp_sport,
6792 rte_be_to_cpu_16(tcp_v->hdr.src_port & tcp_m->hdr.src_port));
6793 MLX5_SET(fte_match_set_lyr_2_4, headers_m, tcp_dport,
6794 rte_be_to_cpu_16(tcp_m->hdr.dst_port));
6795 MLX5_SET(fte_match_set_lyr_2_4, headers_v, tcp_dport,
6796 rte_be_to_cpu_16(tcp_v->hdr.dst_port & tcp_m->hdr.dst_port));
6797 MLX5_SET(fte_match_set_lyr_2_4, headers_m, tcp_flags,
6798 tcp_m->hdr.tcp_flags);
6799 MLX5_SET(fte_match_set_lyr_2_4, headers_v, tcp_flags,
6800 (tcp_v->hdr.tcp_flags & tcp_m->hdr.tcp_flags));
6804 * Add UDP item to matcher and to the value.
6806 * @param[in, out] matcher
6808 * @param[in, out] key
6809 * Flow matcher value.
6811 * Flow pattern to translate.
6813 * Item is inner pattern.
6816 flow_dv_translate_item_udp(void *matcher, void *key,
6817 const struct rte_flow_item *item,
6820 const struct rte_flow_item_udp *udp_m = item->mask;
6821 const struct rte_flow_item_udp *udp_v = item->spec;
6826 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
6828 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
6830 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
6832 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
6834 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_protocol, 0xff);
6835 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol, IPPROTO_UDP);
6839 udp_m = &rte_flow_item_udp_mask;
6840 MLX5_SET(fte_match_set_lyr_2_4, headers_m, udp_sport,
6841 rte_be_to_cpu_16(udp_m->hdr.src_port));
6842 MLX5_SET(fte_match_set_lyr_2_4, headers_v, udp_sport,
6843 rte_be_to_cpu_16(udp_v->hdr.src_port & udp_m->hdr.src_port));
6844 MLX5_SET(fte_match_set_lyr_2_4, headers_m, udp_dport,
6845 rte_be_to_cpu_16(udp_m->hdr.dst_port));
6846 MLX5_SET(fte_match_set_lyr_2_4, headers_v, udp_dport,
6847 rte_be_to_cpu_16(udp_v->hdr.dst_port & udp_m->hdr.dst_port));
6851 * Add GRE optional Key item to matcher and to the value.
6853 * @param[in, out] matcher
6855 * @param[in, out] key
6856 * Flow matcher value.
6858 * Flow pattern to translate.
6860 * Item is inner pattern.
6863 flow_dv_translate_item_gre_key(void *matcher, void *key,
6864 const struct rte_flow_item *item)
6866 const rte_be32_t *key_m = item->mask;
6867 const rte_be32_t *key_v = item->spec;
6868 void *misc_m = MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters);
6869 void *misc_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters);
6870 rte_be32_t gre_key_default_mask = RTE_BE32(UINT32_MAX);
6872 /* GRE K bit must be on and should already be validated */
6873 MLX5_SET(fte_match_set_misc, misc_m, gre_k_present, 1);
6874 MLX5_SET(fte_match_set_misc, misc_v, gre_k_present, 1);
6878 key_m = &gre_key_default_mask;
6879 MLX5_SET(fte_match_set_misc, misc_m, gre_key_h,
6880 rte_be_to_cpu_32(*key_m) >> 8);
6881 MLX5_SET(fte_match_set_misc, misc_v, gre_key_h,
6882 rte_be_to_cpu_32((*key_v) & (*key_m)) >> 8);
6883 MLX5_SET(fte_match_set_misc, misc_m, gre_key_l,
6884 rte_be_to_cpu_32(*key_m) & 0xFF);
6885 MLX5_SET(fte_match_set_misc, misc_v, gre_key_l,
6886 rte_be_to_cpu_32((*key_v) & (*key_m)) & 0xFF);
6890 * Add GRE item to matcher and to the value.
6892 * @param[in, out] matcher
6894 * @param[in, out] key
6895 * Flow matcher value.
6897 * Flow pattern to translate.
6899 * Item is inner pattern.
6902 flow_dv_translate_item_gre(void *matcher, void *key,
6903 const struct rte_flow_item *item,
6906 const struct rte_flow_item_gre *gre_m = item->mask;
6907 const struct rte_flow_item_gre *gre_v = item->spec;
6910 void *misc_m = MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters);
6911 void *misc_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters);
6918 uint16_t s_present:1;
6919 uint16_t k_present:1;
6920 uint16_t rsvd_bit1:1;
6921 uint16_t c_present:1;
6925 } gre_crks_rsvd0_ver_m, gre_crks_rsvd0_ver_v;
6928 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
6930 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
6932 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
6934 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
6936 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_protocol, 0xff);
6937 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol, IPPROTO_GRE);
6941 gre_m = &rte_flow_item_gre_mask;
6942 MLX5_SET(fte_match_set_misc, misc_m, gre_protocol,
6943 rte_be_to_cpu_16(gre_m->protocol));
6944 MLX5_SET(fte_match_set_misc, misc_v, gre_protocol,
6945 rte_be_to_cpu_16(gre_v->protocol & gre_m->protocol));
6946 gre_crks_rsvd0_ver_m.value = rte_be_to_cpu_16(gre_m->c_rsvd0_ver);
6947 gre_crks_rsvd0_ver_v.value = rte_be_to_cpu_16(gre_v->c_rsvd0_ver);
6948 MLX5_SET(fte_match_set_misc, misc_m, gre_c_present,
6949 gre_crks_rsvd0_ver_m.c_present);
6950 MLX5_SET(fte_match_set_misc, misc_v, gre_c_present,
6951 gre_crks_rsvd0_ver_v.c_present &
6952 gre_crks_rsvd0_ver_m.c_present);
6953 MLX5_SET(fte_match_set_misc, misc_m, gre_k_present,
6954 gre_crks_rsvd0_ver_m.k_present);
6955 MLX5_SET(fte_match_set_misc, misc_v, gre_k_present,
6956 gre_crks_rsvd0_ver_v.k_present &
6957 gre_crks_rsvd0_ver_m.k_present);
6958 MLX5_SET(fte_match_set_misc, misc_m, gre_s_present,
6959 gre_crks_rsvd0_ver_m.s_present);
6960 MLX5_SET(fte_match_set_misc, misc_v, gre_s_present,
6961 gre_crks_rsvd0_ver_v.s_present &
6962 gre_crks_rsvd0_ver_m.s_present);
6966 * Add NVGRE item to matcher and to the value.
6968 * @param[in, out] matcher
6970 * @param[in, out] key
6971 * Flow matcher value.
6973 * Flow pattern to translate.
6975 * Item is inner pattern.
6978 flow_dv_translate_item_nvgre(void *matcher, void *key,
6979 const struct rte_flow_item *item,
6982 const struct rte_flow_item_nvgre *nvgre_m = item->mask;
6983 const struct rte_flow_item_nvgre *nvgre_v = item->spec;
6984 void *misc_m = MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters);
6985 void *misc_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters);
6986 const char *tni_flow_id_m;
6987 const char *tni_flow_id_v;
6993 /* For NVGRE, GRE header fields must be set with defined values. */
6994 const struct rte_flow_item_gre gre_spec = {
6995 .c_rsvd0_ver = RTE_BE16(0x2000),
6996 .protocol = RTE_BE16(RTE_ETHER_TYPE_TEB)
6998 const struct rte_flow_item_gre gre_mask = {
6999 .c_rsvd0_ver = RTE_BE16(0xB000),
7000 .protocol = RTE_BE16(UINT16_MAX),
7002 const struct rte_flow_item gre_item = {
7007 flow_dv_translate_item_gre(matcher, key, &gre_item, inner);
7011 nvgre_m = &rte_flow_item_nvgre_mask;
7012 tni_flow_id_m = (const char *)nvgre_m->tni;
7013 tni_flow_id_v = (const char *)nvgre_v->tni;
7014 size = sizeof(nvgre_m->tni) + sizeof(nvgre_m->flow_id);
7015 gre_key_m = MLX5_ADDR_OF(fte_match_set_misc, misc_m, gre_key_h);
7016 gre_key_v = MLX5_ADDR_OF(fte_match_set_misc, misc_v, gre_key_h);
7017 memcpy(gre_key_m, tni_flow_id_m, size);
7018 for (i = 0; i < size; ++i)
7019 gre_key_v[i] = gre_key_m[i] & tni_flow_id_v[i];
7023 * Add VXLAN item to matcher and to the value.
7025 * @param[in, out] matcher
7027 * @param[in, out] key
7028 * Flow matcher value.
7030 * Flow pattern to translate.
7032 * Item is inner pattern.
7035 flow_dv_translate_item_vxlan(void *matcher, void *key,
7036 const struct rte_flow_item *item,
7039 const struct rte_flow_item_vxlan *vxlan_m = item->mask;
7040 const struct rte_flow_item_vxlan *vxlan_v = item->spec;
7043 void *misc_m = MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters);
7044 void *misc_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters);
7052 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
7054 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
7056 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
7058 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
7060 dport = item->type == RTE_FLOW_ITEM_TYPE_VXLAN ?
7061 MLX5_UDP_PORT_VXLAN : MLX5_UDP_PORT_VXLAN_GPE;
7062 if (!MLX5_GET16(fte_match_set_lyr_2_4, headers_v, udp_dport)) {
7063 MLX5_SET(fte_match_set_lyr_2_4, headers_m, udp_dport, 0xFFFF);
7064 MLX5_SET(fte_match_set_lyr_2_4, headers_v, udp_dport, dport);
7069 vxlan_m = &rte_flow_item_vxlan_mask;
7070 size = sizeof(vxlan_m->vni);
7071 vni_m = MLX5_ADDR_OF(fte_match_set_misc, misc_m, vxlan_vni);
7072 vni_v = MLX5_ADDR_OF(fte_match_set_misc, misc_v, vxlan_vni);
7073 memcpy(vni_m, vxlan_m->vni, size);
7074 for (i = 0; i < size; ++i)
7075 vni_v[i] = vni_m[i] & vxlan_v->vni[i];
7079 * Add VXLAN-GPE item to matcher and to the value.
7081 * @param[in, out] matcher
7083 * @param[in, out] key
7084 * Flow matcher value.
7086 * Flow pattern to translate.
7088 * Item is inner pattern.
7092 flow_dv_translate_item_vxlan_gpe(void *matcher, void *key,
7093 const struct rte_flow_item *item, int inner)
7095 const struct rte_flow_item_vxlan_gpe *vxlan_m = item->mask;
7096 const struct rte_flow_item_vxlan_gpe *vxlan_v = item->spec;
7100 MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters_3);
7102 MLX5_ADDR_OF(fte_match_param, key, misc_parameters_3);
7108 uint8_t flags_m = 0xff;
7109 uint8_t flags_v = 0xc;
7112 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
7114 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
7116 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
7118 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
7120 dport = item->type == RTE_FLOW_ITEM_TYPE_VXLAN ?
7121 MLX5_UDP_PORT_VXLAN : MLX5_UDP_PORT_VXLAN_GPE;
7122 if (!MLX5_GET16(fte_match_set_lyr_2_4, headers_v, udp_dport)) {
7123 MLX5_SET(fte_match_set_lyr_2_4, headers_m, udp_dport, 0xFFFF);
7124 MLX5_SET(fte_match_set_lyr_2_4, headers_v, udp_dport, dport);
7129 vxlan_m = &rte_flow_item_vxlan_gpe_mask;
7130 size = sizeof(vxlan_m->vni);
7131 vni_m = MLX5_ADDR_OF(fte_match_set_misc3, misc_m, outer_vxlan_gpe_vni);
7132 vni_v = MLX5_ADDR_OF(fte_match_set_misc3, misc_v, outer_vxlan_gpe_vni);
7133 memcpy(vni_m, vxlan_m->vni, size);
7134 for (i = 0; i < size; ++i)
7135 vni_v[i] = vni_m[i] & vxlan_v->vni[i];
7136 if (vxlan_m->flags) {
7137 flags_m = vxlan_m->flags;
7138 flags_v = vxlan_v->flags;
7140 MLX5_SET(fte_match_set_misc3, misc_m, outer_vxlan_gpe_flags, flags_m);
7141 MLX5_SET(fte_match_set_misc3, misc_v, outer_vxlan_gpe_flags, flags_v);
7142 MLX5_SET(fte_match_set_misc3, misc_m, outer_vxlan_gpe_next_protocol,
7144 MLX5_SET(fte_match_set_misc3, misc_v, outer_vxlan_gpe_next_protocol,
7149 * Add Geneve item to matcher and to the value.
7151 * @param[in, out] matcher
7153 * @param[in, out] key
7154 * Flow matcher value.
7156 * Flow pattern to translate.
7158 * Item is inner pattern.
7162 flow_dv_translate_item_geneve(void *matcher, void *key,
7163 const struct rte_flow_item *item, int inner)
7165 const struct rte_flow_item_geneve *geneve_m = item->mask;
7166 const struct rte_flow_item_geneve *geneve_v = item->spec;
7169 void *misc_m = MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters);
7170 void *misc_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters);
7179 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
7181 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
7183 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
7185 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
7187 dport = MLX5_UDP_PORT_GENEVE;
7188 if (!MLX5_GET16(fte_match_set_lyr_2_4, headers_v, udp_dport)) {
7189 MLX5_SET(fte_match_set_lyr_2_4, headers_m, udp_dport, 0xFFFF);
7190 MLX5_SET(fte_match_set_lyr_2_4, headers_v, udp_dport, dport);
7195 geneve_m = &rte_flow_item_geneve_mask;
7196 size = sizeof(geneve_m->vni);
7197 vni_m = MLX5_ADDR_OF(fte_match_set_misc, misc_m, geneve_vni);
7198 vni_v = MLX5_ADDR_OF(fte_match_set_misc, misc_v, geneve_vni);
7199 memcpy(vni_m, geneve_m->vni, size);
7200 for (i = 0; i < size; ++i)
7201 vni_v[i] = vni_m[i] & geneve_v->vni[i];
7202 MLX5_SET(fte_match_set_misc, misc_m, geneve_protocol_type,
7203 rte_be_to_cpu_16(geneve_m->protocol));
7204 MLX5_SET(fte_match_set_misc, misc_v, geneve_protocol_type,
7205 rte_be_to_cpu_16(geneve_v->protocol & geneve_m->protocol));
7206 gbhdr_m = rte_be_to_cpu_16(geneve_m->ver_opt_len_o_c_rsvd0);
7207 gbhdr_v = rte_be_to_cpu_16(geneve_v->ver_opt_len_o_c_rsvd0);
7208 MLX5_SET(fte_match_set_misc, misc_m, geneve_oam,
7209 MLX5_GENEVE_OAMF_VAL(gbhdr_m));
7210 MLX5_SET(fte_match_set_misc, misc_v, geneve_oam,
7211 MLX5_GENEVE_OAMF_VAL(gbhdr_v) & MLX5_GENEVE_OAMF_VAL(gbhdr_m));
7212 MLX5_SET(fte_match_set_misc, misc_m, geneve_opt_len,
7213 MLX5_GENEVE_OPTLEN_VAL(gbhdr_m));
7214 MLX5_SET(fte_match_set_misc, misc_v, geneve_opt_len,
7215 MLX5_GENEVE_OPTLEN_VAL(gbhdr_v) &
7216 MLX5_GENEVE_OPTLEN_VAL(gbhdr_m));
7220 * Add MPLS item to matcher and to the value.
7222 * @param[in, out] matcher
7224 * @param[in, out] key
7225 * Flow matcher value.
7227 * Flow pattern to translate.
7228 * @param[in] prev_layer
7229 * The protocol layer indicated in previous item.
7231 * Item is inner pattern.
7234 flow_dv_translate_item_mpls(void *matcher, void *key,
7235 const struct rte_flow_item *item,
7236 uint64_t prev_layer,
7239 const uint32_t *in_mpls_m = item->mask;
7240 const uint32_t *in_mpls_v = item->spec;
7241 uint32_t *out_mpls_m = 0;
7242 uint32_t *out_mpls_v = 0;
7243 void *misc_m = MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters);
7244 void *misc_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters);
7245 void *misc2_m = MLX5_ADDR_OF(fte_match_param, matcher,
7247 void *misc2_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters_2);
7248 void *headers_m = MLX5_ADDR_OF(fte_match_param, matcher, outer_headers);
7249 void *headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
7251 switch (prev_layer) {
7252 case MLX5_FLOW_LAYER_OUTER_L4_UDP:
7253 MLX5_SET(fte_match_set_lyr_2_4, headers_m, udp_dport, 0xffff);
7254 MLX5_SET(fte_match_set_lyr_2_4, headers_v, udp_dport,
7255 MLX5_UDP_PORT_MPLS);
7257 case MLX5_FLOW_LAYER_GRE:
7258 MLX5_SET(fte_match_set_misc, misc_m, gre_protocol, 0xffff);
7259 MLX5_SET(fte_match_set_misc, misc_v, gre_protocol,
7260 RTE_ETHER_TYPE_MPLS);
7263 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_protocol, 0xff);
7264 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol,
7271 in_mpls_m = (const uint32_t *)&rte_flow_item_mpls_mask;
7272 switch (prev_layer) {
7273 case MLX5_FLOW_LAYER_OUTER_L4_UDP:
7275 (uint32_t *)MLX5_ADDR_OF(fte_match_set_misc2, misc2_m,
7276 outer_first_mpls_over_udp);
7278 (uint32_t *)MLX5_ADDR_OF(fte_match_set_misc2, misc2_v,
7279 outer_first_mpls_over_udp);
7281 case MLX5_FLOW_LAYER_GRE:
7283 (uint32_t *)MLX5_ADDR_OF(fte_match_set_misc2, misc2_m,
7284 outer_first_mpls_over_gre);
7286 (uint32_t *)MLX5_ADDR_OF(fte_match_set_misc2, misc2_v,
7287 outer_first_mpls_over_gre);
7290 /* Inner MPLS not over GRE is not supported. */
7293 (uint32_t *)MLX5_ADDR_OF(fte_match_set_misc2,
7297 (uint32_t *)MLX5_ADDR_OF(fte_match_set_misc2,
7303 if (out_mpls_m && out_mpls_v) {
7304 *out_mpls_m = *in_mpls_m;
7305 *out_mpls_v = *in_mpls_v & *in_mpls_m;
7310 * Add metadata register item to matcher
7312 * @param[in, out] matcher
7314 * @param[in, out] key
7315 * Flow matcher value.
7316 * @param[in] reg_type
7317 * Type of device metadata register
7324 flow_dv_match_meta_reg(void *matcher, void *key,
7325 enum modify_reg reg_type,
7326 uint32_t data, uint32_t mask)
7329 MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters_2);
7331 MLX5_ADDR_OF(fte_match_param, key, misc_parameters_2);
7337 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_a, mask);
7338 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_a, data);
7341 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_b, mask);
7342 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_b, data);
7346 * The metadata register C0 field might be divided into
7347 * source vport index and META item value, we should set
7348 * this field according to specified mask, not as whole one.
7350 temp = MLX5_GET(fte_match_set_misc2, misc2_m, metadata_reg_c_0);
7352 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_c_0, temp);
7353 temp = MLX5_GET(fte_match_set_misc2, misc2_v, metadata_reg_c_0);
7356 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_c_0, temp);
7359 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_c_1, mask);
7360 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_c_1, data);
7363 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_c_2, mask);
7364 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_c_2, data);
7367 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_c_3, mask);
7368 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_c_3, data);
7371 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_c_4, mask);
7372 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_c_4, data);
7375 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_c_5, mask);
7376 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_c_5, data);
7379 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_c_6, mask);
7380 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_c_6, data);
7383 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_c_7, mask);
7384 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_c_7, data);
7393 * Add MARK item to matcher
7396 * The device to configure through.
7397 * @param[in, out] matcher
7399 * @param[in, out] key
7400 * Flow matcher value.
7402 * Flow pattern to translate.
7405 flow_dv_translate_item_mark(struct rte_eth_dev *dev,
7406 void *matcher, void *key,
7407 const struct rte_flow_item *item)
7409 struct mlx5_priv *priv = dev->data->dev_private;
7410 const struct rte_flow_item_mark *mark;
7414 mark = item->mask ? (const void *)item->mask :
7415 &rte_flow_item_mark_mask;
7416 mask = mark->id & priv->sh->dv_mark_mask;
7417 mark = (const void *)item->spec;
7419 value = mark->id & priv->sh->dv_mark_mask & mask;
7421 enum modify_reg reg;
7423 /* Get the metadata register index for the mark. */
7424 reg = mlx5_flow_get_reg_id(dev, MLX5_FLOW_MARK, 0, NULL);
7425 MLX5_ASSERT(reg > 0);
7426 if (reg == REG_C_0) {
7427 struct mlx5_priv *priv = dev->data->dev_private;
7428 uint32_t msk_c0 = priv->sh->dv_regc0_mask;
7429 uint32_t shl_c0 = rte_bsf32(msk_c0);
7435 flow_dv_match_meta_reg(matcher, key, reg, value, mask);
7440 * Add META item to matcher
7443 * The devich to configure through.
7444 * @param[in, out] matcher
7446 * @param[in, out] key
7447 * Flow matcher value.
7449 * Attributes of flow that includes this item.
7451 * Flow pattern to translate.
7454 flow_dv_translate_item_meta(struct rte_eth_dev *dev,
7455 void *matcher, void *key,
7456 const struct rte_flow_attr *attr,
7457 const struct rte_flow_item *item)
7459 const struct rte_flow_item_meta *meta_m;
7460 const struct rte_flow_item_meta *meta_v;
7462 meta_m = (const void *)item->mask;
7464 meta_m = &rte_flow_item_meta_mask;
7465 meta_v = (const void *)item->spec;
7468 uint32_t value = meta_v->data;
7469 uint32_t mask = meta_m->data;
7471 reg = flow_dv_get_metadata_reg(dev, attr, NULL);
7475 * In datapath code there is no endianness
7476 * coversions for perfromance reasons, all
7477 * pattern conversions are done in rte_flow.
7479 value = rte_cpu_to_be_32(value);
7480 mask = rte_cpu_to_be_32(mask);
7481 if (reg == REG_C_0) {
7482 struct mlx5_priv *priv = dev->data->dev_private;
7483 uint32_t msk_c0 = priv->sh->dv_regc0_mask;
7484 uint32_t shl_c0 = rte_bsf32(msk_c0);
7485 #if RTE_BYTE_ORDER == RTE_LITTLE_ENDIAN
7486 uint32_t shr_c0 = __builtin_clz(priv->sh->dv_meta_mask);
7493 MLX5_ASSERT(msk_c0);
7494 MLX5_ASSERT(!(~msk_c0 & mask));
7496 flow_dv_match_meta_reg(matcher, key, reg, value, mask);
7501 * Add vport metadata Reg C0 item to matcher
7503 * @param[in, out] matcher
7505 * @param[in, out] key
7506 * Flow matcher value.
7508 * Flow pattern to translate.
7511 flow_dv_translate_item_meta_vport(void *matcher, void *key,
7512 uint32_t value, uint32_t mask)
7514 flow_dv_match_meta_reg(matcher, key, REG_C_0, value, mask);
7518 * Add tag item to matcher
7521 * The devich to configure through.
7522 * @param[in, out] matcher
7524 * @param[in, out] key
7525 * Flow matcher value.
7527 * Flow pattern to translate.
7530 flow_dv_translate_mlx5_item_tag(struct rte_eth_dev *dev,
7531 void *matcher, void *key,
7532 const struct rte_flow_item *item)
7534 const struct mlx5_rte_flow_item_tag *tag_v = item->spec;
7535 const struct mlx5_rte_flow_item_tag *tag_m = item->mask;
7536 uint32_t mask, value;
7539 value = tag_v->data;
7540 mask = tag_m ? tag_m->data : UINT32_MAX;
7541 if (tag_v->id == REG_C_0) {
7542 struct mlx5_priv *priv = dev->data->dev_private;
7543 uint32_t msk_c0 = priv->sh->dv_regc0_mask;
7544 uint32_t shl_c0 = rte_bsf32(msk_c0);
7550 flow_dv_match_meta_reg(matcher, key, tag_v->id, value, mask);
7554 * Add TAG item to matcher
7557 * The devich to configure through.
7558 * @param[in, out] matcher
7560 * @param[in, out] key
7561 * Flow matcher value.
7563 * Flow pattern to translate.
7566 flow_dv_translate_item_tag(struct rte_eth_dev *dev,
7567 void *matcher, void *key,
7568 const struct rte_flow_item *item)
7570 const struct rte_flow_item_tag *tag_v = item->spec;
7571 const struct rte_flow_item_tag *tag_m = item->mask;
7572 enum modify_reg reg;
7575 tag_m = tag_m ? tag_m : &rte_flow_item_tag_mask;
7576 /* Get the metadata register index for the tag. */
7577 reg = mlx5_flow_get_reg_id(dev, MLX5_APP_TAG, tag_v->index, NULL);
7578 MLX5_ASSERT(reg > 0);
7579 flow_dv_match_meta_reg(matcher, key, reg, tag_v->data, tag_m->data);
7583 * Add source vport match to the specified matcher.
7585 * @param[in, out] matcher
7587 * @param[in, out] key
7588 * Flow matcher value.
7590 * Source vport value to match
7595 flow_dv_translate_item_source_vport(void *matcher, void *key,
7596 int16_t port, uint16_t mask)
7598 void *misc_m = MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters);
7599 void *misc_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters);
7601 MLX5_SET(fte_match_set_misc, misc_m, source_port, mask);
7602 MLX5_SET(fte_match_set_misc, misc_v, source_port, port);
7606 * Translate port-id item to eswitch match on port-id.
7609 * The devich to configure through.
7610 * @param[in, out] matcher
7612 * @param[in, out] key
7613 * Flow matcher value.
7615 * Flow pattern to translate.
7620 * 0 on success, a negative errno value otherwise.
7623 flow_dv_translate_item_port_id(struct rte_eth_dev *dev, void *matcher,
7624 void *key, const struct rte_flow_item *item,
7625 const struct rte_flow_attr *attr)
7627 const struct rte_flow_item_port_id *pid_m = item ? item->mask : NULL;
7628 const struct rte_flow_item_port_id *pid_v = item ? item->spec : NULL;
7629 struct mlx5_priv *priv;
7632 mask = pid_m ? pid_m->id : 0xffff;
7633 id = pid_v ? pid_v->id : dev->data->port_id;
7634 priv = mlx5_port_to_eswitch_info(id, item == NULL);
7638 * Translate to vport field or to metadata, depending on mode.
7639 * Kernel can use either misc.source_port or half of C0 metadata
7642 if (priv->vport_meta_mask) {
7644 * Provide the hint for SW steering library
7645 * to insert the flow into ingress domain and
7646 * save the extra vport match.
7648 if (mask == 0xffff && priv->vport_id == 0xffff &&
7649 priv->pf_bond < 0 && attr->transfer)
7650 flow_dv_translate_item_source_vport
7651 (matcher, key, priv->vport_id, mask);
7653 flow_dv_translate_item_meta_vport
7655 priv->vport_meta_tag,
7656 priv->vport_meta_mask);
7658 flow_dv_translate_item_source_vport(matcher, key,
7659 priv->vport_id, mask);
7665 * Add ICMP6 item to matcher and to the value.
7667 * @param[in, out] matcher
7669 * @param[in, out] key
7670 * Flow matcher value.
7672 * Flow pattern to translate.
7674 * Item is inner pattern.
7677 flow_dv_translate_item_icmp6(void *matcher, void *key,
7678 const struct rte_flow_item *item,
7681 const struct rte_flow_item_icmp6 *icmp6_m = item->mask;
7682 const struct rte_flow_item_icmp6 *icmp6_v = item->spec;
7685 void *misc3_m = MLX5_ADDR_OF(fte_match_param, matcher,
7687 void *misc3_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters_3);
7689 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
7691 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
7693 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
7695 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
7697 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_protocol, 0xFF);
7698 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol, IPPROTO_ICMPV6);
7702 icmp6_m = &rte_flow_item_icmp6_mask;
7703 MLX5_SET(fte_match_set_misc3, misc3_m, icmpv6_type, icmp6_m->type);
7704 MLX5_SET(fte_match_set_misc3, misc3_v, icmpv6_type,
7705 icmp6_v->type & icmp6_m->type);
7706 MLX5_SET(fte_match_set_misc3, misc3_m, icmpv6_code, icmp6_m->code);
7707 MLX5_SET(fte_match_set_misc3, misc3_v, icmpv6_code,
7708 icmp6_v->code & icmp6_m->code);
7712 * Add ICMP item to matcher and to the value.
7714 * @param[in, out] matcher
7716 * @param[in, out] key
7717 * Flow matcher value.
7719 * Flow pattern to translate.
7721 * Item is inner pattern.
7724 flow_dv_translate_item_icmp(void *matcher, void *key,
7725 const struct rte_flow_item *item,
7728 const struct rte_flow_item_icmp *icmp_m = item->mask;
7729 const struct rte_flow_item_icmp *icmp_v = item->spec;
7730 uint32_t icmp_header_data_m = 0;
7731 uint32_t icmp_header_data_v = 0;
7734 void *misc3_m = MLX5_ADDR_OF(fte_match_param, matcher,
7736 void *misc3_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters_3);
7738 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
7740 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
7742 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
7744 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
7746 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_protocol, 0xFF);
7747 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol, IPPROTO_ICMP);
7751 icmp_m = &rte_flow_item_icmp_mask;
7752 MLX5_SET(fte_match_set_misc3, misc3_m, icmp_type,
7753 icmp_m->hdr.icmp_type);
7754 MLX5_SET(fte_match_set_misc3, misc3_v, icmp_type,
7755 icmp_v->hdr.icmp_type & icmp_m->hdr.icmp_type);
7756 MLX5_SET(fte_match_set_misc3, misc3_m, icmp_code,
7757 icmp_m->hdr.icmp_code);
7758 MLX5_SET(fte_match_set_misc3, misc3_v, icmp_code,
7759 icmp_v->hdr.icmp_code & icmp_m->hdr.icmp_code);
7760 icmp_header_data_m = rte_be_to_cpu_16(icmp_m->hdr.icmp_seq_nb);
7761 icmp_header_data_m |= rte_be_to_cpu_16(icmp_m->hdr.icmp_ident) << 16;
7762 if (icmp_header_data_m) {
7763 icmp_header_data_v = rte_be_to_cpu_16(icmp_v->hdr.icmp_seq_nb);
7764 icmp_header_data_v |=
7765 rte_be_to_cpu_16(icmp_v->hdr.icmp_ident) << 16;
7766 MLX5_SET(fte_match_set_misc3, misc3_m, icmp_header_data,
7767 icmp_header_data_m);
7768 MLX5_SET(fte_match_set_misc3, misc3_v, icmp_header_data,
7769 icmp_header_data_v & icmp_header_data_m);
7774 * Add GTP item to matcher and to the value.
7776 * @param[in, out] matcher
7778 * @param[in, out] key
7779 * Flow matcher value.
7781 * Flow pattern to translate.
7783 * Item is inner pattern.
7786 flow_dv_translate_item_gtp(void *matcher, void *key,
7787 const struct rte_flow_item *item, int inner)
7789 const struct rte_flow_item_gtp *gtp_m = item->mask;
7790 const struct rte_flow_item_gtp *gtp_v = item->spec;
7793 void *misc3_m = MLX5_ADDR_OF(fte_match_param, matcher,
7795 void *misc3_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters_3);
7796 uint16_t dport = RTE_GTPU_UDP_PORT;
7799 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
7801 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
7803 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
7805 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
7807 if (!MLX5_GET16(fte_match_set_lyr_2_4, headers_v, udp_dport)) {
7808 MLX5_SET(fte_match_set_lyr_2_4, headers_m, udp_dport, 0xFFFF);
7809 MLX5_SET(fte_match_set_lyr_2_4, headers_v, udp_dport, dport);
7814 gtp_m = &rte_flow_item_gtp_mask;
7815 MLX5_SET(fte_match_set_misc3, misc3_m, gtpu_msg_flags,
7816 gtp_m->v_pt_rsv_flags);
7817 MLX5_SET(fte_match_set_misc3, misc3_v, gtpu_msg_flags,
7818 gtp_v->v_pt_rsv_flags & gtp_m->v_pt_rsv_flags);
7819 MLX5_SET(fte_match_set_misc3, misc3_m, gtpu_msg_type, gtp_m->msg_type);
7820 MLX5_SET(fte_match_set_misc3, misc3_v, gtpu_msg_type,
7821 gtp_v->msg_type & gtp_m->msg_type);
7822 MLX5_SET(fte_match_set_misc3, misc3_m, gtpu_teid,
7823 rte_be_to_cpu_32(gtp_m->teid));
7824 MLX5_SET(fte_match_set_misc3, misc3_v, gtpu_teid,
7825 rte_be_to_cpu_32(gtp_v->teid & gtp_m->teid));
7829 * Add eCPRI item to matcher and to the value.
7832 * The devich to configure through.
7833 * @param[in, out] matcher
7835 * @param[in, out] key
7836 * Flow matcher value.
7838 * Flow pattern to translate.
7839 * @param[in] samples
7840 * Sample IDs to be used in the matching.
7843 flow_dv_translate_item_ecpri(struct rte_eth_dev *dev, void *matcher,
7844 void *key, const struct rte_flow_item *item)
7846 struct mlx5_priv *priv = dev->data->dev_private;
7847 const struct rte_flow_item_ecpri *ecpri_m = item->mask;
7848 const struct rte_flow_item_ecpri *ecpri_v = item->spec;
7849 struct rte_ecpri_common_hdr common;
7850 void *misc4_m = MLX5_ADDR_OF(fte_match_param, matcher,
7852 void *misc4_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters_4);
7860 ecpri_m = &rte_flow_item_ecpri_mask;
7862 * Maximal four DW samples are supported in a single matching now.
7863 * Two are used now for a eCPRI matching:
7864 * 1. Type: one byte, mask should be 0x00ff0000 in network order
7865 * 2. ID of a message: one or two bytes, mask 0xffff0000 or 0xff000000
7868 if (!ecpri_m->hdr.common.u32)
7870 samples = priv->sh->fp[MLX5_FLEX_PARSER_ECPRI_0].ids;
7871 /* Need to take the whole DW as the mask to fill the entry. */
7872 dw_m = MLX5_ADDR_OF(fte_match_set_misc4, misc4_m,
7873 prog_sample_field_value_0);
7874 dw_v = MLX5_ADDR_OF(fte_match_set_misc4, misc4_v,
7875 prog_sample_field_value_0);
7876 /* Already big endian (network order) in the header. */
7877 *(uint32_t *)dw_m = ecpri_m->hdr.common.u32;
7878 *(uint32_t *)dw_v = ecpri_v->hdr.common.u32;
7879 /* Sample#0, used for matching type, offset 0. */
7880 MLX5_SET(fte_match_set_misc4, misc4_m,
7881 prog_sample_field_id_0, samples[0]);
7882 /* It makes no sense to set the sample ID in the mask field. */
7883 MLX5_SET(fte_match_set_misc4, misc4_v,
7884 prog_sample_field_id_0, samples[0]);
7886 * Checking if message body part needs to be matched.
7887 * Some wildcard rules only matching type field should be supported.
7889 if (ecpri_m->hdr.dummy[0]) {
7890 common.u32 = rte_be_to_cpu_32(ecpri_v->hdr.common.u32);
7891 switch (common.type) {
7892 case RTE_ECPRI_MSG_TYPE_IQ_DATA:
7893 case RTE_ECPRI_MSG_TYPE_RTC_CTRL:
7894 case RTE_ECPRI_MSG_TYPE_DLY_MSR:
7895 dw_m = MLX5_ADDR_OF(fte_match_set_misc4, misc4_m,
7896 prog_sample_field_value_1);
7897 dw_v = MLX5_ADDR_OF(fte_match_set_misc4, misc4_v,
7898 prog_sample_field_value_1);
7899 *(uint32_t *)dw_m = ecpri_m->hdr.dummy[0];
7900 *(uint32_t *)dw_v = ecpri_v->hdr.dummy[0];
7901 /* Sample#1, to match message body, offset 4. */
7902 MLX5_SET(fte_match_set_misc4, misc4_m,
7903 prog_sample_field_id_1, samples[1]);
7904 MLX5_SET(fte_match_set_misc4, misc4_v,
7905 prog_sample_field_id_1, samples[1]);
7908 /* Others, do not match any sample ID. */
7914 static uint32_t matcher_zero[MLX5_ST_SZ_DW(fte_match_param)] = { 0 };
7916 #define HEADER_IS_ZERO(match_criteria, headers) \
7917 !(memcmp(MLX5_ADDR_OF(fte_match_param, match_criteria, headers), \
7918 matcher_zero, MLX5_FLD_SZ_BYTES(fte_match_param, headers))) \
7921 * Calculate flow matcher enable bitmap.
7923 * @param match_criteria
7924 * Pointer to flow matcher criteria.
7927 * Bitmap of enabled fields.
7930 flow_dv_matcher_enable(uint32_t *match_criteria)
7932 uint8_t match_criteria_enable;
7934 match_criteria_enable =
7935 (!HEADER_IS_ZERO(match_criteria, outer_headers)) <<
7936 MLX5_MATCH_CRITERIA_ENABLE_OUTER_BIT;
7937 match_criteria_enable |=
7938 (!HEADER_IS_ZERO(match_criteria, misc_parameters)) <<
7939 MLX5_MATCH_CRITERIA_ENABLE_MISC_BIT;
7940 match_criteria_enable |=
7941 (!HEADER_IS_ZERO(match_criteria, inner_headers)) <<
7942 MLX5_MATCH_CRITERIA_ENABLE_INNER_BIT;
7943 match_criteria_enable |=
7944 (!HEADER_IS_ZERO(match_criteria, misc_parameters_2)) <<
7945 MLX5_MATCH_CRITERIA_ENABLE_MISC2_BIT;
7946 match_criteria_enable |=
7947 (!HEADER_IS_ZERO(match_criteria, misc_parameters_3)) <<
7948 MLX5_MATCH_CRITERIA_ENABLE_MISC3_BIT;
7949 match_criteria_enable |=
7950 (!HEADER_IS_ZERO(match_criteria, misc_parameters_4)) <<
7951 MLX5_MATCH_CRITERIA_ENABLE_MISC4_BIT;
7952 return match_criteria_enable;
7955 struct mlx5_hlist_entry *
7956 flow_dv_tbl_create_cb(struct mlx5_hlist *list, uint64_t key64, void *cb_ctx)
7958 struct mlx5_dev_ctx_shared *sh = list->ctx;
7959 struct mlx5_flow_cb_ctx *ctx = cb_ctx;
7960 struct rte_eth_dev *dev = ctx->dev;
7961 struct mlx5_flow_tbl_data_entry *tbl_data;
7962 struct mlx5_flow_tbl_tunnel_prm *tt_prm = ctx->data;
7963 struct rte_flow_error *error = ctx->error;
7964 union mlx5_flow_tbl_key key = { .v64 = key64 };
7965 struct mlx5_flow_tbl_resource *tbl;
7970 tbl_data = mlx5_ipool_zmalloc(sh->ipool[MLX5_IPOOL_JUMP], &idx);
7972 rte_flow_error_set(error, ENOMEM,
7973 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
7975 "cannot allocate flow table data entry");
7978 tbl_data->idx = idx;
7979 tbl_data->tunnel = tt_prm->tunnel;
7980 tbl_data->group_id = tt_prm->group_id;
7981 tbl_data->external = tt_prm->external;
7982 tbl_data->tunnel_offload = is_tunnel_offload_active(dev);
7983 tbl_data->is_egress = !!key.direction;
7984 tbl = &tbl_data->tbl;
7986 return &tbl_data->entry;
7988 domain = sh->fdb_domain;
7989 else if (key.direction)
7990 domain = sh->tx_domain;
7992 domain = sh->rx_domain;
7993 ret = mlx5_flow_os_create_flow_tbl(domain, key.table_id, &tbl->obj);
7995 rte_flow_error_set(error, ENOMEM,
7996 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
7997 NULL, "cannot create flow table object");
7998 mlx5_ipool_free(sh->ipool[MLX5_IPOOL_JUMP], idx);
8002 ret = mlx5_flow_os_create_flow_action_dest_flow_tbl
8003 (tbl->obj, &tbl_data->jump.action);
8005 rte_flow_error_set(error, ENOMEM,
8006 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
8008 "cannot create flow jump action");
8009 mlx5_flow_os_destroy_flow_tbl(tbl->obj);
8010 mlx5_ipool_free(sh->ipool[MLX5_IPOOL_JUMP], idx);
8014 MKSTR(matcher_name, "%s_%s_%u_matcher_cache",
8015 key.domain ? "FDB" : "NIC", key.direction ? "egress" : "ingress",
8017 mlx5_cache_list_init(&tbl_data->matchers, matcher_name, 0, sh,
8018 flow_dv_matcher_create_cb,
8019 flow_dv_matcher_match_cb,
8020 flow_dv_matcher_remove_cb);
8021 return &tbl_data->entry;
8027 * @param[in, out] dev
8028 * Pointer to rte_eth_dev structure.
8029 * @param[in] table_id
8032 * Direction of the table.
8033 * @param[in] transfer
8034 * E-Switch or NIC flow.
8036 * Dummy entry for dv API.
8038 * pointer to error structure.
8041 * Returns tables resource based on the index, NULL in case of failed.
8043 struct mlx5_flow_tbl_resource *
8044 flow_dv_tbl_resource_get(struct rte_eth_dev *dev,
8045 uint32_t table_id, uint8_t egress,
8048 const struct mlx5_flow_tunnel *tunnel,
8049 uint32_t group_id, uint8_t dummy,
8050 struct rte_flow_error *error)
8052 struct mlx5_priv *priv = dev->data->dev_private;
8053 union mlx5_flow_tbl_key table_key = {
8055 .table_id = table_id,
8057 .domain = !!transfer,
8058 .direction = !!egress,
8061 struct mlx5_flow_tbl_tunnel_prm tt_prm = {
8063 .group_id = group_id,
8064 .external = external,
8066 struct mlx5_flow_cb_ctx ctx = {
8071 struct mlx5_hlist_entry *entry;
8072 struct mlx5_flow_tbl_data_entry *tbl_data;
8074 entry = mlx5_hlist_register(priv->sh->flow_tbls, table_key.v64, &ctx);
8076 rte_flow_error_set(error, ENOMEM,
8077 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
8078 "cannot get table");
8081 DRV_LOG(DEBUG, "Table_id %u tunnel %u group %u registered.",
8082 table_id, tunnel ? tunnel->tunnel_id : 0, group_id);
8083 tbl_data = container_of(entry, struct mlx5_flow_tbl_data_entry, entry);
8084 return &tbl_data->tbl;
8088 flow_dv_tbl_remove_cb(struct mlx5_hlist *list,
8089 struct mlx5_hlist_entry *entry)
8091 struct mlx5_dev_ctx_shared *sh = list->ctx;
8092 struct mlx5_flow_tbl_data_entry *tbl_data =
8093 container_of(entry, struct mlx5_flow_tbl_data_entry, entry);
8095 MLX5_ASSERT(entry && sh);
8096 if (tbl_data->jump.action)
8097 mlx5_flow_os_destroy_flow_action(tbl_data->jump.action);
8098 if (tbl_data->tbl.obj)
8099 mlx5_flow_os_destroy_flow_tbl(tbl_data->tbl.obj);
8100 if (tbl_data->tunnel_offload && tbl_data->external) {
8101 struct mlx5_hlist_entry *he;
8102 struct mlx5_hlist *tunnel_grp_hash;
8103 struct mlx5_flow_tunnel_hub *thub = sh->tunnel_hub;
8104 union tunnel_tbl_key tunnel_key = {
8105 .tunnel_id = tbl_data->tunnel ?
8106 tbl_data->tunnel->tunnel_id : 0,
8107 .group = tbl_data->group_id
8109 union mlx5_flow_tbl_key table_key = {
8112 uint32_t table_id = table_key.table_id;
8114 tunnel_grp_hash = tbl_data->tunnel ?
8115 tbl_data->tunnel->groups :
8117 he = mlx5_hlist_lookup(tunnel_grp_hash, tunnel_key.val, NULL);
8119 mlx5_hlist_unregister(tunnel_grp_hash, he);
8121 "Table_id %u tunnel %u group %u released.",
8124 tbl_data->tunnel->tunnel_id : 0,
8125 tbl_data->group_id);
8127 mlx5_cache_list_destroy(&tbl_data->matchers);
8128 mlx5_ipool_free(sh->ipool[MLX5_IPOOL_JUMP], tbl_data->idx);
8132 * Release a flow table.
8135 * Pointer to device shared structure.
8137 * Table resource to be released.
8140 * Returns 0 if table was released, else return 1;
8143 flow_dv_tbl_resource_release(struct mlx5_dev_ctx_shared *sh,
8144 struct mlx5_flow_tbl_resource *tbl)
8146 struct mlx5_flow_tbl_data_entry *tbl_data =
8147 container_of(tbl, struct mlx5_flow_tbl_data_entry, tbl);
8151 return mlx5_hlist_unregister(sh->flow_tbls, &tbl_data->entry);
8155 flow_dv_matcher_match_cb(struct mlx5_cache_list *list __rte_unused,
8156 struct mlx5_cache_entry *entry, void *cb_ctx)
8158 struct mlx5_flow_cb_ctx *ctx = cb_ctx;
8159 struct mlx5_flow_dv_matcher *ref = ctx->data;
8160 struct mlx5_flow_dv_matcher *cur = container_of(entry, typeof(*cur),
8163 return cur->crc != ref->crc ||
8164 cur->priority != ref->priority ||
8165 memcmp((const void *)cur->mask.buf,
8166 (const void *)ref->mask.buf, ref->mask.size);
8169 struct mlx5_cache_entry *
8170 flow_dv_matcher_create_cb(struct mlx5_cache_list *list,
8171 struct mlx5_cache_entry *entry __rte_unused,
8174 struct mlx5_dev_ctx_shared *sh = list->ctx;
8175 struct mlx5_flow_cb_ctx *ctx = cb_ctx;
8176 struct mlx5_flow_dv_matcher *ref = ctx->data;
8177 struct mlx5_flow_dv_matcher *cache;
8178 struct mlx5dv_flow_matcher_attr dv_attr = {
8179 .type = IBV_FLOW_ATTR_NORMAL,
8180 .match_mask = (void *)&ref->mask,
8182 struct mlx5_flow_tbl_data_entry *tbl = container_of(ref->tbl,
8186 cache = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*cache), 0, SOCKET_ID_ANY);
8188 rte_flow_error_set(ctx->error, ENOMEM,
8189 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
8190 "cannot create matcher");
8194 dv_attr.match_criteria_enable =
8195 flow_dv_matcher_enable(cache->mask.buf);
8196 dv_attr.priority = ref->priority;
8198 dv_attr.flags |= IBV_FLOW_ATTR_FLAGS_EGRESS;
8199 ret = mlx5_flow_os_create_flow_matcher(sh->ctx, &dv_attr, tbl->tbl.obj,
8200 &cache->matcher_object);
8203 rte_flow_error_set(ctx->error, ENOMEM,
8204 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
8205 "cannot create matcher");
8208 return &cache->entry;
8212 * Register the flow matcher.
8214 * @param[in, out] dev
8215 * Pointer to rte_eth_dev structure.
8216 * @param[in, out] matcher
8217 * Pointer to flow matcher.
8218 * @param[in, out] key
8219 * Pointer to flow table key.
8220 * @parm[in, out] dev_flow
8221 * Pointer to the dev_flow.
8223 * pointer to error structure.
8226 * 0 on success otherwise -errno and errno is set.
8229 flow_dv_matcher_register(struct rte_eth_dev *dev,
8230 struct mlx5_flow_dv_matcher *ref,
8231 union mlx5_flow_tbl_key *key,
8232 struct mlx5_flow *dev_flow,
8233 const struct mlx5_flow_tunnel *tunnel,
8235 struct rte_flow_error *error)
8237 struct mlx5_cache_entry *entry;
8238 struct mlx5_flow_dv_matcher *cache;
8239 struct mlx5_flow_tbl_resource *tbl;
8240 struct mlx5_flow_tbl_data_entry *tbl_data;
8241 struct mlx5_flow_cb_ctx ctx = {
8247 * tunnel offload API requires this registration for cases when
8248 * tunnel match rule was inserted before tunnel set rule.
8250 tbl = flow_dv_tbl_resource_get(dev, key->table_id,
8251 key->direction, key->domain,
8252 dev_flow->external, tunnel,
8253 group_id, 0, error);
8255 return -rte_errno; /* No need to refill the error info */
8256 tbl_data = container_of(tbl, struct mlx5_flow_tbl_data_entry, tbl);
8258 entry = mlx5_cache_register(&tbl_data->matchers, &ctx);
8260 flow_dv_tbl_resource_release(MLX5_SH(dev), tbl);
8261 return rte_flow_error_set(error, ENOMEM,
8262 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
8263 "cannot allocate ref memory");
8265 cache = container_of(entry, typeof(*cache), entry);
8266 dev_flow->handle->dvh.matcher = cache;
8270 struct mlx5_hlist_entry *
8271 flow_dv_tag_create_cb(struct mlx5_hlist *list, uint64_t key, void *ctx)
8273 struct mlx5_dev_ctx_shared *sh = list->ctx;
8274 struct rte_flow_error *error = ctx;
8275 struct mlx5_flow_dv_tag_resource *entry;
8279 entry = mlx5_ipool_zmalloc(sh->ipool[MLX5_IPOOL_TAG], &idx);
8281 rte_flow_error_set(error, ENOMEM,
8282 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
8283 "cannot allocate resource memory");
8287 ret = mlx5_flow_os_create_flow_action_tag(key,
8290 mlx5_ipool_free(sh->ipool[MLX5_IPOOL_TAG], idx);
8291 rte_flow_error_set(error, ENOMEM,
8292 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
8293 NULL, "cannot create action");
8296 return &entry->entry;
8300 * Find existing tag resource or create and register a new one.
8302 * @param dev[in, out]
8303 * Pointer to rte_eth_dev structure.
8304 * @param[in, out] tag_be24
8305 * Tag value in big endian then R-shift 8.
8306 * @parm[in, out] dev_flow
8307 * Pointer to the dev_flow.
8309 * pointer to error structure.
8312 * 0 on success otherwise -errno and errno is set.
8315 flow_dv_tag_resource_register
8316 (struct rte_eth_dev *dev,
8318 struct mlx5_flow *dev_flow,
8319 struct rte_flow_error *error)
8321 struct mlx5_priv *priv = dev->data->dev_private;
8322 struct mlx5_flow_dv_tag_resource *cache_resource;
8323 struct mlx5_hlist_entry *entry;
8325 entry = mlx5_hlist_register(priv->sh->tag_table, tag_be24, error);
8327 cache_resource = container_of
8328 (entry, struct mlx5_flow_dv_tag_resource, entry);
8329 dev_flow->handle->dvh.rix_tag = cache_resource->idx;
8330 dev_flow->dv.tag_resource = cache_resource;
8337 flow_dv_tag_remove_cb(struct mlx5_hlist *list,
8338 struct mlx5_hlist_entry *entry)
8340 struct mlx5_dev_ctx_shared *sh = list->ctx;
8341 struct mlx5_flow_dv_tag_resource *tag =
8342 container_of(entry, struct mlx5_flow_dv_tag_resource, entry);
8344 MLX5_ASSERT(tag && sh && tag->action);
8345 claim_zero(mlx5_flow_os_destroy_flow_action(tag->action));
8346 DRV_LOG(DEBUG, "Tag %p: removed.", (void *)tag);
8347 mlx5_ipool_free(sh->ipool[MLX5_IPOOL_TAG], tag->idx);
8354 * Pointer to Ethernet device.
8359 * 1 while a reference on it exists, 0 when freed.
8362 flow_dv_tag_release(struct rte_eth_dev *dev,
8365 struct mlx5_priv *priv = dev->data->dev_private;
8366 struct mlx5_flow_dv_tag_resource *tag;
8368 tag = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_TAG], tag_idx);
8371 DRV_LOG(DEBUG, "port %u tag %p: refcnt %d--",
8372 dev->data->port_id, (void *)tag, tag->entry.ref_cnt);
8373 return mlx5_hlist_unregister(priv->sh->tag_table, &tag->entry);
8377 * Translate port ID action to vport.
8380 * Pointer to rte_eth_dev structure.
8382 * Pointer to the port ID action.
8383 * @param[out] dst_port_id
8384 * The target port ID.
8386 * Pointer to the error structure.
8389 * 0 on success, a negative errno value otherwise and rte_errno is set.
8392 flow_dv_translate_action_port_id(struct rte_eth_dev *dev,
8393 const struct rte_flow_action *action,
8394 uint32_t *dst_port_id,
8395 struct rte_flow_error *error)
8398 struct mlx5_priv *priv;
8399 const struct rte_flow_action_port_id *conf =
8400 (const struct rte_flow_action_port_id *)action->conf;
8402 port = conf->original ? dev->data->port_id : conf->id;
8403 priv = mlx5_port_to_eswitch_info(port, false);
8405 return rte_flow_error_set(error, -rte_errno,
8406 RTE_FLOW_ERROR_TYPE_ACTION,
8408 "No eswitch info was found for port");
8409 #ifdef HAVE_MLX5DV_DR_DEVX_PORT
8411 * This parameter is transferred to
8412 * mlx5dv_dr_action_create_dest_ib_port().
8414 *dst_port_id = priv->dev_port;
8417 * Legacy mode, no LAG configurations is supported.
8418 * This parameter is transferred to
8419 * mlx5dv_dr_action_create_dest_vport().
8421 *dst_port_id = priv->vport_id;
8427 * Create a counter with aging configuration.
8430 * Pointer to rte_eth_dev structure.
8432 * Pointer to the counter action configuration.
8434 * Pointer to the aging action configuration.
8437 * Index to flow counter on success, 0 otherwise.
8440 flow_dv_translate_create_counter(struct rte_eth_dev *dev,
8441 struct mlx5_flow *dev_flow,
8442 const struct rte_flow_action_count *count,
8443 const struct rte_flow_action_age *age)
8446 struct mlx5_age_param *age_param;
8448 if (count && count->shared)
8449 counter = flow_dv_counter_get_shared(dev, count->id);
8451 counter = flow_dv_counter_alloc(dev, !!age);
8452 if (!counter || age == NULL)
8454 age_param = flow_dv_counter_idx_get_age(dev, counter);
8455 age_param->context = age->context ? age->context :
8456 (void *)(uintptr_t)(dev_flow->flow_idx);
8457 age_param->timeout = age->timeout;
8458 age_param->port_id = dev->data->port_id;
8459 __atomic_store_n(&age_param->sec_since_last_hit, 0, __ATOMIC_RELAXED);
8460 __atomic_store_n(&age_param->state, AGE_CANDIDATE, __ATOMIC_RELAXED);
8465 * Add Tx queue matcher
8468 * Pointer to the dev struct.
8469 * @param[in, out] matcher
8471 * @param[in, out] key
8472 * Flow matcher value.
8474 * Flow pattern to translate.
8476 * Item is inner pattern.
8479 flow_dv_translate_item_tx_queue(struct rte_eth_dev *dev,
8480 void *matcher, void *key,
8481 const struct rte_flow_item *item)
8483 const struct mlx5_rte_flow_item_tx_queue *queue_m;
8484 const struct mlx5_rte_flow_item_tx_queue *queue_v;
8486 MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters);
8488 MLX5_ADDR_OF(fte_match_param, key, misc_parameters);
8489 struct mlx5_txq_ctrl *txq;
8493 queue_m = (const void *)item->mask;
8496 queue_v = (const void *)item->spec;
8499 txq = mlx5_txq_get(dev, queue_v->queue);
8502 queue = txq->obj->sq->id;
8503 MLX5_SET(fte_match_set_misc, misc_m, source_sqn, queue_m->queue);
8504 MLX5_SET(fte_match_set_misc, misc_v, source_sqn,
8505 queue & queue_m->queue);
8506 mlx5_txq_release(dev, queue_v->queue);
8510 * Set the hash fields according to the @p flow information.
8512 * @param[in] dev_flow
8513 * Pointer to the mlx5_flow.
8514 * @param[in] rss_desc
8515 * Pointer to the mlx5_flow_rss_desc.
8518 flow_dv_hashfields_set(struct mlx5_flow *dev_flow,
8519 struct mlx5_flow_rss_desc *rss_desc)
8521 uint64_t items = dev_flow->handle->layers;
8523 uint64_t rss_types = rte_eth_rss_hf_refine(rss_desc->types);
8525 dev_flow->hash_fields = 0;
8526 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
8527 if (rss_desc->level >= 2) {
8528 dev_flow->hash_fields |= IBV_RX_HASH_INNER;
8532 if ((rss_inner && (items & MLX5_FLOW_LAYER_INNER_L3_IPV4)) ||
8533 (!rss_inner && (items & MLX5_FLOW_LAYER_OUTER_L3_IPV4))) {
8534 if (rss_types & MLX5_IPV4_LAYER_TYPES) {
8535 if (rss_types & ETH_RSS_L3_SRC_ONLY)
8536 dev_flow->hash_fields |= IBV_RX_HASH_SRC_IPV4;
8537 else if (rss_types & ETH_RSS_L3_DST_ONLY)
8538 dev_flow->hash_fields |= IBV_RX_HASH_DST_IPV4;
8540 dev_flow->hash_fields |= MLX5_IPV4_IBV_RX_HASH;
8542 } else if ((rss_inner && (items & MLX5_FLOW_LAYER_INNER_L3_IPV6)) ||
8543 (!rss_inner && (items & MLX5_FLOW_LAYER_OUTER_L3_IPV6))) {
8544 if (rss_types & MLX5_IPV6_LAYER_TYPES) {
8545 if (rss_types & ETH_RSS_L3_SRC_ONLY)
8546 dev_flow->hash_fields |= IBV_RX_HASH_SRC_IPV6;
8547 else if (rss_types & ETH_RSS_L3_DST_ONLY)
8548 dev_flow->hash_fields |= IBV_RX_HASH_DST_IPV6;
8550 dev_flow->hash_fields |= MLX5_IPV6_IBV_RX_HASH;
8553 if ((rss_inner && (items & MLX5_FLOW_LAYER_INNER_L4_UDP)) ||
8554 (!rss_inner && (items & MLX5_FLOW_LAYER_OUTER_L4_UDP))) {
8555 if (rss_types & ETH_RSS_UDP) {
8556 if (rss_types & ETH_RSS_L4_SRC_ONLY)
8557 dev_flow->hash_fields |=
8558 IBV_RX_HASH_SRC_PORT_UDP;
8559 else if (rss_types & ETH_RSS_L4_DST_ONLY)
8560 dev_flow->hash_fields |=
8561 IBV_RX_HASH_DST_PORT_UDP;
8563 dev_flow->hash_fields |= MLX5_UDP_IBV_RX_HASH;
8565 } else if ((rss_inner && (items & MLX5_FLOW_LAYER_INNER_L4_TCP)) ||
8566 (!rss_inner && (items & MLX5_FLOW_LAYER_OUTER_L4_TCP))) {
8567 if (rss_types & ETH_RSS_TCP) {
8568 if (rss_types & ETH_RSS_L4_SRC_ONLY)
8569 dev_flow->hash_fields |=
8570 IBV_RX_HASH_SRC_PORT_TCP;
8571 else if (rss_types & ETH_RSS_L4_DST_ONLY)
8572 dev_flow->hash_fields |=
8573 IBV_RX_HASH_DST_PORT_TCP;
8575 dev_flow->hash_fields |= MLX5_TCP_IBV_RX_HASH;
8581 * Prepare an Rx Hash queue.
8584 * Pointer to Ethernet device.
8585 * @param[in] dev_flow
8586 * Pointer to the mlx5_flow.
8587 * @param[in] rss_desc
8588 * Pointer to the mlx5_flow_rss_desc.
8589 * @param[out] hrxq_idx
8590 * Hash Rx queue index.
8593 * The Verbs/DevX object initialised, NULL otherwise and rte_errno is set.
8595 static struct mlx5_hrxq *
8596 flow_dv_hrxq_prepare(struct rte_eth_dev *dev,
8597 struct mlx5_flow *dev_flow,
8598 struct mlx5_flow_rss_desc *rss_desc,
8601 struct mlx5_priv *priv = dev->data->dev_private;
8602 struct mlx5_flow_handle *dh = dev_flow->handle;
8603 struct mlx5_hrxq *hrxq;
8605 MLX5_ASSERT(rss_desc->queue_num);
8606 rss_desc->key_len = MLX5_RSS_HASH_KEY_LEN;
8607 rss_desc->hash_fields = dev_flow->hash_fields;
8608 rss_desc->tunnel = !!(dh->layers & MLX5_FLOW_LAYER_TUNNEL);
8609 rss_desc->shared_rss = 0;
8610 *hrxq_idx = mlx5_hrxq_get(dev, rss_desc);
8613 hrxq = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_HRXQ],
8619 * Release sample sub action resource.
8621 * @param[in, out] dev
8622 * Pointer to rte_eth_dev structure.
8623 * @param[in] act_res
8624 * Pointer to sample sub action resource.
8627 flow_dv_sample_sub_actions_release(struct rte_eth_dev *dev,
8628 struct mlx5_flow_sub_actions_idx *act_res)
8630 if (act_res->rix_hrxq) {
8631 mlx5_hrxq_release(dev, act_res->rix_hrxq);
8632 act_res->rix_hrxq = 0;
8634 if (act_res->rix_encap_decap) {
8635 flow_dv_encap_decap_resource_release(dev,
8636 act_res->rix_encap_decap);
8637 act_res->rix_encap_decap = 0;
8639 if (act_res->rix_port_id_action) {
8640 flow_dv_port_id_action_resource_release(dev,
8641 act_res->rix_port_id_action);
8642 act_res->rix_port_id_action = 0;
8644 if (act_res->rix_tag) {
8645 flow_dv_tag_release(dev, act_res->rix_tag);
8646 act_res->rix_tag = 0;
8649 flow_dv_counter_free(dev, act_res->cnt);
8655 flow_dv_sample_match_cb(struct mlx5_cache_list *list __rte_unused,
8656 struct mlx5_cache_entry *entry, void *cb_ctx)
8658 struct mlx5_flow_cb_ctx *ctx = cb_ctx;
8659 struct rte_eth_dev *dev = ctx->dev;
8660 struct mlx5_flow_dv_sample_resource *resource = ctx->data;
8661 struct mlx5_flow_dv_sample_resource *cache_resource =
8662 container_of(entry, typeof(*cache_resource), entry);
8664 if (resource->ratio == cache_resource->ratio &&
8665 resource->ft_type == cache_resource->ft_type &&
8666 resource->ft_id == cache_resource->ft_id &&
8667 resource->set_action == cache_resource->set_action &&
8668 !memcmp((void *)&resource->sample_act,
8669 (void *)&cache_resource->sample_act,
8670 sizeof(struct mlx5_flow_sub_actions_list))) {
8672 * Existing sample action should release the prepared
8673 * sub-actions reference counter.
8675 flow_dv_sample_sub_actions_release(dev,
8676 &resource->sample_idx);
8682 struct mlx5_cache_entry *
8683 flow_dv_sample_create_cb(struct mlx5_cache_list *list __rte_unused,
8684 struct mlx5_cache_entry *entry __rte_unused,
8687 struct mlx5_flow_cb_ctx *ctx = cb_ctx;
8688 struct rte_eth_dev *dev = ctx->dev;
8689 struct mlx5_flow_dv_sample_resource *resource = ctx->data;
8690 void **sample_dv_actions = resource->sub_actions;
8691 struct mlx5_flow_dv_sample_resource *cache_resource;
8692 struct mlx5dv_dr_flow_sampler_attr sampler_attr;
8693 struct mlx5_priv *priv = dev->data->dev_private;
8694 struct mlx5_dev_ctx_shared *sh = priv->sh;
8695 struct mlx5_flow_tbl_resource *tbl;
8697 const uint32_t next_ft_step = 1;
8698 uint32_t next_ft_id = resource->ft_id + next_ft_step;
8699 uint8_t is_egress = 0;
8700 uint8_t is_transfer = 0;
8701 struct rte_flow_error *error = ctx->error;
8703 /* Register new sample resource. */
8704 cache_resource = mlx5_ipool_zmalloc(sh->ipool[MLX5_IPOOL_SAMPLE], &idx);
8705 if (!cache_resource) {
8706 rte_flow_error_set(error, ENOMEM,
8707 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
8709 "cannot allocate resource memory");
8712 *cache_resource = *resource;
8713 /* Create normal path table level */
8714 if (resource->ft_type == MLX5DV_FLOW_TABLE_TYPE_FDB)
8716 else if (resource->ft_type == MLX5DV_FLOW_TABLE_TYPE_NIC_TX)
8718 tbl = flow_dv_tbl_resource_get(dev, next_ft_id,
8719 is_egress, is_transfer,
8720 true, NULL, 0, 0, error);
8722 rte_flow_error_set(error, ENOMEM,
8723 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
8725 "fail to create normal path table "
8729 cache_resource->normal_path_tbl = tbl;
8730 if (resource->ft_type == MLX5DV_FLOW_TABLE_TYPE_FDB) {
8731 cache_resource->default_miss =
8732 mlx5_glue->dr_create_flow_action_default_miss();
8733 if (!cache_resource->default_miss) {
8734 rte_flow_error_set(error, ENOMEM,
8735 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
8737 "cannot create default miss "
8741 sample_dv_actions[resource->sample_act.actions_num++] =
8742 cache_resource->default_miss;
8744 /* Create a DR sample action */
8745 sampler_attr.sample_ratio = cache_resource->ratio;
8746 sampler_attr.default_next_table = tbl->obj;
8747 sampler_attr.num_sample_actions = resource->sample_act.actions_num;
8748 sampler_attr.sample_actions = (struct mlx5dv_dr_action **)
8749 &sample_dv_actions[0];
8750 sampler_attr.action = cache_resource->set_action;
8751 cache_resource->verbs_action =
8752 mlx5_glue->dr_create_flow_action_sampler(&sampler_attr);
8753 if (!cache_resource->verbs_action) {
8754 rte_flow_error_set(error, ENOMEM,
8755 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
8756 NULL, "cannot create sample action");
8759 cache_resource->idx = idx;
8760 cache_resource->dev = dev;
8761 return &cache_resource->entry;
8763 if (cache_resource->ft_type == MLX5DV_FLOW_TABLE_TYPE_FDB &&
8764 cache_resource->default_miss)
8765 claim_zero(mlx5_glue->destroy_flow_action
8766 (cache_resource->default_miss));
8768 flow_dv_sample_sub_actions_release(dev,
8769 &cache_resource->sample_idx);
8770 if (cache_resource->normal_path_tbl)
8771 flow_dv_tbl_resource_release(MLX5_SH(dev),
8772 cache_resource->normal_path_tbl);
8773 mlx5_ipool_free(sh->ipool[MLX5_IPOOL_SAMPLE], idx);
8779 * Find existing sample resource or create and register a new one.
8781 * @param[in, out] dev
8782 * Pointer to rte_eth_dev structure.
8783 * @param[in] resource
8784 * Pointer to sample resource.
8785 * @parm[in, out] dev_flow
8786 * Pointer to the dev_flow.
8788 * pointer to error structure.
8791 * 0 on success otherwise -errno and errno is set.
8794 flow_dv_sample_resource_register(struct rte_eth_dev *dev,
8795 struct mlx5_flow_dv_sample_resource *resource,
8796 struct mlx5_flow *dev_flow,
8797 struct rte_flow_error *error)
8799 struct mlx5_flow_dv_sample_resource *cache_resource;
8800 struct mlx5_cache_entry *entry;
8801 struct mlx5_priv *priv = dev->data->dev_private;
8802 struct mlx5_flow_cb_ctx ctx = {
8808 entry = mlx5_cache_register(&priv->sh->sample_action_list, &ctx);
8811 cache_resource = container_of(entry, typeof(*cache_resource), entry);
8812 dev_flow->handle->dvh.rix_sample = cache_resource->idx;
8813 dev_flow->dv.sample_res = cache_resource;
8818 flow_dv_dest_array_match_cb(struct mlx5_cache_list *list __rte_unused,
8819 struct mlx5_cache_entry *entry, void *cb_ctx)
8821 struct mlx5_flow_cb_ctx *ctx = cb_ctx;
8822 struct mlx5_flow_dv_dest_array_resource *resource = ctx->data;
8823 struct rte_eth_dev *dev = ctx->dev;
8824 struct mlx5_flow_dv_dest_array_resource *cache_resource =
8825 container_of(entry, typeof(*cache_resource), entry);
8828 if (resource->num_of_dest == cache_resource->num_of_dest &&
8829 resource->ft_type == cache_resource->ft_type &&
8830 !memcmp((void *)cache_resource->sample_act,
8831 (void *)resource->sample_act,
8832 (resource->num_of_dest *
8833 sizeof(struct mlx5_flow_sub_actions_list)))) {
8835 * Existing sample action should release the prepared
8836 * sub-actions reference counter.
8838 for (idx = 0; idx < resource->num_of_dest; idx++)
8839 flow_dv_sample_sub_actions_release(dev,
8840 &resource->sample_idx[idx]);
8846 struct mlx5_cache_entry *
8847 flow_dv_dest_array_create_cb(struct mlx5_cache_list *list __rte_unused,
8848 struct mlx5_cache_entry *entry __rte_unused,
8851 struct mlx5_flow_cb_ctx *ctx = cb_ctx;
8852 struct rte_eth_dev *dev = ctx->dev;
8853 struct mlx5_flow_dv_dest_array_resource *cache_resource;
8854 struct mlx5_flow_dv_dest_array_resource *resource = ctx->data;
8855 struct mlx5dv_dr_action_dest_attr *dest_attr[MLX5_MAX_DEST_NUM] = { 0 };
8856 struct mlx5dv_dr_action_dest_reformat dest_reformat[MLX5_MAX_DEST_NUM];
8857 struct mlx5_priv *priv = dev->data->dev_private;
8858 struct mlx5_dev_ctx_shared *sh = priv->sh;
8859 struct mlx5_flow_sub_actions_list *sample_act;
8860 struct mlx5dv_dr_domain *domain;
8861 uint32_t idx = 0, res_idx = 0;
8862 struct rte_flow_error *error = ctx->error;
8864 /* Register new destination array resource. */
8865 cache_resource = mlx5_ipool_zmalloc(sh->ipool[MLX5_IPOOL_DEST_ARRAY],
8867 if (!cache_resource) {
8868 rte_flow_error_set(error, ENOMEM,
8869 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
8871 "cannot allocate resource memory");
8874 *cache_resource = *resource;
8875 if (resource->ft_type == MLX5DV_FLOW_TABLE_TYPE_FDB)
8876 domain = sh->fdb_domain;
8877 else if (resource->ft_type == MLX5DV_FLOW_TABLE_TYPE_NIC_RX)
8878 domain = sh->rx_domain;
8880 domain = sh->tx_domain;
8881 for (idx = 0; idx < resource->num_of_dest; idx++) {
8882 dest_attr[idx] = (struct mlx5dv_dr_action_dest_attr *)
8883 mlx5_malloc(MLX5_MEM_ZERO,
8884 sizeof(struct mlx5dv_dr_action_dest_attr),
8886 if (!dest_attr[idx]) {
8887 rte_flow_error_set(error, ENOMEM,
8888 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
8890 "cannot allocate resource memory");
8893 dest_attr[idx]->type = MLX5DV_DR_ACTION_DEST;
8894 sample_act = &resource->sample_act[idx];
8895 if (sample_act->action_flags == MLX5_FLOW_ACTION_QUEUE) {
8896 dest_attr[idx]->dest = sample_act->dr_queue_action;
8897 } else if (sample_act->action_flags ==
8898 (MLX5_FLOW_ACTION_PORT_ID | MLX5_FLOW_ACTION_ENCAP)) {
8899 dest_attr[idx]->type = MLX5DV_DR_ACTION_DEST_REFORMAT;
8900 dest_attr[idx]->dest_reformat = &dest_reformat[idx];
8901 dest_attr[idx]->dest_reformat->reformat =
8902 sample_act->dr_encap_action;
8903 dest_attr[idx]->dest_reformat->dest =
8904 sample_act->dr_port_id_action;
8905 } else if (sample_act->action_flags ==
8906 MLX5_FLOW_ACTION_PORT_ID) {
8907 dest_attr[idx]->dest = sample_act->dr_port_id_action;
8910 /* create a dest array actioin */
8911 cache_resource->action = mlx5_glue->dr_create_flow_action_dest_array
8913 cache_resource->num_of_dest,
8915 if (!cache_resource->action) {
8916 rte_flow_error_set(error, ENOMEM,
8917 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
8919 "cannot create destination array action");
8922 cache_resource->idx = res_idx;
8923 cache_resource->dev = dev;
8924 for (idx = 0; idx < resource->num_of_dest; idx++)
8925 mlx5_free(dest_attr[idx]);
8926 return &cache_resource->entry;
8928 for (idx = 0; idx < resource->num_of_dest; idx++) {
8929 struct mlx5_flow_sub_actions_idx *act_res =
8930 &cache_resource->sample_idx[idx];
8931 if (act_res->rix_hrxq &&
8932 !mlx5_hrxq_release(dev,
8934 act_res->rix_hrxq = 0;
8935 if (act_res->rix_encap_decap &&
8936 !flow_dv_encap_decap_resource_release(dev,
8937 act_res->rix_encap_decap))
8938 act_res->rix_encap_decap = 0;
8939 if (act_res->rix_port_id_action &&
8940 !flow_dv_port_id_action_resource_release(dev,
8941 act_res->rix_port_id_action))
8942 act_res->rix_port_id_action = 0;
8944 mlx5_free(dest_attr[idx]);
8947 mlx5_ipool_free(sh->ipool[MLX5_IPOOL_DEST_ARRAY], res_idx);
8952 * Find existing destination array resource or create and register a new one.
8954 * @param[in, out] dev
8955 * Pointer to rte_eth_dev structure.
8956 * @param[in] resource
8957 * Pointer to destination array resource.
8958 * @parm[in, out] dev_flow
8959 * Pointer to the dev_flow.
8961 * pointer to error structure.
8964 * 0 on success otherwise -errno and errno is set.
8967 flow_dv_dest_array_resource_register(struct rte_eth_dev *dev,
8968 struct mlx5_flow_dv_dest_array_resource *resource,
8969 struct mlx5_flow *dev_flow,
8970 struct rte_flow_error *error)
8972 struct mlx5_flow_dv_dest_array_resource *cache_resource;
8973 struct mlx5_priv *priv = dev->data->dev_private;
8974 struct mlx5_cache_entry *entry;
8975 struct mlx5_flow_cb_ctx ctx = {
8981 entry = mlx5_cache_register(&priv->sh->dest_array_list, &ctx);
8984 cache_resource = container_of(entry, typeof(*cache_resource), entry);
8985 dev_flow->handle->dvh.rix_dest_array = cache_resource->idx;
8986 dev_flow->dv.dest_array_res = cache_resource;
8991 * Convert Sample action to DV specification.
8994 * Pointer to rte_eth_dev structure.
8996 * Pointer to action structure.
8997 * @param[in, out] dev_flow
8998 * Pointer to the mlx5_flow.
9000 * Pointer to the flow attributes.
9001 * @param[in, out] num_of_dest
9002 * Pointer to the num of destination.
9003 * @param[in, out] sample_actions
9004 * Pointer to sample actions list.
9005 * @param[in, out] res
9006 * Pointer to sample resource.
9008 * Pointer to the error structure.
9011 * 0 on success, a negative errno value otherwise and rte_errno is set.
9014 flow_dv_translate_action_sample(struct rte_eth_dev *dev,
9015 const struct rte_flow_action *action,
9016 struct mlx5_flow *dev_flow,
9017 const struct rte_flow_attr *attr,
9018 uint32_t *num_of_dest,
9019 void **sample_actions,
9020 struct mlx5_flow_dv_sample_resource *res,
9021 struct rte_flow_error *error)
9023 struct mlx5_priv *priv = dev->data->dev_private;
9024 const struct rte_flow_action_sample *sample_action;
9025 const struct rte_flow_action *sub_actions;
9026 const struct rte_flow_action_queue *queue;
9027 struct mlx5_flow_sub_actions_list *sample_act;
9028 struct mlx5_flow_sub_actions_idx *sample_idx;
9029 struct mlx5_flow_workspace *wks = mlx5_flow_get_thread_workspace();
9030 struct mlx5_flow_rss_desc *rss_desc;
9031 uint64_t action_flags = 0;
9034 rss_desc = &wks->rss_desc;
9035 sample_act = &res->sample_act;
9036 sample_idx = &res->sample_idx;
9037 sample_action = (const struct rte_flow_action_sample *)action->conf;
9038 res->ratio = sample_action->ratio;
9039 sub_actions = sample_action->actions;
9040 for (; sub_actions->type != RTE_FLOW_ACTION_TYPE_END; sub_actions++) {
9041 int type = sub_actions->type;
9042 uint32_t pre_rix = 0;
9045 case RTE_FLOW_ACTION_TYPE_QUEUE:
9047 struct mlx5_hrxq *hrxq;
9050 queue = sub_actions->conf;
9051 rss_desc->queue_num = 1;
9052 rss_desc->queue[0] = queue->index;
9053 hrxq = flow_dv_hrxq_prepare(dev, dev_flow,
9054 rss_desc, &hrxq_idx);
9056 return rte_flow_error_set
9058 RTE_FLOW_ERROR_TYPE_ACTION,
9060 "cannot create fate queue");
9061 sample_act->dr_queue_action = hrxq->action;
9062 sample_idx->rix_hrxq = hrxq_idx;
9063 sample_actions[sample_act->actions_num++] =
9066 action_flags |= MLX5_FLOW_ACTION_QUEUE;
9067 if (action_flags & MLX5_FLOW_ACTION_MARK)
9068 dev_flow->handle->rix_hrxq = hrxq_idx;
9069 dev_flow->handle->fate_action =
9070 MLX5_FLOW_FATE_QUEUE;
9073 case RTE_FLOW_ACTION_TYPE_MARK:
9075 uint32_t tag_be = mlx5_flow_mark_set
9076 (((const struct rte_flow_action_mark *)
9077 (sub_actions->conf))->id);
9079 dev_flow->handle->mark = 1;
9080 pre_rix = dev_flow->handle->dvh.rix_tag;
9081 /* Save the mark resource before sample */
9082 pre_r = dev_flow->dv.tag_resource;
9083 if (flow_dv_tag_resource_register(dev, tag_be,
9086 MLX5_ASSERT(dev_flow->dv.tag_resource);
9087 sample_act->dr_tag_action =
9088 dev_flow->dv.tag_resource->action;
9089 sample_idx->rix_tag =
9090 dev_flow->handle->dvh.rix_tag;
9091 sample_actions[sample_act->actions_num++] =
9092 sample_act->dr_tag_action;
9093 /* Recover the mark resource after sample */
9094 dev_flow->dv.tag_resource = pre_r;
9095 dev_flow->handle->dvh.rix_tag = pre_rix;
9096 action_flags |= MLX5_FLOW_ACTION_MARK;
9099 case RTE_FLOW_ACTION_TYPE_COUNT:
9103 counter = flow_dv_translate_create_counter(dev,
9104 dev_flow, sub_actions->conf, 0);
9106 return rte_flow_error_set
9108 RTE_FLOW_ERROR_TYPE_ACTION,
9110 "cannot create counter"
9112 sample_idx->cnt = counter;
9113 sample_act->dr_cnt_action =
9114 (flow_dv_counter_get_by_idx(dev,
9115 counter, NULL))->action;
9116 sample_actions[sample_act->actions_num++] =
9117 sample_act->dr_cnt_action;
9118 action_flags |= MLX5_FLOW_ACTION_COUNT;
9121 case RTE_FLOW_ACTION_TYPE_PORT_ID:
9123 struct mlx5_flow_dv_port_id_action_resource
9125 uint32_t port_id = 0;
9127 memset(&port_id_resource, 0, sizeof(port_id_resource));
9128 /* Save the port id resource before sample */
9129 pre_rix = dev_flow->handle->rix_port_id_action;
9130 pre_r = dev_flow->dv.port_id_action;
9131 if (flow_dv_translate_action_port_id(dev, sub_actions,
9134 port_id_resource.port_id = port_id;
9135 if (flow_dv_port_id_action_resource_register
9136 (dev, &port_id_resource, dev_flow, error))
9138 sample_act->dr_port_id_action =
9139 dev_flow->dv.port_id_action->action;
9140 sample_idx->rix_port_id_action =
9141 dev_flow->handle->rix_port_id_action;
9142 sample_actions[sample_act->actions_num++] =
9143 sample_act->dr_port_id_action;
9144 /* Recover the port id resource after sample */
9145 dev_flow->dv.port_id_action = pre_r;
9146 dev_flow->handle->rix_port_id_action = pre_rix;
9148 action_flags |= MLX5_FLOW_ACTION_PORT_ID;
9151 case RTE_FLOW_ACTION_TYPE_RAW_ENCAP:
9152 /* Save the encap resource before sample */
9153 pre_rix = dev_flow->handle->dvh.rix_encap_decap;
9154 pre_r = dev_flow->dv.encap_decap;
9155 if (flow_dv_create_action_l2_encap(dev, sub_actions,
9160 sample_act->dr_encap_action =
9161 dev_flow->dv.encap_decap->action;
9162 sample_idx->rix_encap_decap =
9163 dev_flow->handle->dvh.rix_encap_decap;
9164 sample_actions[sample_act->actions_num++] =
9165 sample_act->dr_encap_action;
9166 /* Recover the encap resource after sample */
9167 dev_flow->dv.encap_decap = pre_r;
9168 dev_flow->handle->dvh.rix_encap_decap = pre_rix;
9169 action_flags |= MLX5_FLOW_ACTION_ENCAP;
9172 return rte_flow_error_set(error, EINVAL,
9173 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
9175 "Not support for sampler action");
9178 sample_act->action_flags = action_flags;
9179 res->ft_id = dev_flow->dv.group;
9180 if (attr->transfer) {
9182 uint32_t action_in[MLX5_ST_SZ_DW(set_action_in)];
9183 uint64_t set_action;
9184 } action_ctx = { .set_action = 0 };
9186 res->ft_type = MLX5DV_FLOW_TABLE_TYPE_FDB;
9187 MLX5_SET(set_action_in, action_ctx.action_in, action_type,
9188 MLX5_MODIFICATION_TYPE_SET);
9189 MLX5_SET(set_action_in, action_ctx.action_in, field,
9190 MLX5_MODI_META_REG_C_0);
9191 MLX5_SET(set_action_in, action_ctx.action_in, data,
9192 priv->vport_meta_tag);
9193 res->set_action = action_ctx.set_action;
9194 } else if (attr->ingress) {
9195 res->ft_type = MLX5DV_FLOW_TABLE_TYPE_NIC_RX;
9197 res->ft_type = MLX5DV_FLOW_TABLE_TYPE_NIC_TX;
9203 * Convert Sample action to DV specification.
9206 * Pointer to rte_eth_dev structure.
9207 * @param[in, out] dev_flow
9208 * Pointer to the mlx5_flow.
9209 * @param[in] num_of_dest
9210 * The num of destination.
9211 * @param[in, out] res
9212 * Pointer to sample resource.
9213 * @param[in, out] mdest_res
9214 * Pointer to destination array resource.
9215 * @param[in] sample_actions
9216 * Pointer to sample path actions list.
9217 * @param[in] action_flags
9218 * Holds the actions detected until now.
9220 * Pointer to the error structure.
9223 * 0 on success, a negative errno value otherwise and rte_errno is set.
9226 flow_dv_create_action_sample(struct rte_eth_dev *dev,
9227 struct mlx5_flow *dev_flow,
9228 uint32_t num_of_dest,
9229 struct mlx5_flow_dv_sample_resource *res,
9230 struct mlx5_flow_dv_dest_array_resource *mdest_res,
9231 void **sample_actions,
9232 uint64_t action_flags,
9233 struct rte_flow_error *error)
9235 /* update normal path action resource into last index of array */
9236 uint32_t dest_index = MLX5_MAX_DEST_NUM - 1;
9237 struct mlx5_flow_sub_actions_list *sample_act =
9238 &mdest_res->sample_act[dest_index];
9239 struct mlx5_flow_workspace *wks = mlx5_flow_get_thread_workspace();
9240 struct mlx5_flow_rss_desc *rss_desc;
9241 uint32_t normal_idx = 0;
9242 struct mlx5_hrxq *hrxq;
9246 rss_desc = &wks->rss_desc;
9247 if (num_of_dest > 1) {
9248 if (sample_act->action_flags & MLX5_FLOW_ACTION_QUEUE) {
9249 /* Handle QP action for mirroring */
9250 hrxq = flow_dv_hrxq_prepare(dev, dev_flow,
9251 rss_desc, &hrxq_idx);
9253 return rte_flow_error_set
9255 RTE_FLOW_ERROR_TYPE_ACTION,
9257 "cannot create rx queue");
9259 mdest_res->sample_idx[dest_index].rix_hrxq = hrxq_idx;
9260 sample_act->dr_queue_action = hrxq->action;
9261 if (action_flags & MLX5_FLOW_ACTION_MARK)
9262 dev_flow->handle->rix_hrxq = hrxq_idx;
9263 dev_flow->handle->fate_action = MLX5_FLOW_FATE_QUEUE;
9265 if (sample_act->action_flags & MLX5_FLOW_ACTION_ENCAP) {
9267 mdest_res->sample_idx[dest_index].rix_encap_decap =
9268 dev_flow->handle->dvh.rix_encap_decap;
9269 sample_act->dr_encap_action =
9270 dev_flow->dv.encap_decap->action;
9272 if (sample_act->action_flags & MLX5_FLOW_ACTION_PORT_ID) {
9274 mdest_res->sample_idx[dest_index].rix_port_id_action =
9275 dev_flow->handle->rix_port_id_action;
9276 sample_act->dr_port_id_action =
9277 dev_flow->dv.port_id_action->action;
9279 sample_act->actions_num = normal_idx;
9280 /* update sample action resource into first index of array */
9281 mdest_res->ft_type = res->ft_type;
9282 memcpy(&mdest_res->sample_idx[0], &res->sample_idx,
9283 sizeof(struct mlx5_flow_sub_actions_idx));
9284 memcpy(&mdest_res->sample_act[0], &res->sample_act,
9285 sizeof(struct mlx5_flow_sub_actions_list));
9286 mdest_res->num_of_dest = num_of_dest;
9287 if (flow_dv_dest_array_resource_register(dev, mdest_res,
9289 return rte_flow_error_set(error, EINVAL,
9290 RTE_FLOW_ERROR_TYPE_ACTION,
9291 NULL, "can't create sample "
9294 res->sub_actions = sample_actions;
9295 if (flow_dv_sample_resource_register(dev, res, dev_flow, error))
9296 return rte_flow_error_set(error, EINVAL,
9297 RTE_FLOW_ERROR_TYPE_ACTION,
9299 "can't create sample action");
9305 * Remove an ASO age action from age actions list.
9308 * Pointer to the Ethernet device structure.
9310 * Pointer to the aso age action handler.
9313 flow_dv_aso_age_remove_from_age(struct rte_eth_dev *dev,
9314 struct mlx5_aso_age_action *age)
9316 struct mlx5_age_info *age_info;
9317 struct mlx5_age_param *age_param = &age->age_params;
9318 struct mlx5_priv *priv = dev->data->dev_private;
9319 uint16_t expected = AGE_CANDIDATE;
9321 age_info = GET_PORT_AGE_INFO(priv);
9322 if (!__atomic_compare_exchange_n(&age_param->state, &expected,
9323 AGE_FREE, false, __ATOMIC_RELAXED,
9324 __ATOMIC_RELAXED)) {
9326 * We need the lock even it is age timeout,
9327 * since age action may still in process.
9329 rte_spinlock_lock(&age_info->aged_sl);
9330 LIST_REMOVE(age, next);
9331 rte_spinlock_unlock(&age_info->aged_sl);
9332 __atomic_store_n(&age_param->state, AGE_FREE, __ATOMIC_RELAXED);
9337 * Release an ASO age action.
9340 * Pointer to the Ethernet device structure.
9341 * @param[in] age_idx
9342 * Index of ASO age action to release.
9344 * True if the release operation is during flow destroy operation.
9345 * False if the release operation is during action destroy operation.
9348 * 0 when age action was removed, otherwise the number of references.
9351 flow_dv_aso_age_release(struct rte_eth_dev *dev, uint32_t age_idx)
9353 struct mlx5_priv *priv = dev->data->dev_private;
9354 struct mlx5_aso_age_mng *mng = priv->sh->aso_age_mng;
9355 struct mlx5_aso_age_action *age = flow_aso_age_get_by_idx(dev, age_idx);
9356 uint32_t ret = __atomic_sub_fetch(&age->refcnt, 1, __ATOMIC_RELAXED);
9359 flow_dv_aso_age_remove_from_age(dev, age);
9360 rte_spinlock_lock(&mng->free_sl);
9361 LIST_INSERT_HEAD(&mng->free, age, next);
9362 rte_spinlock_unlock(&mng->free_sl);
9368 * Resize the ASO age pools array by MLX5_CNT_CONTAINER_RESIZE pools.
9371 * Pointer to the Ethernet device structure.
9374 * 0 on success, otherwise negative errno value and rte_errno is set.
9377 flow_dv_aso_age_pools_resize(struct rte_eth_dev *dev)
9379 struct mlx5_priv *priv = dev->data->dev_private;
9380 struct mlx5_aso_age_mng *mng = priv->sh->aso_age_mng;
9381 void *old_pools = mng->pools;
9382 uint32_t resize = mng->n + MLX5_CNT_CONTAINER_RESIZE;
9383 uint32_t mem_size = sizeof(struct mlx5_aso_age_pool *) * resize;
9384 void *pools = mlx5_malloc(MLX5_MEM_ZERO, mem_size, 0, SOCKET_ID_ANY);
9391 memcpy(pools, old_pools,
9392 mng->n * sizeof(struct mlx5_flow_counter_pool *));
9393 mlx5_free(old_pools);
9395 /* First ASO flow hit allocation - starting ASO data-path. */
9396 int ret = mlx5_aso_queue_start(priv->sh);
9409 * Create and initialize a new ASO aging pool.
9412 * Pointer to the Ethernet device structure.
9413 * @param[out] age_free
9414 * Where to put the pointer of a new age action.
9417 * The age actions pool pointer and @p age_free is set on success,
9418 * NULL otherwise and rte_errno is set.
9420 static struct mlx5_aso_age_pool *
9421 flow_dv_age_pool_create(struct rte_eth_dev *dev,
9422 struct mlx5_aso_age_action **age_free)
9424 struct mlx5_priv *priv = dev->data->dev_private;
9425 struct mlx5_aso_age_mng *mng = priv->sh->aso_age_mng;
9426 struct mlx5_aso_age_pool *pool = NULL;
9427 struct mlx5_devx_obj *obj = NULL;
9430 obj = mlx5_devx_cmd_create_flow_hit_aso_obj(priv->sh->ctx,
9433 rte_errno = ENODATA;
9434 DRV_LOG(ERR, "Failed to create flow_hit_aso_obj using DevX.");
9437 pool = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*pool), 0, SOCKET_ID_ANY);
9439 claim_zero(mlx5_devx_cmd_destroy(obj));
9443 pool->flow_hit_aso_obj = obj;
9444 pool->time_of_last_age_check = MLX5_CURR_TIME_SEC;
9445 rte_spinlock_lock(&mng->resize_sl);
9446 pool->index = mng->next;
9447 /* Resize pools array if there is no room for the new pool in it. */
9448 if (pool->index == mng->n && flow_dv_aso_age_pools_resize(dev)) {
9449 claim_zero(mlx5_devx_cmd_destroy(obj));
9451 rte_spinlock_unlock(&mng->resize_sl);
9454 mng->pools[pool->index] = pool;
9456 rte_spinlock_unlock(&mng->resize_sl);
9457 /* Assign the first action in the new pool, the rest go to free list. */
9458 *age_free = &pool->actions[0];
9459 for (i = 1; i < MLX5_ASO_AGE_ACTIONS_PER_POOL; i++) {
9460 pool->actions[i].offset = i;
9461 LIST_INSERT_HEAD(&mng->free, &pool->actions[i], next);
9467 * Allocate a ASO aging bit.
9470 * Pointer to the Ethernet device structure.
9473 * Index to ASO age action on success, 0 otherwise and rte_errno is set.
9476 flow_dv_aso_age_alloc(struct rte_eth_dev *dev)
9478 struct mlx5_priv *priv = dev->data->dev_private;
9479 const struct mlx5_aso_age_pool *pool;
9480 struct mlx5_aso_age_action *age_free = NULL;
9481 struct mlx5_aso_age_mng *mng = priv->sh->aso_age_mng;
9484 /* Try to get the next free age action bit. */
9485 rte_spinlock_lock(&mng->free_sl);
9486 age_free = LIST_FIRST(&mng->free);
9488 LIST_REMOVE(age_free, next);
9489 } else if (!flow_dv_age_pool_create(dev, &age_free)) {
9490 rte_spinlock_unlock(&mng->free_sl);
9491 return 0; /* 0 is an error.*/
9493 rte_spinlock_unlock(&mng->free_sl);
9495 ((const struct mlx5_aso_age_action (*)[MLX5_ASO_AGE_ACTIONS_PER_POOL])
9496 (age_free - age_free->offset), const struct mlx5_aso_age_pool,
9498 if (!age_free->dr_action) {
9499 age_free->dr_action = mlx5_glue->dr_action_create_flow_hit
9500 (pool->flow_hit_aso_obj->obj,
9501 age_free->offset, REG_C_5);
9502 if (!age_free->dr_action) {
9504 rte_spinlock_lock(&mng->free_sl);
9505 LIST_INSERT_HEAD(&mng->free, age_free, next);
9506 rte_spinlock_unlock(&mng->free_sl);
9507 return 0; /* 0 is an error.*/
9510 __atomic_store_n(&age_free->refcnt, 1, __ATOMIC_RELAXED);
9511 return pool->index | ((age_free->offset + 1) << 16);
9515 * Create a age action using ASO mechanism.
9518 * Pointer to rte_eth_dev structure.
9520 * Pointer to the aging action configuration.
9523 * Index to flow counter on success, 0 otherwise.
9526 flow_dv_translate_create_aso_age(struct rte_eth_dev *dev,
9527 const struct rte_flow_action_age *age)
9529 uint32_t age_idx = 0;
9530 struct mlx5_aso_age_action *aso_age;
9532 age_idx = flow_dv_aso_age_alloc(dev);
9535 aso_age = flow_aso_age_get_by_idx(dev, age_idx);
9536 aso_age->age_params.context = age->context;
9537 aso_age->age_params.timeout = age->timeout;
9538 aso_age->age_params.port_id = dev->data->port_id;
9539 __atomic_store_n(&aso_age->age_params.sec_since_last_hit, 0,
9541 __atomic_store_n(&aso_age->age_params.state, AGE_CANDIDATE,
9547 * Fill the flow with DV spec, lock free
9548 * (mutex should be acquired by caller).
9551 * Pointer to rte_eth_dev structure.
9552 * @param[in, out] dev_flow
9553 * Pointer to the sub flow.
9555 * Pointer to the flow attributes.
9557 * Pointer to the list of items.
9558 * @param[in] actions
9559 * Pointer to the list of actions.
9561 * Pointer to the error structure.
9564 * 0 on success, a negative errno value otherwise and rte_errno is set.
9567 flow_dv_translate(struct rte_eth_dev *dev,
9568 struct mlx5_flow *dev_flow,
9569 const struct rte_flow_attr *attr,
9570 const struct rte_flow_item items[],
9571 const struct rte_flow_action actions[],
9572 struct rte_flow_error *error)
9574 struct mlx5_priv *priv = dev->data->dev_private;
9575 struct mlx5_dev_config *dev_conf = &priv->config;
9576 struct rte_flow *flow = dev_flow->flow;
9577 struct mlx5_flow_handle *handle = dev_flow->handle;
9578 struct mlx5_flow_workspace *wks = mlx5_flow_get_thread_workspace();
9579 struct mlx5_flow_rss_desc *rss_desc;
9580 uint64_t item_flags = 0;
9581 uint64_t last_item = 0;
9582 uint64_t action_flags = 0;
9583 uint64_t priority = attr->priority;
9584 struct mlx5_flow_dv_matcher matcher = {
9586 .size = sizeof(matcher.mask.buf) -
9587 MLX5_ST_SZ_BYTES(fte_match_set_misc4),
9591 bool actions_end = false;
9593 struct mlx5_flow_dv_modify_hdr_resource res;
9594 uint8_t len[sizeof(struct mlx5_flow_dv_modify_hdr_resource) +
9595 sizeof(struct mlx5_modification_cmd) *
9596 (MLX5_MAX_MODIFY_NUM + 1)];
9598 struct mlx5_flow_dv_modify_hdr_resource *mhdr_res = &mhdr_dummy.res;
9599 const struct rte_flow_action_count *count = NULL;
9600 const struct rte_flow_action_age *age = NULL;
9601 union flow_dv_attr flow_attr = { .attr = 0 };
9603 union mlx5_flow_tbl_key tbl_key;
9604 uint32_t modify_action_position = UINT32_MAX;
9605 void *match_mask = matcher.mask.buf;
9606 void *match_value = dev_flow->dv.value.buf;
9607 uint8_t next_protocol = 0xff;
9608 struct rte_vlan_hdr vlan = { 0 };
9609 struct mlx5_flow_dv_dest_array_resource mdest_res;
9610 struct mlx5_flow_dv_sample_resource sample_res;
9611 void *sample_actions[MLX5_DV_MAX_NUMBER_OF_ACTIONS] = {0};
9612 struct mlx5_flow_sub_actions_list *sample_act;
9613 uint32_t sample_act_pos = UINT32_MAX;
9614 uint32_t num_of_dest = 0;
9615 int tmp_actions_n = 0;
9618 const struct mlx5_flow_tunnel *tunnel;
9619 struct flow_grp_info grp_info = {
9620 .external = !!dev_flow->external,
9621 .transfer = !!attr->transfer,
9622 .fdb_def_rule = !!priv->fdb_def_rule,
9623 .skip_scale = !!dev_flow->skip_scale,
9627 return rte_flow_error_set(error, ENOMEM,
9628 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
9630 "failed to push flow workspace");
9631 rss_desc = &wks->rss_desc;
9632 memset(&mdest_res, 0, sizeof(struct mlx5_flow_dv_dest_array_resource));
9633 memset(&sample_res, 0, sizeof(struct mlx5_flow_dv_sample_resource));
9634 mhdr_res->ft_type = attr->egress ? MLX5DV_FLOW_TABLE_TYPE_NIC_TX :
9635 MLX5DV_FLOW_TABLE_TYPE_NIC_RX;
9636 /* update normal path action resource into last index of array */
9637 sample_act = &mdest_res.sample_act[MLX5_MAX_DEST_NUM - 1];
9638 tunnel = is_flow_tunnel_match_rule(dev, attr, items, actions) ?
9639 flow_items_to_tunnel(items) :
9640 is_flow_tunnel_steer_rule(dev, attr, items, actions) ?
9641 flow_actions_to_tunnel(actions) :
9642 dev_flow->tunnel ? dev_flow->tunnel : NULL;
9643 mhdr_res->ft_type = attr->egress ? MLX5DV_FLOW_TABLE_TYPE_NIC_TX :
9644 MLX5DV_FLOW_TABLE_TYPE_NIC_RX;
9645 grp_info.std_tbl_fix = tunnel_use_standard_attr_group_translate
9646 (dev, tunnel, attr, items, actions);
9647 ret = mlx5_flow_group_to_table(dev, tunnel, attr->group, &table,
9651 dev_flow->dv.group = table;
9653 mhdr_res->ft_type = MLX5DV_FLOW_TABLE_TYPE_FDB;
9654 if (priority == MLX5_FLOW_PRIO_RSVD)
9655 priority = dev_conf->flow_prio - 1;
9656 /* number of actions must be set to 0 in case of dirty stack. */
9657 mhdr_res->actions_num = 0;
9658 if (is_flow_tunnel_match_rule(dev, attr, items, actions)) {
9660 * do not add decap action if match rule drops packet
9661 * HW rejects rules with decap & drop
9663 * if tunnel match rule was inserted before matching tunnel set
9664 * rule flow table used in the match rule must be registered.
9665 * current implementation handles that in the
9666 * flow_dv_match_register() at the function end.
9668 bool add_decap = true;
9669 const struct rte_flow_action *ptr = actions;
9671 for (; ptr->type != RTE_FLOW_ACTION_TYPE_END; ptr++) {
9672 if (ptr->type == RTE_FLOW_ACTION_TYPE_DROP) {
9678 if (flow_dv_create_action_l2_decap(dev, dev_flow,
9682 dev_flow->dv.actions[actions_n++] =
9683 dev_flow->dv.encap_decap->action;
9684 action_flags |= MLX5_FLOW_ACTION_DECAP;
9687 for (; !actions_end ; actions++) {
9688 const struct rte_flow_action_queue *queue;
9689 const struct rte_flow_action_rss *rss;
9690 const struct rte_flow_action *action = actions;
9691 const uint8_t *rss_key;
9692 const struct rte_flow_action_meter *mtr;
9693 struct mlx5_flow_tbl_resource *tbl;
9694 struct mlx5_aso_age_action *age_act;
9695 uint32_t port_id = 0;
9696 struct mlx5_flow_dv_port_id_action_resource port_id_resource;
9697 int action_type = actions->type;
9698 const struct rte_flow_action *found_action = NULL;
9699 struct mlx5_flow_meter *fm = NULL;
9700 uint32_t jump_group = 0;
9702 if (!mlx5_flow_os_action_supported(action_type))
9703 return rte_flow_error_set(error, ENOTSUP,
9704 RTE_FLOW_ERROR_TYPE_ACTION,
9706 "action not supported");
9707 switch (action_type) {
9708 case MLX5_RTE_FLOW_ACTION_TYPE_TUNNEL_SET:
9709 action_flags |= MLX5_FLOW_ACTION_TUNNEL_SET;
9711 case RTE_FLOW_ACTION_TYPE_VOID:
9713 case RTE_FLOW_ACTION_TYPE_PORT_ID:
9714 if (flow_dv_translate_action_port_id(dev, action,
9717 port_id_resource.port_id = port_id;
9718 MLX5_ASSERT(!handle->rix_port_id_action);
9719 if (flow_dv_port_id_action_resource_register
9720 (dev, &port_id_resource, dev_flow, error))
9722 dev_flow->dv.actions[actions_n++] =
9723 dev_flow->dv.port_id_action->action;
9724 action_flags |= MLX5_FLOW_ACTION_PORT_ID;
9725 dev_flow->handle->fate_action = MLX5_FLOW_FATE_PORT_ID;
9726 sample_act->action_flags |= MLX5_FLOW_ACTION_PORT_ID;
9729 case RTE_FLOW_ACTION_TYPE_FLAG:
9730 action_flags |= MLX5_FLOW_ACTION_FLAG;
9731 dev_flow->handle->mark = 1;
9732 if (dev_conf->dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
9733 struct rte_flow_action_mark mark = {
9734 .id = MLX5_FLOW_MARK_DEFAULT,
9737 if (flow_dv_convert_action_mark(dev, &mark,
9741 action_flags |= MLX5_FLOW_ACTION_MARK_EXT;
9744 tag_be = mlx5_flow_mark_set(MLX5_FLOW_MARK_DEFAULT);
9746 * Only one FLAG or MARK is supported per device flow
9747 * right now. So the pointer to the tag resource must be
9748 * zero before the register process.
9750 MLX5_ASSERT(!handle->dvh.rix_tag);
9751 if (flow_dv_tag_resource_register(dev, tag_be,
9754 MLX5_ASSERT(dev_flow->dv.tag_resource);
9755 dev_flow->dv.actions[actions_n++] =
9756 dev_flow->dv.tag_resource->action;
9758 case RTE_FLOW_ACTION_TYPE_MARK:
9759 action_flags |= MLX5_FLOW_ACTION_MARK;
9760 dev_flow->handle->mark = 1;
9761 if (dev_conf->dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
9762 const struct rte_flow_action_mark *mark =
9763 (const struct rte_flow_action_mark *)
9766 if (flow_dv_convert_action_mark(dev, mark,
9770 action_flags |= MLX5_FLOW_ACTION_MARK_EXT;
9774 case MLX5_RTE_FLOW_ACTION_TYPE_MARK:
9775 /* Legacy (non-extensive) MARK action. */
9776 tag_be = mlx5_flow_mark_set
9777 (((const struct rte_flow_action_mark *)
9778 (actions->conf))->id);
9779 MLX5_ASSERT(!handle->dvh.rix_tag);
9780 if (flow_dv_tag_resource_register(dev, tag_be,
9783 MLX5_ASSERT(dev_flow->dv.tag_resource);
9784 dev_flow->dv.actions[actions_n++] =
9785 dev_flow->dv.tag_resource->action;
9787 case RTE_FLOW_ACTION_TYPE_SET_META:
9788 if (flow_dv_convert_action_set_meta
9789 (dev, mhdr_res, attr,
9790 (const struct rte_flow_action_set_meta *)
9791 actions->conf, error))
9793 action_flags |= MLX5_FLOW_ACTION_SET_META;
9795 case RTE_FLOW_ACTION_TYPE_SET_TAG:
9796 if (flow_dv_convert_action_set_tag
9798 (const struct rte_flow_action_set_tag *)
9799 actions->conf, error))
9801 action_flags |= MLX5_FLOW_ACTION_SET_TAG;
9803 case RTE_FLOW_ACTION_TYPE_DROP:
9804 action_flags |= MLX5_FLOW_ACTION_DROP;
9805 dev_flow->handle->fate_action = MLX5_FLOW_FATE_DROP;
9807 case RTE_FLOW_ACTION_TYPE_QUEUE:
9808 queue = actions->conf;
9809 rss_desc->queue_num = 1;
9810 rss_desc->queue[0] = queue->index;
9811 action_flags |= MLX5_FLOW_ACTION_QUEUE;
9812 dev_flow->handle->fate_action = MLX5_FLOW_FATE_QUEUE;
9813 sample_act->action_flags |= MLX5_FLOW_ACTION_QUEUE;
9816 case RTE_FLOW_ACTION_TYPE_RSS:
9817 rss = actions->conf;
9818 memcpy(rss_desc->queue, rss->queue,
9819 rss->queue_num * sizeof(uint16_t));
9820 rss_desc->queue_num = rss->queue_num;
9821 /* NULL RSS key indicates default RSS key. */
9822 rss_key = !rss->key ? rss_hash_default_key : rss->key;
9823 memcpy(rss_desc->key, rss_key, MLX5_RSS_HASH_KEY_LEN);
9825 * rss->level and rss.types should be set in advance
9826 * when expanding items for RSS.
9828 action_flags |= MLX5_FLOW_ACTION_RSS;
9829 dev_flow->handle->fate_action = rss_desc->shared_rss ?
9830 MLX5_FLOW_FATE_SHARED_RSS :
9831 MLX5_FLOW_FATE_QUEUE;
9833 case MLX5_RTE_FLOW_ACTION_TYPE_AGE:
9834 flow->age = (uint32_t)(uintptr_t)(action->conf);
9835 age_act = flow_aso_age_get_by_idx(dev, flow->age);
9836 __atomic_fetch_add(&age_act->refcnt, 1,
9838 dev_flow->dv.actions[actions_n++] = age_act->dr_action;
9839 action_flags |= MLX5_FLOW_ACTION_AGE;
9841 case RTE_FLOW_ACTION_TYPE_AGE:
9842 if (priv->sh->flow_hit_aso_en && attr->group) {
9843 flow->age = flow_dv_translate_create_aso_age
9844 (dev, action->conf);
9846 return rte_flow_error_set
9848 RTE_FLOW_ERROR_TYPE_ACTION,
9850 "can't create ASO age action");
9851 dev_flow->dv.actions[actions_n++] =
9852 (flow_aso_age_get_by_idx
9853 (dev, flow->age))->dr_action;
9854 action_flags |= MLX5_FLOW_ACTION_AGE;
9858 case RTE_FLOW_ACTION_TYPE_COUNT:
9859 if (!dev_conf->devx) {
9860 return rte_flow_error_set
9862 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
9864 "count action not supported");
9866 /* Save information first, will apply later. */
9867 if (actions->type == RTE_FLOW_ACTION_TYPE_COUNT)
9868 count = action->conf;
9871 action_flags |= MLX5_FLOW_ACTION_COUNT;
9873 case RTE_FLOW_ACTION_TYPE_OF_POP_VLAN:
9874 dev_flow->dv.actions[actions_n++] =
9875 priv->sh->pop_vlan_action;
9876 action_flags |= MLX5_FLOW_ACTION_OF_POP_VLAN;
9878 case RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN:
9879 if (!(action_flags &
9880 MLX5_FLOW_ACTION_OF_SET_VLAN_VID))
9881 flow_dev_get_vlan_info_from_items(items, &vlan);
9882 vlan.eth_proto = rte_be_to_cpu_16
9883 ((((const struct rte_flow_action_of_push_vlan *)
9884 actions->conf)->ethertype));
9885 found_action = mlx5_flow_find_action
9887 RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID);
9889 mlx5_update_vlan_vid_pcp(found_action, &vlan);
9890 found_action = mlx5_flow_find_action
9892 RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP);
9894 mlx5_update_vlan_vid_pcp(found_action, &vlan);
9895 if (flow_dv_create_action_push_vlan
9896 (dev, attr, &vlan, dev_flow, error))
9898 dev_flow->dv.actions[actions_n++] =
9899 dev_flow->dv.push_vlan_res->action;
9900 action_flags |= MLX5_FLOW_ACTION_OF_PUSH_VLAN;
9902 case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP:
9903 /* of_vlan_push action handled this action */
9904 MLX5_ASSERT(action_flags &
9905 MLX5_FLOW_ACTION_OF_PUSH_VLAN);
9907 case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID:
9908 if (action_flags & MLX5_FLOW_ACTION_OF_PUSH_VLAN)
9910 flow_dev_get_vlan_info_from_items(items, &vlan);
9911 mlx5_update_vlan_vid_pcp(actions, &vlan);
9912 /* If no VLAN push - this is a modify header action */
9913 if (flow_dv_convert_action_modify_vlan_vid
9914 (mhdr_res, actions, error))
9916 action_flags |= MLX5_FLOW_ACTION_OF_SET_VLAN_VID;
9918 case RTE_FLOW_ACTION_TYPE_VXLAN_ENCAP:
9919 case RTE_FLOW_ACTION_TYPE_NVGRE_ENCAP:
9920 if (flow_dv_create_action_l2_encap(dev, actions,
9925 dev_flow->dv.actions[actions_n++] =
9926 dev_flow->dv.encap_decap->action;
9927 action_flags |= MLX5_FLOW_ACTION_ENCAP;
9928 if (action_flags & MLX5_FLOW_ACTION_SAMPLE)
9929 sample_act->action_flags |=
9930 MLX5_FLOW_ACTION_ENCAP;
9932 case RTE_FLOW_ACTION_TYPE_VXLAN_DECAP:
9933 case RTE_FLOW_ACTION_TYPE_NVGRE_DECAP:
9934 if (flow_dv_create_action_l2_decap(dev, dev_flow,
9938 dev_flow->dv.actions[actions_n++] =
9939 dev_flow->dv.encap_decap->action;
9940 action_flags |= MLX5_FLOW_ACTION_DECAP;
9942 case RTE_FLOW_ACTION_TYPE_RAW_ENCAP:
9943 /* Handle encap with preceding decap. */
9944 if (action_flags & MLX5_FLOW_ACTION_DECAP) {
9945 if (flow_dv_create_action_raw_encap
9946 (dev, actions, dev_flow, attr, error))
9948 dev_flow->dv.actions[actions_n++] =
9949 dev_flow->dv.encap_decap->action;
9951 /* Handle encap without preceding decap. */
9952 if (flow_dv_create_action_l2_encap
9953 (dev, actions, dev_flow, attr->transfer,
9956 dev_flow->dv.actions[actions_n++] =
9957 dev_flow->dv.encap_decap->action;
9959 action_flags |= MLX5_FLOW_ACTION_ENCAP;
9960 if (action_flags & MLX5_FLOW_ACTION_SAMPLE)
9961 sample_act->action_flags |=
9962 MLX5_FLOW_ACTION_ENCAP;
9964 case RTE_FLOW_ACTION_TYPE_RAW_DECAP:
9965 while ((++action)->type == RTE_FLOW_ACTION_TYPE_VOID)
9967 if (action->type != RTE_FLOW_ACTION_TYPE_RAW_ENCAP) {
9968 if (flow_dv_create_action_l2_decap
9969 (dev, dev_flow, attr->transfer, error))
9971 dev_flow->dv.actions[actions_n++] =
9972 dev_flow->dv.encap_decap->action;
9974 /* If decap is followed by encap, handle it at encap. */
9975 action_flags |= MLX5_FLOW_ACTION_DECAP;
9977 case RTE_FLOW_ACTION_TYPE_JUMP:
9978 jump_group = ((const struct rte_flow_action_jump *)
9979 action->conf)->group;
9980 grp_info.std_tbl_fix = 0;
9981 grp_info.skip_scale = 0;
9982 ret = mlx5_flow_group_to_table(dev, tunnel,
9988 tbl = flow_dv_tbl_resource_get(dev, table, attr->egress,
9990 !!dev_flow->external,
9991 tunnel, jump_group, 0,
9994 return rte_flow_error_set
9996 RTE_FLOW_ERROR_TYPE_ACTION,
9998 "cannot create jump action.");
9999 if (flow_dv_jump_tbl_resource_register
10000 (dev, tbl, dev_flow, error)) {
10001 flow_dv_tbl_resource_release(MLX5_SH(dev), tbl);
10002 return rte_flow_error_set
10004 RTE_FLOW_ERROR_TYPE_ACTION,
10006 "cannot create jump action.");
10008 dev_flow->dv.actions[actions_n++] =
10009 dev_flow->dv.jump->action;
10010 action_flags |= MLX5_FLOW_ACTION_JUMP;
10011 dev_flow->handle->fate_action = MLX5_FLOW_FATE_JUMP;
10013 case RTE_FLOW_ACTION_TYPE_SET_MAC_SRC:
10014 case RTE_FLOW_ACTION_TYPE_SET_MAC_DST:
10015 if (flow_dv_convert_action_modify_mac
10016 (mhdr_res, actions, error))
10018 action_flags |= actions->type ==
10019 RTE_FLOW_ACTION_TYPE_SET_MAC_SRC ?
10020 MLX5_FLOW_ACTION_SET_MAC_SRC :
10021 MLX5_FLOW_ACTION_SET_MAC_DST;
10023 case RTE_FLOW_ACTION_TYPE_SET_IPV4_SRC:
10024 case RTE_FLOW_ACTION_TYPE_SET_IPV4_DST:
10025 if (flow_dv_convert_action_modify_ipv4
10026 (mhdr_res, actions, error))
10028 action_flags |= actions->type ==
10029 RTE_FLOW_ACTION_TYPE_SET_IPV4_SRC ?
10030 MLX5_FLOW_ACTION_SET_IPV4_SRC :
10031 MLX5_FLOW_ACTION_SET_IPV4_DST;
10033 case RTE_FLOW_ACTION_TYPE_SET_IPV6_SRC:
10034 case RTE_FLOW_ACTION_TYPE_SET_IPV6_DST:
10035 if (flow_dv_convert_action_modify_ipv6
10036 (mhdr_res, actions, error))
10038 action_flags |= actions->type ==
10039 RTE_FLOW_ACTION_TYPE_SET_IPV6_SRC ?
10040 MLX5_FLOW_ACTION_SET_IPV6_SRC :
10041 MLX5_FLOW_ACTION_SET_IPV6_DST;
10043 case RTE_FLOW_ACTION_TYPE_SET_TP_SRC:
10044 case RTE_FLOW_ACTION_TYPE_SET_TP_DST:
10045 if (flow_dv_convert_action_modify_tp
10046 (mhdr_res, actions, items,
10047 &flow_attr, dev_flow, !!(action_flags &
10048 MLX5_FLOW_ACTION_DECAP), error))
10050 action_flags |= actions->type ==
10051 RTE_FLOW_ACTION_TYPE_SET_TP_SRC ?
10052 MLX5_FLOW_ACTION_SET_TP_SRC :
10053 MLX5_FLOW_ACTION_SET_TP_DST;
10055 case RTE_FLOW_ACTION_TYPE_DEC_TTL:
10056 if (flow_dv_convert_action_modify_dec_ttl
10057 (mhdr_res, items, &flow_attr, dev_flow,
10059 MLX5_FLOW_ACTION_DECAP), error))
10061 action_flags |= MLX5_FLOW_ACTION_DEC_TTL;
10063 case RTE_FLOW_ACTION_TYPE_SET_TTL:
10064 if (flow_dv_convert_action_modify_ttl
10065 (mhdr_res, actions, items, &flow_attr,
10066 dev_flow, !!(action_flags &
10067 MLX5_FLOW_ACTION_DECAP), error))
10069 action_flags |= MLX5_FLOW_ACTION_SET_TTL;
10071 case RTE_FLOW_ACTION_TYPE_INC_TCP_SEQ:
10072 case RTE_FLOW_ACTION_TYPE_DEC_TCP_SEQ:
10073 if (flow_dv_convert_action_modify_tcp_seq
10074 (mhdr_res, actions, error))
10076 action_flags |= actions->type ==
10077 RTE_FLOW_ACTION_TYPE_INC_TCP_SEQ ?
10078 MLX5_FLOW_ACTION_INC_TCP_SEQ :
10079 MLX5_FLOW_ACTION_DEC_TCP_SEQ;
10082 case RTE_FLOW_ACTION_TYPE_INC_TCP_ACK:
10083 case RTE_FLOW_ACTION_TYPE_DEC_TCP_ACK:
10084 if (flow_dv_convert_action_modify_tcp_ack
10085 (mhdr_res, actions, error))
10087 action_flags |= actions->type ==
10088 RTE_FLOW_ACTION_TYPE_INC_TCP_ACK ?
10089 MLX5_FLOW_ACTION_INC_TCP_ACK :
10090 MLX5_FLOW_ACTION_DEC_TCP_ACK;
10092 case MLX5_RTE_FLOW_ACTION_TYPE_TAG:
10093 if (flow_dv_convert_action_set_reg
10094 (mhdr_res, actions, error))
10096 action_flags |= MLX5_FLOW_ACTION_SET_TAG;
10098 case MLX5_RTE_FLOW_ACTION_TYPE_COPY_MREG:
10099 if (flow_dv_convert_action_copy_mreg
10100 (dev, mhdr_res, actions, error))
10102 action_flags |= MLX5_FLOW_ACTION_SET_TAG;
10104 case MLX5_RTE_FLOW_ACTION_TYPE_DEFAULT_MISS:
10105 action_flags |= MLX5_FLOW_ACTION_DEFAULT_MISS;
10106 dev_flow->handle->fate_action =
10107 MLX5_FLOW_FATE_DEFAULT_MISS;
10109 case RTE_FLOW_ACTION_TYPE_METER:
10110 mtr = actions->conf;
10111 if (!flow->meter) {
10112 fm = mlx5_flow_meter_attach(priv, mtr->mtr_id,
10115 return rte_flow_error_set(error,
10117 RTE_FLOW_ERROR_TYPE_ACTION,
10120 "or invalid parameters");
10121 flow->meter = fm->idx;
10123 /* Set the meter action. */
10125 fm = mlx5_ipool_get(priv->sh->ipool
10126 [MLX5_IPOOL_MTR], flow->meter);
10128 return rte_flow_error_set(error,
10130 RTE_FLOW_ERROR_TYPE_ACTION,
10133 "or invalid parameters");
10135 dev_flow->dv.actions[actions_n++] =
10136 fm->mfts->meter_action;
10137 action_flags |= MLX5_FLOW_ACTION_METER;
10139 case RTE_FLOW_ACTION_TYPE_SET_IPV4_DSCP:
10140 if (flow_dv_convert_action_modify_ipv4_dscp(mhdr_res,
10143 action_flags |= MLX5_FLOW_ACTION_SET_IPV4_DSCP;
10145 case RTE_FLOW_ACTION_TYPE_SET_IPV6_DSCP:
10146 if (flow_dv_convert_action_modify_ipv6_dscp(mhdr_res,
10149 action_flags |= MLX5_FLOW_ACTION_SET_IPV6_DSCP;
10151 case RTE_FLOW_ACTION_TYPE_SAMPLE:
10152 sample_act_pos = actions_n;
10153 ret = flow_dv_translate_action_sample(dev,
10163 action_flags |= MLX5_FLOW_ACTION_SAMPLE;
10164 /* put encap action into group if work with port id */
10165 if ((action_flags & MLX5_FLOW_ACTION_ENCAP) &&
10166 (action_flags & MLX5_FLOW_ACTION_PORT_ID))
10167 sample_act->action_flags |=
10168 MLX5_FLOW_ACTION_ENCAP;
10170 case RTE_FLOW_ACTION_TYPE_END:
10171 actions_end = true;
10172 if (mhdr_res->actions_num) {
10173 /* create modify action if needed. */
10174 if (flow_dv_modify_hdr_resource_register
10175 (dev, mhdr_res, dev_flow, error))
10177 dev_flow->dv.actions[modify_action_position] =
10178 handle->dvh.modify_hdr->action;
10180 if (action_flags & MLX5_FLOW_ACTION_COUNT) {
10182 flow_dv_translate_create_counter(dev,
10183 dev_flow, count, age);
10185 if (!flow->counter)
10186 return rte_flow_error_set
10188 RTE_FLOW_ERROR_TYPE_ACTION,
10190 "cannot create counter"
10192 dev_flow->dv.actions[actions_n] =
10193 (flow_dv_counter_get_by_idx(dev,
10194 flow->counter, NULL))->action;
10197 if (action_flags & MLX5_FLOW_ACTION_SAMPLE) {
10198 ret = flow_dv_create_action_sample(dev,
10207 return rte_flow_error_set
10209 RTE_FLOW_ERROR_TYPE_ACTION,
10211 "cannot create sample action");
10212 if (num_of_dest > 1) {
10213 dev_flow->dv.actions[sample_act_pos] =
10214 dev_flow->dv.dest_array_res->action;
10216 dev_flow->dv.actions[sample_act_pos] =
10217 dev_flow->dv.sample_res->verbs_action;
10224 if (mhdr_res->actions_num &&
10225 modify_action_position == UINT32_MAX)
10226 modify_action_position = actions_n++;
10229 * For multiple destination (sample action with ratio=1), the encap
10230 * action and port id action will be combined into group action.
10231 * So need remove the original these actions in the flow and only
10232 * use the sample action instead of.
10234 if (num_of_dest > 1 && sample_act->dr_port_id_action) {
10236 void *temp_actions[MLX5_DV_MAX_NUMBER_OF_ACTIONS] = {0};
10238 for (i = 0; i < actions_n; i++) {
10239 if ((sample_act->dr_encap_action &&
10240 sample_act->dr_encap_action ==
10241 dev_flow->dv.actions[i]) ||
10242 (sample_act->dr_port_id_action &&
10243 sample_act->dr_port_id_action ==
10244 dev_flow->dv.actions[i]))
10246 temp_actions[tmp_actions_n++] = dev_flow->dv.actions[i];
10248 memcpy((void *)dev_flow->dv.actions,
10249 (void *)temp_actions,
10250 tmp_actions_n * sizeof(void *));
10251 actions_n = tmp_actions_n;
10253 dev_flow->dv.actions_n = actions_n;
10254 dev_flow->act_flags = action_flags;
10255 for (; items->type != RTE_FLOW_ITEM_TYPE_END; items++) {
10256 int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
10257 int item_type = items->type;
10259 if (!mlx5_flow_os_item_supported(item_type))
10260 return rte_flow_error_set(error, ENOTSUP,
10261 RTE_FLOW_ERROR_TYPE_ITEM,
10262 NULL, "item not supported");
10263 switch (item_type) {
10264 case RTE_FLOW_ITEM_TYPE_PORT_ID:
10265 flow_dv_translate_item_port_id
10266 (dev, match_mask, match_value, items, attr);
10267 last_item = MLX5_FLOW_ITEM_PORT_ID;
10269 case RTE_FLOW_ITEM_TYPE_ETH:
10270 flow_dv_translate_item_eth(match_mask, match_value,
10272 dev_flow->dv.group);
10273 matcher.priority = action_flags &
10274 MLX5_FLOW_ACTION_DEFAULT_MISS &&
10275 !dev_flow->external ?
10276 MLX5_PRIORITY_MAP_L3 :
10277 MLX5_PRIORITY_MAP_L2;
10278 last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L2 :
10279 MLX5_FLOW_LAYER_OUTER_L2;
10281 case RTE_FLOW_ITEM_TYPE_VLAN:
10282 flow_dv_translate_item_vlan(dev_flow,
10283 match_mask, match_value,
10285 dev_flow->dv.group);
10286 matcher.priority = MLX5_PRIORITY_MAP_L2;
10287 last_item = tunnel ? (MLX5_FLOW_LAYER_INNER_L2 |
10288 MLX5_FLOW_LAYER_INNER_VLAN) :
10289 (MLX5_FLOW_LAYER_OUTER_L2 |
10290 MLX5_FLOW_LAYER_OUTER_VLAN);
10292 case RTE_FLOW_ITEM_TYPE_IPV4:
10293 mlx5_flow_tunnel_ip_check(items, next_protocol,
10294 &item_flags, &tunnel);
10295 flow_dv_translate_item_ipv4(match_mask, match_value,
10297 dev_flow->dv.group);
10298 matcher.priority = MLX5_PRIORITY_MAP_L3;
10299 last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L3_IPV4 :
10300 MLX5_FLOW_LAYER_OUTER_L3_IPV4;
10301 if (items->mask != NULL &&
10302 ((const struct rte_flow_item_ipv4 *)
10303 items->mask)->hdr.next_proto_id) {
10305 ((const struct rte_flow_item_ipv4 *)
10306 (items->spec))->hdr.next_proto_id;
10308 ((const struct rte_flow_item_ipv4 *)
10309 (items->mask))->hdr.next_proto_id;
10311 /* Reset for inner layer. */
10312 next_protocol = 0xff;
10315 case RTE_FLOW_ITEM_TYPE_IPV6:
10316 mlx5_flow_tunnel_ip_check(items, next_protocol,
10317 &item_flags, &tunnel);
10318 flow_dv_translate_item_ipv6(match_mask, match_value,
10320 dev_flow->dv.group);
10321 matcher.priority = MLX5_PRIORITY_MAP_L3;
10322 last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L3_IPV6 :
10323 MLX5_FLOW_LAYER_OUTER_L3_IPV6;
10324 if (items->mask != NULL &&
10325 ((const struct rte_flow_item_ipv6 *)
10326 items->mask)->hdr.proto) {
10328 ((const struct rte_flow_item_ipv6 *)
10329 items->spec)->hdr.proto;
10331 ((const struct rte_flow_item_ipv6 *)
10332 items->mask)->hdr.proto;
10334 /* Reset for inner layer. */
10335 next_protocol = 0xff;
10338 case RTE_FLOW_ITEM_TYPE_IPV6_FRAG_EXT:
10339 flow_dv_translate_item_ipv6_frag_ext(match_mask,
10342 last_item = tunnel ?
10343 MLX5_FLOW_LAYER_INNER_L3_IPV6_FRAG_EXT :
10344 MLX5_FLOW_LAYER_OUTER_L3_IPV6_FRAG_EXT;
10345 if (items->mask != NULL &&
10346 ((const struct rte_flow_item_ipv6_frag_ext *)
10347 items->mask)->hdr.next_header) {
10349 ((const struct rte_flow_item_ipv6_frag_ext *)
10350 items->spec)->hdr.next_header;
10352 ((const struct rte_flow_item_ipv6_frag_ext *)
10353 items->mask)->hdr.next_header;
10355 /* Reset for inner layer. */
10356 next_protocol = 0xff;
10359 case RTE_FLOW_ITEM_TYPE_TCP:
10360 flow_dv_translate_item_tcp(match_mask, match_value,
10362 matcher.priority = MLX5_PRIORITY_MAP_L4;
10363 last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L4_TCP :
10364 MLX5_FLOW_LAYER_OUTER_L4_TCP;
10366 case RTE_FLOW_ITEM_TYPE_UDP:
10367 flow_dv_translate_item_udp(match_mask, match_value,
10369 matcher.priority = MLX5_PRIORITY_MAP_L4;
10370 last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L4_UDP :
10371 MLX5_FLOW_LAYER_OUTER_L4_UDP;
10373 case RTE_FLOW_ITEM_TYPE_GRE:
10374 flow_dv_translate_item_gre(match_mask, match_value,
10376 matcher.priority = MLX5_TUNNEL_PRIO_GET(rss_desc);
10377 last_item = MLX5_FLOW_LAYER_GRE;
10379 case RTE_FLOW_ITEM_TYPE_GRE_KEY:
10380 flow_dv_translate_item_gre_key(match_mask,
10381 match_value, items);
10382 last_item = MLX5_FLOW_LAYER_GRE_KEY;
10384 case RTE_FLOW_ITEM_TYPE_NVGRE:
10385 flow_dv_translate_item_nvgre(match_mask, match_value,
10387 matcher.priority = MLX5_TUNNEL_PRIO_GET(rss_desc);
10388 last_item = MLX5_FLOW_LAYER_GRE;
10390 case RTE_FLOW_ITEM_TYPE_VXLAN:
10391 flow_dv_translate_item_vxlan(match_mask, match_value,
10393 matcher.priority = MLX5_TUNNEL_PRIO_GET(rss_desc);
10394 last_item = MLX5_FLOW_LAYER_VXLAN;
10396 case RTE_FLOW_ITEM_TYPE_VXLAN_GPE:
10397 flow_dv_translate_item_vxlan_gpe(match_mask,
10398 match_value, items,
10400 matcher.priority = MLX5_TUNNEL_PRIO_GET(rss_desc);
10401 last_item = MLX5_FLOW_LAYER_VXLAN_GPE;
10403 case RTE_FLOW_ITEM_TYPE_GENEVE:
10404 flow_dv_translate_item_geneve(match_mask, match_value,
10406 matcher.priority = MLX5_TUNNEL_PRIO_GET(rss_desc);
10407 last_item = MLX5_FLOW_LAYER_GENEVE;
10409 case RTE_FLOW_ITEM_TYPE_MPLS:
10410 flow_dv_translate_item_mpls(match_mask, match_value,
10411 items, last_item, tunnel);
10412 matcher.priority = MLX5_TUNNEL_PRIO_GET(rss_desc);
10413 last_item = MLX5_FLOW_LAYER_MPLS;
10415 case RTE_FLOW_ITEM_TYPE_MARK:
10416 flow_dv_translate_item_mark(dev, match_mask,
10417 match_value, items);
10418 last_item = MLX5_FLOW_ITEM_MARK;
10420 case RTE_FLOW_ITEM_TYPE_META:
10421 flow_dv_translate_item_meta(dev, match_mask,
10422 match_value, attr, items);
10423 last_item = MLX5_FLOW_ITEM_METADATA;
10425 case RTE_FLOW_ITEM_TYPE_ICMP:
10426 flow_dv_translate_item_icmp(match_mask, match_value,
10428 last_item = MLX5_FLOW_LAYER_ICMP;
10430 case RTE_FLOW_ITEM_TYPE_ICMP6:
10431 flow_dv_translate_item_icmp6(match_mask, match_value,
10433 last_item = MLX5_FLOW_LAYER_ICMP6;
10435 case RTE_FLOW_ITEM_TYPE_TAG:
10436 flow_dv_translate_item_tag(dev, match_mask,
10437 match_value, items);
10438 last_item = MLX5_FLOW_ITEM_TAG;
10440 case MLX5_RTE_FLOW_ITEM_TYPE_TAG:
10441 flow_dv_translate_mlx5_item_tag(dev, match_mask,
10442 match_value, items);
10443 last_item = MLX5_FLOW_ITEM_TAG;
10445 case MLX5_RTE_FLOW_ITEM_TYPE_TX_QUEUE:
10446 flow_dv_translate_item_tx_queue(dev, match_mask,
10449 last_item = MLX5_FLOW_ITEM_TX_QUEUE;
10451 case RTE_FLOW_ITEM_TYPE_GTP:
10452 flow_dv_translate_item_gtp(match_mask, match_value,
10454 matcher.priority = MLX5_TUNNEL_PRIO_GET(rss_desc);
10455 last_item = MLX5_FLOW_LAYER_GTP;
10457 case RTE_FLOW_ITEM_TYPE_ECPRI:
10458 if (!mlx5_flex_parser_ecpri_exist(dev)) {
10459 /* Create it only the first time to be used. */
10460 ret = mlx5_flex_parser_ecpri_alloc(dev);
10462 return rte_flow_error_set
10464 RTE_FLOW_ERROR_TYPE_ITEM,
10466 "cannot create eCPRI parser");
10468 /* Adjust the length matcher and device flow value. */
10469 matcher.mask.size = MLX5_ST_SZ_BYTES(fte_match_param);
10470 dev_flow->dv.value.size =
10471 MLX5_ST_SZ_BYTES(fte_match_param);
10472 flow_dv_translate_item_ecpri(dev, match_mask,
10473 match_value, items);
10474 /* No other protocol should follow eCPRI layer. */
10475 last_item = MLX5_FLOW_LAYER_ECPRI;
10480 item_flags |= last_item;
10483 * When E-Switch mode is enabled, we have two cases where we need to
10484 * set the source port manually.
10485 * The first one, is in case of Nic steering rule, and the second is
10486 * E-Switch rule where no port_id item was found. In both cases
10487 * the source port is set according the current port in use.
10489 if (!(item_flags & MLX5_FLOW_ITEM_PORT_ID) &&
10490 (priv->representor || priv->master)) {
10491 if (flow_dv_translate_item_port_id(dev, match_mask,
10492 match_value, NULL, attr))
10495 #ifdef RTE_LIBRTE_MLX5_DEBUG
10496 MLX5_ASSERT(!flow_dv_check_valid_spec(matcher.mask.buf,
10497 dev_flow->dv.value.buf));
10500 * Layers may be already initialized from prefix flow if this dev_flow
10501 * is the suffix flow.
10503 handle->layers |= item_flags;
10504 if (action_flags & MLX5_FLOW_ACTION_RSS)
10505 flow_dv_hashfields_set(dev_flow, rss_desc);
10506 /* Register matcher. */
10507 matcher.crc = rte_raw_cksum((const void *)matcher.mask.buf,
10508 matcher.mask.size);
10509 matcher.priority = mlx5_flow_adjust_priority(dev, priority,
10511 /* reserved field no needs to be set to 0 here. */
10512 tbl_key.domain = attr->transfer;
10513 tbl_key.direction = attr->egress;
10514 tbl_key.table_id = dev_flow->dv.group;
10515 if (flow_dv_matcher_register(dev, &matcher, &tbl_key, dev_flow,
10516 tunnel, attr->group, error))
10522 * Set hash RX queue by hash fields (see enum ibv_rx_hash_fields)
10525 * @param[in, out] action
10526 * Shred RSS action holding hash RX queue objects.
10527 * @param[in] hash_fields
10528 * Defines combination of packet fields to participate in RX hash.
10529 * @param[in] tunnel
10531 * @param[in] hrxq_idx
10532 * Hash RX queue index to set.
10535 * 0 on success, otherwise negative errno value.
10538 __flow_dv_action_rss_hrxq_set(struct mlx5_shared_action_rss *action,
10539 const uint64_t hash_fields,
10543 uint32_t *hrxqs = tunnel ? action->hrxq : action->hrxq_tunnel;
10545 switch (hash_fields & ~IBV_RX_HASH_INNER) {
10546 case MLX5_RSS_HASH_IPV4:
10547 hrxqs[0] = hrxq_idx;
10549 case MLX5_RSS_HASH_IPV4_TCP:
10550 hrxqs[1] = hrxq_idx;
10552 case MLX5_RSS_HASH_IPV4_UDP:
10553 hrxqs[2] = hrxq_idx;
10555 case MLX5_RSS_HASH_IPV6:
10556 hrxqs[3] = hrxq_idx;
10558 case MLX5_RSS_HASH_IPV6_TCP:
10559 hrxqs[4] = hrxq_idx;
10561 case MLX5_RSS_HASH_IPV6_UDP:
10562 hrxqs[5] = hrxq_idx;
10564 case MLX5_RSS_HASH_NONE:
10565 hrxqs[6] = hrxq_idx;
10573 * Look up for hash RX queue by hash fields (see enum ibv_rx_hash_fields)
10577 * Pointer to the Ethernet device structure.
10579 * Shared RSS action ID holding hash RX queue objects.
10580 * @param[in] hash_fields
10581 * Defines combination of packet fields to participate in RX hash.
10582 * @param[in] tunnel
10586 * Valid hash RX queue index, otherwise 0.
10589 __flow_dv_action_rss_hrxq_lookup(struct rte_eth_dev *dev, uint32_t idx,
10590 const uint64_t hash_fields,
10593 struct mlx5_priv *priv = dev->data->dev_private;
10594 struct mlx5_shared_action_rss *shared_rss =
10595 mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_RSS_SHARED_ACTIONS], idx);
10596 const uint32_t *hrxqs = tunnel ? shared_rss->hrxq :
10597 shared_rss->hrxq_tunnel;
10599 switch (hash_fields & ~IBV_RX_HASH_INNER) {
10600 case MLX5_RSS_HASH_IPV4:
10602 case MLX5_RSS_HASH_IPV4_TCP:
10604 case MLX5_RSS_HASH_IPV4_UDP:
10606 case MLX5_RSS_HASH_IPV6:
10608 case MLX5_RSS_HASH_IPV6_TCP:
10610 case MLX5_RSS_HASH_IPV6_UDP:
10612 case MLX5_RSS_HASH_NONE:
10620 * Retrieves hash RX queue suitable for the *flow*.
10621 * If shared action configured for *flow* suitable hash RX queue will be
10622 * retrieved from attached shared action.
10625 * Pointer to the Ethernet device structure.
10626 * @param[in] dev_flow
10627 * Pointer to the sub flow.
10628 * @param[in] rss_desc
10629 * Pointer to the RSS descriptor.
10631 * Pointer to retrieved hash RX queue object.
10634 * Valid hash RX queue index, otherwise 0 and rte_errno is set.
10637 __flow_dv_rss_get_hrxq(struct rte_eth_dev *dev, struct mlx5_flow *dev_flow,
10638 struct mlx5_flow_rss_desc *rss_desc,
10639 struct mlx5_hrxq **hrxq)
10641 struct mlx5_priv *priv = dev->data->dev_private;
10644 if (rss_desc->shared_rss) {
10645 hrxq_idx = __flow_dv_action_rss_hrxq_lookup
10646 (dev, rss_desc->shared_rss,
10647 dev_flow->hash_fields,
10648 !!(dev_flow->handle->layers &
10649 MLX5_FLOW_LAYER_TUNNEL));
10651 *hrxq = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_HRXQ],
10654 *hrxq = flow_dv_hrxq_prepare(dev, dev_flow, rss_desc,
10661 * Apply the flow to the NIC, lock free,
10662 * (mutex should be acquired by caller).
10665 * Pointer to the Ethernet device structure.
10666 * @param[in, out] flow
10667 * Pointer to flow structure.
10668 * @param[out] error
10669 * Pointer to error structure.
10672 * 0 on success, a negative errno value otherwise and rte_errno is set.
10675 flow_dv_apply(struct rte_eth_dev *dev, struct rte_flow *flow,
10676 struct rte_flow_error *error)
10678 struct mlx5_flow_dv_workspace *dv;
10679 struct mlx5_flow_handle *dh;
10680 struct mlx5_flow_handle_dv *dv_h;
10681 struct mlx5_flow *dev_flow;
10682 struct mlx5_priv *priv = dev->data->dev_private;
10683 uint32_t handle_idx;
10687 struct mlx5_flow_workspace *wks = mlx5_flow_get_thread_workspace();
10688 struct mlx5_flow_rss_desc *rss_desc = &wks->rss_desc;
10691 if (rss_desc->shared_rss) {
10692 dh = wks->flows[wks->flow_idx - 1].handle;
10693 MLX5_ASSERT(dh->fate_action == MLX5_FLOW_FATE_SHARED_RSS);
10694 dh->rix_srss = rss_desc->shared_rss;
10696 for (idx = wks->flow_idx - 1; idx >= 0; idx--) {
10697 dev_flow = &wks->flows[idx];
10698 dv = &dev_flow->dv;
10699 dh = dev_flow->handle;
10702 if (dh->fate_action == MLX5_FLOW_FATE_DROP) {
10703 if (dv->transfer) {
10704 dv->actions[n++] = priv->sh->esw_drop_action;
10706 MLX5_ASSERT(priv->drop_queue.hrxq);
10708 priv->drop_queue.hrxq->action;
10710 } else if ((dh->fate_action == MLX5_FLOW_FATE_QUEUE &&
10711 !dv_h->rix_sample && !dv_h->rix_dest_array) ||
10712 (dh->fate_action == MLX5_FLOW_FATE_SHARED_RSS)) {
10713 struct mlx5_hrxq *hrxq = NULL;
10714 uint32_t hrxq_idx = __flow_dv_rss_get_hrxq
10715 (dev, dev_flow, rss_desc, &hrxq);
10719 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
10720 "cannot get hash queue");
10723 if (dh->fate_action == MLX5_FLOW_FATE_QUEUE)
10724 dh->rix_hrxq = hrxq_idx;
10725 dv->actions[n++] = hrxq->action;
10726 } else if (dh->fate_action == MLX5_FLOW_FATE_DEFAULT_MISS) {
10727 if (!priv->sh->default_miss_action) {
10730 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
10731 "default miss action not be created.");
10734 dv->actions[n++] = priv->sh->default_miss_action;
10736 err = mlx5_flow_os_create_flow(dv_h->matcher->matcher_object,
10737 (void *)&dv->value, n,
10738 dv->actions, &dh->drv_flow);
10740 rte_flow_error_set(error, errno,
10741 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
10743 "hardware refuses to create flow");
10746 if (priv->vmwa_context &&
10747 dh->vf_vlan.tag && !dh->vf_vlan.created) {
10749 * The rule contains the VLAN pattern.
10750 * For VF we are going to create VLAN
10751 * interface to make hypervisor set correct
10752 * e-Switch vport context.
10754 mlx5_vlan_vmwa_acquire(dev, &dh->vf_vlan);
10759 err = rte_errno; /* Save rte_errno before cleanup. */
10760 SILIST_FOREACH(priv->sh->ipool[MLX5_IPOOL_MLX5_FLOW], flow->dev_handles,
10761 handle_idx, dh, next) {
10762 /* hrxq is union, don't clear it if the flag is not set. */
10763 if (dh->fate_action == MLX5_FLOW_FATE_QUEUE && dh->rix_hrxq) {
10764 mlx5_hrxq_release(dev, dh->rix_hrxq);
10767 if (dh->vf_vlan.tag && dh->vf_vlan.created)
10768 mlx5_vlan_vmwa_release(dev, &dh->vf_vlan);
10770 if (rss_desc->shared_rss)
10771 wks->flows[wks->flow_idx - 1].handle->rix_srss = 0;
10772 rte_errno = err; /* Restore rte_errno. */
10777 flow_dv_matcher_remove_cb(struct mlx5_cache_list *list __rte_unused,
10778 struct mlx5_cache_entry *entry)
10780 struct mlx5_flow_dv_matcher *cache = container_of(entry, typeof(*cache),
10783 claim_zero(mlx5_flow_os_destroy_flow_matcher(cache->matcher_object));
10788 * Release the flow matcher.
10791 * Pointer to Ethernet device.
10793 * Pointer to mlx5_flow_handle.
10796 * 1 while a reference on it exists, 0 when freed.
10799 flow_dv_matcher_release(struct rte_eth_dev *dev,
10800 struct mlx5_flow_handle *handle)
10802 struct mlx5_flow_dv_matcher *matcher = handle->dvh.matcher;
10803 struct mlx5_flow_tbl_data_entry *tbl = container_of(matcher->tbl,
10804 typeof(*tbl), tbl);
10807 MLX5_ASSERT(matcher->matcher_object);
10808 ret = mlx5_cache_unregister(&tbl->matchers, &matcher->entry);
10809 flow_dv_tbl_resource_release(MLX5_SH(dev), &tbl->tbl);
10814 * Release encap_decap resource.
10817 * Pointer to the hash list.
10819 * Pointer to exist resource entry object.
10822 flow_dv_encap_decap_remove_cb(struct mlx5_hlist *list,
10823 struct mlx5_hlist_entry *entry)
10825 struct mlx5_dev_ctx_shared *sh = list->ctx;
10826 struct mlx5_flow_dv_encap_decap_resource *res =
10827 container_of(entry, typeof(*res), entry);
10829 claim_zero(mlx5_flow_os_destroy_flow_action(res->action));
10830 mlx5_ipool_free(sh->ipool[MLX5_IPOOL_DECAP_ENCAP], res->idx);
10834 * Release an encap/decap resource.
10837 * Pointer to Ethernet device.
10838 * @param encap_decap_idx
10839 * Index of encap decap resource.
10842 * 1 while a reference on it exists, 0 when freed.
10845 flow_dv_encap_decap_resource_release(struct rte_eth_dev *dev,
10846 uint32_t encap_decap_idx)
10848 struct mlx5_priv *priv = dev->data->dev_private;
10849 struct mlx5_flow_dv_encap_decap_resource *cache_resource;
10851 cache_resource = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_DECAP_ENCAP],
10853 if (!cache_resource)
10855 MLX5_ASSERT(cache_resource->action);
10856 return mlx5_hlist_unregister(priv->sh->encaps_decaps,
10857 &cache_resource->entry);
10861 * Release an jump to table action resource.
10864 * Pointer to Ethernet device.
10866 * Pointer to mlx5_flow_handle.
10869 * 1 while a reference on it exists, 0 when freed.
10872 flow_dv_jump_tbl_resource_release(struct rte_eth_dev *dev,
10873 struct mlx5_flow_handle *handle)
10875 struct mlx5_priv *priv = dev->data->dev_private;
10876 struct mlx5_flow_tbl_data_entry *tbl_data;
10878 tbl_data = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_JUMP],
10882 return flow_dv_tbl_resource_release(MLX5_SH(dev), &tbl_data->tbl);
10886 flow_dv_modify_remove_cb(struct mlx5_hlist *list __rte_unused,
10887 struct mlx5_hlist_entry *entry)
10889 struct mlx5_flow_dv_modify_hdr_resource *res =
10890 container_of(entry, typeof(*res), entry);
10892 claim_zero(mlx5_flow_os_destroy_flow_action(res->action));
10897 * Release a modify-header resource.
10900 * Pointer to Ethernet device.
10902 * Pointer to mlx5_flow_handle.
10905 * 1 while a reference on it exists, 0 when freed.
10908 flow_dv_modify_hdr_resource_release(struct rte_eth_dev *dev,
10909 struct mlx5_flow_handle *handle)
10911 struct mlx5_priv *priv = dev->data->dev_private;
10912 struct mlx5_flow_dv_modify_hdr_resource *entry = handle->dvh.modify_hdr;
10914 MLX5_ASSERT(entry->action);
10915 return mlx5_hlist_unregister(priv->sh->modify_cmds, &entry->entry);
10919 flow_dv_port_id_remove_cb(struct mlx5_cache_list *list,
10920 struct mlx5_cache_entry *entry)
10922 struct mlx5_dev_ctx_shared *sh = list->ctx;
10923 struct mlx5_flow_dv_port_id_action_resource *cache =
10924 container_of(entry, typeof(*cache), entry);
10926 claim_zero(mlx5_flow_os_destroy_flow_action(cache->action));
10927 mlx5_ipool_free(sh->ipool[MLX5_IPOOL_PORT_ID], cache->idx);
10931 * Release port ID action resource.
10934 * Pointer to Ethernet device.
10936 * Pointer to mlx5_flow_handle.
10939 * 1 while a reference on it exists, 0 when freed.
10942 flow_dv_port_id_action_resource_release(struct rte_eth_dev *dev,
10945 struct mlx5_priv *priv = dev->data->dev_private;
10946 struct mlx5_flow_dv_port_id_action_resource *cache;
10948 cache = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_PORT_ID], port_id);
10951 MLX5_ASSERT(cache->action);
10952 return mlx5_cache_unregister(&priv->sh->port_id_action_list,
10957 * Release shared RSS action resource.
10960 * Pointer to Ethernet device.
10962 * Shared RSS action index.
10965 flow_dv_shared_rss_action_release(struct rte_eth_dev *dev, uint32_t srss)
10967 struct mlx5_priv *priv = dev->data->dev_private;
10968 struct mlx5_shared_action_rss *shared_rss;
10970 shared_rss = mlx5_ipool_get
10971 (priv->sh->ipool[MLX5_IPOOL_RSS_SHARED_ACTIONS], srss);
10972 __atomic_sub_fetch(&shared_rss->refcnt, 1, __ATOMIC_RELAXED);
10976 flow_dv_push_vlan_remove_cb(struct mlx5_cache_list *list,
10977 struct mlx5_cache_entry *entry)
10979 struct mlx5_dev_ctx_shared *sh = list->ctx;
10980 struct mlx5_flow_dv_push_vlan_action_resource *cache =
10981 container_of(entry, typeof(*cache), entry);
10983 claim_zero(mlx5_flow_os_destroy_flow_action(cache->action));
10984 mlx5_ipool_free(sh->ipool[MLX5_IPOOL_PUSH_VLAN], cache->idx);
10988 * Release push vlan action resource.
10991 * Pointer to Ethernet device.
10993 * Pointer to mlx5_flow_handle.
10996 * 1 while a reference on it exists, 0 when freed.
10999 flow_dv_push_vlan_action_resource_release(struct rte_eth_dev *dev,
11000 struct mlx5_flow_handle *handle)
11002 struct mlx5_priv *priv = dev->data->dev_private;
11003 struct mlx5_flow_dv_push_vlan_action_resource *cache;
11004 uint32_t idx = handle->dvh.rix_push_vlan;
11006 cache = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_PUSH_VLAN], idx);
11009 MLX5_ASSERT(cache->action);
11010 return mlx5_cache_unregister(&priv->sh->push_vlan_action_list,
11015 * Release the fate resource.
11018 * Pointer to Ethernet device.
11020 * Pointer to mlx5_flow_handle.
11023 flow_dv_fate_resource_release(struct rte_eth_dev *dev,
11024 struct mlx5_flow_handle *handle)
11026 if (!handle->rix_fate)
11028 switch (handle->fate_action) {
11029 case MLX5_FLOW_FATE_QUEUE:
11030 mlx5_hrxq_release(dev, handle->rix_hrxq);
11032 case MLX5_FLOW_FATE_JUMP:
11033 flow_dv_jump_tbl_resource_release(dev, handle);
11035 case MLX5_FLOW_FATE_PORT_ID:
11036 flow_dv_port_id_action_resource_release(dev,
11037 handle->rix_port_id_action);
11039 case MLX5_FLOW_FATE_SHARED_RSS:
11040 flow_dv_shared_rss_action_release(dev, handle->rix_srss);
11043 DRV_LOG(DEBUG, "Incorrect fate action:%d", handle->fate_action);
11046 handle->rix_fate = 0;
11050 flow_dv_sample_remove_cb(struct mlx5_cache_list *list __rte_unused,
11051 struct mlx5_cache_entry *entry)
11053 struct mlx5_flow_dv_sample_resource *cache_resource =
11054 container_of(entry, typeof(*cache_resource), entry);
11055 struct rte_eth_dev *dev = cache_resource->dev;
11056 struct mlx5_priv *priv = dev->data->dev_private;
11058 if (cache_resource->verbs_action)
11059 claim_zero(mlx5_glue->destroy_flow_action
11060 (cache_resource->verbs_action));
11061 if (cache_resource->ft_type == MLX5DV_FLOW_TABLE_TYPE_FDB) {
11062 if (cache_resource->default_miss)
11063 claim_zero(mlx5_glue->destroy_flow_action
11064 (cache_resource->default_miss));
11066 if (cache_resource->normal_path_tbl)
11067 flow_dv_tbl_resource_release(MLX5_SH(dev),
11068 cache_resource->normal_path_tbl);
11069 flow_dv_sample_sub_actions_release(dev,
11070 &cache_resource->sample_idx);
11071 mlx5_ipool_free(priv->sh->ipool[MLX5_IPOOL_SAMPLE],
11072 cache_resource->idx);
11073 DRV_LOG(DEBUG, "sample resource %p: removed",
11074 (void *)cache_resource);
11078 * Release an sample resource.
11081 * Pointer to Ethernet device.
11083 * Pointer to mlx5_flow_handle.
11086 * 1 while a reference on it exists, 0 when freed.
11089 flow_dv_sample_resource_release(struct rte_eth_dev *dev,
11090 struct mlx5_flow_handle *handle)
11092 struct mlx5_priv *priv = dev->data->dev_private;
11093 struct mlx5_flow_dv_sample_resource *cache_resource;
11095 cache_resource = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_SAMPLE],
11096 handle->dvh.rix_sample);
11097 if (!cache_resource)
11099 MLX5_ASSERT(cache_resource->verbs_action);
11100 return mlx5_cache_unregister(&priv->sh->sample_action_list,
11101 &cache_resource->entry);
11105 flow_dv_dest_array_remove_cb(struct mlx5_cache_list *list __rte_unused,
11106 struct mlx5_cache_entry *entry)
11108 struct mlx5_flow_dv_dest_array_resource *cache_resource =
11109 container_of(entry, typeof(*cache_resource), entry);
11110 struct rte_eth_dev *dev = cache_resource->dev;
11111 struct mlx5_priv *priv = dev->data->dev_private;
11114 MLX5_ASSERT(cache_resource->action);
11115 if (cache_resource->action)
11116 claim_zero(mlx5_glue->destroy_flow_action
11117 (cache_resource->action));
11118 for (; i < cache_resource->num_of_dest; i++)
11119 flow_dv_sample_sub_actions_release(dev,
11120 &cache_resource->sample_idx[i]);
11121 mlx5_ipool_free(priv->sh->ipool[MLX5_IPOOL_DEST_ARRAY],
11122 cache_resource->idx);
11123 DRV_LOG(DEBUG, "destination array resource %p: removed",
11124 (void *)cache_resource);
11128 * Release an destination array resource.
11131 * Pointer to Ethernet device.
11133 * Pointer to mlx5_flow_handle.
11136 * 1 while a reference on it exists, 0 when freed.
11139 flow_dv_dest_array_resource_release(struct rte_eth_dev *dev,
11140 struct mlx5_flow_handle *handle)
11142 struct mlx5_priv *priv = dev->data->dev_private;
11143 struct mlx5_flow_dv_dest_array_resource *cache;
11145 cache = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_DEST_ARRAY],
11146 handle->dvh.rix_dest_array);
11149 MLX5_ASSERT(cache->action);
11150 return mlx5_cache_unregister(&priv->sh->dest_array_list,
11155 * Remove the flow from the NIC but keeps it in memory.
11156 * Lock free, (mutex should be acquired by caller).
11159 * Pointer to Ethernet device.
11160 * @param[in, out] flow
11161 * Pointer to flow structure.
11164 flow_dv_remove(struct rte_eth_dev *dev, struct rte_flow *flow)
11166 struct mlx5_flow_handle *dh;
11167 uint32_t handle_idx;
11168 struct mlx5_priv *priv = dev->data->dev_private;
11172 handle_idx = flow->dev_handles;
11173 while (handle_idx) {
11174 dh = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_MLX5_FLOW],
11178 if (dh->drv_flow) {
11179 claim_zero(mlx5_flow_os_destroy_flow(dh->drv_flow));
11180 dh->drv_flow = NULL;
11182 if (dh->fate_action == MLX5_FLOW_FATE_QUEUE)
11183 flow_dv_fate_resource_release(dev, dh);
11184 if (dh->vf_vlan.tag && dh->vf_vlan.created)
11185 mlx5_vlan_vmwa_release(dev, &dh->vf_vlan);
11186 handle_idx = dh->next.next;
11191 * Remove the flow from the NIC and the memory.
11192 * Lock free, (mutex should be acquired by caller).
11195 * Pointer to the Ethernet device structure.
11196 * @param[in, out] flow
11197 * Pointer to flow structure.
11200 flow_dv_destroy(struct rte_eth_dev *dev, struct rte_flow *flow)
11202 struct mlx5_flow_handle *dev_handle;
11203 struct mlx5_priv *priv = dev->data->dev_private;
11207 flow_dv_remove(dev, flow);
11208 if (flow->counter) {
11209 flow_dv_counter_free(dev, flow->counter);
11213 struct mlx5_flow_meter *fm;
11215 fm = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_MTR],
11218 mlx5_flow_meter_detach(fm);
11222 flow_dv_aso_age_release(dev, flow->age);
11223 while (flow->dev_handles) {
11224 uint32_t tmp_idx = flow->dev_handles;
11226 dev_handle = mlx5_ipool_get(priv->sh->ipool
11227 [MLX5_IPOOL_MLX5_FLOW], tmp_idx);
11230 flow->dev_handles = dev_handle->next.next;
11231 if (dev_handle->dvh.matcher)
11232 flow_dv_matcher_release(dev, dev_handle);
11233 if (dev_handle->dvh.rix_sample)
11234 flow_dv_sample_resource_release(dev, dev_handle);
11235 if (dev_handle->dvh.rix_dest_array)
11236 flow_dv_dest_array_resource_release(dev, dev_handle);
11237 if (dev_handle->dvh.rix_encap_decap)
11238 flow_dv_encap_decap_resource_release(dev,
11239 dev_handle->dvh.rix_encap_decap);
11240 if (dev_handle->dvh.modify_hdr)
11241 flow_dv_modify_hdr_resource_release(dev, dev_handle);
11242 if (dev_handle->dvh.rix_push_vlan)
11243 flow_dv_push_vlan_action_resource_release(dev,
11245 if (dev_handle->dvh.rix_tag)
11246 flow_dv_tag_release(dev,
11247 dev_handle->dvh.rix_tag);
11248 flow_dv_fate_resource_release(dev, dev_handle);
11249 mlx5_ipool_free(priv->sh->ipool[MLX5_IPOOL_MLX5_FLOW],
11255 * Release array of hash RX queue objects.
11259 * Pointer to the Ethernet device structure.
11260 * @param[in, out] hrxqs
11261 * Array of hash RX queue objects.
11264 * Total number of references to hash RX queue objects in *hrxqs* array
11265 * after this operation.
11268 __flow_dv_hrxqs_release(struct rte_eth_dev *dev,
11269 uint32_t (*hrxqs)[MLX5_RSS_HASH_FIELDS_LEN])
11274 for (i = 0; i < RTE_DIM(*hrxqs); i++) {
11275 int ret = mlx5_hrxq_release(dev, (*hrxqs)[i]);
11285 * Release all hash RX queue objects representing shared RSS action.
11288 * Pointer to the Ethernet device structure.
11289 * @param[in, out] action
11290 * Shared RSS action to remove hash RX queue objects from.
11293 * Total number of references to hash RX queue objects stored in *action*
11294 * after this operation.
11295 * Expected to be 0 if no external references held.
11298 __flow_dv_action_rss_hrxqs_release(struct rte_eth_dev *dev,
11299 struct mlx5_shared_action_rss *action)
11301 return __flow_dv_hrxqs_release(dev, &action->hrxq) +
11302 __flow_dv_hrxqs_release(dev, &action->hrxq_tunnel);
11306 * Setup shared RSS action.
11307 * Prepare set of hash RX queue objects sufficient to handle all valid
11308 * hash_fields combinations (see enum ibv_rx_hash_fields).
11311 * Pointer to the Ethernet device structure.
11312 * @param[in] action_idx
11313 * Shared RSS action ipool index.
11314 * @param[in, out] action
11315 * Partially initialized shared RSS action.
11316 * @param[out] error
11317 * Perform verbose error reporting if not NULL. Initialized in case of
11321 * 0 on success, otherwise negative errno value.
11324 __flow_dv_action_rss_setup(struct rte_eth_dev *dev,
11325 uint32_t action_idx,
11326 struct mlx5_shared_action_rss *action,
11327 struct rte_flow_error *error)
11329 struct mlx5_flow_rss_desc rss_desc = { 0 };
11333 memcpy(rss_desc.key, action->origin.key, MLX5_RSS_HASH_KEY_LEN);
11334 rss_desc.key_len = MLX5_RSS_HASH_KEY_LEN;
11335 rss_desc.const_q = action->origin.queue;
11336 rss_desc.queue_num = action->origin.queue_num;
11337 /* Set non-zero value to indicate a shared RSS. */
11338 rss_desc.shared_rss = action_idx;
11339 for (i = 0; i < MLX5_RSS_HASH_FIELDS_LEN; i++) {
11341 uint64_t hash_fields = mlx5_rss_hash_fields[i];
11344 for (tunnel = 0; tunnel < 2; tunnel++) {
11345 rss_desc.tunnel = tunnel;
11346 rss_desc.hash_fields = hash_fields;
11347 hrxq_idx = mlx5_hrxq_get(dev, &rss_desc);
11351 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
11352 "cannot get hash queue");
11353 goto error_hrxq_new;
11355 err = __flow_dv_action_rss_hrxq_set
11356 (action, hash_fields, tunnel, hrxq_idx);
11363 __flow_dv_action_rss_hrxqs_release(dev, action);
11369 * Create shared RSS action.
11372 * Pointer to the Ethernet device structure.
11374 * Shared action configuration.
11376 * RSS action specification used to create shared action.
11377 * @param[out] error
11378 * Perform verbose error reporting if not NULL. Initialized in case of
11382 * A valid shared action ID in case of success, 0 otherwise and
11383 * rte_errno is set.
11386 __flow_dv_action_rss_create(struct rte_eth_dev *dev,
11387 const struct rte_flow_shared_action_conf *conf,
11388 const struct rte_flow_action_rss *rss,
11389 struct rte_flow_error *error)
11391 struct mlx5_priv *priv = dev->data->dev_private;
11392 struct mlx5_shared_action_rss *shared_action = NULL;
11393 void *queue = NULL;
11394 struct rte_flow_action_rss *origin;
11395 const uint8_t *rss_key;
11396 uint32_t queue_size = rss->queue_num * sizeof(uint16_t);
11399 RTE_SET_USED(conf);
11400 queue = mlx5_malloc(0, RTE_ALIGN_CEIL(queue_size, sizeof(void *)),
11402 shared_action = mlx5_ipool_zmalloc
11403 (priv->sh->ipool[MLX5_IPOOL_RSS_SHARED_ACTIONS], &idx);
11404 if (!shared_action || !queue) {
11405 rte_flow_error_set(error, ENOMEM,
11406 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
11407 "cannot allocate resource memory");
11408 goto error_rss_init;
11410 if (idx > (1u << MLX5_SHARED_ACTION_TYPE_OFFSET)) {
11411 rte_flow_error_set(error, E2BIG,
11412 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
11413 "rss action number out of range");
11414 goto error_rss_init;
11416 shared_action->queue = queue;
11417 origin = &shared_action->origin;
11418 origin->func = rss->func;
11419 origin->level = rss->level;
11420 /* RSS type 0 indicates default RSS type (ETH_RSS_IP). */
11421 origin->types = !rss->types ? ETH_RSS_IP : rss->types;
11422 /* NULL RSS key indicates default RSS key. */
11423 rss_key = !rss->key ? rss_hash_default_key : rss->key;
11424 memcpy(shared_action->key, rss_key, MLX5_RSS_HASH_KEY_LEN);
11425 origin->key = &shared_action->key[0];
11426 origin->key_len = MLX5_RSS_HASH_KEY_LEN;
11427 memcpy(shared_action->queue, rss->queue, queue_size);
11428 origin->queue = shared_action->queue;
11429 origin->queue_num = rss->queue_num;
11430 if (__flow_dv_action_rss_setup(dev, idx, shared_action, error))
11431 goto error_rss_init;
11432 __atomic_add_fetch(&shared_action->refcnt, 1, __ATOMIC_RELAXED);
11433 rte_spinlock_lock(&priv->shared_act_sl);
11434 ILIST_INSERT(priv->sh->ipool[MLX5_IPOOL_RSS_SHARED_ACTIONS],
11435 &priv->rss_shared_actions, idx, shared_action, next);
11436 rte_spinlock_unlock(&priv->shared_act_sl);
11440 mlx5_ipool_free(priv->sh->ipool[MLX5_IPOOL_RSS_SHARED_ACTIONS],
11448 * Destroy the shared RSS action.
11449 * Release related hash RX queue objects.
11452 * Pointer to the Ethernet device structure.
11454 * The shared RSS action object ID to be removed.
11455 * @param[out] error
11456 * Perform verbose error reporting if not NULL. Initialized in case of
11460 * 0 on success, otherwise negative errno value.
11463 __flow_dv_action_rss_release(struct rte_eth_dev *dev, uint32_t idx,
11464 struct rte_flow_error *error)
11466 struct mlx5_priv *priv = dev->data->dev_private;
11467 struct mlx5_shared_action_rss *shared_rss =
11468 mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_RSS_SHARED_ACTIONS], idx);
11469 uint32_t old_refcnt = 1;
11473 return rte_flow_error_set(error, EINVAL,
11474 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
11475 "invalid shared action");
11476 remaining = __flow_dv_action_rss_hrxqs_release(dev, shared_rss);
11478 return rte_flow_error_set(error, ETOOMANYREFS,
11479 RTE_FLOW_ERROR_TYPE_ACTION,
11481 "shared rss hrxq has references");
11482 if (!__atomic_compare_exchange_n(&shared_rss->refcnt, &old_refcnt,
11483 0, 0, __ATOMIC_ACQUIRE,
11485 return rte_flow_error_set(error, ETOOMANYREFS,
11486 RTE_FLOW_ERROR_TYPE_ACTION,
11488 "shared rss has references");
11489 rte_free(shared_rss->queue);
11490 rte_spinlock_lock(&priv->shared_act_sl);
11491 ILIST_REMOVE(priv->sh->ipool[MLX5_IPOOL_RSS_SHARED_ACTIONS],
11492 &priv->rss_shared_actions, idx, shared_rss, next);
11493 rte_spinlock_unlock(&priv->shared_act_sl);
11494 mlx5_ipool_free(priv->sh->ipool[MLX5_IPOOL_RSS_SHARED_ACTIONS],
11500 * Create shared action, lock free,
11501 * (mutex should be acquired by caller).
11502 * Dispatcher for action type specific call.
11505 * Pointer to the Ethernet device structure.
11507 * Shared action configuration.
11508 * @param[in] action
11509 * Action specification used to create shared action.
11510 * @param[out] error
11511 * Perform verbose error reporting if not NULL. Initialized in case of
11515 * A valid shared action handle in case of success, NULL otherwise and
11516 * rte_errno is set.
11518 static struct rte_flow_shared_action *
11519 flow_dv_action_create(struct rte_eth_dev *dev,
11520 const struct rte_flow_shared_action_conf *conf,
11521 const struct rte_flow_action *action,
11522 struct rte_flow_error *err)
11527 switch (action->type) {
11528 case RTE_FLOW_ACTION_TYPE_RSS:
11529 ret = __flow_dv_action_rss_create(dev, conf, action->conf, err);
11530 idx = (MLX5_SHARED_ACTION_TYPE_RSS <<
11531 MLX5_SHARED_ACTION_TYPE_OFFSET) | ret;
11533 case RTE_FLOW_ACTION_TYPE_AGE:
11534 ret = flow_dv_translate_create_aso_age(dev, action->conf);
11535 idx = (MLX5_SHARED_ACTION_TYPE_AGE <<
11536 MLX5_SHARED_ACTION_TYPE_OFFSET) | ret;
11538 struct mlx5_aso_age_action *aso_age =
11539 flow_aso_age_get_by_idx(dev, ret);
11541 if (!aso_age->age_params.context)
11542 aso_age->age_params.context =
11543 (void *)(uintptr_t)idx;
11547 rte_flow_error_set(err, ENOTSUP, RTE_FLOW_ERROR_TYPE_ACTION,
11548 NULL, "action type not supported");
11551 return ret ? (struct rte_flow_shared_action *)(uintptr_t)idx : NULL;
11555 * Destroy the shared action.
11556 * Release action related resources on the NIC and the memory.
11557 * Lock free, (mutex should be acquired by caller).
11558 * Dispatcher for action type specific call.
11561 * Pointer to the Ethernet device structure.
11562 * @param[in] action
11563 * The shared action object to be removed.
11564 * @param[out] error
11565 * Perform verbose error reporting if not NULL. Initialized in case of
11569 * 0 on success, otherwise negative errno value.
11572 flow_dv_action_destroy(struct rte_eth_dev *dev,
11573 struct rte_flow_shared_action *action,
11574 struct rte_flow_error *error)
11576 uint32_t act_idx = (uint32_t)(uintptr_t)action;
11577 uint32_t type = act_idx >> MLX5_SHARED_ACTION_TYPE_OFFSET;
11578 uint32_t idx = act_idx & ((1u << MLX5_SHARED_ACTION_TYPE_OFFSET) - 1);
11582 case MLX5_SHARED_ACTION_TYPE_RSS:
11583 return __flow_dv_action_rss_release(dev, idx, error);
11584 case MLX5_SHARED_ACTION_TYPE_AGE:
11585 ret = flow_dv_aso_age_release(dev, idx);
11588 * In this case, the last flow has a reference will
11589 * actually release the age action.
11591 DRV_LOG(DEBUG, "Shared age action %" PRIu32 " was"
11592 " released with references %d.", idx, ret);
11595 return rte_flow_error_set(error, ENOTSUP,
11596 RTE_FLOW_ERROR_TYPE_ACTION,
11598 "action type not supported");
11603 * Updates in place shared RSS action configuration.
11606 * Pointer to the Ethernet device structure.
11608 * The shared RSS action object ID to be updated.
11609 * @param[in] action_conf
11610 * RSS action specification used to modify *shared_rss*.
11611 * @param[out] error
11612 * Perform verbose error reporting if not NULL. Initialized in case of
11616 * 0 on success, otherwise negative errno value.
11617 * @note: currently only support update of RSS queues.
11620 __flow_dv_action_rss_update(struct rte_eth_dev *dev, uint32_t idx,
11621 const struct rte_flow_action_rss *action_conf,
11622 struct rte_flow_error *error)
11624 struct mlx5_priv *priv = dev->data->dev_private;
11625 struct mlx5_shared_action_rss *shared_rss =
11626 mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_RSS_SHARED_ACTIONS], idx);
11629 void *queue = NULL;
11630 const uint8_t *rss_key;
11631 uint32_t rss_key_len;
11632 uint32_t queue_size = action_conf->queue_num * sizeof(uint16_t);
11635 return rte_flow_error_set(error, EINVAL,
11636 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
11637 "invalid shared action to update");
11638 queue = mlx5_malloc(MLX5_MEM_ZERO,
11639 RTE_ALIGN_CEIL(queue_size, sizeof(void *)),
11642 return rte_flow_error_set(error, ENOMEM,
11643 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
11645 "cannot allocate resource memory");
11646 if (action_conf->key) {
11647 rss_key = action_conf->key;
11648 rss_key_len = action_conf->key_len;
11650 rss_key = rss_hash_default_key;
11651 rss_key_len = MLX5_RSS_HASH_KEY_LEN;
11653 for (i = 0; i < MLX5_RSS_HASH_FIELDS_LEN; i++) {
11655 uint64_t hash_fields = mlx5_rss_hash_fields[i];
11658 for (tunnel = 0; tunnel < 2; tunnel++) {
11659 hrxq_idx = __flow_dv_action_rss_hrxq_lookup
11660 (dev, idx, hash_fields, tunnel);
11661 MLX5_ASSERT(hrxq_idx);
11662 ret = mlx5_hrxq_modify
11664 rss_key, rss_key_len,
11666 action_conf->queue, action_conf->queue_num);
11669 return rte_flow_error_set
11671 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
11672 "cannot update hash queue");
11676 mlx5_free(shared_rss->queue);
11677 shared_rss->queue = queue;
11678 memcpy(shared_rss->queue, action_conf->queue, queue_size);
11679 shared_rss->origin.queue = shared_rss->queue;
11680 shared_rss->origin.queue_num = action_conf->queue_num;
11685 * Updates in place shared action configuration, lock free,
11686 * (mutex should be acquired by caller).
11689 * Pointer to the Ethernet device structure.
11690 * @param[in] action
11691 * The shared action object to be updated.
11692 * @param[in] action_conf
11693 * Action specification used to modify *action*.
11694 * *action_conf* should be of type correlating with type of the *action*,
11695 * otherwise considered as invalid.
11696 * @param[out] error
11697 * Perform verbose error reporting if not NULL. Initialized in case of
11701 * 0 on success, otherwise negative errno value.
11704 flow_dv_action_update(struct rte_eth_dev *dev,
11705 struct rte_flow_shared_action *action,
11706 const void *action_conf,
11707 struct rte_flow_error *err)
11709 uint32_t act_idx = (uint32_t)(uintptr_t)action;
11710 uint32_t type = act_idx >> MLX5_SHARED_ACTION_TYPE_OFFSET;
11711 uint32_t idx = act_idx & ((1u << MLX5_SHARED_ACTION_TYPE_OFFSET) - 1);
11714 case MLX5_SHARED_ACTION_TYPE_RSS:
11715 return __flow_dv_action_rss_update(dev, idx, action_conf, err);
11717 return rte_flow_error_set(err, ENOTSUP,
11718 RTE_FLOW_ERROR_TYPE_ACTION,
11720 "action type update not supported");
11725 flow_dv_action_query(struct rte_eth_dev *dev,
11726 const struct rte_flow_shared_action *action, void *data,
11727 struct rte_flow_error *error)
11729 struct mlx5_age_param *age_param;
11730 struct rte_flow_query_age *resp;
11731 uint32_t act_idx = (uint32_t)(uintptr_t)action;
11732 uint32_t type = act_idx >> MLX5_SHARED_ACTION_TYPE_OFFSET;
11733 uint32_t idx = act_idx & ((1u << MLX5_SHARED_ACTION_TYPE_OFFSET) - 1);
11736 case MLX5_SHARED_ACTION_TYPE_AGE:
11737 age_param = &flow_aso_age_get_by_idx(dev, idx)->age_params;
11739 resp->aged = __atomic_load_n(&age_param->state,
11740 __ATOMIC_RELAXED) == AGE_TMOUT ?
11742 resp->sec_since_last_hit_valid = !resp->aged;
11743 if (resp->sec_since_last_hit_valid)
11744 resp->sec_since_last_hit = __atomic_load_n
11745 (&age_param->sec_since_last_hit, __ATOMIC_RELAXED);
11748 return rte_flow_error_set(error, ENOTSUP,
11749 RTE_FLOW_ERROR_TYPE_ACTION,
11751 "action type query not supported");
11756 * Query a dv flow rule for its statistics via devx.
11759 * Pointer to Ethernet device.
11761 * Pointer to the sub flow.
11763 * data retrieved by the query.
11764 * @param[out] error
11765 * Perform verbose error reporting if not NULL.
11768 * 0 on success, a negative errno value otherwise and rte_errno is set.
11771 flow_dv_query_count(struct rte_eth_dev *dev, struct rte_flow *flow,
11772 void *data, struct rte_flow_error *error)
11774 struct mlx5_priv *priv = dev->data->dev_private;
11775 struct rte_flow_query_count *qc = data;
11777 if (!priv->config.devx)
11778 return rte_flow_error_set(error, ENOTSUP,
11779 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
11781 "counters are not supported");
11782 if (flow->counter) {
11783 uint64_t pkts, bytes;
11784 struct mlx5_flow_counter *cnt;
11786 cnt = flow_dv_counter_get_by_idx(dev, flow->counter,
11788 int err = _flow_dv_query_count(dev, flow->counter, &pkts,
11792 return rte_flow_error_set(error, -err,
11793 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
11794 NULL, "cannot read counters");
11797 qc->hits = pkts - cnt->hits;
11798 qc->bytes = bytes - cnt->bytes;
11801 cnt->bytes = bytes;
11805 return rte_flow_error_set(error, EINVAL,
11806 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
11808 "counters are not available");
11812 * Query a flow rule AGE action for aging information.
11815 * Pointer to Ethernet device.
11817 * Pointer to the sub flow.
11819 * data retrieved by the query.
11820 * @param[out] error
11821 * Perform verbose error reporting if not NULL.
11824 * 0 on success, a negative errno value otherwise and rte_errno is set.
11827 flow_dv_query_age(struct rte_eth_dev *dev, struct rte_flow *flow,
11828 void *data, struct rte_flow_error *error)
11830 struct rte_flow_query_age *resp = data;
11831 struct mlx5_age_param *age_param;
11834 struct mlx5_aso_age_action *act =
11835 flow_aso_age_get_by_idx(dev, flow->age);
11837 age_param = &act->age_params;
11838 } else if (flow->counter) {
11839 age_param = flow_dv_counter_idx_get_age(dev, flow->counter);
11841 if (!age_param || !age_param->timeout)
11842 return rte_flow_error_set
11844 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
11845 NULL, "cannot read age data");
11847 return rte_flow_error_set(error, EINVAL,
11848 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
11849 NULL, "age data not available");
11851 resp->aged = __atomic_load_n(&age_param->state, __ATOMIC_RELAXED) ==
11853 resp->sec_since_last_hit_valid = !resp->aged;
11854 if (resp->sec_since_last_hit_valid)
11855 resp->sec_since_last_hit = __atomic_load_n
11856 (&age_param->sec_since_last_hit, __ATOMIC_RELAXED);
11863 * @see rte_flow_query()
11864 * @see rte_flow_ops
11867 flow_dv_query(struct rte_eth_dev *dev,
11868 struct rte_flow *flow __rte_unused,
11869 const struct rte_flow_action *actions __rte_unused,
11870 void *data __rte_unused,
11871 struct rte_flow_error *error __rte_unused)
11875 for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
11876 switch (actions->type) {
11877 case RTE_FLOW_ACTION_TYPE_VOID:
11879 case RTE_FLOW_ACTION_TYPE_COUNT:
11880 ret = flow_dv_query_count(dev, flow, data, error);
11882 case RTE_FLOW_ACTION_TYPE_AGE:
11883 ret = flow_dv_query_age(dev, flow, data, error);
11886 return rte_flow_error_set(error, ENOTSUP,
11887 RTE_FLOW_ERROR_TYPE_ACTION,
11889 "action not supported");
11896 * Destroy the meter table set.
11897 * Lock free, (mutex should be acquired by caller).
11900 * Pointer to Ethernet device.
11902 * Pointer to the meter table set.
11908 flow_dv_destroy_mtr_tbl(struct rte_eth_dev *dev,
11909 struct mlx5_meter_domains_infos *tbl)
11911 struct mlx5_priv *priv = dev->data->dev_private;
11912 struct mlx5_meter_domains_infos *mtd =
11913 (struct mlx5_meter_domains_infos *)tbl;
11915 if (!mtd || !priv->config.dv_flow_en)
11917 if (mtd->ingress.policer_rules[RTE_MTR_DROPPED])
11918 claim_zero(mlx5_flow_os_destroy_flow
11919 (mtd->ingress.policer_rules[RTE_MTR_DROPPED]));
11920 if (mtd->egress.policer_rules[RTE_MTR_DROPPED])
11921 claim_zero(mlx5_flow_os_destroy_flow
11922 (mtd->egress.policer_rules[RTE_MTR_DROPPED]));
11923 if (mtd->transfer.policer_rules[RTE_MTR_DROPPED])
11924 claim_zero(mlx5_flow_os_destroy_flow
11925 (mtd->transfer.policer_rules[RTE_MTR_DROPPED]));
11926 if (mtd->egress.color_matcher)
11927 claim_zero(mlx5_flow_os_destroy_flow_matcher
11928 (mtd->egress.color_matcher));
11929 if (mtd->egress.any_matcher)
11930 claim_zero(mlx5_flow_os_destroy_flow_matcher
11931 (mtd->egress.any_matcher));
11932 if (mtd->egress.tbl)
11933 flow_dv_tbl_resource_release(MLX5_SH(dev), mtd->egress.tbl);
11934 if (mtd->egress.sfx_tbl)
11935 flow_dv_tbl_resource_release(MLX5_SH(dev), mtd->egress.sfx_tbl);
11936 if (mtd->ingress.color_matcher)
11937 claim_zero(mlx5_flow_os_destroy_flow_matcher
11938 (mtd->ingress.color_matcher));
11939 if (mtd->ingress.any_matcher)
11940 claim_zero(mlx5_flow_os_destroy_flow_matcher
11941 (mtd->ingress.any_matcher));
11942 if (mtd->ingress.tbl)
11943 flow_dv_tbl_resource_release(MLX5_SH(dev), mtd->ingress.tbl);
11944 if (mtd->ingress.sfx_tbl)
11945 flow_dv_tbl_resource_release(MLX5_SH(dev),
11946 mtd->ingress.sfx_tbl);
11947 if (mtd->transfer.color_matcher)
11948 claim_zero(mlx5_flow_os_destroy_flow_matcher
11949 (mtd->transfer.color_matcher));
11950 if (mtd->transfer.any_matcher)
11951 claim_zero(mlx5_flow_os_destroy_flow_matcher
11952 (mtd->transfer.any_matcher));
11953 if (mtd->transfer.tbl)
11954 flow_dv_tbl_resource_release(MLX5_SH(dev), mtd->transfer.tbl);
11955 if (mtd->transfer.sfx_tbl)
11956 flow_dv_tbl_resource_release(MLX5_SH(dev),
11957 mtd->transfer.sfx_tbl);
11958 if (mtd->drop_actn)
11959 claim_zero(mlx5_flow_os_destroy_flow_action(mtd->drop_actn));
11964 /* Number of meter flow actions, count and jump or count and drop. */
11965 #define METER_ACTIONS 2
11968 * Create specify domain meter table and suffix table.
11971 * Pointer to Ethernet device.
11972 * @param[in,out] mtb
11973 * Pointer to DV meter table set.
11974 * @param[in] egress
11976 * @param[in] transfer
11978 * @param[in] color_reg_c_idx
11979 * Reg C index for color match.
11982 * 0 on success, -1 otherwise and rte_errno is set.
11985 flow_dv_prepare_mtr_tables(struct rte_eth_dev *dev,
11986 struct mlx5_meter_domains_infos *mtb,
11987 uint8_t egress, uint8_t transfer,
11988 uint32_t color_reg_c_idx)
11990 struct mlx5_priv *priv = dev->data->dev_private;
11991 struct mlx5_dev_ctx_shared *sh = priv->sh;
11992 struct mlx5_flow_dv_match_params mask = {
11993 .size = sizeof(mask.buf),
11995 struct mlx5_flow_dv_match_params value = {
11996 .size = sizeof(value.buf),
11998 struct mlx5dv_flow_matcher_attr dv_attr = {
11999 .type = IBV_FLOW_ATTR_NORMAL,
12001 .match_criteria_enable = 0,
12002 .match_mask = (void *)&mask,
12004 void *actions[METER_ACTIONS];
12005 struct mlx5_meter_domain_info *dtb;
12006 struct rte_flow_error error;
12011 dtb = &mtb->transfer;
12013 dtb = &mtb->egress;
12015 dtb = &mtb->ingress;
12016 /* Create the meter table with METER level. */
12017 dtb->tbl = flow_dv_tbl_resource_get(dev, MLX5_FLOW_TABLE_LEVEL_METER,
12018 egress, transfer, false, NULL, 0,
12021 DRV_LOG(ERR, "Failed to create meter policer table.");
12024 /* Create the meter suffix table with SUFFIX level. */
12025 dtb->sfx_tbl = flow_dv_tbl_resource_get(dev,
12026 MLX5_FLOW_TABLE_LEVEL_SUFFIX,
12027 egress, transfer, false, NULL, 0,
12029 if (!dtb->sfx_tbl) {
12030 DRV_LOG(ERR, "Failed to create meter suffix table.");
12033 /* Create matchers, Any and Color. */
12034 dv_attr.priority = 3;
12035 dv_attr.match_criteria_enable = 0;
12036 ret = mlx5_flow_os_create_flow_matcher(sh->ctx, &dv_attr, dtb->tbl->obj,
12037 &dtb->any_matcher);
12039 DRV_LOG(ERR, "Failed to create meter"
12040 " policer default matcher.");
12043 dv_attr.priority = 0;
12044 dv_attr.match_criteria_enable =
12045 1 << MLX5_MATCH_CRITERIA_ENABLE_MISC2_BIT;
12046 flow_dv_match_meta_reg(mask.buf, value.buf, color_reg_c_idx,
12047 rte_col_2_mlx5_col(RTE_COLORS), UINT8_MAX);
12048 ret = mlx5_flow_os_create_flow_matcher(sh->ctx, &dv_attr, dtb->tbl->obj,
12049 &dtb->color_matcher);
12051 DRV_LOG(ERR, "Failed to create meter policer color matcher.");
12054 if (mtb->count_actns[RTE_MTR_DROPPED])
12055 actions[i++] = mtb->count_actns[RTE_MTR_DROPPED];
12056 actions[i++] = mtb->drop_actn;
12057 /* Default rule: lowest priority, match any, actions: drop. */
12058 ret = mlx5_flow_os_create_flow(dtb->any_matcher, (void *)&value, i,
12060 &dtb->policer_rules[RTE_MTR_DROPPED]);
12062 DRV_LOG(ERR, "Failed to create meter policer drop rule.");
12071 * Create the needed meter and suffix tables.
12072 * Lock free, (mutex should be acquired by caller).
12075 * Pointer to Ethernet device.
12077 * Pointer to the flow meter.
12080 * Pointer to table set on success, NULL otherwise and rte_errno is set.
12082 static struct mlx5_meter_domains_infos *
12083 flow_dv_create_mtr_tbl(struct rte_eth_dev *dev,
12084 const struct mlx5_flow_meter *fm)
12086 struct mlx5_priv *priv = dev->data->dev_private;
12087 struct mlx5_meter_domains_infos *mtb;
12091 if (!priv->mtr_en) {
12092 rte_errno = ENOTSUP;
12095 mtb = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*mtb), 0, SOCKET_ID_ANY);
12097 DRV_LOG(ERR, "Failed to allocate memory for meter.");
12100 /* Create meter count actions */
12101 for (i = 0; i <= RTE_MTR_DROPPED; i++) {
12102 struct mlx5_flow_counter *cnt;
12103 if (!fm->policer_stats.cnt[i])
12105 cnt = flow_dv_counter_get_by_idx(dev,
12106 fm->policer_stats.cnt[i], NULL);
12107 mtb->count_actns[i] = cnt->action;
12109 /* Create drop action. */
12110 ret = mlx5_flow_os_create_flow_action_drop(&mtb->drop_actn);
12112 DRV_LOG(ERR, "Failed to create drop action.");
12115 /* Egress meter table. */
12116 ret = flow_dv_prepare_mtr_tables(dev, mtb, 1, 0, priv->mtr_color_reg);
12118 DRV_LOG(ERR, "Failed to prepare egress meter table.");
12121 /* Ingress meter table. */
12122 ret = flow_dv_prepare_mtr_tables(dev, mtb, 0, 0, priv->mtr_color_reg);
12124 DRV_LOG(ERR, "Failed to prepare ingress meter table.");
12127 /* FDB meter table. */
12128 if (priv->config.dv_esw_en) {
12129 ret = flow_dv_prepare_mtr_tables(dev, mtb, 0, 1,
12130 priv->mtr_color_reg);
12132 DRV_LOG(ERR, "Failed to prepare fdb meter table.");
12138 flow_dv_destroy_mtr_tbl(dev, mtb);
12143 * Destroy domain policer rule.
12146 * Pointer to domain table.
12149 flow_dv_destroy_domain_policer_rule(struct mlx5_meter_domain_info *dt)
12153 for (i = 0; i < RTE_MTR_DROPPED; i++) {
12154 if (dt->policer_rules[i]) {
12155 claim_zero(mlx5_flow_os_destroy_flow
12156 (dt->policer_rules[i]));
12157 dt->policer_rules[i] = NULL;
12160 if (dt->jump_actn) {
12161 claim_zero(mlx5_flow_os_destroy_flow_action(dt->jump_actn));
12162 dt->jump_actn = NULL;
12167 * Destroy policer rules.
12170 * Pointer to Ethernet device.
12172 * Pointer to flow meter structure.
12174 * Pointer to flow attributes.
12180 flow_dv_destroy_policer_rules(struct rte_eth_dev *dev __rte_unused,
12181 const struct mlx5_flow_meter *fm,
12182 const struct rte_flow_attr *attr)
12184 struct mlx5_meter_domains_infos *mtb = fm ? fm->mfts : NULL;
12189 flow_dv_destroy_domain_policer_rule(&mtb->egress);
12191 flow_dv_destroy_domain_policer_rule(&mtb->ingress);
12192 if (attr->transfer)
12193 flow_dv_destroy_domain_policer_rule(&mtb->transfer);
12198 * Create specify domain meter policer rule.
12201 * Pointer to flow meter structure.
12203 * Pointer to DV meter table set.
12204 * @param[in] mtr_reg_c
12205 * Color match REG_C.
12208 * 0 on success, -1 otherwise.
12211 flow_dv_create_policer_forward_rule(struct mlx5_flow_meter *fm,
12212 struct mlx5_meter_domain_info *dtb,
12215 struct mlx5_flow_dv_match_params matcher = {
12216 .size = sizeof(matcher.buf),
12218 struct mlx5_flow_dv_match_params value = {
12219 .size = sizeof(value.buf),
12221 struct mlx5_meter_domains_infos *mtb = fm->mfts;
12222 void *actions[METER_ACTIONS];
12226 /* Create jump action. */
12227 if (!dtb->jump_actn)
12228 ret = mlx5_flow_os_create_flow_action_dest_flow_tbl
12229 (dtb->sfx_tbl->obj, &dtb->jump_actn);
12231 DRV_LOG(ERR, "Failed to create policer jump action.");
12234 for (i = 0; i < RTE_MTR_DROPPED; i++) {
12237 flow_dv_match_meta_reg(matcher.buf, value.buf, mtr_reg_c,
12238 rte_col_2_mlx5_col(i), UINT8_MAX);
12239 if (mtb->count_actns[i])
12240 actions[j++] = mtb->count_actns[i];
12241 if (fm->action[i] == MTR_POLICER_ACTION_DROP)
12242 actions[j++] = mtb->drop_actn;
12244 actions[j++] = dtb->jump_actn;
12245 ret = mlx5_flow_os_create_flow(dtb->color_matcher,
12246 (void *)&value, j, actions,
12247 &dtb->policer_rules[i]);
12249 DRV_LOG(ERR, "Failed to create policer rule.");
12260 * Create policer rules.
12263 * Pointer to Ethernet device.
12265 * Pointer to flow meter structure.
12267 * Pointer to flow attributes.
12270 * 0 on success, -1 otherwise.
12273 flow_dv_create_policer_rules(struct rte_eth_dev *dev,
12274 struct mlx5_flow_meter *fm,
12275 const struct rte_flow_attr *attr)
12277 struct mlx5_priv *priv = dev->data->dev_private;
12278 struct mlx5_meter_domains_infos *mtb = fm->mfts;
12281 if (attr->egress) {
12282 ret = flow_dv_create_policer_forward_rule(fm, &mtb->egress,
12283 priv->mtr_color_reg);
12285 DRV_LOG(ERR, "Failed to create egress policer.");
12289 if (attr->ingress) {
12290 ret = flow_dv_create_policer_forward_rule(fm, &mtb->ingress,
12291 priv->mtr_color_reg);
12293 DRV_LOG(ERR, "Failed to create ingress policer.");
12297 if (attr->transfer) {
12298 ret = flow_dv_create_policer_forward_rule(fm, &mtb->transfer,
12299 priv->mtr_color_reg);
12301 DRV_LOG(ERR, "Failed to create transfer policer.");
12307 flow_dv_destroy_policer_rules(dev, fm, attr);
12312 * Validate the batch counter support in root table.
12314 * Create a simple flow with invalid counter and drop action on root table to
12315 * validate if batch counter with offset on root table is supported or not.
12318 * Pointer to rte_eth_dev structure.
12321 * 0 on success, a negative errno value otherwise and rte_errno is set.
12324 mlx5_flow_dv_discover_counter_offset_support(struct rte_eth_dev *dev)
12326 struct mlx5_priv *priv = dev->data->dev_private;
12327 struct mlx5_dev_ctx_shared *sh = priv->sh;
12328 struct mlx5_flow_dv_match_params mask = {
12329 .size = sizeof(mask.buf),
12331 struct mlx5_flow_dv_match_params value = {
12332 .size = sizeof(value.buf),
12334 struct mlx5dv_flow_matcher_attr dv_attr = {
12335 .type = IBV_FLOW_ATTR_NORMAL,
12337 .match_criteria_enable = 0,
12338 .match_mask = (void *)&mask,
12340 void *actions[2] = { 0 };
12341 struct mlx5_flow_tbl_resource *tbl = NULL;
12342 struct mlx5_devx_obj *dcs = NULL;
12343 void *matcher = NULL;
12347 tbl = flow_dv_tbl_resource_get(dev, 0, 0, 0, false, NULL, 0, 0, NULL);
12350 dcs = mlx5_devx_cmd_flow_counter_alloc(priv->sh->ctx, 0x4);
12353 ret = mlx5_flow_os_create_flow_action_count(dcs->obj, UINT16_MAX,
12357 actions[1] = priv->drop_queue.hrxq->action;
12358 dv_attr.match_criteria_enable = flow_dv_matcher_enable(mask.buf);
12359 ret = mlx5_flow_os_create_flow_matcher(sh->ctx, &dv_attr, tbl->obj,
12363 ret = mlx5_flow_os_create_flow(matcher, (void *)&value, 2,
12367 * If batch counter with offset is not supported, the driver will not
12368 * validate the invalid offset value, flow create should success.
12369 * In this case, it means batch counter is not supported in root table.
12371 * Otherwise, if flow create is failed, counter offset is supported.
12374 DRV_LOG(INFO, "Batch counter is not supported in root "
12375 "table. Switch to fallback mode.");
12376 rte_errno = ENOTSUP;
12378 claim_zero(mlx5_flow_os_destroy_flow(flow));
12380 /* Check matcher to make sure validate fail at flow create. */
12381 if (!matcher || (matcher && errno != EINVAL))
12382 DRV_LOG(ERR, "Unexpected error in counter offset "
12383 "support detection");
12387 claim_zero(mlx5_flow_os_destroy_flow_action(actions[0]));
12389 claim_zero(mlx5_flow_os_destroy_flow_matcher(matcher));
12391 flow_dv_tbl_resource_release(MLX5_SH(dev), tbl);
12393 claim_zero(mlx5_devx_cmd_destroy(dcs));
12398 * Query a devx counter.
12401 * Pointer to the Ethernet device structure.
12403 * Index to the flow counter.
12405 * Set to clear the counter statistics.
12407 * The statistics value of packets.
12408 * @param[out] bytes
12409 * The statistics value of bytes.
12412 * 0 on success, otherwise return -1.
12415 flow_dv_counter_query(struct rte_eth_dev *dev, uint32_t counter, bool clear,
12416 uint64_t *pkts, uint64_t *bytes)
12418 struct mlx5_priv *priv = dev->data->dev_private;
12419 struct mlx5_flow_counter *cnt;
12420 uint64_t inn_pkts, inn_bytes;
12423 if (!priv->config.devx)
12426 ret = _flow_dv_query_count(dev, counter, &inn_pkts, &inn_bytes);
12429 cnt = flow_dv_counter_get_by_idx(dev, counter, NULL);
12430 *pkts = inn_pkts - cnt->hits;
12431 *bytes = inn_bytes - cnt->bytes;
12433 cnt->hits = inn_pkts;
12434 cnt->bytes = inn_bytes;
12440 * Get aged-out flows.
12443 * Pointer to the Ethernet device structure.
12444 * @param[in] context
12445 * The address of an array of pointers to the aged-out flows contexts.
12446 * @param[in] nb_contexts
12447 * The length of context array pointers.
12448 * @param[out] error
12449 * Perform verbose error reporting if not NULL. Initialized in case of
12453 * how many contexts get in success, otherwise negative errno value.
12454 * if nb_contexts is 0, return the amount of all aged contexts.
12455 * if nb_contexts is not 0 , return the amount of aged flows reported
12456 * in the context array.
12457 * @note: only stub for now
12460 flow_get_aged_flows(struct rte_eth_dev *dev,
12462 uint32_t nb_contexts,
12463 struct rte_flow_error *error)
12465 struct mlx5_priv *priv = dev->data->dev_private;
12466 struct mlx5_age_info *age_info;
12467 struct mlx5_age_param *age_param;
12468 struct mlx5_flow_counter *counter;
12469 struct mlx5_aso_age_action *act;
12472 if (nb_contexts && !context)
12473 return rte_flow_error_set(error, EINVAL,
12474 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
12475 NULL, "empty context");
12476 age_info = GET_PORT_AGE_INFO(priv);
12477 rte_spinlock_lock(&age_info->aged_sl);
12478 LIST_FOREACH(act, &age_info->aged_aso, next) {
12481 context[nb_flows - 1] =
12482 act->age_params.context;
12483 if (!(--nb_contexts))
12487 TAILQ_FOREACH(counter, &age_info->aged_counters, next) {
12490 age_param = MLX5_CNT_TO_AGE(counter);
12491 context[nb_flows - 1] = age_param->context;
12492 if (!(--nb_contexts))
12496 rte_spinlock_unlock(&age_info->aged_sl);
12497 MLX5_AGE_SET(age_info, MLX5_AGE_TRIGGER);
12502 * Mutex-protected thunk to lock-free flow_dv_counter_alloc().
12505 flow_dv_counter_allocate(struct rte_eth_dev *dev)
12507 return flow_dv_counter_alloc(dev, 0);
12511 * Validate shared action.
12512 * Dispatcher for action type specific validation.
12515 * Pointer to the Ethernet device structure.
12517 * Shared action configuration.
12518 * @param[in] action
12519 * The shared action object to validate.
12520 * @param[out] error
12521 * Perform verbose error reporting if not NULL. Initialized in case of
12525 * 0 on success, otherwise negative errno value.
12528 flow_dv_action_validate(struct rte_eth_dev *dev,
12529 const struct rte_flow_shared_action_conf *conf,
12530 const struct rte_flow_action *action,
12531 struct rte_flow_error *err)
12533 struct mlx5_priv *priv = dev->data->dev_private;
12535 RTE_SET_USED(conf);
12536 switch (action->type) {
12537 case RTE_FLOW_ACTION_TYPE_RSS:
12538 return mlx5_validate_action_rss(dev, action, err);
12539 case RTE_FLOW_ACTION_TYPE_AGE:
12540 if (!priv->sh->aso_age_mng)
12541 return rte_flow_error_set(err, ENOTSUP,
12542 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
12544 "shared age action not supported");
12545 return flow_dv_validate_action_age(0, action, dev, err);
12547 return rte_flow_error_set(err, ENOTSUP,
12548 RTE_FLOW_ERROR_TYPE_ACTION,
12550 "action type not supported");
12555 flow_dv_sync_domain(struct rte_eth_dev *dev, uint32_t domains, uint32_t flags)
12557 struct mlx5_priv *priv = dev->data->dev_private;
12560 if ((domains & MLX5_DOMAIN_BIT_NIC_RX) && priv->sh->rx_domain != NULL) {
12561 ret = mlx5_glue->dr_sync_domain(priv->sh->rx_domain,
12566 if ((domains & MLX5_DOMAIN_BIT_NIC_TX) && priv->sh->tx_domain != NULL) {
12567 ret = mlx5_glue->dr_sync_domain(priv->sh->tx_domain, flags);
12571 if ((domains & MLX5_DOMAIN_BIT_FDB) && priv->sh->fdb_domain != NULL) {
12572 ret = mlx5_glue->dr_sync_domain(priv->sh->fdb_domain, flags);
12579 const struct mlx5_flow_driver_ops mlx5_flow_dv_drv_ops = {
12580 .validate = flow_dv_validate,
12581 .prepare = flow_dv_prepare,
12582 .translate = flow_dv_translate,
12583 .apply = flow_dv_apply,
12584 .remove = flow_dv_remove,
12585 .destroy = flow_dv_destroy,
12586 .query = flow_dv_query,
12587 .create_mtr_tbls = flow_dv_create_mtr_tbl,
12588 .destroy_mtr_tbls = flow_dv_destroy_mtr_tbl,
12589 .create_policer_rules = flow_dv_create_policer_rules,
12590 .destroy_policer_rules = flow_dv_destroy_policer_rules,
12591 .counter_alloc = flow_dv_counter_allocate,
12592 .counter_free = flow_dv_counter_free,
12593 .counter_query = flow_dv_counter_query,
12594 .get_aged_flows = flow_get_aged_flows,
12595 .action_validate = flow_dv_action_validate,
12596 .action_create = flow_dv_action_create,
12597 .action_destroy = flow_dv_action_destroy,
12598 .action_update = flow_dv_action_update,
12599 .action_query = flow_dv_action_query,
12600 .sync_domain = flow_dv_sync_domain,
12603 #endif /* HAVE_IBV_FLOW_DV_SUPPORT */