1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2016 6WIND S.A.
3 * Copyright 2016 Mellanox Technologies, Ltd
6 #include <netinet/in.h>
13 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
15 #pragma GCC diagnostic ignored "-Wpedantic"
17 #include <infiniband/verbs.h>
19 #pragma GCC diagnostic error "-Wpedantic"
22 #include <rte_common.h>
23 #include <rte_ether.h>
24 #include <rte_ethdev_driver.h>
26 #include <rte_flow_driver.h>
27 #include <rte_malloc.h>
31 #include "mlx5_defs.h"
32 #include "mlx5_flow.h"
33 #include "mlx5_glue.h"
35 #include "mlx5_rxtx.h"
37 /* Dev ops structure defined in mlx5.c */
38 extern const struct eth_dev_ops mlx5_dev_ops;
39 extern const struct eth_dev_ops mlx5_dev_ops_isolate;
41 /** Device flow drivers. */
42 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
43 extern const struct mlx5_flow_driver_ops mlx5_flow_dv_drv_ops;
45 extern const struct mlx5_flow_driver_ops mlx5_flow_verbs_drv_ops;
47 const struct mlx5_flow_driver_ops mlx5_flow_null_drv_ops;
49 const struct mlx5_flow_driver_ops *flow_drv_ops[] = {
50 [MLX5_FLOW_TYPE_MIN] = &mlx5_flow_null_drv_ops,
51 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
52 [MLX5_FLOW_TYPE_DV] = &mlx5_flow_dv_drv_ops,
54 [MLX5_FLOW_TYPE_VERBS] = &mlx5_flow_verbs_drv_ops,
55 [MLX5_FLOW_TYPE_MAX] = &mlx5_flow_null_drv_ops
60 MLX5_EXPANSION_ROOT_OUTER,
61 MLX5_EXPANSION_ROOT_ETH_VLAN,
62 MLX5_EXPANSION_ROOT_OUTER_ETH_VLAN,
63 MLX5_EXPANSION_OUTER_ETH,
64 MLX5_EXPANSION_OUTER_ETH_VLAN,
65 MLX5_EXPANSION_OUTER_VLAN,
66 MLX5_EXPANSION_OUTER_IPV4,
67 MLX5_EXPANSION_OUTER_IPV4_UDP,
68 MLX5_EXPANSION_OUTER_IPV4_TCP,
69 MLX5_EXPANSION_OUTER_IPV6,
70 MLX5_EXPANSION_OUTER_IPV6_UDP,
71 MLX5_EXPANSION_OUTER_IPV6_TCP,
73 MLX5_EXPANSION_VXLAN_GPE,
77 MLX5_EXPANSION_ETH_VLAN,
80 MLX5_EXPANSION_IPV4_UDP,
81 MLX5_EXPANSION_IPV4_TCP,
83 MLX5_EXPANSION_IPV6_UDP,
84 MLX5_EXPANSION_IPV6_TCP,
87 /** Supported expansion of items. */
88 static const struct rte_flow_expand_node mlx5_support_expansion[] = {
89 [MLX5_EXPANSION_ROOT] = {
90 .next = RTE_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_ETH,
93 .type = RTE_FLOW_ITEM_TYPE_END,
95 [MLX5_EXPANSION_ROOT_OUTER] = {
96 .next = RTE_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_OUTER_ETH,
97 MLX5_EXPANSION_OUTER_IPV4,
98 MLX5_EXPANSION_OUTER_IPV6),
99 .type = RTE_FLOW_ITEM_TYPE_END,
101 [MLX5_EXPANSION_ROOT_ETH_VLAN] = {
102 .next = RTE_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_ETH_VLAN),
103 .type = RTE_FLOW_ITEM_TYPE_END,
105 [MLX5_EXPANSION_ROOT_OUTER_ETH_VLAN] = {
106 .next = RTE_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_OUTER_ETH_VLAN),
107 .type = RTE_FLOW_ITEM_TYPE_END,
109 [MLX5_EXPANSION_OUTER_ETH] = {
110 .next = RTE_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_OUTER_IPV4,
111 MLX5_EXPANSION_OUTER_IPV6,
112 MLX5_EXPANSION_MPLS),
113 .type = RTE_FLOW_ITEM_TYPE_ETH,
116 [MLX5_EXPANSION_OUTER_ETH_VLAN] = {
117 .next = RTE_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_OUTER_VLAN),
118 .type = RTE_FLOW_ITEM_TYPE_ETH,
121 [MLX5_EXPANSION_OUTER_VLAN] = {
122 .next = RTE_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_OUTER_IPV4,
123 MLX5_EXPANSION_OUTER_IPV6),
124 .type = RTE_FLOW_ITEM_TYPE_VLAN,
126 [MLX5_EXPANSION_OUTER_IPV4] = {
127 .next = RTE_FLOW_EXPAND_RSS_NEXT
128 (MLX5_EXPANSION_OUTER_IPV4_UDP,
129 MLX5_EXPANSION_OUTER_IPV4_TCP,
132 MLX5_EXPANSION_IPV6),
133 .type = RTE_FLOW_ITEM_TYPE_IPV4,
134 .rss_types = ETH_RSS_IPV4 | ETH_RSS_FRAG_IPV4 |
135 ETH_RSS_NONFRAG_IPV4_OTHER,
137 [MLX5_EXPANSION_OUTER_IPV4_UDP] = {
138 .next = RTE_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_VXLAN,
139 MLX5_EXPANSION_VXLAN_GPE),
140 .type = RTE_FLOW_ITEM_TYPE_UDP,
141 .rss_types = ETH_RSS_NONFRAG_IPV4_UDP,
143 [MLX5_EXPANSION_OUTER_IPV4_TCP] = {
144 .type = RTE_FLOW_ITEM_TYPE_TCP,
145 .rss_types = ETH_RSS_NONFRAG_IPV4_TCP,
147 [MLX5_EXPANSION_OUTER_IPV6] = {
148 .next = RTE_FLOW_EXPAND_RSS_NEXT
149 (MLX5_EXPANSION_OUTER_IPV6_UDP,
150 MLX5_EXPANSION_OUTER_IPV6_TCP,
152 MLX5_EXPANSION_IPV6),
153 .type = RTE_FLOW_ITEM_TYPE_IPV6,
154 .rss_types = ETH_RSS_IPV6 | ETH_RSS_FRAG_IPV6 |
155 ETH_RSS_NONFRAG_IPV6_OTHER,
157 [MLX5_EXPANSION_OUTER_IPV6_UDP] = {
158 .next = RTE_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_VXLAN,
159 MLX5_EXPANSION_VXLAN_GPE),
160 .type = RTE_FLOW_ITEM_TYPE_UDP,
161 .rss_types = ETH_RSS_NONFRAG_IPV6_UDP,
163 [MLX5_EXPANSION_OUTER_IPV6_TCP] = {
164 .type = RTE_FLOW_ITEM_TYPE_TCP,
165 .rss_types = ETH_RSS_NONFRAG_IPV6_TCP,
167 [MLX5_EXPANSION_VXLAN] = {
168 .next = RTE_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_ETH),
169 .type = RTE_FLOW_ITEM_TYPE_VXLAN,
171 [MLX5_EXPANSION_VXLAN_GPE] = {
172 .next = RTE_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_ETH,
174 MLX5_EXPANSION_IPV6),
175 .type = RTE_FLOW_ITEM_TYPE_VXLAN_GPE,
177 [MLX5_EXPANSION_GRE] = {
178 .next = RTE_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_IPV4),
179 .type = RTE_FLOW_ITEM_TYPE_GRE,
181 [MLX5_EXPANSION_MPLS] = {
182 .next = RTE_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_IPV4,
183 MLX5_EXPANSION_IPV6),
184 .type = RTE_FLOW_ITEM_TYPE_MPLS,
186 [MLX5_EXPANSION_ETH] = {
187 .next = RTE_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_IPV4,
188 MLX5_EXPANSION_IPV6),
189 .type = RTE_FLOW_ITEM_TYPE_ETH,
191 [MLX5_EXPANSION_ETH_VLAN] = {
192 .next = RTE_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_VLAN),
193 .type = RTE_FLOW_ITEM_TYPE_ETH,
195 [MLX5_EXPANSION_VLAN] = {
196 .next = RTE_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_IPV4,
197 MLX5_EXPANSION_IPV6),
198 .type = RTE_FLOW_ITEM_TYPE_VLAN,
200 [MLX5_EXPANSION_IPV4] = {
201 .next = RTE_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_IPV4_UDP,
202 MLX5_EXPANSION_IPV4_TCP),
203 .type = RTE_FLOW_ITEM_TYPE_IPV4,
204 .rss_types = ETH_RSS_IPV4 | ETH_RSS_FRAG_IPV4 |
205 ETH_RSS_NONFRAG_IPV4_OTHER,
207 [MLX5_EXPANSION_IPV4_UDP] = {
208 .type = RTE_FLOW_ITEM_TYPE_UDP,
209 .rss_types = ETH_RSS_NONFRAG_IPV4_UDP,
211 [MLX5_EXPANSION_IPV4_TCP] = {
212 .type = RTE_FLOW_ITEM_TYPE_TCP,
213 .rss_types = ETH_RSS_NONFRAG_IPV4_TCP,
215 [MLX5_EXPANSION_IPV6] = {
216 .next = RTE_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_IPV6_UDP,
217 MLX5_EXPANSION_IPV6_TCP),
218 .type = RTE_FLOW_ITEM_TYPE_IPV6,
219 .rss_types = ETH_RSS_IPV6 | ETH_RSS_FRAG_IPV6 |
220 ETH_RSS_NONFRAG_IPV6_OTHER,
222 [MLX5_EXPANSION_IPV6_UDP] = {
223 .type = RTE_FLOW_ITEM_TYPE_UDP,
224 .rss_types = ETH_RSS_NONFRAG_IPV6_UDP,
226 [MLX5_EXPANSION_IPV6_TCP] = {
227 .type = RTE_FLOW_ITEM_TYPE_TCP,
228 .rss_types = ETH_RSS_NONFRAG_IPV6_TCP,
232 static const struct rte_flow_ops mlx5_flow_ops = {
233 .validate = mlx5_flow_validate,
234 .create = mlx5_flow_create,
235 .destroy = mlx5_flow_destroy,
236 .flush = mlx5_flow_flush,
237 .isolate = mlx5_flow_isolate,
238 .query = mlx5_flow_query,
241 /* Convert FDIR request to Generic flow. */
243 struct rte_flow_attr attr;
244 struct rte_flow_item items[4];
245 struct rte_flow_item_eth l2;
246 struct rte_flow_item_eth l2_mask;
248 struct rte_flow_item_ipv4 ipv4;
249 struct rte_flow_item_ipv6 ipv6;
252 struct rte_flow_item_ipv4 ipv4;
253 struct rte_flow_item_ipv6 ipv6;
256 struct rte_flow_item_udp udp;
257 struct rte_flow_item_tcp tcp;
260 struct rte_flow_item_udp udp;
261 struct rte_flow_item_tcp tcp;
263 struct rte_flow_action actions[2];
264 struct rte_flow_action_queue queue;
267 /* Map of Verbs to Flow priority with 8 Verbs priorities. */
268 static const uint32_t priority_map_3[][MLX5_PRIORITY_MAP_MAX] = {
269 { 0, 1, 2 }, { 2, 3, 4 }, { 5, 6, 7 },
272 /* Map of Verbs to Flow priority with 16 Verbs priorities. */
273 static const uint32_t priority_map_5[][MLX5_PRIORITY_MAP_MAX] = {
274 { 0, 1, 2 }, { 3, 4, 5 }, { 6, 7, 8 },
275 { 9, 10, 11 }, { 12, 13, 14 },
278 /* Tunnel information. */
279 struct mlx5_flow_tunnel_info {
280 uint64_t tunnel; /**< Tunnel bit (see MLX5_FLOW_*). */
281 uint32_t ptype; /**< Tunnel Ptype (see RTE_PTYPE_*). */
284 static struct mlx5_flow_tunnel_info tunnels_info[] = {
286 .tunnel = MLX5_FLOW_LAYER_VXLAN,
287 .ptype = RTE_PTYPE_TUNNEL_VXLAN | RTE_PTYPE_L4_UDP,
290 .tunnel = MLX5_FLOW_LAYER_VXLAN_GPE,
291 .ptype = RTE_PTYPE_TUNNEL_VXLAN_GPE | RTE_PTYPE_L4_UDP,
294 .tunnel = MLX5_FLOW_LAYER_GRE,
295 .ptype = RTE_PTYPE_TUNNEL_GRE,
298 .tunnel = MLX5_FLOW_LAYER_MPLS | MLX5_FLOW_LAYER_OUTER_L4_UDP,
299 .ptype = RTE_PTYPE_TUNNEL_MPLS_IN_UDP | RTE_PTYPE_L4_UDP,
302 .tunnel = MLX5_FLOW_LAYER_MPLS,
303 .ptype = RTE_PTYPE_TUNNEL_MPLS_IN_GRE,
306 .tunnel = MLX5_FLOW_LAYER_NVGRE,
307 .ptype = RTE_PTYPE_TUNNEL_NVGRE,
310 .tunnel = MLX5_FLOW_LAYER_IPIP,
311 .ptype = RTE_PTYPE_TUNNEL_IP,
314 .tunnel = MLX5_FLOW_LAYER_IPV6_ENCAP,
315 .ptype = RTE_PTYPE_TUNNEL_IP,
320 * Discover the maximum number of priority available.
323 * Pointer to the Ethernet device structure.
326 * number of supported flow priority on success, a negative errno
327 * value otherwise and rte_errno is set.
330 mlx5_flow_discover_priorities(struct rte_eth_dev *dev)
332 struct mlx5_priv *priv = dev->data->dev_private;
334 struct ibv_flow_attr attr;
335 struct ibv_flow_spec_eth eth;
336 struct ibv_flow_spec_action_drop drop;
340 .port = (uint8_t)priv->ibv_port,
343 .type = IBV_FLOW_SPEC_ETH,
344 .size = sizeof(struct ibv_flow_spec_eth),
347 .size = sizeof(struct ibv_flow_spec_action_drop),
348 .type = IBV_FLOW_SPEC_ACTION_DROP,
351 struct ibv_flow *flow;
352 struct mlx5_hrxq *drop = mlx5_hrxq_drop_new(dev);
353 uint16_t vprio[] = { 8, 16 };
361 for (i = 0; i != RTE_DIM(vprio); i++) {
362 flow_attr.attr.priority = vprio[i] - 1;
363 flow = mlx5_glue->create_flow(drop->qp, &flow_attr.attr);
366 claim_zero(mlx5_glue->destroy_flow(flow));
369 mlx5_hrxq_drop_release(dev);
372 priority = RTE_DIM(priority_map_3);
375 priority = RTE_DIM(priority_map_5);
380 "port %u verbs maximum priority: %d expected 8/16",
381 dev->data->port_id, priority);
384 DRV_LOG(INFO, "port %u flow maximum priority: %d",
385 dev->data->port_id, priority);
390 * Adjust flow priority based on the highest layer and the request priority.
393 * Pointer to the Ethernet device structure.
394 * @param[in] priority
395 * The rule base priority.
396 * @param[in] subpriority
397 * The priority based on the items.
402 uint32_t mlx5_flow_adjust_priority(struct rte_eth_dev *dev, int32_t priority,
403 uint32_t subpriority)
406 struct mlx5_priv *priv = dev->data->dev_private;
408 switch (priv->config.flow_prio) {
409 case RTE_DIM(priority_map_3):
410 res = priority_map_3[priority][subpriority];
412 case RTE_DIM(priority_map_5):
413 res = priority_map_5[priority][subpriority];
420 * Verify the @p item specifications (spec, last, mask) are compatible with the
424 * Item specification.
426 * @p item->mask or flow default bit-masks.
427 * @param[in] nic_mask
428 * Bit-masks covering supported fields by the NIC to compare with user mask.
430 * Bit-masks size in bytes.
432 * Pointer to error structure.
435 * 0 on success, a negative errno value otherwise and rte_errno is set.
438 mlx5_flow_item_acceptable(const struct rte_flow_item *item,
440 const uint8_t *nic_mask,
442 struct rte_flow_error *error)
447 for (i = 0; i < size; ++i)
448 if ((nic_mask[i] | mask[i]) != nic_mask[i])
449 return rte_flow_error_set(error, ENOTSUP,
450 RTE_FLOW_ERROR_TYPE_ITEM,
452 "mask enables non supported"
454 if (!item->spec && (item->mask || item->last))
455 return rte_flow_error_set(error, EINVAL,
456 RTE_FLOW_ERROR_TYPE_ITEM, item,
457 "mask/last without a spec is not"
459 if (item->spec && item->last) {
465 for (i = 0; i < size; ++i) {
466 spec[i] = ((const uint8_t *)item->spec)[i] & mask[i];
467 last[i] = ((const uint8_t *)item->last)[i] & mask[i];
469 ret = memcmp(spec, last, size);
471 return rte_flow_error_set(error, EINVAL,
472 RTE_FLOW_ERROR_TYPE_ITEM,
474 "range is not valid");
480 * Adjust the hash fields according to the @p flow information.
482 * @param[in] dev_flow.
483 * Pointer to the mlx5_flow.
485 * 1 when the hash field is for a tunnel item.
486 * @param[in] layer_types
488 * @param[in] hash_fields
492 * The hash fields that should be used.
495 mlx5_flow_hashfields_adjust(struct mlx5_flow *dev_flow,
496 int tunnel __rte_unused, uint64_t layer_types,
497 uint64_t hash_fields)
499 struct rte_flow *flow = dev_flow->flow;
500 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
501 int rss_request_inner = flow->rss.level >= 2;
503 /* Check RSS hash level for tunnel. */
504 if (tunnel && rss_request_inner)
505 hash_fields |= IBV_RX_HASH_INNER;
506 else if (tunnel || rss_request_inner)
509 /* Check if requested layer matches RSS hash fields. */
510 if (!(flow->rss.types & layer_types))
516 * Lookup and set the ptype in the data Rx part. A single Ptype can be used,
517 * if several tunnel rules are used on this queue, the tunnel ptype will be
521 * Rx queue to update.
524 flow_rxq_tunnel_ptype_update(struct mlx5_rxq_ctrl *rxq_ctrl)
527 uint32_t tunnel_ptype = 0;
529 /* Look up for the ptype to use. */
530 for (i = 0; i != MLX5_FLOW_TUNNEL; ++i) {
531 if (!rxq_ctrl->flow_tunnels_n[i])
534 tunnel_ptype = tunnels_info[i].ptype;
540 rxq_ctrl->rxq.tunnel = tunnel_ptype;
544 * Set the Rx queue flags (Mark/Flag and Tunnel Ptypes) according to the devive
548 * Pointer to the Ethernet device structure.
549 * @param[in] dev_flow
550 * Pointer to device flow structure.
553 flow_drv_rxq_flags_set(struct rte_eth_dev *dev, struct mlx5_flow *dev_flow)
555 struct mlx5_priv *priv = dev->data->dev_private;
556 struct rte_flow *flow = dev_flow->flow;
557 const int mark = !!(flow->actions &
558 (MLX5_FLOW_ACTION_FLAG | MLX5_FLOW_ACTION_MARK));
559 const int tunnel = !!(dev_flow->layers & MLX5_FLOW_LAYER_TUNNEL);
562 for (i = 0; i != flow->rss.queue_num; ++i) {
563 int idx = (*flow->queue)[i];
564 struct mlx5_rxq_ctrl *rxq_ctrl =
565 container_of((*priv->rxqs)[idx],
566 struct mlx5_rxq_ctrl, rxq);
569 rxq_ctrl->rxq.mark = 1;
570 rxq_ctrl->flow_mark_n++;
575 /* Increase the counter matching the flow. */
576 for (j = 0; j != MLX5_FLOW_TUNNEL; ++j) {
577 if ((tunnels_info[j].tunnel &
579 tunnels_info[j].tunnel) {
580 rxq_ctrl->flow_tunnels_n[j]++;
584 flow_rxq_tunnel_ptype_update(rxq_ctrl);
590 * Set the Rx queue flags (Mark/Flag and Tunnel Ptypes) for a flow
593 * Pointer to the Ethernet device structure.
595 * Pointer to flow structure.
598 flow_rxq_flags_set(struct rte_eth_dev *dev, struct rte_flow *flow)
600 struct mlx5_flow *dev_flow;
602 LIST_FOREACH(dev_flow, &flow->dev_flows, next)
603 flow_drv_rxq_flags_set(dev, dev_flow);
607 * Clear the Rx queue flags (Mark/Flag and Tunnel Ptype) associated with the
608 * device flow if no other flow uses it with the same kind of request.
611 * Pointer to Ethernet device.
612 * @param[in] dev_flow
613 * Pointer to the device flow.
616 flow_drv_rxq_flags_trim(struct rte_eth_dev *dev, struct mlx5_flow *dev_flow)
618 struct mlx5_priv *priv = dev->data->dev_private;
619 struct rte_flow *flow = dev_flow->flow;
620 const int mark = !!(flow->actions &
621 (MLX5_FLOW_ACTION_FLAG | MLX5_FLOW_ACTION_MARK));
622 const int tunnel = !!(dev_flow->layers & MLX5_FLOW_LAYER_TUNNEL);
625 assert(dev->data->dev_started);
626 for (i = 0; i != flow->rss.queue_num; ++i) {
627 int idx = (*flow->queue)[i];
628 struct mlx5_rxq_ctrl *rxq_ctrl =
629 container_of((*priv->rxqs)[idx],
630 struct mlx5_rxq_ctrl, rxq);
633 rxq_ctrl->flow_mark_n--;
634 rxq_ctrl->rxq.mark = !!rxq_ctrl->flow_mark_n;
639 /* Decrease the counter matching the flow. */
640 for (j = 0; j != MLX5_FLOW_TUNNEL; ++j) {
641 if ((tunnels_info[j].tunnel &
643 tunnels_info[j].tunnel) {
644 rxq_ctrl->flow_tunnels_n[j]--;
648 flow_rxq_tunnel_ptype_update(rxq_ctrl);
654 * Clear the Rx queue flags (Mark/Flag and Tunnel Ptype) associated with the
655 * @p flow if no other flow uses it with the same kind of request.
658 * Pointer to Ethernet device.
660 * Pointer to the flow.
663 flow_rxq_flags_trim(struct rte_eth_dev *dev, struct rte_flow *flow)
665 struct mlx5_flow *dev_flow;
667 LIST_FOREACH(dev_flow, &flow->dev_flows, next)
668 flow_drv_rxq_flags_trim(dev, dev_flow);
672 * Clear the Mark/Flag and Tunnel ptype information in all Rx queues.
675 * Pointer to Ethernet device.
678 flow_rxq_flags_clear(struct rte_eth_dev *dev)
680 struct mlx5_priv *priv = dev->data->dev_private;
683 for (i = 0; i != priv->rxqs_n; ++i) {
684 struct mlx5_rxq_ctrl *rxq_ctrl;
687 if (!(*priv->rxqs)[i])
689 rxq_ctrl = container_of((*priv->rxqs)[i],
690 struct mlx5_rxq_ctrl, rxq);
691 rxq_ctrl->flow_mark_n = 0;
692 rxq_ctrl->rxq.mark = 0;
693 for (j = 0; j != MLX5_FLOW_TUNNEL; ++j)
694 rxq_ctrl->flow_tunnels_n[j] = 0;
695 rxq_ctrl->rxq.tunnel = 0;
700 * return a pointer to the desired action in the list of actions.
703 * The list of actions to search the action in.
705 * The action to find.
708 * Pointer to the action in the list, if found. NULL otherwise.
710 const struct rte_flow_action *
711 mlx5_flow_find_action(const struct rte_flow_action *actions,
712 enum rte_flow_action_type action)
716 for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++)
717 if (actions->type == action)
723 * Validate the flag action.
725 * @param[in] action_flags
726 * Bit-fields that holds the actions detected until now.
728 * Attributes of flow that includes this action.
730 * Pointer to error structure.
733 * 0 on success, a negative errno value otherwise and rte_errno is set.
736 mlx5_flow_validate_action_flag(uint64_t action_flags,
737 const struct rte_flow_attr *attr,
738 struct rte_flow_error *error)
741 if (action_flags & MLX5_FLOW_ACTION_DROP)
742 return rte_flow_error_set(error, EINVAL,
743 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
744 "can't drop and flag in same flow");
745 if (action_flags & MLX5_FLOW_ACTION_MARK)
746 return rte_flow_error_set(error, EINVAL,
747 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
748 "can't mark and flag in same flow");
749 if (action_flags & MLX5_FLOW_ACTION_FLAG)
750 return rte_flow_error_set(error, EINVAL,
751 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
753 " actions in same flow");
755 return rte_flow_error_set(error, ENOTSUP,
756 RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, NULL,
757 "flag action not supported for "
763 * Validate the mark action.
766 * Pointer to the queue action.
767 * @param[in] action_flags
768 * Bit-fields that holds the actions detected until now.
770 * Attributes of flow that includes this action.
772 * Pointer to error structure.
775 * 0 on success, a negative errno value otherwise and rte_errno is set.
778 mlx5_flow_validate_action_mark(const struct rte_flow_action *action,
779 uint64_t action_flags,
780 const struct rte_flow_attr *attr,
781 struct rte_flow_error *error)
783 const struct rte_flow_action_mark *mark = action->conf;
786 return rte_flow_error_set(error, EINVAL,
787 RTE_FLOW_ERROR_TYPE_ACTION,
789 "configuration cannot be null");
790 if (mark->id >= MLX5_FLOW_MARK_MAX)
791 return rte_flow_error_set(error, EINVAL,
792 RTE_FLOW_ERROR_TYPE_ACTION_CONF,
794 "mark id must in 0 <= id < "
795 RTE_STR(MLX5_FLOW_MARK_MAX));
796 if (action_flags & MLX5_FLOW_ACTION_DROP)
797 return rte_flow_error_set(error, EINVAL,
798 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
799 "can't drop and mark in same flow");
800 if (action_flags & MLX5_FLOW_ACTION_FLAG)
801 return rte_flow_error_set(error, EINVAL,
802 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
803 "can't flag and mark in same flow");
804 if (action_flags & MLX5_FLOW_ACTION_MARK)
805 return rte_flow_error_set(error, EINVAL,
806 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
807 "can't have 2 mark actions in same"
810 return rte_flow_error_set(error, ENOTSUP,
811 RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, NULL,
812 "mark action not supported for "
818 * Validate the drop action.
820 * @param[in] action_flags
821 * Bit-fields that holds the actions detected until now.
823 * Attributes of flow that includes this action.
825 * Pointer to error structure.
828 * 0 on success, a negative errno value otherwise and rte_errno is set.
831 mlx5_flow_validate_action_drop(uint64_t action_flags,
832 const struct rte_flow_attr *attr,
833 struct rte_flow_error *error)
835 if (action_flags & MLX5_FLOW_ACTION_FLAG)
836 return rte_flow_error_set(error, EINVAL,
837 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
838 "can't drop and flag in same flow");
839 if (action_flags & MLX5_FLOW_ACTION_MARK)
840 return rte_flow_error_set(error, EINVAL,
841 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
842 "can't drop and mark in same flow");
843 if (action_flags & (MLX5_FLOW_FATE_ACTIONS |
844 MLX5_FLOW_FATE_ESWITCH_ACTIONS))
845 return rte_flow_error_set(error, EINVAL,
846 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
847 "can't have 2 fate actions in"
850 return rte_flow_error_set(error, ENOTSUP,
851 RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, NULL,
852 "drop action not supported for "
858 * Validate the queue action.
861 * Pointer to the queue action.
862 * @param[in] action_flags
863 * Bit-fields that holds the actions detected until now.
865 * Pointer to the Ethernet device structure.
867 * Attributes of flow that includes this action.
869 * Pointer to error structure.
872 * 0 on success, a negative errno value otherwise and rte_errno is set.
875 mlx5_flow_validate_action_queue(const struct rte_flow_action *action,
876 uint64_t action_flags,
877 struct rte_eth_dev *dev,
878 const struct rte_flow_attr *attr,
879 struct rte_flow_error *error)
881 struct mlx5_priv *priv = dev->data->dev_private;
882 const struct rte_flow_action_queue *queue = action->conf;
884 if (action_flags & MLX5_FLOW_FATE_ACTIONS)
885 return rte_flow_error_set(error, EINVAL,
886 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
887 "can't have 2 fate actions in"
890 return rte_flow_error_set(error, EINVAL,
891 RTE_FLOW_ERROR_TYPE_ACTION_CONF,
892 NULL, "No Rx queues configured");
893 if (queue->index >= priv->rxqs_n)
894 return rte_flow_error_set(error, EINVAL,
895 RTE_FLOW_ERROR_TYPE_ACTION_CONF,
897 "queue index out of range");
898 if (!(*priv->rxqs)[queue->index])
899 return rte_flow_error_set(error, EINVAL,
900 RTE_FLOW_ERROR_TYPE_ACTION_CONF,
902 "queue is not configured");
904 return rte_flow_error_set(error, ENOTSUP,
905 RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, NULL,
906 "queue action not supported for "
912 * Validate the rss action.
915 * Pointer to the queue action.
916 * @param[in] action_flags
917 * Bit-fields that holds the actions detected until now.
919 * Pointer to the Ethernet device structure.
921 * Attributes of flow that includes this action.
922 * @param[in] item_flags
923 * Items that were detected.
925 * Pointer to error structure.
928 * 0 on success, a negative errno value otherwise and rte_errno is set.
931 mlx5_flow_validate_action_rss(const struct rte_flow_action *action,
932 uint64_t action_flags,
933 struct rte_eth_dev *dev,
934 const struct rte_flow_attr *attr,
936 struct rte_flow_error *error)
938 struct mlx5_priv *priv = dev->data->dev_private;
939 const struct rte_flow_action_rss *rss = action->conf;
940 int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
943 if (action_flags & MLX5_FLOW_FATE_ACTIONS)
944 return rte_flow_error_set(error, EINVAL,
945 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
946 "can't have 2 fate actions"
948 if (rss->func != RTE_ETH_HASH_FUNCTION_DEFAULT &&
949 rss->func != RTE_ETH_HASH_FUNCTION_TOEPLITZ)
950 return rte_flow_error_set(error, ENOTSUP,
951 RTE_FLOW_ERROR_TYPE_ACTION_CONF,
953 "RSS hash function not supported");
954 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
959 return rte_flow_error_set(error, ENOTSUP,
960 RTE_FLOW_ERROR_TYPE_ACTION_CONF,
962 "tunnel RSS is not supported");
963 /* allow RSS key_len 0 in case of NULL (default) RSS key. */
964 if (rss->key_len == 0 && rss->key != NULL)
965 return rte_flow_error_set(error, ENOTSUP,
966 RTE_FLOW_ERROR_TYPE_ACTION_CONF,
968 "RSS hash key length 0");
969 if (rss->key_len > 0 && rss->key_len < MLX5_RSS_HASH_KEY_LEN)
970 return rte_flow_error_set(error, ENOTSUP,
971 RTE_FLOW_ERROR_TYPE_ACTION_CONF,
973 "RSS hash key too small");
974 if (rss->key_len > MLX5_RSS_HASH_KEY_LEN)
975 return rte_flow_error_set(error, ENOTSUP,
976 RTE_FLOW_ERROR_TYPE_ACTION_CONF,
978 "RSS hash key too large");
979 if (rss->queue_num > priv->config.ind_table_max_size)
980 return rte_flow_error_set(error, ENOTSUP,
981 RTE_FLOW_ERROR_TYPE_ACTION_CONF,
983 "number of queues too large");
984 if (rss->types & MLX5_RSS_HF_MASK)
985 return rte_flow_error_set(error, ENOTSUP,
986 RTE_FLOW_ERROR_TYPE_ACTION_CONF,
988 "some RSS protocols are not"
991 return rte_flow_error_set(error, EINVAL,
992 RTE_FLOW_ERROR_TYPE_ACTION_CONF,
993 NULL, "No Rx queues configured");
995 return rte_flow_error_set(error, EINVAL,
996 RTE_FLOW_ERROR_TYPE_ACTION_CONF,
997 NULL, "No queues configured");
998 for (i = 0; i != rss->queue_num; ++i) {
999 if (!(*priv->rxqs)[rss->queue[i]])
1000 return rte_flow_error_set
1001 (error, EINVAL, RTE_FLOW_ERROR_TYPE_ACTION_CONF,
1002 &rss->queue[i], "queue is not configured");
1005 return rte_flow_error_set(error, ENOTSUP,
1006 RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, NULL,
1007 "rss action not supported for "
1009 if (rss->level > 1 && !tunnel)
1010 return rte_flow_error_set(error, EINVAL,
1011 RTE_FLOW_ERROR_TYPE_ACTION_CONF, NULL,
1012 "inner RSS is not supported for "
1013 "non-tunnel flows");
1018 * Validate the count action.
1021 * Pointer to the Ethernet device structure.
1023 * Attributes of flow that includes this action.
1025 * Pointer to error structure.
1028 * 0 on success, a negative errno value otherwise and rte_errno is set.
1031 mlx5_flow_validate_action_count(struct rte_eth_dev *dev __rte_unused,
1032 const struct rte_flow_attr *attr,
1033 struct rte_flow_error *error)
1036 return rte_flow_error_set(error, ENOTSUP,
1037 RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, NULL,
1038 "count action not supported for "
1044 * Verify the @p attributes will be correctly understood by the NIC and store
1045 * them in the @p flow if everything is correct.
1048 * Pointer to the Ethernet device structure.
1049 * @param[in] attributes
1050 * Pointer to flow attributes
1052 * Pointer to error structure.
1055 * 0 on success, a negative errno value otherwise and rte_errno is set.
1058 mlx5_flow_validate_attributes(struct rte_eth_dev *dev,
1059 const struct rte_flow_attr *attributes,
1060 struct rte_flow_error *error)
1062 struct mlx5_priv *priv = dev->data->dev_private;
1063 uint32_t priority_max = priv->config.flow_prio - 1;
1065 if (attributes->group)
1066 return rte_flow_error_set(error, ENOTSUP,
1067 RTE_FLOW_ERROR_TYPE_ATTR_GROUP,
1068 NULL, "groups is not supported");
1069 if (attributes->priority != MLX5_FLOW_PRIO_RSVD &&
1070 attributes->priority >= priority_max)
1071 return rte_flow_error_set(error, ENOTSUP,
1072 RTE_FLOW_ERROR_TYPE_ATTR_PRIORITY,
1073 NULL, "priority out of range");
1074 if (attributes->egress)
1075 return rte_flow_error_set(error, ENOTSUP,
1076 RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, NULL,
1077 "egress is not supported");
1078 if (attributes->transfer && !priv->config.dv_esw_en)
1079 return rte_flow_error_set(error, ENOTSUP,
1080 RTE_FLOW_ERROR_TYPE_ATTR_TRANSFER,
1081 NULL, "transfer is not supported");
1082 if (!attributes->ingress)
1083 return rte_flow_error_set(error, EINVAL,
1084 RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,
1086 "ingress attribute is mandatory");
1091 * Validate ICMP6 item.
1094 * Item specification.
1095 * @param[in] item_flags
1096 * Bit-fields that holds the items detected until now.
1098 * Pointer to error structure.
1101 * 0 on success, a negative errno value otherwise and rte_errno is set.
1104 mlx5_flow_validate_item_icmp6(const struct rte_flow_item *item,
1105 uint64_t item_flags,
1106 uint8_t target_protocol,
1107 struct rte_flow_error *error)
1109 const struct rte_flow_item_icmp6 *mask = item->mask;
1110 const int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
1111 const uint64_t l3m = tunnel ? MLX5_FLOW_LAYER_INNER_L3_IPV6 :
1112 MLX5_FLOW_LAYER_OUTER_L3_IPV6;
1113 const uint64_t l4m = tunnel ? MLX5_FLOW_LAYER_INNER_L4 :
1114 MLX5_FLOW_LAYER_OUTER_L4;
1117 if (target_protocol != 0xFF && target_protocol != IPPROTO_ICMPV6)
1118 return rte_flow_error_set(error, EINVAL,
1119 RTE_FLOW_ERROR_TYPE_ITEM, item,
1120 "protocol filtering not compatible"
1121 " with ICMP6 layer");
1122 if (!(item_flags & l3m))
1123 return rte_flow_error_set(error, EINVAL,
1124 RTE_FLOW_ERROR_TYPE_ITEM, item,
1125 "IPv6 is mandatory to filter on"
1127 if (item_flags & l4m)
1128 return rte_flow_error_set(error, EINVAL,
1129 RTE_FLOW_ERROR_TYPE_ITEM, item,
1130 "multiple L4 layers not supported");
1132 mask = &rte_flow_item_icmp6_mask;
1133 ret = mlx5_flow_item_acceptable
1134 (item, (const uint8_t *)mask,
1135 (const uint8_t *)&rte_flow_item_icmp6_mask,
1136 sizeof(struct rte_flow_item_icmp6), error);
1143 * Validate ICMP item.
1146 * Item specification.
1147 * @param[in] item_flags
1148 * Bit-fields that holds the items detected until now.
1150 * Pointer to error structure.
1153 * 0 on success, a negative errno value otherwise and rte_errno is set.
1156 mlx5_flow_validate_item_icmp(const struct rte_flow_item *item,
1157 uint64_t item_flags,
1158 uint8_t target_protocol,
1159 struct rte_flow_error *error)
1161 const struct rte_flow_item_icmp *mask = item->mask;
1162 const int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
1163 const uint64_t l3m = tunnel ? MLX5_FLOW_LAYER_INNER_L3_IPV4 :
1164 MLX5_FLOW_LAYER_OUTER_L3_IPV4;
1165 const uint64_t l4m = tunnel ? MLX5_FLOW_LAYER_INNER_L4 :
1166 MLX5_FLOW_LAYER_OUTER_L4;
1169 if (target_protocol != 0xFF && target_protocol != IPPROTO_ICMP)
1170 return rte_flow_error_set(error, EINVAL,
1171 RTE_FLOW_ERROR_TYPE_ITEM, item,
1172 "protocol filtering not compatible"
1173 " with ICMP layer");
1174 if (!(item_flags & l3m))
1175 return rte_flow_error_set(error, EINVAL,
1176 RTE_FLOW_ERROR_TYPE_ITEM, item,
1177 "IPv4 is mandatory to filter"
1179 if (item_flags & l4m)
1180 return rte_flow_error_set(error, EINVAL,
1181 RTE_FLOW_ERROR_TYPE_ITEM, item,
1182 "multiple L4 layers not supported");
1184 mask = &rte_flow_item_icmp_mask;
1185 ret = mlx5_flow_item_acceptable
1186 (item, (const uint8_t *)mask,
1187 (const uint8_t *)&rte_flow_item_icmp_mask,
1188 sizeof(struct rte_flow_item_icmp), error);
1195 * Validate Ethernet item.
1198 * Item specification.
1199 * @param[in] item_flags
1200 * Bit-fields that holds the items detected until now.
1202 * Pointer to error structure.
1205 * 0 on success, a negative errno value otherwise and rte_errno is set.
1208 mlx5_flow_validate_item_eth(const struct rte_flow_item *item,
1209 uint64_t item_flags,
1210 struct rte_flow_error *error)
1212 const struct rte_flow_item_eth *mask = item->mask;
1213 const struct rte_flow_item_eth nic_mask = {
1214 .dst.addr_bytes = "\xff\xff\xff\xff\xff\xff",
1215 .src.addr_bytes = "\xff\xff\xff\xff\xff\xff",
1216 .type = RTE_BE16(0xffff),
1219 int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
1220 const uint64_t ethm = tunnel ? MLX5_FLOW_LAYER_INNER_L2 :
1221 MLX5_FLOW_LAYER_OUTER_L2;
1223 if (item_flags & ethm)
1224 return rte_flow_error_set(error, ENOTSUP,
1225 RTE_FLOW_ERROR_TYPE_ITEM, item,
1226 "multiple L2 layers not supported");
1228 mask = &rte_flow_item_eth_mask;
1229 ret = mlx5_flow_item_acceptable(item, (const uint8_t *)mask,
1230 (const uint8_t *)&nic_mask,
1231 sizeof(struct rte_flow_item_eth),
1237 * Validate VLAN item.
1240 * Item specification.
1241 * @param[in] item_flags
1242 * Bit-fields that holds the items detected until now.
1244 * Ethernet device flow is being created on.
1246 * Pointer to error structure.
1249 * 0 on success, a negative errno value otherwise and rte_errno is set.
1252 mlx5_flow_validate_item_vlan(const struct rte_flow_item *item,
1253 uint64_t item_flags,
1254 struct rte_eth_dev *dev,
1255 struct rte_flow_error *error)
1257 const struct rte_flow_item_vlan *spec = item->spec;
1258 const struct rte_flow_item_vlan *mask = item->mask;
1259 const struct rte_flow_item_vlan nic_mask = {
1260 .tci = RTE_BE16(UINT16_MAX),
1261 .inner_type = RTE_BE16(UINT16_MAX),
1263 uint16_t vlan_tag = 0;
1264 const int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
1266 const uint64_t l34m = tunnel ? (MLX5_FLOW_LAYER_INNER_L3 |
1267 MLX5_FLOW_LAYER_INNER_L4) :
1268 (MLX5_FLOW_LAYER_OUTER_L3 |
1269 MLX5_FLOW_LAYER_OUTER_L4);
1270 const uint64_t vlanm = tunnel ? MLX5_FLOW_LAYER_INNER_VLAN :
1271 MLX5_FLOW_LAYER_OUTER_VLAN;
1273 if (item_flags & vlanm)
1274 return rte_flow_error_set(error, EINVAL,
1275 RTE_FLOW_ERROR_TYPE_ITEM, item,
1276 "multiple VLAN layers not supported");
1277 else if ((item_flags & l34m) != 0)
1278 return rte_flow_error_set(error, EINVAL,
1279 RTE_FLOW_ERROR_TYPE_ITEM, item,
1280 "L2 layer cannot follow L3/L4 layer");
1282 mask = &rte_flow_item_vlan_mask;
1283 ret = mlx5_flow_item_acceptable(item, (const uint8_t *)mask,
1284 (const uint8_t *)&nic_mask,
1285 sizeof(struct rte_flow_item_vlan),
1289 if (!tunnel && mask->tci != RTE_BE16(0x0fff)) {
1290 struct mlx5_priv *priv = dev->data->dev_private;
1292 if (priv->vmwa_context) {
1294 * Non-NULL context means we have a virtual machine
1295 * and SR-IOV enabled, we have to create VLAN interface
1296 * to make hypervisor to setup E-Switch vport
1297 * context correctly. We avoid creating the multiple
1298 * VLAN interfaces, so we cannot support VLAN tag mask.
1300 return rte_flow_error_set(error, EINVAL,
1301 RTE_FLOW_ERROR_TYPE_ITEM,
1303 "VLAN tag mask is not"
1304 " supported in virtual"
1309 vlan_tag = spec->tci;
1310 vlan_tag &= mask->tci;
1313 * From verbs perspective an empty VLAN is equivalent
1314 * to a packet without VLAN layer.
1317 return rte_flow_error_set(error, EINVAL,
1318 RTE_FLOW_ERROR_TYPE_ITEM_SPEC,
1320 "VLAN cannot be empty");
1325 * Validate IPV4 item.
1328 * Item specification.
1329 * @param[in] item_flags
1330 * Bit-fields that holds the items detected until now.
1331 * @param[in] acc_mask
1332 * Acceptable mask, if NULL default internal default mask
1333 * will be used to check whether item fields are supported.
1335 * Pointer to error structure.
1338 * 0 on success, a negative errno value otherwise and rte_errno is set.
1341 mlx5_flow_validate_item_ipv4(const struct rte_flow_item *item,
1342 uint64_t item_flags,
1343 const struct rte_flow_item_ipv4 *acc_mask,
1344 struct rte_flow_error *error)
1346 const struct rte_flow_item_ipv4 *mask = item->mask;
1347 const struct rte_flow_item_ipv4 *spec = item->spec;
1348 const struct rte_flow_item_ipv4 nic_mask = {
1350 .src_addr = RTE_BE32(0xffffffff),
1351 .dst_addr = RTE_BE32(0xffffffff),
1352 .type_of_service = 0xff,
1353 .next_proto_id = 0xff,
1356 const int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
1357 const uint64_t l3m = tunnel ? MLX5_FLOW_LAYER_INNER_L3 :
1358 MLX5_FLOW_LAYER_OUTER_L3;
1359 const uint64_t l4m = tunnel ? MLX5_FLOW_LAYER_INNER_L4 :
1360 MLX5_FLOW_LAYER_OUTER_L4;
1362 uint8_t next_proto = 0xFF;
1364 if (item_flags & MLX5_FLOW_LAYER_IPIP) {
1366 next_proto = mask->hdr.next_proto_id &
1367 spec->hdr.next_proto_id;
1368 if (next_proto == IPPROTO_IPIP || next_proto == IPPROTO_IPV6)
1369 return rte_flow_error_set(error, EINVAL,
1370 RTE_FLOW_ERROR_TYPE_ITEM,
1375 if (item_flags & MLX5_FLOW_LAYER_IPV6_ENCAP)
1376 return rte_flow_error_set(error, EINVAL,
1377 RTE_FLOW_ERROR_TYPE_ITEM, item,
1378 "wrong tunnel type - IPv6 specified "
1379 "but IPv4 item provided");
1380 if (item_flags & l3m)
1381 return rte_flow_error_set(error, ENOTSUP,
1382 RTE_FLOW_ERROR_TYPE_ITEM, item,
1383 "multiple L3 layers not supported");
1384 else if (item_flags & l4m)
1385 return rte_flow_error_set(error, EINVAL,
1386 RTE_FLOW_ERROR_TYPE_ITEM, item,
1387 "L3 cannot follow an L4 layer.");
1388 else if ((item_flags & MLX5_FLOW_LAYER_NVGRE) &&
1389 !(item_flags & MLX5_FLOW_LAYER_INNER_L2))
1390 return rte_flow_error_set(error, EINVAL,
1391 RTE_FLOW_ERROR_TYPE_ITEM, item,
1392 "L3 cannot follow an NVGRE layer.");
1394 mask = &rte_flow_item_ipv4_mask;
1395 else if (mask->hdr.next_proto_id != 0 &&
1396 mask->hdr.next_proto_id != 0xff)
1397 return rte_flow_error_set(error, EINVAL,
1398 RTE_FLOW_ERROR_TYPE_ITEM_MASK, mask,
1399 "partial mask is not supported"
1401 ret = mlx5_flow_item_acceptable(item, (const uint8_t *)mask,
1402 acc_mask ? (const uint8_t *)acc_mask
1403 : (const uint8_t *)&nic_mask,
1404 sizeof(struct rte_flow_item_ipv4),
1412 * Validate IPV6 item.
1415 * Item specification.
1416 * @param[in] item_flags
1417 * Bit-fields that holds the items detected until now.
1418 * @param[in] acc_mask
1419 * Acceptable mask, if NULL default internal default mask
1420 * will be used to check whether item fields are supported.
1422 * Pointer to error structure.
1425 * 0 on success, a negative errno value otherwise and rte_errno is set.
1428 mlx5_flow_validate_item_ipv6(const struct rte_flow_item *item,
1429 uint64_t item_flags,
1430 const struct rte_flow_item_ipv6 *acc_mask,
1431 struct rte_flow_error *error)
1433 const struct rte_flow_item_ipv6 *mask = item->mask;
1434 const struct rte_flow_item_ipv6 *spec = item->spec;
1435 const struct rte_flow_item_ipv6 nic_mask = {
1438 "\xff\xff\xff\xff\xff\xff\xff\xff"
1439 "\xff\xff\xff\xff\xff\xff\xff\xff",
1441 "\xff\xff\xff\xff\xff\xff\xff\xff"
1442 "\xff\xff\xff\xff\xff\xff\xff\xff",
1443 .vtc_flow = RTE_BE32(0xffffffff),
1448 const int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
1449 const uint64_t l3m = tunnel ? MLX5_FLOW_LAYER_INNER_L3 :
1450 MLX5_FLOW_LAYER_OUTER_L3;
1451 const uint64_t l4m = tunnel ? MLX5_FLOW_LAYER_INNER_L4 :
1452 MLX5_FLOW_LAYER_OUTER_L4;
1454 uint8_t next_proto = 0xFF;
1456 if (item_flags & MLX5_FLOW_LAYER_IPV6_ENCAP) {
1458 next_proto = mask->hdr.proto & spec->hdr.proto;
1459 if (next_proto == IPPROTO_IPIP || next_proto == IPPROTO_IPV6)
1460 return rte_flow_error_set(error, EINVAL,
1461 RTE_FLOW_ERROR_TYPE_ITEM,
1466 if (item_flags & MLX5_FLOW_LAYER_IPIP)
1467 return rte_flow_error_set(error, EINVAL,
1468 RTE_FLOW_ERROR_TYPE_ITEM, item,
1469 "wrong tunnel type - IPv4 specified "
1470 "but IPv6 item provided");
1471 if (item_flags & l3m)
1472 return rte_flow_error_set(error, ENOTSUP,
1473 RTE_FLOW_ERROR_TYPE_ITEM, item,
1474 "multiple L3 layers not supported");
1475 else if (item_flags & l4m)
1476 return rte_flow_error_set(error, EINVAL,
1477 RTE_FLOW_ERROR_TYPE_ITEM, item,
1478 "L3 cannot follow an L4 layer.");
1479 else if ((item_flags & MLX5_FLOW_LAYER_NVGRE) &&
1480 !(item_flags & MLX5_FLOW_LAYER_INNER_L2))
1481 return rte_flow_error_set(error, EINVAL,
1482 RTE_FLOW_ERROR_TYPE_ITEM, item,
1483 "L3 cannot follow an NVGRE layer.");
1485 mask = &rte_flow_item_ipv6_mask;
1486 ret = mlx5_flow_item_acceptable(item, (const uint8_t *)mask,
1487 acc_mask ? (const uint8_t *)acc_mask
1488 : (const uint8_t *)&nic_mask,
1489 sizeof(struct rte_flow_item_ipv6),
1497 * Validate UDP item.
1500 * Item specification.
1501 * @param[in] item_flags
1502 * Bit-fields that holds the items detected until now.
1503 * @param[in] target_protocol
1504 * The next protocol in the previous item.
1505 * @param[in] flow_mask
1506 * mlx5 flow-specific (DV, verbs, etc.) supported header fields mask.
1508 * Pointer to error structure.
1511 * 0 on success, a negative errno value otherwise and rte_errno is set.
1514 mlx5_flow_validate_item_udp(const struct rte_flow_item *item,
1515 uint64_t item_flags,
1516 uint8_t target_protocol,
1517 struct rte_flow_error *error)
1519 const struct rte_flow_item_udp *mask = item->mask;
1520 const int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
1521 const uint64_t l3m = tunnel ? MLX5_FLOW_LAYER_INNER_L3 :
1522 MLX5_FLOW_LAYER_OUTER_L3;
1523 const uint64_t l4m = tunnel ? MLX5_FLOW_LAYER_INNER_L4 :
1524 MLX5_FLOW_LAYER_OUTER_L4;
1527 if (target_protocol != 0xff && target_protocol != IPPROTO_UDP)
1528 return rte_flow_error_set(error, EINVAL,
1529 RTE_FLOW_ERROR_TYPE_ITEM, item,
1530 "protocol filtering not compatible"
1532 if (!(item_flags & l3m))
1533 return rte_flow_error_set(error, EINVAL,
1534 RTE_FLOW_ERROR_TYPE_ITEM, item,
1535 "L3 is mandatory to filter on L4");
1536 if (item_flags & l4m)
1537 return rte_flow_error_set(error, EINVAL,
1538 RTE_FLOW_ERROR_TYPE_ITEM, item,
1539 "multiple L4 layers not supported");
1541 mask = &rte_flow_item_udp_mask;
1542 ret = mlx5_flow_item_acceptable
1543 (item, (const uint8_t *)mask,
1544 (const uint8_t *)&rte_flow_item_udp_mask,
1545 sizeof(struct rte_flow_item_udp), error);
1552 * Validate TCP item.
1555 * Item specification.
1556 * @param[in] item_flags
1557 * Bit-fields that holds the items detected until now.
1558 * @param[in] target_protocol
1559 * The next protocol in the previous item.
1561 * Pointer to error structure.
1564 * 0 on success, a negative errno value otherwise and rte_errno is set.
1567 mlx5_flow_validate_item_tcp(const struct rte_flow_item *item,
1568 uint64_t item_flags,
1569 uint8_t target_protocol,
1570 const struct rte_flow_item_tcp *flow_mask,
1571 struct rte_flow_error *error)
1573 const struct rte_flow_item_tcp *mask = item->mask;
1574 const int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
1575 const uint64_t l3m = tunnel ? MLX5_FLOW_LAYER_INNER_L3 :
1576 MLX5_FLOW_LAYER_OUTER_L3;
1577 const uint64_t l4m = tunnel ? MLX5_FLOW_LAYER_INNER_L4 :
1578 MLX5_FLOW_LAYER_OUTER_L4;
1582 if (target_protocol != 0xff && target_protocol != IPPROTO_TCP)
1583 return rte_flow_error_set(error, EINVAL,
1584 RTE_FLOW_ERROR_TYPE_ITEM, item,
1585 "protocol filtering not compatible"
1587 if (!(item_flags & l3m))
1588 return rte_flow_error_set(error, EINVAL,
1589 RTE_FLOW_ERROR_TYPE_ITEM, item,
1590 "L3 is mandatory to filter on L4");
1591 if (item_flags & l4m)
1592 return rte_flow_error_set(error, EINVAL,
1593 RTE_FLOW_ERROR_TYPE_ITEM, item,
1594 "multiple L4 layers not supported");
1596 mask = &rte_flow_item_tcp_mask;
1597 ret = mlx5_flow_item_acceptable
1598 (item, (const uint8_t *)mask,
1599 (const uint8_t *)flow_mask,
1600 sizeof(struct rte_flow_item_tcp), error);
1607 * Validate VXLAN item.
1610 * Item specification.
1611 * @param[in] item_flags
1612 * Bit-fields that holds the items detected until now.
1613 * @param[in] target_protocol
1614 * The next protocol in the previous item.
1616 * Pointer to error structure.
1619 * 0 on success, a negative errno value otherwise and rte_errno is set.
1622 mlx5_flow_validate_item_vxlan(const struct rte_flow_item *item,
1623 uint64_t item_flags,
1624 struct rte_flow_error *error)
1626 const struct rte_flow_item_vxlan *spec = item->spec;
1627 const struct rte_flow_item_vxlan *mask = item->mask;
1632 } id = { .vlan_id = 0, };
1633 uint32_t vlan_id = 0;
1636 if (item_flags & MLX5_FLOW_LAYER_TUNNEL)
1637 return rte_flow_error_set(error, ENOTSUP,
1638 RTE_FLOW_ERROR_TYPE_ITEM, item,
1639 "multiple tunnel layers not"
1642 * Verify only UDPv4 is present as defined in
1643 * https://tools.ietf.org/html/rfc7348
1645 if (!(item_flags & MLX5_FLOW_LAYER_OUTER_L4_UDP))
1646 return rte_flow_error_set(error, EINVAL,
1647 RTE_FLOW_ERROR_TYPE_ITEM, item,
1648 "no outer UDP layer found");
1650 mask = &rte_flow_item_vxlan_mask;
1651 ret = mlx5_flow_item_acceptable
1652 (item, (const uint8_t *)mask,
1653 (const uint8_t *)&rte_flow_item_vxlan_mask,
1654 sizeof(struct rte_flow_item_vxlan),
1659 memcpy(&id.vni[1], spec->vni, 3);
1660 vlan_id = id.vlan_id;
1661 memcpy(&id.vni[1], mask->vni, 3);
1662 vlan_id &= id.vlan_id;
1665 * Tunnel id 0 is equivalent as not adding a VXLAN layer, if
1666 * only this layer is defined in the Verbs specification it is
1667 * interpreted as wildcard and all packets will match this
1668 * rule, if it follows a full stack layer (ex: eth / ipv4 /
1669 * udp), all packets matching the layers before will also
1670 * match this rule. To avoid such situation, VNI 0 is
1671 * currently refused.
1674 return rte_flow_error_set(error, ENOTSUP,
1675 RTE_FLOW_ERROR_TYPE_ITEM, item,
1676 "VXLAN vni cannot be 0");
1677 if (!(item_flags & MLX5_FLOW_LAYER_OUTER))
1678 return rte_flow_error_set(error, ENOTSUP,
1679 RTE_FLOW_ERROR_TYPE_ITEM, item,
1680 "VXLAN tunnel must be fully defined");
1685 * Validate VXLAN_GPE item.
1688 * Item specification.
1689 * @param[in] item_flags
1690 * Bit-fields that holds the items detected until now.
1692 * Pointer to the private data structure.
1693 * @param[in] target_protocol
1694 * The next protocol in the previous item.
1696 * Pointer to error structure.
1699 * 0 on success, a negative errno value otherwise and rte_errno is set.
1702 mlx5_flow_validate_item_vxlan_gpe(const struct rte_flow_item *item,
1703 uint64_t item_flags,
1704 struct rte_eth_dev *dev,
1705 struct rte_flow_error *error)
1707 struct mlx5_priv *priv = dev->data->dev_private;
1708 const struct rte_flow_item_vxlan_gpe *spec = item->spec;
1709 const struct rte_flow_item_vxlan_gpe *mask = item->mask;
1714 } id = { .vlan_id = 0, };
1715 uint32_t vlan_id = 0;
1717 if (!priv->config.l3_vxlan_en)
1718 return rte_flow_error_set(error, ENOTSUP,
1719 RTE_FLOW_ERROR_TYPE_ITEM, item,
1720 "L3 VXLAN is not enabled by device"
1721 " parameter and/or not configured in"
1723 if (item_flags & MLX5_FLOW_LAYER_TUNNEL)
1724 return rte_flow_error_set(error, ENOTSUP,
1725 RTE_FLOW_ERROR_TYPE_ITEM, item,
1726 "multiple tunnel layers not"
1729 * Verify only UDPv4 is present as defined in
1730 * https://tools.ietf.org/html/rfc7348
1732 if (!(item_flags & MLX5_FLOW_LAYER_OUTER_L4_UDP))
1733 return rte_flow_error_set(error, EINVAL,
1734 RTE_FLOW_ERROR_TYPE_ITEM, item,
1735 "no outer UDP layer found");
1737 mask = &rte_flow_item_vxlan_gpe_mask;
1738 ret = mlx5_flow_item_acceptable
1739 (item, (const uint8_t *)mask,
1740 (const uint8_t *)&rte_flow_item_vxlan_gpe_mask,
1741 sizeof(struct rte_flow_item_vxlan_gpe),
1747 return rte_flow_error_set(error, ENOTSUP,
1748 RTE_FLOW_ERROR_TYPE_ITEM,
1750 "VxLAN-GPE protocol"
1752 memcpy(&id.vni[1], spec->vni, 3);
1753 vlan_id = id.vlan_id;
1754 memcpy(&id.vni[1], mask->vni, 3);
1755 vlan_id &= id.vlan_id;
1758 * Tunnel id 0 is equivalent as not adding a VXLAN layer, if only this
1759 * layer is defined in the Verbs specification it is interpreted as
1760 * wildcard and all packets will match this rule, if it follows a full
1761 * stack layer (ex: eth / ipv4 / udp), all packets matching the layers
1762 * before will also match this rule. To avoid such situation, VNI 0
1763 * is currently refused.
1766 return rte_flow_error_set(error, ENOTSUP,
1767 RTE_FLOW_ERROR_TYPE_ITEM, item,
1768 "VXLAN-GPE vni cannot be 0");
1769 if (!(item_flags & MLX5_FLOW_LAYER_OUTER))
1770 return rte_flow_error_set(error, ENOTSUP,
1771 RTE_FLOW_ERROR_TYPE_ITEM, item,
1772 "VXLAN-GPE tunnel must be fully"
1777 * Validate GRE Key item.
1780 * Item specification.
1781 * @param[in] item_flags
1782 * Bit flags to mark detected items.
1783 * @param[in] gre_item
1784 * Pointer to gre_item
1786 * Pointer to error structure.
1789 * 0 on success, a negative errno value otherwise and rte_errno is set.
1792 mlx5_flow_validate_item_gre_key(const struct rte_flow_item *item,
1793 uint64_t item_flags,
1794 const struct rte_flow_item *gre_item,
1795 struct rte_flow_error *error)
1797 const rte_be32_t *mask = item->mask;
1799 rte_be32_t gre_key_default_mask = RTE_BE32(UINT32_MAX);
1800 const struct rte_flow_item_gre *gre_spec = gre_item->spec;
1801 const struct rte_flow_item_gre *gre_mask = gre_item->mask;
1803 if (item_flags & MLX5_FLOW_LAYER_GRE_KEY)
1804 return rte_flow_error_set(error, ENOTSUP,
1805 RTE_FLOW_ERROR_TYPE_ITEM, item,
1806 "Multiple GRE key not support");
1807 if (!(item_flags & MLX5_FLOW_LAYER_GRE))
1808 return rte_flow_error_set(error, ENOTSUP,
1809 RTE_FLOW_ERROR_TYPE_ITEM, item,
1810 "No preceding GRE header");
1811 if (item_flags & MLX5_FLOW_LAYER_INNER)
1812 return rte_flow_error_set(error, ENOTSUP,
1813 RTE_FLOW_ERROR_TYPE_ITEM, item,
1814 "GRE key following a wrong item");
1816 gre_mask = &rte_flow_item_gre_mask;
1817 if (gre_spec && (gre_mask->c_rsvd0_ver & RTE_BE16(0x2000)) &&
1818 !(gre_spec->c_rsvd0_ver & RTE_BE16(0x2000)))
1819 return rte_flow_error_set(error, EINVAL,
1820 RTE_FLOW_ERROR_TYPE_ITEM, item,
1821 "Key bit must be on");
1824 mask = &gre_key_default_mask;
1825 ret = mlx5_flow_item_acceptable
1826 (item, (const uint8_t *)mask,
1827 (const uint8_t *)&gre_key_default_mask,
1828 sizeof(rte_be32_t), error);
1833 * Validate GRE item.
1836 * Item specification.
1837 * @param[in] item_flags
1838 * Bit flags to mark detected items.
1839 * @param[in] target_protocol
1840 * The next protocol in the previous item.
1842 * Pointer to error structure.
1845 * 0 on success, a negative errno value otherwise and rte_errno is set.
1848 mlx5_flow_validate_item_gre(const struct rte_flow_item *item,
1849 uint64_t item_flags,
1850 uint8_t target_protocol,
1851 struct rte_flow_error *error)
1853 const struct rte_flow_item_gre *spec __rte_unused = item->spec;
1854 const struct rte_flow_item_gre *mask = item->mask;
1856 const struct rte_flow_item_gre nic_mask = {
1857 .c_rsvd0_ver = RTE_BE16(0xB000),
1858 .protocol = RTE_BE16(UINT16_MAX),
1861 if (target_protocol != 0xff && target_protocol != IPPROTO_GRE)
1862 return rte_flow_error_set(error, EINVAL,
1863 RTE_FLOW_ERROR_TYPE_ITEM, item,
1864 "protocol filtering not compatible"
1865 " with this GRE layer");
1866 if (item_flags & MLX5_FLOW_LAYER_TUNNEL)
1867 return rte_flow_error_set(error, ENOTSUP,
1868 RTE_FLOW_ERROR_TYPE_ITEM, item,
1869 "multiple tunnel layers not"
1871 if (!(item_flags & MLX5_FLOW_LAYER_OUTER_L3))
1872 return rte_flow_error_set(error, ENOTSUP,
1873 RTE_FLOW_ERROR_TYPE_ITEM, item,
1874 "L3 Layer is missing");
1876 mask = &rte_flow_item_gre_mask;
1877 ret = mlx5_flow_item_acceptable
1878 (item, (const uint8_t *)mask,
1879 (const uint8_t *)&nic_mask,
1880 sizeof(struct rte_flow_item_gre), error);
1883 #ifndef HAVE_MLX5DV_DR
1884 #ifndef HAVE_IBV_DEVICE_MPLS_SUPPORT
1885 if (spec && (spec->protocol & mask->protocol))
1886 return rte_flow_error_set(error, ENOTSUP,
1887 RTE_FLOW_ERROR_TYPE_ITEM, item,
1888 "without MPLS support the"
1889 " specification cannot be used for"
1897 * Validate MPLS item.
1900 * Pointer to the rte_eth_dev structure.
1902 * Item specification.
1903 * @param[in] item_flags
1904 * Bit-fields that holds the items detected until now.
1905 * @param[in] prev_layer
1906 * The protocol layer indicated in previous item.
1908 * Pointer to error structure.
1911 * 0 on success, a negative errno value otherwise and rte_errno is set.
1914 mlx5_flow_validate_item_mpls(struct rte_eth_dev *dev __rte_unused,
1915 const struct rte_flow_item *item __rte_unused,
1916 uint64_t item_flags __rte_unused,
1917 uint64_t prev_layer __rte_unused,
1918 struct rte_flow_error *error)
1920 #ifdef HAVE_IBV_DEVICE_MPLS_SUPPORT
1921 const struct rte_flow_item_mpls *mask = item->mask;
1922 struct mlx5_priv *priv = dev->data->dev_private;
1925 if (!priv->config.mpls_en)
1926 return rte_flow_error_set(error, ENOTSUP,
1927 RTE_FLOW_ERROR_TYPE_ITEM, item,
1928 "MPLS not supported or"
1929 " disabled in firmware"
1931 /* MPLS over IP, UDP, GRE is allowed */
1932 if (!(prev_layer & (MLX5_FLOW_LAYER_OUTER_L3 |
1933 MLX5_FLOW_LAYER_OUTER_L4_UDP |
1934 MLX5_FLOW_LAYER_GRE)))
1935 return rte_flow_error_set(error, EINVAL,
1936 RTE_FLOW_ERROR_TYPE_ITEM, item,
1937 "protocol filtering not compatible"
1938 " with MPLS layer");
1939 /* Multi-tunnel isn't allowed but MPLS over GRE is an exception. */
1940 if ((item_flags & MLX5_FLOW_LAYER_TUNNEL) &&
1941 !(item_flags & MLX5_FLOW_LAYER_GRE))
1942 return rte_flow_error_set(error, ENOTSUP,
1943 RTE_FLOW_ERROR_TYPE_ITEM, item,
1944 "multiple tunnel layers not"
1947 mask = &rte_flow_item_mpls_mask;
1948 ret = mlx5_flow_item_acceptable
1949 (item, (const uint8_t *)mask,
1950 (const uint8_t *)&rte_flow_item_mpls_mask,
1951 sizeof(struct rte_flow_item_mpls), error);
1956 return rte_flow_error_set(error, ENOTSUP,
1957 RTE_FLOW_ERROR_TYPE_ITEM, item,
1958 "MPLS is not supported by Verbs, please"
1963 * Validate NVGRE item.
1966 * Item specification.
1967 * @param[in] item_flags
1968 * Bit flags to mark detected items.
1969 * @param[in] target_protocol
1970 * The next protocol in the previous item.
1972 * Pointer to error structure.
1975 * 0 on success, a negative errno value otherwise and rte_errno is set.
1978 mlx5_flow_validate_item_nvgre(const struct rte_flow_item *item,
1979 uint64_t item_flags,
1980 uint8_t target_protocol,
1981 struct rte_flow_error *error)
1983 const struct rte_flow_item_nvgre *mask = item->mask;
1986 if (target_protocol != 0xff && target_protocol != IPPROTO_GRE)
1987 return rte_flow_error_set(error, EINVAL,
1988 RTE_FLOW_ERROR_TYPE_ITEM, item,
1989 "protocol filtering not compatible"
1990 " with this GRE layer");
1991 if (item_flags & MLX5_FLOW_LAYER_TUNNEL)
1992 return rte_flow_error_set(error, ENOTSUP,
1993 RTE_FLOW_ERROR_TYPE_ITEM, item,
1994 "multiple tunnel layers not"
1996 if (!(item_flags & MLX5_FLOW_LAYER_OUTER_L3))
1997 return rte_flow_error_set(error, ENOTSUP,
1998 RTE_FLOW_ERROR_TYPE_ITEM, item,
1999 "L3 Layer is missing");
2001 mask = &rte_flow_item_nvgre_mask;
2002 ret = mlx5_flow_item_acceptable
2003 (item, (const uint8_t *)mask,
2004 (const uint8_t *)&rte_flow_item_nvgre_mask,
2005 sizeof(struct rte_flow_item_nvgre), error);
2012 flow_null_validate(struct rte_eth_dev *dev __rte_unused,
2013 const struct rte_flow_attr *attr __rte_unused,
2014 const struct rte_flow_item items[] __rte_unused,
2015 const struct rte_flow_action actions[] __rte_unused,
2016 bool external __rte_unused,
2017 struct rte_flow_error *error)
2019 return rte_flow_error_set(error, ENOTSUP,
2020 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL, NULL);
2023 static struct mlx5_flow *
2024 flow_null_prepare(const struct rte_flow_attr *attr __rte_unused,
2025 const struct rte_flow_item items[] __rte_unused,
2026 const struct rte_flow_action actions[] __rte_unused,
2027 struct rte_flow_error *error)
2029 rte_flow_error_set(error, ENOTSUP,
2030 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL, NULL);
2035 flow_null_translate(struct rte_eth_dev *dev __rte_unused,
2036 struct mlx5_flow *dev_flow __rte_unused,
2037 const struct rte_flow_attr *attr __rte_unused,
2038 const struct rte_flow_item items[] __rte_unused,
2039 const struct rte_flow_action actions[] __rte_unused,
2040 struct rte_flow_error *error)
2042 return rte_flow_error_set(error, ENOTSUP,
2043 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL, NULL);
2047 flow_null_apply(struct rte_eth_dev *dev __rte_unused,
2048 struct rte_flow *flow __rte_unused,
2049 struct rte_flow_error *error)
2051 return rte_flow_error_set(error, ENOTSUP,
2052 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL, NULL);
2056 flow_null_remove(struct rte_eth_dev *dev __rte_unused,
2057 struct rte_flow *flow __rte_unused)
2062 flow_null_destroy(struct rte_eth_dev *dev __rte_unused,
2063 struct rte_flow *flow __rte_unused)
2068 flow_null_query(struct rte_eth_dev *dev __rte_unused,
2069 struct rte_flow *flow __rte_unused,
2070 const struct rte_flow_action *actions __rte_unused,
2071 void *data __rte_unused,
2072 struct rte_flow_error *error)
2074 return rte_flow_error_set(error, ENOTSUP,
2075 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL, NULL);
2078 /* Void driver to protect from null pointer reference. */
2079 const struct mlx5_flow_driver_ops mlx5_flow_null_drv_ops = {
2080 .validate = flow_null_validate,
2081 .prepare = flow_null_prepare,
2082 .translate = flow_null_translate,
2083 .apply = flow_null_apply,
2084 .remove = flow_null_remove,
2085 .destroy = flow_null_destroy,
2086 .query = flow_null_query,
2090 * Select flow driver type according to flow attributes and device
2094 * Pointer to the dev structure.
2096 * Pointer to the flow attributes.
2099 * flow driver type, MLX5_FLOW_TYPE_MAX otherwise.
2101 static enum mlx5_flow_drv_type
2102 flow_get_drv_type(struct rte_eth_dev *dev, const struct rte_flow_attr *attr)
2104 struct mlx5_priv *priv = dev->data->dev_private;
2105 enum mlx5_flow_drv_type type = MLX5_FLOW_TYPE_MAX;
2107 if (attr->transfer && priv->config.dv_esw_en)
2108 type = MLX5_FLOW_TYPE_DV;
2109 if (!attr->transfer)
2110 type = priv->config.dv_flow_en ? MLX5_FLOW_TYPE_DV :
2111 MLX5_FLOW_TYPE_VERBS;
2115 #define flow_get_drv_ops(type) flow_drv_ops[type]
2118 * Flow driver validation API. This abstracts calling driver specific functions.
2119 * The type of flow driver is determined according to flow attributes.
2122 * Pointer to the dev structure.
2124 * Pointer to the flow attributes.
2126 * Pointer to the list of items.
2127 * @param[in] actions
2128 * Pointer to the list of actions.
2129 * @param[in] external
2130 * This flow rule is created by request external to PMD.
2132 * Pointer to the error structure.
2135 * 0 on success, a negative errno value otherwise and rte_errno is set.
2138 flow_drv_validate(struct rte_eth_dev *dev,
2139 const struct rte_flow_attr *attr,
2140 const struct rte_flow_item items[],
2141 const struct rte_flow_action actions[],
2142 bool external, struct rte_flow_error *error)
2144 const struct mlx5_flow_driver_ops *fops;
2145 enum mlx5_flow_drv_type type = flow_get_drv_type(dev, attr);
2147 fops = flow_get_drv_ops(type);
2148 return fops->validate(dev, attr, items, actions, external, error);
2152 * Flow driver preparation API. This abstracts calling driver specific
2153 * functions. Parent flow (rte_flow) should have driver type (drv_type). It
2154 * calculates the size of memory required for device flow, allocates the memory,
2155 * initializes the device flow and returns the pointer.
2158 * This function initializes device flow structure such as dv or verbs in
2159 * struct mlx5_flow. However, it is caller's responsibility to initialize the
2160 * rest. For example, adding returning device flow to flow->dev_flow list and
2161 * setting backward reference to the flow should be done out of this function.
2162 * layers field is not filled either.
2165 * Pointer to the flow attributes.
2167 * Pointer to the list of items.
2168 * @param[in] actions
2169 * Pointer to the list of actions.
2171 * Pointer to the error structure.
2174 * Pointer to device flow on success, otherwise NULL and rte_errno is set.
2176 static inline struct mlx5_flow *
2177 flow_drv_prepare(const struct rte_flow *flow,
2178 const struct rte_flow_attr *attr,
2179 const struct rte_flow_item items[],
2180 const struct rte_flow_action actions[],
2181 struct rte_flow_error *error)
2183 const struct mlx5_flow_driver_ops *fops;
2184 enum mlx5_flow_drv_type type = flow->drv_type;
2186 assert(type > MLX5_FLOW_TYPE_MIN && type < MLX5_FLOW_TYPE_MAX);
2187 fops = flow_get_drv_ops(type);
2188 return fops->prepare(attr, items, actions, error);
2192 * Flow driver translation API. This abstracts calling driver specific
2193 * functions. Parent flow (rte_flow) should have driver type (drv_type). It
2194 * translates a generic flow into a driver flow. flow_drv_prepare() must
2198 * dev_flow->layers could be filled as a result of parsing during translation
2199 * if needed by flow_drv_apply(). dev_flow->flow->actions can also be filled
2200 * if necessary. As a flow can have multiple dev_flows by RSS flow expansion,
2201 * flow->actions could be overwritten even though all the expanded dev_flows
2202 * have the same actions.
2205 * Pointer to the rte dev structure.
2206 * @param[in, out] dev_flow
2207 * Pointer to the mlx5 flow.
2209 * Pointer to the flow attributes.
2211 * Pointer to the list of items.
2212 * @param[in] actions
2213 * Pointer to the list of actions.
2215 * Pointer to the error structure.
2218 * 0 on success, a negative errno value otherwise and rte_errno is set.
2221 flow_drv_translate(struct rte_eth_dev *dev, struct mlx5_flow *dev_flow,
2222 const struct rte_flow_attr *attr,
2223 const struct rte_flow_item items[],
2224 const struct rte_flow_action actions[],
2225 struct rte_flow_error *error)
2227 const struct mlx5_flow_driver_ops *fops;
2228 enum mlx5_flow_drv_type type = dev_flow->flow->drv_type;
2230 assert(type > MLX5_FLOW_TYPE_MIN && type < MLX5_FLOW_TYPE_MAX);
2231 fops = flow_get_drv_ops(type);
2232 return fops->translate(dev, dev_flow, attr, items, actions, error);
2236 * Flow driver apply API. This abstracts calling driver specific functions.
2237 * Parent flow (rte_flow) should have driver type (drv_type). It applies
2238 * translated driver flows on to device. flow_drv_translate() must precede.
2241 * Pointer to Ethernet device structure.
2242 * @param[in, out] flow
2243 * Pointer to flow structure.
2245 * Pointer to error structure.
2248 * 0 on success, a negative errno value otherwise and rte_errno is set.
2251 flow_drv_apply(struct rte_eth_dev *dev, struct rte_flow *flow,
2252 struct rte_flow_error *error)
2254 const struct mlx5_flow_driver_ops *fops;
2255 enum mlx5_flow_drv_type type = flow->drv_type;
2257 assert(type > MLX5_FLOW_TYPE_MIN && type < MLX5_FLOW_TYPE_MAX);
2258 fops = flow_get_drv_ops(type);
2259 return fops->apply(dev, flow, error);
2263 * Flow driver remove API. This abstracts calling driver specific functions.
2264 * Parent flow (rte_flow) should have driver type (drv_type). It removes a flow
2265 * on device. All the resources of the flow should be freed by calling
2266 * flow_drv_destroy().
2269 * Pointer to Ethernet device.
2270 * @param[in, out] flow
2271 * Pointer to flow structure.
2274 flow_drv_remove(struct rte_eth_dev *dev, struct rte_flow *flow)
2276 const struct mlx5_flow_driver_ops *fops;
2277 enum mlx5_flow_drv_type type = flow->drv_type;
2279 assert(type > MLX5_FLOW_TYPE_MIN && type < MLX5_FLOW_TYPE_MAX);
2280 fops = flow_get_drv_ops(type);
2281 fops->remove(dev, flow);
2285 * Flow driver destroy API. This abstracts calling driver specific functions.
2286 * Parent flow (rte_flow) should have driver type (drv_type). It removes a flow
2287 * on device and releases resources of the flow.
2290 * Pointer to Ethernet device.
2291 * @param[in, out] flow
2292 * Pointer to flow structure.
2295 flow_drv_destroy(struct rte_eth_dev *dev, struct rte_flow *flow)
2297 const struct mlx5_flow_driver_ops *fops;
2298 enum mlx5_flow_drv_type type = flow->drv_type;
2300 assert(type > MLX5_FLOW_TYPE_MIN && type < MLX5_FLOW_TYPE_MAX);
2301 fops = flow_get_drv_ops(type);
2302 fops->destroy(dev, flow);
2306 * Validate a flow supported by the NIC.
2308 * @see rte_flow_validate()
2312 mlx5_flow_validate(struct rte_eth_dev *dev,
2313 const struct rte_flow_attr *attr,
2314 const struct rte_flow_item items[],
2315 const struct rte_flow_action actions[],
2316 struct rte_flow_error *error)
2320 ret = flow_drv_validate(dev, attr, items, actions, true, error);
2327 * Get RSS action from the action list.
2329 * @param[in] actions
2330 * Pointer to the list of actions.
2333 * Pointer to the RSS action if exist, else return NULL.
2335 static const struct rte_flow_action_rss*
2336 flow_get_rss_action(const struct rte_flow_action actions[])
2338 for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
2339 switch (actions->type) {
2340 case RTE_FLOW_ACTION_TYPE_RSS:
2341 return (const struct rte_flow_action_rss *)
2351 find_graph_root(const struct rte_flow_item pattern[], uint32_t rss_level)
2353 const struct rte_flow_item *item;
2354 unsigned int has_vlan = 0;
2356 for (item = pattern; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
2357 if (item->type == RTE_FLOW_ITEM_TYPE_VLAN) {
2363 return rss_level < 2 ? MLX5_EXPANSION_ROOT_ETH_VLAN :
2364 MLX5_EXPANSION_ROOT_OUTER_ETH_VLAN;
2365 return rss_level < 2 ? MLX5_EXPANSION_ROOT :
2366 MLX5_EXPANSION_ROOT_OUTER;
2370 * Create a flow and add it to @p list.
2373 * Pointer to Ethernet device.
2375 * Pointer to a TAILQ flow list.
2377 * Flow rule attributes.
2379 * Pattern specification (list terminated by the END pattern item).
2380 * @param[in] actions
2381 * Associated actions (list terminated by the END action).
2382 * @param[in] external
2383 * This flow rule is created by request external to PMD.
2385 * Perform verbose error reporting if not NULL.
2388 * A flow on success, NULL otherwise and rte_errno is set.
2390 static struct rte_flow *
2391 flow_list_create(struct rte_eth_dev *dev, struct mlx5_flows *list,
2392 const struct rte_flow_attr *attr,
2393 const struct rte_flow_item items[],
2394 const struct rte_flow_action actions[],
2395 bool external, struct rte_flow_error *error)
2397 struct rte_flow *flow = NULL;
2398 struct mlx5_flow *dev_flow;
2399 const struct rte_flow_action_rss *rss;
2401 struct rte_flow_expand_rss buf;
2402 uint8_t buffer[2048];
2404 struct rte_flow_expand_rss *buf = &expand_buffer.buf;
2409 ret = flow_drv_validate(dev, attr, items, actions, external, error);
2412 flow_size = sizeof(struct rte_flow);
2413 rss = flow_get_rss_action(actions);
2415 flow_size += RTE_ALIGN_CEIL(rss->queue_num * sizeof(uint16_t),
2418 flow_size += RTE_ALIGN_CEIL(sizeof(uint16_t), sizeof(void *));
2419 flow = rte_calloc(__func__, 1, flow_size, 0);
2424 flow->drv_type = flow_get_drv_type(dev, attr);
2425 flow->ingress = attr->ingress;
2426 flow->transfer = attr->transfer;
2427 assert(flow->drv_type > MLX5_FLOW_TYPE_MIN &&
2428 flow->drv_type < MLX5_FLOW_TYPE_MAX);
2429 flow->queue = (void *)(flow + 1);
2430 LIST_INIT(&flow->dev_flows);
2431 if (rss && rss->types) {
2432 unsigned int graph_root;
2434 graph_root = find_graph_root(items, rss->level);
2435 ret = rte_flow_expand_rss(buf, sizeof(expand_buffer.buffer),
2437 mlx5_support_expansion,
2440 (unsigned int)ret < sizeof(expand_buffer.buffer));
2443 buf->entry[0].pattern = (void *)(uintptr_t)items;
2445 for (i = 0; i < buf->entries; ++i) {
2446 dev_flow = flow_drv_prepare(flow, attr, buf->entry[i].pattern,
2450 dev_flow->flow = flow;
2451 dev_flow->external = external;
2452 LIST_INSERT_HEAD(&flow->dev_flows, dev_flow, next);
2453 ret = flow_drv_translate(dev, dev_flow, attr,
2454 buf->entry[i].pattern,
2459 if (dev->data->dev_started) {
2460 ret = flow_drv_apply(dev, flow, error);
2464 TAILQ_INSERT_TAIL(list, flow, next);
2465 flow_rxq_flags_set(dev, flow);
2468 ret = rte_errno; /* Save rte_errno before cleanup. */
2470 flow_drv_destroy(dev, flow);
2472 rte_errno = ret; /* Restore rte_errno. */
2477 * Create a dedicated flow rule on e-switch table 0 (root table), to direct all
2478 * incoming packets to table 1.
2480 * Other flow rules, requested for group n, will be created in
2481 * e-switch table n+1.
2482 * Jump action to e-switch group n will be created to group n+1.
2484 * Used when working in switchdev mode, to utilise advantages of table 1
2488 * Pointer to Ethernet device.
2491 * Pointer to flow on success, NULL otherwise and rte_errno is set.
2494 mlx5_flow_create_esw_table_zero_flow(struct rte_eth_dev *dev)
2496 const struct rte_flow_attr attr = {
2503 const struct rte_flow_item pattern = {
2504 .type = RTE_FLOW_ITEM_TYPE_END,
2506 struct rte_flow_action_jump jump = {
2509 const struct rte_flow_action actions[] = {
2511 .type = RTE_FLOW_ACTION_TYPE_JUMP,
2515 .type = RTE_FLOW_ACTION_TYPE_END,
2518 struct mlx5_priv *priv = dev->data->dev_private;
2519 struct rte_flow_error error;
2521 return flow_list_create(dev, &priv->ctrl_flows, &attr, &pattern,
2522 actions, false, &error);
2528 * @see rte_flow_create()
2532 mlx5_flow_create(struct rte_eth_dev *dev,
2533 const struct rte_flow_attr *attr,
2534 const struct rte_flow_item items[],
2535 const struct rte_flow_action actions[],
2536 struct rte_flow_error *error)
2538 struct mlx5_priv *priv = dev->data->dev_private;
2540 return flow_list_create(dev, &priv->flows,
2541 attr, items, actions, true, error);
2545 * Destroy a flow in a list.
2548 * Pointer to Ethernet device.
2550 * Pointer to a TAILQ flow list.
2555 flow_list_destroy(struct rte_eth_dev *dev, struct mlx5_flows *list,
2556 struct rte_flow *flow)
2559 * Update RX queue flags only if port is started, otherwise it is
2562 if (dev->data->dev_started)
2563 flow_rxq_flags_trim(dev, flow);
2564 flow_drv_destroy(dev, flow);
2565 TAILQ_REMOVE(list, flow, next);
2566 rte_free(flow->fdir);
2571 * Destroy all flows.
2574 * Pointer to Ethernet device.
2576 * Pointer to a TAILQ flow list.
2579 mlx5_flow_list_flush(struct rte_eth_dev *dev, struct mlx5_flows *list)
2581 while (!TAILQ_EMPTY(list)) {
2582 struct rte_flow *flow;
2584 flow = TAILQ_FIRST(list);
2585 flow_list_destroy(dev, list, flow);
2593 * Pointer to Ethernet device.
2595 * Pointer to a TAILQ flow list.
2598 mlx5_flow_stop(struct rte_eth_dev *dev, struct mlx5_flows *list)
2600 struct rte_flow *flow;
2602 TAILQ_FOREACH_REVERSE(flow, list, mlx5_flows, next)
2603 flow_drv_remove(dev, flow);
2604 flow_rxq_flags_clear(dev);
2611 * Pointer to Ethernet device.
2613 * Pointer to a TAILQ flow list.
2616 * 0 on success, a negative errno value otherwise and rte_errno is set.
2619 mlx5_flow_start(struct rte_eth_dev *dev, struct mlx5_flows *list)
2621 struct rte_flow *flow;
2622 struct rte_flow_error error;
2625 TAILQ_FOREACH(flow, list, next) {
2626 ret = flow_drv_apply(dev, flow, &error);
2629 flow_rxq_flags_set(dev, flow);
2633 ret = rte_errno; /* Save rte_errno before cleanup. */
2634 mlx5_flow_stop(dev, list);
2635 rte_errno = ret; /* Restore rte_errno. */
2640 * Verify the flow list is empty
2643 * Pointer to Ethernet device.
2645 * @return the number of flows not released.
2648 mlx5_flow_verify(struct rte_eth_dev *dev)
2650 struct mlx5_priv *priv = dev->data->dev_private;
2651 struct rte_flow *flow;
2654 TAILQ_FOREACH(flow, &priv->flows, next) {
2655 DRV_LOG(DEBUG, "port %u flow %p still referenced",
2656 dev->data->port_id, (void *)flow);
2663 * Enable a control flow configured from the control plane.
2666 * Pointer to Ethernet device.
2668 * An Ethernet flow spec to apply.
2670 * An Ethernet flow mask to apply.
2672 * A VLAN flow spec to apply.
2674 * A VLAN flow mask to apply.
2677 * 0 on success, a negative errno value otherwise and rte_errno is set.
2680 mlx5_ctrl_flow_vlan(struct rte_eth_dev *dev,
2681 struct rte_flow_item_eth *eth_spec,
2682 struct rte_flow_item_eth *eth_mask,
2683 struct rte_flow_item_vlan *vlan_spec,
2684 struct rte_flow_item_vlan *vlan_mask)
2686 struct mlx5_priv *priv = dev->data->dev_private;
2687 const struct rte_flow_attr attr = {
2689 .priority = MLX5_FLOW_PRIO_RSVD,
2691 struct rte_flow_item items[] = {
2693 .type = RTE_FLOW_ITEM_TYPE_ETH,
2699 .type = (vlan_spec) ? RTE_FLOW_ITEM_TYPE_VLAN :
2700 RTE_FLOW_ITEM_TYPE_END,
2706 .type = RTE_FLOW_ITEM_TYPE_END,
2709 uint16_t queue[priv->reta_idx_n];
2710 struct rte_flow_action_rss action_rss = {
2711 .func = RTE_ETH_HASH_FUNCTION_DEFAULT,
2713 .types = priv->rss_conf.rss_hf,
2714 .key_len = priv->rss_conf.rss_key_len,
2715 .queue_num = priv->reta_idx_n,
2716 .key = priv->rss_conf.rss_key,
2719 struct rte_flow_action actions[] = {
2721 .type = RTE_FLOW_ACTION_TYPE_RSS,
2722 .conf = &action_rss,
2725 .type = RTE_FLOW_ACTION_TYPE_END,
2728 struct rte_flow *flow;
2729 struct rte_flow_error error;
2732 if (!priv->reta_idx_n || !priv->rxqs_n) {
2735 for (i = 0; i != priv->reta_idx_n; ++i)
2736 queue[i] = (*priv->reta_idx)[i];
2737 flow = flow_list_create(dev, &priv->ctrl_flows,
2738 &attr, items, actions, false, &error);
2745 * Enable a flow control configured from the control plane.
2748 * Pointer to Ethernet device.
2750 * An Ethernet flow spec to apply.
2752 * An Ethernet flow mask to apply.
2755 * 0 on success, a negative errno value otherwise and rte_errno is set.
2758 mlx5_ctrl_flow(struct rte_eth_dev *dev,
2759 struct rte_flow_item_eth *eth_spec,
2760 struct rte_flow_item_eth *eth_mask)
2762 return mlx5_ctrl_flow_vlan(dev, eth_spec, eth_mask, NULL, NULL);
2768 * @see rte_flow_destroy()
2772 mlx5_flow_destroy(struct rte_eth_dev *dev,
2773 struct rte_flow *flow,
2774 struct rte_flow_error *error __rte_unused)
2776 struct mlx5_priv *priv = dev->data->dev_private;
2778 flow_list_destroy(dev, &priv->flows, flow);
2783 * Destroy all flows.
2785 * @see rte_flow_flush()
2789 mlx5_flow_flush(struct rte_eth_dev *dev,
2790 struct rte_flow_error *error __rte_unused)
2792 struct mlx5_priv *priv = dev->data->dev_private;
2794 mlx5_flow_list_flush(dev, &priv->flows);
2801 * @see rte_flow_isolate()
2805 mlx5_flow_isolate(struct rte_eth_dev *dev,
2807 struct rte_flow_error *error)
2809 struct mlx5_priv *priv = dev->data->dev_private;
2811 if (dev->data->dev_started) {
2812 rte_flow_error_set(error, EBUSY,
2813 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
2815 "port must be stopped first");
2818 priv->isolated = !!enable;
2820 dev->dev_ops = &mlx5_dev_ops_isolate;
2822 dev->dev_ops = &mlx5_dev_ops;
2829 * @see rte_flow_query()
2833 flow_drv_query(struct rte_eth_dev *dev,
2834 struct rte_flow *flow,
2835 const struct rte_flow_action *actions,
2837 struct rte_flow_error *error)
2839 const struct mlx5_flow_driver_ops *fops;
2840 enum mlx5_flow_drv_type ftype = flow->drv_type;
2842 assert(ftype > MLX5_FLOW_TYPE_MIN && ftype < MLX5_FLOW_TYPE_MAX);
2843 fops = flow_get_drv_ops(ftype);
2845 return fops->query(dev, flow, actions, data, error);
2851 * @see rte_flow_query()
2855 mlx5_flow_query(struct rte_eth_dev *dev,
2856 struct rte_flow *flow,
2857 const struct rte_flow_action *actions,
2859 struct rte_flow_error *error)
2863 ret = flow_drv_query(dev, flow, actions, data, error);
2870 * Convert a flow director filter to a generic flow.
2873 * Pointer to Ethernet device.
2874 * @param fdir_filter
2875 * Flow director filter to add.
2877 * Generic flow parameters structure.
2880 * 0 on success, a negative errno value otherwise and rte_errno is set.
2883 flow_fdir_filter_convert(struct rte_eth_dev *dev,
2884 const struct rte_eth_fdir_filter *fdir_filter,
2885 struct mlx5_fdir *attributes)
2887 struct mlx5_priv *priv = dev->data->dev_private;
2888 const struct rte_eth_fdir_input *input = &fdir_filter->input;
2889 const struct rte_eth_fdir_masks *mask =
2890 &dev->data->dev_conf.fdir_conf.mask;
2892 /* Validate queue number. */
2893 if (fdir_filter->action.rx_queue >= priv->rxqs_n) {
2894 DRV_LOG(ERR, "port %u invalid queue number %d",
2895 dev->data->port_id, fdir_filter->action.rx_queue);
2899 attributes->attr.ingress = 1;
2900 attributes->items[0] = (struct rte_flow_item) {
2901 .type = RTE_FLOW_ITEM_TYPE_ETH,
2902 .spec = &attributes->l2,
2903 .mask = &attributes->l2_mask,
2905 switch (fdir_filter->action.behavior) {
2906 case RTE_ETH_FDIR_ACCEPT:
2907 attributes->actions[0] = (struct rte_flow_action){
2908 .type = RTE_FLOW_ACTION_TYPE_QUEUE,
2909 .conf = &attributes->queue,
2912 case RTE_ETH_FDIR_REJECT:
2913 attributes->actions[0] = (struct rte_flow_action){
2914 .type = RTE_FLOW_ACTION_TYPE_DROP,
2918 DRV_LOG(ERR, "port %u invalid behavior %d",
2920 fdir_filter->action.behavior);
2921 rte_errno = ENOTSUP;
2924 attributes->queue.index = fdir_filter->action.rx_queue;
2926 switch (fdir_filter->input.flow_type) {
2927 case RTE_ETH_FLOW_NONFRAG_IPV4_UDP:
2928 case RTE_ETH_FLOW_NONFRAG_IPV4_TCP:
2929 case RTE_ETH_FLOW_NONFRAG_IPV4_OTHER:
2930 attributes->l3.ipv4.hdr = (struct rte_ipv4_hdr){
2931 .src_addr = input->flow.ip4_flow.src_ip,
2932 .dst_addr = input->flow.ip4_flow.dst_ip,
2933 .time_to_live = input->flow.ip4_flow.ttl,
2934 .type_of_service = input->flow.ip4_flow.tos,
2936 attributes->l3_mask.ipv4.hdr = (struct rte_ipv4_hdr){
2937 .src_addr = mask->ipv4_mask.src_ip,
2938 .dst_addr = mask->ipv4_mask.dst_ip,
2939 .time_to_live = mask->ipv4_mask.ttl,
2940 .type_of_service = mask->ipv4_mask.tos,
2941 .next_proto_id = mask->ipv4_mask.proto,
2943 attributes->items[1] = (struct rte_flow_item){
2944 .type = RTE_FLOW_ITEM_TYPE_IPV4,
2945 .spec = &attributes->l3,
2946 .mask = &attributes->l3_mask,
2949 case RTE_ETH_FLOW_NONFRAG_IPV6_UDP:
2950 case RTE_ETH_FLOW_NONFRAG_IPV6_TCP:
2951 case RTE_ETH_FLOW_NONFRAG_IPV6_OTHER:
2952 attributes->l3.ipv6.hdr = (struct rte_ipv6_hdr){
2953 .hop_limits = input->flow.ipv6_flow.hop_limits,
2954 .proto = input->flow.ipv6_flow.proto,
2957 memcpy(attributes->l3.ipv6.hdr.src_addr,
2958 input->flow.ipv6_flow.src_ip,
2959 RTE_DIM(attributes->l3.ipv6.hdr.src_addr));
2960 memcpy(attributes->l3.ipv6.hdr.dst_addr,
2961 input->flow.ipv6_flow.dst_ip,
2962 RTE_DIM(attributes->l3.ipv6.hdr.src_addr));
2963 memcpy(attributes->l3_mask.ipv6.hdr.src_addr,
2964 mask->ipv6_mask.src_ip,
2965 RTE_DIM(attributes->l3_mask.ipv6.hdr.src_addr));
2966 memcpy(attributes->l3_mask.ipv6.hdr.dst_addr,
2967 mask->ipv6_mask.dst_ip,
2968 RTE_DIM(attributes->l3_mask.ipv6.hdr.src_addr));
2969 attributes->items[1] = (struct rte_flow_item){
2970 .type = RTE_FLOW_ITEM_TYPE_IPV6,
2971 .spec = &attributes->l3,
2972 .mask = &attributes->l3_mask,
2976 DRV_LOG(ERR, "port %u invalid flow type%d",
2977 dev->data->port_id, fdir_filter->input.flow_type);
2978 rte_errno = ENOTSUP;
2982 switch (fdir_filter->input.flow_type) {
2983 case RTE_ETH_FLOW_NONFRAG_IPV4_UDP:
2984 attributes->l4.udp.hdr = (struct rte_udp_hdr){
2985 .src_port = input->flow.udp4_flow.src_port,
2986 .dst_port = input->flow.udp4_flow.dst_port,
2988 attributes->l4_mask.udp.hdr = (struct rte_udp_hdr){
2989 .src_port = mask->src_port_mask,
2990 .dst_port = mask->dst_port_mask,
2992 attributes->items[2] = (struct rte_flow_item){
2993 .type = RTE_FLOW_ITEM_TYPE_UDP,
2994 .spec = &attributes->l4,
2995 .mask = &attributes->l4_mask,
2998 case RTE_ETH_FLOW_NONFRAG_IPV4_TCP:
2999 attributes->l4.tcp.hdr = (struct rte_tcp_hdr){
3000 .src_port = input->flow.tcp4_flow.src_port,
3001 .dst_port = input->flow.tcp4_flow.dst_port,
3003 attributes->l4_mask.tcp.hdr = (struct rte_tcp_hdr){
3004 .src_port = mask->src_port_mask,
3005 .dst_port = mask->dst_port_mask,
3007 attributes->items[2] = (struct rte_flow_item){
3008 .type = RTE_FLOW_ITEM_TYPE_TCP,
3009 .spec = &attributes->l4,
3010 .mask = &attributes->l4_mask,
3013 case RTE_ETH_FLOW_NONFRAG_IPV6_UDP:
3014 attributes->l4.udp.hdr = (struct rte_udp_hdr){
3015 .src_port = input->flow.udp6_flow.src_port,
3016 .dst_port = input->flow.udp6_flow.dst_port,
3018 attributes->l4_mask.udp.hdr = (struct rte_udp_hdr){
3019 .src_port = mask->src_port_mask,
3020 .dst_port = mask->dst_port_mask,
3022 attributes->items[2] = (struct rte_flow_item){
3023 .type = RTE_FLOW_ITEM_TYPE_UDP,
3024 .spec = &attributes->l4,
3025 .mask = &attributes->l4_mask,
3028 case RTE_ETH_FLOW_NONFRAG_IPV6_TCP:
3029 attributes->l4.tcp.hdr = (struct rte_tcp_hdr){
3030 .src_port = input->flow.tcp6_flow.src_port,
3031 .dst_port = input->flow.tcp6_flow.dst_port,
3033 attributes->l4_mask.tcp.hdr = (struct rte_tcp_hdr){
3034 .src_port = mask->src_port_mask,
3035 .dst_port = mask->dst_port_mask,
3037 attributes->items[2] = (struct rte_flow_item){
3038 .type = RTE_FLOW_ITEM_TYPE_TCP,
3039 .spec = &attributes->l4,
3040 .mask = &attributes->l4_mask,
3043 case RTE_ETH_FLOW_NONFRAG_IPV4_OTHER:
3044 case RTE_ETH_FLOW_NONFRAG_IPV6_OTHER:
3047 DRV_LOG(ERR, "port %u invalid flow type%d",
3048 dev->data->port_id, fdir_filter->input.flow_type);
3049 rte_errno = ENOTSUP;
3055 #define FLOW_FDIR_CMP(f1, f2, fld) \
3056 memcmp(&(f1)->fld, &(f2)->fld, sizeof(f1->fld))
3059 * Compare two FDIR flows. If items and actions are identical, the two flows are
3063 * Pointer to Ethernet device.
3065 * FDIR flow to compare.
3067 * FDIR flow to compare.
3070 * Zero on match, 1 otherwise.
3073 flow_fdir_cmp(const struct mlx5_fdir *f1, const struct mlx5_fdir *f2)
3075 if (FLOW_FDIR_CMP(f1, f2, attr) ||
3076 FLOW_FDIR_CMP(f1, f2, l2) ||
3077 FLOW_FDIR_CMP(f1, f2, l2_mask) ||
3078 FLOW_FDIR_CMP(f1, f2, l3) ||
3079 FLOW_FDIR_CMP(f1, f2, l3_mask) ||
3080 FLOW_FDIR_CMP(f1, f2, l4) ||
3081 FLOW_FDIR_CMP(f1, f2, l4_mask) ||
3082 FLOW_FDIR_CMP(f1, f2, actions[0].type))
3084 if (f1->actions[0].type == RTE_FLOW_ACTION_TYPE_QUEUE &&
3085 FLOW_FDIR_CMP(f1, f2, queue))
3091 * Search device flow list to find out a matched FDIR flow.
3094 * Pointer to Ethernet device.
3096 * FDIR flow to lookup.
3099 * Pointer of flow if found, NULL otherwise.
3101 static struct rte_flow *
3102 flow_fdir_filter_lookup(struct rte_eth_dev *dev, struct mlx5_fdir *fdir_flow)
3104 struct mlx5_priv *priv = dev->data->dev_private;
3105 struct rte_flow *flow = NULL;
3108 TAILQ_FOREACH(flow, &priv->flows, next) {
3109 if (flow->fdir && !flow_fdir_cmp(flow->fdir, fdir_flow)) {
3110 DRV_LOG(DEBUG, "port %u found FDIR flow %p",
3111 dev->data->port_id, (void *)flow);
3119 * Add new flow director filter and store it in list.
3122 * Pointer to Ethernet device.
3123 * @param fdir_filter
3124 * Flow director filter to add.
3127 * 0 on success, a negative errno value otherwise and rte_errno is set.
3130 flow_fdir_filter_add(struct rte_eth_dev *dev,
3131 const struct rte_eth_fdir_filter *fdir_filter)
3133 struct mlx5_priv *priv = dev->data->dev_private;
3134 struct mlx5_fdir *fdir_flow;
3135 struct rte_flow *flow;
3138 fdir_flow = rte_zmalloc(__func__, sizeof(*fdir_flow), 0);
3143 ret = flow_fdir_filter_convert(dev, fdir_filter, fdir_flow);
3146 flow = flow_fdir_filter_lookup(dev, fdir_flow);
3151 flow = flow_list_create(dev, &priv->flows, &fdir_flow->attr,
3152 fdir_flow->items, fdir_flow->actions, true,
3156 assert(!flow->fdir);
3157 flow->fdir = fdir_flow;
3158 DRV_LOG(DEBUG, "port %u created FDIR flow %p",
3159 dev->data->port_id, (void *)flow);
3162 rte_free(fdir_flow);
3167 * Delete specific filter.
3170 * Pointer to Ethernet device.
3171 * @param fdir_filter
3172 * Filter to be deleted.
3175 * 0 on success, a negative errno value otherwise and rte_errno is set.
3178 flow_fdir_filter_delete(struct rte_eth_dev *dev,
3179 const struct rte_eth_fdir_filter *fdir_filter)
3181 struct mlx5_priv *priv = dev->data->dev_private;
3182 struct rte_flow *flow;
3183 struct mlx5_fdir fdir_flow = {
3188 ret = flow_fdir_filter_convert(dev, fdir_filter, &fdir_flow);
3191 flow = flow_fdir_filter_lookup(dev, &fdir_flow);
3196 flow_list_destroy(dev, &priv->flows, flow);
3197 DRV_LOG(DEBUG, "port %u deleted FDIR flow %p",
3198 dev->data->port_id, (void *)flow);
3203 * Update queue for specific filter.
3206 * Pointer to Ethernet device.
3207 * @param fdir_filter
3208 * Filter to be updated.
3211 * 0 on success, a negative errno value otherwise and rte_errno is set.
3214 flow_fdir_filter_update(struct rte_eth_dev *dev,
3215 const struct rte_eth_fdir_filter *fdir_filter)
3219 ret = flow_fdir_filter_delete(dev, fdir_filter);
3222 return flow_fdir_filter_add(dev, fdir_filter);
3226 * Flush all filters.
3229 * Pointer to Ethernet device.
3232 flow_fdir_filter_flush(struct rte_eth_dev *dev)
3234 struct mlx5_priv *priv = dev->data->dev_private;
3236 mlx5_flow_list_flush(dev, &priv->flows);
3240 * Get flow director information.
3243 * Pointer to Ethernet device.
3244 * @param[out] fdir_info
3245 * Resulting flow director information.
3248 flow_fdir_info_get(struct rte_eth_dev *dev, struct rte_eth_fdir_info *fdir_info)
3250 struct rte_eth_fdir_masks *mask =
3251 &dev->data->dev_conf.fdir_conf.mask;
3253 fdir_info->mode = dev->data->dev_conf.fdir_conf.mode;
3254 fdir_info->guarant_spc = 0;
3255 rte_memcpy(&fdir_info->mask, mask, sizeof(fdir_info->mask));
3256 fdir_info->max_flexpayload = 0;
3257 fdir_info->flow_types_mask[0] = 0;
3258 fdir_info->flex_payload_unit = 0;
3259 fdir_info->max_flex_payload_segment_num = 0;
3260 fdir_info->flex_payload_limit = 0;
3261 memset(&fdir_info->flex_conf, 0, sizeof(fdir_info->flex_conf));
3265 * Deal with flow director operations.
3268 * Pointer to Ethernet device.
3270 * Operation to perform.
3272 * Pointer to operation-specific structure.
3275 * 0 on success, a negative errno value otherwise and rte_errno is set.
3278 flow_fdir_ctrl_func(struct rte_eth_dev *dev, enum rte_filter_op filter_op,
3281 enum rte_fdir_mode fdir_mode =
3282 dev->data->dev_conf.fdir_conf.mode;
3284 if (filter_op == RTE_ETH_FILTER_NOP)
3286 if (fdir_mode != RTE_FDIR_MODE_PERFECT &&
3287 fdir_mode != RTE_FDIR_MODE_PERFECT_MAC_VLAN) {
3288 DRV_LOG(ERR, "port %u flow director mode %d not supported",
3289 dev->data->port_id, fdir_mode);
3293 switch (filter_op) {
3294 case RTE_ETH_FILTER_ADD:
3295 return flow_fdir_filter_add(dev, arg);
3296 case RTE_ETH_FILTER_UPDATE:
3297 return flow_fdir_filter_update(dev, arg);
3298 case RTE_ETH_FILTER_DELETE:
3299 return flow_fdir_filter_delete(dev, arg);
3300 case RTE_ETH_FILTER_FLUSH:
3301 flow_fdir_filter_flush(dev);
3303 case RTE_ETH_FILTER_INFO:
3304 flow_fdir_info_get(dev, arg);
3307 DRV_LOG(DEBUG, "port %u unknown operation %u",
3308 dev->data->port_id, filter_op);
3316 * Manage filter operations.
3319 * Pointer to Ethernet device structure.
3320 * @param filter_type
3323 * Operation to perform.
3325 * Pointer to operation-specific structure.
3328 * 0 on success, a negative errno value otherwise and rte_errno is set.
3331 mlx5_dev_filter_ctrl(struct rte_eth_dev *dev,
3332 enum rte_filter_type filter_type,
3333 enum rte_filter_op filter_op,
3336 switch (filter_type) {
3337 case RTE_ETH_FILTER_GENERIC:
3338 if (filter_op != RTE_ETH_FILTER_GET) {
3342 *(const void **)arg = &mlx5_flow_ops;
3344 case RTE_ETH_FILTER_FDIR:
3345 return flow_fdir_ctrl_func(dev, filter_op, arg);
3347 DRV_LOG(ERR, "port %u filter type (%d) not supported",
3348 dev->data->port_id, filter_type);
3349 rte_errno = ENOTSUP;
3355 #define MLX5_POOL_QUERY_FREQ_US 1000000
3358 * Set the periodic procedure for triggering asynchronous batch queries for all
3359 * the counter pools.
3362 * Pointer to mlx5_ibv_shared object.
3365 mlx5_set_query_alarm(struct mlx5_ibv_shared *sh)
3367 struct mlx5_pools_container *cont = MLX5_CNT_CONTAINER(sh, 0, 0);
3368 uint32_t pools_n = rte_atomic16_read(&cont->n_valid);
3371 cont = MLX5_CNT_CONTAINER(sh, 1, 0);
3372 pools_n += rte_atomic16_read(&cont->n_valid);
3373 us = MLX5_POOL_QUERY_FREQ_US / pools_n;
3374 DRV_LOG(DEBUG, "Set alarm for %u pools each %u us\n", pools_n, us);
3375 if (rte_eal_alarm_set(us, mlx5_flow_query_alarm, sh)) {
3376 sh->cmng.query_thread_on = 0;
3377 DRV_LOG(ERR, "Cannot reinitialize query alarm\n");
3379 sh->cmng.query_thread_on = 1;
3384 * The periodic procedure for triggering asynchronous batch queries for all the
3385 * counter pools. This function is probably called by the host thread.
3388 * The parameter for the alarm process.
3391 mlx5_flow_query_alarm(void *arg)
3393 struct mlx5_ibv_shared *sh = arg;
3394 struct mlx5_devx_obj *dcs;
3397 uint8_t batch = sh->cmng.batch;
3398 uint16_t pool_index = sh->cmng.pool_index;
3399 struct mlx5_pools_container *cont;
3400 struct mlx5_pools_container *mcont;
3401 struct mlx5_flow_counter_pool *pool;
3403 if (sh->cmng.pending_queries >= MLX5_MAX_PENDING_QUERIES)
3406 cont = MLX5_CNT_CONTAINER(sh, batch, 1);
3407 mcont = MLX5_CNT_CONTAINER(sh, batch, 0);
3408 /* Check if resize was done and need to flip a container. */
3409 if (cont != mcont) {
3411 /* Clean the old container. */
3412 rte_free(cont->pools);
3413 memset(cont, 0, sizeof(*cont));
3416 /* Flip the host container. */
3417 sh->cmng.mhi[batch] ^= (uint8_t)2;
3421 /* 2 empty containers case is unexpected. */
3422 if (unlikely(batch != sh->cmng.batch))
3426 goto next_container;
3428 pool = cont->pools[pool_index];
3430 /* There is a pool query in progress. */
3433 LIST_FIRST(&sh->cmng.free_stat_raws);
3435 /* No free counter statistics raw memory. */
3437 dcs = (struct mlx5_devx_obj *)(uintptr_t)rte_atomic64_read
3439 offset = batch ? 0 : dcs->id % MLX5_COUNTERS_PER_POOL;
3440 ret = mlx5_devx_cmd_flow_counter_query(dcs, 0, MLX5_COUNTERS_PER_POOL -
3442 pool->raw_hw->mem_mng->dm->id,
3444 (pool->raw_hw->data + offset),
3446 (uint64_t)(uintptr_t)pool);
3448 DRV_LOG(ERR, "Failed to trigger asynchronous query for dcs ID"
3449 " %d\n", pool->min_dcs->id);
3450 pool->raw_hw = NULL;
3453 pool->raw_hw->min_dcs_id = dcs->id;
3454 LIST_REMOVE(pool->raw_hw, next);
3455 sh->cmng.pending_queries++;
3457 if (pool_index >= rte_atomic16_read(&cont->n_valid)) {
3462 sh->cmng.batch = batch;
3463 sh->cmng.pool_index = pool_index;
3464 mlx5_set_query_alarm(sh);
3468 * Handler for the HW respond about ready values from an asynchronous batch
3469 * query. This function is probably called by the host thread.
3472 * The pointer to the shared IB device context.
3473 * @param[in] async_id
3474 * The Devx async ID.
3476 * The status of the completion.
3479 mlx5_flow_async_pool_query_handle(struct mlx5_ibv_shared *sh,
3480 uint64_t async_id, int status)
3482 struct mlx5_flow_counter_pool *pool =
3483 (struct mlx5_flow_counter_pool *)(uintptr_t)async_id;
3484 struct mlx5_counter_stats_raw *raw_to_free;
3486 if (unlikely(status)) {
3487 raw_to_free = pool->raw_hw;
3489 raw_to_free = pool->raw;
3490 rte_spinlock_lock(&pool->sl);
3491 pool->raw = pool->raw_hw;
3492 rte_spinlock_unlock(&pool->sl);
3493 rte_atomic64_add(&pool->query_gen, 1);
3494 /* Be sure the new raw counters data is updated in memory. */
3497 LIST_INSERT_HEAD(&sh->cmng.free_stat_raws, raw_to_free, next);
3498 pool->raw_hw = NULL;
3499 sh->cmng.pending_queries--;
3503 * Translate the rte_flow group index to HW table value.
3505 * @param[in] attributes
3506 * Pointer to flow attributes
3507 * @param[in] external
3508 * Value is part of flow rule created by request external to PMD.
3510 * rte_flow group index value.
3514 * Pointer to error structure.
3517 * 0 on success, a negative errno value otherwise and rte_errno is set.
3520 mlx5_flow_group_to_table(const struct rte_flow_attr *attributes, bool external,
3521 uint32_t group, uint32_t *table,
3522 struct rte_flow_error *error)
3524 if (attributes->transfer && external) {
3525 if (group == UINT32_MAX)
3526 return rte_flow_error_set
3528 RTE_FLOW_ERROR_TYPE_ATTR_GROUP,
3530 "group index not supported");