Branch data Line data Source code
1 : : /* SPDX-License-Identifier: BSD-3-Clause
2 : : * Copyright 2016 6WIND S.A.
3 : : * Copyright 2016 Mellanox Technologies, Ltd
4 : : */
5 : :
6 : : #include <stdalign.h>
7 : : #include <stdint.h>
8 : : #include <string.h>
9 : : #include <stdbool.h>
10 : : #include <sys/queue.h>
11 : :
12 : : #include <rte_common.h>
13 : : #include <rte_ether.h>
14 : : #include <ethdev_driver.h>
15 : : #include <rte_eal_paging.h>
16 : : #include <rte_flow.h>
17 : : #include <rte_cycles.h>
18 : : #include <rte_flow_driver.h>
19 : : #include <rte_malloc.h>
20 : : #include <rte_ip.h>
21 : :
22 : : #include <mlx5_glue.h>
23 : : #include <mlx5_devx_cmds.h>
24 : : #include <mlx5_prm.h>
25 : : #include <mlx5_malloc.h>
26 : :
27 : : #include "mlx5_defs.h"
28 : : #include "mlx5.h"
29 : : #include "mlx5_flow.h"
30 : : #include "mlx5_flow_os.h"
31 : : #include "mlx5_rx.h"
32 : : #include "mlx5_tx.h"
33 : : #include "mlx5_common_os.h"
34 : : #include "rte_pmd_mlx5.h"
35 : :
36 : : /*
37 : : * Shared array for quick translation between port_id and vport mask/values
38 : : * used for HWS rules.
39 : : */
40 : : struct flow_hw_port_info mlx5_flow_hw_port_infos[RTE_MAX_ETHPORTS];
41 : :
42 : : struct tunnel_default_miss_ctx {
43 : : uint16_t *queue;
44 : : __extension__
45 : : union {
46 : : struct rte_flow_action_rss action_rss;
47 : : struct rte_flow_action_queue miss_queue;
48 : : struct rte_flow_action_jump miss_jump;
49 : : uint8_t raw[0];
50 : : };
51 : : };
52 : :
53 : : void
54 : 0 : mlx5_indirect_list_handles_release(struct rte_eth_dev *dev)
55 : : {
56 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
57 : : #ifdef HAVE_MLX5_HWS_SUPPORT
58 : : struct rte_flow_error error;
59 : : #endif
60 : :
61 [ # # ]: 0 : while (!LIST_EMPTY(&priv->indirect_list_head)) {
62 : : struct mlx5_indirect_list *e =
63 : : LIST_FIRST(&priv->indirect_list_head);
64 : :
65 [ # # ]: 0 : LIST_REMOVE(e, entry);
66 [ # # # # ]: 0 : switch (e->type) {
67 : : #ifdef HAVE_MLX5_HWS_SUPPORT
68 : 0 : case MLX5_INDIRECT_ACTION_LIST_TYPE_MIRROR:
69 : 0 : mlx5_hw_mirror_destroy(dev, (struct mlx5_mirror *)e);
70 : 0 : break;
71 : 0 : case MLX5_INDIRECT_ACTION_LIST_TYPE_LEGACY:
72 : 0 : mlx5_destroy_legacy_indirect(dev, e);
73 : 0 : break;
74 : 0 : case MLX5_INDIRECT_ACTION_LIST_TYPE_REFORMAT:
75 : 0 : mlx5_reformat_action_destroy(dev,
76 : : (struct rte_flow_action_list_handle *)e, &error);
77 : 0 : break;
78 : : #endif
79 : 0 : default:
80 : 0 : DRV_LOG(ERR, "invalid indirect list type");
81 : : MLX5_ASSERT(false);
82 : 0 : break;
83 : : }
84 : : }
85 : 0 : }
86 : :
87 : : static int
88 : : flow_tunnel_add_default_miss(struct rte_eth_dev *dev,
89 : : struct rte_flow *flow,
90 : : const struct rte_flow_attr *attr,
91 : : const struct rte_flow_action *app_actions,
92 : : uint32_t flow_idx,
93 : : const struct mlx5_flow_tunnel *tunnel,
94 : : struct tunnel_default_miss_ctx *ctx,
95 : : struct rte_flow_error *error);
96 : : static struct mlx5_flow_tunnel *
97 : : mlx5_find_tunnel_id(struct rte_eth_dev *dev, uint32_t id);
98 : : static void
99 : : mlx5_flow_tunnel_free(struct rte_eth_dev *dev, struct mlx5_flow_tunnel *tunnel);
100 : : static uint32_t
101 : : tunnel_flow_group_to_flow_table(struct rte_eth_dev *dev,
102 : : const struct mlx5_flow_tunnel *tunnel,
103 : : uint32_t group, uint32_t *table,
104 : : struct rte_flow_error *error);
105 : :
106 : : /** Device flow drivers. */
107 : : extern const struct mlx5_flow_driver_ops mlx5_flow_verbs_drv_ops;
108 : :
109 : : const struct mlx5_flow_driver_ops mlx5_flow_null_drv_ops;
110 : :
111 : : const struct mlx5_flow_driver_ops *flow_drv_ops[] = {
112 : : [MLX5_FLOW_TYPE_MIN] = &mlx5_flow_null_drv_ops,
113 : : #if defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_INFINIBAND_VERBS_H)
114 : : [MLX5_FLOW_TYPE_DV] = &mlx5_flow_dv_drv_ops,
115 : : #endif
116 : : #ifdef HAVE_MLX5_HWS_SUPPORT
117 : : [MLX5_FLOW_TYPE_HW] = &mlx5_flow_hw_drv_ops,
118 : : #endif
119 : : [MLX5_FLOW_TYPE_VERBS] = &mlx5_flow_verbs_drv_ops,
120 : : [MLX5_FLOW_TYPE_MAX] = &mlx5_flow_null_drv_ops
121 : : };
122 : :
123 : : /** Helper macro to build input graph for mlx5_flow_expand_rss(). */
124 : : #define MLX5_FLOW_EXPAND_RSS_NEXT(...) \
125 : : (const int []){ \
126 : : __VA_ARGS__, 0, \
127 : : }
128 : :
129 : : /** Node object of input graph for mlx5_flow_expand_rss(). */
130 : : struct mlx5_flow_expand_node {
131 : : const int *const next;
132 : : /**<
133 : : * List of next node indexes. Index 0 is interpreted as a terminator.
134 : : */
135 : : const enum rte_flow_item_type type;
136 : : /**< Pattern item type of current node. */
137 : : uint64_t rss_types;
138 : : /**<
139 : : * RSS types bit-field associated with this node
140 : : * (see RTE_ETH_RSS_* definitions).
141 : : */
142 : : uint64_t node_flags;
143 : : /**<
144 : : * Bit-fields that define how the node is used in the expansion.
145 : : * (see MLX5_EXPANSION_NODE_* definitions).
146 : : */
147 : : };
148 : :
149 : : /** Keep same format with mlx5_flow_expand_rss to share the buffer for expansion. */
150 : : struct mlx5_flow_expand_sqn {
151 : : uint32_t entries; /** Number of entries */
152 : : struct {
153 : : struct rte_flow_item *pattern; /**< Expanded pattern array. */
154 : : uint32_t priority; /**< Priority offset for each expansion. */
155 : : } entry[];
156 : : };
157 : :
158 : : /* Optional expand field. The expansion alg will not go deeper. */
159 : : #define MLX5_EXPANSION_NODE_OPTIONAL (UINT64_C(1) << 0)
160 : :
161 : : /* The node is not added implicitly as expansion to the flow pattern.
162 : : * If the node type does not match the flow pattern item type, the
163 : : * expansion alg will go deeper to its next items.
164 : : * In the current implementation, the list of next nodes indexes can
165 : : * have up to one node with this flag set and it has to be the last
166 : : * node index (before the list terminator).
167 : : */
168 : : #define MLX5_EXPANSION_NODE_EXPLICIT (UINT64_C(1) << 1)
169 : :
170 : : /** Object returned by mlx5_flow_expand_rss(). */
171 : : struct mlx5_flow_expand_rss {
172 : : uint32_t entries;
173 : : /**< Number of entries @p patterns and @p priorities. */
174 : : struct {
175 : : struct rte_flow_item *pattern; /**< Expanded pattern array. */
176 : : uint32_t priority; /**< Priority offset for each expansion. */
177 : : } entry[];
178 : : };
179 : :
180 : : static void
181 : : mlx5_dbg__print_pattern(const struct rte_flow_item *item);
182 : :
183 : : static const struct mlx5_flow_expand_node *
184 : : mlx5_flow_expand_rss_adjust_node(const struct rte_flow_item *pattern,
185 : : unsigned int item_idx,
186 : : const struct mlx5_flow_expand_node graph[],
187 : : const struct mlx5_flow_expand_node *node);
188 : :
189 : : static __rte_always_inline int
190 : : mlx5_need_cache_flow(const struct mlx5_priv *priv,
191 : : const struct rte_flow_attr *attr)
192 : : {
193 [ # # # # : 0 : return priv->isolated && priv->sh->config.dv_flow_en == 1 &&
# # # # ]
194 [ # # # # ]: 0 : (attr ? !attr->group : true) &&
195 [ # # # # : 0 : priv->mode_info.mode == RTE_PMD_MLX5_FLOW_ENGINE_MODE_STANDBY &&
# # # # #
# # # # #
# # ]
196 [ # # # # : 0 : (!priv->sh->config.dv_esw_en || !priv->sh->config.fdb_def_rule);
# # # # #
# # # # #
# # ]
197 : : }
198 : :
199 : : static bool
200 : 0 : mlx5_flow_is_rss_expandable_item(const struct rte_flow_item *item)
201 : : {
202 [ # # ]: 0 : switch (item->type) {
203 : : case RTE_FLOW_ITEM_TYPE_ETH:
204 : : case RTE_FLOW_ITEM_TYPE_VLAN:
205 : : case RTE_FLOW_ITEM_TYPE_IPV4:
206 : : case RTE_FLOW_ITEM_TYPE_IPV6:
207 : : case RTE_FLOW_ITEM_TYPE_UDP:
208 : : case RTE_FLOW_ITEM_TYPE_TCP:
209 : : case RTE_FLOW_ITEM_TYPE_ESP:
210 : : case RTE_FLOW_ITEM_TYPE_ICMP:
211 : : case RTE_FLOW_ITEM_TYPE_ICMP6:
212 : : case RTE_FLOW_ITEM_TYPE_VXLAN:
213 : : case RTE_FLOW_ITEM_TYPE_NVGRE:
214 : : case RTE_FLOW_ITEM_TYPE_GRE:
215 : : case RTE_FLOW_ITEM_TYPE_GENEVE:
216 : : case RTE_FLOW_ITEM_TYPE_MPLS:
217 : : case RTE_FLOW_ITEM_TYPE_VXLAN_GPE:
218 : : case RTE_FLOW_ITEM_TYPE_GRE_KEY:
219 : : case RTE_FLOW_ITEM_TYPE_IPV6_FRAG_EXT:
220 : : case RTE_FLOW_ITEM_TYPE_GTP:
221 : : return true;
222 : : default:
223 : : break;
224 : : }
225 : 0 : return false;
226 : : }
227 : :
228 : : /**
229 : : * Network Service Header (NSH) and its next protocol values
230 : : * are described in RFC-8393.
231 : : */
232 : : static enum rte_flow_item_type
233 : : mlx5_nsh_proto_to_item_type(uint8_t proto_spec, uint8_t proto_mask)
234 : : {
235 : : enum rte_flow_item_type type;
236 : :
237 : 0 : switch (proto_mask & proto_spec) {
238 : : case 0:
239 : : type = RTE_FLOW_ITEM_TYPE_VOID;
240 : : break;
241 : : case RTE_VXLAN_GPE_TYPE_IPV4:
242 : : type = RTE_FLOW_ITEM_TYPE_IPV4;
243 : : break;
244 : : case RTE_VXLAN_GPE_TYPE_IPV6:
245 : : type = RTE_VXLAN_GPE_TYPE_IPV6;
246 : : break;
247 : : case RTE_VXLAN_GPE_TYPE_ETH:
248 : : type = RTE_FLOW_ITEM_TYPE_ETH;
249 : : break;
250 : : default:
251 : : type = RTE_FLOW_ITEM_TYPE_END;
252 : : }
253 : : return type;
254 : : }
255 : :
256 : : static enum rte_flow_item_type
257 : : mlx5_inet_proto_to_item_type(uint8_t proto_spec, uint8_t proto_mask)
258 : : {
259 : : enum rte_flow_item_type type;
260 : :
261 [ # # # # : 0 : switch (proto_mask & proto_spec) {
# # # # #
# # # #
# ]
262 : : case 0:
263 : : type = RTE_FLOW_ITEM_TYPE_VOID;
264 : : break;
265 : 0 : case IPPROTO_UDP:
266 : : type = RTE_FLOW_ITEM_TYPE_UDP;
267 : 0 : break;
268 : 0 : case IPPROTO_TCP:
269 : : type = RTE_FLOW_ITEM_TYPE_TCP;
270 : 0 : break;
271 : 0 : case IPPROTO_IPIP:
272 : : type = RTE_FLOW_ITEM_TYPE_IPV4;
273 : 0 : break;
274 : 0 : case IPPROTO_IPV6:
275 : : type = RTE_FLOW_ITEM_TYPE_IPV6;
276 : 0 : break;
277 : 0 : case IPPROTO_ESP:
278 : : type = RTE_FLOW_ITEM_TYPE_ESP;
279 : 0 : break;
280 : 0 : default:
281 : : type = RTE_FLOW_ITEM_TYPE_END;
282 : : }
283 : : return type;
284 : : }
285 : :
286 : : static enum rte_flow_item_type
287 : : mlx5_ethertype_to_item_type(rte_be16_t type_spec,
288 : : rte_be16_t type_mask, bool is_tunnel)
289 : : {
290 : : enum rte_flow_item_type type;
291 : :
292 [ # # # # : 0 : switch (rte_be_to_cpu_16(type_spec & type_mask)) {
# # # # #
# # # # #
# # # # #
# # # # #
# # # # ]
293 : : case 0:
294 : : type = RTE_FLOW_ITEM_TYPE_VOID;
295 : : break;
296 : 0 : case RTE_ETHER_TYPE_TEB:
297 : : type = is_tunnel ?
298 : : RTE_FLOW_ITEM_TYPE_ETH : RTE_FLOW_ITEM_TYPE_END;
299 : : break;
300 : 0 : case RTE_ETHER_TYPE_VLAN:
301 : : type = !is_tunnel ?
302 : : RTE_FLOW_ITEM_TYPE_VLAN : RTE_FLOW_ITEM_TYPE_END;
303 : : break;
304 : 0 : case RTE_ETHER_TYPE_IPV4:
305 : : type = RTE_FLOW_ITEM_TYPE_IPV4;
306 : 0 : break;
307 : 0 : case RTE_ETHER_TYPE_IPV6:
308 : : type = RTE_FLOW_ITEM_TYPE_IPV6;
309 : 0 : break;
310 : 0 : default:
311 : : type = RTE_FLOW_ITEM_TYPE_END;
312 : : }
313 : : return type;
314 : : }
315 : :
316 : : static enum rte_flow_item_type
317 : 0 : mlx5_flow_expand_rss_item_complete(const struct rte_flow_item *item)
318 : : {
319 : : #define MLX5_XSET_ITEM_MASK_SPEC(type, fld) \
320 : : do { \
321 : : const void *m = item->mask; \
322 : : const void *s = item->spec; \
323 : : mask = m ? \
324 : : ((const struct rte_flow_item_##type *)m)->fld : \
325 : : rte_flow_item_##type##_mask.fld; \
326 : : spec = ((const struct rte_flow_item_##type *)s)->fld; \
327 : : } while (0)
328 : :
329 : : enum rte_flow_item_type ret;
330 : : uint16_t spec, mask;
331 : :
332 [ # # # # ]: 0 : if (item == NULL || item->spec == NULL)
333 : : return RTE_FLOW_ITEM_TYPE_VOID;
334 [ # # # # : 0 : switch (item->type) {
# # # # ]
335 : 0 : case RTE_FLOW_ITEM_TYPE_ETH:
336 [ # # ]: 0 : MLX5_XSET_ITEM_MASK_SPEC(eth, hdr.ether_type);
337 [ # # ]: 0 : if (!mask)
338 : : return RTE_FLOW_ITEM_TYPE_VOID;
339 : : ret = mlx5_ethertype_to_item_type(spec, mask, false);
340 : : break;
341 : 0 : case RTE_FLOW_ITEM_TYPE_VLAN:
342 [ # # ]: 0 : MLX5_XSET_ITEM_MASK_SPEC(vlan, hdr.eth_proto);
343 [ # # ]: 0 : if (!mask)
344 : : return RTE_FLOW_ITEM_TYPE_VOID;
345 : : ret = mlx5_ethertype_to_item_type(spec, mask, false);
346 : : break;
347 : 0 : case RTE_FLOW_ITEM_TYPE_IPV4:
348 [ # # ]: 0 : MLX5_XSET_ITEM_MASK_SPEC(ipv4, hdr.next_proto_id);
349 [ # # ]: 0 : if (!mask)
350 : : return RTE_FLOW_ITEM_TYPE_VOID;
351 : : ret = mlx5_inet_proto_to_item_type(spec, mask);
352 : : break;
353 : 0 : case RTE_FLOW_ITEM_TYPE_IPV6:
354 [ # # ]: 0 : MLX5_XSET_ITEM_MASK_SPEC(ipv6, hdr.proto);
355 [ # # ]: 0 : if (!mask)
356 : : return RTE_FLOW_ITEM_TYPE_VOID;
357 : : ret = mlx5_inet_proto_to_item_type(spec, mask);
358 : : break;
359 : 0 : case RTE_FLOW_ITEM_TYPE_GENEVE:
360 [ # # # # ]: 0 : MLX5_XSET_ITEM_MASK_SPEC(geneve, protocol);
361 : : ret = mlx5_ethertype_to_item_type(spec, mask, true);
362 : : break;
363 : 0 : case RTE_FLOW_ITEM_TYPE_GRE:
364 [ # # # # ]: 0 : MLX5_XSET_ITEM_MASK_SPEC(gre, protocol);
365 : : ret = mlx5_ethertype_to_item_type(spec, mask, true);
366 : : break;
367 : 0 : case RTE_FLOW_ITEM_TYPE_VXLAN_GPE:
368 [ # # ]: 0 : MLX5_XSET_ITEM_MASK_SPEC(vxlan_gpe, hdr.proto);
369 [ # # ]: 0 : ret = mlx5_nsh_proto_to_item_type(spec, mask);
370 : : break;
371 : : default:
372 : : ret = RTE_FLOW_ITEM_TYPE_VOID;
373 : : break;
374 : : }
375 : : return ret;
376 : : #undef MLX5_XSET_ITEM_MASK_SPEC
377 : : }
378 : :
379 : : static const int *
380 : : mlx5_flow_expand_rss_skip_explicit(const struct mlx5_flow_expand_node graph[],
381 : : const int *next_node)
382 : : {
383 : : const struct mlx5_flow_expand_node *node = NULL;
384 : : const int *next = next_node;
385 : :
386 [ # # # # : 0 : while (next && *next) {
# # # # #
# # # # #
# # ]
387 : : /*
388 : : * Skip the nodes with the MLX5_EXPANSION_NODE_EXPLICIT
389 : : * flag set, because they were not found in the flow pattern.
390 : : */
391 : 0 : node = &graph[*next];
392 [ # # # # : 0 : if (!(node->node_flags & MLX5_EXPANSION_NODE_EXPLICIT))
# # # # ]
393 : : break;
394 : 0 : next = node->next;
395 : : }
396 : : return next;
397 : : }
398 : :
399 : : #define MLX5_RSS_EXP_ELT_N 32
400 : :
401 : : /**
402 : : * Expand RSS flows into several possible flows according to the RSS hash
403 : : * fields requested and the driver capabilities.
404 : : *
405 : : * @param[out] buf
406 : : * Buffer to store the result expansion.
407 : : * @param[in] size
408 : : * Buffer size in bytes. If 0, @p buf can be NULL.
409 : : * @param[in] pattern
410 : : * User flow pattern.
411 : : * @param[in] types
412 : : * RSS types to expand (see RTE_ETH_RSS_* definitions).
413 : : * @param[in] graph
414 : : * Input graph to expand @p pattern according to @p types.
415 : : * @param[in] graph_root_index
416 : : * Index of root node in @p graph, typically 0.
417 : : *
418 : : * @return
419 : : * A positive value representing the size of @p buf in bytes regardless of
420 : : * @p size on success, a negative errno value otherwise and rte_errno is
421 : : * set, the following errors are defined:
422 : : *
423 : : * -E2BIG: graph-depth @p graph is too deep.
424 : : * -EINVAL: @p size has not enough space for expanded pattern.
425 : : */
426 : : static int
427 : 0 : mlx5_flow_expand_rss(struct mlx5_flow_expand_rss *buf, size_t size,
428 : : const struct rte_flow_item *pattern, uint64_t types,
429 : : const struct mlx5_flow_expand_node graph[],
430 : : int graph_root_index)
431 : : {
432 : : const struct rte_flow_item *item;
433 [ # # ]: 0 : const struct mlx5_flow_expand_node *node = &graph[graph_root_index];
434 : : const int *next_node;
435 : : const int *stack[MLX5_RSS_EXP_ELT_N];
436 : : int stack_pos = 0;
437 : : struct rte_flow_item flow_items[MLX5_RSS_EXP_ELT_N];
438 : : unsigned int i, item_idx, last_expand_item_idx = 0;
439 : : size_t lsize;
440 : : size_t user_pattern_size = 0;
441 : : void *addr = NULL;
442 : : const struct mlx5_flow_expand_node *next = NULL;
443 : : struct rte_flow_item missed_item;
444 : : int missed = 0;
445 : : int elt = 0;
446 : : const struct rte_flow_item *last_expand_item = NULL;
447 : :
448 : : memset(&missed_item, 0, sizeof(missed_item));
449 : : lsize = offsetof(struct mlx5_flow_expand_rss, entry) +
450 : : MLX5_RSS_EXP_ELT_N * sizeof(buf->entry[0]);
451 [ # # ]: 0 : if (lsize > size)
452 : : return -EINVAL;
453 : 0 : buf->entry[0].priority = 0;
454 : 0 : buf->entry[0].pattern = (void *)&buf->entry[MLX5_RSS_EXP_ELT_N];
455 : 0 : buf->entries = 0;
456 : : addr = buf->entry[0].pattern;
457 : 0 : for (item = pattern, item_idx = 0;
458 [ # # ]: 0 : item->type != RTE_FLOW_ITEM_TYPE_END;
459 : 0 : item++, item_idx++) {
460 [ # # ]: 0 : if (!mlx5_flow_is_rss_expandable_item(item)) {
461 : 0 : user_pattern_size += sizeof(*item);
462 : 0 : continue;
463 : : }
464 : : last_expand_item = item;
465 : : last_expand_item_idx = item_idx;
466 : : i = 0;
467 [ # # # # ]: 0 : while (node->next && node->next[i]) {
468 : 0 : next = &graph[node->next[i]];
469 [ # # ]: 0 : if (next->type == item->type)
470 : : break;
471 [ # # ]: 0 : if (next->node_flags & MLX5_EXPANSION_NODE_EXPLICIT) {
472 : : node = next;
473 : : i = 0;
474 : : } else {
475 : 0 : ++i;
476 : : }
477 : : }
478 [ # # ]: 0 : if (next)
479 : : node = next;
480 : 0 : user_pattern_size += sizeof(*item);
481 : : }
482 : 0 : user_pattern_size += sizeof(*item); /* Handle END item. */
483 : 0 : lsize += user_pattern_size;
484 [ # # ]: 0 : if (lsize > size)
485 : : return -EINVAL;
486 : : /* Copy the user pattern in the first entry of the buffer. */
487 : : rte_memcpy(addr, pattern, user_pattern_size);
488 : 0 : addr = (void *)(((uintptr_t)addr) + user_pattern_size);
489 : 0 : buf->entries = 1;
490 : : /* Start expanding. */
491 : : memset(flow_items, 0, sizeof(flow_items));
492 : : user_pattern_size -= sizeof(*item);
493 : : /*
494 : : * Check if the last valid item has spec set, need complete pattern,
495 : : * and the pattern can be used for expansion.
496 : : */
497 : 0 : missed_item.type = mlx5_flow_expand_rss_item_complete(last_expand_item);
498 [ # # ]: 0 : if (missed_item.type == RTE_FLOW_ITEM_TYPE_END) {
499 : : /* Item type END indicates expansion is not required. */
500 : 0 : return lsize;
501 : : }
502 [ # # ]: 0 : if (missed_item.type != RTE_FLOW_ITEM_TYPE_VOID) {
503 : : next = NULL;
504 : : missed = 1;
505 : : i = 0;
506 [ # # # # ]: 0 : while (node->next && node->next[i]) {
507 : 0 : next = &graph[node->next[i]];
508 [ # # ]: 0 : if (next->type == missed_item.type) {
509 : 0 : flow_items[0].type = missed_item.type;
510 : : flow_items[1].type = RTE_FLOW_ITEM_TYPE_END;
511 : 0 : break;
512 : : }
513 [ # # ]: 0 : if (next->node_flags & MLX5_EXPANSION_NODE_EXPLICIT) {
514 : : node = next;
515 : : i = 0;
516 : : } else {
517 : 0 : ++i;
518 : : }
519 : : next = NULL;
520 : : }
521 : : }
522 [ # # ]: 0 : if (next && missed) {
523 : : elt = 2; /* missed item + item end. */
524 : : node = next;
525 : 0 : lsize += elt * sizeof(*item) + user_pattern_size;
526 [ # # ]: 0 : if (lsize > size)
527 : : return -EINVAL;
528 [ # # ]: 0 : if (node->rss_types & types) {
529 : 0 : buf->entry[buf->entries].priority = 1;
530 : 0 : buf->entry[buf->entries].pattern = addr;
531 : 0 : buf->entries++;
532 [ # # ]: 0 : rte_memcpy(addr, buf->entry[0].pattern,
533 : : user_pattern_size);
534 [ # # ]: 0 : addr = (void *)(((uintptr_t)addr) + user_pattern_size);
535 : : rte_memcpy(addr, flow_items, elt * sizeof(*item));
536 : 0 : addr = (void *)(((uintptr_t)addr) +
537 : : elt * sizeof(*item));
538 : : }
539 [ # # ]: 0 : } else if (last_expand_item != NULL) {
540 : 0 : node = mlx5_flow_expand_rss_adjust_node(pattern,
541 : : last_expand_item_idx, graph, node);
542 : : }
543 : : memset(flow_items, 0, sizeof(flow_items));
544 : : next_node = mlx5_flow_expand_rss_skip_explicit(graph,
545 : 0 : node->next);
546 : 0 : stack[stack_pos] = next_node;
547 [ # # ]: 0 : node = next_node ? &graph[*next_node] : NULL;
548 [ # # ]: 0 : while (node) {
549 : 0 : flow_items[stack_pos].type = node->type;
550 [ # # ]: 0 : if (node->rss_types & types) {
551 : : size_t n;
552 : : /*
553 : : * compute the number of items to copy from the
554 : : * expansion and copy it.
555 : : * When the stack_pos is 0, there are 1 element in it,
556 : : * plus the addition END item.
557 : : */
558 : 0 : elt = stack_pos + 2;
559 : 0 : flow_items[stack_pos + 1].type = RTE_FLOW_ITEM_TYPE_END;
560 : 0 : lsize += elt * sizeof(*item) + user_pattern_size;
561 [ # # ]: 0 : if (lsize > size)
562 : : return -EINVAL;
563 : : n = elt * sizeof(*item);
564 : : MLX5_ASSERT((buf->entries) < MLX5_RSS_EXP_ELT_N);
565 : 0 : buf->entry[buf->entries].priority =
566 : 0 : stack_pos + 1 + missed;
567 : 0 : buf->entry[buf->entries].pattern = addr;
568 : 0 : buf->entries++;
569 [ # # ]: 0 : rte_memcpy(addr, buf->entry[0].pattern,
570 : : user_pattern_size);
571 : 0 : addr = (void *)(((uintptr_t)addr) +
572 : : user_pattern_size);
573 [ # # ]: 0 : rte_memcpy(addr, &missed_item,
574 : : missed * sizeof(*item));
575 [ # # ]: 0 : addr = (void *)(((uintptr_t)addr) +
576 : : missed * sizeof(*item));
577 : : rte_memcpy(addr, flow_items, n);
578 : 0 : addr = (void *)(((uintptr_t)addr) + n);
579 : : }
580 : : /* Go deeper. */
581 [ # # ]: 0 : if (!(node->node_flags & MLX5_EXPANSION_NODE_OPTIONAL) &&
582 [ # # ]: 0 : node->next) {
583 : : next_node = mlx5_flow_expand_rss_skip_explicit(graph,
584 : : node->next);
585 [ # # ]: 0 : if (stack_pos++ == MLX5_RSS_EXP_ELT_N) {
586 : 0 : rte_errno = E2BIG;
587 : 0 : return -rte_errno;
588 : : }
589 : 0 : stack[stack_pos] = next_node;
590 [ # # ]: 0 : } else if (*(next_node + 1)) {
591 : : /* Follow up with the next possibility. */
592 : 0 : next_node = mlx5_flow_expand_rss_skip_explicit(graph,
593 : : ++next_node);
594 [ # # ]: 0 : } else if (!stack_pos) {
595 : : /*
596 : : * Completing the traverse over the different paths.
597 : : * The next_node is advanced to the terminator.
598 : : */
599 : 0 : ++next_node;
600 : : } else {
601 : : /* Move to the next path. */
602 [ # # ]: 0 : while (stack_pos) {
603 : 0 : next_node = stack[--stack_pos];
604 : 0 : next_node++;
605 [ # # ]: 0 : if (*next_node)
606 : : break;
607 : : }
608 : : next_node = mlx5_flow_expand_rss_skip_explicit(graph,
609 : : next_node);
610 : 0 : stack[stack_pos] = next_node;
611 : : }
612 [ # # # # ]: 0 : node = next_node && *next_node ? &graph[*next_node] : NULL;
613 : : };
614 : 0 : return lsize;
615 : : }
616 : :
617 : : /**
618 : : * Expand SQN flows into several possible flows according to the Tx queue
619 : : * number
620 : : *
621 : : * @param[in] buf
622 : : * Buffer to store the result expansion.
623 : : * @param[in] size
624 : : * Buffer size in bytes. If 0, @p buf can be NULL.
625 : : * @param[in] pattern
626 : : * User flow pattern.
627 : : * @param[in] sq_specs
628 : : * Buffer to store sq spec.
629 : : *
630 : : * @return
631 : : * 0 for success and negative value for failure
632 : : *
633 : : */
634 : : static int
635 : 0 : mlx5_flow_expand_sqn(struct mlx5_flow_expand_sqn *buf, size_t size,
636 : : const struct rte_flow_item *pattern,
637 : : struct mlx5_rte_flow_item_sq *sq_specs)
638 : : {
639 : : const struct rte_flow_item *item;
640 : : bool port_representor = false;
641 : : size_t user_pattern_size = 0;
642 : : struct rte_eth_dev *dev;
643 : : struct mlx5_priv *priv;
644 : : void *addr = NULL;
645 : : uint16_t port_id;
646 : : size_t lsize;
647 : : int elt = 2;
648 : : uint16_t i;
649 : :
650 : 0 : buf->entries = 0;
651 [ # # ]: 0 : for (item = pattern; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
652 [ # # ]: 0 : if (item->type == RTE_FLOW_ITEM_TYPE_PORT_REPRESENTOR) {
653 : 0 : const struct rte_flow_item_ethdev *pid_v = item->spec;
654 : :
655 [ # # ]: 0 : if (!pid_v)
656 : : return 0;
657 : 0 : port_id = pid_v->port_id;
658 : : port_representor = true;
659 : : }
660 : 0 : user_pattern_size += sizeof(*item);
661 : : }
662 [ # # ]: 0 : if (!port_representor)
663 : : return 0;
664 : 0 : dev = &rte_eth_devices[port_id];
665 : 0 : priv = dev->data->dev_private;
666 : 0 : buf->entry[0].pattern = (void *)&buf->entry[priv->txqs_n];
667 : 0 : lsize = offsetof(struct mlx5_flow_expand_sqn, entry) +
668 : 0 : sizeof(buf->entry[0]) * priv->txqs_n;
669 [ # # ]: 0 : if (lsize + (user_pattern_size + sizeof(struct rte_flow_item) * elt) * priv->txqs_n > size)
670 : : return -EINVAL;
671 : : addr = buf->entry[0].pattern;
672 [ # # ]: 0 : for (i = 0; i != priv->txqs_n; ++i) {
673 : 0 : struct rte_flow_item pattern_add[] = {
674 : : {
675 : : .type = (enum rte_flow_item_type)
676 : : MLX5_RTE_FLOW_ITEM_TYPE_SQ,
677 : 0 : .spec = &sq_specs[i],
678 : : },
679 : : {
680 : : .type = RTE_FLOW_ITEM_TYPE_END,
681 : : },
682 : : };
683 : 0 : struct mlx5_txq_ctrl *txq = mlx5_txq_get(dev, i);
684 : :
685 [ # # ]: 0 : if (txq == NULL)
686 : 0 : return -EINVAL;
687 : 0 : buf->entry[i].pattern = addr;
688 : 0 : sq_specs[i].queue = mlx5_txq_get_sqn(txq);
689 : 0 : mlx5_txq_release(dev, i);
690 : : rte_memcpy(addr, pattern, user_pattern_size);
691 [ # # ]: 0 : addr = (void *)(((uintptr_t)addr) + user_pattern_size);
692 : : rte_memcpy(addr, pattern_add, sizeof(struct rte_flow_item) * elt);
693 : 0 : addr = (void *)(((uintptr_t)addr) + sizeof(struct rte_flow_item) * elt);
694 : 0 : buf->entries++;
695 : : }
696 : : return 0;
697 : : }
698 : :
699 : : enum mlx5_expansion {
700 : : MLX5_EXPANSION_ROOT,
701 : : MLX5_EXPANSION_ROOT_OUTER,
702 : : MLX5_EXPANSION_OUTER_ETH,
703 : : MLX5_EXPANSION_OUTER_VLAN,
704 : : MLX5_EXPANSION_OUTER_IPV4,
705 : : MLX5_EXPANSION_OUTER_IPV4_UDP,
706 : : MLX5_EXPANSION_OUTER_IPV4_TCP,
707 : : MLX5_EXPANSION_OUTER_IPV4_ESP,
708 : : MLX5_EXPANSION_OUTER_IPV4_ICMP,
709 : : MLX5_EXPANSION_OUTER_IPV6,
710 : : MLX5_EXPANSION_OUTER_IPV6_UDP,
711 : : MLX5_EXPANSION_OUTER_IPV6_TCP,
712 : : MLX5_EXPANSION_OUTER_IPV6_ESP,
713 : : MLX5_EXPANSION_OUTER_IPV6_ICMP6,
714 : : MLX5_EXPANSION_VXLAN,
715 : : MLX5_EXPANSION_STD_VXLAN,
716 : : MLX5_EXPANSION_L3_VXLAN,
717 : : MLX5_EXPANSION_VXLAN_GPE,
718 : : MLX5_EXPANSION_GRE,
719 : : MLX5_EXPANSION_NVGRE,
720 : : MLX5_EXPANSION_GRE_KEY,
721 : : MLX5_EXPANSION_MPLS,
722 : : MLX5_EXPANSION_ETH,
723 : : MLX5_EXPANSION_VLAN,
724 : : MLX5_EXPANSION_IPV4,
725 : : MLX5_EXPANSION_IPV4_UDP,
726 : : MLX5_EXPANSION_IPV4_TCP,
727 : : MLX5_EXPANSION_IPV4_ESP,
728 : : MLX5_EXPANSION_IPV4_ICMP,
729 : : MLX5_EXPANSION_IPV6,
730 : : MLX5_EXPANSION_IPV6_UDP,
731 : : MLX5_EXPANSION_IPV6_TCP,
732 : : MLX5_EXPANSION_IPV6_ESP,
733 : : MLX5_EXPANSION_IPV6_ICMP6,
734 : : MLX5_EXPANSION_IPV6_FRAG_EXT,
735 : : MLX5_EXPANSION_GTP,
736 : : MLX5_EXPANSION_GENEVE,
737 : : };
738 : :
739 : : /** Supported expansion of items. */
740 : : static const struct mlx5_flow_expand_node mlx5_support_expansion[] = {
741 : : [MLX5_EXPANSION_ROOT] = {
742 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_ETH,
743 : : MLX5_EXPANSION_IPV4,
744 : : MLX5_EXPANSION_IPV6),
745 : : .type = RTE_FLOW_ITEM_TYPE_END,
746 : : },
747 : : [MLX5_EXPANSION_ROOT_OUTER] = {
748 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_OUTER_ETH,
749 : : MLX5_EXPANSION_OUTER_IPV4,
750 : : MLX5_EXPANSION_OUTER_IPV6),
751 : : .type = RTE_FLOW_ITEM_TYPE_END,
752 : : },
753 : : [MLX5_EXPANSION_OUTER_ETH] = {
754 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_OUTER_VLAN),
755 : : .type = RTE_FLOW_ITEM_TYPE_ETH,
756 : : .rss_types = 0,
757 : : },
758 : : [MLX5_EXPANSION_OUTER_VLAN] = {
759 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_OUTER_IPV4,
760 : : MLX5_EXPANSION_OUTER_IPV6),
761 : : .type = RTE_FLOW_ITEM_TYPE_VLAN,
762 : : .node_flags = MLX5_EXPANSION_NODE_EXPLICIT,
763 : : },
764 : : [MLX5_EXPANSION_OUTER_IPV4] = {
765 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT
766 : : (MLX5_EXPANSION_OUTER_IPV4_UDP,
767 : : MLX5_EXPANSION_OUTER_IPV4_TCP,
768 : : MLX5_EXPANSION_OUTER_IPV4_ESP,
769 : : MLX5_EXPANSION_OUTER_IPV4_ICMP,
770 : : MLX5_EXPANSION_GRE,
771 : : MLX5_EXPANSION_NVGRE,
772 : : MLX5_EXPANSION_IPV4,
773 : : MLX5_EXPANSION_IPV6),
774 : : .type = RTE_FLOW_ITEM_TYPE_IPV4,
775 : : .rss_types = RTE_ETH_RSS_IPV4 | RTE_ETH_RSS_FRAG_IPV4 |
776 : : RTE_ETH_RSS_NONFRAG_IPV4_OTHER,
777 : : },
778 : : [MLX5_EXPANSION_OUTER_IPV4_UDP] = {
779 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_VXLAN,
780 : : MLX5_EXPANSION_VXLAN_GPE,
781 : : MLX5_EXPANSION_MPLS,
782 : : MLX5_EXPANSION_GENEVE,
783 : : MLX5_EXPANSION_GTP),
784 : : .type = RTE_FLOW_ITEM_TYPE_UDP,
785 : : .rss_types = RTE_ETH_RSS_NONFRAG_IPV4_UDP,
786 : : },
787 : : [MLX5_EXPANSION_OUTER_IPV4_TCP] = {
788 : : .type = RTE_FLOW_ITEM_TYPE_TCP,
789 : : .rss_types = RTE_ETH_RSS_NONFRAG_IPV4_TCP,
790 : : },
791 : : [MLX5_EXPANSION_OUTER_IPV4_ESP] = {
792 : : .type = RTE_FLOW_ITEM_TYPE_ESP,
793 : : .rss_types = RTE_ETH_RSS_ESP,
794 : : },
795 : : [MLX5_EXPANSION_OUTER_IPV4_ICMP] = {
796 : : .type = RTE_FLOW_ITEM_TYPE_ICMP,
797 : : },
798 : : [MLX5_EXPANSION_OUTER_IPV6] = {
799 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT
800 : : (MLX5_EXPANSION_OUTER_IPV6_UDP,
801 : : MLX5_EXPANSION_OUTER_IPV6_TCP,
802 : : MLX5_EXPANSION_OUTER_IPV6_ESP,
803 : : MLX5_EXPANSION_OUTER_IPV6_ICMP6,
804 : : MLX5_EXPANSION_IPV4,
805 : : MLX5_EXPANSION_IPV6,
806 : : MLX5_EXPANSION_GRE,
807 : : MLX5_EXPANSION_NVGRE),
808 : : .type = RTE_FLOW_ITEM_TYPE_IPV6,
809 : : .rss_types = RTE_ETH_RSS_IPV6 | RTE_ETH_RSS_FRAG_IPV6 |
810 : : RTE_ETH_RSS_NONFRAG_IPV6_OTHER,
811 : : },
812 : : [MLX5_EXPANSION_OUTER_IPV6_UDP] = {
813 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_VXLAN,
814 : : MLX5_EXPANSION_VXLAN_GPE,
815 : : MLX5_EXPANSION_MPLS,
816 : : MLX5_EXPANSION_GENEVE,
817 : : MLX5_EXPANSION_GTP),
818 : : .type = RTE_FLOW_ITEM_TYPE_UDP,
819 : : .rss_types = RTE_ETH_RSS_NONFRAG_IPV6_UDP,
820 : : },
821 : : [MLX5_EXPANSION_OUTER_IPV6_TCP] = {
822 : : .type = RTE_FLOW_ITEM_TYPE_TCP,
823 : : .rss_types = RTE_ETH_RSS_NONFRAG_IPV6_TCP,
824 : : },
825 : : [MLX5_EXPANSION_OUTER_IPV6_ESP] = {
826 : : .type = RTE_FLOW_ITEM_TYPE_ESP,
827 : : .rss_types = RTE_ETH_RSS_ESP,
828 : : },
829 : : [MLX5_EXPANSION_OUTER_IPV6_ICMP6] = {
830 : : .type = RTE_FLOW_ITEM_TYPE_ICMP6,
831 : : },
832 : : [MLX5_EXPANSION_VXLAN] = {
833 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_ETH,
834 : : MLX5_EXPANSION_IPV4,
835 : : MLX5_EXPANSION_IPV6),
836 : : .type = RTE_FLOW_ITEM_TYPE_VXLAN,
837 : : },
838 : : [MLX5_EXPANSION_STD_VXLAN] = {
839 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_ETH),
840 : : .type = RTE_FLOW_ITEM_TYPE_VXLAN,
841 : : },
842 : : [MLX5_EXPANSION_L3_VXLAN] = {
843 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_IPV4,
844 : : MLX5_EXPANSION_IPV6),
845 : : .type = RTE_FLOW_ITEM_TYPE_VXLAN,
846 : : },
847 : : [MLX5_EXPANSION_VXLAN_GPE] = {
848 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_ETH,
849 : : MLX5_EXPANSION_IPV4,
850 : : MLX5_EXPANSION_IPV6),
851 : : .type = RTE_FLOW_ITEM_TYPE_VXLAN_GPE,
852 : : },
853 : : [MLX5_EXPANSION_GRE] = {
854 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_ETH,
855 : : MLX5_EXPANSION_IPV4,
856 : : MLX5_EXPANSION_IPV6,
857 : : MLX5_EXPANSION_GRE_KEY,
858 : : MLX5_EXPANSION_MPLS),
859 : : .type = RTE_FLOW_ITEM_TYPE_GRE,
860 : : },
861 : : [MLX5_EXPANSION_GRE_KEY] = {
862 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_IPV4,
863 : : MLX5_EXPANSION_IPV6,
864 : : MLX5_EXPANSION_MPLS),
865 : : .type = RTE_FLOW_ITEM_TYPE_GRE_KEY,
866 : : .node_flags = MLX5_EXPANSION_NODE_OPTIONAL,
867 : : },
868 : : [MLX5_EXPANSION_NVGRE] = {
869 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_ETH),
870 : : .type = RTE_FLOW_ITEM_TYPE_NVGRE,
871 : : },
872 : : [MLX5_EXPANSION_MPLS] = {
873 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_IPV4,
874 : : MLX5_EXPANSION_IPV6,
875 : : MLX5_EXPANSION_ETH),
876 : : .type = RTE_FLOW_ITEM_TYPE_MPLS,
877 : : .node_flags = MLX5_EXPANSION_NODE_OPTIONAL,
878 : : },
879 : : [MLX5_EXPANSION_ETH] = {
880 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_VLAN),
881 : : .type = RTE_FLOW_ITEM_TYPE_ETH,
882 : : },
883 : : [MLX5_EXPANSION_VLAN] = {
884 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_IPV4,
885 : : MLX5_EXPANSION_IPV6),
886 : : .type = RTE_FLOW_ITEM_TYPE_VLAN,
887 : : .node_flags = MLX5_EXPANSION_NODE_EXPLICIT,
888 : : },
889 : : [MLX5_EXPANSION_IPV4] = {
890 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_IPV4_UDP,
891 : : MLX5_EXPANSION_IPV4_TCP,
892 : : MLX5_EXPANSION_IPV4_ESP,
893 : : MLX5_EXPANSION_IPV4_ICMP),
894 : : .type = RTE_FLOW_ITEM_TYPE_IPV4,
895 : : .rss_types = RTE_ETH_RSS_IPV4 | RTE_ETH_RSS_FRAG_IPV4 |
896 : : RTE_ETH_RSS_NONFRAG_IPV4_OTHER,
897 : : },
898 : : [MLX5_EXPANSION_IPV4_UDP] = {
899 : : .type = RTE_FLOW_ITEM_TYPE_UDP,
900 : : .rss_types = RTE_ETH_RSS_NONFRAG_IPV4_UDP,
901 : : },
902 : : [MLX5_EXPANSION_IPV4_TCP] = {
903 : : .type = RTE_FLOW_ITEM_TYPE_TCP,
904 : : .rss_types = RTE_ETH_RSS_NONFRAG_IPV4_TCP,
905 : : },
906 : : [MLX5_EXPANSION_IPV4_ESP] = {
907 : : .type = RTE_FLOW_ITEM_TYPE_ESP,
908 : : .rss_types = RTE_ETH_RSS_ESP,
909 : : },
910 : : [MLX5_EXPANSION_IPV4_ICMP] = {
911 : : .type = RTE_FLOW_ITEM_TYPE_ICMP,
912 : : },
913 : : [MLX5_EXPANSION_IPV6] = {
914 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_IPV6_UDP,
915 : : MLX5_EXPANSION_IPV6_TCP,
916 : : MLX5_EXPANSION_IPV6_ESP,
917 : : MLX5_EXPANSION_IPV6_ICMP6,
918 : : MLX5_EXPANSION_IPV6_FRAG_EXT),
919 : : .type = RTE_FLOW_ITEM_TYPE_IPV6,
920 : : .rss_types = RTE_ETH_RSS_IPV6 | RTE_ETH_RSS_FRAG_IPV6 |
921 : : RTE_ETH_RSS_NONFRAG_IPV6_OTHER,
922 : : },
923 : : [MLX5_EXPANSION_IPV6_UDP] = {
924 : : .type = RTE_FLOW_ITEM_TYPE_UDP,
925 : : .rss_types = RTE_ETH_RSS_NONFRAG_IPV6_UDP,
926 : : },
927 : : [MLX5_EXPANSION_IPV6_TCP] = {
928 : : .type = RTE_FLOW_ITEM_TYPE_TCP,
929 : : .rss_types = RTE_ETH_RSS_NONFRAG_IPV6_TCP,
930 : : },
931 : : [MLX5_EXPANSION_IPV6_ESP] = {
932 : : .type = RTE_FLOW_ITEM_TYPE_ESP,
933 : : .rss_types = RTE_ETH_RSS_ESP,
934 : : },
935 : : [MLX5_EXPANSION_IPV6_FRAG_EXT] = {
936 : : .type = RTE_FLOW_ITEM_TYPE_IPV6_FRAG_EXT,
937 : : },
938 : : [MLX5_EXPANSION_IPV6_ICMP6] = {
939 : : .type = RTE_FLOW_ITEM_TYPE_ICMP6,
940 : : },
941 : : [MLX5_EXPANSION_GTP] = {
942 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_IPV4,
943 : : MLX5_EXPANSION_IPV6),
944 : : .type = RTE_FLOW_ITEM_TYPE_GTP,
945 : : },
946 : : [MLX5_EXPANSION_GENEVE] = {
947 : : .next = MLX5_FLOW_EXPAND_RSS_NEXT(MLX5_EXPANSION_ETH,
948 : : MLX5_EXPANSION_IPV4,
949 : : MLX5_EXPANSION_IPV6),
950 : : .type = RTE_FLOW_ITEM_TYPE_GENEVE,
951 : : },
952 : : };
953 : :
954 : : static struct rte_flow_action_handle *
955 : : mlx5_action_handle_create(struct rte_eth_dev *dev,
956 : : const struct rte_flow_indir_action_conf *conf,
957 : : const struct rte_flow_action *action,
958 : : struct rte_flow_error *error);
959 : : static int mlx5_action_handle_destroy
960 : : (struct rte_eth_dev *dev,
961 : : struct rte_flow_action_handle *handle,
962 : : struct rte_flow_error *error);
963 : : static int mlx5_action_handle_update
964 : : (struct rte_eth_dev *dev,
965 : : struct rte_flow_action_handle *handle,
966 : : const void *update,
967 : : struct rte_flow_error *error);
968 : : static int mlx5_action_handle_query
969 : : (struct rte_eth_dev *dev,
970 : : const struct rte_flow_action_handle *handle,
971 : : void *data,
972 : : struct rte_flow_error *error);
973 : : static int
974 : : mlx5_flow_tunnel_decap_set(struct rte_eth_dev *dev,
975 : : struct rte_flow_tunnel *app_tunnel,
976 : : struct rte_flow_action **actions,
977 : : uint32_t *num_of_actions,
978 : : struct rte_flow_error *error);
979 : : static int
980 : : mlx5_flow_tunnel_match(struct rte_eth_dev *dev,
981 : : struct rte_flow_tunnel *app_tunnel,
982 : : struct rte_flow_item **items,
983 : : uint32_t *num_of_items,
984 : : struct rte_flow_error *error);
985 : : static int
986 : : mlx5_flow_tunnel_item_release(struct rte_eth_dev *dev,
987 : : struct rte_flow_item *pmd_items,
988 : : uint32_t num_items, struct rte_flow_error *err);
989 : : static int
990 : : mlx5_flow_tunnel_action_release(struct rte_eth_dev *dev,
991 : : struct rte_flow_action *pmd_actions,
992 : : uint32_t num_actions,
993 : : struct rte_flow_error *err);
994 : : static int
995 : : mlx5_flow_tunnel_get_restore_info(struct rte_eth_dev *dev,
996 : : struct rte_mbuf *m,
997 : : struct rte_flow_restore_info *info,
998 : : struct rte_flow_error *err);
999 : : static struct rte_flow_item_flex_handle *
1000 : : mlx5_flow_flex_item_create(struct rte_eth_dev *dev,
1001 : : const struct rte_flow_item_flex_conf *conf,
1002 : : struct rte_flow_error *error);
1003 : : static int
1004 : : mlx5_flow_flex_item_release(struct rte_eth_dev *dev,
1005 : : const struct rte_flow_item_flex_handle *handle,
1006 : : struct rte_flow_error *error);
1007 : : static int
1008 : : mlx5_flow_info_get(struct rte_eth_dev *dev,
1009 : : struct rte_flow_port_info *port_info,
1010 : : struct rte_flow_queue_info *queue_info,
1011 : : struct rte_flow_error *error);
1012 : : static int
1013 : : mlx5_flow_port_configure(struct rte_eth_dev *dev,
1014 : : const struct rte_flow_port_attr *port_attr,
1015 : : uint16_t nb_queue,
1016 : : const struct rte_flow_queue_attr *queue_attr[],
1017 : : struct rte_flow_error *err);
1018 : :
1019 : : static struct rte_flow_pattern_template *
1020 : : mlx5_flow_pattern_template_create(struct rte_eth_dev *dev,
1021 : : const struct rte_flow_pattern_template_attr *attr,
1022 : : const struct rte_flow_item items[],
1023 : : struct rte_flow_error *error);
1024 : :
1025 : : static int
1026 : : mlx5_flow_pattern_template_destroy(struct rte_eth_dev *dev,
1027 : : struct rte_flow_pattern_template *template,
1028 : : struct rte_flow_error *error);
1029 : : static struct rte_flow_actions_template *
1030 : : mlx5_flow_actions_template_create(struct rte_eth_dev *dev,
1031 : : const struct rte_flow_actions_template_attr *attr,
1032 : : const struct rte_flow_action actions[],
1033 : : const struct rte_flow_action masks[],
1034 : : struct rte_flow_error *error);
1035 : : static int
1036 : : mlx5_flow_actions_template_destroy(struct rte_eth_dev *dev,
1037 : : struct rte_flow_actions_template *template,
1038 : : struct rte_flow_error *error);
1039 : :
1040 : : static struct rte_flow_template_table *
1041 : : mlx5_flow_table_create(struct rte_eth_dev *dev,
1042 : : const struct rte_flow_template_table_attr *attr,
1043 : : struct rte_flow_pattern_template *item_templates[],
1044 : : uint8_t nb_item_templates,
1045 : : struct rte_flow_actions_template *action_templates[],
1046 : : uint8_t nb_action_templates,
1047 : : struct rte_flow_error *error);
1048 : : static int
1049 : : mlx5_flow_table_destroy(struct rte_eth_dev *dev,
1050 : : struct rte_flow_template_table *table,
1051 : : struct rte_flow_error *error);
1052 : : static int
1053 : : mlx5_flow_group_set_miss_actions(struct rte_eth_dev *dev,
1054 : : uint32_t group_id,
1055 : : const struct rte_flow_group_attr *attr,
1056 : : const struct rte_flow_action actions[],
1057 : : struct rte_flow_error *error);
1058 : :
1059 : : static int
1060 : : mlx5_action_handle_query_update(struct rte_eth_dev *dev,
1061 : : struct rte_flow_action_handle *handle,
1062 : : const void *update, void *query,
1063 : : enum rte_flow_query_update_mode qu_mode,
1064 : : struct rte_flow_error *error);
1065 : :
1066 : : static struct rte_flow_action_list_handle *
1067 : : mlx5_action_list_handle_create(struct rte_eth_dev *dev,
1068 : : const struct rte_flow_indir_action_conf *conf,
1069 : : const struct rte_flow_action *actions,
1070 : : struct rte_flow_error *error);
1071 : :
1072 : : static int
1073 : : mlx5_action_list_handle_destroy(struct rte_eth_dev *dev,
1074 : : struct rte_flow_action_list_handle *handle,
1075 : : struct rte_flow_error *error);
1076 : :
1077 : : static int
1078 : : mlx5_flow_action_list_handle_query_update(struct rte_eth_dev *dev,
1079 : : const
1080 : : struct rte_flow_action_list_handle *handle,
1081 : : const void **update, void **query,
1082 : : enum rte_flow_query_update_mode mode,
1083 : : struct rte_flow_error *error);
1084 : :
1085 : : static int
1086 : : mlx5_flow_calc_table_hash(struct rte_eth_dev *dev,
1087 : : const struct rte_flow_template_table *table,
1088 : : const struct rte_flow_item pattern[],
1089 : : uint8_t pattern_template_index,
1090 : : uint32_t *hash, struct rte_flow_error *error);
1091 : : static int
1092 : : mlx5_flow_calc_encap_hash(struct rte_eth_dev *dev,
1093 : : const struct rte_flow_item pattern[],
1094 : : enum rte_flow_encap_hash_field dest_field,
1095 : : uint8_t *hash,
1096 : : struct rte_flow_error *error);
1097 : :
1098 : : static int
1099 : : mlx5_template_table_resize(struct rte_eth_dev *dev,
1100 : : struct rte_flow_template_table *table,
1101 : : uint32_t nb_rules, struct rte_flow_error *error);
1102 : : static int
1103 : : mlx5_flow_async_update_resized(struct rte_eth_dev *dev, uint32_t queue,
1104 : : const struct rte_flow_op_attr *attr,
1105 : : struct rte_flow *rule, void *user_data,
1106 : : struct rte_flow_error *error);
1107 : : static int
1108 : : mlx5_table_resize_complete(struct rte_eth_dev *dev,
1109 : : struct rte_flow_template_table *table,
1110 : : struct rte_flow_error *error);
1111 : :
1112 : : static const struct rte_flow_ops mlx5_flow_ops = {
1113 : : .validate = mlx5_flow_validate,
1114 : : .create = mlx5_flow_create,
1115 : : .destroy = mlx5_flow_destroy,
1116 : : .flush = mlx5_flow_flush,
1117 : : .isolate = mlx5_flow_isolate,
1118 : : .query = mlx5_flow_query,
1119 : : .dev_dump = mlx5_flow_dev_dump,
1120 : : .get_q_aged_flows = mlx5_flow_get_q_aged_flows,
1121 : : .get_aged_flows = mlx5_flow_get_aged_flows,
1122 : : .action_handle_create = mlx5_action_handle_create,
1123 : : .action_handle_destroy = mlx5_action_handle_destroy,
1124 : : .action_handle_update = mlx5_action_handle_update,
1125 : : .action_handle_query = mlx5_action_handle_query,
1126 : : .action_handle_query_update = mlx5_action_handle_query_update,
1127 : : .action_list_handle_create = mlx5_action_list_handle_create,
1128 : : .action_list_handle_destroy = mlx5_action_list_handle_destroy,
1129 : : .tunnel_decap_set = mlx5_flow_tunnel_decap_set,
1130 : : .tunnel_match = mlx5_flow_tunnel_match,
1131 : : .tunnel_action_decap_release = mlx5_flow_tunnel_action_release,
1132 : : .tunnel_item_release = mlx5_flow_tunnel_item_release,
1133 : : .get_restore_info = mlx5_flow_tunnel_get_restore_info,
1134 : : .flex_item_create = mlx5_flow_flex_item_create,
1135 : : .flex_item_release = mlx5_flow_flex_item_release,
1136 : : .info_get = mlx5_flow_info_get,
1137 : : .pick_transfer_proxy = mlx5_flow_pick_transfer_proxy,
1138 : : .configure = mlx5_flow_port_configure,
1139 : : .pattern_template_create = mlx5_flow_pattern_template_create,
1140 : : .pattern_template_destroy = mlx5_flow_pattern_template_destroy,
1141 : : .actions_template_create = mlx5_flow_actions_template_create,
1142 : : .actions_template_destroy = mlx5_flow_actions_template_destroy,
1143 : : .template_table_create = mlx5_flow_table_create,
1144 : : .template_table_destroy = mlx5_flow_table_destroy,
1145 : : .group_set_miss_actions = mlx5_flow_group_set_miss_actions,
1146 : : .action_list_handle_query_update =
1147 : : mlx5_flow_action_list_handle_query_update,
1148 : : .flow_calc_table_hash = mlx5_flow_calc_table_hash,
1149 : : .flow_calc_encap_hash = mlx5_flow_calc_encap_hash,
1150 : : .flow_template_table_resize = mlx5_template_table_resize,
1151 : : .flow_update_resized = mlx5_flow_async_update_resized,
1152 : : .flow_template_table_resize_complete = mlx5_table_resize_complete,
1153 : : };
1154 : :
1155 : : /* Tunnel information. */
1156 : : struct mlx5_flow_tunnel_info {
1157 : : uint64_t tunnel; /**< Tunnel bit (see MLX5_FLOW_*). */
1158 : : uint32_t ptype; /**< Tunnel Ptype (see RTE_PTYPE_*). */
1159 : : };
1160 : :
1161 : : static struct mlx5_flow_tunnel_info tunnels_info[] = {
1162 : : {
1163 : : .tunnel = MLX5_FLOW_LAYER_VXLAN,
1164 : : .ptype = RTE_PTYPE_TUNNEL_VXLAN | RTE_PTYPE_L4_UDP,
1165 : : },
1166 : : {
1167 : : .tunnel = MLX5_FLOW_LAYER_GENEVE,
1168 : : .ptype = RTE_PTYPE_TUNNEL_GENEVE | RTE_PTYPE_L4_UDP,
1169 : : },
1170 : : {
1171 : : .tunnel = MLX5_FLOW_LAYER_VXLAN_GPE,
1172 : : .ptype = RTE_PTYPE_TUNNEL_VXLAN_GPE | RTE_PTYPE_L4_UDP,
1173 : : },
1174 : : {
1175 : : .tunnel = MLX5_FLOW_LAYER_GRE,
1176 : : .ptype = RTE_PTYPE_TUNNEL_GRE,
1177 : : },
1178 : : {
1179 : : .tunnel = MLX5_FLOW_LAYER_MPLS | MLX5_FLOW_LAYER_OUTER_L4_UDP,
1180 : : .ptype = RTE_PTYPE_TUNNEL_MPLS_IN_UDP | RTE_PTYPE_L4_UDP,
1181 : : },
1182 : : {
1183 : : .tunnel = MLX5_FLOW_LAYER_MPLS,
1184 : : .ptype = RTE_PTYPE_TUNNEL_MPLS_IN_GRE,
1185 : : },
1186 : : {
1187 : : .tunnel = MLX5_FLOW_LAYER_NVGRE,
1188 : : .ptype = RTE_PTYPE_TUNNEL_NVGRE,
1189 : : },
1190 : : {
1191 : : .tunnel = MLX5_FLOW_LAYER_IPIP,
1192 : : .ptype = RTE_PTYPE_TUNNEL_IP,
1193 : : },
1194 : : {
1195 : : .tunnel = MLX5_FLOW_LAYER_IPV6_ENCAP,
1196 : : .ptype = RTE_PTYPE_TUNNEL_IP,
1197 : : },
1198 : : {
1199 : : .tunnel = MLX5_FLOW_LAYER_GTP,
1200 : : .ptype = RTE_PTYPE_TUNNEL_GTPU,
1201 : : },
1202 : : };
1203 : :
1204 : :
1205 : :
1206 : : /**
1207 : : * Translate tag ID to register.
1208 : : *
1209 : : * @param[in] dev
1210 : : * Pointer to the Ethernet device structure.
1211 : : * @param[in] feature
1212 : : * The feature that request the register.
1213 : : * @param[in] id
1214 : : * The request register ID.
1215 : : * @param[out] error
1216 : : * Error description in case of any.
1217 : : *
1218 : : * @return
1219 : : * The request register on success, a negative errno
1220 : : * value otherwise and rte_errno is set.
1221 : : */
1222 : : int
1223 : 0 : mlx5_flow_get_reg_id(struct rte_eth_dev *dev,
1224 : : enum mlx5_feature_name feature,
1225 : : uint32_t id,
1226 : : struct rte_flow_error *error)
1227 : : {
1228 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
1229 : 0 : struct mlx5_sh_config *config = &priv->sh->config;
1230 : : struct mlx5_dev_registers *reg = &priv->sh->registers;
1231 : : enum modify_reg start_reg;
1232 : : bool skip_mtr_reg = false;
1233 : :
1234 [ # # # # : 0 : switch (feature) {
# # # # #
# # ]
1235 : : case MLX5_HAIRPIN_RX:
1236 : : return REG_B;
1237 : 0 : case MLX5_HAIRPIN_TX:
1238 : 0 : return REG_A;
1239 : 0 : case MLX5_METADATA_RX:
1240 [ # # # # : 0 : switch (config->dv_xmeta_en) {
# ]
1241 : : case MLX5_XMETA_MODE_LEGACY:
1242 : : return REG_B;
1243 : 0 : case MLX5_XMETA_MODE_META16:
1244 : 0 : return REG_C_0;
1245 : 0 : case MLX5_XMETA_MODE_META32:
1246 : 0 : return REG_C_1;
1247 : 0 : case MLX5_XMETA_MODE_META32_HWS:
1248 : 0 : return REG_C_1;
1249 : : }
1250 : : break;
1251 : 0 : case MLX5_METADATA_TX:
1252 [ # # ]: 0 : if (config->dv_flow_en == 2 && config->dv_xmeta_en == MLX5_XMETA_MODE_META32_HWS) {
1253 : : return REG_C_1;
1254 : : } else {
1255 : 0 : return REG_A;
1256 : : }
1257 : 0 : case MLX5_METADATA_FDB:
1258 [ # # # # : 0 : switch (config->dv_xmeta_en) {
# ]
1259 : : case MLX5_XMETA_MODE_LEGACY:
1260 : : return REG_NON;
1261 : 0 : case MLX5_XMETA_MODE_META16:
1262 : 0 : return REG_C_0;
1263 : 0 : case MLX5_XMETA_MODE_META32:
1264 : 0 : return REG_C_1;
1265 : 0 : case MLX5_XMETA_MODE_META32_HWS:
1266 : 0 : return REG_C_1;
1267 : : }
1268 : : break;
1269 : 0 : case MLX5_FLOW_MARK:
1270 [ # # # # ]: 0 : switch (config->dv_xmeta_en) {
1271 : : case MLX5_XMETA_MODE_LEGACY:
1272 : : case MLX5_XMETA_MODE_META32_HWS:
1273 : : return REG_NON;
1274 : 0 : case MLX5_XMETA_MODE_META16:
1275 : 0 : return REG_C_1;
1276 : 0 : case MLX5_XMETA_MODE_META32:
1277 : 0 : return REG_C_0;
1278 : : }
1279 : : break;
1280 : 0 : case MLX5_MTR_ID:
1281 : : /*
1282 : : * If meter color and meter id share one register, flow match
1283 : : * should use the meter color register for match.
1284 : : */
1285 [ # # ]: 0 : if (priv->mtr_reg_share)
1286 : 0 : return reg->aso_reg;
1287 : : else
1288 [ # # ]: 0 : return reg->aso_reg != REG_C_2 ? REG_C_2 :
1289 : : REG_C_3;
1290 : 0 : case MLX5_MTR_COLOR:
1291 : : case MLX5_ASO_FLOW_HIT:
1292 : : case MLX5_ASO_CONNTRACK:
1293 : : case MLX5_SAMPLE_ID:
1294 : : /* All features use the same REG_C. */
1295 : : MLX5_ASSERT(reg->aso_reg != REG_NON);
1296 : 0 : return reg->aso_reg;
1297 : 0 : case MLX5_COPY_MARK:
1298 : : /*
1299 : : * Metadata COPY_MARK register using is in meter suffix sub
1300 : : * flow while with meter. It's safe to share the same register.
1301 : : */
1302 [ # # ]: 0 : return reg->aso_reg != REG_C_2 ? REG_C_2 : REG_C_3;
1303 : 0 : case MLX5_APP_TAG:
1304 : : /*
1305 : : * If meter is enable, it will engage the register for color
1306 : : * match and flow match. If meter color match is not using the
1307 : : * REG_C_2, need to skip the REG_C_x be used by meter color
1308 : : * match.
1309 : : * If meter is disable, free to use all available registers.
1310 : : */
1311 [ # # ]: 0 : start_reg = reg->aso_reg != REG_C_2 ? REG_C_2 :
1312 [ # # ]: 0 : (priv->mtr_reg_share ? REG_C_3 : REG_C_4);
1313 [ # # # # ]: 0 : skip_mtr_reg = !!(priv->mtr_en && start_reg == REG_C_2);
1314 [ # # ]: 0 : if (id > (uint32_t)(REG_C_7 - start_reg))
1315 : 0 : return rte_flow_error_set(error, EINVAL,
1316 : : RTE_FLOW_ERROR_TYPE_ITEM,
1317 : : NULL, "invalid tag id");
1318 [ # # ]: 0 : if (priv->sh->flow_mreg_c[id + start_reg - REG_C_0] == REG_NON)
1319 : 0 : return rte_flow_error_set(error, ENOTSUP,
1320 : : RTE_FLOW_ERROR_TYPE_ITEM,
1321 : : NULL, "unsupported tag id");
1322 : : /*
1323 : : * This case means meter is using the REG_C_x great than 2.
1324 : : * Take care not to conflict with meter color REG_C_x.
1325 : : * If the available index REG_C_y >= REG_C_x, skip the
1326 : : * color register.
1327 : : */
1328 [ # # # # ]: 0 : if (skip_mtr_reg && priv->sh->flow_mreg_c
1329 : : [id + start_reg - REG_C_0] >= reg->aso_reg) {
1330 [ # # ]: 0 : if (id >= (uint32_t)(REG_C_7 - start_reg))
1331 : 0 : return rte_flow_error_set(error, EINVAL,
1332 : : RTE_FLOW_ERROR_TYPE_ITEM,
1333 : : NULL, "invalid tag id");
1334 : 0 : if (priv->sh->flow_mreg_c
1335 [ # # ]: 0 : [id + 1 + start_reg - REG_C_0] != REG_NON)
1336 : : return priv->sh->flow_mreg_c
1337 : 0 : [id + 1 + start_reg - REG_C_0];
1338 : 0 : return rte_flow_error_set(error, ENOTSUP,
1339 : : RTE_FLOW_ERROR_TYPE_ITEM,
1340 : : NULL, "unsupported tag id");
1341 : : }
1342 : 0 : return priv->sh->flow_mreg_c[id + start_reg - REG_C_0];
1343 : : }
1344 : : MLX5_ASSERT(false);
1345 : 0 : return rte_flow_error_set(error, EINVAL,
1346 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1347 : : NULL, "invalid feature name");
1348 : : }
1349 : :
1350 : : /**
1351 : : * Check extensive flow metadata register support.
1352 : : *
1353 : : * @param dev
1354 : : * Pointer to rte_eth_dev structure.
1355 : : *
1356 : : * @return
1357 : : * True if device supports extensive flow metadata register, otherwise false.
1358 : : */
1359 : : bool
1360 : 0 : mlx5_flow_ext_mreg_supported(struct rte_eth_dev *dev)
1361 : : {
1362 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
1363 : :
1364 : : /*
1365 : : * Having available reg_c can be regarded inclusively as supporting
1366 : : * extensive flow metadata register, which could mean,
1367 : : * - metadata register copy action by modify header.
1368 : : * - 16 modify header actions is supported.
1369 : : * - reg_c's are preserved across different domain (FDB and NIC) on
1370 : : * packet loopback by flow lookup miss.
1371 : : */
1372 : 0 : return priv->sh->flow_mreg_c[2] != REG_NON;
1373 : : }
1374 : :
1375 : : /**
1376 : : * Get the lowest priority.
1377 : : *
1378 : : * @param[in] dev
1379 : : * Pointer to the Ethernet device structure.
1380 : : * @param[in] attributes
1381 : : * Pointer to device flow rule attributes.
1382 : : *
1383 : : * @return
1384 : : * The value of lowest priority of flow.
1385 : : */
1386 : : uint32_t
1387 : 0 : mlx5_get_lowest_priority(struct rte_eth_dev *dev,
1388 : : const struct rte_flow_attr *attr)
1389 : : {
1390 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
1391 : :
1392 [ # # # # : 0 : if (!attr->group && !(attr->transfer && priv->fdb_def_rule))
# # ]
1393 : 0 : return priv->sh->flow_max_priority - 2;
1394 : : return MLX5_NON_ROOT_FLOW_MAX_PRIO - 1;
1395 : : }
1396 : :
1397 : : /**
1398 : : * Calculate matcher priority of the flow.
1399 : : *
1400 : : * @param[in] dev
1401 : : * Pointer to the Ethernet device structure.
1402 : : * @param[in] attr
1403 : : * Pointer to device flow rule attributes.
1404 : : * @param[in] subpriority
1405 : : * The priority based on the items.
1406 : : * @param[in] external
1407 : : * Flow is user flow.
1408 : : * @return
1409 : : * The matcher priority of the flow.
1410 : : */
1411 : : uint16_t
1412 : 0 : mlx5_get_matcher_priority(struct rte_eth_dev *dev,
1413 : : const struct rte_flow_attr *attr,
1414 : : uint32_t subpriority, bool external)
1415 : : {
1416 : 0 : uint16_t priority = (uint16_t)attr->priority;
1417 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
1418 : :
1419 : : /* NIC root rules */
1420 [ # # # # ]: 0 : if (!attr->group && !attr->transfer) {
1421 [ # # ]: 0 : if (attr->priority == MLX5_FLOW_LOWEST_PRIO_INDICATOR)
1422 : 0 : priority = priv->sh->flow_max_priority - 1;
1423 : 0 : return mlx5_os_flow_adjust_priority(dev, priority, subpriority);
1424 : : /* FDB root rules */
1425 [ # # # # : 0 : } else if (attr->transfer && (!external || !priv->fdb_def_rule) &&
# # # # ]
1426 [ # # ]: 0 : attr->group == 0 &&
1427 : : attr->priority == MLX5_FLOW_LOWEST_PRIO_INDICATOR) {
1428 : 0 : return (priv->sh->flow_max_priority - 1) * 3;
1429 : : }
1430 [ # # ]: 0 : if (attr->priority == MLX5_FLOW_LOWEST_PRIO_INDICATOR)
1431 : : priority = MLX5_NON_ROOT_FLOW_MAX_PRIO;
1432 : 0 : return priority * 3 + subpriority;
1433 : : }
1434 : :
1435 : : /**
1436 : : * Verify the @p item specifications (spec, last, mask) are compatible with the
1437 : : * NIC capabilities.
1438 : : *
1439 : : * @param[in] item
1440 : : * Item specification.
1441 : : * @param[in] mask
1442 : : * @p item->mask or flow default bit-masks.
1443 : : * @param[in] nic_mask
1444 : : * Bit-masks covering supported fields by the NIC to compare with user mask.
1445 : : * @param[in] size
1446 : : * Bit-masks size in bytes.
1447 : : * @param[in] range_accepted
1448 : : * True if range of values is accepted for specific fields, false otherwise.
1449 : : * @param[out] error
1450 : : * Pointer to error structure.
1451 : : *
1452 : : * @return
1453 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
1454 : : */
1455 : : int
1456 : 0 : mlx5_flow_item_acceptable(const struct rte_eth_dev *dev,
1457 : : const struct rte_flow_item *item,
1458 : : const uint8_t *mask,
1459 : : const uint8_t *nic_mask,
1460 : : unsigned int size,
1461 : : bool range_accepted,
1462 : : struct rte_flow_error *error)
1463 : : {
1464 : : unsigned int i;
1465 : :
1466 : : MLX5_ASSERT(nic_mask);
1467 [ # # ]: 0 : for (i = 0; i < size; ++i)
1468 [ # # ]: 0 : if ((nic_mask[i] | mask[i]) != nic_mask[i])
1469 : 0 : return rte_flow_error_set(error, ENOTSUP,
1470 : : RTE_FLOW_ERROR_TYPE_ITEM,
1471 : : item,
1472 : : "mask enables non supported"
1473 : : " bits");
1474 [ # # ]: 0 : if (mlx5_hws_active(dev))
1475 : : return 0;
1476 [ # # # # : 0 : if (!item->spec && (item->mask || item->last))
# # ]
1477 : 0 : return rte_flow_error_set(error, EINVAL,
1478 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
1479 : : "mask/last without a spec is not"
1480 : : " supported");
1481 [ # # # # : 0 : if (item->spec && item->last && !range_accepted) {
# # ]
1482 : 0 : uint8_t spec[size];
1483 : 0 : uint8_t last[size];
1484 : : unsigned int i;
1485 : : int ret;
1486 : :
1487 [ # # ]: 0 : for (i = 0; i < size; ++i) {
1488 : 0 : spec[i] = ((const uint8_t *)item->spec)[i] & mask[i];
1489 : 0 : last[i] = ((const uint8_t *)item->last)[i] & mask[i];
1490 : : }
1491 : 0 : ret = memcmp(spec, last, size);
1492 [ # # ]: 0 : if (ret != 0)
1493 : 0 : return rte_flow_error_set(error, EINVAL,
1494 : : RTE_FLOW_ERROR_TYPE_ITEM,
1495 : : item,
1496 : : "range is not valid");
1497 : : }
1498 : : return 0;
1499 : : }
1500 : :
1501 : : /**
1502 : : * Adjust the hash fields according to the @p flow information.
1503 : : *
1504 : : * @param[in] dev_flow.
1505 : : * Pointer to the mlx5_flow.
1506 : : * @param[in] tunnel
1507 : : * 1 when the hash field is for a tunnel item.
1508 : : * @param[in] layer_types
1509 : : * RTE_ETH_RSS_* types.
1510 : : * @param[in] hash_fields
1511 : : * Item hash fields.
1512 : : *
1513 : : * @return
1514 : : * The hash fields that should be used.
1515 : : */
1516 : : uint64_t
1517 : 0 : mlx5_flow_hashfields_adjust(struct mlx5_flow_rss_desc *rss_desc,
1518 : : int tunnel __rte_unused, uint64_t layer_types,
1519 : : uint64_t hash_fields)
1520 : : {
1521 : : #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
1522 : 0 : int rss_request_inner = rss_desc->level >= 2;
1523 : :
1524 : : /* Check RSS hash level for tunnel. */
1525 [ # # ]: 0 : if (tunnel && rss_request_inner)
1526 : 0 : hash_fields |= IBV_RX_HASH_INNER;
1527 [ # # ]: 0 : else if (tunnel || rss_request_inner)
1528 : : return 0;
1529 : : #endif
1530 : : /* Check if requested layer matches RSS hash fields. */
1531 [ # # ]: 0 : if (!(rss_desc->types & layer_types))
1532 : 0 : return 0;
1533 : : return hash_fields;
1534 : : }
1535 : :
1536 : : /**
1537 : : * Lookup and set the ptype in the data Rx part. A single Ptype can be used,
1538 : : * if several tunnel rules are used on this queue, the tunnel ptype will be
1539 : : * cleared.
1540 : : *
1541 : : * @param rxq_ctrl
1542 : : * Rx queue to update.
1543 : : */
1544 : : static void
1545 : : flow_rxq_tunnel_ptype_update(struct mlx5_rxq_ctrl *rxq_ctrl)
1546 : : {
1547 : : unsigned int i;
1548 : : uint32_t tunnel_ptype = 0;
1549 : :
1550 : : /* Look up for the ptype to use. */
1551 [ # # # # ]: 0 : for (i = 0; i != MLX5_FLOW_TUNNEL; ++i) {
1552 [ # # # # ]: 0 : if (!rxq_ctrl->flow_tunnels_n[i])
1553 : 0 : continue;
1554 [ # # # # ]: 0 : if (!tunnel_ptype) {
1555 : 0 : tunnel_ptype = tunnels_info[i].ptype;
1556 : : } else {
1557 : : tunnel_ptype = 0;
1558 : : break;
1559 : : }
1560 : : }
1561 : 0 : rxq_ctrl->rxq.tunnel = tunnel_ptype;
1562 : 0 : }
1563 : :
1564 : : /**
1565 : : * Set the Rx queue flags (Mark/Flag and Tunnel Ptypes) according to the device
1566 : : * flow.
1567 : : *
1568 : : * @param[in] dev
1569 : : * Pointer to the Ethernet device structure.
1570 : : * @param[in] dev_handle
1571 : : * Pointer to device flow handle structure.
1572 : : */
1573 : : void
1574 : 0 : flow_drv_rxq_flags_set(struct rte_eth_dev *dev,
1575 : : struct mlx5_flow_handle *dev_handle)
1576 : : {
1577 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
1578 : 0 : const int tunnel = !!(dev_handle->layers & MLX5_FLOW_LAYER_TUNNEL);
1579 : : struct mlx5_ind_table_obj *ind_tbl = NULL;
1580 : : unsigned int i;
1581 : :
1582 [ # # ]: 0 : if (dev_handle->fate_action == MLX5_FLOW_FATE_QUEUE) {
1583 : : struct mlx5_hrxq *hrxq;
1584 : :
1585 : 0 : hrxq = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_HRXQ],
1586 : : dev_handle->rix_hrxq);
1587 [ # # ]: 0 : if (hrxq)
1588 : 0 : ind_tbl = hrxq->ind_table;
1589 [ # # ]: 0 : } else if (dev_handle->fate_action == MLX5_FLOW_FATE_SHARED_RSS) {
1590 : : struct mlx5_shared_action_rss *shared_rss;
1591 : :
1592 : 0 : shared_rss = mlx5_ipool_get
1593 : 0 : (priv->sh->ipool[MLX5_IPOOL_RSS_SHARED_ACTIONS],
1594 : : dev_handle->rix_srss);
1595 [ # # ]: 0 : if (shared_rss)
1596 : 0 : ind_tbl = shared_rss->ind_tbl;
1597 : : }
1598 [ # # ]: 0 : if (!ind_tbl)
1599 : 0 : return;
1600 [ # # ]: 0 : for (i = 0; i != ind_tbl->queues_n; ++i) {
1601 [ # # ]: 0 : int idx = ind_tbl->queues[i];
1602 : : struct mlx5_rxq_ctrl *rxq_ctrl;
1603 : :
1604 [ # # ]: 0 : if (mlx5_is_external_rxq(dev, idx))
1605 : 0 : continue;
1606 : 0 : rxq_ctrl = mlx5_rxq_ctrl_get(dev, idx);
1607 : : MLX5_ASSERT(rxq_ctrl != NULL);
1608 [ # # ]: 0 : if (rxq_ctrl == NULL)
1609 : 0 : continue;
1610 : : /*
1611 : : * To support metadata register copy on Tx loopback,
1612 : : * this must be always enabled (metadata may arive
1613 : : * from other port - not from local flows only.
1614 : : */
1615 [ # # ]: 0 : if (tunnel) {
1616 : : unsigned int j;
1617 : :
1618 : : /* Increase the counter matching the flow. */
1619 [ # # ]: 0 : for (j = 0; j != MLX5_FLOW_TUNNEL; ++j) {
1620 : 0 : if ((tunnels_info[j].tunnel &
1621 [ # # ]: 0 : dev_handle->layers) ==
1622 : : tunnels_info[j].tunnel) {
1623 : 0 : rxq_ctrl->flow_tunnels_n[j]++;
1624 : 0 : break;
1625 : : }
1626 : : }
1627 : : flow_rxq_tunnel_ptype_update(rxq_ctrl);
1628 : : }
1629 : : }
1630 : : }
1631 : :
1632 : : static void
1633 : 0 : flow_rxq_mark_flag_set(struct rte_eth_dev *dev)
1634 : : {
1635 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
1636 : : struct mlx5_rxq_ctrl *rxq_ctrl;
1637 : : uint16_t port_id;
1638 : :
1639 [ # # ]: 0 : if (priv->sh->shared_mark_enabled)
1640 : : return;
1641 [ # # ]: 0 : if (priv->master || priv->representor) {
1642 [ # # ]: 0 : MLX5_ETH_FOREACH_DEV(port_id, dev->device) {
1643 : 0 : struct mlx5_priv *opriv =
1644 : 0 : rte_eth_devices[port_id].data->dev_private;
1645 : :
1646 [ # # ]: 0 : if (!opriv ||
1647 [ # # ]: 0 : opriv->sh != priv->sh ||
1648 [ # # # # ]: 0 : opriv->domain_id != priv->domain_id ||
1649 : : opriv->mark_enabled)
1650 : 0 : continue;
1651 [ # # ]: 0 : LIST_FOREACH(rxq_ctrl, &opriv->sh->shared_rxqs, share_entry) {
1652 : 0 : rxq_ctrl->rxq.mark = 1;
1653 : : }
1654 : 0 : opriv->mark_enabled = 1;
1655 : : }
1656 : : } else {
1657 [ # # ]: 0 : LIST_FOREACH(rxq_ctrl, &priv->sh->shared_rxqs, share_entry) {
1658 : 0 : rxq_ctrl->rxq.mark = 1;
1659 : : }
1660 : 0 : priv->mark_enabled = 1;
1661 : : }
1662 : 0 : priv->sh->shared_mark_enabled = 1;
1663 : : }
1664 : :
1665 : : /**
1666 : : * Set the Rx queue flags (Mark/Flag and Tunnel Ptypes) for a flow
1667 : : *
1668 : : * @param[in] dev
1669 : : * Pointer to the Ethernet device structure.
1670 : : * @param[in] flow
1671 : : * Pointer to flow structure.
1672 : : */
1673 : : static void
1674 : 0 : flow_rxq_flags_set(struct rte_eth_dev *dev, struct rte_flow *flow)
1675 : : {
1676 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
1677 : : uint32_t handle_idx;
1678 : : struct mlx5_flow_handle *dev_handle;
1679 : 0 : struct mlx5_flow_workspace *wks = mlx5_flow_get_thread_workspace();
1680 : :
1681 : : MLX5_ASSERT(wks);
1682 [ # # ]: 0 : if (wks->mark)
1683 : 0 : flow_rxq_mark_flag_set(dev);
1684 [ # # # # : 0 : SILIST_FOREACH(priv->sh->ipool[MLX5_IPOOL_MLX5_FLOW], flow->dev_handles,
# # ]
1685 : : handle_idx, dev_handle, next)
1686 : 0 : flow_drv_rxq_flags_set(dev, dev_handle);
1687 : 0 : }
1688 : :
1689 : : /**
1690 : : * Clear the Rx queue flags (Mark/Flag and Tunnel Ptype) associated with the
1691 : : * device flow if no other flow uses it with the same kind of request.
1692 : : *
1693 : : * @param dev
1694 : : * Pointer to Ethernet device.
1695 : : * @param[in] dev_handle
1696 : : * Pointer to the device flow handle structure.
1697 : : */
1698 : : static void
1699 : 0 : flow_drv_rxq_flags_trim(struct rte_eth_dev *dev,
1700 : : struct mlx5_flow_handle *dev_handle)
1701 : : {
1702 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
1703 : 0 : const int tunnel = !!(dev_handle->layers & MLX5_FLOW_LAYER_TUNNEL);
1704 : : struct mlx5_ind_table_obj *ind_tbl = NULL;
1705 : : unsigned int i;
1706 : :
1707 [ # # ]: 0 : if (dev_handle->fate_action == MLX5_FLOW_FATE_QUEUE) {
1708 : : struct mlx5_hrxq *hrxq;
1709 : :
1710 : 0 : hrxq = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_HRXQ],
1711 : : dev_handle->rix_hrxq);
1712 [ # # ]: 0 : if (hrxq)
1713 : 0 : ind_tbl = hrxq->ind_table;
1714 [ # # ]: 0 : } else if (dev_handle->fate_action == MLX5_FLOW_FATE_SHARED_RSS) {
1715 : : struct mlx5_shared_action_rss *shared_rss;
1716 : :
1717 : 0 : shared_rss = mlx5_ipool_get
1718 : 0 : (priv->sh->ipool[MLX5_IPOOL_RSS_SHARED_ACTIONS],
1719 : : dev_handle->rix_srss);
1720 [ # # ]: 0 : if (shared_rss)
1721 : 0 : ind_tbl = shared_rss->ind_tbl;
1722 : : }
1723 [ # # ]: 0 : if (!ind_tbl)
1724 : 0 : return;
1725 : : MLX5_ASSERT(dev->data->dev_started);
1726 [ # # ]: 0 : for (i = 0; i != ind_tbl->queues_n; ++i) {
1727 [ # # ]: 0 : int idx = ind_tbl->queues[i];
1728 : : struct mlx5_rxq_ctrl *rxq_ctrl;
1729 : :
1730 [ # # ]: 0 : if (mlx5_is_external_rxq(dev, idx))
1731 : 0 : continue;
1732 : 0 : rxq_ctrl = mlx5_rxq_ctrl_get(dev, idx);
1733 : : MLX5_ASSERT(rxq_ctrl != NULL);
1734 [ # # ]: 0 : if (rxq_ctrl == NULL)
1735 : 0 : continue;
1736 [ # # ]: 0 : if (tunnel) {
1737 : : unsigned int j;
1738 : :
1739 : : /* Decrease the counter matching the flow. */
1740 [ # # ]: 0 : for (j = 0; j != MLX5_FLOW_TUNNEL; ++j) {
1741 : 0 : if ((tunnels_info[j].tunnel &
1742 [ # # ]: 0 : dev_handle->layers) ==
1743 : : tunnels_info[j].tunnel) {
1744 : 0 : rxq_ctrl->flow_tunnels_n[j]--;
1745 : 0 : break;
1746 : : }
1747 : : }
1748 : : flow_rxq_tunnel_ptype_update(rxq_ctrl);
1749 : : }
1750 : : }
1751 : : }
1752 : :
1753 : : /**
1754 : : * Clear the Rx queue flags (Mark/Flag and Tunnel Ptype) associated with the
1755 : : * @p flow if no other flow uses it with the same kind of request.
1756 : : *
1757 : : * @param dev
1758 : : * Pointer to Ethernet device.
1759 : : * @param[in] flow
1760 : : * Pointer to the flow.
1761 : : */
1762 : : static void
1763 : 0 : flow_rxq_flags_trim(struct rte_eth_dev *dev, struct rte_flow *flow)
1764 : : {
1765 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
1766 : : uint32_t handle_idx;
1767 : : struct mlx5_flow_handle *dev_handle;
1768 : :
1769 [ # # # # : 0 : SILIST_FOREACH(priv->sh->ipool[MLX5_IPOOL_MLX5_FLOW], flow->dev_handles,
# # ]
1770 : : handle_idx, dev_handle, next)
1771 : 0 : flow_drv_rxq_flags_trim(dev, dev_handle);
1772 : 0 : }
1773 : :
1774 : : /**
1775 : : * Clear the Mark/Flag and Tunnel ptype information in all Rx queues.
1776 : : *
1777 : : * @param dev
1778 : : * Pointer to Ethernet device.
1779 : : */
1780 : : static void
1781 : 0 : flow_rxq_flags_clear(struct rte_eth_dev *dev)
1782 : : {
1783 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
1784 : : unsigned int i;
1785 : :
1786 [ # # ]: 0 : for (i = 0; i != priv->rxqs_n; ++i) {
1787 : 0 : struct mlx5_rxq_priv *rxq = mlx5_rxq_get(dev, i);
1788 : : unsigned int j;
1789 : :
1790 [ # # # # ]: 0 : if (rxq == NULL || rxq->ctrl == NULL)
1791 : 0 : continue;
1792 : 0 : rxq->ctrl->rxq.mark = 0;
1793 [ # # ]: 0 : for (j = 0; j != MLX5_FLOW_TUNNEL; ++j)
1794 : 0 : rxq->ctrl->flow_tunnels_n[j] = 0;
1795 : 0 : rxq->ctrl->rxq.tunnel = 0;
1796 : : }
1797 : 0 : priv->mark_enabled = 0;
1798 : 0 : priv->sh->shared_mark_enabled = 0;
1799 : 0 : }
1800 : :
1801 : : static uint64_t mlx5_restore_info_dynflag;
1802 : :
1803 : : int
1804 : 0 : mlx5_flow_rx_metadata_negotiate(struct rte_eth_dev *dev, uint64_t *features)
1805 : : {
1806 [ # # ]: 0 : struct mlx5_priv *priv = dev->data->dev_private;
1807 : : uint64_t supported = 0;
1808 : :
1809 [ # # ]: 0 : if (!is_tunnel_offload_active(dev)) {
1810 : : supported |= RTE_ETH_RX_METADATA_USER_FLAG;
1811 : : supported |= RTE_ETH_RX_METADATA_USER_MARK;
1812 [ # # ]: 0 : if ((*features & RTE_ETH_RX_METADATA_TUNNEL_ID) != 0) {
1813 : 0 : DRV_LOG(DEBUG,
1814 : : "tunnel offload was not activated, consider setting dv_xmeta_en=%d",
1815 : : MLX5_XMETA_MODE_MISS_INFO);
1816 : : }
1817 : : } else {
1818 : : supported |= RTE_ETH_RX_METADATA_TUNNEL_ID;
1819 [ # # ]: 0 : if ((*features & RTE_ETH_RX_METADATA_TUNNEL_ID) != 0 &&
1820 [ # # ]: 0 : mlx5_restore_info_dynflag == 0)
1821 : 0 : mlx5_restore_info_dynflag = rte_flow_restore_info_dynflag();
1822 : : }
1823 : :
1824 [ # # ]: 0 : if (((*features & supported) & RTE_ETH_RX_METADATA_TUNNEL_ID) != 0)
1825 : 0 : priv->tunnel_enabled = 1;
1826 : : else
1827 : 0 : priv->tunnel_enabled = 0;
1828 : :
1829 : 0 : *features &= supported;
1830 : 0 : return 0;
1831 : : }
1832 : :
1833 : : /**
1834 : : * Set the Rx queue dynamic metadata (mask and offset) for a flow
1835 : : *
1836 : : * @param[in] dev
1837 : : * Pointer to the Ethernet device structure.
1838 : : */
1839 : : void
1840 : 0 : mlx5_flow_rxq_dynf_set(struct rte_eth_dev *dev)
1841 : : {
1842 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
1843 : : uint64_t mark_flag = RTE_MBUF_F_RX_FDIR_ID;
1844 : : unsigned int i;
1845 : :
1846 [ # # ]: 0 : if (priv->tunnel_enabled)
1847 : 0 : mark_flag |= mlx5_restore_info_dynflag;
1848 : :
1849 [ # # ]: 0 : for (i = 0; i != priv->rxqs_n; ++i) {
1850 : 0 : struct mlx5_rxq_priv *rxq = mlx5_rxq_get(dev, i);
1851 : : struct mlx5_rxq_data *data;
1852 : :
1853 [ # # # # ]: 0 : if (rxq == NULL || rxq->ctrl == NULL)
1854 : 0 : continue;
1855 : : data = &rxq->ctrl->rxq;
1856 [ # # # # ]: 0 : if (!data->shared || !rxq->ctrl->started) {
1857 [ # # ]: 0 : if (!rte_flow_dynf_metadata_avail()) {
1858 : 0 : data->dynf_meta = 0;
1859 : 0 : data->flow_meta_mask = 0;
1860 : 0 : data->flow_meta_offset = -1;
1861 : 0 : data->flow_meta_port_mask = 0;
1862 : : } else {
1863 : 0 : data->dynf_meta = 1;
1864 : 0 : data->flow_meta_mask = rte_flow_dynf_metadata_mask;
1865 : 0 : data->flow_meta_offset = rte_flow_dynf_metadata_offs;
1866 : 0 : data->flow_meta_port_mask = priv->sh->dv_meta_mask;
1867 : : }
1868 : 0 : data->mark_flag = mark_flag;
1869 : : }
1870 : : }
1871 : 0 : }
1872 : :
1873 : : /*
1874 : : * return a pointer to the desired action in the list of actions.
1875 : : *
1876 : : * @param[in] actions
1877 : : * The list of actions to search the action in.
1878 : : * @param[in] action
1879 : : * The action to find.
1880 : : *
1881 : : * @return
1882 : : * Pointer to the action in the list, if found. NULL otherwise.
1883 : : */
1884 : : const struct rte_flow_action *
1885 : 0 : mlx5_flow_find_action(const struct rte_flow_action *actions,
1886 : : enum rte_flow_action_type action)
1887 : : {
1888 [ # # ]: 0 : if (actions == NULL)
1889 : : return NULL;
1890 [ # # ]: 0 : for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++)
1891 [ # # ]: 0 : if (actions->type == action)
1892 : 0 : return actions;
1893 : : return NULL;
1894 : : }
1895 : :
1896 : : /*
1897 : : * Validate the flag action.
1898 : : *
1899 : : * @param[in] action_flags
1900 : : * Bit-fields that holds the actions detected until now.
1901 : : * @param[in] attr
1902 : : * Attributes of flow that includes this action.
1903 : : * @param[out] error
1904 : : * Pointer to error structure.
1905 : : *
1906 : : * @return
1907 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
1908 : : */
1909 : : int
1910 : 0 : mlx5_flow_validate_action_flag(uint64_t action_flags,
1911 : : const struct rte_flow_attr *attr,
1912 : : struct rte_flow_error *error)
1913 : : {
1914 [ # # ]: 0 : if (action_flags & MLX5_FLOW_ACTION_MARK)
1915 : 0 : return rte_flow_error_set(error, EINVAL,
1916 : : RTE_FLOW_ERROR_TYPE_ACTION, NULL,
1917 : : "can't mark and flag in same flow");
1918 [ # # ]: 0 : if (action_flags & MLX5_FLOW_ACTION_FLAG)
1919 : 0 : return rte_flow_error_set(error, EINVAL,
1920 : : RTE_FLOW_ERROR_TYPE_ACTION, NULL,
1921 : : "can't have 2 flag"
1922 : : " actions in same flow");
1923 [ # # ]: 0 : if (attr->egress)
1924 : 0 : return rte_flow_error_set(error, ENOTSUP,
1925 : : RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, NULL,
1926 : : "flag action not supported for "
1927 : : "egress");
1928 : : return 0;
1929 : : }
1930 : :
1931 : : /*
1932 : : * Validate the mark action.
1933 : : *
1934 : : * @param[in] action
1935 : : * Pointer to the queue action.
1936 : : * @param[in] action_flags
1937 : : * Bit-fields that holds the actions detected until now.
1938 : : * @param[in] attr
1939 : : * Attributes of flow that includes this action.
1940 : : * @param[out] error
1941 : : * Pointer to error structure.
1942 : : *
1943 : : * @return
1944 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
1945 : : */
1946 : : int
1947 : 0 : mlx5_flow_validate_action_mark(struct rte_eth_dev *dev,
1948 : : const struct rte_flow_action *action,
1949 : : uint64_t action_flags,
1950 : : const struct rte_flow_attr *attr,
1951 : : struct rte_flow_error *error)
1952 : : {
1953 : 0 : const struct rte_flow_action_mark *mark = action->conf;
1954 : :
1955 [ # # ]: 0 : if (!mark)
1956 : 0 : return rte_flow_error_set(error, EINVAL,
1957 : : RTE_FLOW_ERROR_TYPE_ACTION,
1958 : : action,
1959 : : "configuration cannot be null");
1960 [ # # ]: 0 : if (mark->id >= MLX5_FLOW_MARK_MAX)
1961 : 0 : return rte_flow_error_set(error, EINVAL,
1962 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF,
1963 : 0 : &mark->id,
1964 : : "mark id must in 0 <= id < "
1965 : : RTE_STR(MLX5_FLOW_MARK_MAX));
1966 [ # # ]: 0 : if (action_flags & MLX5_FLOW_ACTION_FLAG)
1967 : 0 : return rte_flow_error_set(error, EINVAL,
1968 : : RTE_FLOW_ERROR_TYPE_ACTION, NULL,
1969 : : "can't flag and mark in same flow");
1970 [ # # ]: 0 : if (action_flags & MLX5_FLOW_ACTION_MARK)
1971 : 0 : return rte_flow_error_set(error, EINVAL,
1972 : : RTE_FLOW_ERROR_TYPE_ACTION, NULL,
1973 : : "can't have 2 mark actions in same"
1974 : : " flow");
1975 [ # # ]: 0 : if (attr->egress)
1976 : 0 : return rte_flow_error_set(error, ENOTSUP,
1977 : : RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, NULL,
1978 : : "mark action not supported for "
1979 : : "egress");
1980 [ # # # # ]: 0 : if (attr->transfer && mlx5_hws_active(dev))
1981 : 0 : return rte_flow_error_set(error, ENOTSUP,
1982 : : RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, NULL,
1983 : : "non-template mark action not supported for transfer");
1984 : : return 0;
1985 : : }
1986 : :
1987 : : /*
1988 : : * Validate the drop action.
1989 : : *
1990 : : * @param[in] dev
1991 : : * Pointer to the Ethernet device structure.
1992 : : * @param[in] is_root
1993 : : * True if flow is validated for root table. False otherwise.
1994 : : * @param[in] attr
1995 : : * Attributes of flow that includes this action.
1996 : : * @param[out] error
1997 : : * Pointer to error structure.
1998 : : *
1999 : : * @return
2000 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
2001 : : */
2002 : : int
2003 : 0 : mlx5_flow_validate_action_drop(struct rte_eth_dev *dev,
2004 : : bool is_root,
2005 : : const struct rte_flow_attr *attr,
2006 : : struct rte_flow_error *error)
2007 : : {
2008 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
2009 : :
2010 [ # # # # ]: 0 : if (priv->sh->config.dv_flow_en == 0 && attr->egress)
2011 : 0 : return rte_flow_error_set(error, ENOTSUP,
2012 : : RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, NULL,
2013 : : "drop action not supported for "
2014 : : "egress");
2015 [ # # # # : 0 : if (priv->sh->config.dv_flow_en == 1 && is_root && (attr->egress || attr->transfer) &&
# # ]
2016 [ # # ]: 0 : !priv->sh->dr_root_drop_action_en) {
2017 : 0 : return rte_flow_error_set(error, ENOTSUP,
2018 : : RTE_FLOW_ERROR_TYPE_ATTR, NULL,
2019 : : "drop action not supported for "
2020 : : "egress and transfer on group 0");
2021 : : }
2022 : : return 0;
2023 : : }
2024 : :
2025 : : /*
2026 : : * Check if a queue specified in the queue action is valid.
2027 : : *
2028 : : * @param[in] dev
2029 : : * Pointer to the Ethernet device structure.
2030 : : * @param[in] action
2031 : : * Pointer to the queue action.
2032 : : * @param[out] error
2033 : : * Pointer to error structure.
2034 : : *
2035 : : * @return
2036 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
2037 : : */
2038 : : int
2039 : 0 : mlx5_flow_validate_target_queue(struct rte_eth_dev *dev,
2040 : : const struct rte_flow_action *action,
2041 : : struct rte_flow_error *error)
2042 : : {
2043 : 0 : const struct rte_flow_action_queue *queue = action->conf;
2044 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
2045 : :
2046 [ # # # # ]: 0 : if (mlx5_is_external_rxq(dev, queue->index))
2047 : : return 0;
2048 [ # # ]: 0 : if (!priv->rxqs_n)
2049 : 0 : return rte_flow_error_set(error, EINVAL,
2050 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF,
2051 : : NULL, "No Rx queues configured");
2052 [ # # ]: 0 : if (queue->index >= priv->rxqs_n)
2053 : 0 : return rte_flow_error_set(error, EINVAL,
2054 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF,
2055 : 0 : &queue->index,
2056 : : "queue index out of range");
2057 [ # # ]: 0 : if (mlx5_rxq_get(dev, queue->index) == NULL)
2058 : 0 : return rte_flow_error_set(error, EINVAL,
2059 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF,
2060 : 0 : &queue->index,
2061 : : "queue is not configured");
2062 : : return 0;
2063 : : }
2064 : :
2065 : : /*
2066 : : * Validate the queue action.
2067 : : *
2068 : : * @param[in] action
2069 : : * Pointer to the queue action.
2070 : : * @param[in] action_flags
2071 : : * Bit-fields that holds the actions detected until now.
2072 : : * @param[in] dev
2073 : : * Pointer to the Ethernet device structure.
2074 : : * @param[in] attr
2075 : : * Attributes of flow that includes this action.
2076 : : * @param[out] error
2077 : : * Pointer to error structure.
2078 : : *
2079 : : * @return
2080 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
2081 : : */
2082 : : int
2083 : 0 : mlx5_flow_validate_action_queue(const struct rte_flow_action *action,
2084 : : uint64_t action_flags,
2085 : : struct rte_eth_dev *dev,
2086 : : const struct rte_flow_attr *attr,
2087 : : struct rte_flow_error *error)
2088 : : {
2089 : 0 : const struct rte_flow_action_queue *queue = action->conf;
2090 : :
2091 [ # # ]: 0 : if (!queue)
2092 : 0 : return rte_flow_error_set(error, EINVAL,
2093 : : RTE_FLOW_ERROR_TYPE_ACTION, action,
2094 : : "no QUEUE action configuration");
2095 [ # # ]: 0 : if (action_flags & MLX5_FLOW_FATE_ACTIONS)
2096 : 0 : return rte_flow_error_set(error, EINVAL,
2097 : : RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2098 : : "can't have 2 fate actions in"
2099 : : " same flow");
2100 [ # # ]: 0 : if (attr->egress)
2101 : 0 : return rte_flow_error_set(error, ENOTSUP,
2102 : : RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, NULL,
2103 : : "queue action not supported for egress.");
2104 : 0 : return mlx5_flow_validate_target_queue(dev, action, error);
2105 : : }
2106 : :
2107 : : /**
2108 : : * Validate queue numbers for device RSS.
2109 : : *
2110 : : * @param[in] dev
2111 : : * Configured device.
2112 : : * @param[in] queues
2113 : : * Array of queue numbers.
2114 : : * @param[in] queues_n
2115 : : * Size of the @p queues array.
2116 : : * @param[out] error
2117 : : * On error, filled with a textual error description.
2118 : : * @param[out] queue_idx
2119 : : * On error, filled with an offending queue index in @p queues array.
2120 : : *
2121 : : * @return
2122 : : * 0 on success, a negative errno code on error.
2123 : : */
2124 : : static int
2125 : 0 : mlx5_validate_rss_queues(struct rte_eth_dev *dev,
2126 : : const uint16_t *queues, uint32_t queues_n,
2127 : : const char **error, uint32_t *queue_idx)
2128 : : {
2129 : 0 : const struct mlx5_priv *priv = dev->data->dev_private;
2130 : : bool is_hairpin = false;
2131 : : bool is_ext_rss = false;
2132 : : uint32_t i;
2133 : :
2134 [ # # ]: 0 : for (i = 0; i != queues_n; ++i) {
2135 : : struct mlx5_rxq_ctrl *rxq_ctrl;
2136 : :
2137 [ # # # # ]: 0 : if (mlx5_is_external_rxq(dev, queues[0])) {
2138 : : is_ext_rss = true;
2139 : 0 : continue;
2140 : : }
2141 [ # # ]: 0 : if (is_ext_rss) {
2142 : 0 : *error = "Combining external and regular RSS queues is not supported";
2143 : 0 : *queue_idx = i;
2144 : 0 : return -ENOTSUP;
2145 : : }
2146 [ # # ]: 0 : if (queues[i] >= priv->rxqs_n) {
2147 : 0 : *error = "queue index out of range";
2148 : 0 : *queue_idx = i;
2149 : 0 : return -EINVAL;
2150 : : }
2151 : 0 : rxq_ctrl = mlx5_rxq_ctrl_get(dev, queues[i]);
2152 [ # # ]: 0 : if (rxq_ctrl == NULL) {
2153 : 0 : *error = "queue is not configured";
2154 : 0 : *queue_idx = i;
2155 : 0 : return -EINVAL;
2156 : : }
2157 [ # # # # ]: 0 : if (i == 0 && rxq_ctrl->is_hairpin)
2158 : : is_hairpin = true;
2159 [ # # ]: 0 : if (is_hairpin != rxq_ctrl->is_hairpin) {
2160 : 0 : *error = "combining hairpin and regular RSS queues is not supported";
2161 : 0 : *queue_idx = i;
2162 : 0 : return -ENOTSUP;
2163 : : }
2164 : : }
2165 : : return 0;
2166 : : }
2167 : :
2168 : : /*
2169 : : * Validate the rss action.
2170 : : *
2171 : : * @param[in] dev
2172 : : * Pointer to the Ethernet device structure.
2173 : : * @param[in] action
2174 : : * Pointer to the queue action.
2175 : : * @param[out] error
2176 : : * Pointer to error structure.
2177 : : *
2178 : : * @return
2179 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
2180 : : */
2181 : : int
2182 : 0 : mlx5_validate_action_rss(struct rte_eth_dev *dev,
2183 : : const struct rte_flow_action *action,
2184 : : struct rte_flow_error *error)
2185 : : {
2186 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
2187 : 0 : const struct rte_flow_action_rss *rss = action->conf;
2188 : : int ret;
2189 : : const char *message;
2190 : : uint32_t queue_idx;
2191 : :
2192 [ # # ]: 0 : if (!rss)
2193 : 0 : return rte_flow_error_set
2194 : : (error, EINVAL, RTE_FLOW_ERROR_TYPE_ACTION,
2195 : : action, "no RSS action configuration");
2196 [ # # ]: 0 : if (rss->func == RTE_ETH_HASH_FUNCTION_SYMMETRIC_TOEPLITZ) {
2197 : 0 : DRV_LOG(WARNING, "port %u symmetric RSS supported with SORT",
2198 : : dev->data->port_id);
2199 [ # # ]: 0 : } else if (rss->func != RTE_ETH_HASH_FUNCTION_DEFAULT &&
2200 : : rss->func != RTE_ETH_HASH_FUNCTION_TOEPLITZ)
2201 : 0 : return rte_flow_error_set(error, ENOTSUP,
2202 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF,
2203 : 0 : &rss->func,
2204 : : "RSS hash function not supported");
2205 : : #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
2206 [ # # ]: 0 : if (rss->level > 2)
2207 : : #else
2208 : : if (rss->level > 1)
2209 : : #endif
2210 : 0 : return rte_flow_error_set(error, ENOTSUP,
2211 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF,
2212 : 0 : &rss->level,
2213 : : "tunnel RSS is not supported");
2214 : : /* allow RSS key_len 0 in case of NULL (default) RSS key. */
2215 [ # # # # ]: 0 : if (rss->key_len == 0 && rss->key != NULL)
2216 : 0 : return rte_flow_error_set(error, ENOTSUP,
2217 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF,
2218 : 0 : &rss->key_len,
2219 : : "RSS hash key length 0");
2220 [ # # ]: 0 : if (rss->key_len > 0 && rss->key_len < MLX5_RSS_HASH_KEY_LEN)
2221 : 0 : return rte_flow_error_set(error, ENOTSUP,
2222 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF,
2223 : 0 : &rss->key_len,
2224 : : "RSS hash key too small");
2225 [ # # ]: 0 : if (rss->key_len > MLX5_RSS_HASH_KEY_LEN)
2226 : 0 : return rte_flow_error_set(error, ENOTSUP,
2227 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF,
2228 : 0 : &rss->key_len,
2229 : : "RSS hash key too large");
2230 [ # # ]: 0 : if (rss->queue_num > priv->sh->dev_cap.ind_table_max_size)
2231 : 0 : return rte_flow_error_set(error, ENOTSUP,
2232 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF,
2233 : 0 : &rss->queue_num,
2234 : : "number of queues too large");
2235 [ # # ]: 0 : if (rss->types & MLX5_RSS_HF_MASK)
2236 : 0 : return rte_flow_error_set(error, ENOTSUP,
2237 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF,
2238 : 0 : &rss->types,
2239 : : "some RSS protocols are not"
2240 : : " supported");
2241 [ # # ]: 0 : if ((rss->types & (RTE_ETH_RSS_L3_SRC_ONLY | RTE_ETH_RSS_L3_DST_ONLY)) &&
2242 [ # # ]: 0 : !(rss->types & RTE_ETH_RSS_IP))
2243 : 0 : return rte_flow_error_set(error, EINVAL,
2244 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF, NULL,
2245 : : "L3 partial RSS requested but L3 RSS"
2246 : : " type not specified");
2247 [ # # ]: 0 : if ((rss->types & (RTE_ETH_RSS_L4_SRC_ONLY | RTE_ETH_RSS_L4_DST_ONLY)) &&
2248 [ # # ]: 0 : !(rss->types & (RTE_ETH_RSS_UDP | RTE_ETH_RSS_TCP)))
2249 : 0 : return rte_flow_error_set(error, EINVAL,
2250 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF, NULL,
2251 : : "L4 partial RSS requested but L4 RSS"
2252 : : " type not specified");
2253 [ # # # # ]: 0 : if (!priv->rxqs_n && priv->ext_rxqs == NULL)
2254 : 0 : return rte_flow_error_set(error, EINVAL,
2255 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF,
2256 : : NULL, "No Rx queues configured");
2257 [ # # ]: 0 : if (!rss->queue_num)
2258 : 0 : return rte_flow_error_set(error, EINVAL,
2259 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF,
2260 : : NULL, "No queues configured");
2261 : 0 : ret = mlx5_validate_rss_queues(dev, rss->queue, rss->queue_num,
2262 : : &message, &queue_idx);
2263 [ # # ]: 0 : if (ret != 0) {
2264 : 0 : return rte_flow_error_set(error, -ret,
2265 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF,
2266 : 0 : &rss->queue[queue_idx], message);
2267 : : }
2268 : : return 0;
2269 : : }
2270 : :
2271 : : /*
2272 : : * Validate the rss action.
2273 : : *
2274 : : * @param[in] action
2275 : : * Pointer to the queue action.
2276 : : * @param[in] action_flags
2277 : : * Bit-fields that holds the actions detected until now.
2278 : : * @param[in] dev
2279 : : * Pointer to the Ethernet device structure.
2280 : : * @param[in] attr
2281 : : * Attributes of flow that includes this action.
2282 : : * @param[in] item_flags
2283 : : * Items that were detected.
2284 : : * @param[out] error
2285 : : * Pointer to error structure.
2286 : : *
2287 : : * @return
2288 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
2289 : : */
2290 : : int
2291 : 0 : mlx5_flow_validate_action_rss(const struct rte_flow_action *action,
2292 : : uint64_t action_flags,
2293 : : struct rte_eth_dev *dev,
2294 : : const struct rte_flow_attr *attr,
2295 : : uint64_t item_flags,
2296 : : struct rte_flow_error *error)
2297 : : {
2298 : 0 : const struct rte_flow_action_rss *rss = action->conf;
2299 : 0 : int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
2300 : : int ret;
2301 : :
2302 [ # # ]: 0 : if (action_flags & MLX5_FLOW_FATE_ACTIONS)
2303 : 0 : return rte_flow_error_set(error, EINVAL,
2304 : : RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2305 : : "can't have 2 fate actions"
2306 : : " in same flow");
2307 : 0 : ret = mlx5_validate_action_rss(dev, action, error);
2308 [ # # ]: 0 : if (ret)
2309 : : return ret;
2310 [ # # ]: 0 : if (attr->egress)
2311 : 0 : return rte_flow_error_set(error, ENOTSUP,
2312 : : RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, NULL,
2313 : : "rss action not supported for "
2314 : : "egress");
2315 [ # # # # ]: 0 : if (rss->level > 1 && !tunnel)
2316 : 0 : return rte_flow_error_set(error, EINVAL,
2317 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF, NULL,
2318 : : "inner RSS is not supported for "
2319 : : "non-tunnel flows");
2320 [ # # ]: 0 : if ((item_flags & MLX5_FLOW_LAYER_ECPRI) &&
2321 : : !(item_flags & MLX5_FLOW_LAYER_INNER_L4_UDP)) {
2322 : 0 : return rte_flow_error_set(error, EINVAL,
2323 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF, NULL,
2324 : : "RSS on eCPRI is not supported now");
2325 : : }
2326 [ # # ]: 0 : if ((item_flags & MLX5_FLOW_LAYER_MPLS) &&
2327 : : !(item_flags &
2328 [ # # ]: 0 : (MLX5_FLOW_LAYER_INNER_L2 | MLX5_FLOW_LAYER_INNER_L3)) &&
2329 : : rss->level > 1)
2330 : 0 : return rte_flow_error_set(error, EINVAL,
2331 : : RTE_FLOW_ERROR_TYPE_ITEM, NULL,
2332 : : "MPLS inner RSS needs to specify inner L2/L3 items after MPLS in pattern");
2333 : : return 0;
2334 : : }
2335 : :
2336 : : /*
2337 : : * Validate the default miss action.
2338 : : *
2339 : : * @param[in] action_flags
2340 : : * Bit-fields that holds the actions detected until now.
2341 : : * @param[out] error
2342 : : * Pointer to error structure.
2343 : : *
2344 : : * @return
2345 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
2346 : : */
2347 : : int
2348 : 0 : mlx5_flow_validate_action_default_miss(uint64_t action_flags,
2349 : : const struct rte_flow_attr *attr,
2350 : : struct rte_flow_error *error)
2351 : : {
2352 [ # # ]: 0 : if (action_flags & MLX5_FLOW_FATE_ACTIONS)
2353 : 0 : return rte_flow_error_set(error, EINVAL,
2354 : : RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2355 : : "can't have 2 fate actions in"
2356 : : " same flow");
2357 [ # # ]: 0 : if (attr->egress)
2358 : 0 : return rte_flow_error_set(error, ENOTSUP,
2359 : : RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, NULL,
2360 : : "default miss action not supported "
2361 : : "for egress");
2362 [ # # ]: 0 : if (attr->group)
2363 : 0 : return rte_flow_error_set(error, ENOTSUP,
2364 : : RTE_FLOW_ERROR_TYPE_ATTR_GROUP, NULL,
2365 : : "only group 0 is supported");
2366 [ # # ]: 0 : if (attr->transfer)
2367 : 0 : return rte_flow_error_set(error, ENOTSUP,
2368 : : RTE_FLOW_ERROR_TYPE_ATTR_TRANSFER,
2369 : : NULL, "transfer is not supported");
2370 : : return 0;
2371 : : }
2372 : :
2373 : : /*
2374 : : * Validate the count action.
2375 : : *
2376 : : * @param[in] dev
2377 : : * Pointer to the Ethernet device structure.
2378 : : * @param[in] attr
2379 : : * Attributes of flow that includes this action.
2380 : : * @param[out] error
2381 : : * Pointer to error structure.
2382 : : *
2383 : : * @return
2384 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
2385 : : */
2386 : : int
2387 : 0 : mlx5_flow_validate_action_count(struct rte_eth_dev *dev __rte_unused,
2388 : : const struct rte_flow_attr *attr,
2389 : : struct rte_flow_error *error)
2390 : : {
2391 [ # # ]: 0 : if (attr->egress)
2392 : 0 : return rte_flow_error_set(error, ENOTSUP,
2393 : : RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, NULL,
2394 : : "count action not supported for "
2395 : : "egress");
2396 : : return 0;
2397 : : }
2398 : :
2399 : : /*
2400 : : * Validate the ASO CT action.
2401 : : *
2402 : : * @param[in] dev
2403 : : * Pointer to the Ethernet device structure.
2404 : : * @param[in] conntrack
2405 : : * Pointer to the CT action profile.
2406 : : * @param[out] error
2407 : : * Pointer to error structure.
2408 : : *
2409 : : * @return
2410 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
2411 : : */
2412 : : int
2413 : 0 : mlx5_validate_action_ct(struct rte_eth_dev *dev,
2414 : : const struct rte_flow_action_conntrack *conntrack,
2415 : : struct rte_flow_error *error)
2416 : : {
2417 : : RTE_SET_USED(dev);
2418 : :
2419 [ # # ]: 0 : if (conntrack->state > RTE_FLOW_CONNTRACK_STATE_TIME_WAIT)
2420 : 0 : return rte_flow_error_set(error, EINVAL,
2421 : : RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2422 : : "Invalid CT state");
2423 [ # # ]: 0 : if (conntrack->last_index > RTE_FLOW_CONNTRACK_FLAG_RST)
2424 : 0 : return rte_flow_error_set(error, EINVAL,
2425 : : RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2426 : : "Invalid last TCP packet flag");
2427 : : return 0;
2428 : : }
2429 : :
2430 : : /**
2431 : : * Validate the level value for modify field action.
2432 : : *
2433 : : * @param[in] data
2434 : : * Pointer to the rte_flow_field_data structure either src or dst.
2435 : : * @param[out] error
2436 : : * Pointer to error structure.
2437 : : *
2438 : : * @return
2439 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
2440 : : */
2441 : : int
2442 : 0 : flow_validate_modify_field_level(const struct rte_flow_field_data *data,
2443 : : struct rte_flow_error *error)
2444 : : {
2445 [ # # # # ]: 0 : if (data->level == 0 || data->field == RTE_FLOW_FIELD_FLEX_ITEM)
2446 : : return 0;
2447 [ # # ]: 0 : if (data->field != RTE_FLOW_FIELD_TAG &&
2448 : : data->field != (enum rte_flow_field_id)MLX5_RTE_FLOW_FIELD_META_REG) {
2449 [ # # ]: 0 : if (data->level > 1)
2450 : 0 : return rte_flow_error_set(error, ENOTSUP,
2451 : : RTE_FLOW_ERROR_TYPE_ACTION,
2452 : : NULL,
2453 : : "inner header fields modification is not supported");
2454 : : return 0;
2455 : : }
2456 [ # # ]: 0 : if (data->tag_index != 0)
2457 : 0 : return rte_flow_error_set(error, EINVAL,
2458 : : RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2459 : : "tag array can be provided using 'level' or 'tag_index' fields, not both");
2460 : : /*
2461 : : * The tag array for RTE_FLOW_FIELD_TAG type is provided using
2462 : : * 'tag_index' field. In old API, it was provided using 'level' field
2463 : : * and it is still supported for backwards compatibility.
2464 : : */
2465 : 0 : DRV_LOG(DEBUG, "tag array provided in 'level' field instead of 'tag_index' field.");
2466 : 0 : return 0;
2467 : : }
2468 : :
2469 : : /**
2470 : : * Validate ICMP6 item.
2471 : : *
2472 : : * @param[in] item
2473 : : * Item specification.
2474 : : * @param[in] item_flags
2475 : : * Bit-fields that holds the items detected until now.
2476 : : * @param[in] ext_vlan_sup
2477 : : * Whether extended VLAN features are supported or not.
2478 : : * @param[out] error
2479 : : * Pointer to error structure.
2480 : : *
2481 : : * @return
2482 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
2483 : : */
2484 : : int
2485 : 0 : mlx5_flow_validate_item_icmp6(const struct rte_eth_dev *dev,
2486 : : const struct rte_flow_item *item,
2487 : : uint64_t item_flags,
2488 : : uint8_t target_protocol,
2489 : : struct rte_flow_error *error)
2490 : : {
2491 : 0 : const struct rte_flow_item_icmp6 *mask = item->mask;
2492 : 0 : const int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
2493 [ # # ]: 0 : const uint64_t l3m = tunnel ? MLX5_FLOW_LAYER_INNER_L3_IPV6 :
2494 : : MLX5_FLOW_LAYER_OUTER_L3_IPV6;
2495 [ # # ]: 0 : const uint64_t l4m = tunnel ? MLX5_FLOW_LAYER_INNER_L4 :
2496 : : MLX5_FLOW_LAYER_OUTER_L4;
2497 : : int ret;
2498 : :
2499 [ # # ]: 0 : if (target_protocol != 0xFF && target_protocol != IPPROTO_ICMPV6)
2500 : 0 : return rte_flow_error_set(error, EINVAL,
2501 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2502 : : "protocol filtering not compatible"
2503 : : " with ICMP6 layer");
2504 [ # # ]: 0 : if (!mlx5_hws_active(dev)) {
2505 [ # # ]: 0 : if (!(item_flags & l3m))
2506 : 0 : return rte_flow_error_set(error, EINVAL,
2507 : : RTE_FLOW_ERROR_TYPE_ITEM,
2508 : : item, "IPv6 is mandatory to filter on ICMP6");
2509 : : }
2510 [ # # ]: 0 : if (item_flags & l4m)
2511 : 0 : return rte_flow_error_set(error, EINVAL,
2512 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2513 : : "multiple L4 layers not supported");
2514 [ # # ]: 0 : if (!mask)
2515 : : mask = &rte_flow_item_icmp6_mask;
2516 : 0 : ret = mlx5_flow_item_acceptable
2517 : : (dev, item, (const uint8_t *)mask,
2518 : : (const uint8_t *)&rte_flow_item_icmp6_mask,
2519 : : sizeof(struct rte_flow_item_icmp6),
2520 : : MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
2521 : : if (ret < 0)
2522 : : return ret;
2523 : : return 0;
2524 : : }
2525 : :
2526 : : /**
2527 : : * Validate ICMP6 echo request/reply item.
2528 : : *
2529 : : * @param[in] item
2530 : : * Item specification.
2531 : : * @param[in] item_flags
2532 : : * Bit-fields that holds the items detected until now.
2533 : : * @param[in] ext_vlan_sup
2534 : : * Whether extended VLAN features are supported or not.
2535 : : * @param[out] error
2536 : : * Pointer to error structure.
2537 : : *
2538 : : * @return
2539 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
2540 : : */
2541 : : int
2542 : 0 : mlx5_flow_validate_item_icmp6_echo(const struct rte_eth_dev *dev,
2543 : : const struct rte_flow_item *item,
2544 : : uint64_t item_flags,
2545 : : uint8_t target_protocol,
2546 : : struct rte_flow_error *error)
2547 : : {
2548 : 0 : const struct rte_flow_item_icmp6_echo *mask = item->mask;
2549 : 0 : const struct rte_flow_item_icmp6_echo nic_mask = {
2550 : : .hdr.base.type = 0xff,
2551 : : .hdr.base.code = 0xff,
2552 : : .hdr.identifier = RTE_BE16(0xffff),
2553 : : .hdr.sequence = RTE_BE16(0xffff),
2554 : : };
2555 : 0 : const int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
2556 [ # # ]: 0 : const uint64_t l3m = tunnel ? MLX5_FLOW_LAYER_INNER_L3_IPV6 :
2557 : : MLX5_FLOW_LAYER_OUTER_L3_IPV6;
2558 [ # # ]: 0 : const uint64_t l4m = tunnel ? MLX5_FLOW_LAYER_INNER_L4 :
2559 : : MLX5_FLOW_LAYER_OUTER_L4;
2560 : : int ret;
2561 : :
2562 [ # # ]: 0 : if (target_protocol != 0xFF && target_protocol != IPPROTO_ICMPV6)
2563 : 0 : return rte_flow_error_set(error, EINVAL,
2564 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2565 : : "protocol filtering not compatible"
2566 : : " with ICMP6 layer");
2567 [ # # ]: 0 : if (!mlx5_hws_active(dev)) {
2568 [ # # ]: 0 : if (!(item_flags & l3m))
2569 : 0 : return rte_flow_error_set(error, EINVAL,
2570 : : RTE_FLOW_ERROR_TYPE_ITEM,
2571 : : item, "IPv6 is mandatory to filter on ICMP6");
2572 : : }
2573 [ # # ]: 0 : if (item_flags & l4m)
2574 : 0 : return rte_flow_error_set(error, EINVAL,
2575 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2576 : : "multiple L4 layers not supported");
2577 [ # # ]: 0 : if (!mask)
2578 : : mask = &nic_mask;
2579 : 0 : ret = mlx5_flow_item_acceptable
2580 : : (dev, item, (const uint8_t *)mask,
2581 : : (const uint8_t *)&nic_mask,
2582 : : sizeof(struct rte_flow_item_icmp6_echo),
2583 : : MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
2584 : : if (ret < 0)
2585 : : return ret;
2586 : : return 0;
2587 : : }
2588 : :
2589 : : /**
2590 : : * Validate ICMP item.
2591 : : *
2592 : : * @param[in] item
2593 : : * Item specification.
2594 : : * @param[in] item_flags
2595 : : * Bit-fields that holds the items detected until now.
2596 : : * @param[out] error
2597 : : * Pointer to error structure.
2598 : : *
2599 : : * @return
2600 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
2601 : : */
2602 : : int
2603 : 0 : mlx5_flow_validate_item_icmp(const struct rte_eth_dev *dev,
2604 : : const struct rte_flow_item *item,
2605 : : uint64_t item_flags,
2606 : : uint8_t target_protocol,
2607 : : struct rte_flow_error *error)
2608 : : {
2609 : 0 : const struct rte_flow_item_icmp *mask = item->mask;
2610 : 0 : const struct rte_flow_item_icmp nic_mask = {
2611 : : .hdr.icmp_type = 0xff,
2612 : : .hdr.icmp_code = 0xff,
2613 : : .hdr.icmp_ident = RTE_BE16(0xffff),
2614 : : .hdr.icmp_seq_nb = RTE_BE16(0xffff),
2615 : : };
2616 : 0 : const int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
2617 [ # # ]: 0 : const uint64_t l3m = tunnel ? MLX5_FLOW_LAYER_INNER_L3_IPV4 :
2618 : : MLX5_FLOW_LAYER_OUTER_L3_IPV4;
2619 [ # # ]: 0 : const uint64_t l4m = tunnel ? MLX5_FLOW_LAYER_INNER_L4 :
2620 : : MLX5_FLOW_LAYER_OUTER_L4;
2621 : : int ret;
2622 : :
2623 [ # # ]: 0 : if (target_protocol != 0xFF && target_protocol != IPPROTO_ICMP)
2624 : 0 : return rte_flow_error_set(error, EINVAL,
2625 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2626 : : "protocol filtering not compatible"
2627 : : " with ICMP layer");
2628 [ # # ]: 0 : if (!mlx5_hws_active(dev)) {
2629 [ # # ]: 0 : if (!(item_flags & l3m))
2630 : 0 : return rte_flow_error_set(error, EINVAL,
2631 : : RTE_FLOW_ERROR_TYPE_ITEM,
2632 : : item, "IPv4 is mandatory to filter on ICMP");
2633 : : }
2634 [ # # ]: 0 : if (item_flags & l4m)
2635 : 0 : return rte_flow_error_set(error, EINVAL,
2636 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2637 : : "multiple L4 layers not supported");
2638 [ # # ]: 0 : if (!mask)
2639 : : mask = &nic_mask;
2640 : 0 : ret = mlx5_flow_item_acceptable
2641 : : (dev, item, (const uint8_t *)mask,
2642 : : (const uint8_t *)&nic_mask,
2643 : : sizeof(struct rte_flow_item_icmp),
2644 : : MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
2645 : : if (ret < 0)
2646 : : return ret;
2647 : : return 0;
2648 : : }
2649 : :
2650 : : /**
2651 : : * Validate Ethernet item.
2652 : : *
2653 : : * @param[in] item
2654 : : * Item specification.
2655 : : * @param[in] item_flags
2656 : : * Bit-fields that holds the items detected until now.
2657 : : * @param[out] error
2658 : : * Pointer to error structure.
2659 : : *
2660 : : * @return
2661 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
2662 : : */
2663 : : int
2664 : 0 : mlx5_flow_validate_item_eth(const struct rte_eth_dev *dev,
2665 : : const struct rte_flow_item *item,
2666 : : uint64_t item_flags, bool ext_vlan_sup,
2667 : : struct rte_flow_error *error)
2668 : : {
2669 : 0 : const struct rte_flow_item_eth *mask = item->mask;
2670 : 0 : const struct rte_flow_item_eth nic_mask = {
2671 : : .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
2672 : : .hdr.src_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
2673 : : .hdr.ether_type = RTE_BE16(0xffff),
2674 : : .has_vlan = ext_vlan_sup ? 1 : 0,
2675 : : };
2676 : : int ret;
2677 : 0 : int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
2678 [ # # ]: 0 : const uint64_t ethm = tunnel ? MLX5_FLOW_LAYER_INNER_L2 :
2679 : : MLX5_FLOW_LAYER_OUTER_L2;
2680 : :
2681 [ # # ]: 0 : if (item_flags & ethm)
2682 : 0 : return rte_flow_error_set(error, ENOTSUP,
2683 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2684 : : "multiple L2 layers not supported");
2685 [ # # # # : 0 : if ((!tunnel && (item_flags & MLX5_FLOW_LAYER_OUTER_L3)) ||
# # ]
2686 [ # # ]: 0 : (tunnel && (item_flags & MLX5_FLOW_LAYER_INNER_L3)))
2687 : 0 : return rte_flow_error_set(error, EINVAL,
2688 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2689 : : "L2 layer should not follow "
2690 : : "L3 layers");
2691 [ # # # # : 0 : if ((!tunnel && (item_flags & MLX5_FLOW_LAYER_OUTER_VLAN)) ||
# # ]
2692 [ # # ]: 0 : (tunnel && (item_flags & MLX5_FLOW_LAYER_INNER_VLAN)))
2693 : 0 : return rte_flow_error_set(error, EINVAL,
2694 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2695 : : "L2 layer should not follow VLAN");
2696 [ # # ]: 0 : if (item_flags & MLX5_FLOW_LAYER_GTP)
2697 : 0 : return rte_flow_error_set(error, EINVAL,
2698 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2699 : : "L2 layer should not follow GTP");
2700 [ # # ]: 0 : if (!mask)
2701 : : mask = &rte_flow_item_eth_mask;
2702 : 0 : ret = mlx5_flow_item_acceptable(dev, item, (const uint8_t *)mask,
2703 : : (const uint8_t *)&nic_mask,
2704 : : sizeof(struct rte_flow_item_eth),
2705 : : MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
2706 : 0 : return ret;
2707 : : }
2708 : :
2709 : : /**
2710 : : * Validate VLAN item.
2711 : : *
2712 : : * @param[in] item
2713 : : * Item specification.
2714 : : * @param[in] item_flags
2715 : : * Bit-fields that holds the items detected until now.
2716 : : * @param[in] dev
2717 : : * Ethernet device flow is being created on.
2718 : : * @param[out] error
2719 : : * Pointer to error structure.
2720 : : *
2721 : : * @return
2722 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
2723 : : */
2724 : : int
2725 : 0 : mlx5_flow_validate_item_vlan(const struct rte_flow_item *item,
2726 : : uint64_t item_flags,
2727 : : struct rte_eth_dev *dev,
2728 : : struct rte_flow_error *error)
2729 : : {
2730 : 0 : const struct rte_flow_item_vlan *spec = item->spec;
2731 : 0 : const struct rte_flow_item_vlan *mask = item->mask;
2732 : 0 : const struct rte_flow_item_vlan nic_mask = {
2733 : : .hdr.vlan_tci = RTE_BE16(UINT16_MAX),
2734 : : .hdr.eth_proto = RTE_BE16(UINT16_MAX),
2735 : : };
2736 : : uint16_t vlan_tag = 0;
2737 : 0 : const int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
2738 : : int ret;
2739 : : const uint64_t l34m = tunnel ? (MLX5_FLOW_LAYER_INNER_L3 |
2740 [ # # ]: 0 : MLX5_FLOW_LAYER_INNER_L4) :
2741 : : (MLX5_FLOW_LAYER_OUTER_L3 |
2742 : : MLX5_FLOW_LAYER_OUTER_L4);
2743 [ # # ]: 0 : const uint64_t vlanm = tunnel ? MLX5_FLOW_LAYER_INNER_VLAN :
2744 : : MLX5_FLOW_LAYER_OUTER_VLAN;
2745 : :
2746 [ # # ]: 0 : if (item_flags & vlanm)
2747 : 0 : return rte_flow_error_set(error, EINVAL,
2748 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2749 : : "multiple VLAN layers not supported");
2750 [ # # ]: 0 : else if ((item_flags & l34m) != 0)
2751 : 0 : return rte_flow_error_set(error, EINVAL,
2752 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2753 : : "VLAN cannot follow L3/L4 layer");
2754 [ # # ]: 0 : if (!mask)
2755 : : mask = &rte_flow_item_vlan_mask;
2756 : 0 : ret = mlx5_flow_item_acceptable(dev, item, (const uint8_t *)mask,
2757 : : (const uint8_t *)&nic_mask,
2758 : : sizeof(struct rte_flow_item_vlan),
2759 : : MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
2760 [ # # ]: 0 : if (ret)
2761 : : return ret;
2762 [ # # # # ]: 0 : if (!tunnel && mask->hdr.vlan_tci != RTE_BE16(0x0fff)) {
2763 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
2764 : :
2765 [ # # ]: 0 : if (priv->vmwa_context) {
2766 : : /*
2767 : : * Non-NULL context means we have a virtual machine
2768 : : * and SR-IOV enabled, we have to create VLAN interface
2769 : : * to make hypervisor to setup E-Switch vport
2770 : : * context correctly. We avoid creating the multiple
2771 : : * VLAN interfaces, so we cannot support VLAN tag mask.
2772 : : */
2773 : 0 : return rte_flow_error_set(error, EINVAL,
2774 : : RTE_FLOW_ERROR_TYPE_ITEM,
2775 : : item,
2776 : : "VLAN tag mask is not"
2777 : : " supported in virtual"
2778 : : " environment");
2779 : : }
2780 : : }
2781 [ # # ]: 0 : if (spec) {
2782 : 0 : vlan_tag = spec->hdr.vlan_tci;
2783 : 0 : vlan_tag &= mask->hdr.vlan_tci;
2784 : : }
2785 : : /*
2786 : : * From verbs perspective an empty VLAN is equivalent
2787 : : * to a packet without VLAN layer.
2788 : : */
2789 [ # # ]: 0 : if (!vlan_tag)
2790 : 0 : return rte_flow_error_set(error, EINVAL,
2791 : : RTE_FLOW_ERROR_TYPE_ITEM_SPEC,
2792 : 0 : item->spec,
2793 : : "VLAN cannot be empty");
2794 : : return 0;
2795 : : }
2796 : :
2797 : : /**
2798 : : * Validate IPV4 item.
2799 : : *
2800 : : * @param[in] item
2801 : : * Item specification.
2802 : : * @param[in] item_flags
2803 : : * Bit-fields that holds the items detected until now.
2804 : : * @param[in] last_item
2805 : : * Previous validated item in the pattern items.
2806 : : * @param[in] ether_type
2807 : : * Type in the ethernet layer header (including dot1q).
2808 : : * @param[in] acc_mask
2809 : : * Acceptable mask, if NULL default internal default mask
2810 : : * will be used to check whether item fields are supported.
2811 : : * @param[in] range_accepted
2812 : : * True if range of values is accepted for specific fields, false otherwise.
2813 : : * @param[out] error
2814 : : * Pointer to error structure.
2815 : : *
2816 : : * @return
2817 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
2818 : : */
2819 : : int
2820 : 0 : mlx5_flow_validate_item_ipv4(const struct rte_eth_dev *dev,
2821 : : const struct rte_flow_item *item,
2822 : : uint64_t item_flags,
2823 : : uint64_t last_item,
2824 : : uint16_t ether_type,
2825 : : const struct rte_flow_item_ipv4 *acc_mask,
2826 : : bool range_accepted,
2827 : : struct rte_flow_error *error)
2828 : : {
2829 : 0 : const struct rte_flow_item_ipv4 *mask = item->mask;
2830 : 0 : const struct rte_flow_item_ipv4 *spec = item->spec;
2831 : 0 : const struct rte_flow_item_ipv4 nic_mask = {
2832 : : .hdr = {
2833 : : .src_addr = RTE_BE32(0xffffffff),
2834 : : .dst_addr = RTE_BE32(0xffffffff),
2835 : : .type_of_service = 0xff,
2836 : : .next_proto_id = 0xff,
2837 : : },
2838 : : };
2839 : 0 : const int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
2840 [ # # ]: 0 : const uint64_t l3m = tunnel ? MLX5_FLOW_LAYER_INNER_L3 :
2841 : : MLX5_FLOW_LAYER_OUTER_L3;
2842 [ # # ]: 0 : const uint64_t l4m = tunnel ? MLX5_FLOW_LAYER_INNER_L4 :
2843 : : MLX5_FLOW_LAYER_OUTER_L4;
2844 : : int ret;
2845 : : uint8_t next_proto = 0xFF;
2846 : : const uint64_t l2_vlan = (MLX5_FLOW_LAYER_L2 |
2847 : : MLX5_FLOW_LAYER_OUTER_VLAN |
2848 : : MLX5_FLOW_LAYER_INNER_VLAN);
2849 : :
2850 [ # # ]: 0 : if ((last_item & l2_vlan) && ether_type &&
2851 [ # # ]: 0 : ether_type != RTE_ETHER_TYPE_IPV4)
2852 : 0 : return rte_flow_error_set(error, EINVAL,
2853 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2854 : : "IPv4 cannot follow L2/VLAN layer "
2855 : : "which ether type is not IPv4");
2856 [ # # ]: 0 : if (item_flags & MLX5_FLOW_LAYER_IPIP) {
2857 [ # # ]: 0 : if (mask && spec)
2858 : 0 : next_proto = mask->hdr.next_proto_id &
2859 : 0 : spec->hdr.next_proto_id;
2860 [ # # ]: 0 : if (next_proto == IPPROTO_IPIP || next_proto == IPPROTO_IPV6)
2861 : 0 : return rte_flow_error_set(error, EINVAL,
2862 : : RTE_FLOW_ERROR_TYPE_ITEM,
2863 : : item,
2864 : : "multiple tunnel "
2865 : : "not supported");
2866 : : }
2867 [ # # ]: 0 : if (item_flags & MLX5_FLOW_LAYER_IPV6_ENCAP)
2868 : 0 : return rte_flow_error_set(error, EINVAL,
2869 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2870 : : "wrong tunnel type - IPv6 specified "
2871 : : "but IPv4 item provided");
2872 [ # # ]: 0 : if (item_flags & l3m)
2873 : 0 : return rte_flow_error_set(error, ENOTSUP,
2874 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2875 : : "multiple L3 layers not supported");
2876 [ # # ]: 0 : else if (item_flags & l4m)
2877 : 0 : return rte_flow_error_set(error, EINVAL,
2878 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2879 : : "L3 cannot follow an L4 layer.");
2880 [ # # ]: 0 : else if ((item_flags & MLX5_FLOW_LAYER_NVGRE) &&
2881 : : !(item_flags & MLX5_FLOW_LAYER_INNER_L2))
2882 : 0 : return rte_flow_error_set(error, EINVAL,
2883 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2884 : : "L3 cannot follow an NVGRE layer.");
2885 [ # # ]: 0 : if (!mask)
2886 : : mask = &rte_flow_item_ipv4_mask;
2887 [ # # ]: 0 : else if (mask->hdr.next_proto_id != 0 &&
2888 : : mask->hdr.next_proto_id != 0xff)
2889 : 0 : return rte_flow_error_set(error, EINVAL,
2890 : : RTE_FLOW_ERROR_TYPE_ITEM_MASK, mask,
2891 : : "partial mask is not supported"
2892 : : " for protocol");
2893 [ # # ]: 0 : ret = mlx5_flow_item_acceptable(dev, item, (const uint8_t *)mask,
2894 : : acc_mask ? (const uint8_t *)acc_mask
2895 : : : (const uint8_t *)&nic_mask,
2896 : : sizeof(struct rte_flow_item_ipv4),
2897 : : range_accepted, error);
2898 : : if (ret < 0)
2899 : : return ret;
2900 : : return 0;
2901 : : }
2902 : :
2903 : : /**
2904 : : * Validate IPV6 item.
2905 : : *
2906 : : * @param[in] item
2907 : : * Item specification.
2908 : : * @param[in] item_flags
2909 : : * Bit-fields that holds the items detected until now.
2910 : : * @param[in] last_item
2911 : : * Previous validated item in the pattern items.
2912 : : * @param[in] ether_type
2913 : : * Type in the ethernet layer header (including dot1q).
2914 : : * @param[in] acc_mask
2915 : : * Acceptable mask, if NULL default internal default mask
2916 : : * will be used to check whether item fields are supported.
2917 : : * @param[out] error
2918 : : * Pointer to error structure.
2919 : : *
2920 : : * @return
2921 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
2922 : : */
2923 : : int
2924 : 0 : mlx5_flow_validate_item_ipv6(const struct rte_eth_dev *dev,
2925 : : const struct rte_flow_item *item,
2926 : : uint64_t item_flags,
2927 : : uint64_t last_item,
2928 : : uint16_t ether_type,
2929 : : const struct rte_flow_item_ipv6 *acc_mask,
2930 : : struct rte_flow_error *error)
2931 : : {
2932 : 0 : const struct rte_flow_item_ipv6 *mask = item->mask;
2933 : 0 : const struct rte_flow_item_ipv6 *spec = item->spec;
2934 : 0 : const struct rte_flow_item_ipv6 nic_mask = {
2935 : : .hdr = {
2936 : : .src_addr = RTE_IPV6_MASK_FULL,
2937 : : .dst_addr = RTE_IPV6_MASK_FULL,
2938 : : .vtc_flow = RTE_BE32(0xffffffff),
2939 : : .proto = 0xff,
2940 : : },
2941 : : };
2942 : 0 : const int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
2943 [ # # ]: 0 : const uint64_t l3m = tunnel ? MLX5_FLOW_LAYER_INNER_L3 :
2944 : : MLX5_FLOW_LAYER_OUTER_L3;
2945 [ # # ]: 0 : const uint64_t l4m = tunnel ? MLX5_FLOW_LAYER_INNER_L4 :
2946 : : MLX5_FLOW_LAYER_OUTER_L4;
2947 : : int ret;
2948 : : uint8_t next_proto = 0xFF;
2949 : : const uint64_t l2_vlan = (MLX5_FLOW_LAYER_L2 |
2950 : : MLX5_FLOW_LAYER_OUTER_VLAN |
2951 : : MLX5_FLOW_LAYER_INNER_VLAN);
2952 : :
2953 [ # # ]: 0 : if ((last_item & l2_vlan) && ether_type &&
2954 [ # # ]: 0 : ether_type != RTE_ETHER_TYPE_IPV6)
2955 : 0 : return rte_flow_error_set(error, EINVAL,
2956 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2957 : : "IPv6 cannot follow L2/VLAN layer "
2958 : : "which ether type is not IPv6");
2959 [ # # # # : 0 : if (mask && mask->hdr.proto == UINT8_MAX && spec)
# # ]
2960 : 0 : next_proto = spec->hdr.proto;
2961 [ # # ]: 0 : if (item_flags & MLX5_FLOW_LAYER_IPIP) {
2962 [ # # ]: 0 : if (next_proto == IPPROTO_IPIP || next_proto == IPPROTO_IPV6)
2963 : 0 : return rte_flow_error_set(error, EINVAL,
2964 : : RTE_FLOW_ERROR_TYPE_ITEM,
2965 : : item,
2966 : : "multiple tunnel "
2967 : : "not supported");
2968 : : }
2969 : 0 : if (next_proto == IPPROTO_HOPOPTS ||
2970 [ # # ]: 0 : next_proto == IPPROTO_ROUTING ||
2971 : : next_proto == IPPROTO_FRAGMENT ||
2972 : : next_proto == IPPROTO_AH ||
2973 [ # # ]: 0 : next_proto == IPPROTO_DSTOPTS ||
2974 [ # # ]: 0 : (!mlx5_hws_active(dev) && next_proto == IPPROTO_ESP))
2975 : 0 : return rte_flow_error_set(error, EINVAL,
2976 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2977 : : "IPv6 proto (next header) should "
2978 : : "not be set as extension header");
2979 [ # # ]: 0 : if (item_flags & MLX5_FLOW_LAYER_IPIP)
2980 : 0 : return rte_flow_error_set(error, EINVAL,
2981 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2982 : : "wrong tunnel type - IPv4 specified "
2983 : : "but IPv6 item provided");
2984 [ # # ]: 0 : if (item_flags & l3m)
2985 : 0 : return rte_flow_error_set(error, ENOTSUP,
2986 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2987 : : "multiple L3 layers not supported");
2988 [ # # ]: 0 : else if (item_flags & l4m)
2989 : 0 : return rte_flow_error_set(error, EINVAL,
2990 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2991 : : "L3 cannot follow an L4 layer.");
2992 [ # # ]: 0 : else if ((item_flags & MLX5_FLOW_LAYER_NVGRE) &&
2993 : : !(item_flags & MLX5_FLOW_LAYER_INNER_L2))
2994 : 0 : return rte_flow_error_set(error, EINVAL,
2995 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
2996 : : "L3 cannot follow an NVGRE layer.");
2997 [ # # ]: 0 : if (!mask)
2998 : : mask = &rte_flow_item_ipv6_mask;
2999 [ # # ]: 0 : ret = mlx5_flow_item_acceptable(dev, item, (const uint8_t *)mask,
3000 : : acc_mask ? (const uint8_t *)acc_mask
3001 : : : (const uint8_t *)&nic_mask,
3002 : : sizeof(struct rte_flow_item_ipv6),
3003 : : MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
3004 : : if (ret < 0)
3005 : : return ret;
3006 : : return 0;
3007 : : }
3008 : :
3009 : : /**
3010 : : * Validate UDP item.
3011 : : *
3012 : : * @param[in] item
3013 : : * Item specification.
3014 : : * @param[in] item_flags
3015 : : * Bit-fields that holds the items detected until now.
3016 : : * @param[in] target_protocol
3017 : : * The next protocol in the previous item.
3018 : : * @param[in] flow_mask
3019 : : * mlx5 flow-specific (DV, verbs, etc.) supported header fields mask.
3020 : : * @param[out] error
3021 : : * Pointer to error structure.
3022 : : *
3023 : : * @return
3024 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
3025 : : */
3026 : : int
3027 : 0 : mlx5_flow_validate_item_udp(const struct rte_eth_dev *dev,
3028 : : const struct rte_flow_item *item,
3029 : : uint64_t item_flags,
3030 : : uint8_t target_protocol,
3031 : : struct rte_flow_error *error)
3032 : : {
3033 : 0 : const struct rte_flow_item_udp *mask = item->mask;
3034 : 0 : const int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
3035 [ # # ]: 0 : const uint64_t l3m = tunnel ? MLX5_FLOW_LAYER_INNER_L3 :
3036 : : MLX5_FLOW_LAYER_OUTER_L3;
3037 [ # # ]: 0 : const uint64_t l4m = tunnel ? MLX5_FLOW_LAYER_INNER_L4 :
3038 : : MLX5_FLOW_LAYER_OUTER_L4;
3039 : : int ret;
3040 : :
3041 [ # # ]: 0 : if (!mlx5_hws_active(dev)) {
3042 [ # # ]: 0 : if (target_protocol != 0xff && target_protocol != IPPROTO_UDP)
3043 : 0 : return rte_flow_error_set(error, EINVAL,
3044 : : RTE_FLOW_ERROR_TYPE_ITEM,
3045 : : item, "protocol filtering not compatible with UDP layer");
3046 [ # # ]: 0 : if (!(item_flags & l3m))
3047 : 0 : return rte_flow_error_set(error, EINVAL,
3048 : : RTE_FLOW_ERROR_TYPE_ITEM,
3049 : : item,
3050 : : "L3 is mandatory to filter on L4");
3051 : : }
3052 [ # # ]: 0 : if (item_flags & l4m)
3053 : 0 : return rte_flow_error_set(error, EINVAL,
3054 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3055 : : "multiple L4 layers not supported");
3056 [ # # ]: 0 : if (!mask)
3057 : : mask = &rte_flow_item_udp_mask;
3058 : 0 : ret = mlx5_flow_item_acceptable
3059 : : (dev, item, (const uint8_t *)mask,
3060 : : (const uint8_t *)&rte_flow_item_udp_mask,
3061 : : sizeof(struct rte_flow_item_udp), MLX5_ITEM_RANGE_NOT_ACCEPTED,
3062 : : error);
3063 : : if (ret < 0)
3064 : : return ret;
3065 : : return 0;
3066 : : }
3067 : :
3068 : : /**
3069 : : * Validate TCP item.
3070 : : *
3071 : : * @param[in] item
3072 : : * Item specification.
3073 : : * @param[in] item_flags
3074 : : * Bit-fields that holds the items detected until now.
3075 : : * @param[in] target_protocol
3076 : : * The next protocol in the previous item.
3077 : : * @param[out] error
3078 : : * Pointer to error structure.
3079 : : *
3080 : : * @return
3081 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
3082 : : */
3083 : : int
3084 : 0 : mlx5_flow_validate_item_tcp(const struct rte_eth_dev *dev,
3085 : : const struct rte_flow_item *item,
3086 : : uint64_t item_flags,
3087 : : uint8_t target_protocol,
3088 : : const struct rte_flow_item_tcp *flow_mask,
3089 : : struct rte_flow_error *error)
3090 : : {
3091 : 0 : const struct rte_flow_item_tcp *mask = item->mask;
3092 : 0 : const int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
3093 [ # # ]: 0 : const uint64_t l3m = tunnel ? MLX5_FLOW_LAYER_INNER_L3 :
3094 : : MLX5_FLOW_LAYER_OUTER_L3;
3095 [ # # ]: 0 : const uint64_t l4m = tunnel ? MLX5_FLOW_LAYER_INNER_L4 :
3096 : : MLX5_FLOW_LAYER_OUTER_L4;
3097 : : int ret;
3098 : :
3099 : : MLX5_ASSERT(flow_mask);
3100 [ # # ]: 0 : if (!mlx5_hws_active(dev)) {
3101 [ # # ]: 0 : if (target_protocol != 0xff && target_protocol != IPPROTO_TCP)
3102 : 0 : return rte_flow_error_set(error, EINVAL,
3103 : : RTE_FLOW_ERROR_TYPE_ITEM,
3104 : : item, "protocol filtering not compatible with TCP layer");
3105 [ # # ]: 0 : if (!(item_flags & l3m))
3106 : 0 : return rte_flow_error_set(error, EINVAL,
3107 : : RTE_FLOW_ERROR_TYPE_ITEM,
3108 : : item, "L3 is mandatory to filter on L4");
3109 : : }
3110 [ # # ]: 0 : if (item_flags & l4m)
3111 : 0 : return rte_flow_error_set(error, EINVAL,
3112 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3113 : : "multiple L4 layers not supported");
3114 [ # # ]: 0 : if (!mask)
3115 : : mask = &rte_flow_item_tcp_mask;
3116 : 0 : ret = mlx5_flow_item_acceptable
3117 : : (dev, item, (const uint8_t *)mask,
3118 : : (const uint8_t *)flow_mask,
3119 : : sizeof(struct rte_flow_item_tcp), MLX5_ITEM_RANGE_NOT_ACCEPTED,
3120 : : error);
3121 : : if (ret < 0)
3122 : : return ret;
3123 : : return 0;
3124 : : }
3125 : :
3126 : : /**
3127 : : * Validate VXLAN item.
3128 : : *
3129 : : * @param[in] dev
3130 : : * Pointer to the Ethernet device structure.
3131 : : * @param[in] udp_dport
3132 : : * UDP destination port
3133 : : * @param[in] item
3134 : : * Item specification.
3135 : : * @param[in] item_flags
3136 : : * Bit-fields that holds the items detected until now.
3137 : : * @param root
3138 : : * Whether action is on root table.
3139 : : * @param[out] error
3140 : : * Pointer to error structure.
3141 : : *
3142 : : * @return
3143 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
3144 : : */
3145 : : int
3146 : 0 : mlx5_flow_validate_item_vxlan(struct rte_eth_dev *dev,
3147 : : uint16_t udp_dport,
3148 : : const struct rte_flow_item *item,
3149 : : uint64_t item_flags,
3150 : : bool root,
3151 : : struct rte_flow_error *error)
3152 : : {
3153 : 0 : const struct rte_flow_item_vxlan *spec = item->spec;
3154 : 0 : const struct rte_flow_item_vxlan *mask = item->mask;
3155 : : int ret;
3156 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
3157 : : union vni {
3158 : : uint32_t vlan_id;
3159 : : uint8_t vni[4];
3160 : 0 : } id = { .vlan_id = 0, };
3161 : 0 : const struct rte_flow_item_vxlan nic_mask = {
3162 : : .hdr.vni = { 0xff, 0xff, 0xff },
3163 : : .hdr.rsvd1 = 0xff,
3164 : : };
3165 : : const struct rte_flow_item_vxlan *valid_mask;
3166 : :
3167 [ # # ]: 0 : if (item_flags & MLX5_FLOW_LAYER_TUNNEL)
3168 : 0 : return rte_flow_error_set(error, ENOTSUP,
3169 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3170 : : "multiple tunnel layers not"
3171 : : " supported");
3172 : : /* HWS can match entire VXLAN, VXLAN-GBP and VXLAN-GPE headers */
3173 [ # # ]: 0 : if (mlx5_hws_active(dev))
3174 : : return 0;
3175 : : valid_mask = &rte_flow_item_vxlan_mask;
3176 : : /*
3177 : : * Verify only UDPv4 is present as defined in
3178 : : * https://tools.ietf.org/html/rfc7348
3179 : : */
3180 [ # # ]: 0 : if (!(item_flags & MLX5_FLOW_LAYER_OUTER_L4_UDP))
3181 : 0 : return rte_flow_error_set(error, EINVAL,
3182 : : RTE_FLOW_ERROR_TYPE_ITEM,
3183 : : item, "no outer UDP layer found");
3184 [ # # ]: 0 : if (!(item_flags & MLX5_FLOW_LAYER_OUTER))
3185 : 0 : return rte_flow_error_set(error, ENOTSUP,
3186 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3187 : : "VXLAN tunnel must be fully defined");
3188 [ # # ]: 0 : if (!mask)
3189 : : mask = &rte_flow_item_vxlan_mask;
3190 : :
3191 [ # # ]: 0 : if (priv->sh->steering_format_version !=
3192 : : MLX5_STEERING_LOGIC_FORMAT_CONNECTX_5 ||
3193 [ # # ]: 0 : !udp_dport || udp_dport == MLX5_UDP_PORT_VXLAN) {
3194 : : /* non-root table */
3195 [ # # # # ]: 0 : if (!root && priv->sh->misc5_cap)
3196 : : valid_mask = &nic_mask;
3197 : : /* Group zero in NIC domain */
3198 [ # # # # ]: 0 : if (!root && priv->sh->tunnel_header_0_1)
3199 : : valid_mask = &nic_mask;
3200 : : }
3201 : 0 : ret = mlx5_flow_item_acceptable
3202 : : (dev, item, (const uint8_t *)mask,
3203 : : (const uint8_t *)valid_mask,
3204 : : sizeof(struct rte_flow_item_vxlan),
3205 : : MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
3206 : : if (ret < 0)
3207 : : return ret;
3208 : : if (spec) {
3209 : : memcpy(&id.vni[1], spec->hdr.vni, 3);
3210 : : memcpy(&id.vni[1], mask->hdr.vni, 3);
3211 : : }
3212 : : return 0;
3213 : : }
3214 : :
3215 : : /**
3216 : : * Validate VXLAN_GPE item.
3217 : : *
3218 : : * @param[in] item
3219 : : * Item specification.
3220 : : * @param[in] item_flags
3221 : : * Bit-fields that holds the items detected until now.
3222 : : * @param[in] priv
3223 : : * Pointer to the private data structure.
3224 : : * @param[in] target_protocol
3225 : : * The next protocol in the previous item.
3226 : : * @param[out] error
3227 : : * Pointer to error structure.
3228 : : *
3229 : : * @return
3230 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
3231 : : */
3232 : : int
3233 : 0 : mlx5_flow_validate_item_vxlan_gpe(const struct rte_flow_item *item,
3234 : : uint64_t item_flags,
3235 : : struct rte_eth_dev *dev,
3236 : : struct rte_flow_error *error)
3237 : : {
3238 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
3239 : : const struct rte_flow_item_vxlan_gpe *spec = item->spec;
3240 : 0 : const struct rte_flow_item_vxlan_gpe *mask = item->mask;
3241 : : int ret;
3242 : : union vni {
3243 : : uint32_t vlan_id;
3244 : : uint8_t vni[4];
3245 : 0 : } id = { .vlan_id = 0, };
3246 : :
3247 : 0 : struct rte_flow_item_vxlan_gpe nic_mask = {
3248 : : .vni = { 0xff, 0xff, 0xff },
3249 : : .protocol = 0xff,
3250 : : .flags = 0xff,
3251 : : };
3252 : :
3253 [ # # ]: 0 : if (!priv->sh->config.l3_vxlan_en)
3254 : 0 : return rte_flow_error_set(error, ENOTSUP,
3255 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3256 : : "L3 VXLAN is not enabled by device"
3257 : : " parameter and/or not configured in"
3258 : : " firmware");
3259 [ # # ]: 0 : if (item_flags & MLX5_FLOW_LAYER_TUNNEL)
3260 : 0 : return rte_flow_error_set(error, ENOTSUP,
3261 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3262 : : "multiple tunnel layers not"
3263 : : " supported");
3264 : : /*
3265 : : * Verify only UDPv4 is present as defined in
3266 : : * https://tools.ietf.org/html/rfc7348
3267 : : */
3268 [ # # ]: 0 : if (!mlx5_hws_active(dev)) {
3269 [ # # ]: 0 : if (!(item_flags & MLX5_FLOW_LAYER_OUTER_L4_UDP))
3270 : 0 : return rte_flow_error_set(error, EINVAL,
3271 : : RTE_FLOW_ERROR_TYPE_ITEM,
3272 : : item, "no outer UDP layer found");
3273 : : }
3274 [ # # ]: 0 : if (!mask)
3275 : : mask = &rte_flow_item_vxlan_gpe_mask;
3276 [ # # ]: 0 : if (mlx5_hws_active(dev) ||
3277 [ # # ]: 0 : (priv->sh->misc5_cap && priv->sh->tunnel_header_0_1)) {
3278 : 0 : nic_mask.rsvd0[0] = 0xff;
3279 : 0 : nic_mask.rsvd0[1] = 0xff;
3280 : 0 : nic_mask.rsvd1 = 0xff;
3281 : : }
3282 : 0 : ret = mlx5_flow_item_acceptable
3283 : : (dev, item, (const uint8_t *)mask,
3284 : : (const uint8_t *)&nic_mask,
3285 : : sizeof(struct rte_flow_item_vxlan_gpe),
3286 : : MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
3287 [ # # ]: 0 : if (ret < 0)
3288 : : return ret;
3289 : : if (spec) {
3290 : : memcpy(&id.vni[1], spec->hdr.vni, 3);
3291 : : memcpy(&id.vni[1], mask->hdr.vni, 3);
3292 : : }
3293 [ # # ]: 0 : if (!(item_flags & MLX5_FLOW_LAYER_OUTER))
3294 : 0 : return rte_flow_error_set(error, ENOTSUP,
3295 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3296 : : "VXLAN-GPE tunnel must be fully"
3297 : : " defined");
3298 : : return 0;
3299 : : }
3300 : : /**
3301 : : * Validate GRE Key item.
3302 : : *
3303 : : * @param[in] item
3304 : : * Item specification.
3305 : : * @param[in] item_flags
3306 : : * Bit flags to mark detected items.
3307 : : * @param[in] gre_item
3308 : : * Pointer to gre_item
3309 : : * @param[out] error
3310 : : * Pointer to error structure.
3311 : : *
3312 : : * @return
3313 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
3314 : : */
3315 : : int
3316 : 0 : mlx5_flow_validate_item_gre_key(const struct rte_eth_dev *dev,
3317 : : const struct rte_flow_item *item,
3318 : : uint64_t item_flags,
3319 : : const struct rte_flow_item *gre_item,
3320 : : struct rte_flow_error *error)
3321 : : {
3322 : 0 : const rte_be32_t *mask = item->mask;
3323 : : int ret = 0;
3324 : 0 : rte_be32_t gre_key_default_mask = RTE_BE32(UINT32_MAX);
3325 : : const struct rte_flow_item_gre *gre_spec;
3326 : : const struct rte_flow_item_gre *gre_mask;
3327 : :
3328 [ # # ]: 0 : if (item_flags & MLX5_FLOW_LAYER_GRE_KEY)
3329 : 0 : return rte_flow_error_set(error, ENOTSUP,
3330 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3331 : : "Multiple GRE key not support");
3332 [ # # ]: 0 : if (!(item_flags & MLX5_FLOW_LAYER_GRE))
3333 : 0 : return rte_flow_error_set(error, ENOTSUP,
3334 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3335 : : "No preceding GRE header");
3336 [ # # ]: 0 : if (item_flags & MLX5_FLOW_LAYER_INNER)
3337 : 0 : return rte_flow_error_set(error, ENOTSUP,
3338 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3339 : : "GRE key following a wrong item");
3340 : 0 : gre_mask = gre_item->mask;
3341 [ # # ]: 0 : if (!gre_mask)
3342 : : gre_mask = &rte_flow_item_gre_mask;
3343 : 0 : gre_spec = gre_item->spec;
3344 [ # # # # ]: 0 : if (gre_spec && (gre_mask->c_rsvd0_ver & RTE_BE16(0x2000)) &&
3345 [ # # ]: 0 : !(gre_spec->c_rsvd0_ver & RTE_BE16(0x2000)))
3346 : 0 : return rte_flow_error_set(error, EINVAL,
3347 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3348 : : "Key bit must be on");
3349 : :
3350 [ # # ]: 0 : if (!mask)
3351 : : mask = &gre_key_default_mask;
3352 : 0 : ret = mlx5_flow_item_acceptable
3353 : : (dev, item, (const uint8_t *)mask,
3354 : : (const uint8_t *)&gre_key_default_mask,
3355 : : sizeof(rte_be32_t), MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
3356 : 0 : return ret;
3357 : : }
3358 : :
3359 : : /**
3360 : : * Validate GRE optional item.
3361 : : *
3362 : : * @param[in] dev
3363 : : * Pointer to the Ethernet device structure.
3364 : : * @param[in] item
3365 : : * Item specification.
3366 : : * @param[in] item_flags
3367 : : * Bit flags to mark detected items.
3368 : : * @param[in] attr
3369 : : * Flow rule attributes.
3370 : : * @param[in] gre_item
3371 : : * Pointer to gre_item
3372 : : * @param[out] error
3373 : : * Pointer to error structure.
3374 : : *
3375 : : * @return
3376 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
3377 : : */
3378 : : int
3379 : 0 : mlx5_flow_validate_item_gre_option(struct rte_eth_dev *dev,
3380 : : const struct rte_flow_item *item,
3381 : : uint64_t item_flags,
3382 : : const struct rte_flow_attr *attr,
3383 : : const struct rte_flow_item *gre_item,
3384 : : struct rte_flow_error *error)
3385 : : {
3386 : 0 : const struct rte_flow_item_gre *gre_spec = gre_item->spec;
3387 : 0 : const struct rte_flow_item_gre *gre_mask = gre_item->mask;
3388 : 0 : const struct rte_flow_item_gre_opt *spec = item->spec;
3389 : 0 : const struct rte_flow_item_gre_opt *mask = item->mask;
3390 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
3391 : : int ret = 0;
3392 : 0 : struct rte_flow_item_gre_opt nic_mask = {
3393 : : .checksum_rsvd = {
3394 : : .checksum = RTE_BE16(UINT16_MAX),
3395 : : .reserved1 = 0x0,
3396 : : },
3397 : : .key = {
3398 : : .key = RTE_BE32(UINT32_MAX),
3399 : : },
3400 : : .sequence = {
3401 : : .sequence = RTE_BE32(UINT32_MAX),
3402 : : },
3403 : : };
3404 : :
3405 [ # # ]: 0 : if (!(item_flags & MLX5_FLOW_LAYER_GRE))
3406 : 0 : return rte_flow_error_set(error, ENOTSUP,
3407 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3408 : : "No preceding GRE header");
3409 [ # # ]: 0 : if (item_flags & MLX5_FLOW_LAYER_INNER)
3410 : 0 : return rte_flow_error_set(error, ENOTSUP,
3411 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3412 : : "GRE option following a wrong item");
3413 [ # # # # : 0 : if ((!spec && !mlx5_hws_active(dev)) || !mask)
# # ]
3414 : 0 : return rte_flow_error_set(error, EINVAL,
3415 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3416 : : "At least one field gre_option(checksum/key/sequence) must be specified");
3417 [ # # ]: 0 : if (!gre_mask)
3418 : : gre_mask = &rte_flow_item_gre_mask;
3419 [ # # ]: 0 : if (mask->checksum_rsvd.checksum)
3420 [ # # # # ]: 0 : if (gre_spec && (gre_mask->c_rsvd0_ver & RTE_BE16(0x8000)) &&
3421 [ # # ]: 0 : !(gre_spec->c_rsvd0_ver & RTE_BE16(0x8000)))
3422 : 0 : return rte_flow_error_set(error, EINVAL,
3423 : : RTE_FLOW_ERROR_TYPE_ITEM,
3424 : : item,
3425 : : "Checksum bit must be on");
3426 [ # # ]: 0 : if (mask->key.key)
3427 [ # # # # ]: 0 : if (gre_spec && (gre_mask->c_rsvd0_ver & RTE_BE16(0x2000)) &&
3428 [ # # ]: 0 : !(gre_spec->c_rsvd0_ver & RTE_BE16(0x2000)))
3429 : 0 : return rte_flow_error_set(error, EINVAL,
3430 : : RTE_FLOW_ERROR_TYPE_ITEM,
3431 : : item, "Key bit must be on");
3432 [ # # ]: 0 : if (mask->sequence.sequence)
3433 [ # # # # ]: 0 : if (gre_spec && (gre_mask->c_rsvd0_ver & RTE_BE16(0x1000)) &&
3434 [ # # ]: 0 : !(gre_spec->c_rsvd0_ver & RTE_BE16(0x1000)))
3435 : 0 : return rte_flow_error_set(error, EINVAL,
3436 : : RTE_FLOW_ERROR_TYPE_ITEM,
3437 : : item,
3438 : : "Sequence bit must be on");
3439 [ # # ]: 0 : if (!mlx5_hws_active(dev)) {
3440 [ # # # # ]: 0 : if (mask->checksum_rsvd.checksum || mask->sequence.sequence) {
3441 [ # # ]: 0 : if (priv->sh->steering_format_version ==
3442 : 0 : MLX5_STEERING_LOGIC_FORMAT_CONNECTX_5 ||
3443 [ # # ]: 0 : ((attr->group ||
3444 [ # # # # ]: 0 : (attr->transfer && priv->fdb_def_rule)) &&
3445 [ # # ]: 0 : !priv->sh->misc5_cap) ||
3446 [ # # ]: 0 : (!(priv->sh->tunnel_header_0_1 &&
3447 [ # # ]: 0 : priv->sh->tunnel_header_2_3) &&
3448 : 0 : !attr->group &&
3449 [ # # # # ]: 0 : (!attr->transfer || !priv->fdb_def_rule)))
3450 : 0 : return rte_flow_error_set
3451 : : (error, EINVAL, RTE_FLOW_ERROR_TYPE_ITEM,
3452 : : item, "Checksum/Sequence not supported");
3453 : : }
3454 : : }
3455 : 0 : ret = mlx5_flow_item_acceptable
3456 : : (dev, item, (const uint8_t *)mask,
3457 : : (const uint8_t *)&nic_mask,
3458 : : sizeof(struct rte_flow_item_gre_opt),
3459 : : MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
3460 : 0 : return ret;
3461 : : }
3462 : :
3463 : : /**
3464 : : * Validate GRE item.
3465 : : *
3466 : : * @param[in] item
3467 : : * Item specification.
3468 : : * @param[in] item_flags
3469 : : * Bit flags to mark detected items.
3470 : : * @param[in] target_protocol
3471 : : * The next protocol in the previous item.
3472 : : * @param[out] error
3473 : : * Pointer to error structure.
3474 : : *
3475 : : * @return
3476 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
3477 : : */
3478 : : int
3479 : 0 : mlx5_flow_validate_item_gre(const struct rte_eth_dev *dev,
3480 : : const struct rte_flow_item *item,
3481 : : uint64_t item_flags,
3482 : : uint8_t target_protocol,
3483 : : struct rte_flow_error *error)
3484 : : {
3485 : : const struct rte_flow_item_gre *spec __rte_unused = item->spec;
3486 : 0 : const struct rte_flow_item_gre *mask = item->mask;
3487 : : int ret;
3488 : 0 : const struct rte_flow_item_gre nic_mask = {
3489 : : .c_rsvd0_ver = RTE_BE16(0xB000),
3490 : : .protocol = RTE_BE16(UINT16_MAX),
3491 : : };
3492 : :
3493 [ # # ]: 0 : if (target_protocol != 0xff && target_protocol != IPPROTO_GRE)
3494 : 0 : return rte_flow_error_set(error, EINVAL,
3495 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3496 : : "protocol filtering not compatible"
3497 : : " with this GRE layer");
3498 [ # # ]: 0 : if (item_flags & MLX5_FLOW_LAYER_TUNNEL)
3499 : 0 : return rte_flow_error_set(error, ENOTSUP,
3500 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3501 : : "multiple tunnel layers not"
3502 : : " supported");
3503 [ # # ]: 0 : if (!mlx5_hws_active(dev)) {
3504 [ # # ]: 0 : if (!(item_flags & MLX5_FLOW_LAYER_OUTER_L3))
3505 : 0 : return rte_flow_error_set(error, ENOTSUP,
3506 : : RTE_FLOW_ERROR_TYPE_ITEM,
3507 : : item, "L3 Layer is missing");
3508 : : }
3509 [ # # ]: 0 : if (!mask)
3510 : : mask = &rte_flow_item_gre_mask;
3511 : 0 : ret = mlx5_flow_item_acceptable
3512 : : (dev, item, (const uint8_t *)mask,
3513 : : (const uint8_t *)&nic_mask,
3514 : : sizeof(struct rte_flow_item_gre), MLX5_ITEM_RANGE_NOT_ACCEPTED,
3515 : : error);
3516 : : if (ret < 0)
3517 : : return ret;
3518 : : #ifndef HAVE_MLX5DV_DR
3519 : : #ifndef HAVE_IBV_DEVICE_MPLS_SUPPORT
3520 : : if (spec && (spec->protocol & mask->protocol))
3521 : : return rte_flow_error_set(error, ENOTSUP,
3522 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3523 : : "without MPLS support the"
3524 : : " specification cannot be used for"
3525 : : " filtering");
3526 : : #endif
3527 : : #endif
3528 : : return 0;
3529 : : }
3530 : :
3531 : : /**
3532 : : * Validate Geneve item.
3533 : : *
3534 : : * @param[in] item
3535 : : * Item specification.
3536 : : * @param[in] itemFlags
3537 : : * Bit-fields that holds the items detected until now.
3538 : : * @param[in] enPriv
3539 : : * Pointer to the private data structure.
3540 : : * @param[out] error
3541 : : * Pointer to error structure.
3542 : : *
3543 : : * @return
3544 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
3545 : : */
3546 : :
3547 : : int
3548 : 0 : mlx5_flow_validate_item_geneve(const struct rte_flow_item *item,
3549 : : uint64_t item_flags,
3550 : : struct rte_eth_dev *dev,
3551 : : struct rte_flow_error *error)
3552 : : {
3553 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
3554 : 0 : const struct rte_flow_item_geneve *spec = item->spec;
3555 : 0 : const struct rte_flow_item_geneve *mask = item->mask;
3556 : : int ret;
3557 : : uint16_t gbhdr;
3558 [ # # ]: 0 : uint8_t opt_len = priv->sh->cdev->config.hca_attr.geneve_max_opt_len ?
3559 : : MLX5_GENEVE_OPT_LEN_1 : MLX5_GENEVE_OPT_LEN_0;
3560 : 0 : const struct rte_flow_item_geneve nic_mask = {
3561 : : .ver_opt_len_o_c_rsvd0 = RTE_BE16(0x3f80),
3562 : : .vni = { 0xff, 0xff, 0xff },
3563 : : .protocol = RTE_BE16(UINT16_MAX),
3564 : : };
3565 : :
3566 [ # # ]: 0 : if (!priv->sh->cdev->config.hca_attr.tunnel_stateless_geneve_rx)
3567 : 0 : return rte_flow_error_set(error, ENOTSUP,
3568 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3569 : : "L3 Geneve is not enabled by device"
3570 : : " parameter and/or not configured in"
3571 : : " firmware");
3572 [ # # ]: 0 : if (item_flags & MLX5_FLOW_LAYER_TUNNEL)
3573 : 0 : return rte_flow_error_set(error, ENOTSUP,
3574 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3575 : : "multiple tunnel layers not"
3576 : : " supported");
3577 : : /*
3578 : : * Verify only UDPv4 is present as defined in
3579 : : * https://tools.ietf.org/html/rfc7348
3580 : : */
3581 [ # # ]: 0 : if (!(item_flags & MLX5_FLOW_LAYER_OUTER_L4_UDP))
3582 : 0 : return rte_flow_error_set(error, EINVAL,
3583 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3584 : : "no outer UDP layer found");
3585 [ # # ]: 0 : if (!mask)
3586 : : mask = &rte_flow_item_geneve_mask;
3587 : 0 : ret = mlx5_flow_item_acceptable
3588 : : (dev, item, (const uint8_t *)mask,
3589 : : (const uint8_t *)&nic_mask,
3590 : : sizeof(struct rte_flow_item_geneve),
3591 : : MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
3592 [ # # ]: 0 : if (ret)
3593 : : return ret;
3594 [ # # ]: 0 : if (spec) {
3595 [ # # ]: 0 : gbhdr = rte_be_to_cpu_16(spec->ver_opt_len_o_c_rsvd0);
3596 [ # # ]: 0 : if (MLX5_GENEVE_VER_VAL(gbhdr) ||
3597 [ # # # # ]: 0 : MLX5_GENEVE_CRITO_VAL(gbhdr) ||
3598 [ # # ]: 0 : MLX5_GENEVE_RSVD_VAL(gbhdr) || spec->rsvd1)
3599 : 0 : return rte_flow_error_set(error, ENOTSUP,
3600 : : RTE_FLOW_ERROR_TYPE_ITEM,
3601 : : item,
3602 : : "Geneve protocol unsupported"
3603 : : " fields are being used");
3604 [ # # ]: 0 : if (MLX5_GENEVE_OPTLEN_VAL(gbhdr) > opt_len)
3605 : 0 : return rte_flow_error_set
3606 : : (error, ENOTSUP,
3607 : : RTE_FLOW_ERROR_TYPE_ITEM,
3608 : : item,
3609 : : "Unsupported Geneve options length");
3610 : : }
3611 [ # # ]: 0 : if (!(item_flags & MLX5_FLOW_LAYER_OUTER))
3612 : 0 : return rte_flow_error_set
3613 : : (error, ENOTSUP,
3614 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3615 : : "Geneve tunnel must be fully defined");
3616 : : return 0;
3617 : : }
3618 : :
3619 : : /**
3620 : : * Validate Geneve TLV option item.
3621 : : *
3622 : : * @param[in] item
3623 : : * Item specification.
3624 : : * @param[in] last_item
3625 : : * Previous validated item in the pattern items.
3626 : : * @param[in] geneve_item
3627 : : * Previous GENEVE item specification.
3628 : : * @param[in] dev
3629 : : * Pointer to the rte_eth_dev structure.
3630 : : * @param[out] error
3631 : : * Pointer to error structure.
3632 : : *
3633 : : * @return
3634 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
3635 : : */
3636 : : int
3637 : 0 : mlx5_flow_validate_item_geneve_opt(const struct rte_flow_item *item,
3638 : : uint64_t last_item,
3639 : : const struct rte_flow_item *geneve_item,
3640 : : struct rte_eth_dev *dev,
3641 : : struct rte_flow_error *error)
3642 : : {
3643 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
3644 : 0 : struct mlx5_dev_ctx_shared *sh = priv->sh;
3645 : : struct mlx5_geneve_tlv_option_resource *geneve_opt_resource;
3646 : 0 : struct mlx5_hca_attr *hca_attr = &sh->cdev->config.hca_attr;
3647 : 0 : uint8_t data_max_supported =
3648 : 0 : hca_attr->max_geneve_tlv_option_data_len * 4;
3649 : : const struct rte_flow_item_geneve *geneve_spec;
3650 : : const struct rte_flow_item_geneve *geneve_mask;
3651 : 0 : const struct rte_flow_item_geneve_opt *spec = item->spec;
3652 : 0 : const struct rte_flow_item_geneve_opt *mask = item->mask;
3653 : : unsigned int i;
3654 : : unsigned int data_len;
3655 : : uint8_t tlv_option_len;
3656 : : uint16_t optlen_m, optlen_v;
3657 : : const struct rte_flow_item_geneve_opt full_mask = {
3658 : : .option_class = RTE_BE16(0xffff),
3659 : : .option_type = 0xff,
3660 : : .option_len = 0x1f,
3661 : : };
3662 : :
3663 [ # # ]: 0 : if (!mask)
3664 : : mask = &rte_flow_item_geneve_opt_mask;
3665 [ # # ]: 0 : if (!spec)
3666 : 0 : return rte_flow_error_set
3667 : : (error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM, item,
3668 : : "Geneve TLV opt class/type/length must be specified");
3669 [ # # ]: 0 : if ((uint32_t)spec->option_len > MLX5_GENEVE_OPTLEN_MASK)
3670 : 0 : return rte_flow_error_set
3671 : : (error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM, item,
3672 : : "Geneve TLV opt length exceeds the limit (31)");
3673 : : /* Check if class type and length masks are full. */
3674 [ # # ]: 0 : if (full_mask.option_class != mask->option_class ||
3675 : 0 : full_mask.option_type != mask->option_type ||
3676 [ # # ]: 0 : full_mask.option_len != (mask->option_len & full_mask.option_len))
3677 : 0 : return rte_flow_error_set
3678 : : (error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM, item,
3679 : : "Geneve TLV opt class/type/length masks must be full");
3680 : : /* Check if length is supported */
3681 [ # # ]: 0 : if ((uint32_t)spec->option_len >
3682 : : hca_attr->max_geneve_tlv_option_data_len)
3683 : 0 : return rte_flow_error_set
3684 : : (error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM, item,
3685 : : "Geneve TLV opt length not supported");
3686 [ # # ]: 0 : if (hca_attr->max_geneve_tlv_options > 1)
3687 : 0 : DRV_LOG(DEBUG,
3688 : : "max_geneve_tlv_options supports more than 1 option");
3689 : : /* Check GENEVE item preceding. */
3690 [ # # # # ]: 0 : if (!geneve_item || !(last_item & MLX5_FLOW_LAYER_GENEVE))
3691 : 0 : return rte_flow_error_set
3692 : : (error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM, item,
3693 : : "Geneve opt item must be preceded with Geneve item");
3694 : 0 : geneve_spec = geneve_item->spec;
3695 [ # # ]: 0 : geneve_mask = geneve_item->mask ? geneve_item->mask :
3696 : : &rte_flow_item_geneve_mask;
3697 : : /* Check if GENEVE TLV option size doesn't exceed option length */
3698 [ # # # # ]: 0 : if (geneve_spec && (geneve_mask->ver_opt_len_o_c_rsvd0 ||
3699 [ # # ]: 0 : geneve_spec->ver_opt_len_o_c_rsvd0)) {
3700 : 0 : tlv_option_len = spec->option_len & mask->option_len;
3701 [ # # ]: 0 : optlen_v = rte_be_to_cpu_16(geneve_spec->ver_opt_len_o_c_rsvd0);
3702 : 0 : optlen_v = MLX5_GENEVE_OPTLEN_VAL(optlen_v);
3703 [ # # ]: 0 : optlen_m = rte_be_to_cpu_16(geneve_mask->ver_opt_len_o_c_rsvd0);
3704 : 0 : optlen_m = MLX5_GENEVE_OPTLEN_VAL(optlen_m);
3705 [ # # ]: 0 : if ((optlen_v & optlen_m) <= tlv_option_len)
3706 : 0 : return rte_flow_error_set
3707 : : (error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM, item,
3708 : : "GENEVE TLV option length exceeds optlen");
3709 : : }
3710 : : /* Check if length is 0 or data is 0. */
3711 [ # # # # ]: 0 : if (spec->data == NULL || spec->option_len == 0)
3712 : 0 : return rte_flow_error_set
3713 : : (error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM, item,
3714 : : "Geneve TLV opt with zero data/length not supported");
3715 : : /* Check not all data & mask are 0. */
3716 : 0 : data_len = spec->option_len * 4;
3717 [ # # ]: 0 : if (mask->data == NULL) {
3718 [ # # ]: 0 : for (i = 0; i < data_len; i++)
3719 [ # # ]: 0 : if (spec->data[i])
3720 : : break;
3721 [ # # ]: 0 : if (i == data_len)
3722 : 0 : return rte_flow_error_set(error, ENOTSUP,
3723 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3724 : : "Can't match on Geneve option data 0");
3725 : : } else {
3726 [ # # ]: 0 : for (i = 0; i < data_len; i++)
3727 [ # # ]: 0 : if (spec->data[i] & mask->data[i])
3728 : : break;
3729 [ # # ]: 0 : if (i == data_len)
3730 : 0 : return rte_flow_error_set(error, ENOTSUP,
3731 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3732 : : "Can't match on Geneve option data and mask 0");
3733 : : /* Check data mask supported. */
3734 [ # # ]: 0 : for (i = data_max_supported; i < data_len ; i++)
3735 [ # # ]: 0 : if (mask->data[i])
3736 : 0 : return rte_flow_error_set(error, ENOTSUP,
3737 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3738 : : "Data mask is of unsupported size");
3739 : : }
3740 : : /* Check GENEVE option is supported in NIC. */
3741 [ # # ]: 0 : if (!hca_attr->geneve_tlv_opt)
3742 : 0 : return rte_flow_error_set
3743 : : (error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM, item,
3744 : : "Geneve TLV opt not supported");
3745 : : /* Check if we already have geneve option with different type/class. */
3746 : 0 : rte_spinlock_lock(&sh->geneve_tlv_opt_sl);
3747 : 0 : geneve_opt_resource = sh->geneve_tlv_option_resource;
3748 [ # # ]: 0 : if (geneve_opt_resource != NULL)
3749 : 0 : if (geneve_opt_resource->option_class != spec->option_class ||
3750 [ # # ]: 0 : geneve_opt_resource->option_type != spec->option_type ||
3751 : : geneve_opt_resource->length != spec->option_len) {
3752 : : rte_spinlock_unlock(&sh->geneve_tlv_opt_sl);
3753 : 0 : return rte_flow_error_set(error, ENOTSUP,
3754 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3755 : : "Only one Geneve TLV option supported");
3756 : : }
3757 : : rte_spinlock_unlock(&sh->geneve_tlv_opt_sl);
3758 : 0 : return 0;
3759 : : }
3760 : :
3761 : : /**
3762 : : * Validate MPLS item.
3763 : : *
3764 : : * @param[in] dev
3765 : : * Pointer to the rte_eth_dev structure.
3766 : : * @param[in] item
3767 : : * Item specification.
3768 : : * @param[in] item_flags
3769 : : * Bit-fields that holds the items detected until now.
3770 : : * @param[in] prev_layer
3771 : : * The protocol layer indicated in previous item.
3772 : : * @param[out] error
3773 : : * Pointer to error structure.
3774 : : *
3775 : : * @return
3776 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
3777 : : */
3778 : : int
3779 : 0 : mlx5_flow_validate_item_mpls(struct rte_eth_dev *dev __rte_unused,
3780 : : const struct rte_flow_item *item __rte_unused,
3781 : : uint64_t item_flags __rte_unused,
3782 : : uint64_t prev_layer __rte_unused,
3783 : : struct rte_flow_error *error)
3784 : : {
3785 : : #ifdef HAVE_IBV_DEVICE_MPLS_SUPPORT
3786 [ # # ]: 0 : const struct rte_flow_item_mpls hws_nic_mask = {
3787 : : .label_tc_s = {0xff, 0xff, 0xff},
3788 : : .ttl = 0xff
3789 : : };
3790 : : const struct rte_flow_item_mpls *nic_mask = !mlx5_hws_active(dev) ?
3791 [ # # ]: 0 : &rte_flow_item_mpls_mask : &hws_nic_mask;
3792 : 0 : const struct rte_flow_item_mpls *mask = item->mask;
3793 : : struct mlx5_priv *priv = dev->data->dev_private;
3794 : : int ret;
3795 : :
3796 [ # # ]: 0 : if (!mlx5_hws_active(dev)) {
3797 : : /* MPLS has HW support in HWS */
3798 [ # # ]: 0 : if (!priv->sh->dev_cap.mpls_en)
3799 : 0 : return rte_flow_error_set(error, ENOTSUP,
3800 : : RTE_FLOW_ERROR_TYPE_ITEM,
3801 : : item, "MPLS not supported or disabled in firmware configuration.");
3802 : : /* MPLS over UDP, GRE is allowed */
3803 [ # # ]: 0 : if (!(prev_layer & (MLX5_FLOW_LAYER_OUTER_L4_UDP |
3804 : : MLX5_FLOW_LAYER_GRE |
3805 : : MLX5_FLOW_LAYER_GRE_KEY)))
3806 : 0 : return rte_flow_error_set(error, EINVAL,
3807 : : RTE_FLOW_ERROR_TYPE_ITEM,
3808 : : item, "protocol filtering not compatible with MPLS layer");
3809 : : /* Multi-tunnel isn't allowed but MPLS over GRE is an exception. */
3810 [ # # ]: 0 : if ((item_flags & MLX5_FLOW_LAYER_TUNNEL) &&
3811 [ # # ]: 0 : !(item_flags & MLX5_FLOW_LAYER_GRE))
3812 : 0 : return rte_flow_error_set(error, ENOTSUP,
3813 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3814 : : "multiple tunnel layers not supported");
3815 : : } else {
3816 : : /* Multi-tunnel isn't allowed but MPLS over GRE is an exception. */
3817 [ # # ]: 0 : if ((item_flags & MLX5_FLOW_LAYER_TUNNEL) &&
3818 [ # # ]: 0 : !(item_flags & MLX5_FLOW_LAYER_MPLS))
3819 : 0 : return rte_flow_error_set(error, ENOTSUP,
3820 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3821 : : "multiple tunnel layers not supported");
3822 : : }
3823 [ # # ]: 0 : if (!mask)
3824 : : mask = nic_mask;
3825 : 0 : ret = mlx5_flow_item_acceptable
3826 : : (dev, item, (const uint8_t *)mask,
3827 : : (const uint8_t *)nic_mask,
3828 : : sizeof(struct rte_flow_item_mpls),
3829 : : MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
3830 : : if (ret < 0)
3831 : : return ret;
3832 : : return 0;
3833 : : #else
3834 : : return rte_flow_error_set(error, ENOTSUP,
3835 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3836 : : "MPLS is not supported by Verbs, please"
3837 : : " update.");
3838 : : #endif
3839 : : }
3840 : :
3841 : : /**
3842 : : * Validate NVGRE item.
3843 : : *
3844 : : * @param[in] item
3845 : : * Item specification.
3846 : : * @param[in] item_flags
3847 : : * Bit flags to mark detected items.
3848 : : * @param[in] target_protocol
3849 : : * The next protocol in the previous item.
3850 : : * @param[out] error
3851 : : * Pointer to error structure.
3852 : : *
3853 : : * @return
3854 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
3855 : : */
3856 : : int
3857 : 0 : mlx5_flow_validate_item_nvgre(const struct rte_eth_dev *dev,
3858 : : const struct rte_flow_item *item,
3859 : : uint64_t item_flags,
3860 : : uint8_t target_protocol,
3861 : : struct rte_flow_error *error)
3862 : : {
3863 : 0 : const struct rte_flow_item_nvgre *mask = item->mask;
3864 : : int ret;
3865 : :
3866 [ # # ]: 0 : const struct rte_flow_item_nvgre hws_nic_mask = {
3867 : : .c_k_s_rsvd0_ver = RTE_BE16(0xB000),
3868 : : .protocol = RTE_BE16(UINT16_MAX),
3869 : : .tni = {0xff, 0xff, 0xff},
3870 : : .flow_id = 0xff
3871 : : };
3872 : : const struct rte_flow_item_nvgre *nic_mask = !mlx5_hws_active(dev) ?
3873 [ # # ]: 0 : &rte_flow_item_nvgre_mask : &hws_nic_mask;
3874 : :
3875 [ # # ]: 0 : if (target_protocol != 0xff && target_protocol != IPPROTO_GRE)
3876 : 0 : return rte_flow_error_set(error, EINVAL,
3877 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3878 : : "protocol filtering not compatible"
3879 : : " with this GRE layer");
3880 [ # # ]: 0 : if (item_flags & MLX5_FLOW_LAYER_TUNNEL)
3881 : 0 : return rte_flow_error_set(error, ENOTSUP,
3882 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3883 : : "multiple tunnel layers not"
3884 : : " supported");
3885 [ # # ]: 0 : if (!mlx5_hws_active(dev)) {
3886 [ # # ]: 0 : if (!(item_flags & MLX5_FLOW_LAYER_OUTER_L3))
3887 : 0 : return rte_flow_error_set(error, ENOTSUP,
3888 : : RTE_FLOW_ERROR_TYPE_ITEM,
3889 : : item, "L3 Layer is missing");
3890 : : }
3891 [ # # ]: 0 : if (!mask)
3892 : : mask = nic_mask;
3893 : 0 : ret = mlx5_flow_item_acceptable
3894 : : (dev, item, (const uint8_t *)mask,
3895 : : (const uint8_t *)nic_mask,
3896 : : sizeof(struct rte_flow_item_nvgre),
3897 : : MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
3898 : : if (ret < 0)
3899 : : return ret;
3900 : : return 0;
3901 : : }
3902 : :
3903 : : /**
3904 : : * Validate eCPRI item.
3905 : : *
3906 : : * @param[in] item
3907 : : * Item specification.
3908 : : * @param[in] item_flags
3909 : : * Bit-fields that holds the items detected until now.
3910 : : * @param[in] last_item
3911 : : * Previous validated item in the pattern items.
3912 : : * @param[in] ether_type
3913 : : * Type in the ethernet layer header (including dot1q).
3914 : : * @param[in] acc_mask
3915 : : * Acceptable mask, if NULL default internal default mask
3916 : : * will be used to check whether item fields are supported.
3917 : : * @param[out] error
3918 : : * Pointer to error structure.
3919 : : *
3920 : : * @return
3921 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
3922 : : */
3923 : : int
3924 : 0 : mlx5_flow_validate_item_ecpri(const struct rte_eth_dev *dev,
3925 : : const struct rte_flow_item *item,
3926 : : uint64_t item_flags,
3927 : : uint64_t last_item,
3928 : : uint16_t ether_type,
3929 : : const struct rte_flow_item_ecpri *acc_mask,
3930 : : struct rte_flow_error *error)
3931 : : {
3932 : 0 : const struct rte_flow_item_ecpri *mask = item->mask;
3933 : 0 : const struct rte_flow_item_ecpri nic_mask = {
3934 : : .hdr = {
3935 : : .common = {
3936 : : .u32 =
3937 : : RTE_BE32(((const struct rte_ecpri_common_hdr) {
3938 : : .type = 0xFF,
3939 : : }).u32),
3940 : : },
3941 : : .dummy[0] = 0xFFFFFFFF,
3942 : : },
3943 : : };
3944 : : const uint64_t outer_l2_vlan = (MLX5_FLOW_LAYER_OUTER_L2 |
3945 : : MLX5_FLOW_LAYER_OUTER_VLAN);
3946 : : struct rte_flow_item_ecpri mask_lo;
3947 : :
3948 [ # # # # ]: 0 : if (!(last_item & outer_l2_vlan) &&
3949 : : last_item != MLX5_FLOW_LAYER_OUTER_L4_UDP)
3950 : 0 : return rte_flow_error_set(error, EINVAL,
3951 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3952 : : "eCPRI can only follow L2/VLAN layer or UDP layer");
3953 [ # # ]: 0 : if ((last_item & outer_l2_vlan) && ether_type &&
3954 [ # # ]: 0 : ether_type != RTE_ETHER_TYPE_ECPRI)
3955 : 0 : return rte_flow_error_set(error, EINVAL,
3956 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3957 : : "eCPRI cannot follow L2/VLAN layer which ether type is not 0xAEFE");
3958 [ # # ]: 0 : if (item_flags & MLX5_FLOW_LAYER_TUNNEL)
3959 : 0 : return rte_flow_error_set(error, EINVAL,
3960 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3961 : : "eCPRI with tunnel is not supported right now");
3962 [ # # ]: 0 : if (item_flags & MLX5_FLOW_LAYER_OUTER_L3)
3963 : 0 : return rte_flow_error_set(error, ENOTSUP,
3964 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3965 : : "multiple L3 layers not supported");
3966 [ # # ]: 0 : else if (item_flags & MLX5_FLOW_LAYER_OUTER_L4_TCP)
3967 : 0 : return rte_flow_error_set(error, EINVAL,
3968 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3969 : : "eCPRI cannot coexist with a TCP layer");
3970 : : /* In specification, eCPRI could be over UDP layer. */
3971 [ # # ]: 0 : else if (item_flags & MLX5_FLOW_LAYER_OUTER_L4_UDP)
3972 : 0 : return rte_flow_error_set(error, EINVAL,
3973 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
3974 : : "eCPRI over UDP layer is not yet supported right now");
3975 : : /* Mask for type field in common header could be zero. */
3976 [ # # ]: 0 : if (!mask)
3977 : : mask = &rte_flow_item_ecpri_mask;
3978 [ # # ]: 0 : mask_lo.hdr.common.u32 = rte_be_to_cpu_32(mask->hdr.common.u32);
3979 : : /* Input mask is in big-endian format. */
3980 [ # # ]: 0 : if (mask_lo.hdr.common.type != 0 && mask_lo.hdr.common.type != 0xff)
3981 : 0 : return rte_flow_error_set(error, EINVAL,
3982 : : RTE_FLOW_ERROR_TYPE_ITEM_MASK, mask,
3983 : : "partial mask is not supported for protocol");
3984 [ # # # # ]: 0 : else if (mask_lo.hdr.common.type == 0 && mask->hdr.dummy[0] != 0)
3985 : 0 : return rte_flow_error_set(error, EINVAL,
3986 : : RTE_FLOW_ERROR_TYPE_ITEM_MASK, mask,
3987 : : "message header mask must be after a type mask");
3988 [ # # ]: 0 : return mlx5_flow_item_acceptable(dev, item, (const uint8_t *)mask,
3989 : : acc_mask ? (const uint8_t *)acc_mask
3990 : : : (const uint8_t *)&nic_mask,
3991 : : sizeof(struct rte_flow_item_ecpri),
3992 : : MLX5_ITEM_RANGE_NOT_ACCEPTED, error);
3993 : : }
3994 : :
3995 : : /**
3996 : : * Validate the NSH item.
3997 : : *
3998 : : * @param[in] dev
3999 : : * Pointer to Ethernet device on which flow rule is being created on.
4000 : : * @param[out] error
4001 : : * Pointer to error structure.
4002 : : *
4003 : : * @return
4004 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
4005 : : */
4006 : : int
4007 : 0 : mlx5_flow_validate_item_nsh(struct rte_eth_dev *dev,
4008 : : const struct rte_flow_item *item,
4009 : : struct rte_flow_error *error)
4010 : : {
4011 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
4012 : :
4013 [ # # ]: 0 : if (item->mask) {
4014 : 0 : return rte_flow_error_set(error, ENOTSUP,
4015 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
4016 : : "NSH fields matching is not supported");
4017 : : }
4018 : :
4019 [ # # ]: 0 : if (!priv->sh->config.dv_flow_en) {
4020 : 0 : return rte_flow_error_set(error, ENOTSUP,
4021 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
4022 : : NULL, "NSH support requires DV flow interface");
4023 : : }
4024 : :
4025 [ # # ]: 0 : if (!priv->sh->cdev->config.hca_attr.tunnel_stateless_vxlan_gpe_nsh) {
4026 : 0 : return rte_flow_error_set(error, ENOTSUP,
4027 : : RTE_FLOW_ERROR_TYPE_ITEM, item,
4028 : : "Current FW does not support matching on NSH");
4029 : : }
4030 : :
4031 : : return 0;
4032 : : }
4033 : :
4034 : : static int
4035 : 0 : flow_null_validate(struct rte_eth_dev *dev __rte_unused,
4036 : : const struct rte_flow_attr *attr __rte_unused,
4037 : : const struct rte_flow_item items[] __rte_unused,
4038 : : const struct rte_flow_action actions[] __rte_unused,
4039 : : bool external __rte_unused,
4040 : : int hairpin __rte_unused,
4041 : : struct rte_flow_error *error)
4042 : : {
4043 : 0 : return rte_flow_error_set(error, ENOTSUP,
4044 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL, NULL);
4045 : : }
4046 : :
4047 : : static struct mlx5_flow *
4048 : 0 : flow_null_prepare(struct rte_eth_dev *dev __rte_unused,
4049 : : const struct rte_flow_attr *attr __rte_unused,
4050 : : const struct rte_flow_item items[] __rte_unused,
4051 : : const struct rte_flow_action actions[] __rte_unused,
4052 : : struct rte_flow_error *error)
4053 : : {
4054 : 0 : rte_flow_error_set(error, ENOTSUP,
4055 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL, NULL);
4056 : 0 : return NULL;
4057 : : }
4058 : :
4059 : : static int
4060 : 0 : flow_null_translate(struct rte_eth_dev *dev __rte_unused,
4061 : : struct mlx5_flow *dev_flow __rte_unused,
4062 : : const struct rte_flow_attr *attr __rte_unused,
4063 : : const struct rte_flow_item items[] __rte_unused,
4064 : : const struct rte_flow_action actions[] __rte_unused,
4065 : : struct rte_flow_error *error)
4066 : : {
4067 : 0 : return rte_flow_error_set(error, ENOTSUP,
4068 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL, NULL);
4069 : : }
4070 : :
4071 : : static int
4072 : 0 : flow_null_apply(struct rte_eth_dev *dev __rte_unused,
4073 : : struct rte_flow *flow __rte_unused,
4074 : : struct rte_flow_error *error)
4075 : : {
4076 : 0 : return rte_flow_error_set(error, ENOTSUP,
4077 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL, NULL);
4078 : : }
4079 : :
4080 : : static void
4081 : 0 : flow_null_remove(struct rte_eth_dev *dev __rte_unused,
4082 : : struct rte_flow *flow __rte_unused)
4083 : : {
4084 : 0 : }
4085 : :
4086 : : static void
4087 : 0 : flow_null_destroy(struct rte_eth_dev *dev __rte_unused,
4088 : : struct rte_flow *flow __rte_unused)
4089 : : {
4090 : 0 : }
4091 : :
4092 : : static int
4093 : 0 : flow_null_query(struct rte_eth_dev *dev __rte_unused,
4094 : : struct rte_flow *flow __rte_unused,
4095 : : const struct rte_flow_action *actions __rte_unused,
4096 : : void *data __rte_unused,
4097 : : struct rte_flow_error *error)
4098 : : {
4099 : 0 : return rte_flow_error_set(error, ENOTSUP,
4100 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL, NULL);
4101 : : }
4102 : :
4103 : : static int
4104 : 0 : flow_null_sync_domain(struct rte_eth_dev *dev __rte_unused,
4105 : : uint32_t domains __rte_unused,
4106 : : uint32_t flags __rte_unused)
4107 : : {
4108 : 0 : return 0;
4109 : : }
4110 : :
4111 : : int
4112 : 0 : flow_null_get_aged_flows(struct rte_eth_dev *dev,
4113 : : void **context __rte_unused,
4114 : : uint32_t nb_contexts __rte_unused,
4115 : : struct rte_flow_error *error __rte_unused)
4116 : : {
4117 : 0 : DRV_LOG(ERR, "port %u get aged flows is not supported.",
4118 : : dev->data->port_id);
4119 : 0 : return -ENOTSUP;
4120 : : }
4121 : :
4122 : : uint32_t
4123 : 0 : flow_null_counter_allocate(struct rte_eth_dev *dev)
4124 : : {
4125 : 0 : DRV_LOG(ERR, "port %u counter allocate is not supported.",
4126 : : dev->data->port_id);
4127 : 0 : return 0;
4128 : : }
4129 : :
4130 : : void
4131 : 0 : flow_null_counter_free(struct rte_eth_dev *dev,
4132 : : uint32_t counter __rte_unused)
4133 : : {
4134 : 0 : DRV_LOG(ERR, "port %u counter free is not supported.",
4135 : : dev->data->port_id);
4136 : 0 : }
4137 : :
4138 : : int
4139 : 0 : flow_null_counter_query(struct rte_eth_dev *dev,
4140 : : uint32_t counter __rte_unused,
4141 : : bool clear __rte_unused,
4142 : : uint64_t *pkts __rte_unused,
4143 : : uint64_t *bytes __rte_unused,
4144 : : void **action __rte_unused)
4145 : : {
4146 : 0 : DRV_LOG(ERR, "port %u counter query is not supported.",
4147 : : dev->data->port_id);
4148 : 0 : return -ENOTSUP;
4149 : : }
4150 : :
4151 : : /* Void driver to protect from null pointer reference. */
4152 : : const struct mlx5_flow_driver_ops mlx5_flow_null_drv_ops = {
4153 : : .validate = flow_null_validate,
4154 : : .prepare = flow_null_prepare,
4155 : : .translate = flow_null_translate,
4156 : : .apply = flow_null_apply,
4157 : : .remove = flow_null_remove,
4158 : : .destroy = flow_null_destroy,
4159 : : .query = flow_null_query,
4160 : : .sync_domain = flow_null_sync_domain,
4161 : : .get_aged_flows = flow_null_get_aged_flows,
4162 : : .counter_alloc = flow_null_counter_allocate,
4163 : : .counter_free = flow_null_counter_free,
4164 : : .counter_query = flow_null_counter_query
4165 : : };
4166 : :
4167 : : /**
4168 : : * Select flow driver type according to flow attributes and device
4169 : : * configuration.
4170 : : *
4171 : : * @param[in] dev
4172 : : * Pointer to the dev structure.
4173 : : * @param[in] attr
4174 : : * Pointer to the flow attributes.
4175 : : *
4176 : : * @return
4177 : : * flow driver type, MLX5_FLOW_TYPE_MAX otherwise.
4178 : : */
4179 : : static enum mlx5_flow_drv_type
4180 : 0 : flow_get_drv_type(struct rte_eth_dev *dev, const struct rte_flow_attr *attr)
4181 : : {
4182 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
4183 : : /* The OS can determine first a specific flow type (DV, VERBS) */
4184 : : enum mlx5_flow_drv_type type = mlx5_flow_os_get_type();
4185 : :
4186 : : if (type != MLX5_FLOW_TYPE_MAX)
4187 : : return type;
4188 : : /*
4189 : : * Currently when dv_flow_en == 2, only HW steering engine is
4190 : : * supported. New engines can also be chosen here if ready.
4191 : : */
4192 [ # # ]: 0 : if (priv->sh->config.dv_flow_en == 2)
4193 : : return MLX5_FLOW_TYPE_HW;
4194 [ # # ]: 0 : if (!attr)
4195 : : return MLX5_FLOW_TYPE_MIN;
4196 : : /* If no OS specific type - continue with DV/VERBS selection */
4197 [ # # # # ]: 0 : if (attr->transfer && priv->sh->config.dv_esw_en)
4198 : : type = MLX5_FLOW_TYPE_DV;
4199 [ # # ]: 0 : if (!attr->transfer)
4200 [ # # # # : 0 : type = priv->sh->config.dv_flow_en ? MLX5_FLOW_TYPE_DV :
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # ]
4201 : : MLX5_FLOW_TYPE_VERBS;
4202 : : return type;
4203 : : }
4204 : :
4205 : : #define flow_get_drv_ops(type) flow_drv_ops[type]
4206 : :
4207 : : /**
4208 : : * Flow driver validation API. This abstracts calling driver specific functions.
4209 : : * The type of flow driver is determined according to flow attributes.
4210 : : *
4211 : : * @param[in] dev
4212 : : * Pointer to the dev structure.
4213 : : * @param[in] attr
4214 : : * Pointer to the flow attributes.
4215 : : * @param[in] items
4216 : : * Pointer to the list of items.
4217 : : * @param[in] actions
4218 : : * Pointer to the list of actions.
4219 : : * @param[in] external
4220 : : * This flow rule is created by request external to PMD.
4221 : : * @param[in] hairpin
4222 : : * Number of hairpin TX actions, 0 means classic flow.
4223 : : * @param[out] error
4224 : : * Pointer to the error structure.
4225 : : *
4226 : : * @return
4227 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
4228 : : */
4229 : : static inline int
4230 : 0 : flow_drv_validate(struct rte_eth_dev *dev,
4231 : : const struct rte_flow_attr *attr,
4232 : : const struct rte_flow_item items[],
4233 : : const struct rte_flow_action actions[],
4234 : : bool external, int hairpin, struct rte_flow_error *error)
4235 : : {
4236 : : const struct mlx5_flow_driver_ops *fops;
4237 : 0 : enum mlx5_flow_drv_type type = flow_get_drv_type(dev, attr);
4238 : :
4239 : 0 : fops = flow_get_drv_ops(type);
4240 : 0 : return fops->validate(dev, attr, items, actions, external,
4241 : : hairpin, error);
4242 : : }
4243 : :
4244 : : /**
4245 : : * Flow driver preparation API. This abstracts calling driver specific
4246 : : * functions. Parent flow (rte_flow) should have driver type (drv_type). It
4247 : : * calculates the size of memory required for device flow, allocates the memory,
4248 : : * initializes the device flow and returns the pointer.
4249 : : *
4250 : : * @note
4251 : : * This function initializes device flow structure such as dv or verbs in
4252 : : * struct mlx5_flow. However, it is caller's responsibility to initialize the
4253 : : * rest. For example, adding returning device flow to flow->dev_flow list and
4254 : : * setting backward reference to the flow should be done out of this function.
4255 : : * layers field is not filled either.
4256 : : *
4257 : : * @param[in] dev
4258 : : * Pointer to the dev structure.
4259 : : * @param[in] attr
4260 : : * Pointer to the flow attributes.
4261 : : * @param[in] items
4262 : : * Pointer to the list of items.
4263 : : * @param[in] actions
4264 : : * Pointer to the list of actions.
4265 : : * @param[in] flow_idx
4266 : : * This memory pool index to the flow.
4267 : : * @param[out] error
4268 : : * Pointer to the error structure.
4269 : : *
4270 : : * @return
4271 : : * Pointer to device flow on success, otherwise NULL and rte_errno is set.
4272 : : */
4273 : : static inline struct mlx5_flow *
4274 : : flow_drv_prepare(struct rte_eth_dev *dev,
4275 : : const struct rte_flow *flow,
4276 : : const struct rte_flow_attr *attr,
4277 : : const struct rte_flow_item items[],
4278 : : const struct rte_flow_action actions[],
4279 : : uint32_t flow_idx,
4280 : : struct rte_flow_error *error)
4281 : : {
4282 : : const struct mlx5_flow_driver_ops *fops;
4283 : 0 : enum mlx5_flow_drv_type type = flow->drv_type;
4284 : : struct mlx5_flow *mlx5_flow = NULL;
4285 : :
4286 : : MLX5_ASSERT(type > MLX5_FLOW_TYPE_MIN && type < MLX5_FLOW_TYPE_MAX);
4287 : 0 : fops = flow_get_drv_ops(type);
4288 : 0 : mlx5_flow = fops->prepare(dev, attr, items, actions, error);
4289 [ # # # # : 0 : if (mlx5_flow)
# # ]
4290 : 0 : mlx5_flow->flow_idx = flow_idx;
4291 : : return mlx5_flow;
4292 : : }
4293 : :
4294 : : /**
4295 : : * Flow driver translation API. This abstracts calling driver specific
4296 : : * functions. Parent flow (rte_flow) should have driver type (drv_type). It
4297 : : * translates a generic flow into a driver flow. flow_drv_prepare() must
4298 : : * precede.
4299 : : *
4300 : : * @note
4301 : : * dev_flow->layers could be filled as a result of parsing during translation
4302 : : * if needed by flow_drv_apply(). dev_flow->flow->actions can also be filled
4303 : : * if necessary. As a flow can have multiple dev_flows by RSS flow expansion,
4304 : : * flow->actions could be overwritten even though all the expanded dev_flows
4305 : : * have the same actions.
4306 : : *
4307 : : * @param[in] dev
4308 : : * Pointer to the rte dev structure.
4309 : : * @param[in, out] dev_flow
4310 : : * Pointer to the mlx5 flow.
4311 : : * @param[in] attr
4312 : : * Pointer to the flow attributes.
4313 : : * @param[in] items
4314 : : * Pointer to the list of items.
4315 : : * @param[in] actions
4316 : : * Pointer to the list of actions.
4317 : : * @param[out] error
4318 : : * Pointer to the error structure.
4319 : : *
4320 : : * @return
4321 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
4322 : : */
4323 : : static inline int
4324 : : flow_drv_translate(struct rte_eth_dev *dev, struct mlx5_flow *dev_flow,
4325 : : const struct rte_flow_attr *attr,
4326 : : const struct rte_flow_item items[],
4327 : : const struct rte_flow_action actions[],
4328 : : struct rte_flow_error *error)
4329 : : {
4330 : : const struct mlx5_flow_driver_ops *fops;
4331 : 0 : enum mlx5_flow_drv_type type = dev_flow->flow->drv_type;
4332 : :
4333 : : MLX5_ASSERT(type > MLX5_FLOW_TYPE_MIN && type < MLX5_FLOW_TYPE_MAX);
4334 : 0 : fops = flow_get_drv_ops(type);
4335 : 0 : return fops->translate(dev, dev_flow, attr, items, actions, error);
4336 : : }
4337 : :
4338 : : /**
4339 : : * Flow driver apply API. This abstracts calling driver specific functions.
4340 : : * Parent flow (rte_flow) should have driver type (drv_type). It applies
4341 : : * translated driver flows on to device. flow_drv_translate() must precede.
4342 : : *
4343 : : * @param[in] dev
4344 : : * Pointer to Ethernet device structure.
4345 : : * @param[in, out] flow
4346 : : * Pointer to flow structure.
4347 : : * @param[out] error
4348 : : * Pointer to error structure.
4349 : : *
4350 : : * @return
4351 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
4352 : : */
4353 : : static inline int
4354 : : flow_drv_apply(struct rte_eth_dev *dev, struct rte_flow *flow,
4355 : : struct rte_flow_error *error)
4356 : : {
4357 : : const struct mlx5_flow_driver_ops *fops;
4358 : 0 : enum mlx5_flow_drv_type type = flow->drv_type;
4359 : :
4360 : : MLX5_ASSERT(type > MLX5_FLOW_TYPE_MIN && type < MLX5_FLOW_TYPE_MAX);
4361 : 0 : fops = flow_get_drv_ops(type);
4362 : 0 : return fops->apply(dev, flow, error);
4363 : : }
4364 : :
4365 : : /**
4366 : : * Flow driver destroy API. This abstracts calling driver specific functions.
4367 : : * Parent flow (rte_flow) should have driver type (drv_type). It removes a flow
4368 : : * on device and releases resources of the flow.
4369 : : *
4370 : : * @param[in] dev
4371 : : * Pointer to Ethernet device.
4372 : : * @param[in, out] flow
4373 : : * Pointer to flow structure.
4374 : : */
4375 : : static inline void
4376 : : flow_drv_destroy(struct rte_eth_dev *dev, struct rte_flow *flow)
4377 : : {
4378 : : const struct mlx5_flow_driver_ops *fops;
4379 : 0 : enum mlx5_flow_drv_type type = flow->drv_type;
4380 : :
4381 : : MLX5_ASSERT(type > MLX5_FLOW_TYPE_MIN && type < MLX5_FLOW_TYPE_MAX);
4382 : 0 : fops = flow_get_drv_ops(type);
4383 : 0 : fops->destroy(dev, flow);
4384 : : }
4385 : :
4386 : : /**
4387 : : * Flow driver find RSS policy tbl API. This abstracts calling driver
4388 : : * specific functions. Parent flow (rte_flow) should have driver
4389 : : * type (drv_type). It will find the RSS policy table that has the rss_desc.
4390 : : *
4391 : : * @param[in] dev
4392 : : * Pointer to Ethernet device.
4393 : : * @param[in, out] flow
4394 : : * Pointer to flow structure.
4395 : : * @param[in] policy
4396 : : * Pointer to meter policy table.
4397 : : * @param[in] rss_desc
4398 : : * Pointer to rss_desc
4399 : : */
4400 : : static struct mlx5_flow_meter_sub_policy *
4401 : : flow_drv_meter_sub_policy_rss_prepare(struct rte_eth_dev *dev,
4402 : : struct rte_flow *flow,
4403 : : struct mlx5_flow_meter_policy *policy,
4404 : : struct mlx5_flow_rss_desc *rss_desc[MLX5_MTR_RTE_COLORS])
4405 : : {
4406 : : const struct mlx5_flow_driver_ops *fops;
4407 : 0 : enum mlx5_flow_drv_type type = flow->drv_type;
4408 : :
4409 : : MLX5_ASSERT(type > MLX5_FLOW_TYPE_MIN && type < MLX5_FLOW_TYPE_MAX);
4410 : 0 : fops = flow_get_drv_ops(type);
4411 : 0 : return fops->meter_sub_policy_rss_prepare(dev, policy, rss_desc);
4412 : : }
4413 : :
4414 : : /**
4415 : : * Flow driver color tag rule API. This abstracts calling driver
4416 : : * specific functions. Parent flow (rte_flow) should have driver
4417 : : * type (drv_type). It will create the color tag rules in hierarchy meter.
4418 : : *
4419 : : * @param[in] dev
4420 : : * Pointer to Ethernet device.
4421 : : * @param[in, out] flow
4422 : : * Pointer to flow structure.
4423 : : * @param[in] fm
4424 : : * Pointer to flow meter structure.
4425 : : * @param[in] src_port
4426 : : * The src port this extra rule should use.
4427 : : * @param[in] item
4428 : : * The src port id match item.
4429 : : * @param[out] error
4430 : : * Pointer to error structure.
4431 : : */
4432 : : static int
4433 : : flow_drv_mtr_hierarchy_rule_create(struct rte_eth_dev *dev,
4434 : : struct rte_flow *flow,
4435 : : struct mlx5_flow_meter_info *fm,
4436 : : int32_t src_port,
4437 : : const struct rte_flow_item *item,
4438 : : struct rte_flow_error *error)
4439 : : {
4440 : : const struct mlx5_flow_driver_ops *fops;
4441 : 0 : enum mlx5_flow_drv_type type = flow->drv_type;
4442 : :
4443 : : MLX5_ASSERT(type > MLX5_FLOW_TYPE_MIN && type < MLX5_FLOW_TYPE_MAX);
4444 : 0 : fops = flow_get_drv_ops(type);
4445 : 0 : return fops->meter_hierarchy_rule_create(dev, fm,
4446 : : src_port, item, error);
4447 : : }
4448 : :
4449 : : /**
4450 : : * Get RSS action from the action list.
4451 : : *
4452 : : * @param[in] dev
4453 : : * Pointer to Ethernet device.
4454 : : * @param[in] actions
4455 : : * Pointer to the list of actions.
4456 : : * @param[in] flow
4457 : : * Parent flow structure pointer.
4458 : : *
4459 : : * @return
4460 : : * Pointer to the RSS action if exist, else return NULL.
4461 : : */
4462 : : static const struct rte_flow_action_rss*
4463 : 0 : flow_get_rss_action(struct rte_eth_dev *dev,
4464 : : const struct rte_flow_action actions[])
4465 : : {
4466 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
4467 : : const struct rte_flow_action_rss *rss = NULL;
4468 : : struct mlx5_meter_policy_action_container *acg;
4469 : : struct mlx5_meter_policy_action_container *acy;
4470 : :
4471 [ # # ]: 0 : for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
4472 [ # # # # ]: 0 : switch (actions->type) {
4473 : 0 : case RTE_FLOW_ACTION_TYPE_RSS:
4474 : 0 : rss = actions->conf;
4475 : 0 : break;
4476 : 0 : case RTE_FLOW_ACTION_TYPE_SAMPLE:
4477 : : {
4478 : 0 : const struct rte_flow_action_sample *sample =
4479 : : actions->conf;
4480 : 0 : const struct rte_flow_action *act = sample->actions;
4481 [ # # ]: 0 : for (; act->type != RTE_FLOW_ACTION_TYPE_END; act++)
4482 [ # # ]: 0 : if (act->type == RTE_FLOW_ACTION_TYPE_RSS)
4483 : 0 : rss = act->conf;
4484 : : break;
4485 : : }
4486 : 0 : case RTE_FLOW_ACTION_TYPE_METER:
4487 : : {
4488 : : uint32_t mtr_idx;
4489 : : struct mlx5_flow_meter_info *fm;
4490 : : struct mlx5_flow_meter_policy *policy;
4491 : 0 : const struct rte_flow_action_meter *mtr = actions->conf;
4492 : :
4493 : 0 : fm = mlx5_flow_meter_find(priv, mtr->mtr_id, &mtr_idx);
4494 [ # # # # ]: 0 : if (fm && !fm->def_policy) {
4495 : 0 : policy = mlx5_flow_meter_policy_find(dev,
4496 : : fm->policy_id, NULL);
4497 : : MLX5_ASSERT(policy);
4498 [ # # ]: 0 : if (policy->is_hierarchy) {
4499 : : policy =
4500 : 0 : mlx5_flow_meter_hierarchy_get_final_policy(dev,
4501 : : policy);
4502 [ # # ]: 0 : if (!policy)
4503 : 0 : return NULL;
4504 : : }
4505 [ # # ]: 0 : if (policy->is_rss) {
4506 : : acg =
4507 : : &policy->act_cnt[RTE_COLOR_GREEN];
4508 : : acy =
4509 : : &policy->act_cnt[RTE_COLOR_YELLOW];
4510 [ # # ]: 0 : if (acg->fate_action ==
4511 : : MLX5_FLOW_FATE_SHARED_RSS)
4512 : 0 : rss = acg->rss->conf;
4513 [ # # ]: 0 : else if (acy->fate_action ==
4514 : : MLX5_FLOW_FATE_SHARED_RSS)
4515 : 0 : rss = acy->rss->conf;
4516 : : }
4517 : : }
4518 : 0 : break;
4519 : : }
4520 : : default:
4521 : : break;
4522 : : }
4523 : : }
4524 : : return rss;
4525 : : }
4526 : :
4527 : : /**
4528 : : * Get ASO age action by index.
4529 : : *
4530 : : * @param[in] dev
4531 : : * Pointer to the Ethernet device structure.
4532 : : * @param[in] age_idx
4533 : : * Index to the ASO age action.
4534 : : *
4535 : : * @return
4536 : : * The specified ASO age action.
4537 : : */
4538 : : struct mlx5_aso_age_action*
4539 : 0 : flow_aso_age_get_by_idx(struct rte_eth_dev *dev, uint32_t age_idx)
4540 : : {
4541 : 0 : uint16_t pool_idx = age_idx & UINT16_MAX;
4542 : 0 : uint16_t offset = (age_idx >> 16) & UINT16_MAX;
4543 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
4544 : 0 : struct mlx5_aso_age_mng *mng = priv->sh->aso_age_mng;
4545 : : struct mlx5_aso_age_pool *pool;
4546 : :
4547 : 0 : rte_rwlock_read_lock(&mng->resize_rwl);
4548 : 0 : pool = mng->pools[pool_idx];
4549 : : rte_rwlock_read_unlock(&mng->resize_rwl);
4550 : 0 : return &pool->actions[offset - 1];
4551 : : }
4552 : :
4553 : : /* maps indirect action to translated direct in some actions array */
4554 : : struct mlx5_translated_action_handle {
4555 : : struct rte_flow_action_handle *action; /**< Indirect action handle. */
4556 : : int index; /**< Index in related array of rte_flow_action. */
4557 : : };
4558 : :
4559 : : /**
4560 : : * Translates actions of type RTE_FLOW_ACTION_TYPE_INDIRECT to related
4561 : : * direct action if translation possible.
4562 : : * This functionality used to run same execution path for both direct and
4563 : : * indirect actions on flow create. All necessary preparations for indirect
4564 : : * action handling should be performed on *handle* actions list returned
4565 : : * from this call.
4566 : : *
4567 : : * @param[in] dev
4568 : : * Pointer to Ethernet device.
4569 : : * @param[in] actions
4570 : : * List of actions to translate.
4571 : : * @param[out] handle
4572 : : * List to store translated indirect action object handles.
4573 : : * @param[in, out] indir_n
4574 : : * Size of *handle* array. On return should be updated with number of
4575 : : * indirect actions retrieved from the *actions* list.
4576 : : * @param[out] translated_actions
4577 : : * List of actions where all indirect actions were translated to direct
4578 : : * if possible. NULL if no translation took place.
4579 : : * @param[out] error
4580 : : * Pointer to the error structure.
4581 : : *
4582 : : * @return
4583 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
4584 : : */
4585 : : static int
4586 : 0 : flow_action_handles_translate(struct rte_eth_dev *dev,
4587 : : const struct rte_flow_action actions[],
4588 : : struct mlx5_translated_action_handle *handle,
4589 : : int *indir_n,
4590 : : struct rte_flow_action **translated_actions,
4591 : : struct rte_flow_error *error)
4592 : : {
4593 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
4594 : : struct rte_flow_action *translated = NULL;
4595 : : size_t actions_size;
4596 : : int n;
4597 : : int copied_n = 0;
4598 : : struct mlx5_translated_action_handle *handle_end = NULL;
4599 : :
4600 [ # # ]: 0 : for (n = 0; actions[n].type != RTE_FLOW_ACTION_TYPE_END; n++) {
4601 [ # # ]: 0 : if (actions[n].type != RTE_FLOW_ACTION_TYPE_INDIRECT)
4602 : 0 : continue;
4603 [ # # ]: 0 : if (copied_n == *indir_n) {
4604 : 0 : return rte_flow_error_set
4605 : : (error, EINVAL, RTE_FLOW_ERROR_TYPE_ACTION_NUM,
4606 : : NULL, "too many shared actions");
4607 : : }
4608 [ # # ]: 0 : rte_memcpy(&handle[copied_n].action, &actions[n].conf,
4609 : : sizeof(actions[n].conf));
4610 : 0 : handle[copied_n].index = n;
4611 : 0 : copied_n++;
4612 : : }
4613 : 0 : n++;
4614 : 0 : *indir_n = copied_n;
4615 [ # # ]: 0 : if (!copied_n)
4616 : : return 0;
4617 : 0 : actions_size = sizeof(struct rte_flow_action) * n;
4618 : 0 : translated = mlx5_malloc(MLX5_MEM_ZERO, actions_size, 0, SOCKET_ID_ANY);
4619 [ # # ]: 0 : if (!translated) {
4620 : 0 : rte_errno = ENOMEM;
4621 : 0 : return -ENOMEM;
4622 : : }
4623 : : memcpy(translated, actions, actions_size);
4624 [ # # ]: 0 : for (handle_end = handle + copied_n; handle < handle_end; handle++) {
4625 : : struct mlx5_shared_action_rss *shared_rss;
4626 : 0 : uint32_t act_idx = (uint32_t)(uintptr_t)handle->action;
4627 : 0 : uint32_t type = act_idx >> MLX5_INDIRECT_ACTION_TYPE_OFFSET;
4628 : 0 : uint32_t idx = act_idx &
4629 : : ((1u << MLX5_INDIRECT_ACTION_TYPE_OFFSET) - 1);
4630 : :
4631 [ # # # # : 0 : switch (type) {
# # ]
4632 : 0 : case MLX5_INDIRECT_ACTION_TYPE_RSS:
4633 : 0 : shared_rss = mlx5_ipool_get
4634 : 0 : (priv->sh->ipool[MLX5_IPOOL_RSS_SHARED_ACTIONS], idx);
4635 : 0 : translated[handle->index].type =
4636 : : RTE_FLOW_ACTION_TYPE_RSS;
4637 : 0 : translated[handle->index].conf =
4638 : 0 : &shared_rss->origin;
4639 : 0 : break;
4640 : 0 : case MLX5_INDIRECT_ACTION_TYPE_COUNT:
4641 : 0 : translated[handle->index].type =
4642 : : (enum rte_flow_action_type)
4643 : : MLX5_RTE_FLOW_ACTION_TYPE_COUNT;
4644 : 0 : translated[handle->index].conf = (void *)(uintptr_t)idx;
4645 : 0 : break;
4646 : 0 : case MLX5_INDIRECT_ACTION_TYPE_METER_MARK:
4647 : 0 : translated[handle->index].type =
4648 : : (enum rte_flow_action_type)
4649 : : MLX5_RTE_FLOW_ACTION_TYPE_METER_MARK;
4650 : 0 : translated[handle->index].conf = (void *)(uintptr_t)idx;
4651 : 0 : break;
4652 : 0 : case MLX5_INDIRECT_ACTION_TYPE_AGE:
4653 [ # # ]: 0 : if (priv->sh->flow_hit_aso_en) {
4654 : 0 : translated[handle->index].type =
4655 : : (enum rte_flow_action_type)
4656 : : MLX5_RTE_FLOW_ACTION_TYPE_AGE;
4657 : 0 : translated[handle->index].conf =
4658 : 0 : (void *)(uintptr_t)idx;
4659 : 0 : break;
4660 : : }
4661 : : /* Fall-through */
4662 : : case MLX5_INDIRECT_ACTION_TYPE_CT:
4663 [ # # ]: 0 : if (priv->sh->ct_aso_en) {
4664 : 0 : translated[handle->index].type =
4665 : : RTE_FLOW_ACTION_TYPE_CONNTRACK;
4666 : 0 : translated[handle->index].conf =
4667 : 0 : (void *)(uintptr_t)idx;
4668 : 0 : break;
4669 : : }
4670 : : /* Fall-through */
4671 : : default:
4672 : 0 : mlx5_free(translated);
4673 : 0 : return rte_flow_error_set
4674 : : (error, EINVAL, RTE_FLOW_ERROR_TYPE_ACTION,
4675 : : NULL, "invalid indirect action type");
4676 : : }
4677 : : }
4678 : 0 : *translated_actions = translated;
4679 : 0 : return 0;
4680 : : }
4681 : :
4682 : : /**
4683 : : * Get Shared RSS action from the action list.
4684 : : *
4685 : : * @param[in] dev
4686 : : * Pointer to Ethernet device.
4687 : : * @param[in] shared
4688 : : * Pointer to the list of actions.
4689 : : * @param[in] shared_n
4690 : : * Actions list length.
4691 : : *
4692 : : * @return
4693 : : * The MLX5 RSS action ID if exists, otherwise return 0.
4694 : : */
4695 : : static uint32_t
4696 : 0 : flow_get_shared_rss_action(struct rte_eth_dev *dev,
4697 : : struct mlx5_translated_action_handle *handle,
4698 : : int shared_n)
4699 : : {
4700 : : struct mlx5_translated_action_handle *handle_end;
4701 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
4702 : : struct mlx5_shared_action_rss *shared_rss;
4703 : :
4704 : :
4705 [ # # ]: 0 : for (handle_end = handle + shared_n; handle < handle_end; handle++) {
4706 : 0 : uint32_t act_idx = (uint32_t)(uintptr_t)handle->action;
4707 : 0 : uint32_t type = act_idx >> MLX5_INDIRECT_ACTION_TYPE_OFFSET;
4708 : 0 : uint32_t idx = act_idx &
4709 : : ((1u << MLX5_INDIRECT_ACTION_TYPE_OFFSET) - 1);
4710 [ # # ]: 0 : switch (type) {
4711 : 0 : case MLX5_INDIRECT_ACTION_TYPE_RSS:
4712 : 0 : shared_rss = mlx5_ipool_get
4713 : 0 : (priv->sh->ipool[MLX5_IPOOL_RSS_SHARED_ACTIONS],
4714 : : idx);
4715 : 0 : rte_atomic_fetch_add_explicit(&shared_rss->refcnt, 1,
4716 : : rte_memory_order_relaxed);
4717 : 0 : return idx;
4718 : : default:
4719 : : break;
4720 : : }
4721 : : }
4722 : : return 0;
4723 : : }
4724 : :
4725 : : static unsigned int
4726 : : find_graph_root(uint32_t rss_level)
4727 : : {
4728 : 0 : return rss_level < 2 ? MLX5_EXPANSION_ROOT :
4729 : : MLX5_EXPANSION_ROOT_OUTER;
4730 : : }
4731 : :
4732 : : /**
4733 : : * Get layer flags from the prefix flow.
4734 : : *
4735 : : * Some flows may be split to several subflows, the prefix subflow gets the
4736 : : * match items and the suffix sub flow gets the actions.
4737 : : * Some actions need the user defined match item flags to get the detail for
4738 : : * the action.
4739 : : * This function helps the suffix flow to get the item layer flags from prefix
4740 : : * subflow.
4741 : : *
4742 : : * @param[in] dev_flow
4743 : : * Pointer the created prefix subflow.
4744 : : *
4745 : : * @return
4746 : : * The layers get from prefix subflow.
4747 : : */
4748 : : static inline uint64_t
4749 : 0 : flow_get_prefix_layer_flags(struct mlx5_flow *dev_flow)
4750 : : {
4751 : : uint64_t layers = 0;
4752 : :
4753 : : /*
4754 : : * Layers bits could be localization, but usually the compiler will
4755 : : * help to do the optimization work for source code.
4756 : : * If no decap actions, use the layers directly.
4757 : : */
4758 [ # # ]: 0 : if (!(dev_flow->act_flags & MLX5_FLOW_ACTION_DECAP))
4759 : 0 : return dev_flow->handle->layers;
4760 : : /* Convert L3 layers with decap action. */
4761 [ # # ]: 0 : if (dev_flow->handle->layers & MLX5_FLOW_LAYER_INNER_L3_IPV4)
4762 : : layers |= MLX5_FLOW_LAYER_OUTER_L3_IPV4;
4763 [ # # ]: 0 : else if (dev_flow->handle->layers & MLX5_FLOW_LAYER_INNER_L3_IPV6)
4764 : : layers |= MLX5_FLOW_LAYER_OUTER_L3_IPV6;
4765 : : /* Convert L4 layers with decap action. */
4766 [ # # ]: 0 : if (dev_flow->handle->layers & MLX5_FLOW_LAYER_INNER_L4_TCP)
4767 : 0 : layers |= MLX5_FLOW_LAYER_OUTER_L4_TCP;
4768 [ # # ]: 0 : else if (dev_flow->handle->layers & MLX5_FLOW_LAYER_INNER_L4_UDP)
4769 : 0 : layers |= MLX5_FLOW_LAYER_OUTER_L4_UDP;
4770 : : return layers;
4771 : : }
4772 : :
4773 : : /**
4774 : : * Get metadata split action information.
4775 : : *
4776 : : * @param[in] actions
4777 : : * Pointer to the list of actions.
4778 : : * @param[out] qrss
4779 : : * Pointer to the return pointer.
4780 : : * @param[out] qrss_type
4781 : : * Pointer to the action type to return. RTE_FLOW_ACTION_TYPE_END is returned
4782 : : * if no QUEUE/RSS is found.
4783 : : * @param[out] encap_idx
4784 : : * Pointer to the index of the encap action if exists, otherwise the last
4785 : : * action index.
4786 : : *
4787 : : * @return
4788 : : * Total number of actions.
4789 : : */
4790 : : static int
4791 : 0 : flow_parse_metadata_split_actions_info(const struct rte_flow_action actions[],
4792 : : const struct rte_flow_action **qrss,
4793 : : int *encap_idx)
4794 : : {
4795 : : const struct rte_flow_action_raw_encap *raw_encap;
4796 : : int actions_n = 0;
4797 : : int raw_decap_idx = -1;
4798 : :
4799 : 0 : *encap_idx = -1;
4800 [ # # ]: 0 : for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
4801 [ # # # # : 0 : switch (actions->type) {
# ]
4802 : 0 : case RTE_FLOW_ACTION_TYPE_VXLAN_ENCAP:
4803 : : case RTE_FLOW_ACTION_TYPE_NVGRE_ENCAP:
4804 : 0 : *encap_idx = actions_n;
4805 : 0 : break;
4806 : 0 : case RTE_FLOW_ACTION_TYPE_RAW_DECAP:
4807 : : raw_decap_idx = actions_n;
4808 : 0 : break;
4809 : 0 : case RTE_FLOW_ACTION_TYPE_RAW_ENCAP:
4810 : 0 : raw_encap = actions->conf;
4811 [ # # ]: 0 : if (raw_encap->size > MLX5_ENCAPSULATION_DECISION_SIZE)
4812 : 0 : *encap_idx = raw_decap_idx != -1 ?
4813 [ # # ]: 0 : raw_decap_idx : actions_n;
4814 : : break;
4815 : 0 : case RTE_FLOW_ACTION_TYPE_QUEUE:
4816 : : case RTE_FLOW_ACTION_TYPE_RSS:
4817 : 0 : *qrss = actions;
4818 : 0 : break;
4819 : : default:
4820 : : break;
4821 : : }
4822 : 0 : actions_n++;
4823 : : }
4824 [ # # ]: 0 : if (*encap_idx == -1)
4825 : 0 : *encap_idx = actions_n;
4826 : : /* Count RTE_FLOW_ACTION_TYPE_END. */
4827 : 0 : return actions_n + 1;
4828 : : }
4829 : :
4830 : : /**
4831 : : * Check if the action will change packet.
4832 : : *
4833 : : * @param dev
4834 : : * Pointer to Ethernet device.
4835 : : * @param[in] type
4836 : : * action type.
4837 : : *
4838 : : * @return
4839 : : * true if action will change packet, false otherwise.
4840 : : */
4841 : 0 : static bool flow_check_modify_action_type(struct rte_eth_dev *dev,
4842 : : enum rte_flow_action_type type)
4843 : : {
4844 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
4845 : :
4846 [ # # # ]: 0 : switch (type) {
4847 : : case RTE_FLOW_ACTION_TYPE_SET_MAC_SRC:
4848 : : case RTE_FLOW_ACTION_TYPE_SET_MAC_DST:
4849 : : case RTE_FLOW_ACTION_TYPE_SET_IPV4_SRC:
4850 : : case RTE_FLOW_ACTION_TYPE_SET_IPV4_DST:
4851 : : case RTE_FLOW_ACTION_TYPE_SET_IPV6_SRC:
4852 : : case RTE_FLOW_ACTION_TYPE_SET_IPV6_DST:
4853 : : case RTE_FLOW_ACTION_TYPE_SET_TP_SRC:
4854 : : case RTE_FLOW_ACTION_TYPE_SET_TP_DST:
4855 : : case RTE_FLOW_ACTION_TYPE_DEC_TTL:
4856 : : case RTE_FLOW_ACTION_TYPE_SET_TTL:
4857 : : case RTE_FLOW_ACTION_TYPE_INC_TCP_SEQ:
4858 : : case RTE_FLOW_ACTION_TYPE_DEC_TCP_SEQ:
4859 : : case RTE_FLOW_ACTION_TYPE_INC_TCP_ACK:
4860 : : case RTE_FLOW_ACTION_TYPE_DEC_TCP_ACK:
4861 : : case RTE_FLOW_ACTION_TYPE_SET_IPV4_DSCP:
4862 : : case RTE_FLOW_ACTION_TYPE_SET_IPV6_DSCP:
4863 : : case RTE_FLOW_ACTION_TYPE_SET_META:
4864 : : case RTE_FLOW_ACTION_TYPE_SET_TAG:
4865 : : case RTE_FLOW_ACTION_TYPE_OF_POP_VLAN:
4866 : : case RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN:
4867 : : case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID:
4868 : : case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP:
4869 : : case RTE_FLOW_ACTION_TYPE_VXLAN_ENCAP:
4870 : : case RTE_FLOW_ACTION_TYPE_VXLAN_DECAP:
4871 : : case RTE_FLOW_ACTION_TYPE_NVGRE_ENCAP:
4872 : : case RTE_FLOW_ACTION_TYPE_NVGRE_DECAP:
4873 : : case RTE_FLOW_ACTION_TYPE_RAW_ENCAP:
4874 : : case RTE_FLOW_ACTION_TYPE_RAW_DECAP:
4875 : : case RTE_FLOW_ACTION_TYPE_MODIFY_FIELD:
4876 : : return true;
4877 : 0 : case RTE_FLOW_ACTION_TYPE_FLAG:
4878 : : case RTE_FLOW_ACTION_TYPE_MARK:
4879 [ # # ]: 0 : if (priv->sh->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY &&
4880 : : priv->sh->config.dv_xmeta_en != MLX5_XMETA_MODE_META32_HWS)
4881 : : return true;
4882 : : else
4883 : 0 : return false;
4884 : 0 : default:
4885 : 0 : return false;
4886 : : }
4887 : : }
4888 : :
4889 : : /**
4890 : : * Check meter action from the action list.
4891 : : *
4892 : : * @param dev
4893 : : * Pointer to Ethernet device.
4894 : : * @param[in] actions
4895 : : * Pointer to the list of actions.
4896 : : * @param[out] has_mtr
4897 : : * Pointer to the meter exist flag.
4898 : : * @param[out] has_modify
4899 : : * Pointer to the flag showing there's packet change action.
4900 : : * @param[out] meter_id
4901 : : * Pointer to the meter id.
4902 : : *
4903 : : * @return
4904 : : * Total number of actions.
4905 : : */
4906 : : static int
4907 : 0 : flow_check_meter_action(struct rte_eth_dev *dev,
4908 : : const struct rte_flow_action actions[],
4909 : : bool *has_mtr, bool *has_modify, uint32_t *meter_id)
4910 : : {
4911 : : const struct rte_flow_action_meter *mtr = NULL;
4912 : : int actions_n = 0;
4913 : :
4914 : : MLX5_ASSERT(has_mtr);
4915 : 0 : *has_mtr = false;
4916 [ # # ]: 0 : for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
4917 [ # # ]: 0 : switch (actions->type) {
4918 : 0 : case RTE_FLOW_ACTION_TYPE_METER:
4919 : 0 : mtr = actions->conf;
4920 : 0 : *meter_id = mtr->mtr_id;
4921 : 0 : *has_mtr = true;
4922 : 0 : break;
4923 : : default:
4924 : : break;
4925 : : }
4926 [ # # ]: 0 : if (!*has_mtr)
4927 : 0 : *has_modify |= flow_check_modify_action_type(dev,
4928 : 0 : actions->type);
4929 : 0 : actions_n++;
4930 : : }
4931 : : /* Count RTE_FLOW_ACTION_TYPE_END. */
4932 : 0 : return actions_n + 1;
4933 : : }
4934 : :
4935 : : /**
4936 : : * Check if the flow should be split due to hairpin.
4937 : : * The reason for the split is that in current HW we can't
4938 : : * support encap and push-vlan on Rx, so if a flow contains
4939 : : * these actions we move it to Tx.
4940 : : *
4941 : : * @param dev
4942 : : * Pointer to Ethernet device.
4943 : : * @param[in] attr
4944 : : * Flow rule attributes.
4945 : : * @param[in] actions
4946 : : * Associated actions (list terminated by the END action).
4947 : : *
4948 : : * @return
4949 : : * > 0 the number of actions and the flow should be split,
4950 : : * 0 when no split required.
4951 : : */
4952 : : static int
4953 : 0 : flow_check_hairpin_split(struct rte_eth_dev *dev,
4954 : : const struct rte_flow_attr *attr,
4955 : : const struct rte_flow_action actions[])
4956 : : {
4957 : : int queue_action = 0;
4958 : : int action_n = 0;
4959 : : int split = 0;
4960 : : int push_vlan = 0;
4961 : : const struct rte_flow_action_queue *queue;
4962 : : const struct rte_flow_action_rss *rss;
4963 : : const struct rte_flow_action_raw_encap *raw_encap;
4964 : : const struct rte_eth_hairpin_conf *conf;
4965 : :
4966 [ # # ]: 0 : if (!attr->ingress)
4967 : : return 0;
4968 [ # # ]: 0 : for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
4969 [ # # ]: 0 : if (actions->type == RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN)
4970 : : push_vlan = 1;
4971 [ # # # # : 0 : switch (actions->type) {
# # ]
4972 : 0 : case RTE_FLOW_ACTION_TYPE_QUEUE:
4973 : 0 : queue = actions->conf;
4974 [ # # ]: 0 : if (queue == NULL)
4975 : : return 0;
4976 : 0 : conf = mlx5_rxq_get_hairpin_conf(dev, queue->index);
4977 [ # # # # ]: 0 : if (conf == NULL || conf->tx_explicit != 0)
4978 : : return 0;
4979 : : queue_action = 1;
4980 : 0 : action_n++;
4981 : 0 : break;
4982 : 0 : case RTE_FLOW_ACTION_TYPE_RSS:
4983 : 0 : rss = actions->conf;
4984 [ # # # # ]: 0 : if (rss == NULL || rss->queue_num == 0)
4985 : : return 0;
4986 : 0 : conf = mlx5_rxq_get_hairpin_conf(dev, rss->queue[0]);
4987 [ # # # # ]: 0 : if (conf == NULL || conf->tx_explicit != 0)
4988 : : return 0;
4989 : : queue_action = 1;
4990 : 0 : action_n++;
4991 : 0 : break;
4992 : 0 : case RTE_FLOW_ACTION_TYPE_VXLAN_ENCAP:
4993 : : case RTE_FLOW_ACTION_TYPE_NVGRE_ENCAP:
4994 : : case RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN:
4995 : : case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP:
4996 : 0 : split++;
4997 : 0 : action_n++;
4998 : 0 : break;
4999 : 0 : case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID:
5000 [ # # ]: 0 : if (push_vlan)
5001 : 0 : split++;
5002 : 0 : action_n++;
5003 : 0 : break;
5004 : 0 : case RTE_FLOW_ACTION_TYPE_RAW_ENCAP:
5005 : 0 : raw_encap = actions->conf;
5006 [ # # ]: 0 : if (raw_encap->size > MLX5_ENCAPSULATION_DECISION_SIZE)
5007 : 0 : split++;
5008 : 0 : action_n++;
5009 : 0 : break;
5010 : 0 : default:
5011 : 0 : action_n++;
5012 : 0 : break;
5013 : : }
5014 : : }
5015 [ # # ]: 0 : if (split && queue_action)
5016 : 0 : return action_n;
5017 : : return 0;
5018 : : }
5019 : :
5020 : : int
5021 : 0 : flow_dv_mreg_match_cb(void *tool_ctx __rte_unused,
5022 : : struct mlx5_list_entry *entry, void *cb_ctx)
5023 : : {
5024 : : struct mlx5_flow_cb_ctx *ctx = cb_ctx;
5025 : : struct mlx5_flow_mreg_copy_resource *mcp_res =
5026 : : container_of(entry, typeof(*mcp_res), hlist_ent);
5027 : :
5028 : 0 : return mcp_res->mark_id != *(uint32_t *)(ctx->data);
5029 : : }
5030 : :
5031 : : struct mlx5_list_entry *
5032 : 0 : flow_dv_mreg_create_cb(void *tool_ctx, void *cb_ctx)
5033 : : {
5034 : : struct rte_eth_dev *dev = tool_ctx;
5035 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
5036 : : struct mlx5_flow_cb_ctx *ctx = cb_ctx;
5037 : : struct mlx5_flow_mreg_copy_resource *mcp_res;
5038 : 0 : struct rte_flow_error *error = ctx->error;
5039 : 0 : uint32_t idx = 0;
5040 : : int ret;
5041 : 0 : uint32_t mark_id = *(uint32_t *)(ctx->data);
5042 : 0 : struct rte_flow_attr attr = {
5043 : : .group = MLX5_FLOW_MREG_CP_TABLE_GROUP,
5044 : : .ingress = 1,
5045 : : };
5046 : 0 : struct mlx5_rte_flow_item_tag tag_spec = {
5047 : : .data = mark_id,
5048 : : };
5049 : 0 : struct rte_flow_item items[] = {
5050 : : [1] = { .type = RTE_FLOW_ITEM_TYPE_END, },
5051 : : };
5052 : 0 : struct rte_flow_action_mark ftag = {
5053 : : .id = mark_id,
5054 : : };
5055 : 0 : struct mlx5_flow_action_copy_mreg cp_mreg = {
5056 : : .dst = REG_B,
5057 : : .src = REG_NON,
5058 : : };
5059 : 0 : struct rte_flow_action_jump jump = {
5060 : : .group = MLX5_FLOW_MREG_ACT_TABLE_GROUP,
5061 : : };
5062 : 0 : struct rte_flow_action actions[] = {
5063 : : [3] = { .type = RTE_FLOW_ACTION_TYPE_END, },
5064 : : };
5065 : :
5066 : : /* Fill the register fields in the flow. */
5067 : 0 : ret = mlx5_flow_get_reg_id(dev, MLX5_FLOW_MARK, 0, error);
5068 [ # # ]: 0 : if (ret < 0)
5069 : : return NULL;
5070 : 0 : tag_spec.id = ret;
5071 : 0 : ret = mlx5_flow_get_reg_id(dev, MLX5_METADATA_RX, 0, error);
5072 [ # # ]: 0 : if (ret < 0)
5073 : : return NULL;
5074 : 0 : cp_mreg.src = ret;
5075 : : /* Provide the full width of FLAG specific value. */
5076 [ # # ]: 0 : if (mark_id == (priv->sh->dv_regc0_mask & MLX5_FLOW_MARK_DEFAULT))
5077 : 0 : tag_spec.data = MLX5_FLOW_MARK_DEFAULT;
5078 : : /* Build a new flow. */
5079 [ # # ]: 0 : if (mark_id != MLX5_DEFAULT_COPY_ID) {
5080 : 0 : items[0] = (struct rte_flow_item){
5081 : : .type = (enum rte_flow_item_type)
5082 : : MLX5_RTE_FLOW_ITEM_TYPE_TAG,
5083 : : .spec = &tag_spec,
5084 : : };
5085 : 0 : items[1] = (struct rte_flow_item){
5086 : : .type = RTE_FLOW_ITEM_TYPE_END,
5087 : : };
5088 : 0 : actions[0] = (struct rte_flow_action){
5089 : : .type = (enum rte_flow_action_type)
5090 : : MLX5_RTE_FLOW_ACTION_TYPE_MARK,
5091 : : .conf = &ftag,
5092 : : };
5093 : 0 : actions[1] = (struct rte_flow_action){
5094 : : .type = (enum rte_flow_action_type)
5095 : : MLX5_RTE_FLOW_ACTION_TYPE_COPY_MREG,
5096 : : .conf = &cp_mreg,
5097 : : };
5098 : 0 : actions[2] = (struct rte_flow_action){
5099 : : .type = RTE_FLOW_ACTION_TYPE_JUMP,
5100 : : .conf = &jump,
5101 : : };
5102 : 0 : actions[3] = (struct rte_flow_action){
5103 : : .type = RTE_FLOW_ACTION_TYPE_END,
5104 : : };
5105 : : } else {
5106 : : /* Default rule, wildcard match. */
5107 : 0 : attr.priority = MLX5_FLOW_LOWEST_PRIO_INDICATOR;
5108 : 0 : items[0] = (struct rte_flow_item){
5109 : : .type = RTE_FLOW_ITEM_TYPE_END,
5110 : : };
5111 : 0 : actions[0] = (struct rte_flow_action){
5112 : : .type = (enum rte_flow_action_type)
5113 : : MLX5_RTE_FLOW_ACTION_TYPE_COPY_MREG,
5114 : : .conf = &cp_mreg,
5115 : : };
5116 : 0 : actions[1] = (struct rte_flow_action){
5117 : : .type = RTE_FLOW_ACTION_TYPE_JUMP,
5118 : : .conf = &jump,
5119 : : };
5120 : 0 : actions[2] = (struct rte_flow_action){
5121 : : .type = RTE_FLOW_ACTION_TYPE_END,
5122 : : };
5123 : : }
5124 : : /* Build a new entry. */
5125 : 0 : mcp_res = mlx5_ipool_zmalloc(priv->sh->ipool[MLX5_IPOOL_MCP], &idx);
5126 [ # # ]: 0 : if (!mcp_res) {
5127 : 0 : rte_errno = ENOMEM;
5128 : 0 : return NULL;
5129 : : }
5130 : 0 : mcp_res->idx = idx;
5131 : 0 : mcp_res->mark_id = mark_id;
5132 : : /*
5133 : : * The copy Flows are not included in any list. There
5134 : : * ones are referenced from other Flows and can not
5135 : : * be applied, removed, deleted in arbitrary order
5136 : : * by list traversing.
5137 : : */
5138 : 0 : mcp_res->rix_flow = mlx5_flow_list_create(dev, MLX5_FLOW_TYPE_MCP,
5139 : : &attr, items, actions, false, error);
5140 [ # # ]: 0 : if (!mcp_res->rix_flow) {
5141 : 0 : mlx5_ipool_free(priv->sh->ipool[MLX5_IPOOL_MCP], idx);
5142 : 0 : return NULL;
5143 : : }
5144 : 0 : return &mcp_res->hlist_ent;
5145 : : }
5146 : :
5147 : : struct mlx5_list_entry *
5148 : 0 : flow_dv_mreg_clone_cb(void *tool_ctx, struct mlx5_list_entry *oentry,
5149 : : void *cb_ctx __rte_unused)
5150 : : {
5151 : : struct rte_eth_dev *dev = tool_ctx;
5152 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
5153 : : struct mlx5_flow_mreg_copy_resource *mcp_res;
5154 : 0 : uint32_t idx = 0;
5155 : :
5156 : 0 : mcp_res = mlx5_ipool_malloc(priv->sh->ipool[MLX5_IPOOL_MCP], &idx);
5157 [ # # ]: 0 : if (!mcp_res) {
5158 : 0 : rte_errno = ENOMEM;
5159 : 0 : return NULL;
5160 : : }
5161 : : memcpy(mcp_res, oentry, sizeof(*mcp_res));
5162 : 0 : mcp_res->idx = idx;
5163 : 0 : return &mcp_res->hlist_ent;
5164 : : }
5165 : :
5166 : : void
5167 : 0 : flow_dv_mreg_clone_free_cb(void *tool_ctx, struct mlx5_list_entry *entry)
5168 : : {
5169 : : struct mlx5_flow_mreg_copy_resource *mcp_res =
5170 : : container_of(entry, typeof(*mcp_res), hlist_ent);
5171 : : struct rte_eth_dev *dev = tool_ctx;
5172 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
5173 : :
5174 : 0 : mlx5_ipool_free(priv->sh->ipool[MLX5_IPOOL_MCP], mcp_res->idx);
5175 : 0 : }
5176 : :
5177 : : /**
5178 : : * Add a flow of copying flow metadata registers in RX_CP_TBL.
5179 : : *
5180 : : * As mark_id is unique, if there's already a registered flow for the mark_id,
5181 : : * return by increasing the reference counter of the resource. Otherwise, create
5182 : : * the resource (mcp_res) and flow.
5183 : : *
5184 : : * Flow looks like,
5185 : : * - If ingress port is ANY and reg_c[1] is mark_id,
5186 : : * flow_tag := mark_id, reg_b := reg_c[0] and jump to RX_ACT_TBL.
5187 : : *
5188 : : * For default flow (zero mark_id), flow is like,
5189 : : * - If ingress port is ANY,
5190 : : * reg_b := reg_c[0] and jump to RX_ACT_TBL.
5191 : : *
5192 : : * @param dev
5193 : : * Pointer to Ethernet device.
5194 : : * @param mark_id
5195 : : * ID of MARK action, zero means default flow for META.
5196 : : * @param[out] error
5197 : : * Perform verbose error reporting if not NULL.
5198 : : *
5199 : : * @return
5200 : : * Associated resource on success, NULL otherwise and rte_errno is set.
5201 : : */
5202 : : static struct mlx5_flow_mreg_copy_resource *
5203 : 0 : flow_mreg_add_copy_action(struct rte_eth_dev *dev, uint32_t mark_id,
5204 : : struct rte_flow_error *error)
5205 : : {
5206 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
5207 : : struct mlx5_list_entry *entry;
5208 : 0 : struct mlx5_flow_cb_ctx ctx = {
5209 : : .dev = dev,
5210 : : .error = error,
5211 : : .data = &mark_id,
5212 : : };
5213 : :
5214 : : /* Check if already registered. */
5215 : : MLX5_ASSERT(priv->sh->mreg_cp_tbl);
5216 : 0 : entry = mlx5_hlist_register(priv->sh->mreg_cp_tbl, mark_id, &ctx);
5217 [ # # ]: 0 : if (!entry)
5218 : 0 : return NULL;
5219 : : return container_of(entry, struct mlx5_flow_mreg_copy_resource,
5220 : : hlist_ent);
5221 : : }
5222 : :
5223 : : void
5224 : 0 : flow_dv_mreg_remove_cb(void *tool_ctx, struct mlx5_list_entry *entry)
5225 : : {
5226 : : struct mlx5_flow_mreg_copy_resource *mcp_res =
5227 : : container_of(entry, typeof(*mcp_res), hlist_ent);
5228 : : struct rte_eth_dev *dev = tool_ctx;
5229 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
5230 : :
5231 : : MLX5_ASSERT(mcp_res->rix_flow);
5232 : 0 : mlx5_flow_list_destroy(dev, MLX5_FLOW_TYPE_MCP, mcp_res->rix_flow);
5233 : 0 : mlx5_ipool_free(priv->sh->ipool[MLX5_IPOOL_MCP], mcp_res->idx);
5234 : 0 : }
5235 : :
5236 : : /**
5237 : : * Release flow in RX_CP_TBL.
5238 : : *
5239 : : * @param dev
5240 : : * Pointer to Ethernet device.
5241 : : * @flow
5242 : : * Parent flow for wich copying is provided.
5243 : : */
5244 : : static void
5245 : 0 : flow_mreg_del_copy_action(struct rte_eth_dev *dev,
5246 : : struct rte_flow *flow)
5247 : : {
5248 : : struct mlx5_flow_mreg_copy_resource *mcp_res;
5249 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
5250 : :
5251 [ # # ]: 0 : if (!flow->rix_mreg_copy)
5252 : : return;
5253 : 0 : mcp_res = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_MCP],
5254 : : flow->rix_mreg_copy);
5255 [ # # # # ]: 0 : if (!mcp_res || !priv->sh->mreg_cp_tbl)
5256 : : return;
5257 : : MLX5_ASSERT(mcp_res->rix_flow);
5258 : 0 : mlx5_hlist_unregister(priv->sh->mreg_cp_tbl, &mcp_res->hlist_ent);
5259 : 0 : flow->rix_mreg_copy = 0;
5260 : : }
5261 : :
5262 : : /**
5263 : : * Remove the default copy action from RX_CP_TBL.
5264 : : *
5265 : : * This functions is called in the mlx5_dev_start(). No thread safe
5266 : : * is guaranteed.
5267 : : *
5268 : : * @param dev
5269 : : * Pointer to Ethernet device.
5270 : : */
5271 : : static void
5272 : 0 : flow_mreg_del_default_copy_action(struct rte_eth_dev *dev)
5273 : : {
5274 : : struct mlx5_list_entry *entry;
5275 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
5276 : : struct mlx5_flow_cb_ctx ctx;
5277 : : uint32_t mark_id;
5278 : :
5279 : : /* Check if default flow is registered. */
5280 [ # # ]: 0 : if (!priv->sh->mreg_cp_tbl)
5281 : 0 : return;
5282 : 0 : mark_id = MLX5_DEFAULT_COPY_ID;
5283 : 0 : ctx.data = &mark_id;
5284 : 0 : entry = mlx5_hlist_lookup(priv->sh->mreg_cp_tbl, mark_id, &ctx);
5285 [ # # ]: 0 : if (!entry)
5286 : : return;
5287 : 0 : mlx5_hlist_unregister(priv->sh->mreg_cp_tbl, entry);
5288 : : }
5289 : :
5290 : : /**
5291 : : * Add the default copy action in RX_CP_TBL.
5292 : : *
5293 : : * This functions is called in the mlx5_dev_start(). No thread safe
5294 : : * is guaranteed.
5295 : : *
5296 : : * @param dev
5297 : : * Pointer to Ethernet device.
5298 : : * @param[out] error
5299 : : * Perform verbose error reporting if not NULL.
5300 : : *
5301 : : * @return
5302 : : * 0 for success, negative value otherwise and rte_errno is set.
5303 : : */
5304 : : static int
5305 : 0 : flow_mreg_add_default_copy_action(struct rte_eth_dev *dev,
5306 : : struct rte_flow_error *error)
5307 : : {
5308 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
5309 : : struct mlx5_flow_mreg_copy_resource *mcp_res;
5310 : : struct mlx5_flow_cb_ctx ctx;
5311 : : uint32_t mark_id;
5312 : :
5313 : : /* Check whether extensive metadata feature is engaged. */
5314 [ # # ]: 0 : if (!priv->sh->config.dv_flow_en ||
5315 [ # # # # ]: 0 : priv->sh->config.dv_xmeta_en == MLX5_XMETA_MODE_LEGACY ||
5316 : 0 : !mlx5_flow_ext_mreg_supported(dev) ||
5317 [ # # ]: 0 : !priv->sh->dv_regc0_mask)
5318 : 0 : return 0;
5319 : : /*
5320 : : * Add default mreg copy flow may be called multiple time, but
5321 : : * only be called once in stop. Avoid register it twice.
5322 : : */
5323 : 0 : mark_id = MLX5_DEFAULT_COPY_ID;
5324 : 0 : ctx.data = &mark_id;
5325 [ # # ]: 0 : if (mlx5_hlist_lookup(priv->sh->mreg_cp_tbl, mark_id, &ctx))
5326 : : return 0;
5327 : 0 : mcp_res = flow_mreg_add_copy_action(dev, mark_id, error);
5328 [ # # ]: 0 : if (!mcp_res)
5329 : 0 : return -rte_errno;
5330 : : return 0;
5331 : : }
5332 : :
5333 : : /**
5334 : : * Add a flow of copying flow metadata registers in RX_CP_TBL.
5335 : : *
5336 : : * All the flow having Q/RSS action should be split by
5337 : : * flow_mreg_split_qrss_prep() to pass by RX_CP_TBL. A flow in the RX_CP_TBL
5338 : : * performs the following,
5339 : : * - CQE->flow_tag := reg_c[1] (MARK)
5340 : : * - CQE->flow_table_metadata (reg_b) := reg_c[0] (META)
5341 : : * As CQE's flow_tag is not a register, it can't be simply copied from reg_c[1]
5342 : : * but there should be a flow per each MARK ID set by MARK action.
5343 : : *
5344 : : * For the aforementioned reason, if there's a MARK action in flow's action
5345 : : * list, a corresponding flow should be added to the RX_CP_TBL in order to copy
5346 : : * the MARK ID to CQE's flow_tag like,
5347 : : * - If reg_c[1] is mark_id,
5348 : : * flow_tag := mark_id, reg_b := reg_c[0] and jump to RX_ACT_TBL.
5349 : : *
5350 : : * For SET_META action which stores value in reg_c[0], as the destination is
5351 : : * also a flow metadata register (reg_b), adding a default flow is enough. Zero
5352 : : * MARK ID means the default flow. The default flow looks like,
5353 : : * - For all flow, reg_b := reg_c[0] and jump to RX_ACT_TBL.
5354 : : *
5355 : : * @param dev
5356 : : * Pointer to Ethernet device.
5357 : : * @param flow
5358 : : * Pointer to flow structure.
5359 : : * @param[in] actions
5360 : : * Pointer to the list of actions.
5361 : : * @param[out] error
5362 : : * Perform verbose error reporting if not NULL.
5363 : : *
5364 : : * @return
5365 : : * 0 on success, negative value otherwise and rte_errno is set.
5366 : : */
5367 : : static int
5368 : 0 : flow_mreg_update_copy_table(struct rte_eth_dev *dev,
5369 : : struct rte_flow *flow,
5370 : : const struct rte_flow_action *actions,
5371 : : struct rte_flow_error *error)
5372 : : {
5373 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
5374 : 0 : struct mlx5_sh_config *config = &priv->sh->config;
5375 : : struct mlx5_flow_mreg_copy_resource *mcp_res;
5376 : : const struct rte_flow_action_mark *mark;
5377 : :
5378 : : /* Check whether extensive metadata feature is engaged. */
5379 [ # # ]: 0 : if (!config->dv_flow_en ||
5380 [ # # # # ]: 0 : config->dv_xmeta_en == MLX5_XMETA_MODE_LEGACY ||
5381 : 0 : !mlx5_flow_ext_mreg_supported(dev) ||
5382 [ # # ]: 0 : !priv->sh->dv_regc0_mask)
5383 : 0 : return 0;
5384 : : /* Find MARK action. */
5385 [ # # ]: 0 : for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
5386 [ # # # ]: 0 : switch (actions->type) {
5387 : 0 : case RTE_FLOW_ACTION_TYPE_FLAG:
5388 : 0 : mcp_res = flow_mreg_add_copy_action
5389 : : (dev, MLX5_FLOW_MARK_DEFAULT, error);
5390 [ # # ]: 0 : if (!mcp_res)
5391 : 0 : return -rte_errno;
5392 : 0 : flow->rix_mreg_copy = mcp_res->idx;
5393 : 0 : return 0;
5394 : 0 : case RTE_FLOW_ACTION_TYPE_MARK:
5395 : 0 : mark = (const struct rte_flow_action_mark *)
5396 : : actions->conf;
5397 : : mcp_res =
5398 : 0 : flow_mreg_add_copy_action(dev, mark->id, error);
5399 [ # # ]: 0 : if (!mcp_res)
5400 : 0 : return -rte_errno;
5401 : 0 : flow->rix_mreg_copy = mcp_res->idx;
5402 : 0 : return 0;
5403 : : default:
5404 : : break;
5405 : : }
5406 : : }
5407 : : return 0;
5408 : : }
5409 : :
5410 : : #define MLX5_MAX_SPLIT_ACTIONS 24
5411 : : #define MLX5_MAX_SPLIT_ITEMS 24
5412 : :
5413 : : /**
5414 : : * Split the hairpin flow.
5415 : : * Since HW can't support encap and push-vlan on Rx, we move these
5416 : : * actions to Tx.
5417 : : * If the count action is after the encap then we also
5418 : : * move the count action. in this case the count will also measure
5419 : : * the outer bytes.
5420 : : *
5421 : : * @param dev
5422 : : * Pointer to Ethernet device.
5423 : : * @param[in] actions
5424 : : * Associated actions (list terminated by the END action).
5425 : : * @param[out] actions_rx
5426 : : * Rx flow actions.
5427 : : * @param[out] actions_tx
5428 : : * Tx flow actions..
5429 : : * @param[out] pattern_tx
5430 : : * The pattern items for the Tx flow.
5431 : : * @param[out] flow_id
5432 : : * The flow ID connected to this flow.
5433 : : *
5434 : : * @return
5435 : : * 0 on success.
5436 : : */
5437 : : static int
5438 : 0 : flow_hairpin_split(struct rte_eth_dev *dev,
5439 : : const struct rte_flow_action actions[],
5440 : : struct rte_flow_action actions_rx[],
5441 : : struct rte_flow_action actions_tx[],
5442 : : struct rte_flow_item pattern_tx[],
5443 : : uint32_t flow_id)
5444 : : {
5445 : : const struct rte_flow_action_raw_encap *raw_encap;
5446 : : const struct rte_flow_action_raw_decap *raw_decap;
5447 : : struct mlx5_rte_flow_action_set_tag *set_tag;
5448 : : struct rte_flow_action *tag_action;
5449 : : struct mlx5_rte_flow_item_tag *tag_item;
5450 : : struct rte_flow_item *item;
5451 : : char *addr;
5452 : : int push_vlan = 0;
5453 : : int encap = 0;
5454 : :
5455 [ # # ]: 0 : for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
5456 [ # # ]: 0 : if (actions->type == RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN)
5457 : : push_vlan = 1;
5458 [ # # # # : 0 : switch (actions->type) {
# # ]
5459 : : case RTE_FLOW_ACTION_TYPE_VXLAN_ENCAP:
5460 : : case RTE_FLOW_ACTION_TYPE_NVGRE_ENCAP:
5461 : : case RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN:
5462 : : case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP:
5463 : : rte_memcpy(actions_tx, actions,
5464 : : sizeof(struct rte_flow_action));
5465 : 0 : actions_tx++;
5466 : 0 : break;
5467 : 0 : case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID:
5468 [ # # ]: 0 : if (push_vlan) {
5469 : : rte_memcpy(actions_tx, actions,
5470 : : sizeof(struct rte_flow_action));
5471 : 0 : actions_tx++;
5472 : : } else {
5473 : : rte_memcpy(actions_rx, actions,
5474 : : sizeof(struct rte_flow_action));
5475 : 0 : actions_rx++;
5476 : : }
5477 : : break;
5478 : 0 : case RTE_FLOW_ACTION_TYPE_COUNT:
5479 : : case RTE_FLOW_ACTION_TYPE_AGE:
5480 [ # # ]: 0 : if (encap) {
5481 : : rte_memcpy(actions_tx, actions,
5482 : : sizeof(struct rte_flow_action));
5483 : 0 : actions_tx++;
5484 : : } else {
5485 : : rte_memcpy(actions_rx, actions,
5486 : : sizeof(struct rte_flow_action));
5487 : 0 : actions_rx++;
5488 : : }
5489 : : break;
5490 : 0 : case RTE_FLOW_ACTION_TYPE_RAW_ENCAP:
5491 : 0 : raw_encap = actions->conf;
5492 [ # # ]: 0 : if (raw_encap->size > MLX5_ENCAPSULATION_DECISION_SIZE) {
5493 : : memcpy(actions_tx, actions,
5494 : : sizeof(struct rte_flow_action));
5495 : 0 : actions_tx++;
5496 : : encap = 1;
5497 : : } else {
5498 : : rte_memcpy(actions_rx, actions,
5499 : : sizeof(struct rte_flow_action));
5500 : 0 : actions_rx++;
5501 : : }
5502 : : break;
5503 : 0 : case RTE_FLOW_ACTION_TYPE_RAW_DECAP:
5504 : 0 : raw_decap = actions->conf;
5505 [ # # ]: 0 : if (raw_decap->size < MLX5_ENCAPSULATION_DECISION_SIZE) {
5506 : : memcpy(actions_tx, actions,
5507 : : sizeof(struct rte_flow_action));
5508 : 0 : actions_tx++;
5509 : : } else {
5510 : : rte_memcpy(actions_rx, actions,
5511 : : sizeof(struct rte_flow_action));
5512 : 0 : actions_rx++;
5513 : : }
5514 : : break;
5515 : : default:
5516 : : rte_memcpy(actions_rx, actions,
5517 : : sizeof(struct rte_flow_action));
5518 : 0 : actions_rx++;
5519 : 0 : break;
5520 : : }
5521 : : }
5522 : : /* Add set meta action and end action for the Rx flow. */
5523 : : tag_action = actions_rx;
5524 : 0 : tag_action->type = (enum rte_flow_action_type)
5525 : : MLX5_RTE_FLOW_ACTION_TYPE_TAG;
5526 [ # # ]: 0 : actions_rx++;
5527 : : rte_memcpy(actions_rx, actions, sizeof(struct rte_flow_action));
5528 : 0 : actions_rx++;
5529 : : set_tag = (void *)actions_rx;
5530 : 0 : *set_tag = (struct mlx5_rte_flow_action_set_tag) {
5531 : 0 : .id = mlx5_flow_get_reg_id(dev, MLX5_HAIRPIN_RX, 0, NULL),
5532 : : .data = flow_id,
5533 : : };
5534 : : MLX5_ASSERT(set_tag->id > REG_NON);
5535 [ # # ]: 0 : tag_action->conf = set_tag;
5536 : : /* Create Tx item list. */
5537 : : rte_memcpy(actions_tx, actions, sizeof(struct rte_flow_action));
5538 : 0 : addr = (void *)&pattern_tx[2];
5539 : : item = pattern_tx;
5540 : 0 : item->type = (enum rte_flow_item_type)
5541 : : MLX5_RTE_FLOW_ITEM_TYPE_TAG;
5542 : : tag_item = (void *)addr;
5543 : 0 : tag_item->data = flow_id;
5544 : 0 : tag_item->id = mlx5_flow_get_reg_id(dev, MLX5_HAIRPIN_TX, 0, NULL);
5545 : : MLX5_ASSERT(set_tag->id > REG_NON);
5546 : 0 : item->spec = tag_item;
5547 : 0 : addr += sizeof(struct mlx5_rte_flow_item_tag);
5548 : : tag_item = (void *)addr;
5549 : 0 : tag_item->data = UINT32_MAX;
5550 : 0 : tag_item->id = UINT16_MAX;
5551 : 0 : item->mask = tag_item;
5552 : 0 : item->last = NULL;
5553 : : item++;
5554 : 0 : item->type = RTE_FLOW_ITEM_TYPE_END;
5555 : 0 : return 0;
5556 : : }
5557 : :
5558 : : /**
5559 : : * The last stage of splitting chain, just creates the subflow
5560 : : * without any modification.
5561 : : *
5562 : : * @param[in] dev
5563 : : * Pointer to Ethernet device.
5564 : : * @param[in] flow
5565 : : * Parent flow structure pointer.
5566 : : * @param[in, out] sub_flow
5567 : : * Pointer to return the created subflow, may be NULL.
5568 : : * @param[in] attr
5569 : : * Flow rule attributes.
5570 : : * @param[in] items
5571 : : * Pattern specification (list terminated by the END pattern item).
5572 : : * @param[in] actions
5573 : : * Associated actions (list terminated by the END action).
5574 : : * @param[in] flow_split_info
5575 : : * Pointer to flow split info structure.
5576 : : * @param[out] error
5577 : : * Perform verbose error reporting if not NULL.
5578 : : * @return
5579 : : * 0 on success, negative value otherwise
5580 : : */
5581 : : static int
5582 : 0 : flow_create_split_inner(struct rte_eth_dev *dev,
5583 : : struct rte_flow *flow,
5584 : : struct mlx5_flow **sub_flow,
5585 : : const struct rte_flow_attr *attr,
5586 : : const struct rte_flow_item items[],
5587 : : const struct rte_flow_action actions[],
5588 : : struct mlx5_flow_split_info *flow_split_info,
5589 : : struct rte_flow_error *error)
5590 : : {
5591 : : struct mlx5_flow *dev_flow;
5592 : 0 : struct mlx5_flow_workspace *wks = mlx5_flow_get_thread_workspace();
5593 : :
5594 : 0 : dev_flow = flow_drv_prepare(dev, flow, attr, items, actions,
5595 : : flow_split_info->flow_idx, error);
5596 [ # # ]: 0 : if (!dev_flow)
5597 : 0 : return -rte_errno;
5598 : 0 : dev_flow->flow = flow;
5599 : 0 : dev_flow->external = flow_split_info->external;
5600 : 0 : dev_flow->skip_scale = flow_split_info->skip_scale;
5601 : : /* Subflow object was created, we must include one in the list. */
5602 : 0 : SILIST_INSERT(&flow->dev_handles, dev_flow->handle_idx,
5603 : : dev_flow->handle, next);
5604 : : /*
5605 : : * If dev_flow is as one of the suffix flow, some actions in suffix
5606 : : * flow may need some user defined item layer flags, and pass the
5607 : : * Metadata rxq mark flag to suffix flow as well.
5608 : : */
5609 [ # # ]: 0 : if (flow_split_info->prefix_layers)
5610 : 0 : dev_flow->handle->layers = flow_split_info->prefix_layers;
5611 [ # # ]: 0 : if (flow_split_info->prefix_mark) {
5612 : : MLX5_ASSERT(wks);
5613 : 0 : wks->mark = 1;
5614 : : }
5615 [ # # ]: 0 : if (sub_flow)
5616 : 0 : *sub_flow = dev_flow;
5617 : : #ifdef HAVE_IBV_FLOW_DV_SUPPORT
5618 : 0 : dev_flow->dv.table_id = flow_split_info->table_id;
5619 : : #endif
5620 : 0 : return flow_drv_translate(dev, dev_flow, attr, items, actions, error);
5621 : : }
5622 : :
5623 : : /**
5624 : : * Get the sub policy of a meter.
5625 : : *
5626 : : * @param[in] dev
5627 : : * Pointer to Ethernet device.
5628 : : * @param[in] flow
5629 : : * Parent flow structure pointer.
5630 : : * @param wks
5631 : : * Pointer to thread flow work space.
5632 : : * @param[in] attr
5633 : : * Flow rule attributes.
5634 : : * @param[in] items
5635 : : * Pattern specification (list terminated by the END pattern item).
5636 : : * @param[out] error
5637 : : * Perform verbose error reporting if not NULL.
5638 : : *
5639 : : * @return
5640 : : * Pointer to the meter sub policy, NULL otherwise and rte_errno is set.
5641 : : */
5642 : : static struct mlx5_flow_meter_sub_policy *
5643 : 0 : get_meter_sub_policy(struct rte_eth_dev *dev,
5644 : : struct rte_flow *flow,
5645 : : struct mlx5_flow_workspace *wks,
5646 : : const struct rte_flow_attr *attr,
5647 : : const struct rte_flow_item items[],
5648 : : struct rte_flow_error *error)
5649 : : {
5650 : : struct mlx5_flow_meter_policy *policy;
5651 : : struct mlx5_flow_meter_policy *final_policy;
5652 : : struct mlx5_flow_meter_sub_policy *sub_policy = NULL;
5653 : :
5654 : 0 : policy = wks->policy;
5655 [ # # ]: 0 : final_policy = policy->is_hierarchy ? wks->final_policy : policy;
5656 [ # # ]: 0 : if (final_policy->is_rss || final_policy->is_queue) {
5657 : : struct mlx5_flow_rss_desc rss_desc_v[MLX5_MTR_RTE_COLORS];
5658 : 0 : struct mlx5_flow_rss_desc *rss_desc[MLX5_MTR_RTE_COLORS] = {0};
5659 : : uint32_t i;
5660 : :
5661 : : /*
5662 : : * This is a tmp dev_flow,
5663 : : * no need to register any matcher for it in translate.
5664 : : */
5665 : 0 : wks->skip_matcher_reg = 1;
5666 [ # # ]: 0 : for (i = 0; i < MLX5_MTR_RTE_COLORS; i++) {
5667 : 0 : struct mlx5_flow dev_flow = {0};
5668 : 0 : struct mlx5_flow_handle dev_handle = { {0} };
5669 : 0 : uint8_t fate = final_policy->act_cnt[i].fate_action;
5670 : :
5671 [ # # ]: 0 : if (fate == MLX5_FLOW_FATE_SHARED_RSS) {
5672 : 0 : const struct rte_flow_action_rss *rss_act =
5673 : 0 : final_policy->act_cnt[i].rss->conf;
5674 : 0 : struct rte_flow_action rss_actions[2] = {
5675 : : [0] = {
5676 : : .type = RTE_FLOW_ACTION_TYPE_RSS,
5677 : : .conf = rss_act,
5678 : : },
5679 : : [1] = {
5680 : : .type = RTE_FLOW_ACTION_TYPE_END,
5681 : : .conf = NULL,
5682 : : }
5683 : : };
5684 : :
5685 : 0 : dev_flow.handle = &dev_handle;
5686 : 0 : dev_flow.ingress = attr->ingress;
5687 : 0 : dev_flow.flow = flow;
5688 : : dev_flow.external = 0;
5689 : : #ifdef HAVE_IBV_FLOW_DV_SUPPORT
5690 : 0 : dev_flow.dv.transfer = attr->transfer;
5691 : : #endif
5692 : : /**
5693 : : * Translate RSS action to get rss hash fields.
5694 : : */
5695 [ # # ]: 0 : if (flow_drv_translate(dev, &dev_flow, attr,
5696 : : items, rss_actions, error))
5697 : 0 : goto exit;
5698 : 0 : rss_desc_v[i] = wks->rss_desc;
5699 : 0 : rss_desc_v[i].symmetric_hash_function =
5700 : 0 : dev_flow.symmetric_hash_function;
5701 : 0 : rss_desc_v[i].key_len = MLX5_RSS_HASH_KEY_LEN;
5702 : 0 : rss_desc_v[i].hash_fields =
5703 : 0 : dev_flow.hash_fields;
5704 : 0 : rss_desc_v[i].queue_num =
5705 : : rss_desc_v[i].hash_fields ?
5706 [ # # ]: 0 : rss_desc_v[i].queue_num : 1;
5707 : 0 : rss_desc_v[i].tunnel =
5708 : 0 : !!(dev_flow.handle->layers &
5709 : : MLX5_FLOW_LAYER_TUNNEL);
5710 : : /* Use the RSS queues in the containers. */
5711 : 0 : rss_desc_v[i].queue =
5712 : 0 : (uint16_t *)(uintptr_t)rss_act->queue;
5713 : 0 : rss_desc[i] = &rss_desc_v[i];
5714 [ # # ]: 0 : } else if (fate == MLX5_FLOW_FATE_QUEUE) {
5715 : : /* This is queue action. */
5716 : 0 : rss_desc_v[i] = wks->rss_desc;
5717 : 0 : rss_desc_v[i].key_len = 0;
5718 : 0 : rss_desc_v[i].hash_fields = 0;
5719 : 0 : rss_desc_v[i].queue =
5720 : 0 : &final_policy->act_cnt[i].queue;
5721 : 0 : rss_desc_v[i].queue_num = 1;
5722 : 0 : rss_desc[i] = &rss_desc_v[i];
5723 : : } else {
5724 : 0 : rss_desc[i] = NULL;
5725 : : }
5726 : : }
5727 : : sub_policy = flow_drv_meter_sub_policy_rss_prepare(dev,
5728 : : flow, policy, rss_desc);
5729 : : } else {
5730 : : enum mlx5_meter_domain mtr_domain =
5731 [ # # ]: 0 : attr->transfer ? MLX5_MTR_DOMAIN_TRANSFER :
5732 : 0 : (attr->egress ? MLX5_MTR_DOMAIN_EGRESS :
5733 : : MLX5_MTR_DOMAIN_INGRESS);
5734 : 0 : sub_policy = policy->sub_policys[mtr_domain][0];
5735 : : }
5736 [ # # ]: 0 : if (!sub_policy)
5737 : 0 : rte_flow_error_set(error, EINVAL,
5738 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
5739 : : "Failed to get meter sub-policy.");
5740 : 0 : exit:
5741 : 0 : return sub_policy;
5742 : : }
5743 : :
5744 : : /**
5745 : : * Split the meter flow.
5746 : : *
5747 : : * As meter flow will split to three sub flow, other than meter
5748 : : * action, the other actions make sense to only meter accepts
5749 : : * the packet. If it need to be dropped, no other additional
5750 : : * actions should be take.
5751 : : *
5752 : : * One kind of special action which decapsulates the L3 tunnel
5753 : : * header will be in the prefix sub flow, as not to take the
5754 : : * L3 tunnel header into account.
5755 : : *
5756 : : * @param[in] dev
5757 : : * Pointer to Ethernet device.
5758 : : * @param[in] flow
5759 : : * Parent flow structure pointer.
5760 : : * @param wks
5761 : : * Pointer to thread flow work space.
5762 : : * @param[in] attr
5763 : : * Flow rule attributes.
5764 : : * @param[in] items
5765 : : * Pattern specification (list terminated by the END pattern item).
5766 : : * @param[out] sfx_items
5767 : : * Suffix flow match items (list terminated by the END pattern item).
5768 : : * @param[in] actions
5769 : : * Associated actions (list terminated by the END action).
5770 : : * @param[out] actions_sfx
5771 : : * Suffix flow actions.
5772 : : * @param[out] actions_pre
5773 : : * Prefix flow actions.
5774 : : * @param[out] mtr_flow_id
5775 : : * Pointer to meter flow id.
5776 : : * @param[out] error
5777 : : * Perform verbose error reporting if not NULL.
5778 : : *
5779 : : * @return
5780 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
5781 : : */
5782 : : static int
5783 : 0 : flow_meter_split_prep(struct rte_eth_dev *dev,
5784 : : struct rte_flow *flow,
5785 : : struct mlx5_flow_workspace *wks,
5786 : : const struct rte_flow_attr *attr,
5787 : : const struct rte_flow_item items[],
5788 : : struct rte_flow_item sfx_items[],
5789 : : const struct rte_flow_action actions[],
5790 : : struct rte_flow_action actions_sfx[],
5791 : : struct rte_flow_action actions_pre[],
5792 : : uint32_t *mtr_flow_id,
5793 : : struct rte_flow_error *error)
5794 : : {
5795 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
5796 : 0 : struct mlx5_flow_meter_info *fm = wks->fm;
5797 : : struct rte_flow_action *tag_action = NULL;
5798 : : struct rte_flow_item *tag_item;
5799 : : struct mlx5_rte_flow_action_set_tag *set_tag;
5800 : : const struct rte_flow_action_raw_encap *raw_encap;
5801 : : const struct rte_flow_action_raw_decap *raw_decap;
5802 : : struct mlx5_rte_flow_item_tag *tag_item_spec;
5803 : : struct mlx5_rte_flow_item_tag *tag_item_mask;
5804 : 0 : uint32_t tag_id = 0;
5805 : : bool vlan_actions;
5806 : : struct rte_flow_item *orig_sfx_items = sfx_items;
5807 : : const struct rte_flow_item *orig_items = items;
5808 : : struct rte_flow_action *hw_mtr_action;
5809 : : struct rte_flow_action *action_pre_head = NULL;
5810 : 0 : uint16_t flow_src_port = priv->representor_id;
5811 : : bool mtr_first;
5812 : 0 : uint8_t mtr_id_offset = priv->mtr_reg_share ? MLX5_MTR_COLOR_BITS : 0;
5813 [ # # ]: 0 : uint8_t mtr_reg_bits = priv->mtr_reg_share ?
5814 : : MLX5_MTR_IDLE_BITS_IN_COLOR_REG : MLX5_REG_BITS;
5815 : : uint32_t flow_id = 0;
5816 : : uint32_t flow_id_reversed = 0;
5817 : : uint8_t flow_id_bits = 0;
5818 : : bool after_meter = false;
5819 : : int shift;
5820 : :
5821 : : /* Prepare the suffix subflow items. */
5822 : 0 : tag_item = sfx_items++;
5823 : 0 : tag_item->type = (enum rte_flow_item_type)MLX5_RTE_FLOW_ITEM_TYPE_TAG;
5824 [ # # ]: 0 : for (; items->type != RTE_FLOW_ITEM_TYPE_END; items++) {
5825 : : int item_type = items->type;
5826 : :
5827 [ # # # ]: 0 : switch (item_type) {
5828 : 0 : case RTE_FLOW_ITEM_TYPE_PORT_ID:
5829 : : case RTE_FLOW_ITEM_TYPE_REPRESENTED_PORT:
5830 : : case RTE_FLOW_ITEM_TYPE_PORT_REPRESENTOR:
5831 [ # # ]: 0 : if (mlx5_flow_get_item_vport_id(dev, items, &flow_src_port, NULL, error))
5832 : 0 : return -rte_errno;
5833 [ # # # # ]: 0 : if (!fm->def_policy && wks->policy->hierarchy_match_port &&
5834 [ # # ]: 0 : flow_src_port != priv->representor_id) {
5835 [ # # ]: 0 : if (flow_drv_mtr_hierarchy_rule_create(dev,
5836 : : flow, fm,
5837 : : flow_src_port,
5838 : : items,
5839 : : error))
5840 : 0 : return -rte_errno;
5841 : : }
5842 : : memcpy(sfx_items, items, sizeof(*sfx_items));
5843 : 0 : sfx_items++;
5844 : 0 : break;
5845 : : case RTE_FLOW_ITEM_TYPE_VLAN:
5846 : : /*
5847 : : * Copy VLAN items in case VLAN actions are performed.
5848 : : * If there are no VLAN actions, these items will be VOID.
5849 : : */
5850 : : memcpy(sfx_items, items, sizeof(*sfx_items));
5851 : 0 : sfx_items->type = (enum rte_flow_item_type)MLX5_RTE_FLOW_ITEM_TYPE_VLAN;
5852 : 0 : sfx_items++;
5853 : 0 : break;
5854 : : default:
5855 : : break;
5856 : : }
5857 : : }
5858 : 0 : sfx_items->type = RTE_FLOW_ITEM_TYPE_END;
5859 : 0 : sfx_items++;
5860 [ # # ]: 0 : mtr_first = priv->sh->meter_aso_en &&
5861 [ # # # # : 0 : (attr->egress || (attr->transfer && flow_src_port != UINT16_MAX));
# # ]
5862 : : /* For ASO meter, meter must be before tag in TX direction. */
5863 [ # # ]: 0 : if (mtr_first) {
5864 : 0 : action_pre_head = actions_pre++;
5865 : : /* Leave space for tag action. */
5866 : 0 : tag_action = actions_pre++;
5867 : : }
5868 : : /* Prepare the actions for prefix and suffix flow. */
5869 : : vlan_actions = false;
5870 [ # # ]: 0 : for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
5871 : : struct rte_flow_action *action_cur = NULL;
5872 : :
5873 [ # # # # : 0 : switch (actions->type) {
# # # ]
5874 : 0 : case RTE_FLOW_ACTION_TYPE_METER:
5875 [ # # ]: 0 : if (mtr_first) {
5876 : : action_cur = action_pre_head;
5877 : : } else {
5878 : : /* Leave space for tag action. */
5879 : 0 : tag_action = actions_pre++;
5880 : 0 : action_cur = actions_pre++;
5881 : : }
5882 : : after_meter = true;
5883 : : break;
5884 : 0 : case RTE_FLOW_ACTION_TYPE_VXLAN_DECAP:
5885 : : case RTE_FLOW_ACTION_TYPE_NVGRE_DECAP:
5886 : 0 : action_cur = actions_pre++;
5887 : 0 : break;
5888 : 0 : case RTE_FLOW_ACTION_TYPE_RAW_ENCAP:
5889 : 0 : raw_encap = actions->conf;
5890 [ # # ]: 0 : if (raw_encap->size < MLX5_ENCAPSULATION_DECISION_SIZE)
5891 : 0 : action_cur = actions_pre++;
5892 : : break;
5893 : 0 : case RTE_FLOW_ACTION_TYPE_RAW_DECAP:
5894 : 0 : raw_decap = actions->conf;
5895 [ # # ]: 0 : if (raw_decap->size > MLX5_ENCAPSULATION_DECISION_SIZE)
5896 : 0 : action_cur = actions_pre++;
5897 : : break;
5898 : 0 : case RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN:
5899 : : case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID:
5900 : : vlan_actions = true;
5901 : 0 : break;
5902 : 0 : case RTE_FLOW_ACTION_TYPE_COUNT:
5903 [ # # ]: 0 : if (fm->def_policy)
5904 : : action_cur = after_meter ?
5905 [ # # ]: 0 : actions_sfx++ : actions_pre++;
5906 : : break;
5907 : : default:
5908 : : break;
5909 : : }
5910 [ # # ]: 0 : if (!action_cur)
5911 : 0 : action_cur = (fm->def_policy) ?
5912 [ # # ]: 0 : actions_sfx++ : actions_pre++;
5913 : : memcpy(action_cur, actions, sizeof(struct rte_flow_action));
5914 : : }
5915 : : /* If there are no VLAN actions, convert VLAN items to VOID in suffix flow items. */
5916 [ # # ]: 0 : if (!vlan_actions) {
5917 : : struct rte_flow_item *it = orig_sfx_items;
5918 : :
5919 [ # # ]: 0 : for (; it->type != RTE_FLOW_ITEM_TYPE_END; it++)
5920 [ # # ]: 0 : if (it->type == (enum rte_flow_item_type)MLX5_RTE_FLOW_ITEM_TYPE_VLAN)
5921 : 0 : it->type = RTE_FLOW_ITEM_TYPE_VOID;
5922 : : }
5923 : : /* Add end action to the actions. */
5924 : 0 : actions_sfx->type = RTE_FLOW_ACTION_TYPE_END;
5925 [ # # ]: 0 : if (priv->sh->meter_aso_en) {
5926 : : /**
5927 : : * For ASO meter, need to add an extra jump action explicitly,
5928 : : * to jump from meter to policer table.
5929 : : */
5930 : : struct mlx5_flow_meter_sub_policy *sub_policy;
5931 : : struct mlx5_flow_tbl_data_entry *tbl_data;
5932 : :
5933 [ # # ]: 0 : if (!fm->def_policy) {
5934 : 0 : sub_policy = get_meter_sub_policy(dev, flow, wks,
5935 : : attr, orig_items,
5936 : : error);
5937 [ # # ]: 0 : if (!sub_policy)
5938 : 0 : return -rte_errno;
5939 : : } else {
5940 : : enum mlx5_meter_domain mtr_domain =
5941 [ # # ]: 0 : attr->transfer ? MLX5_MTR_DOMAIN_TRANSFER :
5942 : 0 : (attr->egress ? MLX5_MTR_DOMAIN_EGRESS :
5943 : : MLX5_MTR_DOMAIN_INGRESS);
5944 : :
5945 : 0 : sub_policy =
5946 : 0 : &priv->sh->mtrmng->def_policy[mtr_domain]->sub_policy;
5947 : : }
5948 : 0 : tbl_data = container_of(sub_policy->tbl_rsc,
5949 : : struct mlx5_flow_tbl_data_entry, tbl);
5950 : 0 : hw_mtr_action = actions_pre++;
5951 : 0 : hw_mtr_action->type = (enum rte_flow_action_type)
5952 : : MLX5_RTE_FLOW_ACTION_TYPE_JUMP;
5953 : 0 : hw_mtr_action->conf = tbl_data->jump.action;
5954 : : }
5955 : 0 : actions_pre->type = RTE_FLOW_ACTION_TYPE_END;
5956 : 0 : actions_pre++;
5957 [ # # ]: 0 : if (!tag_action)
5958 : 0 : return rte_flow_error_set(error, ENOMEM,
5959 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
5960 : : NULL, "No tag action space.");
5961 [ # # ]: 0 : if (!mtr_flow_id) {
5962 : 0 : tag_action->type = RTE_FLOW_ACTION_TYPE_VOID;
5963 : 0 : goto exit;
5964 : : }
5965 : : /* Only default-policy Meter creates mtr flow id. */
5966 [ # # ]: 0 : if (fm->def_policy) {
5967 : 0 : mlx5_ipool_malloc(fm->flow_ipool, &tag_id);
5968 [ # # ]: 0 : if (!tag_id)
5969 : 0 : return rte_flow_error_set(error, ENOMEM,
5970 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
5971 : : "Failed to allocate meter flow id.");
5972 : 0 : flow_id = tag_id - 1;
5973 [ # # ]: 0 : flow_id_bits = (!flow_id) ? 1 :
5974 : 0 : (MLX5_REG_BITS - rte_clz32(flow_id));
5975 [ # # ]: 0 : if ((flow_id_bits + priv->sh->mtrmng->max_mtr_bits) >
5976 : : mtr_reg_bits) {
5977 : 0 : mlx5_ipool_free(fm->flow_ipool, tag_id);
5978 : 0 : return rte_flow_error_set(error, EINVAL,
5979 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
5980 : : "Meter flow id exceeds max limit.");
5981 : : }
5982 [ # # ]: 0 : if (flow_id_bits > priv->sh->mtrmng->max_mtr_flow_bits)
5983 : 0 : priv->sh->mtrmng->max_mtr_flow_bits = flow_id_bits;
5984 : : }
5985 : : /* Build tag actions and items for meter_id/meter flow_id. */
5986 : : set_tag = (struct mlx5_rte_flow_action_set_tag *)actions_pre;
5987 : : tag_item_spec = (struct mlx5_rte_flow_item_tag *)sfx_items;
5988 : 0 : tag_item_mask = tag_item_spec + 1;
5989 : : /* Both flow_id and meter_id share the same register. */
5990 : 0 : *set_tag = (struct mlx5_rte_flow_action_set_tag) {
5991 : 0 : .id = (enum modify_reg)mlx5_flow_get_reg_id(dev, MLX5_MTR_ID,
5992 : : 0, error),
5993 : : .offset = mtr_id_offset,
5994 : : .length = mtr_reg_bits,
5995 : 0 : .data = flow->meter,
5996 : : };
5997 : : /*
5998 : : * The color Reg bits used by flow_id are growing from
5999 : : * msb to lsb, so must do bit reverse for flow_id val in RegC.
6000 : : */
6001 [ # # ]: 0 : for (shift = 0; shift < flow_id_bits; shift++)
6002 : 0 : flow_id_reversed = (flow_id_reversed << 1) |
6003 : 0 : ((flow_id >> shift) & 0x1);
6004 : 0 : set_tag->data |=
6005 : 0 : flow_id_reversed << (mtr_reg_bits - flow_id_bits);
6006 : 0 : tag_item_spec->id = set_tag->id;
6007 : 0 : tag_item_spec->data = set_tag->data << mtr_id_offset;
6008 : 0 : tag_item_mask->data = UINT32_MAX << mtr_id_offset;
6009 : 0 : tag_action->type = (enum rte_flow_action_type)
6010 : : MLX5_RTE_FLOW_ACTION_TYPE_TAG;
6011 : 0 : tag_action->conf = set_tag;
6012 : 0 : tag_item->spec = tag_item_spec;
6013 : 0 : tag_item->last = NULL;
6014 : 0 : tag_item->mask = tag_item_mask;
6015 : 0 : exit:
6016 [ # # ]: 0 : if (mtr_flow_id)
6017 : 0 : *mtr_flow_id = tag_id;
6018 : : return 0;
6019 : : }
6020 : :
6021 : : /**
6022 : : * Split action list having QUEUE/RSS for metadata register copy.
6023 : : *
6024 : : * Once Q/RSS action is detected in user's action list, the flow action
6025 : : * should be split in order to copy metadata registers, which will happen in
6026 : : * RX_CP_TBL like,
6027 : : * - CQE->flow_tag := reg_c[1] (MARK)
6028 : : * - CQE->flow_table_metadata (reg_b) := reg_c[0] (META)
6029 : : * The Q/RSS action will be performed on RX_ACT_TBL after passing by RX_CP_TBL.
6030 : : * This is because the last action of each flow must be a terminal action
6031 : : * (QUEUE, RSS or DROP).
6032 : : *
6033 : : * Flow ID must be allocated to identify actions in the RX_ACT_TBL and it is
6034 : : * stored and kept in the mlx5_flow structure per each sub_flow.
6035 : : *
6036 : : * The Q/RSS action is replaced with,
6037 : : * - SET_TAG, setting the allocated flow ID to reg_c[2].
6038 : : * And the following JUMP action is added at the end,
6039 : : * - JUMP, to RX_CP_TBL.
6040 : : *
6041 : : * A flow to perform remained Q/RSS action will be created in RX_ACT_TBL by
6042 : : * flow_create_split_metadata() routine. The flow will look like,
6043 : : * - If flow ID matches (reg_c[2]), perform Q/RSS.
6044 : : *
6045 : : * @param dev
6046 : : * Pointer to Ethernet device.
6047 : : * @param[out] split_actions
6048 : : * Pointer to store split actions to jump to CP_TBL.
6049 : : * @param[in] actions
6050 : : * Pointer to the list of original flow actions.
6051 : : * @param[in] qrss
6052 : : * Pointer to the Q/RSS action.
6053 : : * @param[in] actions_n
6054 : : * Number of original actions.
6055 : : * @param[in] mtr_sfx
6056 : : * Check if it is in meter suffix table.
6057 : : * @param[out] error
6058 : : * Perform verbose error reporting if not NULL.
6059 : : *
6060 : : * @return
6061 : : * non-zero unique flow_id on success, otherwise 0 and
6062 : : * error/rte_error are set.
6063 : : */
6064 : : static uint32_t
6065 : 0 : flow_mreg_split_qrss_prep(struct rte_eth_dev *dev,
6066 : : struct rte_flow_action *split_actions,
6067 : : const struct rte_flow_action *actions,
6068 : : const struct rte_flow_action *qrss,
6069 : : int actions_n, int mtr_sfx,
6070 : : struct rte_flow_error *error)
6071 : : {
6072 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
6073 : : struct mlx5_rte_flow_action_set_tag *set_tag;
6074 : : struct rte_flow_action_jump *jump;
6075 : 0 : const int qrss_idx = qrss - actions;
6076 : 0 : uint32_t flow_id = 0;
6077 : : int ret = 0;
6078 : :
6079 : : /*
6080 : : * Given actions will be split
6081 : : * - Replace QUEUE/RSS action with SET_TAG to set flow ID.
6082 : : * - Add jump to mreg CP_TBL.
6083 : : * As a result, there will be one more action.
6084 : : */
6085 [ # # ]: 0 : memcpy(split_actions, actions, sizeof(*split_actions) * actions_n);
6086 : : /* Count MLX5_RTE_FLOW_ACTION_TYPE_TAG. */
6087 : 0 : ++actions_n;
6088 : 0 : set_tag = (void *)(split_actions + actions_n);
6089 : : /*
6090 : : * If we are not the meter suffix flow, add the tag action.
6091 : : * Since meter suffix flow already has the tag added.
6092 : : */
6093 [ # # ]: 0 : if (!mtr_sfx) {
6094 : : /*
6095 : : * Allocate the new subflow ID. This one is unique within
6096 : : * device and not shared with representors. Otherwise,
6097 : : * we would have to resolve multi-thread access synch
6098 : : * issue. Each flow on the shared device is appended
6099 : : * with source vport identifier, so the resulting
6100 : : * flows will be unique in the shared (by master and
6101 : : * representors) domain even if they have coinciding
6102 : : * IDs.
6103 : : */
6104 : 0 : mlx5_ipool_malloc(priv->sh->ipool
6105 : : [MLX5_IPOOL_RSS_EXPANTION_FLOW_ID], &flow_id);
6106 [ # # ]: 0 : if (!flow_id)
6107 : 0 : return rte_flow_error_set(error, ENOMEM,
6108 : : RTE_FLOW_ERROR_TYPE_ACTION,
6109 : : NULL, "can't allocate id "
6110 : : "for split Q/RSS subflow");
6111 : : /* Internal SET_TAG action to set flow ID. */
6112 : 0 : *set_tag = (struct mlx5_rte_flow_action_set_tag){
6113 : : .data = flow_id,
6114 : : };
6115 : 0 : ret = mlx5_flow_get_reg_id(dev, MLX5_COPY_MARK, 0, error);
6116 [ # # ]: 0 : if (ret < 0)
6117 : 0 : return ret;
6118 : 0 : set_tag->id = ret;
6119 : : /* Construct new actions array. */
6120 : : /* Replace QUEUE/RSS action. */
6121 : 0 : split_actions[qrss_idx] = (struct rte_flow_action){
6122 : : .type = (enum rte_flow_action_type)
6123 : : MLX5_RTE_FLOW_ACTION_TYPE_TAG,
6124 : : .conf = set_tag,
6125 : : };
6126 : : } else {
6127 : : /*
6128 : : * If we are the suffix flow of meter, tag already exist.
6129 : : * Set the QUEUE/RSS action to void.
6130 : : */
6131 : 0 : split_actions[qrss_idx].type = RTE_FLOW_ACTION_TYPE_VOID;
6132 : : }
6133 : : /* JUMP action to jump to mreg copy table (CP_TBL). */
6134 : 0 : jump = (void *)(set_tag + 1);
6135 : 0 : *jump = (struct rte_flow_action_jump){
6136 : : .group = MLX5_FLOW_MREG_CP_TABLE_GROUP,
6137 : : };
6138 : 0 : split_actions[actions_n - 2] = (struct rte_flow_action){
6139 : : .type = RTE_FLOW_ACTION_TYPE_JUMP,
6140 : : .conf = jump,
6141 : : };
6142 : 0 : split_actions[actions_n - 1] = (struct rte_flow_action){
6143 : : .type = RTE_FLOW_ACTION_TYPE_END,
6144 : : };
6145 : 0 : return flow_id;
6146 : : }
6147 : :
6148 : : /**
6149 : : * Extend the given action list for Tx metadata copy.
6150 : : *
6151 : : * Copy the given action list to the ext_actions and add flow metadata register
6152 : : * copy action in order to copy reg_a set by WQE to reg_c[0].
6153 : : *
6154 : : * @param[out] ext_actions
6155 : : * Pointer to the extended action list.
6156 : : * @param[in] actions
6157 : : * Pointer to the list of actions.
6158 : : * @param[in] actions_n
6159 : : * Number of actions in the list.
6160 : : * @param[out] error
6161 : : * Perform verbose error reporting if not NULL.
6162 : : * @param[in] encap_idx
6163 : : * The encap action index.
6164 : : *
6165 : : * @return
6166 : : * 0 on success, negative value otherwise
6167 : : */
6168 : : static int
6169 : 0 : flow_mreg_tx_copy_prep(struct rte_eth_dev *dev,
6170 : : struct rte_flow_action *ext_actions,
6171 : : const struct rte_flow_action *actions,
6172 : : int actions_n, struct rte_flow_error *error,
6173 : : int encap_idx)
6174 : : {
6175 : 0 : struct mlx5_flow_action_copy_mreg *cp_mreg =
6176 : : (struct mlx5_flow_action_copy_mreg *)
6177 : 0 : (ext_actions + actions_n + 1);
6178 : : int ret;
6179 : :
6180 : 0 : ret = mlx5_flow_get_reg_id(dev, MLX5_METADATA_RX, 0, error);
6181 [ # # ]: 0 : if (ret < 0)
6182 : : return ret;
6183 : 0 : cp_mreg->dst = ret;
6184 : 0 : ret = mlx5_flow_get_reg_id(dev, MLX5_METADATA_TX, 0, error);
6185 [ # # ]: 0 : if (ret < 0)
6186 : : return ret;
6187 : 0 : cp_mreg->src = ret;
6188 [ # # ]: 0 : if (encap_idx != 0)
6189 : 0 : memcpy(ext_actions, actions, sizeof(*ext_actions) * encap_idx);
6190 [ # # ]: 0 : if (encap_idx == actions_n - 1) {
6191 : 0 : ext_actions[actions_n - 1] = (struct rte_flow_action){
6192 : : .type = (enum rte_flow_action_type)
6193 : : MLX5_RTE_FLOW_ACTION_TYPE_COPY_MREG,
6194 : : .conf = cp_mreg,
6195 : : };
6196 : 0 : ext_actions[actions_n] = (struct rte_flow_action){
6197 : : .type = RTE_FLOW_ACTION_TYPE_END,
6198 : : };
6199 : : } else {
6200 : 0 : ext_actions[encap_idx] = (struct rte_flow_action){
6201 : : .type = (enum rte_flow_action_type)
6202 : : MLX5_RTE_FLOW_ACTION_TYPE_COPY_MREG,
6203 : : .conf = cp_mreg,
6204 : : };
6205 : 0 : memcpy(ext_actions + encap_idx + 1, actions + encap_idx,
6206 : 0 : sizeof(*ext_actions) * (actions_n - encap_idx));
6207 : : }
6208 : : return 0;
6209 : : }
6210 : :
6211 : : /**
6212 : : * Check the match action from the action list.
6213 : : *
6214 : : * @param[in] actions
6215 : : * Pointer to the list of actions.
6216 : : * @param[in] attr
6217 : : * Flow rule attributes.
6218 : : * @param[in] action
6219 : : * The action to be check if exist.
6220 : : * @param[out] match_action_pos
6221 : : * Pointer to the position of the matched action if exists, otherwise is -1.
6222 : : * @param[out] qrss_action_pos
6223 : : * Pointer to the position of the Queue/RSS action if exists, otherwise is -1.
6224 : : * @param[out] modify_after_mirror
6225 : : * Pointer to the flag of modify action after FDB mirroring.
6226 : : *
6227 : : * @return
6228 : : * > 0 the total number of actions.
6229 : : * 0 if not found match action in action list.
6230 : : */
6231 : : static int
6232 : 0 : flow_check_match_action(const struct rte_flow_action actions[],
6233 : : const struct rte_flow_attr *attr,
6234 : : enum rte_flow_action_type action,
6235 : : int *match_action_pos, int *qrss_action_pos,
6236 : : int *modify_after_mirror)
6237 : : {
6238 : : const struct rte_flow_action_sample *sample;
6239 : : const struct rte_flow_action_raw_decap *decap;
6240 : : const struct rte_flow_action *action_cur = NULL;
6241 : : int actions_n = 0;
6242 : : uint32_t ratio = 0;
6243 : : int sub_type = 0;
6244 : : int flag = 0;
6245 : : int fdb_mirror = 0;
6246 : :
6247 : 0 : *match_action_pos = -1;
6248 : 0 : *qrss_action_pos = -1;
6249 [ # # ]: 0 : for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
6250 [ # # ]: 0 : if (actions->type == action) {
6251 : : flag = 1;
6252 : 0 : *match_action_pos = actions_n;
6253 : : }
6254 [ # # # # : 0 : switch (actions->type) {
# ]
6255 : 0 : case RTE_FLOW_ACTION_TYPE_QUEUE:
6256 : : case RTE_FLOW_ACTION_TYPE_RSS:
6257 : 0 : *qrss_action_pos = actions_n;
6258 : 0 : break;
6259 : 0 : case RTE_FLOW_ACTION_TYPE_SAMPLE:
6260 : 0 : sample = actions->conf;
6261 : 0 : ratio = sample->ratio;
6262 : 0 : sub_type = ((const struct rte_flow_action *)
6263 : 0 : (sample->actions))->type;
6264 [ # # # # : 0 : if (ratio == 1 && attr->transfer &&
# # ]
6265 : : sub_type != RTE_FLOW_ACTION_TYPE_END)
6266 : : fdb_mirror = 1;
6267 : : break;
6268 : 0 : case RTE_FLOW_ACTION_TYPE_SET_MAC_SRC:
6269 : : case RTE_FLOW_ACTION_TYPE_SET_MAC_DST:
6270 : : case RTE_FLOW_ACTION_TYPE_SET_IPV4_SRC:
6271 : : case RTE_FLOW_ACTION_TYPE_SET_IPV4_DST:
6272 : : case RTE_FLOW_ACTION_TYPE_SET_IPV6_SRC:
6273 : : case RTE_FLOW_ACTION_TYPE_SET_IPV6_DST:
6274 : : case RTE_FLOW_ACTION_TYPE_SET_TP_SRC:
6275 : : case RTE_FLOW_ACTION_TYPE_SET_TP_DST:
6276 : : case RTE_FLOW_ACTION_TYPE_DEC_TTL:
6277 : : case RTE_FLOW_ACTION_TYPE_SET_TTL:
6278 : : case RTE_FLOW_ACTION_TYPE_INC_TCP_SEQ:
6279 : : case RTE_FLOW_ACTION_TYPE_DEC_TCP_SEQ:
6280 : : case RTE_FLOW_ACTION_TYPE_INC_TCP_ACK:
6281 : : case RTE_FLOW_ACTION_TYPE_DEC_TCP_ACK:
6282 : : case RTE_FLOW_ACTION_TYPE_SET_IPV4_DSCP:
6283 : : case RTE_FLOW_ACTION_TYPE_SET_IPV6_DSCP:
6284 : : case RTE_FLOW_ACTION_TYPE_FLAG:
6285 : : case RTE_FLOW_ACTION_TYPE_MARK:
6286 : : case RTE_FLOW_ACTION_TYPE_SET_META:
6287 : : case RTE_FLOW_ACTION_TYPE_SET_TAG:
6288 : : case RTE_FLOW_ACTION_TYPE_OF_POP_VLAN:
6289 : : case RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN:
6290 : : case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID:
6291 : : case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP:
6292 : : case RTE_FLOW_ACTION_TYPE_VXLAN_DECAP:
6293 : : case RTE_FLOW_ACTION_TYPE_NVGRE_DECAP:
6294 : : case RTE_FLOW_ACTION_TYPE_MODIFY_FIELD:
6295 : : case RTE_FLOW_ACTION_TYPE_METER:
6296 [ # # ]: 0 : if (fdb_mirror)
6297 : 0 : *modify_after_mirror = 1;
6298 : : break;
6299 : 0 : case RTE_FLOW_ACTION_TYPE_RAW_DECAP:
6300 : 0 : decap = actions->conf;
6301 : : action_cur = actions;
6302 [ # # ]: 0 : while ((++action_cur)->type == RTE_FLOW_ACTION_TYPE_VOID)
6303 : : ;
6304 [ # # ]: 0 : if (action_cur->type == RTE_FLOW_ACTION_TYPE_RAW_ENCAP) {
6305 : 0 : const struct rte_flow_action_raw_encap *encap =
6306 : : action_cur->conf;
6307 [ # # ]: 0 : if (decap->size <=
6308 : 0 : MLX5_ENCAPSULATION_DECISION_SIZE &&
6309 [ # # ]: 0 : encap->size >
6310 : : MLX5_ENCAPSULATION_DECISION_SIZE)
6311 : : /* L3 encap. */
6312 : : break;
6313 : : }
6314 [ # # ]: 0 : if (fdb_mirror)
6315 : 0 : *modify_after_mirror = 1;
6316 : : break;
6317 : : default:
6318 : : break;
6319 : : }
6320 : 0 : actions_n++;
6321 : : }
6322 [ # # # # ]: 0 : if (flag && fdb_mirror && !*modify_after_mirror) {
6323 : : /* FDB mirroring uses the destination array to implement
6324 : : * instead of FLOW_SAMPLER object.
6325 : : */
6326 [ # # ]: 0 : if (sub_type != RTE_FLOW_ACTION_TYPE_END)
6327 : : flag = 0;
6328 : : }
6329 : : /* Count RTE_FLOW_ACTION_TYPE_END. */
6330 [ # # ]: 0 : return flag ? actions_n + 1 : 0;
6331 : : }
6332 : :
6333 : : #define SAMPLE_SUFFIX_ITEM 3
6334 : :
6335 : : /**
6336 : : * Split the sample flow.
6337 : : *
6338 : : * As sample flow will split to two sub flow, sample flow with
6339 : : * sample action, the other actions will move to new suffix flow.
6340 : : *
6341 : : * Also add unique tag id with tag action in the sample flow,
6342 : : * the same tag id will be as match in the suffix flow.
6343 : : *
6344 : : * @param dev
6345 : : * Pointer to Ethernet device.
6346 : : * @param[in] add_tag
6347 : : * Add extra tag action flag.
6348 : : * @param[out] sfx_items
6349 : : * Suffix flow match items (list terminated by the END pattern item).
6350 : : * @param[in] actions
6351 : : * Associated actions (list terminated by the END action).
6352 : : * @param[out] actions_sfx
6353 : : * Suffix flow actions.
6354 : : * @param[out] actions_pre
6355 : : * Prefix flow actions.
6356 : : * @param[in] actions_n
6357 : : * The total number of actions.
6358 : : * @param[in] sample_action_pos
6359 : : * The sample action position.
6360 : : * @param[in] qrss_action_pos
6361 : : * The Queue/RSS action position.
6362 : : * @param[in] jump_table
6363 : : * Add extra jump action flag.
6364 : : * @param[out] error
6365 : : * Perform verbose error reporting if not NULL.
6366 : : *
6367 : : * @return
6368 : : * 0 on success, or unique flow_id, a negative errno value
6369 : : * otherwise and rte_errno is set.
6370 : : */
6371 : : static int
6372 : 0 : flow_sample_split_prep(struct rte_eth_dev *dev,
6373 : : int add_tag,
6374 : : const struct rte_flow_item items[],
6375 : : struct rte_flow_item sfx_items[],
6376 : : const struct rte_flow_action actions[],
6377 : : struct rte_flow_action actions_sfx[],
6378 : : struct rte_flow_action actions_pre[],
6379 : : int actions_n,
6380 : : int sample_action_pos,
6381 : : int qrss_action_pos,
6382 : : int jump_table,
6383 : : struct rte_flow_error *error)
6384 : : {
6385 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
6386 : : struct mlx5_rte_flow_action_set_tag *set_tag;
6387 : : struct mlx5_rte_flow_item_tag *tag_spec;
6388 : : struct mlx5_rte_flow_item_tag *tag_mask;
6389 : : struct rte_flow_action_jump *jump_action;
6390 : 0 : uint32_t tag_id = 0;
6391 : : int append_index = 0;
6392 : : int set_tag_idx = -1;
6393 : : int index;
6394 : : int ret;
6395 : :
6396 [ # # ]: 0 : if (sample_action_pos < 0)
6397 : 0 : return rte_flow_error_set(error, EINVAL,
6398 : : RTE_FLOW_ERROR_TYPE_ACTION,
6399 : : NULL, "invalid position of sample "
6400 : : "action in list");
6401 : : /* Prepare the actions for prefix and suffix flow. */
6402 [ # # ]: 0 : if (add_tag) {
6403 : : /* Update the new added tag action index preceding
6404 : : * the PUSH_VLAN or ENCAP action.
6405 : : */
6406 : : const struct rte_flow_action_raw_encap *raw_encap;
6407 : : const struct rte_flow_action *action = actions;
6408 : : int encap_idx;
6409 : : int action_idx = 0;
6410 : : int raw_decap_idx = -1;
6411 : : int push_vlan_idx = -1;
6412 [ # # ]: 0 : for (; action->type != RTE_FLOW_ACTION_TYPE_END; action++) {
6413 [ # # # # : 0 : switch (action->type) {
# ]
6414 : 0 : case RTE_FLOW_ACTION_TYPE_RAW_DECAP:
6415 : : raw_decap_idx = action_idx;
6416 : 0 : break;
6417 : 0 : case RTE_FLOW_ACTION_TYPE_RAW_ENCAP:
6418 : 0 : raw_encap = action->conf;
6419 [ # # ]: 0 : if (raw_encap->size >
6420 : : MLX5_ENCAPSULATION_DECISION_SIZE) {
6421 : : encap_idx = raw_decap_idx != -1 ?
6422 [ # # ]: 0 : raw_decap_idx : action_idx;
6423 : 0 : if (encap_idx < sample_action_pos &&
6424 [ # # ]: 0 : push_vlan_idx == -1)
6425 : : set_tag_idx = encap_idx;
6426 : : }
6427 : : break;
6428 : 0 : case RTE_FLOW_ACTION_TYPE_VXLAN_ENCAP:
6429 : : case RTE_FLOW_ACTION_TYPE_NVGRE_ENCAP:
6430 : : encap_idx = action_idx;
6431 : 0 : if (encap_idx < sample_action_pos &&
6432 [ # # ]: 0 : push_vlan_idx == -1)
6433 : : set_tag_idx = encap_idx;
6434 : : break;
6435 : 0 : case RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN:
6436 : : case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID:
6437 : 0 : if (action_idx < sample_action_pos &&
6438 [ # # ]: 0 : push_vlan_idx == -1) {
6439 : : set_tag_idx = action_idx;
6440 : : push_vlan_idx = action_idx;
6441 : : }
6442 : : break;
6443 : : default:
6444 : : break;
6445 : : }
6446 : 0 : action_idx++;
6447 : : }
6448 : : }
6449 : : /* Prepare the actions for prefix and suffix flow. */
6450 [ # # ]: 0 : if (qrss_action_pos >= 0 && qrss_action_pos < sample_action_pos) {
6451 : : index = qrss_action_pos;
6452 : : /* Put the preceding the Queue/RSS action into prefix flow. */
6453 [ # # ]: 0 : if (index != 0)
6454 : 0 : memcpy(actions_pre, actions,
6455 : : sizeof(struct rte_flow_action) * index);
6456 : : /* Put others preceding the sample action into prefix flow. */
6457 [ # # ]: 0 : if (sample_action_pos > index + 1)
6458 : 0 : memcpy(actions_pre + index, actions + index + 1,
6459 : : sizeof(struct rte_flow_action) *
6460 : 0 : (sample_action_pos - index - 1));
6461 : 0 : index = sample_action_pos - 1;
6462 : : /* Put Queue/RSS action into Suffix flow. */
6463 : 0 : memcpy(actions_sfx, actions + qrss_action_pos,
6464 : : sizeof(struct rte_flow_action));
6465 : 0 : actions_sfx++;
6466 [ # # ]: 0 : } else if (add_tag && set_tag_idx >= 0) {
6467 [ # # ]: 0 : if (set_tag_idx > 0)
6468 : 0 : memcpy(actions_pre, actions,
6469 : : sizeof(struct rte_flow_action) * set_tag_idx);
6470 : 0 : memcpy(actions_pre + set_tag_idx + 1, actions + set_tag_idx,
6471 : : sizeof(struct rte_flow_action) *
6472 : 0 : (sample_action_pos - set_tag_idx));
6473 : : index = sample_action_pos;
6474 : : } else {
6475 : : index = sample_action_pos;
6476 [ # # ]: 0 : if (index != 0)
6477 : 0 : memcpy(actions_pre, actions,
6478 : : sizeof(struct rte_flow_action) * index);
6479 : : }
6480 : : /* For CX5, add an extra tag action for NIC-RX and E-Switch ingress.
6481 : : * For CX6DX and above, metadata registers Cx preserve their value,
6482 : : * add an extra tag action for NIC-RX and E-Switch Domain.
6483 : : */
6484 [ # # ]: 0 : if (add_tag) {
6485 : : /* Prepare the prefix tag action. */
6486 : : append_index++;
6487 : 0 : set_tag = (void *)(actions_pre + actions_n + append_index);
6488 : : /* Trust VF/SF on CX5 not supported meter so that the reserved
6489 : : * metadata regC is REG_NON, back to use application tag
6490 : : * index 0.
6491 : : */
6492 [ # # ]: 0 : if (unlikely(priv->sh->registers.aso_reg == REG_NON))
6493 : 0 : ret = mlx5_flow_get_reg_id(dev, MLX5_APP_TAG, 0, error);
6494 : : else
6495 : 0 : ret = mlx5_flow_get_reg_id(dev, MLX5_SAMPLE_ID, 0, error);
6496 [ # # ]: 0 : if (ret < 0)
6497 : : return ret;
6498 : 0 : mlx5_ipool_malloc(priv->sh->ipool
6499 : : [MLX5_IPOOL_RSS_EXPANTION_FLOW_ID], &tag_id);
6500 : 0 : *set_tag = (struct mlx5_rte_flow_action_set_tag) {
6501 : : .id = ret,
6502 : : .data = tag_id,
6503 : : };
6504 : : /* Prepare the suffix subflow items. */
6505 : 0 : tag_spec = (void *)(sfx_items + SAMPLE_SUFFIX_ITEM);
6506 : 0 : tag_spec->data = tag_id;
6507 : 0 : tag_spec->id = set_tag->id;
6508 : 0 : tag_mask = tag_spec + 1;
6509 : 0 : tag_mask->data = UINT32_MAX;
6510 [ # # ]: 0 : for (; items->type != RTE_FLOW_ITEM_TYPE_END; items++) {
6511 [ # # ]: 0 : if (items->type == RTE_FLOW_ITEM_TYPE_PORT_ID ||
6512 : : items->type == RTE_FLOW_ITEM_TYPE_PORT_REPRESENTOR ||
6513 : : items->type == RTE_FLOW_ITEM_TYPE_REPRESENTED_PORT) {
6514 : : memcpy(sfx_items, items, sizeof(*sfx_items));
6515 : 0 : sfx_items++;
6516 : 0 : break;
6517 : : }
6518 : : }
6519 : 0 : sfx_items[0] = (struct rte_flow_item){
6520 : : .type = (enum rte_flow_item_type)
6521 : : MLX5_RTE_FLOW_ITEM_TYPE_TAG,
6522 : : .spec = tag_spec,
6523 : : .last = NULL,
6524 : : .mask = tag_mask,
6525 : : };
6526 : 0 : sfx_items[1] = (struct rte_flow_item){
6527 : : .type = (enum rte_flow_item_type)
6528 : : RTE_FLOW_ITEM_TYPE_END,
6529 : : };
6530 : : /* Prepare the tag action in prefix subflow. */
6531 [ # # ]: 0 : set_tag_idx = (set_tag_idx == -1) ? index : set_tag_idx;
6532 : 0 : actions_pre[set_tag_idx] =
6533 : : (struct rte_flow_action){
6534 : : .type = (enum rte_flow_action_type)
6535 : : MLX5_RTE_FLOW_ACTION_TYPE_TAG,
6536 : : .conf = set_tag,
6537 : : };
6538 : : /* Update next sample position due to add one tag action */
6539 : 0 : index += 1;
6540 : : }
6541 : : /* Copy the sample action into prefix flow. */
6542 [ # # ]: 0 : memcpy(actions_pre + index, actions + sample_action_pos,
6543 : : sizeof(struct rte_flow_action));
6544 : 0 : index += 1;
6545 : : /* For the modify action after the sample action in E-Switch mirroring,
6546 : : * Add the extra jump action in prefix subflow and jump into the next
6547 : : * table, then do the modify action in the new table.
6548 : : */
6549 [ # # ]: 0 : if (jump_table) {
6550 : : /* Prepare the prefix jump action. */
6551 : 0 : append_index++;
6552 : 0 : jump_action = (void *)(actions_pre + actions_n + append_index);
6553 : 0 : jump_action->group = jump_table;
6554 : 0 : actions_pre[index++] =
6555 : : (struct rte_flow_action){
6556 : : .type = (enum rte_flow_action_type)
6557 : : RTE_FLOW_ACTION_TYPE_JUMP,
6558 : : .conf = jump_action,
6559 : : };
6560 : : }
6561 : 0 : actions_pre[index] = (struct rte_flow_action){
6562 : : .type = (enum rte_flow_action_type)
6563 : : RTE_FLOW_ACTION_TYPE_END,
6564 : : };
6565 : : /* Put the actions after sample into Suffix flow. */
6566 : 0 : memcpy(actions_sfx, actions + sample_action_pos + 1,
6567 : : sizeof(struct rte_flow_action) *
6568 : 0 : (actions_n - sample_action_pos - 1));
6569 : 0 : return tag_id;
6570 : : }
6571 : :
6572 : : /**
6573 : : * The splitting for metadata feature.
6574 : : *
6575 : : * - Q/RSS action on NIC Rx should be split in order to pass by
6576 : : * the mreg copy table (RX_CP_TBL) and then it jumps to the
6577 : : * action table (RX_ACT_TBL) which has the split Q/RSS action.
6578 : : *
6579 : : * - All the actions on NIC Tx should have a mreg copy action to
6580 : : * copy reg_a from WQE to reg_c[0].
6581 : : *
6582 : : * @param dev
6583 : : * Pointer to Ethernet device.
6584 : : * @param[in] flow
6585 : : * Parent flow structure pointer.
6586 : : * @param[in] attr
6587 : : * Flow rule attributes.
6588 : : * @param[in] items
6589 : : * Pattern specification (list terminated by the END pattern item).
6590 : : * @param[in] actions
6591 : : * Associated actions (list terminated by the END action).
6592 : : * @param[in] flow_split_info
6593 : : * Pointer to flow split info structure.
6594 : : * @param[out] error
6595 : : * Perform verbose error reporting if not NULL.
6596 : : * @return
6597 : : * 0 on success, negative value otherwise
6598 : : */
6599 : : static int
6600 : 0 : flow_create_split_metadata(struct rte_eth_dev *dev,
6601 : : struct rte_flow *flow,
6602 : : const struct rte_flow_attr *attr,
6603 : : const struct rte_flow_item items[],
6604 : : const struct rte_flow_action actions[],
6605 : : struct mlx5_flow_split_info *flow_split_info,
6606 : : struct rte_flow_error *error)
6607 : : {
6608 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
6609 : 0 : struct mlx5_sh_config *config = &priv->sh->config;
6610 : 0 : const struct rte_flow_action *qrss = NULL;
6611 : : struct rte_flow_action *ext_actions = NULL;
6612 : 0 : struct mlx5_flow *dev_flow = NULL;
6613 : : uint32_t qrss_id = 0;
6614 : : int mtr_sfx = 0;
6615 : : size_t act_size;
6616 : : int actions_n;
6617 : : int encap_idx;
6618 : : int ret;
6619 : :
6620 : : /* Check whether extensive metadata feature is engaged. */
6621 [ # # ]: 0 : if (!config->dv_flow_en ||
6622 [ # # # # ]: 0 : config->dv_xmeta_en == MLX5_XMETA_MODE_LEGACY ||
6623 : 0 : !mlx5_flow_ext_mreg_supported(dev))
6624 : 0 : return flow_create_split_inner(dev, flow, NULL, attr, items,
6625 : : actions, flow_split_info, error);
6626 : 0 : actions_n = flow_parse_metadata_split_actions_info(actions, &qrss,
6627 : : &encap_idx);
6628 [ # # ]: 0 : if (qrss) {
6629 : : /* Exclude hairpin flows from splitting. */
6630 [ # # ]: 0 : if (qrss->type == RTE_FLOW_ACTION_TYPE_QUEUE) {
6631 : : const struct rte_flow_action_queue *queue;
6632 : :
6633 : 0 : queue = qrss->conf;
6634 [ # # ]: 0 : if (mlx5_rxq_is_hairpin(dev, queue->index))
6635 : 0 : qrss = NULL;
6636 [ # # ]: 0 : } else if (qrss->type == RTE_FLOW_ACTION_TYPE_RSS) {
6637 : : const struct rte_flow_action_rss *rss;
6638 : :
6639 : 0 : rss = qrss->conf;
6640 [ # # ]: 0 : if (mlx5_rxq_is_hairpin(dev, rss->queue[0]))
6641 : 0 : qrss = NULL;
6642 : : }
6643 : : }
6644 [ # # ]: 0 : if (qrss) {
6645 : : /* Check if it is in meter suffix table. */
6646 : 0 : mtr_sfx = attr->group ==
6647 [ # # ]: 0 : ((attr->transfer && priv->fdb_def_rule) ?
6648 [ # # ]: 0 : (MLX5_FLOW_TABLE_LEVEL_METER - 1) :
6649 : : MLX5_FLOW_TABLE_LEVEL_METER);
6650 : : /*
6651 : : * Q/RSS action on NIC Rx should be split in order to pass by
6652 : : * the mreg copy table (RX_CP_TBL) and then it jumps to the
6653 : : * action table (RX_ACT_TBL) which has the split Q/RSS action.
6654 : : */
6655 : 0 : act_size = sizeof(struct rte_flow_action) * (actions_n + 1) +
6656 : 0 : sizeof(struct rte_flow_action_set_tag) +
6657 : : sizeof(struct rte_flow_action_jump);
6658 : 0 : ext_actions = mlx5_malloc(MLX5_MEM_ZERO, act_size, 0,
6659 : : SOCKET_ID_ANY);
6660 [ # # ]: 0 : if (!ext_actions)
6661 : 0 : return rte_flow_error_set(error, ENOMEM,
6662 : : RTE_FLOW_ERROR_TYPE_ACTION,
6663 : : NULL, "no memory to split "
6664 : : "metadata flow");
6665 : : /*
6666 : : * Create the new actions list with removed Q/RSS action
6667 : : * and appended set tag and jump to register copy table
6668 : : * (RX_CP_TBL). We should preallocate unique tag ID here
6669 : : * in advance, because it is needed for set tag action.
6670 : : */
6671 : 0 : qrss_id = flow_mreg_split_qrss_prep(dev, ext_actions, actions,
6672 : : qrss, actions_n,
6673 : : mtr_sfx, error);
6674 [ # # ]: 0 : if (!mtr_sfx && !qrss_id) {
6675 : 0 : ret = -rte_errno;
6676 : 0 : goto exit;
6677 : : }
6678 [ # # ]: 0 : } else if (attr->egress) {
6679 : : /*
6680 : : * All the actions on NIC Tx should have a metadata register
6681 : : * copy action to copy reg_a from WQE to reg_c[meta]
6682 : : */
6683 : 0 : act_size = sizeof(struct rte_flow_action) * (actions_n + 1) +
6684 : : sizeof(struct mlx5_flow_action_copy_mreg);
6685 : 0 : ext_actions = mlx5_malloc(MLX5_MEM_ZERO, act_size, 0,
6686 : : SOCKET_ID_ANY);
6687 [ # # ]: 0 : if (!ext_actions)
6688 : 0 : return rte_flow_error_set(error, ENOMEM,
6689 : : RTE_FLOW_ERROR_TYPE_ACTION,
6690 : : NULL, "no memory to split "
6691 : : "metadata flow");
6692 : : /* Create the action list appended with copy register. */
6693 : 0 : ret = flow_mreg_tx_copy_prep(dev, ext_actions, actions,
6694 : : actions_n, error, encap_idx);
6695 [ # # ]: 0 : if (ret < 0)
6696 : 0 : goto exit;
6697 : : }
6698 : : /* Add the unmodified original or prefix subflow. */
6699 [ # # ]: 0 : ret = flow_create_split_inner(dev, flow, &dev_flow, attr,
6700 : : items, ext_actions ? ext_actions :
6701 : : actions, flow_split_info, error);
6702 [ # # ]: 0 : if (ret < 0)
6703 : 0 : goto exit;
6704 : : MLX5_ASSERT(dev_flow);
6705 [ # # ]: 0 : if (qrss) {
6706 : 0 : const struct rte_flow_attr q_attr = {
6707 : : .group = MLX5_FLOW_MREG_ACT_TABLE_GROUP,
6708 : : .ingress = 1,
6709 : : };
6710 : : /* Internal PMD action to set register. */
6711 : 0 : struct mlx5_rte_flow_item_tag q_tag_spec = {
6712 : : .data = qrss_id,
6713 : : .id = REG_NON,
6714 : : };
6715 : 0 : struct rte_flow_item q_items[] = {
6716 : : {
6717 : : .type = (enum rte_flow_item_type)
6718 : : MLX5_RTE_FLOW_ITEM_TYPE_TAG,
6719 : : .spec = &q_tag_spec,
6720 : : .last = NULL,
6721 : : .mask = NULL,
6722 : : },
6723 : : {
6724 : : .type = RTE_FLOW_ITEM_TYPE_END,
6725 : : },
6726 : : };
6727 : 0 : struct rte_flow_action q_actions[] = {
6728 : : {
6729 : 0 : .type = qrss->type,
6730 : 0 : .conf = qrss->conf,
6731 : : },
6732 : : {
6733 : : .type = RTE_FLOW_ACTION_TYPE_END,
6734 : : },
6735 : : };
6736 : 0 : uint64_t layers = flow_get_prefix_layer_flags(dev_flow);
6737 : :
6738 : : /*
6739 : : * Configure the tag item only if there is no meter subflow.
6740 : : * Since tag is already marked in the meter suffix subflow
6741 : : * we can just use the meter suffix items as is.
6742 : : */
6743 [ # # ]: 0 : if (qrss_id) {
6744 : : /* Not meter subflow. */
6745 : : MLX5_ASSERT(!mtr_sfx);
6746 : : /*
6747 : : * Put unique id in prefix flow due to it is destroyed
6748 : : * after suffix flow and id will be freed after there
6749 : : * is no actual flows with this id and identifier
6750 : : * reallocation becomes possible (for example, for
6751 : : * other flows in other threads).
6752 : : */
6753 : 0 : dev_flow->handle->split_flow_id = qrss_id;
6754 : 0 : ret = mlx5_flow_get_reg_id(dev, MLX5_COPY_MARK, 0,
6755 : : error);
6756 [ # # ]: 0 : if (ret < 0)
6757 : 0 : goto exit;
6758 : 0 : q_tag_spec.id = ret;
6759 : : }
6760 : 0 : dev_flow = NULL;
6761 : : /* Add suffix subflow to execute Q/RSS. */
6762 : 0 : flow_split_info->prefix_layers = layers;
6763 : 0 : flow_split_info->prefix_mark = 0;
6764 : 0 : flow_split_info->table_id = 0;
6765 [ # # ]: 0 : ret = flow_create_split_inner(dev, flow, &dev_flow,
6766 : : &q_attr, mtr_sfx ? items :
6767 : : q_items, q_actions,
6768 : : flow_split_info, error);
6769 [ # # ]: 0 : if (ret < 0)
6770 : 0 : goto exit;
6771 : : /* qrss ID should be freed if failed. */
6772 : : qrss_id = 0;
6773 : : MLX5_ASSERT(dev_flow);
6774 : : }
6775 : :
6776 : 0 : exit:
6777 : : /*
6778 : : * We do not destroy the partially created sub_flows in case of error.
6779 : : * These ones are included into parent flow list and will be destroyed
6780 : : * by flow_drv_destroy.
6781 : : */
6782 : 0 : mlx5_ipool_free(priv->sh->ipool[MLX5_IPOOL_RSS_EXPANTION_FLOW_ID],
6783 : : qrss_id);
6784 : 0 : mlx5_free(ext_actions);
6785 : 0 : return ret;
6786 : : }
6787 : :
6788 : : /**
6789 : : * Create meter internal drop flow with the original pattern.
6790 : : *
6791 : : * @param dev
6792 : : * Pointer to Ethernet device.
6793 : : * @param[in] flow
6794 : : * Parent flow structure pointer.
6795 : : * @param[in] attr
6796 : : * Flow rule attributes.
6797 : : * @param[in] items
6798 : : * Pattern specification (list terminated by the END pattern item).
6799 : : * @param[in] flow_split_info
6800 : : * Pointer to flow split info structure.
6801 : : * @param[in] fm
6802 : : * Pointer to flow meter structure.
6803 : : * @param[out] error
6804 : : * Perform verbose error reporting if not NULL.
6805 : : * @return
6806 : : * 0 on success, negative value otherwise
6807 : : */
6808 : : static uint32_t
6809 : 0 : flow_meter_create_drop_flow_with_org_pattern(struct rte_eth_dev *dev,
6810 : : struct rte_flow *flow,
6811 : : const struct rte_flow_attr *attr,
6812 : : const struct rte_flow_item items[],
6813 : : struct mlx5_flow_split_info *flow_split_info,
6814 : : struct mlx5_flow_meter_info *fm,
6815 : : struct rte_flow_error *error)
6816 : : {
6817 : 0 : struct mlx5_flow *dev_flow = NULL;
6818 : 0 : struct rte_flow_attr drop_attr = *attr;
6819 : : struct rte_flow_action drop_actions[3];
6820 : 0 : struct mlx5_flow_split_info drop_split_info = *flow_split_info;
6821 : :
6822 : : MLX5_ASSERT(fm->drop_cnt);
6823 : 0 : drop_actions[0].type =
6824 : : (enum rte_flow_action_type)MLX5_RTE_FLOW_ACTION_TYPE_COUNT;
6825 : 0 : drop_actions[0].conf = (void *)(uintptr_t)fm->drop_cnt;
6826 : 0 : drop_actions[1].type = RTE_FLOW_ACTION_TYPE_DROP;
6827 : 0 : drop_actions[1].conf = NULL;
6828 : 0 : drop_actions[2].type = RTE_FLOW_ACTION_TYPE_END;
6829 : 0 : drop_actions[2].conf = NULL;
6830 : 0 : drop_split_info.external = false;
6831 : 0 : drop_split_info.skip_scale |= 1 << MLX5_SCALE_FLOW_GROUP_BIT;
6832 : 0 : drop_split_info.table_id = MLX5_MTR_TABLE_ID_DROP;
6833 : 0 : drop_attr.group = MLX5_FLOW_TABLE_LEVEL_METER;
6834 : 0 : return flow_create_split_inner(dev, flow, &dev_flow,
6835 : : &drop_attr, items, drop_actions,
6836 : : &drop_split_info, error);
6837 : : }
6838 : :
6839 : : static int
6840 : : flow_count_vlan_items(const struct rte_flow_item items[])
6841 : : {
6842 : : int items_n = 0;
6843 : :
6844 [ # # ]: 0 : for (; items->type != RTE_FLOW_ITEM_TYPE_END; items++) {
6845 [ # # ]: 0 : if (items->type == RTE_FLOW_ITEM_TYPE_VLAN ||
6846 : : items->type == (enum rte_flow_item_type)MLX5_RTE_FLOW_ITEM_TYPE_VLAN)
6847 : 0 : items_n++;
6848 : : }
6849 : : return items_n;
6850 : : }
6851 : :
6852 : : /**
6853 : : * The splitting for meter feature.
6854 : : *
6855 : : * - The meter flow will be split to two flows as prefix and
6856 : : * suffix flow. The packets make sense only it pass the prefix
6857 : : * meter action.
6858 : : *
6859 : : * - Reg_C_5 is used for the packet to match betweend prefix and
6860 : : * suffix flow.
6861 : : *
6862 : : * @param dev
6863 : : * Pointer to Ethernet device.
6864 : : * @param[in] flow
6865 : : * Parent flow structure pointer.
6866 : : * @param[in] attr
6867 : : * Flow rule attributes.
6868 : : * @param[in] items
6869 : : * Pattern specification (list terminated by the END pattern item).
6870 : : * @param[in] actions
6871 : : * Associated actions (list terminated by the END action).
6872 : : * @param[in] flow_split_info
6873 : : * Pointer to flow split info structure.
6874 : : * @param[out] error
6875 : : * Perform verbose error reporting if not NULL.
6876 : : * @return
6877 : : * 0 on success, negative value otherwise
6878 : : */
6879 : : static int
6880 : 0 : flow_create_split_meter(struct rte_eth_dev *dev,
6881 : : struct rte_flow *flow,
6882 : : const struct rte_flow_attr *attr,
6883 : : const struct rte_flow_item items[],
6884 : : const struct rte_flow_action actions[],
6885 : : struct mlx5_flow_split_info *flow_split_info,
6886 : : struct rte_flow_error *error)
6887 : : {
6888 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
6889 : 0 : struct mlx5_flow_workspace *wks = mlx5_flow_get_thread_workspace();
6890 : : struct rte_flow_action *sfx_actions = NULL;
6891 : : struct rte_flow_action *pre_actions = NULL;
6892 : : struct rte_flow_item *sfx_items = NULL;
6893 : 0 : struct mlx5_flow *dev_flow = NULL;
6894 : 0 : struct rte_flow_attr sfx_attr = *attr;
6895 : : struct mlx5_flow_meter_info *fm = NULL;
6896 : : uint8_t skip_scale_restore;
6897 : 0 : bool has_mtr = false;
6898 : 0 : bool has_modify = false;
6899 : : bool set_mtr_reg = true;
6900 : : bool is_mtr_hierarchy = false;
6901 : 0 : uint32_t meter_id = 0;
6902 : 0 : uint32_t mtr_idx = 0;
6903 : 0 : uint32_t mtr_flow_id = 0;
6904 : : size_t act_size;
6905 : : size_t item_size;
6906 : : int actions_n = 0;
6907 : : int vlan_items_n = 0;
6908 : : int ret = 0;
6909 : :
6910 [ # # ]: 0 : if (priv->mtr_en)
6911 : 0 : actions_n = flow_check_meter_action(dev, actions, &has_mtr,
6912 : : &has_modify, &meter_id);
6913 [ # # ]: 0 : if (has_mtr) {
6914 [ # # ]: 0 : if (flow->meter) {
6915 : 0 : fm = flow_dv_meter_find_by_idx(priv, flow->meter);
6916 [ # # ]: 0 : if (!fm)
6917 : 0 : return rte_flow_error_set(error, EINVAL,
6918 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
6919 : : NULL, "Meter not found.");
6920 : : } else {
6921 : 0 : fm = mlx5_flow_meter_find(priv, meter_id, &mtr_idx);
6922 [ # # ]: 0 : if (!fm)
6923 : 0 : return rte_flow_error_set(error, EINVAL,
6924 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
6925 : : NULL, "Meter not found.");
6926 : 0 : ret = mlx5_flow_meter_attach(priv, fm,
6927 : : &sfx_attr, error);
6928 [ # # ]: 0 : if (ret)
6929 : 0 : return -rte_errno;
6930 : 0 : flow->meter = mtr_idx;
6931 : : }
6932 : : MLX5_ASSERT(wks);
6933 : 0 : wks->fm = fm;
6934 [ # # ]: 0 : if (!fm->def_policy) {
6935 : 0 : wks->policy = mlx5_flow_meter_policy_find(dev,
6936 : : fm->policy_id,
6937 : : NULL);
6938 : : MLX5_ASSERT(wks->policy);
6939 [ # # ]: 0 : if (wks->policy->mark)
6940 : 0 : wks->mark = 1;
6941 [ # # ]: 0 : if (wks->policy->is_hierarchy) {
6942 : 0 : wks->final_policy =
6943 : 0 : mlx5_flow_meter_hierarchy_get_final_policy(dev,
6944 : : wks->policy);
6945 [ # # ]: 0 : if (!wks->final_policy)
6946 : 0 : return rte_flow_error_set(error,
6947 : : EINVAL,
6948 : : RTE_FLOW_ERROR_TYPE_ACTION, NULL,
6949 : : "Failed to find terminal policy of hierarchy.");
6950 : : is_mtr_hierarchy = true;
6951 : : }
6952 : : }
6953 : : /*
6954 : : * If it isn't default-policy Meter, and
6955 : : * 1. Not meter hierarchy and there's no action in flow to change
6956 : : * packet (modify/encap/decap etc.), OR
6957 : : * 2. No drop count needed for this meter.
6958 : : * Then no need to use regC to save meter id anymore.
6959 : : */
6960 [ # # # # : 0 : if (!fm->def_policy && ((!has_modify && !is_mtr_hierarchy) || !fm->drop_cnt))
# # # # ]
6961 : : set_mtr_reg = false;
6962 : : /* Prefix actions: meter, decap, encap, tag, jump, end, cnt. */
6963 : : #define METER_PREFIX_ACTION 7
6964 : 0 : act_size = (sizeof(struct rte_flow_action) *
6965 : 0 : (actions_n + METER_PREFIX_ACTION)) +
6966 : : sizeof(struct mlx5_rte_flow_action_set_tag);
6967 : : /* Flow can have multiple VLAN items. Account for them in suffix items. */
6968 : : vlan_items_n = flow_count_vlan_items(items);
6969 : : /* Suffix items: tag, [vlans], port id, end. */
6970 : : #define METER_SUFFIX_ITEM 3
6971 : 0 : item_size = sizeof(struct rte_flow_item) * (METER_SUFFIX_ITEM + vlan_items_n) +
6972 : : sizeof(struct mlx5_rte_flow_item_tag) * 2;
6973 : 0 : sfx_actions = mlx5_malloc(MLX5_MEM_ZERO, (act_size + item_size),
6974 : : 0, SOCKET_ID_ANY);
6975 [ # # ]: 0 : if (!sfx_actions)
6976 : 0 : return rte_flow_error_set(error, ENOMEM,
6977 : : RTE_FLOW_ERROR_TYPE_ACTION,
6978 : : NULL, "no memory to split "
6979 : : "meter flow");
6980 : 0 : sfx_items = (struct rte_flow_item *)((char *)sfx_actions +
6981 : : act_size);
6982 : : /* There's no suffix flow for meter of non-default policy. */
6983 [ # # ]: 0 : if (!fm->def_policy)
6984 : 0 : pre_actions = sfx_actions + 1;
6985 : : else
6986 : 0 : pre_actions = sfx_actions + actions_n;
6987 [ # # ]: 0 : ret = flow_meter_split_prep(dev, flow, wks, &sfx_attr,
6988 : : items, sfx_items, actions,
6989 : : sfx_actions, pre_actions,
6990 : : (set_mtr_reg ? &mtr_flow_id : NULL),
6991 : : error);
6992 [ # # ]: 0 : if (ret) {
6993 : 0 : ret = -rte_errno;
6994 : 0 : goto exit;
6995 : : }
6996 : : /* Add the prefix subflow. */
6997 : 0 : skip_scale_restore = flow_split_info->skip_scale;
6998 : 0 : flow_split_info->skip_scale |=
6999 : : 1 << MLX5_SCALE_JUMP_FLOW_GROUP_BIT;
7000 : 0 : ret = flow_create_split_inner(dev, flow, &dev_flow,
7001 : : attr, items, pre_actions,
7002 : : flow_split_info, error);
7003 : 0 : flow_split_info->skip_scale = skip_scale_restore;
7004 [ # # ]: 0 : if (ret) {
7005 [ # # ]: 0 : if (mtr_flow_id)
7006 : 0 : mlx5_ipool_free(fm->flow_ipool, mtr_flow_id);
7007 : 0 : ret = -rte_errno;
7008 : 0 : goto exit;
7009 : : }
7010 [ # # ]: 0 : if (mtr_flow_id) {
7011 : 0 : dev_flow->handle->split_flow_id = mtr_flow_id;
7012 : 0 : dev_flow->handle->is_meter_flow_id = 1;
7013 : : }
7014 [ # # ]: 0 : if (!fm->def_policy) {
7015 [ # # # # ]: 0 : if (!set_mtr_reg && fm->drop_cnt)
7016 : 0 : ret =
7017 : 0 : flow_meter_create_drop_flow_with_org_pattern(dev, flow,
7018 : : &sfx_attr, items,
7019 : : flow_split_info,
7020 : : fm, error);
7021 : 0 : goto exit;
7022 : : }
7023 : : /* Setting the sfx group atrr. */
7024 : 0 : sfx_attr.group = sfx_attr.transfer ?
7025 [ # # ]: 0 : (MLX5_FLOW_TABLE_LEVEL_METER - 1) :
7026 : : MLX5_FLOW_TABLE_LEVEL_METER;
7027 : 0 : flow_split_info->prefix_layers =
7028 : 0 : flow_get_prefix_layer_flags(dev_flow);
7029 : 0 : flow_split_info->prefix_mark |= wks->mark;
7030 : 0 : flow_split_info->table_id = MLX5_MTR_TABLE_ID_SUFFIX;
7031 : : }
7032 : : /* Add the prefix subflow. */
7033 [ # # ]: 0 : ret = flow_create_split_metadata(dev, flow,
7034 : : &sfx_attr, sfx_items ?
7035 : : sfx_items : items,
7036 : : sfx_actions ? sfx_actions : actions,
7037 : : flow_split_info, error);
7038 : 0 : exit:
7039 [ # # ]: 0 : if (sfx_actions)
7040 : 0 : mlx5_free(sfx_actions);
7041 : : return ret;
7042 : : }
7043 : :
7044 : : /**
7045 : : * The splitting for sample feature.
7046 : : *
7047 : : * Once Sample action is detected in the action list, the flow actions should
7048 : : * be split into prefix sub flow and suffix sub flow.
7049 : : *
7050 : : * The original items remain in the prefix sub flow, all actions preceding the
7051 : : * sample action and the sample action itself will be copied to the prefix
7052 : : * sub flow, the actions following the sample action will be copied to the
7053 : : * suffix sub flow, Queue action always be located in the suffix sub flow.
7054 : : *
7055 : : * In order to make the packet from prefix sub flow matches with suffix sub
7056 : : * flow, an extra tag action be added into prefix sub flow, and the suffix sub
7057 : : * flow uses tag item with the unique flow id.
7058 : : *
7059 : : * @param dev
7060 : : * Pointer to Ethernet device.
7061 : : * @param[in] flow
7062 : : * Parent flow structure pointer.
7063 : : * @param[in] attr
7064 : : * Flow rule attributes.
7065 : : * @param[in] items
7066 : : * Pattern specification (list terminated by the END pattern item).
7067 : : * @param[in] actions
7068 : : * Associated actions (list terminated by the END action).
7069 : : * @param[in] flow_split_info
7070 : : * Pointer to flow split info structure.
7071 : : * @param[out] error
7072 : : * Perform verbose error reporting if not NULL.
7073 : : * @return
7074 : : * 0 on success, negative value otherwise
7075 : : */
7076 : : static int
7077 : 0 : flow_create_split_sample(struct rte_eth_dev *dev,
7078 : : struct rte_flow *flow,
7079 : : const struct rte_flow_attr *attr,
7080 : : const struct rte_flow_item items[],
7081 : : const struct rte_flow_action actions[],
7082 : : struct mlx5_flow_split_info *flow_split_info,
7083 : : struct rte_flow_error *error)
7084 : : {
7085 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
7086 : : struct rte_flow_action *sfx_actions = NULL;
7087 : : struct rte_flow_action *pre_actions = NULL;
7088 : : struct rte_flow_item *sfx_items = NULL;
7089 : 0 : struct mlx5_flow *dev_flow = NULL;
7090 : 0 : struct rte_flow_attr sfx_attr = *attr;
7091 : : #ifdef HAVE_IBV_FLOW_DV_SUPPORT
7092 : : struct mlx5_flow_dv_sample_resource *sample_res;
7093 : : struct mlx5_flow_tbl_data_entry *sfx_tbl_data;
7094 : : struct mlx5_flow_tbl_resource *sfx_tbl;
7095 : 0 : struct mlx5_flow_workspace *wks = mlx5_flow_get_thread_workspace();
7096 : : #endif
7097 : : size_t act_size;
7098 : : size_t item_size;
7099 : : uint32_t fdb_tx = 0;
7100 : : int32_t tag_id = 0;
7101 : : int actions_n = 0;
7102 : : int sample_action_pos;
7103 : : int qrss_action_pos;
7104 : : int add_tag = 0;
7105 : 0 : int modify_after_mirror = 0;
7106 : : uint16_t jump_table = 0;
7107 : : const uint32_t next_ft_step = 1;
7108 : : int ret = 0;
7109 : : struct mlx5_priv *item_port_priv = NULL;
7110 : : const struct rte_flow_item *item;
7111 : :
7112 [ # # ]: 0 : if (priv->sampler_en)
7113 : 0 : actions_n = flow_check_match_action(actions, attr,
7114 : : RTE_FLOW_ACTION_TYPE_SAMPLE,
7115 : : &sample_action_pos, &qrss_action_pos,
7116 : : &modify_after_mirror);
7117 [ # # ]: 0 : if (actions_n) {
7118 : : /* The prefix actions must includes sample, tag, end. */
7119 : 0 : act_size = sizeof(struct rte_flow_action) * (actions_n * 2 + 1)
7120 : : + sizeof(struct mlx5_rte_flow_action_set_tag);
7121 : : item_size = sizeof(struct rte_flow_item) * SAMPLE_SUFFIX_ITEM +
7122 : : sizeof(struct mlx5_rte_flow_item_tag) * 2;
7123 : 0 : sfx_actions = mlx5_malloc(MLX5_MEM_ZERO, (act_size +
7124 : : item_size), 0, SOCKET_ID_ANY);
7125 [ # # ]: 0 : if (!sfx_actions)
7126 : 0 : return rte_flow_error_set(error, ENOMEM,
7127 : : RTE_FLOW_ERROR_TYPE_ACTION,
7128 : : NULL, "no memory to split "
7129 : : "sample flow");
7130 [ # # ]: 0 : for (item = items; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
7131 [ # # ]: 0 : if (item->type == RTE_FLOW_ITEM_TYPE_PORT_ID) {
7132 : : const struct rte_flow_item_port_id *spec;
7133 : :
7134 : 0 : spec = (const struct rte_flow_item_port_id *)item->spec;
7135 [ # # ]: 0 : if (spec)
7136 : : item_port_priv =
7137 : 0 : mlx5_port_to_eswitch_info(spec->id, true);
7138 : : break;
7139 [ # # ]: 0 : } else if (item->type == RTE_FLOW_ITEM_TYPE_REPRESENTED_PORT) {
7140 : : const struct rte_flow_item_ethdev *spec;
7141 : :
7142 : 0 : spec = (const struct rte_flow_item_ethdev *)item->spec;
7143 [ # # ]: 0 : if (spec)
7144 : : item_port_priv =
7145 : 0 : mlx5_port_to_eswitch_info(spec->port_id, true);
7146 : : break;
7147 [ # # ]: 0 : } else if (item->type == RTE_FLOW_ITEM_TYPE_PORT_REPRESENTOR) {
7148 : : const struct rte_flow_item_ethdev *spec;
7149 : :
7150 : 0 : spec = (const struct rte_flow_item_ethdev *)item->spec;
7151 [ # # ]: 0 : if (spec)
7152 : : item_port_priv =
7153 : 0 : mlx5_port_to_eswitch_info(spec->port_id, true);
7154 : : break;
7155 : : }
7156 : : }
7157 : : /* The representor_id is UINT16_MAX for uplink. */
7158 [ # # # # ]: 0 : fdb_tx = (attr->transfer &&
7159 : : flow_source_vport_representor(priv, item_port_priv));
7160 : : /*
7161 : : * When reg_c_preserve is set, metadata registers Cx preserve
7162 : : * their value even through packet duplication.
7163 : : */
7164 : 0 : add_tag = (!fdb_tx ||
7165 [ # # ]: 0 : priv->sh->cdev->config.hca_attr.reg_c_preserve);
7166 : : if (add_tag)
7167 : 0 : sfx_items = (struct rte_flow_item *)((char *)sfx_actions
7168 : : + act_size);
7169 [ # # ]: 0 : if (modify_after_mirror)
7170 : 0 : jump_table = attr->group * MLX5_FLOW_TABLE_FACTOR +
7171 : : next_ft_step;
7172 : 0 : pre_actions = sfx_actions + actions_n;
7173 : 0 : tag_id = flow_sample_split_prep(dev, add_tag, items, sfx_items,
7174 : : actions, sfx_actions,
7175 : : pre_actions, actions_n,
7176 : : sample_action_pos,
7177 : : qrss_action_pos, jump_table,
7178 : : error);
7179 [ # # # # ]: 0 : if (tag_id < 0 || (add_tag && !tag_id)) {
7180 : 0 : ret = -rte_errno;
7181 : 0 : goto exit;
7182 : : }
7183 [ # # ]: 0 : if (modify_after_mirror)
7184 : 0 : flow_split_info->skip_scale =
7185 : : 1 << MLX5_SCALE_JUMP_FLOW_GROUP_BIT;
7186 : : /* Add the prefix subflow. */
7187 : 0 : ret = flow_create_split_inner(dev, flow, &dev_flow, attr,
7188 : : items, pre_actions,
7189 : : flow_split_info, error);
7190 [ # # ]: 0 : if (ret) {
7191 : 0 : ret = -rte_errno;
7192 : 0 : goto exit;
7193 : : }
7194 : 0 : dev_flow->handle->split_flow_id = tag_id;
7195 : : #ifdef HAVE_IBV_FLOW_DV_SUPPORT
7196 [ # # ]: 0 : if (!modify_after_mirror) {
7197 : : /* Set the sfx group attr. */
7198 : 0 : sample_res = (struct mlx5_flow_dv_sample_resource *)
7199 : : dev_flow->dv.sample_res;
7200 : 0 : sfx_tbl = (struct mlx5_flow_tbl_resource *)
7201 : : sample_res->normal_path_tbl;
7202 : 0 : sfx_tbl_data = container_of(sfx_tbl,
7203 : : struct mlx5_flow_tbl_data_entry,
7204 : : tbl);
7205 : 0 : sfx_attr.group = sfx_attr.transfer ?
7206 [ # # ]: 0 : (sfx_tbl_data->level - 1) : sfx_tbl_data->level;
7207 : : } else {
7208 : : MLX5_ASSERT(attr->transfer);
7209 : 0 : sfx_attr.group = jump_table;
7210 : : }
7211 : 0 : flow_split_info->prefix_layers =
7212 : 0 : flow_get_prefix_layer_flags(dev_flow);
7213 : : MLX5_ASSERT(wks);
7214 : 0 : flow_split_info->prefix_mark |= wks->mark;
7215 : : /* Suffix group level already be scaled with factor, set
7216 : : * MLX5_SCALE_FLOW_GROUP_BIT of skip_scale to 1 to avoid scale
7217 : : * again in translation.
7218 : : */
7219 : 0 : flow_split_info->skip_scale = 1 << MLX5_SCALE_FLOW_GROUP_BIT;
7220 : : #endif
7221 : : }
7222 : : /* Add the suffix subflow. */
7223 [ # # # # ]: 0 : ret = flow_create_split_meter(dev, flow, &sfx_attr,
7224 : : sfx_items ? sfx_items : items,
7225 : : sfx_actions ? sfx_actions : actions,
7226 : : flow_split_info, error);
7227 : 0 : exit:
7228 [ # # ]: 0 : if (sfx_actions)
7229 : 0 : mlx5_free(sfx_actions);
7230 : : return ret;
7231 : : }
7232 : :
7233 : : /**
7234 : : * Split the flow to subflow set. The splitters might be linked
7235 : : * in the chain, like this:
7236 : : * flow_create_split_outer() calls:
7237 : : * flow_create_split_meter() calls:
7238 : : * flow_create_split_metadata(meter_subflow_0) calls:
7239 : : * flow_create_split_inner(metadata_subflow_0)
7240 : : * flow_create_split_inner(metadata_subflow_1)
7241 : : * flow_create_split_inner(metadata_subflow_2)
7242 : : * flow_create_split_metadata(meter_subflow_1) calls:
7243 : : * flow_create_split_inner(metadata_subflow_0)
7244 : : * flow_create_split_inner(metadata_subflow_1)
7245 : : * flow_create_split_inner(metadata_subflow_2)
7246 : : *
7247 : : * This provide flexible way to add new levels of flow splitting.
7248 : : * The all of successfully created subflows are included to the
7249 : : * parent flow dev_flow list.
7250 : : *
7251 : : * @param dev
7252 : : * Pointer to Ethernet device.
7253 : : * @param[in] flow
7254 : : * Parent flow structure pointer.
7255 : : * @param[in] attr
7256 : : * Flow rule attributes.
7257 : : * @param[in] items
7258 : : * Pattern specification (list terminated by the END pattern item).
7259 : : * @param[in] actions
7260 : : * Associated actions (list terminated by the END action).
7261 : : * @param[in] flow_split_info
7262 : : * Pointer to flow split info structure.
7263 : : * @param[out] error
7264 : : * Perform verbose error reporting if not NULL.
7265 : : * @return
7266 : : * 0 on success, negative value otherwise
7267 : : */
7268 : : static int
7269 : : flow_create_split_outer(struct rte_eth_dev *dev,
7270 : : struct rte_flow *flow,
7271 : : const struct rte_flow_attr *attr,
7272 : : const struct rte_flow_item items[],
7273 : : const struct rte_flow_action actions[],
7274 : : struct mlx5_flow_split_info *flow_split_info,
7275 : : struct rte_flow_error *error)
7276 : : {
7277 : : int ret;
7278 : :
7279 : 0 : ret = flow_create_split_sample(dev, flow, attr, items,
7280 : : actions, flow_split_info, error);
7281 : : MLX5_ASSERT(ret <= 0);
7282 : : return ret;
7283 : : }
7284 : :
7285 : : static inline struct mlx5_flow_tunnel *
7286 : : flow_tunnel_from_rule(const struct mlx5_flow *flow)
7287 : : {
7288 : : struct mlx5_flow_tunnel *tunnel;
7289 : :
7290 : : #pragma GCC diagnostic push
7291 : : #pragma GCC diagnostic ignored "-Wcast-qual"
7292 : 0 : tunnel = (typeof(tunnel))flow->tunnel;
7293 : : #pragma GCC diagnostic pop
7294 : :
7295 : : return tunnel;
7296 : : }
7297 : :
7298 : : /**
7299 : : * Create a flow and add it to @p list.
7300 : : *
7301 : : * @param dev
7302 : : * Pointer to Ethernet device.
7303 : : * @param list
7304 : : * Pointer to a TAILQ flow list. If this parameter NULL,
7305 : : * no list insertion occurred, flow is just created,
7306 : : * this is caller's responsibility to track the
7307 : : * created flow.
7308 : : * @param[in] attr
7309 : : * Flow rule attributes.
7310 : : * @param[in] items
7311 : : * Pattern specification (list terminated by the END pattern item).
7312 : : * @param[in] actions
7313 : : * Associated actions (list terminated by the END action).
7314 : : * @param[in] external
7315 : : * This flow rule is created by request external to PMD.
7316 : : * @param[out] error
7317 : : * Perform verbose error reporting if not NULL.
7318 : : *
7319 : : * @return
7320 : : * A flow index on success, 0 otherwise and rte_errno is set.
7321 : : */
7322 : : uintptr_t
7323 : 0 : flow_legacy_list_create(struct rte_eth_dev *dev, enum mlx5_flow_type type,
7324 : : const struct rte_flow_attr *attr,
7325 : : const struct rte_flow_item items[],
7326 : : const struct rte_flow_action original_actions[],
7327 : : bool external, struct rte_flow_error *error)
7328 : : {
7329 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
7330 : : struct rte_flow *flow = NULL;
7331 : : struct mlx5_flow *dev_flow;
7332 : : const struct rte_flow_action_rss *rss = NULL;
7333 : : struct mlx5_translated_action_handle
7334 : : indir_actions[MLX5_MAX_INDIRECT_ACTIONS];
7335 : 0 : int indir_actions_n = MLX5_MAX_INDIRECT_ACTIONS;
7336 : : union {
7337 : : struct mlx5_flow_expand_rss buf;
7338 : : uint8_t buffer[8192];
7339 : : } expand_buffer;
7340 : : union {
7341 : : struct rte_flow_action actions[MLX5_MAX_SPLIT_ACTIONS];
7342 : : uint8_t buffer[2048];
7343 : : } actions_rx;
7344 : : union {
7345 : : struct rte_flow_action actions[MLX5_MAX_SPLIT_ACTIONS];
7346 : : uint8_t buffer[2048];
7347 : : } actions_hairpin_tx;
7348 : : union {
7349 : : struct rte_flow_item items[MLX5_MAX_SPLIT_ITEMS];
7350 : : uint8_t buffer[2048];
7351 : : } items_tx;
7352 : : struct mlx5_rte_flow_item_sq sq_specs[RTE_MAX_QUEUES_PER_PORT];
7353 : : struct mlx5_flow_expand_rss *buf = &expand_buffer.buf;
7354 : : struct mlx5_flow_rss_desc *rss_desc;
7355 : : const struct rte_flow_action *p_actions_rx;
7356 : : uint32_t i;
7357 : 0 : uint32_t idx = 0;
7358 : : int hairpin_flow;
7359 : 0 : struct rte_flow_attr attr_tx = { .priority = 0 };
7360 : : const struct rte_flow_action *actions;
7361 : 0 : struct rte_flow_action *translated_actions = NULL;
7362 : : struct mlx5_flow_tunnel *tunnel;
7363 : 0 : struct tunnel_default_miss_ctx default_miss_ctx = { 0, };
7364 : 0 : struct mlx5_flow_workspace *wks = mlx5_flow_push_thread_workspace();
7365 : 0 : struct mlx5_flow_split_info flow_split_info = {
7366 : : .external = !!external,
7367 : : .skip_scale = 0,
7368 : : .flow_idx = 0,
7369 : : .prefix_mark = 0,
7370 : : .prefix_layers = 0,
7371 : : .table_id = 0
7372 : : };
7373 : : int ret;
7374 : : struct mlx5_shared_action_rss *shared_rss_action;
7375 : :
7376 [ # # ]: 0 : if (!wks)
7377 : 0 : return rte_flow_error_set(error, ENOMEM,
7378 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
7379 : : NULL,
7380 : : "failed to push flow workspace");
7381 : : memset(indir_actions, 0, sizeof(indir_actions));
7382 : 0 : rss_desc = &wks->rss_desc;
7383 : 0 : ret = flow_action_handles_translate(dev, original_actions,
7384 : : indir_actions,
7385 : : &indir_actions_n,
7386 : : &translated_actions, error);
7387 [ # # ]: 0 : if (ret < 0) {
7388 : : MLX5_ASSERT(translated_actions == NULL);
7389 : : return 0;
7390 : : }
7391 [ # # ]: 0 : actions = translated_actions ? translated_actions : original_actions;
7392 : : p_actions_rx = actions;
7393 : 0 : hairpin_flow = flow_check_hairpin_split(dev, attr, actions);
7394 : 0 : ret = flow_drv_validate(dev, attr, items, p_actions_rx,
7395 : : external, hairpin_flow, error);
7396 [ # # ]: 0 : if (ret < 0)
7397 : 0 : goto error_before_hairpin_split;
7398 : 0 : flow = mlx5_ipool_zmalloc(priv->flows[type], &idx);
7399 [ # # ]: 0 : if (!flow) {
7400 : 0 : rte_errno = ENOMEM;
7401 : 0 : goto error_before_hairpin_split;
7402 : : }
7403 [ # # ]: 0 : if (hairpin_flow > 0) {
7404 [ # # ]: 0 : if (hairpin_flow > MLX5_MAX_SPLIT_ACTIONS) {
7405 : 0 : rte_errno = EINVAL;
7406 : 0 : goto error_before_hairpin_split;
7407 : : }
7408 : 0 : flow_hairpin_split(dev, actions, actions_rx.actions,
7409 : : actions_hairpin_tx.actions, items_tx.items,
7410 : : idx);
7411 : : p_actions_rx = actions_rx.actions;
7412 : : }
7413 : 0 : flow_split_info.flow_idx = idx;
7414 [ # # ]: 0 : flow->drv_type = flow_get_drv_type(dev, attr);
7415 : : MLX5_ASSERT(flow->drv_type > MLX5_FLOW_TYPE_MIN &&
7416 : : flow->drv_type < MLX5_FLOW_TYPE_MAX);
7417 : : memset(rss_desc, 0, offsetof(struct mlx5_flow_rss_desc, queue));
7418 : : /* RSS Action only works on NIC RX domain */
7419 [ # # ]: 0 : if (attr->ingress)
7420 : 0 : rss = flow_get_rss_action(dev, p_actions_rx);
7421 [ # # ]: 0 : if (rss) {
7422 : : MLX5_ASSERT(rss->queue_num <= RTE_ETH_RSS_RETA_SIZE_512);
7423 : 0 : rss_desc->symmetric_hash_function = MLX5_RSS_IS_SYMM(rss->func);
7424 : : /*
7425 : : * The following information is required by
7426 : : * mlx5_flow_hashfields_adjust() in advance.
7427 : : */
7428 : 0 : rss_desc->level = rss->level;
7429 : : /* RSS type 0 indicates default RSS type (RTE_ETH_RSS_IP). */
7430 [ # # ]: 0 : rss_desc->types = !rss->types ? RTE_ETH_RSS_IP : rss->types;
7431 : : }
7432 : 0 : flow->dev_handles = 0;
7433 [ # # # # ]: 0 : if (rss && rss->types) {
7434 : : unsigned int graph_root;
7435 : :
7436 : 0 : graph_root = find_graph_root(rss->level);
7437 : 0 : ret = mlx5_flow_expand_rss(buf, sizeof(expand_buffer.buffer),
7438 : : items, rss->types,
7439 : : mlx5_support_expansion, graph_root);
7440 : : MLX5_ASSERT(ret > 0 &&
7441 : : (unsigned int)ret < sizeof(expand_buffer.buffer));
7442 [ # # ]: 0 : if (rte_log_can_log(mlx5_logtype, RTE_LOG_DEBUG)) {
7443 [ # # ]: 0 : for (i = 0; i < buf->entries; ++i)
7444 : 0 : mlx5_dbg__print_pattern(buf->entry[i].pattern);
7445 : : }
7446 : : } else {
7447 : 0 : ret = mlx5_flow_expand_sqn((struct mlx5_flow_expand_sqn *)buf,
7448 : : sizeof(expand_buffer.buffer),
7449 : : items, sq_specs);
7450 [ # # ]: 0 : if (ret) {
7451 : 0 : rte_flow_error_set(error, ENOMEM, RTE_FLOW_ERROR_TYPE_HANDLE,
7452 : : NULL, "not enough memory for rte_flow");
7453 : 0 : goto error;
7454 : : }
7455 [ # # ]: 0 : if (buf->entries == 0) {
7456 : 0 : buf->entries = 1;
7457 : 0 : buf->entry[0].pattern = (void *)(uintptr_t)items;
7458 : : }
7459 : : }
7460 : 0 : rss_desc->shared_rss = flow_get_shared_rss_action(dev, indir_actions,
7461 : : indir_actions_n);
7462 [ # # ]: 0 : for (i = 0; i < buf->entries; ++i) {
7463 : : /* Initialize flow split data. */
7464 : 0 : flow_split_info.prefix_layers = 0;
7465 : 0 : flow_split_info.prefix_mark = 0;
7466 : 0 : flow_split_info.skip_scale = 0;
7467 : : /*
7468 : : * The splitter may create multiple dev_flows,
7469 : : * depending on configuration. In the simplest
7470 : : * case it just creates unmodified original flow.
7471 : : */
7472 : : ret = flow_create_split_outer(dev, flow, attr,
7473 : 0 : buf->entry[i].pattern,
7474 : : p_actions_rx, &flow_split_info,
7475 : : error);
7476 [ # # ]: 0 : if (ret < 0)
7477 : 0 : goto error;
7478 [ # # ]: 0 : if (is_flow_tunnel_steer_rule(wks->flows[0].tof_type)) {
7479 : 0 : ret = flow_tunnel_add_default_miss(dev, flow, attr,
7480 : : p_actions_rx,
7481 : : idx,
7482 : : wks->flows[0].tunnel,
7483 : : &default_miss_ctx,
7484 : : error);
7485 [ # # ]: 0 : if (ret < 0) {
7486 : 0 : mlx5_free(default_miss_ctx.queue);
7487 : 0 : goto error;
7488 : : }
7489 : : }
7490 : : }
7491 : : /* Create the tx flow. */
7492 [ # # ]: 0 : if (hairpin_flow) {
7493 : 0 : attr_tx.group = MLX5_HAIRPIN_TX_TABLE;
7494 : 0 : attr_tx.ingress = 0;
7495 : 0 : attr_tx.egress = 1;
7496 : 0 : dev_flow = flow_drv_prepare(dev, flow, &attr_tx, items_tx.items,
7497 : : actions_hairpin_tx.actions,
7498 : : idx, error);
7499 [ # # ]: 0 : if (!dev_flow)
7500 : 0 : goto error;
7501 : 0 : dev_flow->flow = flow;
7502 : 0 : dev_flow->external = 0;
7503 : 0 : SILIST_INSERT(&flow->dev_handles, dev_flow->handle_idx,
7504 : : dev_flow->handle, next);
7505 : : ret = flow_drv_translate(dev, dev_flow, &attr_tx,
7506 : : items_tx.items,
7507 : : actions_hairpin_tx.actions, error);
7508 [ # # ]: 0 : if (ret < 0)
7509 : 0 : goto error;
7510 : : }
7511 : : /*
7512 : : * Update the metadata register copy table. If extensive
7513 : : * metadata feature is enabled and registers are supported
7514 : : * we might create the extra rte_flow for each unique
7515 : : * MARK/FLAG action ID.
7516 : : *
7517 : : * The table is updated for ingress and transfer flows only, because
7518 : : * the egress Flows belong to the different device and
7519 : : * copy table should be updated in peer NIC Rx domain.
7520 : : */
7521 [ # # # # ]: 0 : if ((attr->ingress || attr->transfer) &&
7522 [ # # ]: 0 : (external || attr->group != MLX5_FLOW_MREG_CP_TABLE_GROUP)) {
7523 : 0 : ret = flow_mreg_update_copy_table(dev, flow, actions, error);
7524 [ # # ]: 0 : if (ret)
7525 : 0 : goto error;
7526 : : }
7527 : : /*
7528 : : * If the flow is external (from application) OR device is started,
7529 : : * OR mreg discover, then apply immediately.
7530 : : */
7531 [ # # # # ]: 0 : if (external || dev->data->dev_started ||
7532 [ # # ]: 0 : (attr->group == MLX5_FLOW_MREG_CP_TABLE_GROUP &&
7533 [ # # ]: 0 : attr->priority == MLX5_FLOW_LOWEST_PRIO_INDICATOR)) {
7534 : : ret = flow_drv_apply(dev, flow, error);
7535 [ # # ]: 0 : if (ret < 0)
7536 : 0 : goto error;
7537 : : }
7538 : 0 : flow->type = type;
7539 : 0 : flow_rxq_flags_set(dev, flow);
7540 : 0 : rte_free(translated_actions);
7541 : : tunnel = flow_tunnel_from_rule(wks->flows);
7542 [ # # ]: 0 : if (tunnel) {
7543 : 0 : flow->tunnel = 1;
7544 : 0 : flow->tunnel_id = tunnel->tunnel_id;
7545 : 0 : rte_atomic_fetch_add_explicit(&tunnel->refctn, 1, rte_memory_order_relaxed);
7546 : 0 : mlx5_free(default_miss_ctx.queue);
7547 : : }
7548 : 0 : mlx5_flow_pop_thread_workspace();
7549 : 0 : return idx;
7550 : 0 : error:
7551 : : MLX5_ASSERT(flow);
7552 : 0 : ret = rte_errno; /* Save rte_errno before cleanup. */
7553 : 0 : flow_mreg_del_copy_action(dev, flow);
7554 : : flow_drv_destroy(dev, flow);
7555 : :
7556 [ # # ]: 0 : if (rss_desc->shared_rss) {
7557 : : shared_rss_action = (struct mlx5_shared_action_rss *)
7558 : 0 : mlx5_ipool_get
7559 : 0 : (priv->sh->ipool[MLX5_IPOOL_RSS_SHARED_ACTIONS],
7560 : : rss_desc->shared_rss);
7561 [ # # ]: 0 : if (shared_rss_action)
7562 : 0 : rte_atomic_fetch_sub_explicit(&(shared_rss_action)->refcnt, 1,
7563 : : rte_memory_order_relaxed);
7564 : : }
7565 : 0 : mlx5_ipool_free(priv->flows[type], idx);
7566 : 0 : rte_errno = ret; /* Restore rte_errno. */
7567 : : ret = rte_errno;
7568 : : rte_errno = ret;
7569 : 0 : error_before_hairpin_split:
7570 : 0 : mlx5_flow_pop_thread_workspace();
7571 : 0 : rte_free(translated_actions);
7572 : 0 : return 0;
7573 : : }
7574 : :
7575 : : /**
7576 : : * Create a dedicated flow rule on e-switch table 0 (root table), to direct all
7577 : : * incoming packets to table 1.
7578 : : *
7579 : : * Other flow rules, requested for group n, will be created in
7580 : : * e-switch table n+1.
7581 : : * Jump action to e-switch group n will be created to group n+1.
7582 : : *
7583 : : * Used when working in switchdev mode, to utilise advantages of table 1
7584 : : * and above.
7585 : : *
7586 : : * @param dev
7587 : : * Pointer to Ethernet device.
7588 : : *
7589 : : * @return
7590 : : * Pointer to flow on success, NULL otherwise and rte_errno is set.
7591 : : */
7592 : : struct rte_flow *
7593 : 0 : mlx5_flow_create_esw_table_zero_flow(struct rte_eth_dev *dev)
7594 : : {
7595 : 0 : const struct rte_flow_attr attr = {
7596 : : .group = 0,
7597 : : .priority = 0,
7598 : : .ingress = 0,
7599 : : .egress = 0,
7600 : : .transfer = 1,
7601 : : };
7602 : 0 : const struct rte_flow_item pattern = {
7603 : : .type = RTE_FLOW_ITEM_TYPE_END,
7604 : : };
7605 : 0 : struct rte_flow_action_jump jump = {
7606 : : .group = 1,
7607 : : };
7608 : 0 : const struct rte_flow_action actions[] = {
7609 : : {
7610 : : .type = RTE_FLOW_ACTION_TYPE_JUMP,
7611 : : .conf = &jump,
7612 : : },
7613 : : {
7614 : : .type = RTE_FLOW_ACTION_TYPE_END,
7615 : : },
7616 : : };
7617 : : struct rte_flow_error error;
7618 : :
7619 : 0 : return (void *)(uintptr_t)mlx5_flow_list_create(dev, MLX5_FLOW_TYPE_CTL,
7620 : : &attr, &pattern,
7621 : : actions, false, &error);
7622 : : }
7623 : :
7624 : : /**
7625 : : * Create a dedicated flow rule on e-switch table 1, matches ESW manager
7626 : : * and sq number, directs all packets to peer vport.
7627 : : *
7628 : : * @param dev
7629 : : * Pointer to Ethernet device.
7630 : : * @param sq_num
7631 : : * SQ number.
7632 : : *
7633 : : * @return
7634 : : * Flow ID on success, 0 otherwise and rte_errno is set.
7635 : : */
7636 : : uint32_t
7637 : 0 : mlx5_flow_create_devx_sq_miss_flow(struct rte_eth_dev *dev, uint32_t sq_num)
7638 : : {
7639 : 0 : struct rte_flow_attr attr = {
7640 : : .group = 0,
7641 : : .priority = MLX5_FLOW_LOWEST_PRIO_INDICATOR,
7642 : : .ingress = 0,
7643 : : .egress = 0,
7644 : : .transfer = 1,
7645 : : };
7646 : 0 : struct rte_flow_item_port_id port_spec = {
7647 : : .id = MLX5_PORT_ESW_MGR,
7648 : : };
7649 : 0 : struct mlx5_rte_flow_item_sq sq_spec = {
7650 : : .queue = sq_num,
7651 : : };
7652 : 0 : struct rte_flow_item pattern[] = {
7653 : : {
7654 : : .type = RTE_FLOW_ITEM_TYPE_PORT_ID,
7655 : : .spec = &port_spec,
7656 : : },
7657 : : {
7658 : : .type = (enum rte_flow_item_type)
7659 : : MLX5_RTE_FLOW_ITEM_TYPE_SQ,
7660 : : .spec = &sq_spec,
7661 : : },
7662 : : {
7663 : : .type = RTE_FLOW_ITEM_TYPE_END,
7664 : : },
7665 : : };
7666 : 0 : struct rte_flow_action_jump jump = {
7667 : : .group = 1,
7668 : : };
7669 : 0 : struct rte_flow_action_port_id port = {
7670 : 0 : .id = dev->data->port_id,
7671 : : };
7672 : 0 : struct rte_flow_action actions[] = {
7673 : : {
7674 : : .type = RTE_FLOW_ACTION_TYPE_JUMP,
7675 : : .conf = &jump,
7676 : : },
7677 : : {
7678 : : .type = RTE_FLOW_ACTION_TYPE_END,
7679 : : },
7680 : : };
7681 : : struct rte_flow_error error;
7682 : :
7683 : : /*
7684 : : * Creates group 0, highest priority jump flow.
7685 : : * Matches txq to bypass kernel packets.
7686 : : */
7687 [ # # ]: 0 : if (mlx5_flow_list_create(dev, MLX5_FLOW_TYPE_CTL, &attr, pattern, actions,
7688 : : false, &error) == 0)
7689 : : return 0;
7690 : : /* Create group 1, lowest priority redirect flow for txq. */
7691 : 0 : attr.group = 1;
7692 : 0 : actions[0].conf = &port;
7693 : 0 : actions[0].type = RTE_FLOW_ACTION_TYPE_PORT_ID;
7694 : 0 : return mlx5_flow_list_create(dev, MLX5_FLOW_TYPE_CTL, &attr, pattern,
7695 : : actions, false, &error);
7696 : : }
7697 : :
7698 : : /**
7699 : : * Validate a flow supported by the NIC.
7700 : : *
7701 : : * @see rte_flow_validate()
7702 : : * @see rte_flow_ops
7703 : : */
7704 : : int
7705 : 0 : mlx5_flow_validate(struct rte_eth_dev *dev,
7706 : : const struct rte_flow_attr *attr,
7707 : : const struct rte_flow_item items[],
7708 : : const struct rte_flow_action original_actions[],
7709 : : struct rte_flow_error *error)
7710 : : {
7711 : : int hairpin_flow;
7712 : : struct mlx5_translated_action_handle
7713 : : indir_actions[MLX5_MAX_INDIRECT_ACTIONS];
7714 : 0 : int indir_actions_n = MLX5_MAX_INDIRECT_ACTIONS;
7715 : : const struct rte_flow_action *actions;
7716 : 0 : struct rte_flow_action *translated_actions = NULL;
7717 : 0 : int ret = flow_action_handles_translate(dev, original_actions,
7718 : : indir_actions,
7719 : : &indir_actions_n,
7720 : : &translated_actions, error);
7721 : :
7722 [ # # ]: 0 : if (ret)
7723 : : return ret;
7724 [ # # ]: 0 : actions = translated_actions ? translated_actions : original_actions;
7725 : 0 : hairpin_flow = flow_check_hairpin_split(dev, attr, actions);
7726 : 0 : ret = flow_drv_validate(dev, attr, items, actions,
7727 : : true, hairpin_flow, error);
7728 : 0 : rte_free(translated_actions);
7729 : 0 : return ret;
7730 : : }
7731 : :
7732 : : static int
7733 : 0 : mlx5_flow_cache_flow_info(struct rte_eth_dev *dev,
7734 : : const struct rte_flow_attr *attr,
7735 : : const uint32_t orig_prio,
7736 : : const struct rte_flow_item *items,
7737 : : const struct rte_flow_action *actions,
7738 : : uint32_t flow_idx)
7739 : : {
7740 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
7741 : : struct rte_pmd_mlx5_flow_engine_mode_info *mode_info = &priv->mode_info;
7742 : : struct mlx5_dv_flow_info *flow_info, *tmp_info;
7743 : : struct rte_flow_error error;
7744 : : int len, ret;
7745 : :
7746 : 0 : flow_info = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*flow_info), 0, SOCKET_ID_ANY);
7747 [ # # ]: 0 : if (!flow_info) {
7748 : 0 : DRV_LOG(ERR, "No enough memory for flow_info caching.");
7749 : 0 : return -1;
7750 : : }
7751 : 0 : flow_info->orig_prio = orig_prio;
7752 : 0 : flow_info->attr = *attr;
7753 : : /* Standby mode rule awlays saves it in low priority entry. */
7754 : 0 : flow_info->flow_idx_low_prio = flow_idx;
7755 : :
7756 : : /* Store matching items. */
7757 : 0 : ret = rte_flow_conv(RTE_FLOW_CONV_OP_PATTERN, NULL, 0, items, &error);
7758 [ # # ]: 0 : if (ret <= 0) {
7759 : 0 : DRV_LOG(ERR, "Can't get items length.");
7760 : 0 : goto end;
7761 : : }
7762 : 0 : len = RTE_ALIGN(ret, 16);
7763 : 0 : flow_info->items = mlx5_malloc(MLX5_MEM_ZERO, len, 0, SOCKET_ID_ANY);
7764 [ # # ]: 0 : if (!flow_info->items) {
7765 : 0 : DRV_LOG(ERR, "No enough memory for items caching.");
7766 : 0 : goto end;
7767 : : }
7768 : 0 : ret = rte_flow_conv(RTE_FLOW_CONV_OP_PATTERN, flow_info->items, ret, items, &error);
7769 [ # # ]: 0 : if (ret <= 0) {
7770 : 0 : DRV_LOG(ERR, "Can't duplicate items.");
7771 : 0 : goto end;
7772 : : }
7773 : :
7774 : : /* Store flow actions. */
7775 : 0 : ret = rte_flow_conv(RTE_FLOW_CONV_OP_ACTIONS, NULL, 0, actions, &error);
7776 [ # # ]: 0 : if (ret <= 0) {
7777 : 0 : DRV_LOG(ERR, "Can't get actions length.");
7778 : 0 : goto end;
7779 : : }
7780 : 0 : len = RTE_ALIGN(ret, 16);
7781 : 0 : flow_info->actions = mlx5_malloc(MLX5_MEM_ZERO, len, 0, SOCKET_ID_ANY);
7782 [ # # ]: 0 : if (!flow_info->actions) {
7783 : 0 : DRV_LOG(ERR, "No enough memory for actions caching.");
7784 : 0 : goto end;
7785 : : }
7786 : 0 : ret = rte_flow_conv(RTE_FLOW_CONV_OP_ACTIONS, flow_info->actions, ret, actions, &error);
7787 [ # # ]: 0 : if (ret <= 0) {
7788 : 0 : DRV_LOG(ERR, "Can't duplicate actions.");
7789 : 0 : goto end;
7790 : : }
7791 : :
7792 : : /* Insert to the list end. */
7793 [ # # ]: 0 : if (LIST_EMPTY(&mode_info->hot_upgrade)) {
7794 : 0 : LIST_INSERT_HEAD(&mode_info->hot_upgrade, flow_info, next);
7795 : : } else {
7796 : : tmp_info = LIST_FIRST(&mode_info->hot_upgrade);
7797 [ # # ]: 0 : while (LIST_NEXT(tmp_info, next))
7798 : : tmp_info = LIST_NEXT(tmp_info, next);
7799 : 0 : LIST_INSERT_AFTER(tmp_info, flow_info, next);
7800 : : }
7801 : : return 0;
7802 : 0 : end:
7803 [ # # ]: 0 : if (flow_info->items)
7804 : 0 : mlx5_free(flow_info->items);
7805 [ # # ]: 0 : if (flow_info->actions)
7806 : 0 : mlx5_free(flow_info->actions);
7807 : 0 : mlx5_free(flow_info);
7808 : 0 : return -1;
7809 : : }
7810 : :
7811 : : static int
7812 : 0 : mlx5_flow_cache_flow_toggle(struct rte_eth_dev *dev, bool orig_prio)
7813 : : {
7814 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
7815 : : struct rte_pmd_mlx5_flow_engine_mode_info *mode_info = &priv->mode_info;
7816 : : struct mlx5_dv_flow_info *flow_info;
7817 : : struct rte_flow_attr attr;
7818 : : struct rte_flow_error error;
7819 : : struct rte_flow *high, *low;
7820 : :
7821 : 0 : flow_info = LIST_FIRST(&mode_info->hot_upgrade);
7822 [ # # ]: 0 : while (flow_info) {
7823 : : /* DUP flow may have the same priority. */
7824 [ # # ]: 0 : if (flow_info->orig_prio != flow_info->attr.priority) {
7825 : 0 : attr = flow_info->attr;
7826 [ # # ]: 0 : if (orig_prio)
7827 : 0 : attr.priority = flow_info->orig_prio;
7828 : 0 : flow_info->flow_idx_high_prio = mlx5_flow_list_create(dev,
7829 : : MLX5_FLOW_TYPE_GEN, &attr,
7830 : 0 : flow_info->items, flow_info->actions,
7831 : : true, &error);
7832 [ # # ]: 0 : if (!flow_info->flow_idx_high_prio) {
7833 : 0 : DRV_LOG(ERR, "Priority toggle failed internally.");
7834 : 0 : goto err;
7835 : : }
7836 : : }
7837 : 0 : flow_info = LIST_NEXT(flow_info, next);
7838 : : }
7839 : : /* Delete the low priority rules and swap the flow handle. */
7840 : 0 : flow_info = LIST_FIRST(&mode_info->hot_upgrade);
7841 [ # # ]: 0 : while (flow_info) {
7842 : : MLX5_ASSERT(flow_info->flow_idx_low_prio);
7843 [ # # ]: 0 : if (flow_info->orig_prio != flow_info->attr.priority) {
7844 : 0 : high = mlx5_ipool_get(priv->flows[MLX5_FLOW_TYPE_GEN],
7845 : : flow_info->flow_idx_high_prio);
7846 : 0 : low = mlx5_ipool_get(priv->flows[MLX5_FLOW_TYPE_GEN],
7847 : : flow_info->flow_idx_low_prio);
7848 [ # # ]: 0 : if (high && low) {
7849 : 0 : RTE_SWAP(*low, *high);
7850 : 0 : mlx5_flow_list_destroy(dev, MLX5_FLOW_TYPE_GEN,
7851 : 0 : flow_info->flow_idx_low_prio);
7852 : 0 : flow_info->flow_idx_high_prio = 0;
7853 : : }
7854 : : }
7855 : 0 : flow_info = LIST_NEXT(flow_info, next);
7856 : : }
7857 : : return 0;
7858 : : err:
7859 : : /* Destroy preceding successful high priority rules. */
7860 : 0 : flow_info = LIST_FIRST(&mode_info->hot_upgrade);
7861 [ # # ]: 0 : while (flow_info) {
7862 [ # # ]: 0 : if (flow_info->orig_prio != flow_info->attr.priority) {
7863 [ # # ]: 0 : if (flow_info->flow_idx_high_prio)
7864 : 0 : mlx5_flow_list_destroy(dev, MLX5_FLOW_TYPE_GEN,
7865 : : flow_info->flow_idx_high_prio);
7866 : : else
7867 : : break;
7868 : 0 : flow_info->flow_idx_high_prio = 0;
7869 : : }
7870 : 0 : flow_info = LIST_NEXT(flow_info, next);
7871 : : }
7872 : : return -1;
7873 : : }
7874 : :
7875 : : /**
7876 : : * Set the mode of the flow engine of a process to active or standby during live migration.
7877 : : *
7878 : : * @param[in] mode
7879 : : * MLX5 flow engine mode, @see `enum rte_pmd_mlx5_flow_engine_mode`.
7880 : : * @param[in] flags
7881 : : * Flow engine mode specific flags.
7882 : : *
7883 : : * @return
7884 : : * Negative value on error, positive on success.
7885 : : */
7886 : : int
7887 : 0 : rte_pmd_mlx5_flow_engine_set_mode(enum rte_pmd_mlx5_flow_engine_mode mode, uint32_t flags)
7888 : : {
7889 : : struct mlx5_priv *priv;
7890 : : struct rte_pmd_mlx5_flow_engine_mode_info *mode_info;
7891 : : struct mlx5_dv_flow_info *flow_info, *tmp_info;
7892 : : uint16_t port, port_id;
7893 : : uint16_t toggle_num = 0;
7894 : : struct rte_eth_dev *dev;
7895 : : enum rte_pmd_mlx5_flow_engine_mode orig_mode;
7896 : : uint32_t orig_flags;
7897 : : bool need_toggle = false;
7898 : :
7899 : : /* Check if flags combinations are supported. */
7900 [ # # ]: 0 : if (flags && flags != RTE_PMD_MLX5_FLOW_ENGINE_FLAG_STANDBY_DUP_INGRESS) {
7901 : 0 : DRV_LOG(ERR, "Doesn't support such flags %u", flags);
7902 : 0 : return -1;
7903 : : }
7904 [ # # ]: 0 : MLX5_ETH_FOREACH_DEV(port, NULL) {
7905 : 0 : dev = &rte_eth_devices[port];
7906 : 0 : priv = dev->data->dev_private;
7907 : : mode_info = &priv->mode_info;
7908 : : /* No mode change. Assume all devices hold the same mode. */
7909 [ # # ]: 0 : if (mode_info->mode == mode) {
7910 : 0 : DRV_LOG(INFO, "Process flow engine has been in mode %u", mode);
7911 [ # # # # ]: 0 : if (mode_info->mode_flag != flags && !LIST_EMPTY(&mode_info->hot_upgrade)) {
7912 : 0 : DRV_LOG(ERR, "Port %u has rule cache with different flag %u\n",
7913 : : port, mode_info->mode_flag);
7914 : 0 : orig_mode = mode_info->mode;
7915 : 0 : orig_flags = mode_info->mode_flag;
7916 : 0 : goto err;
7917 : : }
7918 : 0 : mode_info->mode_flag = flags;
7919 : 0 : toggle_num++;
7920 : 0 : continue;
7921 : : }
7922 : : /* Active -> standby. */
7923 [ # # ]: 0 : if (mode == RTE_PMD_MLX5_FLOW_ENGINE_MODE_STANDBY) {
7924 [ # # ]: 0 : if (!LIST_EMPTY(&mode_info->hot_upgrade)) {
7925 : 0 : DRV_LOG(ERR, "Cached rule existed");
7926 : 0 : orig_mode = mode_info->mode;
7927 : 0 : orig_flags = mode_info->mode_flag;
7928 : 0 : goto err;
7929 : : }
7930 : 0 : mode_info->mode_flag = flags;
7931 : 0 : mode_info->mode = mode;
7932 : 0 : toggle_num++;
7933 : : /* Standby -> active. */
7934 [ # # ]: 0 : } else if (mode == RTE_PMD_MLX5_FLOW_ENGINE_MODE_ACTIVE) {
7935 [ # # ]: 0 : if (LIST_EMPTY(&mode_info->hot_upgrade)) {
7936 : 0 : DRV_LOG(INFO, "No cached rule existed");
7937 : : } else {
7938 [ # # ]: 0 : if (mlx5_flow_cache_flow_toggle(dev, true)) {
7939 : 0 : orig_mode = mode_info->mode;
7940 : 0 : orig_flags = mode_info->mode_flag;
7941 : : need_toggle = true;
7942 : 0 : goto err;
7943 : : }
7944 : : }
7945 : 0 : toggle_num++;
7946 : : }
7947 : : }
7948 [ # # ]: 0 : if (mode == RTE_PMD_MLX5_FLOW_ENGINE_MODE_ACTIVE) {
7949 : : /* Clear cache flow rules. */
7950 [ # # ]: 0 : MLX5_ETH_FOREACH_DEV(port, NULL) {
7951 : 0 : priv = rte_eth_devices[port].data->dev_private;
7952 : : mode_info = &priv->mode_info;
7953 : 0 : flow_info = LIST_FIRST(&mode_info->hot_upgrade);
7954 [ # # ]: 0 : while (flow_info) {
7955 : 0 : tmp_info = LIST_NEXT(flow_info, next);
7956 [ # # ]: 0 : LIST_REMOVE(flow_info, next);
7957 : 0 : mlx5_free(flow_info->actions);
7958 : 0 : mlx5_free(flow_info->items);
7959 : 0 : mlx5_free(flow_info);
7960 : : flow_info = tmp_info;
7961 : : }
7962 : : MLX5_ASSERT(LIST_EMPTY(&mode_info->hot_upgrade));
7963 : : }
7964 : : }
7965 : 0 : return toggle_num;
7966 : 0 : err:
7967 : : /* Rollback all preceding successful ports. */
7968 [ # # ]: 0 : MLX5_ETH_FOREACH_DEV(port_id, NULL) {
7969 [ # # ]: 0 : if (port_id == port)
7970 : : break;
7971 : 0 : priv = rte_eth_devices[port_id].data->dev_private;
7972 : : mode_info = &priv->mode_info;
7973 [ # # # # : 0 : if (need_toggle && !LIST_EMPTY(&mode_info->hot_upgrade) &&
# # ]
7974 : 0 : mlx5_flow_cache_flow_toggle(dev, false))
7975 : : return -EPERM;
7976 : 0 : mode_info->mode = orig_mode;
7977 : 0 : mode_info->mode_flag = orig_flags;
7978 : : }
7979 : : return -EINVAL;
7980 : : }
7981 : : /**
7982 : : * Create a flow.
7983 : : *
7984 : : * @see rte_flow_create()
7985 : : * @see rte_flow_ops
7986 : : */
7987 : : struct rte_flow *
7988 : 0 : mlx5_flow_create(struct rte_eth_dev *dev,
7989 : : const struct rte_flow_attr *attr,
7990 : : const struct rte_flow_item items[],
7991 : : const struct rte_flow_action actions[],
7992 : : struct rte_flow_error *error)
7993 : : {
7994 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
7995 : : struct rte_flow_attr *new_attr = (void *)(uintptr_t)attr;
7996 : 0 : uint32_t prio = attr->priority;
7997 : : uintptr_t flow_idx;
7998 : :
7999 : : /*
8000 : : * If the device is not started yet, it is not allowed to created a
8001 : : * flow from application. PMD default flows and traffic control flows
8002 : : * are not affected.
8003 : : */
8004 [ # # ]: 0 : if (unlikely(!dev->data->dev_started)) {
8005 : 0 : DRV_LOG(DEBUG, "port %u is not started when "
8006 : : "inserting a flow", dev->data->port_id);
8007 : 0 : rte_flow_error_set(error, ENODEV,
8008 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
8009 : : NULL,
8010 : : "port not started");
8011 : 0 : return NULL;
8012 : : }
8013 [ # # ]: 0 : if (unlikely(mlx5_need_cache_flow(priv, attr))) {
8014 [ # # ]: 0 : if (attr->transfer ||
8015 [ # # # # ]: 0 : (attr->ingress && !(priv->mode_info.mode_flag &
8016 : : RTE_PMD_MLX5_FLOW_ENGINE_FLAG_STANDBY_DUP_INGRESS)))
8017 : 0 : new_attr->priority += 1;
8018 : : }
8019 : 0 : flow_idx = mlx5_flow_list_create(dev, MLX5_FLOW_TYPE_GEN, attr, items, actions,
8020 : : true, error);
8021 [ # # ]: 0 : if (!flow_idx)
8022 : : return NULL;
8023 [ # # ]: 0 : if (unlikely(mlx5_need_cache_flow(priv, attr))) {
8024 [ # # ]: 0 : if (mlx5_flow_cache_flow_info(dev, attr, prio, items, actions, flow_idx)) {
8025 : 0 : mlx5_flow_list_destroy(dev, MLX5_FLOW_TYPE_GEN, flow_idx);
8026 : : flow_idx = 0;
8027 : : }
8028 : : }
8029 : 0 : return (void *)(uintptr_t)flow_idx;
8030 : : }
8031 : :
8032 : : uintptr_t
8033 : 0 : mlx5_flow_list_create(struct rte_eth_dev *dev, enum mlx5_flow_type type,
8034 : : const struct rte_flow_attr *attr,
8035 : : const struct rte_flow_item items[],
8036 : : const struct rte_flow_action actions[],
8037 : : bool external, struct rte_flow_error *error)
8038 : : {
8039 : : const struct mlx5_flow_driver_ops *fops;
8040 : 0 : enum mlx5_flow_drv_type drv_type = flow_get_drv_type(dev, attr);
8041 : :
8042 : 0 : fops = flow_get_drv_ops(drv_type);
8043 : 0 : return fops->list_create(dev, type, attr, items, actions, external,
8044 : : error);
8045 : : }
8046 : :
8047 : : /**
8048 : : * Destroy a flow in a list.
8049 : : *
8050 : : * @param dev
8051 : : * Pointer to Ethernet device.
8052 : : * @param[in] flow_idx
8053 : : * Index of flow to destroy.
8054 : : */
8055 : : void
8056 : 0 : flow_legacy_list_destroy(struct rte_eth_dev *dev, enum mlx5_flow_type type,
8057 : : uintptr_t flow_idx)
8058 : : {
8059 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
8060 : 0 : struct rte_flow *flow = mlx5_ipool_get(priv->flows[type], (uint32_t)flow_idx);
8061 : :
8062 [ # # ]: 0 : if (!flow)
8063 : : return;
8064 : : MLX5_ASSERT((type >= MLX5_FLOW_TYPE_CTL) && (type < MLX5_FLOW_TYPE_MAXI));
8065 : : MLX5_ASSERT(flow->type == type);
8066 : : /*
8067 : : * Update RX queue flags only if port is started, otherwise it is
8068 : : * already clean.
8069 : : */
8070 [ # # ]: 0 : if (dev->data->dev_started)
8071 : 0 : flow_rxq_flags_trim(dev, flow);
8072 : : flow_drv_destroy(dev, flow);
8073 [ # # ]: 0 : if (flow->tunnel) {
8074 : : struct mlx5_flow_tunnel *tunnel;
8075 : :
8076 : 0 : tunnel = mlx5_find_tunnel_id(dev, flow->tunnel_id);
8077 : 0 : RTE_VERIFY(tunnel);
8078 [ # # ]: 0 : if (!(rte_atomic_fetch_sub_explicit(&tunnel->refctn, 1,
8079 : : rte_memory_order_relaxed) - 1))
8080 : 0 : mlx5_flow_tunnel_free(dev, tunnel);
8081 : : }
8082 : 0 : flow_mreg_del_copy_action(dev, flow);
8083 : 0 : mlx5_ipool_free(priv->flows[type], flow_idx);
8084 : : }
8085 : :
8086 : : void
8087 [ # # ]: 0 : mlx5_flow_list_destroy(struct rte_eth_dev *dev, enum mlx5_flow_type type,
8088 : : uintptr_t flow_idx)
8089 : : {
8090 : : const struct mlx5_flow_driver_ops *fops;
8091 : : struct rte_flow_attr attr = { .transfer = 0 };
8092 : : enum mlx5_flow_drv_type drv_type = flow_get_drv_type(dev, &attr);
8093 : :
8094 : 0 : fops = flow_get_drv_ops(drv_type);
8095 : 0 : fops->list_destroy(dev, type, flow_idx);
8096 : 0 : }
8097 : :
8098 : : /**
8099 : : * Destroy all flows.
8100 : : *
8101 : : * @param dev
8102 : : * Pointer to Ethernet device.
8103 : : * @param type
8104 : : * Flow type to be flushed.
8105 : : * @param active
8106 : : * If flushing is called actively.
8107 : : */
8108 : : void
8109 : 0 : mlx5_flow_list_flush(struct rte_eth_dev *dev, enum mlx5_flow_type type,
8110 : : bool active)
8111 : : {
8112 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
8113 : 0 : uint32_t num_flushed = 0, fidx = 1;
8114 : : struct rte_flow *flow;
8115 : : struct rte_pmd_mlx5_flow_engine_mode_info *mode_info = &priv->mode_info;
8116 : : struct mlx5_dv_flow_info *flow_info;
8117 : :
8118 : : #ifdef HAVE_IBV_FLOW_DV_SUPPORT
8119 [ # # # # ]: 0 : if (priv->sh->config.dv_flow_en == 2 &&
8120 : : type == MLX5_FLOW_TYPE_GEN) {
8121 : 0 : priv->hws_rule_flushing = true;
8122 : 0 : flow_hw_q_flow_flush(dev, NULL);
8123 : 0 : priv->hws_rule_flushing = false;
8124 : 0 : return;
8125 : : }
8126 : : #endif
8127 [ # # ]: 0 : MLX5_IPOOL_FOREACH(priv->flows[type], fidx, flow) {
8128 [ # # ]: 0 : if (priv->sh->config.dv_flow_en == 2) {
8129 : 0 : mlx5_flow_list_destroy(dev, type, (uintptr_t)flow);
8130 : : } else {
8131 : 0 : mlx5_flow_list_destroy(dev, type, fidx);
8132 : : }
8133 [ # # # # ]: 0 : if (unlikely(mlx5_need_cache_flow(priv, NULL) && type == MLX5_FLOW_TYPE_GEN)) {
8134 : 0 : flow_info = LIST_FIRST(&mode_info->hot_upgrade);
8135 [ # # ]: 0 : while (flow_info) {
8136 : : /* Romove the cache flow info. */
8137 [ # # ]: 0 : if (flow_info->flow_idx_low_prio == (uint32_t)(uintptr_t)fidx) {
8138 : : MLX5_ASSERT(!flow_info->flow_idx_high_prio);
8139 [ # # ]: 0 : LIST_REMOVE(flow_info, next);
8140 : 0 : mlx5_free(flow_info->items);
8141 : 0 : mlx5_free(flow_info->actions);
8142 : 0 : mlx5_free(flow_info);
8143 : 0 : break;
8144 : : }
8145 : 0 : flow_info = LIST_NEXT(flow_info, next);
8146 : : }
8147 : : }
8148 : 0 : num_flushed++;
8149 : : }
8150 [ # # ]: 0 : if (active) {
8151 : 0 : DRV_LOG(INFO, "port %u: %u flows flushed before stopping",
8152 : : dev->data->port_id, num_flushed);
8153 : : }
8154 : : }
8155 : :
8156 : : /**
8157 : : * Stop all default actions for flows.
8158 : : *
8159 : : * @param dev
8160 : : * Pointer to Ethernet device.
8161 : : */
8162 : : void
8163 : 0 : mlx5_flow_stop_default(struct rte_eth_dev *dev)
8164 : : {
8165 : : #ifdef HAVE_MLX5_HWS_SUPPORT
8166 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
8167 : :
8168 [ # # ]: 0 : if (priv->sh->config.dv_flow_en == 2) {
8169 : 0 : mlx5_flow_nta_del_default_copy_action(dev);
8170 [ # # ]: 0 : if (!rte_atomic_load_explicit(&priv->hws_mark_refcnt,
8171 : : rte_memory_order_relaxed))
8172 : 0 : flow_hw_rxq_flag_set(dev, false);
8173 : 0 : return;
8174 : : }
8175 : : #endif
8176 : 0 : flow_mreg_del_default_copy_action(dev);
8177 : 0 : flow_rxq_flags_clear(dev);
8178 : : }
8179 : :
8180 : : /**
8181 : : * Set rxq flag.
8182 : : *
8183 : : * @param[in] dev
8184 : : * Pointer to the rte_eth_dev structure.
8185 : : * @param[in] enable
8186 : : * Flag to enable or not.
8187 : : */
8188 : : void
8189 : 0 : flow_hw_rxq_flag_set(struct rte_eth_dev *dev, bool enable)
8190 : : {
8191 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
8192 : : unsigned int i;
8193 : :
8194 [ # # # # : 0 : if ((!priv->mark_enabled && !enable) ||
# # ]
8195 [ # # ]: 0 : (priv->mark_enabled && enable))
8196 : : return;
8197 [ # # ]: 0 : for (i = 0; i < priv->rxqs_n; ++i) {
8198 : 0 : struct mlx5_rxq_ctrl *rxq_ctrl = mlx5_rxq_ctrl_get(dev, i);
8199 : :
8200 : : /* With RXQ start/stop feature, RXQ might be stopped. */
8201 [ # # ]: 0 : if (!rxq_ctrl)
8202 : 0 : continue;
8203 : 0 : rxq_ctrl->rxq.mark = enable;
8204 : : }
8205 : 0 : priv->mark_enabled = enable;
8206 : : }
8207 : :
8208 : : /**
8209 : : * Start all default actions for flows.
8210 : : *
8211 : : * @param dev
8212 : : * Pointer to Ethernet device.
8213 : : * @return
8214 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
8215 : : */
8216 : : int
8217 : 0 : mlx5_flow_start_default(struct rte_eth_dev *dev)
8218 : : {
8219 : : struct rte_flow_error error;
8220 : : #ifdef HAVE_MLX5_HWS_SUPPORT
8221 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
8222 : :
8223 [ # # ]: 0 : if (priv->sh->config.dv_flow_en == 2)
8224 : 0 : return mlx5_flow_nta_add_default_copy_action(dev, &error);
8225 : : #endif
8226 : : /* Make sure default copy action (reg_c[0] -> reg_b) is created. */
8227 : 0 : return flow_mreg_add_default_copy_action(dev, &error);
8228 : : }
8229 : :
8230 : : /**
8231 : : * Release key of thread specific flow workspace data.
8232 : : */
8233 : : void
8234 : 0 : flow_release_workspace(void *data)
8235 : : {
8236 : : struct mlx5_flow_workspace *wks = data;
8237 : : struct mlx5_flow_workspace *next;
8238 : :
8239 [ # # ]: 0 : while (wks) {
8240 : 0 : next = wks->next;
8241 : 0 : free(wks);
8242 : : wks = next;
8243 : : }
8244 : 0 : }
8245 : :
8246 : : /**
8247 : : * Get thread specific current flow workspace.
8248 : : *
8249 : : * @return pointer to thread specific flow workspace data, NULL on error.
8250 : : */
8251 : : struct mlx5_flow_workspace*
8252 : 0 : mlx5_flow_get_thread_workspace(void)
8253 : : {
8254 : : struct mlx5_flow_workspace *data;
8255 : :
8256 : 0 : data = mlx5_flow_os_get_specific_workspace();
8257 : : MLX5_ASSERT(data && data->inuse);
8258 [ # # # # ]: 0 : if (!data || !data->inuse)
8259 : 0 : DRV_LOG(ERR, "flow workspace not initialized.");
8260 : 0 : return data;
8261 : : }
8262 : :
8263 : : /**
8264 : : * Allocate and init new flow workspace.
8265 : : *
8266 : : * @return pointer to flow workspace data, NULL on error.
8267 : : */
8268 : : static struct mlx5_flow_workspace*
8269 : 0 : flow_alloc_thread_workspace(void)
8270 : : {
8271 : : size_t data_size = RTE_ALIGN(sizeof(struct mlx5_flow_workspace), sizeof(long));
8272 : : size_t rss_queue_array_size = sizeof(uint16_t) * RTE_ETH_RSS_RETA_SIZE_512;
8273 : 0 : struct mlx5_flow_workspace *data = calloc(1, data_size +
8274 : : rss_queue_array_size);
8275 : :
8276 [ # # ]: 0 : if (!data) {
8277 : 0 : DRV_LOG(ERR, "Failed to allocate flow workspace memory.");
8278 : 0 : return NULL;
8279 : : }
8280 : 0 : data->rss_desc.queue = RTE_PTR_ADD(data, data_size);
8281 : 0 : return data;
8282 : : }
8283 : :
8284 : : /**
8285 : : * Get new thread specific flow workspace.
8286 : : *
8287 : : * If current workspace inuse, create new one and set as current.
8288 : : *
8289 : : * @return pointer to thread specific flow workspace data, NULL on error.
8290 : : */
8291 : : struct mlx5_flow_workspace*
8292 : 0 : mlx5_flow_push_thread_workspace(void)
8293 : : {
8294 : : struct mlx5_flow_workspace *curr;
8295 : : struct mlx5_flow_workspace *data;
8296 : :
8297 : 0 : curr = mlx5_flow_os_get_specific_workspace();
8298 [ # # ]: 0 : if (!curr) {
8299 : 0 : data = flow_alloc_thread_workspace();
8300 [ # # ]: 0 : if (!data)
8301 : : return NULL;
8302 : 0 : mlx5_flow_os_workspace_gc_add(data);
8303 [ # # ]: 0 : } else if (!curr->inuse) {
8304 : : data = curr;
8305 [ # # ]: 0 : } else if (curr->next) {
8306 : : data = curr->next;
8307 : : } else {
8308 : 0 : data = flow_alloc_thread_workspace();
8309 [ # # ]: 0 : if (!data)
8310 : : return NULL;
8311 : 0 : curr->next = data;
8312 : 0 : data->prev = curr;
8313 : : }
8314 : 0 : data->inuse = 1;
8315 : 0 : data->flow_idx = 0;
8316 : : /* Set as current workspace */
8317 [ # # ]: 0 : if (mlx5_flow_os_set_specific_workspace(data))
8318 : 0 : DRV_LOG(ERR, "Failed to set flow workspace to thread.");
8319 : : return data;
8320 : : }
8321 : :
8322 : : /**
8323 : : * Close current thread specific flow workspace.
8324 : : *
8325 : : * If previous workspace available, set it as current.
8326 : : *
8327 : : * @return pointer to thread specific flow workspace data, NULL on error.
8328 : : */
8329 : : void
8330 : 0 : mlx5_flow_pop_thread_workspace(void)
8331 : : {
8332 : 0 : struct mlx5_flow_workspace *data = mlx5_flow_get_thread_workspace();
8333 : :
8334 [ # # ]: 0 : if (!data)
8335 : : return;
8336 [ # # ]: 0 : if (!data->inuse) {
8337 : 0 : DRV_LOG(ERR, "Failed to close unused flow workspace.");
8338 : 0 : return;
8339 : : }
8340 : 0 : data->inuse = 0;
8341 [ # # ]: 0 : if (!data->prev)
8342 : : return;
8343 [ # # ]: 0 : if (mlx5_flow_os_set_specific_workspace(data->prev))
8344 : 0 : DRV_LOG(ERR, "Failed to set flow workspace to thread.");
8345 : : }
8346 : :
8347 : : /**
8348 : : * Verify the flow list is empty
8349 : : *
8350 : : * @param dev
8351 : : * Pointer to Ethernet device.
8352 : : *
8353 : : * @return the number of flows not released.
8354 : : */
8355 : : int
8356 : 0 : mlx5_flow_verify(struct rte_eth_dev *dev __rte_unused)
8357 : : {
8358 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
8359 : : struct rte_flow *flow;
8360 : : uint32_t idx = 0;
8361 : : int ret = 0, i;
8362 : :
8363 [ # # ]: 0 : for (i = 0; i < MLX5_FLOW_TYPE_MAXI; i++) {
8364 [ # # ]: 0 : MLX5_IPOOL_FOREACH(priv->flows[i], idx, flow) {
8365 : 0 : DRV_LOG(DEBUG, "port %u flow %p still referenced",
8366 : : dev->data->port_id, (void *)flow);
8367 : 0 : ret++;
8368 : : }
8369 : : }
8370 : 0 : return ret;
8371 : : }
8372 : :
8373 : : /**
8374 : : * Enable default hairpin egress flow.
8375 : : *
8376 : : * @param dev
8377 : : * Pointer to Ethernet device.
8378 : : * @param sq_num
8379 : : * The SQ hw number.
8380 : : *
8381 : : * @return
8382 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
8383 : : */
8384 : : int
8385 : 0 : mlx5_ctrl_flow_source_queue(struct rte_eth_dev *dev,
8386 : : uint32_t sq_num)
8387 : : {
8388 : 0 : const struct rte_flow_attr attr = {
8389 : : .egress = 1,
8390 : : .priority = 0,
8391 : : };
8392 : 0 : struct mlx5_rte_flow_item_sq queue_spec = {
8393 : : .queue = sq_num,
8394 : : };
8395 : 0 : struct mlx5_rte_flow_item_sq queue_mask = {
8396 : : .queue = UINT32_MAX,
8397 : : };
8398 : 0 : struct rte_flow_item items[] = {
8399 : : {
8400 : : .type = (enum rte_flow_item_type)
8401 : : MLX5_RTE_FLOW_ITEM_TYPE_SQ,
8402 : : .spec = &queue_spec,
8403 : : .last = NULL,
8404 : : .mask = &queue_mask,
8405 : : },
8406 : : {
8407 : : .type = RTE_FLOW_ITEM_TYPE_END,
8408 : : },
8409 : : };
8410 : 0 : struct rte_flow_action_jump jump = {
8411 : : .group = MLX5_HAIRPIN_TX_TABLE,
8412 : : };
8413 : : struct rte_flow_action actions[2];
8414 : : uint32_t flow_idx;
8415 : : struct rte_flow_error error;
8416 : :
8417 : 0 : actions[0].type = RTE_FLOW_ACTION_TYPE_JUMP;
8418 : 0 : actions[0].conf = &jump;
8419 : 0 : actions[1].type = RTE_FLOW_ACTION_TYPE_END;
8420 : 0 : flow_idx = mlx5_flow_list_create(dev, MLX5_FLOW_TYPE_CTL,
8421 : : &attr, items, actions, false, &error);
8422 [ # # ]: 0 : if (!flow_idx) {
8423 [ # # ]: 0 : DRV_LOG(DEBUG,
8424 : : "Failed to create ctrl flow: rte_errno(%d),"
8425 : : " type(%d), message(%s)",
8426 : : rte_errno, error.type,
8427 : : error.message ? error.message : " (no stated reason)");
8428 : 0 : return -rte_errno;
8429 : : }
8430 : : return 0;
8431 : : }
8432 : :
8433 : : /**
8434 : : * Enable a control flow configured from the control plane.
8435 : : *
8436 : : * @param dev
8437 : : * Pointer to Ethernet device.
8438 : : * @param eth_spec
8439 : : * An Ethernet flow spec to apply.
8440 : : * @param eth_mask
8441 : : * An Ethernet flow mask to apply.
8442 : : * @param vlan_spec
8443 : : * A VLAN flow spec to apply.
8444 : : * @param vlan_mask
8445 : : * A VLAN flow mask to apply.
8446 : : *
8447 : : * @return
8448 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
8449 : : */
8450 : : int
8451 : 0 : mlx5_ctrl_flow_vlan(struct rte_eth_dev *dev,
8452 : : struct rte_flow_item_eth *eth_spec,
8453 : : struct rte_flow_item_eth *eth_mask,
8454 : : struct rte_flow_item_vlan *vlan_spec,
8455 : : struct rte_flow_item_vlan *vlan_mask)
8456 : 0 : {
8457 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
8458 : 0 : const struct rte_flow_attr attr = {
8459 : : .ingress = 1,
8460 : : .priority = MLX5_FLOW_LOWEST_PRIO_INDICATOR,
8461 : : };
8462 : 0 : struct rte_flow_item items[] = {
8463 : : {
8464 : : .type = RTE_FLOW_ITEM_TYPE_ETH,
8465 : : .spec = eth_spec,
8466 : : .last = NULL,
8467 : : .mask = eth_mask,
8468 : : },
8469 : : {
8470 [ # # ]: 0 : .type = (vlan_spec) ? RTE_FLOW_ITEM_TYPE_VLAN :
8471 : : RTE_FLOW_ITEM_TYPE_END,
8472 : : .spec = vlan_spec,
8473 : : .last = NULL,
8474 : : .mask = vlan_mask,
8475 : : },
8476 : : {
8477 : : .type = RTE_FLOW_ITEM_TYPE_END,
8478 : : },
8479 : : };
8480 : 0 : uint16_t queue[priv->reta_idx_n];
8481 : 0 : struct rte_flow_action_rss action_rss = {
8482 : : .func = RTE_ETH_HASH_FUNCTION_DEFAULT,
8483 : : .level = 0,
8484 : 0 : .types = priv->rss_conf.rss_hf,
8485 : 0 : .key_len = priv->rss_conf.rss_key_len,
8486 : : .queue_num = priv->reta_idx_n,
8487 : 0 : .key = priv->rss_conf.rss_key,
8488 : : .queue = queue,
8489 : : };
8490 : 0 : struct rte_flow_action actions[] = {
8491 : : {
8492 : : .type = RTE_FLOW_ACTION_TYPE_RSS,
8493 : : .conf = &action_rss,
8494 : : },
8495 : : {
8496 : : .type = RTE_FLOW_ACTION_TYPE_END,
8497 : : },
8498 : : };
8499 : : uintptr_t flow_idx;
8500 : : struct rte_flow_error error;
8501 : : struct mlx5_ctrl_flow_entry *entry;
8502 : : unsigned int i;
8503 : :
8504 [ # # # # ]: 0 : if (!priv->reta_idx_n || !priv->rxqs_n) {
8505 : : return 0;
8506 : : }
8507 [ # # ]: 0 : if (!(dev->data->dev_conf.rxmode.mq_mode & RTE_ETH_MQ_RX_RSS_FLAG))
8508 : 0 : action_rss.types = 0;
8509 [ # # ]: 0 : for (i = 0; i != priv->reta_idx_n; ++i)
8510 : 0 : queue[i] = (*priv->reta_idx)[i];
8511 : :
8512 : 0 : entry = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*entry), alignof(typeof(*entry)), SOCKET_ID_ANY);
8513 [ # # ]: 0 : if (entry == NULL) {
8514 : 0 : rte_errno = ENOMEM;
8515 : 0 : goto err;
8516 : : }
8517 : :
8518 : 0 : entry->owner_dev = dev;
8519 [ # # ]: 0 : if (vlan_spec == NULL) {
8520 : 0 : entry->info.type = MLX5_CTRL_FLOW_TYPE_DEFAULT_RX_RSS_UNICAST_DMAC;
8521 : : } else {
8522 : 0 : entry->info.type = MLX5_CTRL_FLOW_TYPE_DEFAULT_RX_RSS_UNICAST_DMAC_VLAN;
8523 [ # # ]: 0 : entry->info.uc.vlan = rte_be_to_cpu_16(vlan_spec->hdr.vlan_tci);
8524 : : }
8525 : 0 : entry->info.uc.dmac = eth_spec->hdr.dst_addr;
8526 : :
8527 : 0 : flow_idx = mlx5_flow_list_create(dev, MLX5_FLOW_TYPE_CTL,
8528 : : &attr, items, actions, false, &error);
8529 [ # # ]: 0 : if (!flow_idx) {
8530 : 0 : mlx5_free(entry);
8531 : 0 : goto err;
8532 : : }
8533 : :
8534 : 0 : entry->flow = (struct rte_flow *)flow_idx;
8535 [ # # ]: 0 : LIST_INSERT_HEAD(&priv->hw_ctrl_flows, entry, next);
8536 : :
8537 : 0 : return 0;
8538 : :
8539 : 0 : err:
8540 : 0 : return -rte_errno;
8541 : : }
8542 : :
8543 : : /**
8544 : : * Enable a flow control configured from the control plane.
8545 : : *
8546 : : * @param dev
8547 : : * Pointer to Ethernet device.
8548 : : * @param eth_spec
8549 : : * An Ethernet flow spec to apply.
8550 : : * @param eth_mask
8551 : : * An Ethernet flow mask to apply.
8552 : : *
8553 : : * @return
8554 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
8555 : : */
8556 : : int
8557 : 0 : mlx5_ctrl_flow(struct rte_eth_dev *dev,
8558 : : struct rte_flow_item_eth *eth_spec,
8559 : : struct rte_flow_item_eth *eth_mask)
8560 : : {
8561 : 0 : return mlx5_ctrl_flow_vlan(dev, eth_spec, eth_mask, NULL, NULL);
8562 : : }
8563 : :
8564 : : int
8565 : 0 : mlx5_legacy_dmac_flow_create(struct rte_eth_dev *dev, const struct rte_ether_addr *addr)
8566 : : {
8567 : 0 : struct rte_flow_item_eth unicast = {
8568 : : .hdr.dst_addr = *addr,
8569 : : };
8570 : 0 : struct rte_flow_item_eth unicast_mask = {
8571 : : .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
8572 : : };
8573 : :
8574 : 0 : return mlx5_ctrl_flow(dev, &unicast, &unicast_mask);
8575 : : }
8576 : :
8577 : : int
8578 : 0 : mlx5_legacy_dmac_vlan_flow_create(struct rte_eth_dev *dev,
8579 : : const struct rte_ether_addr *addr,
8580 : : const uint16_t vid)
8581 : : {
8582 : 0 : struct rte_flow_item_eth unicast_spec = {
8583 : : .hdr.dst_addr = *addr,
8584 : : };
8585 : 0 : struct rte_flow_item_eth unicast_mask = {
8586 : : .hdr.dst_addr.addr_bytes = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
8587 : : };
8588 : 0 : struct rte_flow_item_vlan vlan_spec = {
8589 [ # # ]: 0 : .hdr.vlan_tci = rte_cpu_to_be_16(vid),
8590 : : };
8591 : 0 : struct rte_flow_item_vlan vlan_mask = rte_flow_item_vlan_mask;
8592 : :
8593 : 0 : return mlx5_ctrl_flow_vlan(dev, &unicast_spec, &unicast_mask, &vlan_spec, &vlan_mask);
8594 : : }
8595 : :
8596 : : void
8597 : 0 : mlx5_legacy_ctrl_flow_destroy(struct rte_eth_dev *dev, struct mlx5_ctrl_flow_entry *entry)
8598 : : {
8599 : : uintptr_t flow_idx;
8600 : :
8601 : 0 : flow_idx = (uintptr_t)entry->flow;
8602 : 0 : mlx5_flow_list_destroy(dev, MLX5_FLOW_TYPE_CTL, flow_idx);
8603 [ # # ]: 0 : LIST_REMOVE(entry, next);
8604 : 0 : mlx5_free(entry);
8605 : 0 : }
8606 : :
8607 : : int
8608 : 0 : mlx5_legacy_dmac_flow_destroy(struct rte_eth_dev *dev, const struct rte_ether_addr *addr)
8609 : : {
8610 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
8611 : : struct mlx5_ctrl_flow_entry *entry;
8612 : :
8613 [ # # ]: 0 : LIST_FOREACH(entry, &priv->hw_ctrl_flows, next) {
8614 [ # # # # ]: 0 : if (entry->info.type != MLX5_CTRL_FLOW_TYPE_DEFAULT_RX_RSS_UNICAST_DMAC ||
8615 : : !rte_is_same_ether_addr(addr, &entry->info.uc.dmac))
8616 : : continue;
8617 : :
8618 : 0 : mlx5_legacy_ctrl_flow_destroy(dev, entry);
8619 : 0 : return 0;
8620 : : }
8621 : : return 0;
8622 : : }
8623 : :
8624 : : int
8625 : 0 : mlx5_legacy_dmac_vlan_flow_destroy(struct rte_eth_dev *dev,
8626 : : const struct rte_ether_addr *addr,
8627 : : const uint16_t vid)
8628 : : {
8629 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
8630 : : struct mlx5_ctrl_flow_entry *entry;
8631 : :
8632 [ # # ]: 0 : LIST_FOREACH(entry, &priv->hw_ctrl_flows, next) {
8633 [ # # # # ]: 0 : if (entry->info.type != MLX5_CTRL_FLOW_TYPE_DEFAULT_RX_RSS_UNICAST_DMAC_VLAN ||
8634 : 0 : !rte_is_same_ether_addr(addr, &entry->info.uc.dmac) ||
8635 [ # # ]: 0 : vid != entry->info.uc.vlan)
8636 : : continue;
8637 : :
8638 : 0 : mlx5_legacy_ctrl_flow_destroy(dev, entry);
8639 : 0 : return 0;
8640 : : }
8641 : : return 0;
8642 : : }
8643 : :
8644 : : /**
8645 : : * Create default miss flow rule matching lacp traffic
8646 : : *
8647 : : * @param dev
8648 : : * Pointer to Ethernet device.
8649 : : * @param eth_spec
8650 : : * An Ethernet flow spec to apply.
8651 : : *
8652 : : * @return
8653 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
8654 : : */
8655 : : int
8656 : 0 : mlx5_flow_lacp_miss(struct rte_eth_dev *dev)
8657 : : {
8658 : : /*
8659 : : * The LACP matching is done by only using ether type since using
8660 : : * a multicast dst mac causes kernel to give low priority to this flow.
8661 : : */
8662 : : static const struct rte_flow_item_eth lacp_spec = {
8663 : : .hdr.ether_type = RTE_BE16(0x8809),
8664 : : };
8665 : : static const struct rte_flow_item_eth lacp_mask = {
8666 : : .hdr.ether_type = 0xffff,
8667 : : };
8668 : 0 : const struct rte_flow_attr attr = {
8669 : : .ingress = 1,
8670 : : };
8671 : 0 : struct rte_flow_item items[] = {
8672 : : {
8673 : : .type = RTE_FLOW_ITEM_TYPE_ETH,
8674 : : .spec = &lacp_spec,
8675 : : .mask = &lacp_mask,
8676 : : },
8677 : : {
8678 : : .type = RTE_FLOW_ITEM_TYPE_END,
8679 : : },
8680 : : };
8681 : 0 : struct rte_flow_action actions[] = {
8682 : : {
8683 : : .type = (enum rte_flow_action_type)
8684 : : MLX5_RTE_FLOW_ACTION_TYPE_DEFAULT_MISS,
8685 : : },
8686 : : {
8687 : : .type = RTE_FLOW_ACTION_TYPE_END,
8688 : : },
8689 : : };
8690 : : struct rte_flow_error error;
8691 : 0 : uint32_t flow_idx = mlx5_flow_list_create(dev, MLX5_FLOW_TYPE_CTL,
8692 : : &attr, items, actions,
8693 : : false, &error);
8694 : :
8695 [ # # ]: 0 : if (!flow_idx)
8696 : 0 : return -rte_errno;
8697 : : return 0;
8698 : : }
8699 : :
8700 : : /**
8701 : : * Destroy a flow.
8702 : : *
8703 : : * @see rte_flow_destroy()
8704 : : * @see rte_flow_ops
8705 : : */
8706 : : int
8707 : 0 : mlx5_flow_destroy(struct rte_eth_dev *dev,
8708 : : struct rte_flow *flow,
8709 : : struct rte_flow_error *error __rte_unused)
8710 : : {
8711 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
8712 : : struct rte_pmd_mlx5_flow_engine_mode_info *mode_info = &priv->mode_info;
8713 : : struct mlx5_dv_flow_info *flow_info;
8714 : :
8715 : 0 : mlx5_flow_list_destroy(dev, MLX5_FLOW_TYPE_GEN,
8716 : : (uintptr_t)(void *)flow);
8717 [ # # ]: 0 : if (unlikely(mlx5_need_cache_flow(priv, NULL))) {
8718 : 0 : flow_info = LIST_FIRST(&mode_info->hot_upgrade);
8719 [ # # ]: 0 : while (flow_info) {
8720 : : /* Romove the cache flow info. */
8721 [ # # ]: 0 : if (flow_info->flow_idx_low_prio == (uint32_t)(uintptr_t)flow) {
8722 : : MLX5_ASSERT(!flow_info->flow_idx_high_prio);
8723 [ # # ]: 0 : LIST_REMOVE(flow_info, next);
8724 : 0 : mlx5_free(flow_info->items);
8725 : 0 : mlx5_free(flow_info->actions);
8726 : 0 : mlx5_free(flow_info);
8727 : 0 : break;
8728 : : }
8729 : 0 : flow_info = LIST_NEXT(flow_info, next);
8730 : : }
8731 : : }
8732 : 0 : return 0;
8733 : : }
8734 : :
8735 : : /**
8736 : : * Destroy all flows.
8737 : : *
8738 : : * @see rte_flow_flush()
8739 : : * @see rte_flow_ops
8740 : : */
8741 : : int
8742 : 0 : mlx5_flow_flush(struct rte_eth_dev *dev,
8743 : : struct rte_flow_error *error __rte_unused)
8744 : : {
8745 : 0 : mlx5_flow_list_flush(dev, MLX5_FLOW_TYPE_GEN, false);
8746 : 0 : return 0;
8747 : : }
8748 : :
8749 : : /**
8750 : : * Isolated mode.
8751 : : *
8752 : : * @see rte_flow_isolate()
8753 : : * @see rte_flow_ops
8754 : : */
8755 : : int
8756 : 0 : mlx5_flow_isolate(struct rte_eth_dev *dev,
8757 : : int enable,
8758 : : struct rte_flow_error *error)
8759 : : {
8760 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
8761 : :
8762 [ # # ]: 0 : if (dev->data->dev_started) {
8763 : 0 : rte_flow_error_set(error, EBUSY,
8764 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
8765 : : NULL,
8766 : : "port must be stopped first");
8767 : 0 : return -rte_errno;
8768 : : }
8769 [ # # # # ]: 0 : if (!enable && !priv->sh->config.repr_matching)
8770 : 0 : return rte_flow_error_set(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
8771 : : "isolated mode cannot be disabled when "
8772 : : "representor matching is disabled");
8773 : 0 : priv->isolated = !!enable;
8774 [ # # ]: 0 : if (enable)
8775 : 0 : dev->dev_ops = &mlx5_dev_ops_isolate;
8776 : : else
8777 : 0 : dev->dev_ops = &mlx5_dev_ops;
8778 : :
8779 : 0 : dev->rx_descriptor_status = mlx5_rx_descriptor_status;
8780 : 0 : dev->tx_descriptor_status = mlx5_tx_descriptor_status;
8781 : :
8782 : 0 : return 0;
8783 : : }
8784 : :
8785 : : /**
8786 : : * Query a flow.
8787 : : *
8788 : : * @see rte_flow_query()
8789 : : * @see rte_flow_ops
8790 : : */
8791 : : static int
8792 : 0 : flow_drv_query(struct rte_eth_dev *dev,
8793 : : struct rte_flow *eflow,
8794 : : const struct rte_flow_action *actions,
8795 : : void *data,
8796 : : struct rte_flow_error *error)
8797 : : {
8798 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
8799 : : const struct mlx5_flow_driver_ops *fops;
8800 : : struct rte_flow *flow = NULL;
8801 : : enum mlx5_flow_drv_type ftype = MLX5_FLOW_TYPE_MIN;
8802 : :
8803 [ # # ]: 0 : if (priv->sh->config.dv_flow_en == 2) {
8804 : : #ifdef HAVE_MLX5_HWS_SUPPORT
8805 : : flow = eflow;
8806 : : ftype = MLX5_FLOW_TYPE_HW;
8807 : : #endif
8808 : : } else {
8809 : 0 : flow = (struct rte_flow *)mlx5_ipool_get(priv->flows[MLX5_FLOW_TYPE_GEN],
8810 : : (uintptr_t)(void *)eflow);
8811 : : }
8812 [ # # ]: 0 : if (!flow) {
8813 : 0 : return rte_flow_error_set(error, ENOENT,
8814 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
8815 : : NULL,
8816 : : "invalid flow handle");
8817 : : }
8818 [ # # ]: 0 : if (ftype == MLX5_FLOW_TYPE_MIN)
8819 : 0 : ftype = flow->drv_type;
8820 : : MLX5_ASSERT(ftype > MLX5_FLOW_TYPE_MIN && ftype < MLX5_FLOW_TYPE_MAX);
8821 : 0 : fops = flow_get_drv_ops(ftype);
8822 : :
8823 : 0 : return fops->query(dev, flow, actions, data, error);
8824 : : }
8825 : :
8826 : : /**
8827 : : * Query a flow.
8828 : : *
8829 : : * @see rte_flow_query()
8830 : : * @see rte_flow_ops
8831 : : */
8832 : : int
8833 : 0 : mlx5_flow_query(struct rte_eth_dev *dev,
8834 : : struct rte_flow *flow,
8835 : : const struct rte_flow_action *actions,
8836 : : void *data,
8837 : : struct rte_flow_error *error)
8838 : : {
8839 : : int ret;
8840 : :
8841 : 0 : ret = flow_drv_query(dev, flow, actions, data,
8842 : : error);
8843 : : if (ret < 0)
8844 : : return ret;
8845 : : return 0;
8846 : : }
8847 : :
8848 : : /**
8849 : : * Get rte_flow callbacks.
8850 : : *
8851 : : * @param dev
8852 : : * Pointer to Ethernet device structure.
8853 : : * @param ops
8854 : : * Pointer to operation-specific structure.
8855 : : *
8856 : : * @return 0
8857 : : */
8858 : : int
8859 : 0 : mlx5_flow_ops_get(struct rte_eth_dev *dev __rte_unused,
8860 : : const struct rte_flow_ops **ops)
8861 : : {
8862 : 0 : *ops = &mlx5_flow_ops;
8863 : 0 : return 0;
8864 : : }
8865 : :
8866 : : /**
8867 : : * Validate meter policy actions.
8868 : : * Dispatcher for action type specific validation.
8869 : : *
8870 : : * @param[in] dev
8871 : : * Pointer to the Ethernet device structure.
8872 : : * @param[in] action
8873 : : * The meter policy action object to validate.
8874 : : * @param[in] attr
8875 : : * Attributes of flow to determine steering domain.
8876 : : * @param[out] is_rss
8877 : : * Is RSS or not.
8878 : : * @param[out] domain_bitmap
8879 : : * Domain bitmap.
8880 : : * @param[out] is_def_policy
8881 : : * Is default policy or not.
8882 : : * @param[out] error
8883 : : * Perform verbose error reporting if not NULL. Initialized in case of
8884 : : * error only.
8885 : : *
8886 : : * @return
8887 : : * 0 on success, otherwise negative errno value.
8888 : : */
8889 : : int
8890 : 0 : mlx5_flow_validate_mtr_acts(struct rte_eth_dev *dev,
8891 : : const struct rte_flow_action *actions[RTE_COLORS],
8892 : : struct rte_flow_attr *attr,
8893 : : bool *is_rss,
8894 : : uint8_t *domain_bitmap,
8895 : : uint8_t *policy_mode,
8896 : : struct rte_mtr_error *error)
8897 : : {
8898 : : const struct mlx5_flow_driver_ops *fops;
8899 : :
8900 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_DV);
8901 : 0 : return fops->validate_mtr_acts(dev, actions, attr, is_rss,
8902 : : domain_bitmap, policy_mode, error);
8903 : : }
8904 : :
8905 : : /**
8906 : : * Destroy the meter table set.
8907 : : *
8908 : : * @param[in] dev
8909 : : * Pointer to Ethernet device.
8910 : : * @param[in] mtr_policy
8911 : : * Meter policy struct.
8912 : : */
8913 : : void
8914 : 0 : mlx5_flow_destroy_mtr_acts(struct rte_eth_dev *dev,
8915 : : struct mlx5_flow_meter_policy *mtr_policy)
8916 : : {
8917 : : const struct mlx5_flow_driver_ops *fops;
8918 : :
8919 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_DV);
8920 : 0 : fops->destroy_mtr_acts(dev, mtr_policy);
8921 : 0 : }
8922 : :
8923 : : /**
8924 : : * Create policy action, lock free,
8925 : : * (mutex should be acquired by caller).
8926 : : * Dispatcher for action type specific call.
8927 : : *
8928 : : * @param[in] dev
8929 : : * Pointer to the Ethernet device structure.
8930 : : * @param[in] mtr_policy
8931 : : * Meter policy struct.
8932 : : * @param[in] action
8933 : : * Action specification used to create meter actions.
8934 : : * @param[in] attr
8935 : : * Flow rule attributes.
8936 : : * @param[out] error
8937 : : * Perform verbose error reporting if not NULL. Initialized in case of
8938 : : * error only.
8939 : : *
8940 : : * @return
8941 : : * 0 on success, otherwise negative errno value.
8942 : : */
8943 : : int
8944 : 0 : mlx5_flow_create_mtr_acts(struct rte_eth_dev *dev,
8945 : : struct mlx5_flow_meter_policy *mtr_policy,
8946 : : const struct rte_flow_action *actions[RTE_COLORS],
8947 : : struct rte_flow_attr *attr,
8948 : : struct rte_mtr_error *error)
8949 : : {
8950 : : const struct mlx5_flow_driver_ops *fops;
8951 : :
8952 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_DV);
8953 : 0 : return fops->create_mtr_acts(dev, mtr_policy, actions, attr, error);
8954 : : }
8955 : :
8956 : : /**
8957 : : * Create policy rules, lock free,
8958 : : * (mutex should be acquired by caller).
8959 : : * Dispatcher for action type specific call.
8960 : : *
8961 : : * @param[in] dev
8962 : : * Pointer to the Ethernet device structure.
8963 : : * @param[in] mtr_policy
8964 : : * Meter policy struct.
8965 : : *
8966 : : * @return
8967 : : * 0 on success, -1 otherwise.
8968 : : */
8969 : : int
8970 : 0 : mlx5_flow_create_policy_rules(struct rte_eth_dev *dev,
8971 : : struct mlx5_flow_meter_policy *mtr_policy)
8972 : : {
8973 : : const struct mlx5_flow_driver_ops *fops;
8974 : :
8975 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_DV);
8976 : 0 : return fops->create_policy_rules(dev, mtr_policy);
8977 : : }
8978 : :
8979 : : /**
8980 : : * Destroy policy rules, lock free,
8981 : : * (mutex should be acquired by caller).
8982 : : * Dispatcher for action type specific call.
8983 : : *
8984 : : * @param[in] dev
8985 : : * Pointer to the Ethernet device structure.
8986 : : * @param[in] mtr_policy
8987 : : * Meter policy struct.
8988 : : */
8989 : : void
8990 : 0 : mlx5_flow_destroy_policy_rules(struct rte_eth_dev *dev,
8991 : : struct mlx5_flow_meter_policy *mtr_policy)
8992 : : {
8993 : : const struct mlx5_flow_driver_ops *fops;
8994 : :
8995 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_DV);
8996 : 0 : fops->destroy_policy_rules(dev, mtr_policy);
8997 : 0 : }
8998 : :
8999 : : /**
9000 : : * Destroy the default policy table set.
9001 : : *
9002 : : * @param[in] dev
9003 : : * Pointer to Ethernet device.
9004 : : */
9005 : : void
9006 : 0 : mlx5_flow_destroy_def_policy(struct rte_eth_dev *dev)
9007 : : {
9008 : : const struct mlx5_flow_driver_ops *fops;
9009 : :
9010 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_DV);
9011 : 0 : fops->destroy_def_policy(dev);
9012 : 0 : }
9013 : :
9014 : : /**
9015 : : * Destroy the default policy table set.
9016 : : *
9017 : : * @param[in] dev
9018 : : * Pointer to Ethernet device.
9019 : : *
9020 : : * @return
9021 : : * 0 on success, -1 otherwise.
9022 : : */
9023 : : int
9024 : 0 : mlx5_flow_create_def_policy(struct rte_eth_dev *dev)
9025 : : {
9026 : : const struct mlx5_flow_driver_ops *fops;
9027 : :
9028 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_DV);
9029 : 0 : return fops->create_def_policy(dev);
9030 : : }
9031 : :
9032 : : /**
9033 : : * Create the needed meter and suffix tables.
9034 : : *
9035 : : * @param[in] dev
9036 : : * Pointer to Ethernet device.
9037 : : *
9038 : : * @return
9039 : : * 0 on success, -1 otherwise.
9040 : : */
9041 : : int
9042 : 0 : mlx5_flow_create_mtr_tbls(struct rte_eth_dev *dev,
9043 : : struct mlx5_flow_meter_info *fm,
9044 : : uint32_t mtr_idx,
9045 : : uint8_t domain_bitmap)
9046 : : {
9047 : : const struct mlx5_flow_driver_ops *fops;
9048 : :
9049 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_DV);
9050 : 0 : return fops->create_mtr_tbls(dev, fm, mtr_idx, domain_bitmap);
9051 : : }
9052 : :
9053 : : /**
9054 : : * Destroy the meter table set.
9055 : : *
9056 : : * @param[in] dev
9057 : : * Pointer to Ethernet device.
9058 : : * @param[in] tbl
9059 : : * Pointer to the meter table set.
9060 : : */
9061 : : void
9062 : 0 : mlx5_flow_destroy_mtr_tbls(struct rte_eth_dev *dev,
9063 : : struct mlx5_flow_meter_info *fm)
9064 : : {
9065 : : const struct mlx5_flow_driver_ops *fops;
9066 : :
9067 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_DV);
9068 : 0 : fops->destroy_mtr_tbls(dev, fm);
9069 : 0 : }
9070 : :
9071 : : /**
9072 : : * Destroy the global meter drop table.
9073 : : *
9074 : : * @param[in] dev
9075 : : * Pointer to Ethernet device.
9076 : : */
9077 : : void
9078 : 0 : mlx5_flow_destroy_mtr_drop_tbls(struct rte_eth_dev *dev)
9079 : : {
9080 : : const struct mlx5_flow_driver_ops *fops;
9081 : :
9082 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_DV);
9083 : 0 : fops->destroy_mtr_drop_tbls(dev);
9084 : 0 : }
9085 : :
9086 : : /**
9087 : : * Destroy the sub policy table with RX queue.
9088 : : *
9089 : : * @param[in] dev
9090 : : * Pointer to Ethernet device.
9091 : : * @param[in] mtr_policy
9092 : : * Pointer to meter policy table.
9093 : : */
9094 : : void
9095 : 0 : mlx5_flow_destroy_sub_policy_with_rxq(struct rte_eth_dev *dev,
9096 : : struct mlx5_flow_meter_policy *mtr_policy)
9097 : : {
9098 : : const struct mlx5_flow_driver_ops *fops;
9099 : :
9100 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_DV);
9101 : 0 : fops->destroy_sub_policy_with_rxq(dev, mtr_policy);
9102 : 0 : }
9103 : :
9104 : : /**
9105 : : * Allocate the needed aso flow meter id.
9106 : : *
9107 : : * @param[in] dev
9108 : : * Pointer to Ethernet device.
9109 : : *
9110 : : * @return
9111 : : * Index to aso flow meter on success, NULL otherwise.
9112 : : */
9113 : : uint32_t
9114 : 0 : mlx5_flow_mtr_alloc(struct rte_eth_dev *dev)
9115 : : {
9116 : : const struct mlx5_flow_driver_ops *fops;
9117 : :
9118 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_DV);
9119 : 0 : return fops->create_meter(dev);
9120 : : }
9121 : :
9122 : : /**
9123 : : * Free the aso flow meter id.
9124 : : *
9125 : : * @param[in] dev
9126 : : * Pointer to Ethernet device.
9127 : : * @param[in] mtr_idx
9128 : : * Index to aso flow meter to be free.
9129 : : *
9130 : : * @return
9131 : : * 0 on success.
9132 : : */
9133 : : void
9134 : 0 : mlx5_flow_mtr_free(struct rte_eth_dev *dev, uint32_t mtr_idx)
9135 : : {
9136 : : const struct mlx5_flow_driver_ops *fops;
9137 : :
9138 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_DV);
9139 : 0 : fops->free_meter(dev, mtr_idx);
9140 : 0 : }
9141 : :
9142 : : /**
9143 : : * Allocate a counter.
9144 : : *
9145 : : * @param[in] dev
9146 : : * Pointer to Ethernet device structure.
9147 : : *
9148 : : * @return
9149 : : * Index to allocated counter on success, 0 otherwise.
9150 : : */
9151 : : uint32_t
9152 [ # # ]: 0 : mlx5_counter_alloc(struct rte_eth_dev *dev)
9153 : : {
9154 : : struct rte_flow_attr attr = { .transfer = 0 };
9155 : :
9156 : 0 : return flow_get_drv_ops(flow_get_drv_type(dev, &attr))->counter_alloc
9157 : : (dev);
9158 : : }
9159 : :
9160 : : /**
9161 : : * Free a counter.
9162 : : *
9163 : : * @param[in] dev
9164 : : * Pointer to Ethernet device structure.
9165 : : * @param[in] cnt
9166 : : * Index to counter to be free.
9167 : : */
9168 : : void
9169 [ # # ]: 0 : mlx5_counter_free(struct rte_eth_dev *dev, uint32_t cnt)
9170 : : {
9171 : : struct rte_flow_attr attr = { .transfer = 0 };
9172 : :
9173 : 0 : flow_get_drv_ops(flow_get_drv_type(dev, &attr))->counter_free(dev, cnt);
9174 : 0 : }
9175 : :
9176 : : /**
9177 : : * Query counter statistics.
9178 : : *
9179 : : * @param[in] dev
9180 : : * Pointer to Ethernet device structure.
9181 : : * @param[in] cnt
9182 : : * Index to counter to query.
9183 : : * @param[in] clear
9184 : : * Set to clear counter statistics.
9185 : : * @param[out] pkts
9186 : : * The counter hits packets number to save.
9187 : : * @param[out] bytes
9188 : : * The counter hits bytes number to save.
9189 : : *
9190 : : * @return
9191 : : * 0 on success, a negative errno value otherwise.
9192 : : */
9193 : : int
9194 [ # # ]: 0 : mlx5_counter_query(struct rte_eth_dev *dev, uint32_t cnt,
9195 : : bool clear, uint64_t *pkts, uint64_t *bytes, void **action)
9196 : : {
9197 : : struct rte_flow_attr attr = { .transfer = 0 };
9198 : :
9199 : 0 : return flow_get_drv_ops(flow_get_drv_type(dev, &attr))->counter_query
9200 : : (dev, cnt, clear, pkts, bytes, action);
9201 : : }
9202 : :
9203 : : /**
9204 : : * Get information about HWS pre-configurable resources.
9205 : : *
9206 : : * @param[in] dev
9207 : : * Pointer to the rte_eth_dev structure.
9208 : : * @param[out] port_info
9209 : : * Pointer to port information.
9210 : : * @param[out] queue_info
9211 : : * Pointer to queue information.
9212 : : * @param[out] error
9213 : : * Pointer to error structure.
9214 : : *
9215 : : * @return
9216 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
9217 : : */
9218 : : static int
9219 [ # # ]: 0 : mlx5_flow_info_get(struct rte_eth_dev *dev,
9220 : : struct rte_flow_port_info *port_info,
9221 : : struct rte_flow_queue_info *queue_info,
9222 : : struct rte_flow_error *error)
9223 : : {
9224 : : const struct mlx5_flow_driver_ops *fops;
9225 : : struct rte_flow_attr attr = {0};
9226 : :
9227 : : if (flow_get_drv_type(dev, &attr) != MLX5_FLOW_TYPE_HW)
9228 : 0 : return rte_flow_error_set(error, ENOTSUP,
9229 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
9230 : : NULL,
9231 : : "info get with incorrect steering mode");
9232 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_HW);
9233 : 0 : return fops->info_get(dev, port_info, queue_info, error);
9234 : : }
9235 : :
9236 : : /**
9237 : : * Configure port HWS resources.
9238 : : *
9239 : : * @param[in] dev
9240 : : * Pointer to the rte_eth_dev structure.
9241 : : * @param[in] port_attr
9242 : : * Port configuration attributes.
9243 : : * @param[in] nb_queue
9244 : : * Number of queue.
9245 : : * @param[in] queue_attr
9246 : : * Array that holds attributes for each flow queue.
9247 : : * @param[out] error
9248 : : * Pointer to error structure.
9249 : : *
9250 : : * @return
9251 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
9252 : : */
9253 : : static int
9254 [ # # ]: 0 : mlx5_flow_port_configure(struct rte_eth_dev *dev,
9255 : : const struct rte_flow_port_attr *port_attr,
9256 : : uint16_t nb_queue,
9257 : : const struct rte_flow_queue_attr *queue_attr[],
9258 : : struct rte_flow_error *error)
9259 : : {
9260 : : const struct mlx5_flow_driver_ops *fops;
9261 : : struct rte_flow_attr attr = {0};
9262 : :
9263 : : if (flow_get_drv_type(dev, &attr) != MLX5_FLOW_TYPE_HW)
9264 : 0 : return rte_flow_error_set(error, ENOTSUP,
9265 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
9266 : : NULL,
9267 : : "port configure with incorrect steering mode");
9268 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_HW);
9269 : 0 : return fops->configure(dev, port_attr, nb_queue, queue_attr, error);
9270 : : }
9271 : :
9272 : : /**
9273 : : * Validate item template.
9274 : : *
9275 : : * @param[in] dev
9276 : : * Pointer to the rte_eth_dev structure.
9277 : : * @param[in] attr
9278 : : * Pointer to the item template attributes.
9279 : : * @param[in] items
9280 : : * The template item pattern.
9281 : : * @param[out] error
9282 : : * Pointer to error structure.
9283 : : *
9284 : : * @return
9285 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
9286 : : */
9287 : : int
9288 : 0 : mlx5_flow_pattern_validate(struct rte_eth_dev *dev,
9289 : : const struct rte_flow_pattern_template_attr *attr,
9290 : : const struct rte_flow_item items[],
9291 : : struct rte_flow_error *error)
9292 : : {
9293 : : const struct mlx5_flow_driver_ops *fops;
9294 : : struct rte_flow_attr fattr = {0};
9295 [ # # ]: 0 : uint64_t item_flags = 0;
9296 : :
9297 : : if (flow_get_drv_type(dev, &fattr) != MLX5_FLOW_TYPE_HW) {
9298 : 0 : rte_flow_error_set(error, ENOTSUP,
9299 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
9300 : : "pattern validate with incorrect steering mode");
9301 : 0 : return -ENOTSUP;
9302 : : }
9303 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_HW);
9304 : 0 : return fops->pattern_validate(dev, attr, items, &item_flags, error);
9305 : : }
9306 : :
9307 : : /**
9308 : : * Create flow item template.
9309 : : *
9310 : : * @param[in] dev
9311 : : * Pointer to the rte_eth_dev structure.
9312 : : * @param[in] attr
9313 : : * Pointer to the item template attributes.
9314 : : * @param[in] items
9315 : : * The template item pattern.
9316 : : * @param[out] error
9317 : : * Pointer to error structure.
9318 : : *
9319 : : * @return
9320 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
9321 : : */
9322 : : static struct rte_flow_pattern_template *
9323 [ # # ]: 0 : mlx5_flow_pattern_template_create(struct rte_eth_dev *dev,
9324 : : const struct rte_flow_pattern_template_attr *attr,
9325 : : const struct rte_flow_item items[],
9326 : : struct rte_flow_error *error)
9327 : : {
9328 : : const struct mlx5_flow_driver_ops *fops;
9329 : : struct rte_flow_attr fattr = {0};
9330 : :
9331 : : if (flow_get_drv_type(dev, &fattr) != MLX5_FLOW_TYPE_HW) {
9332 : 0 : rte_flow_error_set(error, ENOTSUP,
9333 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
9334 : : NULL,
9335 : : "pattern create with incorrect steering mode");
9336 : 0 : return NULL;
9337 : : }
9338 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_HW);
9339 : 0 : return fops->pattern_template_create(dev, attr, items, error);
9340 : : }
9341 : :
9342 : : /**
9343 : : * Destroy flow item template.
9344 : : *
9345 : : * @param[in] dev
9346 : : * Pointer to the rte_eth_dev structure.
9347 : : * @param[in] template
9348 : : * Pointer to the item template to be destroyed.
9349 : : * @param[out] error
9350 : : * Pointer to error structure.
9351 : : *
9352 : : * @return
9353 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
9354 : : */
9355 : : static int
9356 [ # # ]: 0 : mlx5_flow_pattern_template_destroy(struct rte_eth_dev *dev,
9357 : : struct rte_flow_pattern_template *template,
9358 : : struct rte_flow_error *error)
9359 : : {
9360 : : const struct mlx5_flow_driver_ops *fops;
9361 : : struct rte_flow_attr attr = {0};
9362 : :
9363 : : if (flow_get_drv_type(dev, &attr) != MLX5_FLOW_TYPE_HW)
9364 : 0 : return rte_flow_error_set(error, ENOTSUP,
9365 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
9366 : : NULL,
9367 : : "pattern destroy with incorrect steering mode");
9368 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_HW);
9369 : 0 : return fops->pattern_template_destroy(dev, template, error);
9370 : : }
9371 : :
9372 : : /**
9373 : : * Validate flow actions template.
9374 : : *
9375 : : * @param[in] dev
9376 : : * Pointer to the rte_eth_dev structure.
9377 : : * @param[in] attr
9378 : : * Pointer to the action template attributes.
9379 : : * @param[in] actions
9380 : : * Associated actions (list terminated by the END action).
9381 : : * @param[in] masks
9382 : : * List of actions that marks which of the action's member is constant.
9383 : : * @param[out] error
9384 : : * Pointer to error structure.
9385 : : *
9386 : : * @return
9387 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
9388 : : */
9389 : : int
9390 [ # # ]: 0 : mlx5_flow_actions_validate(struct rte_eth_dev *dev,
9391 : : const struct rte_flow_actions_template_attr *attr,
9392 : : const struct rte_flow_action actions[],
9393 : : const struct rte_flow_action masks[],
9394 : : struct rte_flow_error *error)
9395 : : {
9396 : : const struct mlx5_flow_driver_ops *fops;
9397 : : struct rte_flow_attr fattr = {0};
9398 : :
9399 : : if (flow_get_drv_type(dev, &fattr) != MLX5_FLOW_TYPE_HW) {
9400 : 0 : rte_flow_error_set(error, ENOTSUP,
9401 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
9402 : : "actions validate with incorrect steering mode");
9403 : 0 : return -ENOTSUP;
9404 : : }
9405 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_HW);
9406 : 0 : return fops->actions_validate(dev, attr, actions, masks, error);
9407 : : }
9408 : :
9409 : : /**
9410 : : * Create flow item template.
9411 : : *
9412 : : * @param[in] dev
9413 : : * Pointer to the rte_eth_dev structure.
9414 : : * @param[in] attr
9415 : : * Pointer to the action template attributes.
9416 : : * @param[in] actions
9417 : : * Associated actions (list terminated by the END action).
9418 : : * @param[in] masks
9419 : : * List of actions that marks which of the action's member is constant.
9420 : : * @param[out] error
9421 : : * Pointer to error structure.
9422 : : *
9423 : : * @return
9424 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
9425 : : */
9426 : : static struct rte_flow_actions_template *
9427 [ # # ]: 0 : mlx5_flow_actions_template_create(struct rte_eth_dev *dev,
9428 : : const struct rte_flow_actions_template_attr *attr,
9429 : : const struct rte_flow_action actions[],
9430 : : const struct rte_flow_action masks[],
9431 : : struct rte_flow_error *error)
9432 : : {
9433 : : const struct mlx5_flow_driver_ops *fops;
9434 : : struct rte_flow_attr fattr = {0};
9435 : :
9436 : : if (flow_get_drv_type(dev, &fattr) != MLX5_FLOW_TYPE_HW) {
9437 : 0 : rte_flow_error_set(error, ENOTSUP,
9438 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
9439 : : NULL,
9440 : : "action create with incorrect steering mode");
9441 : 0 : return NULL;
9442 : : }
9443 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_HW);
9444 : 0 : return fops->actions_template_create(dev, attr, actions, masks, error);
9445 : : }
9446 : :
9447 : : /**
9448 : : * Destroy flow action template.
9449 : : *
9450 : : * @param[in] dev
9451 : : * Pointer to the rte_eth_dev structure.
9452 : : * @param[in] template
9453 : : * Pointer to the action template to be destroyed.
9454 : : * @param[out] error
9455 : : * Pointer to error structure.
9456 : : *
9457 : : * @return
9458 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
9459 : : */
9460 : : static int
9461 [ # # ]: 0 : mlx5_flow_actions_template_destroy(struct rte_eth_dev *dev,
9462 : : struct rte_flow_actions_template *template,
9463 : : struct rte_flow_error *error)
9464 : : {
9465 : : const struct mlx5_flow_driver_ops *fops;
9466 : : struct rte_flow_attr attr = {0};
9467 : :
9468 : : if (flow_get_drv_type(dev, &attr) != MLX5_FLOW_TYPE_HW)
9469 : 0 : return rte_flow_error_set(error, ENOTSUP,
9470 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
9471 : : NULL,
9472 : : "action destroy with incorrect steering mode");
9473 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_HW);
9474 : 0 : return fops->actions_template_destroy(dev, template, error);
9475 : : }
9476 : :
9477 : : /**
9478 : : * Create flow table.
9479 : : *
9480 : : * @param[in] dev
9481 : : * Pointer to the rte_eth_dev structure.
9482 : : * @param[in] attr
9483 : : * Pointer to the table attributes.
9484 : : * @param[in] item_templates
9485 : : * Item template array to be binded to the table.
9486 : : * @param[in] nb_item_templates
9487 : : * Number of item template.
9488 : : * @param[in] action_templates
9489 : : * Action template array to be binded to the table.
9490 : : * @param[in] nb_action_templates
9491 : : * Number of action template.
9492 : : * @param[out] error
9493 : : * Pointer to error structure.
9494 : : *
9495 : : * @return
9496 : : * Table on success, NULL otherwise and rte_errno is set.
9497 : : */
9498 : : static struct rte_flow_template_table *
9499 [ # # ]: 0 : mlx5_flow_table_create(struct rte_eth_dev *dev,
9500 : : const struct rte_flow_template_table_attr *attr,
9501 : : struct rte_flow_pattern_template *item_templates[],
9502 : : uint8_t nb_item_templates,
9503 : : struct rte_flow_actions_template *action_templates[],
9504 : : uint8_t nb_action_templates,
9505 : : struct rte_flow_error *error)
9506 : : {
9507 : : const struct mlx5_flow_driver_ops *fops;
9508 : : struct rte_flow_attr fattr = {0};
9509 : :
9510 : : if (flow_get_drv_type(dev, &fattr) != MLX5_FLOW_TYPE_HW) {
9511 : 0 : rte_flow_error_set(error, ENOTSUP,
9512 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
9513 : : NULL,
9514 : : "table create with incorrect steering mode");
9515 : 0 : return NULL;
9516 : : }
9517 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_HW);
9518 : 0 : return fops->template_table_create(dev,
9519 : : attr,
9520 : : item_templates,
9521 : : nb_item_templates,
9522 : : action_templates,
9523 : : nb_action_templates,
9524 : : error);
9525 : : }
9526 : :
9527 : : /**
9528 : : * PMD destroy flow table.
9529 : : *
9530 : : * @param[in] dev
9531 : : * Pointer to the rte_eth_dev structure.
9532 : : * @param[in] table
9533 : : * Pointer to the table to be destroyed.
9534 : : * @param[out] error
9535 : : * Pointer to error structure.
9536 : : *
9537 : : * @return
9538 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
9539 : : */
9540 : : static int
9541 [ # # ]: 0 : mlx5_flow_table_destroy(struct rte_eth_dev *dev,
9542 : : struct rte_flow_template_table *table,
9543 : : struct rte_flow_error *error)
9544 : : {
9545 : : const struct mlx5_flow_driver_ops *fops;
9546 : : struct rte_flow_attr attr = {0};
9547 : :
9548 : : if (flow_get_drv_type(dev, &attr) != MLX5_FLOW_TYPE_HW)
9549 : 0 : return rte_flow_error_set(error, ENOTSUP,
9550 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
9551 : : NULL,
9552 : : "table destroy with incorrect steering mode");
9553 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_HW);
9554 : 0 : return fops->template_table_destroy(dev, table, error);
9555 : : }
9556 : :
9557 : : /**
9558 : : * PMD group set miss actions.
9559 : : *
9560 : : * @param[in] dev
9561 : : * Pointer to the rte_eth_dev structure.
9562 : : * @param[in] attr
9563 : : * Pointer to group attributes
9564 : : * @param[in] actions
9565 : : * Array of actions
9566 : : * @param[out] error
9567 : : * Pointer to error structure.
9568 : : *
9569 : : * @return
9570 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
9571 : : */
9572 : : static int
9573 [ # # ]: 0 : mlx5_flow_group_set_miss_actions(struct rte_eth_dev *dev,
9574 : : uint32_t group_id,
9575 : : const struct rte_flow_group_attr *attr,
9576 : : const struct rte_flow_action actions[],
9577 : : struct rte_flow_error *error)
9578 : : {
9579 : : const struct mlx5_flow_driver_ops *fops;
9580 : : struct rte_flow_attr fattr = {0};
9581 : :
9582 : : if (flow_get_drv_type(dev, &fattr) != MLX5_FLOW_TYPE_HW)
9583 : 0 : return rte_flow_error_set(error, ENOTSUP,
9584 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
9585 : : NULL,
9586 : : "group set miss actions with incorrect steering mode");
9587 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_HW);
9588 : 0 : return fops->group_set_miss_actions(dev, group_id, attr, actions, error);
9589 : : }
9590 : :
9591 : : /**
9592 : : * Allocate a new memory for the counter values wrapped by all the needed
9593 : : * management.
9594 : : *
9595 : : * @param[in] sh
9596 : : * Pointer to mlx5_dev_ctx_shared object.
9597 : : *
9598 : : * @return
9599 : : * 0 on success, a negative errno value otherwise.
9600 : : */
9601 : : static int
9602 : 0 : mlx5_flow_create_counter_stat_mem_mng(struct mlx5_dev_ctx_shared *sh)
9603 : : {
9604 : : struct mlx5_counter_stats_mem_mng *mem_mng;
9605 : : volatile struct flow_counter_stats *raw_data;
9606 : : int raws_n = MLX5_CNT_MR_ALLOC_BULK + MLX5_MAX_PENDING_QUERIES;
9607 : : int size = (sizeof(struct flow_counter_stats) *
9608 : : MLX5_COUNTERS_PER_POOL +
9609 : : sizeof(struct mlx5_counter_stats_raw)) * raws_n +
9610 : : sizeof(struct mlx5_counter_stats_mem_mng);
9611 : 0 : size_t pgsize = rte_mem_page_size();
9612 : : uint8_t *mem;
9613 : : int ret;
9614 : : int i;
9615 : :
9616 [ # # ]: 0 : if (pgsize == (size_t)-1) {
9617 : 0 : DRV_LOG(ERR, "Failed to get mem page size");
9618 : 0 : rte_errno = ENOMEM;
9619 : 0 : return -ENOMEM;
9620 : : }
9621 : 0 : mem = mlx5_malloc(MLX5_MEM_ZERO, size, pgsize, SOCKET_ID_ANY);
9622 [ # # ]: 0 : if (!mem) {
9623 : 0 : rte_errno = ENOMEM;
9624 : 0 : return -ENOMEM;
9625 : : }
9626 : 0 : mem_mng = (struct mlx5_counter_stats_mem_mng *)(mem + size) - 1;
9627 : : size = sizeof(*raw_data) * MLX5_COUNTERS_PER_POOL * raws_n;
9628 : 0 : ret = mlx5_os_wrapped_mkey_create(sh->cdev->ctx, sh->cdev->pd,
9629 : 0 : sh->cdev->pdn, mem, size,
9630 : : &mem_mng->wm);
9631 [ # # ]: 0 : if (ret) {
9632 : 0 : rte_errno = errno;
9633 : 0 : mlx5_free(mem);
9634 : 0 : return -rte_errno;
9635 : : }
9636 : 0 : mem_mng->raws = (struct mlx5_counter_stats_raw *)(mem + size);
9637 : : raw_data = (volatile struct flow_counter_stats *)mem;
9638 [ # # ]: 0 : for (i = 0; i < raws_n; ++i) {
9639 : 0 : mem_mng->raws[i].mem_mng = mem_mng;
9640 : 0 : mem_mng->raws[i].data = raw_data + i * MLX5_COUNTERS_PER_POOL;
9641 : : }
9642 [ # # ]: 0 : for (i = 0; i < MLX5_MAX_PENDING_QUERIES; ++i)
9643 [ # # ]: 0 : LIST_INSERT_HEAD(&sh->sws_cmng.free_stat_raws,
9644 : : mem_mng->raws + MLX5_CNT_MR_ALLOC_BULK + i,
9645 : : next);
9646 [ # # ]: 0 : LIST_INSERT_HEAD(&sh->sws_cmng.mem_mngs, mem_mng, next);
9647 : 0 : sh->sws_cmng.mem_mng = mem_mng;
9648 : 0 : return 0;
9649 : : }
9650 : :
9651 : : /**
9652 : : * Set the statistic memory to the new counter pool.
9653 : : *
9654 : : * @param[in] sh
9655 : : * Pointer to mlx5_dev_ctx_shared object.
9656 : : * @param[in] pool
9657 : : * Pointer to the pool to set the statistic memory.
9658 : : *
9659 : : * @return
9660 : : * 0 on success, a negative errno value otherwise.
9661 : : */
9662 : : static int
9663 : 0 : mlx5_flow_set_counter_stat_mem(struct mlx5_dev_ctx_shared *sh,
9664 : : struct mlx5_flow_counter_pool *pool)
9665 : : {
9666 : : struct mlx5_flow_counter_mng *cmng = &sh->sws_cmng;
9667 : : /* Resize statistic memory once used out. */
9668 [ # # # # ]: 0 : if (!(pool->index % MLX5_CNT_MR_ALLOC_BULK) &&
9669 : 0 : mlx5_flow_create_counter_stat_mem_mng(sh)) {
9670 : 0 : DRV_LOG(ERR, "Cannot resize counter stat mem.");
9671 : 0 : return -1;
9672 : : }
9673 : 0 : rte_spinlock_lock(&pool->sl);
9674 : 0 : pool->raw = cmng->mem_mng->raws + pool->index % MLX5_CNT_MR_ALLOC_BULK;
9675 : : rte_spinlock_unlock(&pool->sl);
9676 : 0 : pool->raw_hw = NULL;
9677 : 0 : return 0;
9678 : : }
9679 : :
9680 : : #define MLX5_POOL_QUERY_FREQ_US 1000000
9681 : :
9682 : : /**
9683 : : * Set the periodic procedure for triggering asynchronous batch queries for all
9684 : : * the counter pools.
9685 : : *
9686 : : * @param[in] sh
9687 : : * Pointer to mlx5_dev_ctx_shared object.
9688 : : */
9689 : : void
9690 : 0 : mlx5_set_query_alarm(struct mlx5_dev_ctx_shared *sh)
9691 : : {
9692 : : uint32_t pools_n, us;
9693 : :
9694 : 0 : pools_n = rte_atomic_load_explicit(&sh->sws_cmng.n_valid, rte_memory_order_relaxed);
9695 : 0 : us = MLX5_POOL_QUERY_FREQ_US / pools_n;
9696 : 0 : DRV_LOG(DEBUG, "Set alarm for %u pools each %u us", pools_n, us);
9697 [ # # ]: 0 : if (rte_eal_alarm_set(us, mlx5_flow_query_alarm, sh)) {
9698 : 0 : sh->sws_cmng.query_thread_on = 0;
9699 : 0 : DRV_LOG(ERR, "Cannot reinitialize query alarm");
9700 : : } else {
9701 : 0 : sh->sws_cmng.query_thread_on = 1;
9702 : : }
9703 : 0 : }
9704 : :
9705 : : /**
9706 : : * The periodic procedure for triggering asynchronous batch queries for all the
9707 : : * counter pools. This function is probably called by the host thread.
9708 : : *
9709 : : * @param[in] arg
9710 : : * The parameter for the alarm process.
9711 : : */
9712 : : void
9713 : 0 : mlx5_flow_query_alarm(void *arg)
9714 : : {
9715 : : struct mlx5_dev_ctx_shared *sh = arg;
9716 : : struct mlx5_flow_counter_mng *cmng = &sh->sws_cmng;
9717 : 0 : uint16_t pool_index = cmng->pool_index;
9718 : : struct mlx5_flow_counter_pool *pool;
9719 : : uint16_t n_valid;
9720 : : int ret;
9721 : :
9722 [ # # ]: 0 : if (cmng->pending_queries >= MLX5_MAX_PENDING_QUERIES)
9723 : 0 : goto set_alarm;
9724 : 0 : rte_spinlock_lock(&cmng->pool_update_sl);
9725 : 0 : pool = cmng->pools[pool_index];
9726 : 0 : n_valid = cmng->n_valid;
9727 : : rte_spinlock_unlock(&cmng->pool_update_sl);
9728 : : /* Set the statistic memory to the new created pool. */
9729 [ # # # # ]: 0 : if ((!pool->raw && mlx5_flow_set_counter_stat_mem(sh, pool)))
9730 : 0 : goto set_alarm;
9731 [ # # ]: 0 : if (pool->raw_hw)
9732 : : /* There is a pool query in progress. */
9733 : 0 : goto set_alarm;
9734 : 0 : pool->raw_hw = LIST_FIRST(&cmng->free_stat_raws);
9735 [ # # ]: 0 : if (!pool->raw_hw)
9736 : : /* No free counter statistics raw memory. */
9737 : 0 : goto set_alarm;
9738 : : /*
9739 : : * Identify the counters released between query trigger and query
9740 : : * handle more efficiently. The counter released in this gap period
9741 : : * should wait for a new round of query as the new arrived packets
9742 : : * will not be taken into account.
9743 : : */
9744 : 0 : pool->query_gen++;
9745 : 0 : ret = mlx5_devx_cmd_flow_counter_query(pool->min_dcs, 0,
9746 : : MLX5_COUNTERS_PER_POOL,
9747 : : NULL, NULL,
9748 : 0 : pool->raw_hw->mem_mng->wm.lkey,
9749 : : (void *)(uintptr_t)
9750 : 0 : pool->raw_hw->data,
9751 : : sh->devx_comp,
9752 : : (uint64_t)(uintptr_t)pool);
9753 [ # # ]: 0 : if (ret) {
9754 : 0 : DRV_LOG(ERR, "Failed to trigger asynchronous query for dcs ID"
9755 : : " %d", pool->min_dcs->id);
9756 : 0 : pool->raw_hw = NULL;
9757 : 0 : goto set_alarm;
9758 : : }
9759 [ # # ]: 0 : LIST_REMOVE(pool->raw_hw, next);
9760 : 0 : cmng->pending_queries++;
9761 : 0 : pool_index++;
9762 [ # # ]: 0 : if (pool_index >= n_valid)
9763 : : pool_index = 0;
9764 : 0 : set_alarm:
9765 : 0 : cmng->pool_index = pool_index;
9766 : 0 : mlx5_set_query_alarm(sh);
9767 : 0 : }
9768 : :
9769 : : /**
9770 : : * Check and callback event for new aged flow in the counter pool
9771 : : *
9772 : : * @param[in] sh
9773 : : * Pointer to mlx5_dev_ctx_shared object.
9774 : : * @param[in] pool
9775 : : * Pointer to Current counter pool.
9776 : : */
9777 : : static void
9778 : 0 : mlx5_flow_aging_check(struct mlx5_dev_ctx_shared *sh,
9779 : : struct mlx5_flow_counter_pool *pool)
9780 : : {
9781 : : struct mlx5_priv *priv;
9782 : : struct mlx5_flow_counter *cnt;
9783 : : struct mlx5_age_info *age_info;
9784 : : struct mlx5_age_param *age_param;
9785 : 0 : struct mlx5_counter_stats_raw *cur = pool->raw_hw;
9786 : 0 : struct mlx5_counter_stats_raw *prev = pool->raw;
9787 : 0 : const uint64_t curr_time = MLX5_CURR_TIME_SEC;
9788 : 0 : const uint32_t time_delta = curr_time - pool->time_of_last_age_check;
9789 : : uint16_t expected = AGE_CANDIDATE;
9790 : : uint32_t i;
9791 : :
9792 : 0 : pool->time_of_last_age_check = curr_time;
9793 [ # # ]: 0 : for (i = 0; i < MLX5_COUNTERS_PER_POOL; ++i) {
9794 [ # # ]: 0 : cnt = MLX5_POOL_GET_CNT(pool, i);
9795 : : age_param = MLX5_CNT_TO_AGE(cnt);
9796 [ # # ]: 0 : if (rte_atomic_load_explicit(&age_param->state,
9797 : : rte_memory_order_relaxed) != AGE_CANDIDATE)
9798 : 0 : continue;
9799 [ # # ]: 0 : if (cur->data[i].hits != prev->data[i].hits) {
9800 : 0 : rte_atomic_store_explicit(&age_param->sec_since_last_hit, 0,
9801 : : rte_memory_order_relaxed);
9802 : 0 : continue;
9803 : : }
9804 : 0 : if (rte_atomic_fetch_add_explicit(&age_param->sec_since_last_hit,
9805 : : time_delta,
9806 [ # # ]: 0 : rte_memory_order_relaxed) + time_delta <= age_param->timeout)
9807 : 0 : continue;
9808 : : /**
9809 : : * Hold the lock first, or if between the
9810 : : * state AGE_TMOUT and tailq operation the
9811 : : * release happened, the release procedure
9812 : : * may delete a non-existent tailq node.
9813 : : */
9814 : 0 : priv = rte_eth_devices[age_param->port_id].data->dev_private;
9815 : 0 : age_info = GET_PORT_AGE_INFO(priv);
9816 : 0 : rte_spinlock_lock(&age_info->aged_sl);
9817 [ # # ]: 0 : if (rte_atomic_compare_exchange_strong_explicit(&age_param->state, &expected,
9818 : : AGE_TMOUT,
9819 : : rte_memory_order_relaxed,
9820 : : rte_memory_order_relaxed)) {
9821 : 0 : TAILQ_INSERT_TAIL(&age_info->aged_counters, cnt, next);
9822 : 0 : MLX5_AGE_SET(age_info, MLX5_AGE_EVENT_NEW);
9823 : : }
9824 : : rte_spinlock_unlock(&age_info->aged_sl);
9825 : : }
9826 : 0 : mlx5_age_event_prepare(sh);
9827 : 0 : }
9828 : :
9829 : : /**
9830 : : * Handler for the HW respond about ready values from an asynchronous batch
9831 : : * query. This function is probably called by the host thread.
9832 : : *
9833 : : * @param[in] sh
9834 : : * The pointer to the shared device context.
9835 : : * @param[in] async_id
9836 : : * The Devx async ID.
9837 : : * @param[in] status
9838 : : * The status of the completion.
9839 : : */
9840 : : void
9841 : 0 : mlx5_flow_async_pool_query_handle(struct mlx5_dev_ctx_shared *sh,
9842 : : uint64_t async_id, int status)
9843 : : {
9844 : 0 : struct mlx5_flow_counter_pool *pool =
9845 : : (struct mlx5_flow_counter_pool *)(uintptr_t)async_id;
9846 : : struct mlx5_counter_stats_raw *raw_to_free;
9847 : 0 : uint8_t query_gen = pool->query_gen ^ 1;
9848 : : struct mlx5_flow_counter_mng *cmng = &sh->sws_cmng;
9849 : 0 : enum mlx5_counter_type cnt_type =
9850 : 0 : pool->is_aged ? MLX5_COUNTER_TYPE_AGE :
9851 : : MLX5_COUNTER_TYPE_ORIGIN;
9852 : :
9853 [ # # ]: 0 : if (unlikely(status)) {
9854 : 0 : raw_to_free = pool->raw_hw;
9855 : : } else {
9856 : 0 : raw_to_free = pool->raw;
9857 [ # # ]: 0 : if (pool->is_aged)
9858 : 0 : mlx5_flow_aging_check(sh, pool);
9859 : 0 : rte_spinlock_lock(&pool->sl);
9860 : 0 : pool->raw = pool->raw_hw;
9861 : : rte_spinlock_unlock(&pool->sl);
9862 : : /* Be sure the new raw counters data is updated in memory. */
9863 : 0 : rte_io_wmb();
9864 [ # # ]: 0 : if (!TAILQ_EMPTY(&pool->counters[query_gen])) {
9865 : 0 : rte_spinlock_lock(&cmng->csl[cnt_type]);
9866 [ # # ]: 0 : TAILQ_CONCAT(&cmng->counters[cnt_type],
9867 : : &pool->counters[query_gen], next);
9868 : : rte_spinlock_unlock(&cmng->csl[cnt_type]);
9869 : : }
9870 : : }
9871 [ # # ]: 0 : LIST_INSERT_HEAD(&sh->sws_cmng.free_stat_raws, raw_to_free, next);
9872 : 0 : pool->raw_hw = NULL;
9873 : 0 : sh->sws_cmng.pending_queries--;
9874 : 0 : }
9875 : :
9876 : : static int
9877 : 0 : flow_group_to_table(uint32_t port_id, uint32_t group, uint32_t *table,
9878 : : const struct flow_grp_info *grp_info,
9879 : : struct rte_flow_error *error)
9880 : : {
9881 [ # # ]: 0 : if (grp_info->transfer && grp_info->external &&
9882 : : grp_info->fdb_def_rule) {
9883 [ # # ]: 0 : if (group == UINT32_MAX)
9884 : 0 : return rte_flow_error_set
9885 : : (error, EINVAL,
9886 : : RTE_FLOW_ERROR_TYPE_ATTR_GROUP,
9887 : : NULL,
9888 : : "group index not supported");
9889 : 0 : *table = group + 1;
9890 : : } else {
9891 : 0 : *table = group;
9892 : : }
9893 : 0 : DRV_LOG(DEBUG, "port %u group=%#x table=%#x", port_id, group, *table);
9894 : 0 : return 0;
9895 : : }
9896 : :
9897 : : /**
9898 : : * Translate the rte_flow group index to HW table value.
9899 : : *
9900 : : * If tunnel offload is disabled, all group ids converted to flow table
9901 : : * id using the standard method.
9902 : : * If tunnel offload is enabled, group id can be converted using the
9903 : : * standard or tunnel conversion method. Group conversion method
9904 : : * selection depends on flags in `grp_info` parameter:
9905 : : * - Internal (grp_info.external == 0) groups conversion uses the
9906 : : * standard method.
9907 : : * - Group ids in JUMP action converted with the tunnel conversion.
9908 : : * - Group id in rule attribute conversion depends on a rule type and
9909 : : * group id value:
9910 : : * ** non zero group attributes converted with the tunnel method
9911 : : * ** zero group attribute in non-tunnel rule is converted using the
9912 : : * standard method - there's only one root table
9913 : : * ** zero group attribute in steer tunnel rule is converted with the
9914 : : * standard method - single root table
9915 : : * ** zero group attribute in match tunnel rule is a special OvS
9916 : : * case: that value is used for portability reasons. That group
9917 : : * id is converted with the tunnel conversion method.
9918 : : *
9919 : : * @param[in] dev
9920 : : * Port device
9921 : : * @param[in] tunnel
9922 : : * PMD tunnel offload object
9923 : : * @param[in] group
9924 : : * rte_flow group index value.
9925 : : * @param[out] table
9926 : : * HW table value.
9927 : : * @param[in] grp_info
9928 : : * flags used for conversion
9929 : : * @param[out] error
9930 : : * Pointer to error structure.
9931 : : *
9932 : : * @return
9933 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
9934 : : */
9935 : : int
9936 : 0 : mlx5_flow_group_to_table(struct rte_eth_dev *dev,
9937 : : const struct mlx5_flow_tunnel *tunnel,
9938 : : uint32_t group, uint32_t *table,
9939 : : const struct flow_grp_info *grp_info,
9940 : : struct rte_flow_error *error)
9941 : : {
9942 : : int ret;
9943 : : bool standard_translation;
9944 : :
9945 [ # # # # ]: 0 : if (!grp_info->skip_scale && grp_info->external &&
9946 : : group < MLX5_MAX_TABLES_EXTERNAL)
9947 : 0 : group *= MLX5_FLOW_TABLE_FACTOR;
9948 [ # # ]: 0 : if (is_tunnel_offload_active(dev)) {
9949 : 0 : standard_translation = !grp_info->external ||
9950 : : grp_info->std_tbl_fix;
9951 : : } else {
9952 : : standard_translation = true;
9953 : : }
9954 [ # # ]: 0 : DRV_LOG(DEBUG,
9955 : : "port %u group=%u transfer=%d external=%d fdb_def_rule=%d translate=%s",
9956 : : dev->data->port_id, group, grp_info->transfer,
9957 : : grp_info->external, grp_info->fdb_def_rule,
9958 : : standard_translation ? "STANDARD" : "TUNNEL");
9959 [ # # ]: 0 : if (standard_translation)
9960 : 0 : ret = flow_group_to_table(dev->data->port_id, group, table,
9961 : : grp_info, error);
9962 : : else
9963 : 0 : ret = tunnel_flow_group_to_flow_table(dev, tunnel, group,
9964 : : table, error);
9965 : :
9966 : 0 : return ret;
9967 : : }
9968 : :
9969 : : /**
9970 : : * Discover availability of metadata reg_c's.
9971 : : *
9972 : : * Iteratively use test flows to check availability.
9973 : : *
9974 : : * @param[in] dev
9975 : : * Pointer to the Ethernet device structure.
9976 : : *
9977 : : * @return
9978 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
9979 : : */
9980 : : int
9981 : 0 : mlx5_flow_discover_mreg_c(struct rte_eth_dev *dev)
9982 : : {
9983 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
9984 : : enum modify_reg idx;
9985 : : int n = 0;
9986 : :
9987 : : /* reg_c[0] and reg_c[1] are reserved. */
9988 : 0 : priv->sh->flow_mreg_c[n++] = REG_C_0;
9989 : 0 : priv->sh->flow_mreg_c[n++] = REG_C_1;
9990 : : /* Discover availability of other reg_c's. */
9991 [ # # ]: 0 : for (idx = REG_C_2; idx <= REG_C_7; ++idx) {
9992 : 0 : struct rte_flow_attr attr = {
9993 : : .group = MLX5_FLOW_MREG_CP_TABLE_GROUP,
9994 : : .priority = MLX5_FLOW_LOWEST_PRIO_INDICATOR,
9995 : : .ingress = 1,
9996 : : };
9997 : 0 : struct rte_flow_item items[] = {
9998 : : [0] = {
9999 : : .type = RTE_FLOW_ITEM_TYPE_END,
10000 : : },
10001 : : };
10002 : 0 : struct rte_flow_action actions[] = {
10003 : : [0] = {
10004 : : .type = (enum rte_flow_action_type)
10005 : : MLX5_RTE_FLOW_ACTION_TYPE_COPY_MREG,
10006 : 0 : .conf = &(struct mlx5_flow_action_copy_mreg){
10007 : : .src = REG_C_1,
10008 : : .dst = idx,
10009 : : },
10010 : : },
10011 : : [1] = {
10012 : : .type = RTE_FLOW_ACTION_TYPE_JUMP,
10013 : 0 : .conf = &(struct rte_flow_action_jump){
10014 : : .group = MLX5_FLOW_MREG_ACT_TABLE_GROUP,
10015 : : },
10016 : : },
10017 : : [2] = {
10018 : : .type = RTE_FLOW_ACTION_TYPE_END,
10019 : : },
10020 : : };
10021 : : uint32_t flow_idx;
10022 : : struct rte_flow *flow;
10023 : : struct rte_flow_error error;
10024 : :
10025 [ # # ]: 0 : if (!priv->sh->config.dv_flow_en)
10026 : : break;
10027 : : /* Create internal flow, validation skips copy action. */
10028 : 0 : flow_idx = mlx5_flow_list_create(dev, MLX5_FLOW_TYPE_GEN, &attr,
10029 : : items, actions, false, &error);
10030 : 0 : flow = mlx5_ipool_get(priv->flows[MLX5_FLOW_TYPE_GEN],
10031 : : flow_idx);
10032 [ # # ]: 0 : if (!flow)
10033 : 0 : continue;
10034 : 0 : priv->sh->flow_mreg_c[n++] = idx;
10035 : 0 : mlx5_flow_list_destroy(dev, MLX5_FLOW_TYPE_GEN, flow_idx);
10036 : : }
10037 [ # # ]: 0 : for (; n < MLX5_MREG_C_NUM; ++n)
10038 : 0 : priv->sh->flow_mreg_c[n] = REG_NON;
10039 : 0 : priv->sh->metadata_regc_check_flag = 1;
10040 : 0 : return 0;
10041 : : }
10042 : :
10043 : : int
10044 [ # # # # ]: 0 : save_dump_file(const uint8_t *data, uint32_t size,
10045 : : uint32_t type, uint64_t id, void *arg, FILE *file)
10046 : : {
10047 : : char line[BUF_SIZE];
10048 : : uint32_t out = 0;
10049 : : uint32_t k;
10050 : : uint32_t actions_num;
10051 : : struct rte_flow_query_count *count;
10052 : :
10053 : : memset(line, 0, BUF_SIZE);
10054 [ # # # # ]: 0 : switch (type) {
10055 : 0 : case DR_DUMP_REC_TYPE_PMD_MODIFY_HDR:
10056 : 0 : actions_num = *(uint32_t *)(arg);
10057 : 0 : out += snprintf(line + out, BUF_SIZE - out, "%d,0x%" PRIx64 ",%d,",
10058 : : type, id, actions_num);
10059 : 0 : break;
10060 : 0 : case DR_DUMP_REC_TYPE_PMD_PKT_REFORMAT:
10061 : 0 : out += snprintf(line + out, BUF_SIZE - out, "%d,0x%" PRIx64 ",",
10062 : : type, id);
10063 : 0 : break;
10064 : 0 : case DR_DUMP_REC_TYPE_PMD_COUNTER:
10065 : : count = (struct rte_flow_query_count *)arg;
10066 : 0 : fprintf(file,
10067 : : "%d,0x%" PRIx64 ",%" PRIu64 ",%" PRIu64 "\n",
10068 : : type, id, count->hits, count->bytes);
10069 : 0 : return 0;
10070 : : default:
10071 : : return -1;
10072 : : }
10073 : :
10074 [ # # ]: 0 : for (k = 0; k < size; k++) {
10075 : : /* Make sure we do not overrun the line buffer length. */
10076 [ # # ]: 0 : if (out >= BUF_SIZE - 4) {
10077 : 0 : line[out] = '\0';
10078 : 0 : break;
10079 : : }
10080 : 0 : out += snprintf(line + out, BUF_SIZE - out, "%02x",
10081 : 0 : (data[k]) & 0xff);
10082 : : }
10083 : : fprintf(file, "%s\n", line);
10084 : 0 : return 0;
10085 : : }
10086 : :
10087 : : int
10088 : 0 : mlx5_flow_query_counter(struct rte_eth_dev *dev, struct rte_flow *flow,
10089 : : struct rte_flow_query_count *count, struct rte_flow_error *error)
10090 : : {
10091 : : struct rte_flow_action action[2];
10092 : : enum mlx5_flow_drv_type ftype;
10093 : : const struct mlx5_flow_driver_ops *fops;
10094 : :
10095 [ # # ]: 0 : if (!flow) {
10096 : 0 : return rte_flow_error_set(error, ENOENT,
10097 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
10098 : : NULL,
10099 : : "invalid flow handle");
10100 : : }
10101 : 0 : action[0].type = RTE_FLOW_ACTION_TYPE_COUNT;
10102 : 0 : action[1].type = RTE_FLOW_ACTION_TYPE_END;
10103 [ # # ]: 0 : if (flow->counter) {
10104 : : memset(count, 0, sizeof(struct rte_flow_query_count));
10105 : 0 : ftype = (enum mlx5_flow_drv_type)(flow->drv_type);
10106 : : MLX5_ASSERT(ftype > MLX5_FLOW_TYPE_MIN &&
10107 : : ftype < MLX5_FLOW_TYPE_MAX);
10108 : 0 : fops = flow_get_drv_ops(ftype);
10109 : 0 : return fops->query(dev, flow, action, count, error);
10110 : : }
10111 : : return -1;
10112 : : }
10113 : :
10114 : : #ifdef HAVE_IBV_FLOW_DV_SUPPORT
10115 : : /**
10116 : : * Dump flow ipool data to file
10117 : : *
10118 : : * @param[in] dev
10119 : : * The pointer to Ethernet device.
10120 : : * @param[in] file
10121 : : * A pointer to a file for output.
10122 : : * @param[out] error
10123 : : * Perform verbose error reporting if not NULL. PMDs initialize this
10124 : : * structure in case of error only.
10125 : : * @return
10126 : : * 0 on success, a negative value otherwise.
10127 : : */
10128 : : int
10129 : 0 : mlx5_flow_dev_dump_ipool(struct rte_eth_dev *dev,
10130 : : struct rte_flow *flow, FILE *file,
10131 : : struct rte_flow_error *error)
10132 : : {
10133 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
10134 : : struct mlx5_flow_dv_modify_hdr_resource *modify_hdr;
10135 : : struct mlx5_flow_dv_encap_decap_resource *encap_decap;
10136 : : uint32_t handle_idx;
10137 : : struct mlx5_flow_handle *dh;
10138 : : struct rte_flow_query_count count;
10139 : : uint32_t actions_num;
10140 : : const uint8_t *data;
10141 : : size_t size;
10142 : : uint64_t id;
10143 : : uint32_t type;
10144 : 0 : void *action = NULL;
10145 : :
10146 [ # # ]: 0 : if (!flow) {
10147 : 0 : return rte_flow_error_set(error, ENOENT,
10148 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
10149 : : NULL,
10150 : : "invalid flow handle");
10151 : : }
10152 : 0 : handle_idx = flow->dev_handles;
10153 : : /* query counter */
10154 [ # # # # ]: 0 : if (flow->counter &&
10155 : 0 : (!mlx5_counter_query(dev, flow->counter, false,
10156 [ # # ]: 0 : &count.hits, &count.bytes, &action)) && action) {
10157 : 0 : id = (uint64_t)(uintptr_t)action;
10158 : : type = DR_DUMP_REC_TYPE_PMD_COUNTER;
10159 : 0 : save_dump_file(NULL, 0, type,
10160 : : id, (void *)&count, file);
10161 : : }
10162 : :
10163 [ # # ]: 0 : while (handle_idx) {
10164 : 0 : dh = mlx5_ipool_get(priv->sh->ipool
10165 : : [MLX5_IPOOL_MLX5_FLOW], handle_idx);
10166 [ # # ]: 0 : if (!dh)
10167 : 0 : continue;
10168 : 0 : handle_idx = dh->next.next;
10169 : :
10170 : : /* Get modify_hdr and encap_decap buf from ipools. */
10171 : : encap_decap = NULL;
10172 : 0 : modify_hdr = dh->dvh.modify_hdr;
10173 : :
10174 [ # # ]: 0 : if (dh->dvh.rix_encap_decap) {
10175 : 0 : encap_decap = mlx5_ipool_get(priv->sh->ipool
10176 : : [MLX5_IPOOL_DECAP_ENCAP],
10177 : : dh->dvh.rix_encap_decap);
10178 : : }
10179 [ # # ]: 0 : if (modify_hdr) {
10180 : 0 : data = (const uint8_t *)modify_hdr->actions;
10181 : 0 : size = (size_t)(modify_hdr->actions_num) * 8;
10182 : 0 : id = (uint64_t)(uintptr_t)modify_hdr->action;
10183 : 0 : actions_num = modify_hdr->actions_num;
10184 : : type = DR_DUMP_REC_TYPE_PMD_MODIFY_HDR;
10185 : 0 : save_dump_file(data, size, type, id,
10186 : : (void *)(&actions_num), file);
10187 : : }
10188 [ # # ]: 0 : if (encap_decap) {
10189 : 0 : data = encap_decap->buf;
10190 : 0 : size = encap_decap->size;
10191 : 0 : id = (uint64_t)(uintptr_t)encap_decap->action;
10192 : : type = DR_DUMP_REC_TYPE_PMD_PKT_REFORMAT;
10193 : 0 : save_dump_file(data, size, type,
10194 : : id, NULL, file);
10195 : : }
10196 : : }
10197 : : return 0;
10198 : : }
10199 : :
10200 : : /**
10201 : : * Dump all flow's encap_decap/modify_hdr/counter data to file
10202 : : *
10203 : : * @param[in] dev
10204 : : * The pointer to Ethernet device.
10205 : : * @param[in] file
10206 : : * A pointer to a file for output.
10207 : : * @param[out] error
10208 : : * Perform verbose error reporting if not NULL. PMDs initialize this
10209 : : * structure in case of error only.
10210 : : * @return
10211 : : * 0 on success, a negative value otherwise.
10212 : : */
10213 : : static int
10214 : 0 : mlx5_flow_dev_dump_sh_all(struct rte_eth_dev *dev,
10215 : : FILE *file, struct rte_flow_error *error __rte_unused)
10216 : : {
10217 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
10218 : 0 : struct mlx5_dev_ctx_shared *sh = priv->sh;
10219 : : struct mlx5_hlist *h;
10220 : : struct mlx5_flow_dv_modify_hdr_resource *modify_hdr;
10221 : : struct mlx5_flow_dv_encap_decap_resource *encap_decap;
10222 : : struct rte_flow_query_count count;
10223 : : uint32_t actions_num;
10224 : : const uint8_t *data;
10225 : : size_t size;
10226 : : uint64_t id;
10227 : : uint32_t type;
10228 : : uint32_t i;
10229 : : uint32_t j;
10230 : : struct mlx5_list_inconst *l_inconst;
10231 : : struct mlx5_list_entry *e;
10232 : : int lcore_index;
10233 : : struct mlx5_flow_counter_mng *cmng = &priv->sh->sws_cmng;
10234 : : uint32_t max;
10235 : : void *action;
10236 : :
10237 : : /* encap_decap hlist is lcore_share, get global core cache. */
10238 : : i = MLX5_LIST_GLOBAL;
10239 : 0 : h = sh->encaps_decaps;
10240 [ # # ]: 0 : if (h) {
10241 [ # # ]: 0 : for (j = 0; j <= h->mask; j++) {
10242 : : l_inconst = &h->buckets[j].l;
10243 [ # # ]: 0 : if (!l_inconst || !l_inconst->cache[i])
10244 : 0 : continue;
10245 : :
10246 : 0 : e = LIST_FIRST(&l_inconst->cache[i]->h);
10247 [ # # ]: 0 : while (e) {
10248 : : encap_decap =
10249 : : (struct mlx5_flow_dv_encap_decap_resource *)e;
10250 : 0 : data = encap_decap->buf;
10251 : 0 : size = encap_decap->size;
10252 : 0 : id = (uint64_t)(uintptr_t)encap_decap->action;
10253 : : type = DR_DUMP_REC_TYPE_PMD_PKT_REFORMAT;
10254 : 0 : save_dump_file(data, size, type,
10255 : : id, NULL, file);
10256 : 0 : e = LIST_NEXT(e, next);
10257 : : }
10258 : : }
10259 : : }
10260 : :
10261 : : /* get modify_hdr */
10262 : 0 : h = sh->modify_cmds;
10263 [ # # ]: 0 : if (h) {
10264 : 0 : lcore_index = rte_lcore_index(rte_lcore_id());
10265 [ # # ]: 0 : if (unlikely(lcore_index == -1)) {
10266 : : lcore_index = MLX5_LIST_NLCORE;
10267 : 0 : rte_spinlock_lock(&h->l_const.lcore_lock);
10268 : : }
10269 : 0 : i = lcore_index;
10270 : :
10271 [ # # ]: 0 : if (lcore_index == MLX5_LIST_NLCORE) {
10272 [ # # ]: 0 : for (i = 0; i <= (uint32_t)lcore_index; i++) {
10273 [ # # ]: 0 : for (j = 0; j <= h->mask; j++) {
10274 : : l_inconst = &h->buckets[j].l;
10275 [ # # ]: 0 : if (!l_inconst || !l_inconst->cache[i])
10276 : 0 : continue;
10277 : :
10278 : 0 : e = LIST_FIRST(&l_inconst->cache[i]->h);
10279 [ # # ]: 0 : while (e) {
10280 : : modify_hdr =
10281 : : (struct mlx5_flow_dv_modify_hdr_resource *)e;
10282 : 0 : data = (const uint8_t *)modify_hdr->actions;
10283 : 0 : size = (size_t)(modify_hdr->actions_num) * 8;
10284 : 0 : actions_num = modify_hdr->actions_num;
10285 : 0 : id = (uint64_t)(uintptr_t)modify_hdr->action;
10286 : : type = DR_DUMP_REC_TYPE_PMD_MODIFY_HDR;
10287 : 0 : save_dump_file(data, size, type, id,
10288 : : (void *)(&actions_num), file);
10289 : 0 : e = LIST_NEXT(e, next);
10290 : : }
10291 : : }
10292 : : }
10293 : : } else {
10294 [ # # ]: 0 : for (j = 0; j <= h->mask; j++) {
10295 : : l_inconst = &h->buckets[j].l;
10296 [ # # ]: 0 : if (!l_inconst || !l_inconst->cache[i])
10297 : 0 : continue;
10298 : :
10299 : 0 : e = LIST_FIRST(&l_inconst->cache[i]->h);
10300 [ # # ]: 0 : while (e) {
10301 : : modify_hdr =
10302 : : (struct mlx5_flow_dv_modify_hdr_resource *)e;
10303 : 0 : data = (const uint8_t *)modify_hdr->actions;
10304 : 0 : size = (size_t)(modify_hdr->actions_num) * 8;
10305 : 0 : actions_num = modify_hdr->actions_num;
10306 : 0 : id = (uint64_t)(uintptr_t)modify_hdr->action;
10307 : : type = DR_DUMP_REC_TYPE_PMD_MODIFY_HDR;
10308 : 0 : save_dump_file(data, size, type, id,
10309 : : (void *)(&actions_num), file);
10310 : 0 : e = LIST_NEXT(e, next);
10311 : : }
10312 : : }
10313 : : }
10314 : :
10315 [ # # ]: 0 : if (unlikely(lcore_index == MLX5_LIST_NLCORE))
10316 : 0 : rte_spinlock_unlock(&h->l_const.lcore_lock);
10317 : : }
10318 : :
10319 : : /* get counter */
10320 : : MLX5_ASSERT(cmng->n_valid <= MLX5_COUNTER_POOLS_MAX_NUM);
10321 : 0 : max = MLX5_COUNTERS_PER_POOL * cmng->n_valid;
10322 [ # # ]: 0 : for (j = 1; j <= max; j++) {
10323 : 0 : action = NULL;
10324 [ # # ]: 0 : if ((!mlx5_counter_query(dev, j, false, &count.hits,
10325 [ # # ]: 0 : &count.bytes, &action)) && action) {
10326 : 0 : id = (uint64_t)(uintptr_t)action;
10327 : : type = DR_DUMP_REC_TYPE_PMD_COUNTER;
10328 : 0 : save_dump_file(NULL, 0, type,
10329 : : id, (void *)&count, file);
10330 : : }
10331 : : }
10332 : 0 : return 0;
10333 : : }
10334 : : #endif
10335 : :
10336 : : /**
10337 : : * Dump flow raw hw data to file
10338 : : *
10339 : : * @param[in] dev
10340 : : * The pointer to Ethernet device.
10341 : : * @param[in] file
10342 : : * A pointer to a file for output.
10343 : : * @param[out] error
10344 : : * Perform verbose error reporting if not NULL. PMDs initialize this
10345 : : * structure in case of error only.
10346 : : * @return
10347 : : * 0 on success, a negative value otherwise.
10348 : : */
10349 : : int
10350 : 0 : mlx5_flow_dev_dump(struct rte_eth_dev *dev, struct rte_flow *flow_idx,
10351 : : FILE *file,
10352 : : struct rte_flow_error *error __rte_unused)
10353 : : {
10354 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
10355 : 0 : struct mlx5_dev_ctx_shared *sh = priv->sh;
10356 : : uint32_t handle_idx;
10357 : : int ret;
10358 : : struct mlx5_flow_handle *dh;
10359 : : struct rte_flow *flow;
10360 : :
10361 [ # # ]: 0 : if (!sh->config.dv_flow_en) {
10362 [ # # ]: 0 : if (fputs("device dv flow disabled\n", file) <= 0)
10363 : 0 : return -errno;
10364 : : return -ENOTSUP;
10365 : : }
10366 : :
10367 : : /* dump all */
10368 [ # # ]: 0 : if (!flow_idx) {
10369 : : #ifdef HAVE_IBV_FLOW_DV_SUPPORT
10370 [ # # ]: 0 : if (mlx5_flow_dev_dump_sh_all(dev, file, error))
10371 : : return -EINVAL;
10372 : :
10373 [ # # ]: 0 : if (sh->config.dv_flow_en == 2)
10374 : 0 : return mlx5dr_debug_dump(priv->dr_ctx, file);
10375 : : #endif
10376 : 0 : return mlx5_devx_cmd_flow_dump(sh->fdb_domain,
10377 : : sh->rx_domain,
10378 : : sh->tx_domain, file);
10379 : : }
10380 : : /* dump one */
10381 : 0 : flow = mlx5_ipool_get(priv->flows[MLX5_FLOW_TYPE_GEN],
10382 : : (uintptr_t)(void *)flow_idx);
10383 [ # # ]: 0 : if (!flow)
10384 : : return -EINVAL;
10385 : :
10386 : : #ifdef HAVE_IBV_FLOW_DV_SUPPORT
10387 : 0 : mlx5_flow_dev_dump_ipool(dev, flow, file, error);
10388 : : #endif
10389 : 0 : handle_idx = flow->dev_handles;
10390 [ # # ]: 0 : while (handle_idx) {
10391 : 0 : dh = mlx5_ipool_get(priv->sh->ipool[MLX5_IPOOL_MLX5_FLOW],
10392 : : handle_idx);
10393 [ # # ]: 0 : if (!dh)
10394 : : return -ENOENT;
10395 [ # # ]: 0 : if (dh->drv_flow) {
10396 [ # # ]: 0 : if (sh->config.dv_flow_en == 2)
10397 : : return -ENOTSUP;
10398 : :
10399 : 0 : ret = mlx5_devx_cmd_flow_single_dump(dh->drv_flow,
10400 : : file);
10401 [ # # ]: 0 : if (ret)
10402 : : return -ENOENT;
10403 : : }
10404 : 0 : handle_idx = dh->next.next;
10405 : : }
10406 : : return 0;
10407 : : }
10408 : :
10409 : : /**
10410 : : * Get aged-out flows.
10411 : : *
10412 : : * @param[in] dev
10413 : : * Pointer to the Ethernet device structure.
10414 : : * @param[in] context
10415 : : * The address of an array of pointers to the aged-out flows contexts.
10416 : : * @param[in] nb_countexts
10417 : : * The length of context array pointers.
10418 : : * @param[out] error
10419 : : * Perform verbose error reporting if not NULL. Initialized in case of
10420 : : * error only.
10421 : : *
10422 : : * @return
10423 : : * how many contexts get in success, otherwise negative errno value.
10424 : : * if nb_contexts is 0, return the amount of all aged contexts.
10425 : : * if nb_contexts is not 0 , return the amount of aged flows reported
10426 : : * in the context array.
10427 : : */
10428 : : int
10429 [ # # ]: 0 : mlx5_flow_get_aged_flows(struct rte_eth_dev *dev, void **contexts,
10430 : : uint32_t nb_contexts, struct rte_flow_error *error)
10431 : : {
10432 : : struct rte_flow_attr attr = { .transfer = 0 };
10433 : :
10434 : 0 : return flow_get_drv_ops(flow_get_drv_type(dev, &attr))->get_aged_flows
10435 : : (dev, contexts, nb_contexts, error);
10436 : : }
10437 : :
10438 : : /**
10439 : : * Get aged-out flows per HWS queue.
10440 : : *
10441 : : * @param[in] dev
10442 : : * Pointer to the Ethernet device structure.
10443 : : * @param[in] queue_id
10444 : : * Flow queue to query.
10445 : : * @param[in] context
10446 : : * The address of an array of pointers to the aged-out flows contexts.
10447 : : * @param[in] nb_countexts
10448 : : * The length of context array pointers.
10449 : : * @param[out] error
10450 : : * Perform verbose error reporting if not NULL. Initialized in case of
10451 : : * error only.
10452 : : *
10453 : : * @return
10454 : : * how many contexts get in success, otherwise negative errno value.
10455 : : * if nb_contexts is 0, return the amount of all aged contexts.
10456 : : * if nb_contexts is not 0 , return the amount of aged flows reported
10457 : : * in the context array.
10458 : : */
10459 : : int
10460 [ # # ]: 0 : mlx5_flow_get_q_aged_flows(struct rte_eth_dev *dev, uint32_t queue_id,
10461 : : void **contexts, uint32_t nb_contexts,
10462 : : struct rte_flow_error *error)
10463 : : {
10464 : : const struct mlx5_flow_driver_ops *fops;
10465 : : struct rte_flow_attr attr = { 0 };
10466 : :
10467 : : if (flow_get_drv_type(dev, &attr) == MLX5_FLOW_TYPE_HW) {
10468 : 0 : fops = flow_get_drv_ops(MLX5_FLOW_TYPE_HW);
10469 : 0 : return fops->get_q_aged_flows(dev, queue_id, contexts,
10470 : : nb_contexts, error);
10471 : : }
10472 : 0 : DRV_LOG(ERR, "port %u queue %u get aged flows is not supported.",
10473 : : dev->data->port_id, queue_id);
10474 : 0 : return rte_flow_error_set(error, ENOTSUP,
10475 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
10476 : : "get Q aged flows with incorrect steering mode");
10477 : : }
10478 : :
10479 : : /* Wrapper for driver action_validate op callback */
10480 : : static int
10481 : 0 : flow_drv_action_validate(struct rte_eth_dev *dev,
10482 : : const struct rte_flow_indir_action_conf *conf,
10483 : : const struct rte_flow_action *action,
10484 : : const struct mlx5_flow_driver_ops *fops,
10485 : : struct rte_flow_error *error)
10486 : : {
10487 : : static const char err_msg[] = "indirect action validation unsupported";
10488 : :
10489 [ # # ]: 0 : if (!fops->action_validate) {
10490 : 0 : DRV_LOG(ERR, "port %u %s.", dev->data->port_id, err_msg);
10491 : 0 : rte_flow_error_set(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ACTION,
10492 : : NULL, err_msg);
10493 : 0 : return -rte_errno;
10494 : : }
10495 : 0 : return fops->action_validate(dev, conf, action, error);
10496 : : }
10497 : :
10498 : : /**
10499 : : * Destroys the shared action by handle.
10500 : : *
10501 : : * @param dev
10502 : : * Pointer to Ethernet device structure.
10503 : : * @param[in] handle
10504 : : * Handle for the indirect action object to be destroyed.
10505 : : * @param[out] error
10506 : : * Perform verbose error reporting if not NULL. PMDs initialize this
10507 : : * structure in case of error only.
10508 : : *
10509 : : * @return
10510 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
10511 : : *
10512 : : * @note: wrapper for driver action_create op callback.
10513 : : */
10514 : : static int
10515 [ # # ]: 0 : mlx5_action_handle_destroy(struct rte_eth_dev *dev,
10516 : : struct rte_flow_action_handle *handle,
10517 : : struct rte_flow_error *error)
10518 : : {
10519 : : static const char err_msg[] = "indirect action destruction unsupported";
10520 : : struct rte_flow_attr attr = { .transfer = 0 };
10521 : 0 : const struct mlx5_flow_driver_ops *fops =
10522 : : flow_get_drv_ops(flow_get_drv_type(dev, &attr));
10523 : :
10524 [ # # ]: 0 : if (!fops->action_destroy) {
10525 : 0 : DRV_LOG(ERR, "port %u %s.", dev->data->port_id, err_msg);
10526 : 0 : rte_flow_error_set(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ACTION,
10527 : : NULL, err_msg);
10528 : 0 : return -rte_errno;
10529 : : }
10530 : 0 : return fops->action_destroy(dev, handle, error);
10531 : : }
10532 : :
10533 : : /* Wrapper for driver action_destroy op callback */
10534 : : static int
10535 : 0 : flow_drv_action_update(struct rte_eth_dev *dev,
10536 : : struct rte_flow_action_handle *handle,
10537 : : const void *update,
10538 : : const struct mlx5_flow_driver_ops *fops,
10539 : : struct rte_flow_error *error)
10540 : : {
10541 : : static const char err_msg[] = "indirect action update unsupported";
10542 : :
10543 [ # # ]: 0 : if (!fops->action_update) {
10544 : 0 : DRV_LOG(ERR, "port %u %s.", dev->data->port_id, err_msg);
10545 : 0 : rte_flow_error_set(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ACTION,
10546 : : NULL, err_msg);
10547 : 0 : return -rte_errno;
10548 : : }
10549 : 0 : return fops->action_update(dev, handle, update, error);
10550 : : }
10551 : :
10552 : : /* Wrapper for driver action_destroy op callback */
10553 : : static int
10554 : 0 : flow_drv_action_query(struct rte_eth_dev *dev,
10555 : : const struct rte_flow_action_handle *handle,
10556 : : void *data,
10557 : : const struct mlx5_flow_driver_ops *fops,
10558 : : struct rte_flow_error *error)
10559 : : {
10560 : : static const char err_msg[] = "indirect action query unsupported";
10561 : :
10562 [ # # ]: 0 : if (!fops->action_query) {
10563 : 0 : DRV_LOG(ERR, "port %u %s.", dev->data->port_id, err_msg);
10564 : 0 : rte_flow_error_set(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ACTION,
10565 : : NULL, err_msg);
10566 : 0 : return -rte_errno;
10567 : : }
10568 : 0 : return fops->action_query(dev, handle, data, error);
10569 : : }
10570 : :
10571 : : /**
10572 : : * Create indirect action for reuse in multiple flow rules.
10573 : : *
10574 : : * @param dev
10575 : : * Pointer to Ethernet device structure.
10576 : : * @param conf
10577 : : * Pointer to indirect action object configuration.
10578 : : * @param[in] action
10579 : : * Action configuration for indirect action object creation.
10580 : : * @param[out] error
10581 : : * Perform verbose error reporting if not NULL. PMDs initialize this
10582 : : * structure in case of error only.
10583 : : * @return
10584 : : * A valid handle in case of success, NULL otherwise and rte_errno is set.
10585 : : */
10586 : : static struct rte_flow_action_handle *
10587 [ # # ]: 0 : mlx5_action_handle_create(struct rte_eth_dev *dev,
10588 : : const struct rte_flow_indir_action_conf *conf,
10589 : : const struct rte_flow_action *action,
10590 : : struct rte_flow_error *error)
10591 : : {
10592 : : static const char err_msg[] = "indirect action creation unsupported";
10593 : : struct rte_flow_attr attr = { .transfer = 0 };
10594 : 0 : const struct mlx5_flow_driver_ops *fops =
10595 : : flow_get_drv_ops(flow_get_drv_type(dev, &attr));
10596 : :
10597 [ # # ]: 0 : if (flow_drv_action_validate(dev, conf, action, fops, error))
10598 : : return NULL;
10599 [ # # ]: 0 : if (!fops->action_create) {
10600 : 0 : DRV_LOG(ERR, "port %u %s.", dev->data->port_id, err_msg);
10601 : 0 : rte_flow_error_set(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ACTION,
10602 : : NULL, err_msg);
10603 : 0 : return NULL;
10604 : : }
10605 : 0 : return fops->action_create(dev, conf, action, error);
10606 : : }
10607 : :
10608 : : /**
10609 : : * Updates inplace the indirect action configuration pointed by *handle*
10610 : : * with the configuration provided as *update* argument.
10611 : : * The update of the indirect action configuration effects all flow rules
10612 : : * reusing the action via handle.
10613 : : *
10614 : : * @param dev
10615 : : * Pointer to Ethernet device structure.
10616 : : * @param[in] handle
10617 : : * Handle for the indirect action to be updated.
10618 : : * @param[in] update
10619 : : * Action specification used to modify the action pointed by handle.
10620 : : * *update* could be of same type with the action pointed by the *handle*
10621 : : * handle argument, or some other structures like a wrapper, depending on
10622 : : * the indirect action type.
10623 : : * @param[out] error
10624 : : * Perform verbose error reporting if not NULL. PMDs initialize this
10625 : : * structure in case of error only.
10626 : : *
10627 : : * @return
10628 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
10629 : : */
10630 : : static int
10631 [ # # ]: 0 : mlx5_action_handle_update(struct rte_eth_dev *dev,
10632 : : struct rte_flow_action_handle *handle,
10633 : : const void *update,
10634 : : struct rte_flow_error *error)
10635 : : {
10636 : : struct rte_flow_attr attr = { .transfer = 0 };
10637 : 0 : const struct mlx5_flow_driver_ops *fops =
10638 : : flow_get_drv_ops(flow_get_drv_type(dev, &attr));
10639 : : int ret;
10640 : 0 : uint32_t act_idx = (uint32_t)(uintptr_t)handle;
10641 : 0 : uint32_t type = act_idx >> MLX5_INDIRECT_ACTION_TYPE_OFFSET;
10642 : :
10643 [ # # ]: 0 : switch (type) {
10644 : : case MLX5_INDIRECT_ACTION_TYPE_CT:
10645 : : case MLX5_INDIRECT_ACTION_TYPE_METER_MARK:
10646 : : ret = 0;
10647 : : break;
10648 : 0 : default:
10649 : 0 : ret = flow_drv_action_validate(dev, NULL,
10650 : : (const struct rte_flow_action *)update,
10651 : : fops, error);
10652 : : }
10653 [ # # ]: 0 : if (ret)
10654 : : return ret;
10655 : 0 : return flow_drv_action_update(dev, handle, update, fops,
10656 : : error);
10657 : : }
10658 : :
10659 : : /**
10660 : : * Query the indirect action by handle.
10661 : : *
10662 : : * This function allows retrieving action-specific data such as counters.
10663 : : * Data is gathered by special action which may be present/referenced in
10664 : : * more than one flow rule definition.
10665 : : *
10666 : : * see @RTE_FLOW_ACTION_TYPE_COUNT
10667 : : *
10668 : : * @param dev
10669 : : * Pointer to Ethernet device structure.
10670 : : * @param[in] handle
10671 : : * Handle for the indirect action to query.
10672 : : * @param[in, out] data
10673 : : * Pointer to storage for the associated query data type.
10674 : : * @param[out] error
10675 : : * Perform verbose error reporting if not NULL. PMDs initialize this
10676 : : * structure in case of error only.
10677 : : *
10678 : : * @return
10679 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
10680 : : */
10681 : : static int
10682 [ # # ]: 0 : mlx5_action_handle_query(struct rte_eth_dev *dev,
10683 : : const struct rte_flow_action_handle *handle,
10684 : : void *data,
10685 : : struct rte_flow_error *error)
10686 : : {
10687 : : struct rte_flow_attr attr = { .transfer = 0 };
10688 : 0 : const struct mlx5_flow_driver_ops *fops =
10689 : : flow_get_drv_ops(flow_get_drv_type(dev, &attr));
10690 : :
10691 : 0 : return flow_drv_action_query(dev, handle, data, fops, error);
10692 : : }
10693 : :
10694 : : static int
10695 [ # # ]: 0 : mlx5_action_handle_query_update(struct rte_eth_dev *dev,
10696 : : struct rte_flow_action_handle *handle,
10697 : : const void *update, void *query,
10698 : : enum rte_flow_query_update_mode qu_mode,
10699 : : struct rte_flow_error *error)
10700 : : {
10701 : : struct rte_flow_attr attr = { .transfer = 0 };
10702 : : enum mlx5_flow_drv_type drv_type = flow_get_drv_type(dev, &attr);
10703 : : const struct mlx5_flow_driver_ops *fops;
10704 : :
10705 : : if (drv_type == MLX5_FLOW_TYPE_MIN || drv_type == MLX5_FLOW_TYPE_MAX)
10706 : : return rte_flow_error_set(error, ENOTSUP,
10707 : : RTE_FLOW_ERROR_TYPE_ACTION,
10708 : : NULL, "invalid driver type");
10709 : 0 : fops = flow_get_drv_ops(drv_type);
10710 [ # # # # ]: 0 : if (!fops || !fops->action_query_update)
10711 : 0 : return rte_flow_error_set(error, ENOTSUP,
10712 : : RTE_FLOW_ERROR_TYPE_ACTION,
10713 : : NULL, "no query_update handler");
10714 : 0 : return fops->action_query_update(dev, handle, update,
10715 : : query, qu_mode, error);
10716 : : }
10717 : :
10718 : :
10719 : : #define MLX5_DRV_FOPS_OR_ERR(dev, fops, drv_cb, ret) \
10720 : : { \
10721 : : struct rte_flow_attr attr = { .transfer = 0 }; \
10722 : : enum mlx5_flow_drv_type drv_type = flow_get_drv_type((dev), &attr); \
10723 : : if (drv_type == MLX5_FLOW_TYPE_MIN || \
10724 : : drv_type == MLX5_FLOW_TYPE_MAX) { \
10725 : : rte_flow_error_set(error, ENOTSUP, \
10726 : : RTE_FLOW_ERROR_TYPE_ACTION, \
10727 : : NULL, "invalid driver type"); \
10728 : : return ret; \
10729 : : } \
10730 : : (fops) = flow_get_drv_ops(drv_type); \
10731 : : if (!(fops) || !(fops)->drv_cb) { \
10732 : : rte_flow_error_set(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ACTION, \
10733 : : NULL, "no action_list handler"); \
10734 : : return ret; \
10735 : : } \
10736 : : }
10737 : :
10738 : : static struct rte_flow_action_list_handle *
10739 [ # # ]: 0 : mlx5_action_list_handle_create(struct rte_eth_dev *dev,
10740 : : const struct rte_flow_indir_action_conf *conf,
10741 : : const struct rte_flow_action *actions,
10742 : : struct rte_flow_error *error)
10743 : : {
10744 : : const struct mlx5_flow_driver_ops *fops;
10745 : :
10746 [ # # # # ]: 0 : MLX5_DRV_FOPS_OR_ERR(dev, fops, action_list_handle_create, NULL);
10747 : 0 : return fops->action_list_handle_create(dev, conf, actions, error);
10748 : : }
10749 : :
10750 : : static int
10751 [ # # ]: 0 : mlx5_action_list_handle_destroy(struct rte_eth_dev *dev,
10752 : : struct rte_flow_action_list_handle *handle,
10753 : : struct rte_flow_error *error)
10754 : : {
10755 : : const struct mlx5_flow_driver_ops *fops;
10756 : :
10757 [ # # # # ]: 0 : MLX5_DRV_FOPS_OR_ERR(dev, fops, action_list_handle_destroy, ENOTSUP);
10758 : 0 : return fops->action_list_handle_destroy(dev, handle, error);
10759 : : }
10760 : :
10761 : : static int
10762 [ # # ]: 0 : mlx5_flow_action_list_handle_query_update(struct rte_eth_dev *dev,
10763 : : const
10764 : : struct rte_flow_action_list_handle *handle,
10765 : : const void **update, void **query,
10766 : : enum rte_flow_query_update_mode mode,
10767 : : struct rte_flow_error *error)
10768 : : {
10769 : : const struct mlx5_flow_driver_ops *fops;
10770 : :
10771 [ # # # # ]: 0 : MLX5_DRV_FOPS_OR_ERR(dev, fops,
10772 : : action_list_handle_query_update, ENOTSUP);
10773 : 0 : return fops->action_list_handle_query_update(dev, handle, update, query,
10774 : : mode, error);
10775 : : }
10776 : : static int
10777 [ # # ]: 0 : mlx5_flow_calc_table_hash(struct rte_eth_dev *dev,
10778 : : const struct rte_flow_template_table *table,
10779 : : const struct rte_flow_item pattern[],
10780 : : uint8_t pattern_template_index,
10781 : : uint32_t *hash, struct rte_flow_error *error)
10782 : : {
10783 : : struct rte_flow_attr attr = { .transfer = 0 };
10784 : : enum mlx5_flow_drv_type drv_type = flow_get_drv_type(dev, &attr);
10785 : : const struct mlx5_flow_driver_ops *fops;
10786 : :
10787 : : if (drv_type == MLX5_FLOW_TYPE_MIN || drv_type == MLX5_FLOW_TYPE_MAX)
10788 : : return rte_flow_error_set(error, ENOTSUP,
10789 : : RTE_FLOW_ERROR_TYPE_ACTION,
10790 : : NULL, "invalid driver type");
10791 : 0 : fops = flow_get_drv_ops(drv_type);
10792 [ # # # # ]: 0 : if (!fops || !fops->action_query_update)
10793 : 0 : return rte_flow_error_set(error, ENOTSUP,
10794 : : RTE_FLOW_ERROR_TYPE_ACTION,
10795 : : NULL, "no query_update handler");
10796 : 0 : return fops->flow_calc_table_hash(dev, table, pattern, pattern_template_index,
10797 : : hash, error);
10798 : : }
10799 : :
10800 : : static int
10801 [ # # ]: 0 : mlx5_flow_calc_encap_hash(struct rte_eth_dev *dev,
10802 : : const struct rte_flow_item pattern[],
10803 : : enum rte_flow_encap_hash_field dest_field,
10804 : : uint8_t *hash,
10805 : : struct rte_flow_error *error)
10806 : : {
10807 : : enum mlx5_flow_drv_type drv_type = flow_get_drv_type(dev, NULL);
10808 : : const struct mlx5_flow_driver_ops *fops;
10809 : :
10810 : : if (drv_type == MLX5_FLOW_TYPE_MIN || drv_type == MLX5_FLOW_TYPE_MAX)
10811 : 0 : return rte_flow_error_set(error, ENOTSUP,
10812 : : RTE_FLOW_ERROR_TYPE_ACTION,
10813 : : NULL, "invalid driver type");
10814 : 0 : fops = flow_get_drv_ops(drv_type);
10815 [ # # # # ]: 0 : if (!fops || !fops->flow_calc_encap_hash)
10816 : 0 : return rte_flow_error_set(error, ENOTSUP,
10817 : : RTE_FLOW_ERROR_TYPE_ACTION,
10818 : : NULL, "no calc encap hash handler");
10819 : 0 : return fops->flow_calc_encap_hash(dev, pattern, dest_field, hash, error);
10820 : : }
10821 : :
10822 : : static int
10823 [ # # ]: 0 : mlx5_template_table_resize(struct rte_eth_dev *dev,
10824 : : struct rte_flow_template_table *table,
10825 : : uint32_t nb_rules, struct rte_flow_error *error)
10826 : : {
10827 : : const struct mlx5_flow_driver_ops *fops;
10828 : :
10829 [ # # # # ]: 0 : MLX5_DRV_FOPS_OR_ERR(dev, fops, table_resize, ENOTSUP);
10830 : 0 : return fops->table_resize(dev, table, nb_rules, error);
10831 : : }
10832 : :
10833 : : static int
10834 [ # # ]: 0 : mlx5_table_resize_complete(struct rte_eth_dev *dev,
10835 : : struct rte_flow_template_table *table,
10836 : : struct rte_flow_error *error)
10837 : : {
10838 : : const struct mlx5_flow_driver_ops *fops;
10839 : :
10840 [ # # # # ]: 0 : MLX5_DRV_FOPS_OR_ERR(dev, fops, table_resize_complete, ENOTSUP);
10841 : 0 : return fops->table_resize_complete(dev, table, error);
10842 : : }
10843 : :
10844 : : static int
10845 [ # # ]: 0 : mlx5_flow_async_update_resized(struct rte_eth_dev *dev, uint32_t queue,
10846 : : const struct rte_flow_op_attr *op_attr,
10847 : : struct rte_flow *rule, void *user_data,
10848 : : struct rte_flow_error *error)
10849 : : {
10850 : : const struct mlx5_flow_driver_ops *fops;
10851 : :
10852 [ # # # # ]: 0 : MLX5_DRV_FOPS_OR_ERR(dev, fops, flow_update_resized, ENOTSUP);
10853 : 0 : return fops->flow_update_resized(dev, queue, op_attr, rule, user_data, error);
10854 : : }
10855 : :
10856 : : /**
10857 : : * Destroy all indirect actions (shared RSS).
10858 : : *
10859 : : * @param dev
10860 : : * Pointer to Ethernet device.
10861 : : *
10862 : : * @return
10863 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
10864 : : */
10865 : : int
10866 : 0 : mlx5_action_handle_flush(struct rte_eth_dev *dev)
10867 : : {
10868 : : struct rte_flow_error error;
10869 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
10870 : : struct mlx5_shared_action_rss *shared_rss;
10871 : : int ret = 0;
10872 : : uint32_t idx;
10873 : :
10874 [ # # # # ]: 0 : ILIST_FOREACH(priv->sh->ipool[MLX5_IPOOL_RSS_SHARED_ACTIONS],
10875 : : priv->rss_shared_actions, idx, shared_rss, next) {
10876 [ # # ]: 0 : ret |= mlx5_action_handle_destroy(dev,
10877 : 0 : (struct rte_flow_action_handle *)(uintptr_t)idx, &error);
10878 : : }
10879 : 0 : return ret;
10880 : : }
10881 : :
10882 : : /**
10883 : : * Validate existing indirect actions against current device configuration
10884 : : * and attach them to device resources.
10885 : : *
10886 : : * @param dev
10887 : : * Pointer to Ethernet device.
10888 : : *
10889 : : * @return
10890 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
10891 : : */
10892 : : int
10893 : 0 : mlx5_action_handle_attach(struct rte_eth_dev *dev)
10894 : : {
10895 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
10896 : : int ret = 0;
10897 : : struct mlx5_ind_table_obj *ind_tbl, *ind_tbl_last;
10898 : :
10899 [ # # ]: 0 : LIST_FOREACH(ind_tbl, &priv->standalone_ind_tbls, next) {
10900 : : const char *message;
10901 : : uint32_t queue_idx;
10902 : :
10903 : 0 : ret = mlx5_validate_rss_queues(dev, ind_tbl->queues,
10904 : : ind_tbl->queues_n,
10905 : : &message, &queue_idx);
10906 [ # # ]: 0 : if (ret != 0) {
10907 : 0 : DRV_LOG(ERR, "Port %u cannot use queue %u in RSS: %s",
10908 : : dev->data->port_id, ind_tbl->queues[queue_idx],
10909 : : message);
10910 : 0 : break;
10911 : : }
10912 : : }
10913 [ # # ]: 0 : if (ret != 0)
10914 : : return ret;
10915 [ # # ]: 0 : LIST_FOREACH(ind_tbl, &priv->standalone_ind_tbls, next) {
10916 : 0 : ret = mlx5_ind_table_obj_attach(dev, ind_tbl);
10917 [ # # ]: 0 : if (ret != 0) {
10918 : 0 : DRV_LOG(ERR, "Port %u could not attach "
10919 : : "indirection table obj %p",
10920 : : dev->data->port_id, (void *)ind_tbl);
10921 : 0 : goto error;
10922 : : }
10923 : : }
10924 : :
10925 : : return 0;
10926 : : error:
10927 : : ind_tbl_last = ind_tbl;
10928 [ # # ]: 0 : LIST_FOREACH(ind_tbl, &priv->standalone_ind_tbls, next) {
10929 [ # # ]: 0 : if (ind_tbl == ind_tbl_last)
10930 : : break;
10931 [ # # ]: 0 : if (mlx5_ind_table_obj_detach(dev, ind_tbl) != 0)
10932 : 0 : DRV_LOG(CRIT, "Port %u could not detach "
10933 : : "indirection table obj %p on rollback",
10934 : : dev->data->port_id, (void *)ind_tbl);
10935 : : }
10936 : : return ret;
10937 : : }
10938 : :
10939 : : /**
10940 : : * Detach indirect actions of the device from its resources.
10941 : : *
10942 : : * @param dev
10943 : : * Pointer to Ethernet device.
10944 : : *
10945 : : * @return
10946 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
10947 : : */
10948 : : int
10949 : 0 : mlx5_action_handle_detach(struct rte_eth_dev *dev)
10950 : : {
10951 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
10952 : : int ret = 0;
10953 : : struct mlx5_ind_table_obj *ind_tbl, *ind_tbl_last;
10954 : :
10955 [ # # ]: 0 : LIST_FOREACH(ind_tbl, &priv->standalone_ind_tbls, next) {
10956 : 0 : ret = mlx5_ind_table_obj_detach(dev, ind_tbl);
10957 [ # # ]: 0 : if (ret != 0) {
10958 : 0 : DRV_LOG(ERR, "Port %u could not detach "
10959 : : "indirection table obj %p",
10960 : : dev->data->port_id, (void *)ind_tbl);
10961 : 0 : goto error;
10962 : : }
10963 : : }
10964 : : return 0;
10965 : : error:
10966 : : ind_tbl_last = ind_tbl;
10967 [ # # ]: 0 : LIST_FOREACH(ind_tbl, &priv->standalone_ind_tbls, next) {
10968 [ # # ]: 0 : if (ind_tbl == ind_tbl_last)
10969 : : break;
10970 [ # # ]: 0 : if (mlx5_ind_table_obj_attach(dev, ind_tbl) != 0)
10971 : 0 : DRV_LOG(CRIT, "Port %u could not attach "
10972 : : "indirection table obj %p on rollback",
10973 : : dev->data->port_id, (void *)ind_tbl);
10974 : : }
10975 : : return ret;
10976 : : }
10977 : :
10978 : : #ifndef HAVE_MLX5DV_DR
10979 : : #define MLX5_DOMAIN_SYNC_FLOW ((1 << 0) | (1 << 1))
10980 : : #else
10981 : : #define MLX5_DOMAIN_SYNC_FLOW \
10982 : : (MLX5DV_DR_DOMAIN_SYNC_FLAGS_SW | MLX5DV_DR_DOMAIN_SYNC_FLAGS_HW)
10983 : : #endif
10984 : :
10985 : 0 : int rte_pmd_mlx5_sync_flow(uint16_t port_id, uint32_t domains)
10986 : : {
10987 [ # # ]: 0 : struct rte_eth_dev *dev = &rte_eth_devices[port_id];
10988 : : const struct mlx5_flow_driver_ops *fops;
10989 : : int ret;
10990 : : struct rte_flow_attr attr = { .transfer = 0 };
10991 : :
10992 : 0 : fops = flow_get_drv_ops(flow_get_drv_type(dev, &attr));
10993 : 0 : ret = fops->sync_domain(dev, domains, MLX5_DOMAIN_SYNC_FLOW);
10994 [ # # ]: 0 : if (ret > 0)
10995 : 0 : ret = -ret;
10996 : 0 : return ret;
10997 : : }
10998 : :
10999 : : const struct mlx5_flow_tunnel *
11000 : 0 : mlx5_get_tof(const struct rte_flow_item *item,
11001 : : const struct rte_flow_action *action,
11002 : : enum mlx5_tof_rule_type *rule_type)
11003 : : {
11004 [ # # ]: 0 : for (; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
11005 [ # # ]: 0 : if (item->type == (typeof(item->type))
11006 : : MLX5_RTE_FLOW_ITEM_TYPE_TUNNEL) {
11007 : 0 : *rule_type = MLX5_TUNNEL_OFFLOAD_MATCH_RULE;
11008 : 0 : return flow_items_to_tunnel(item);
11009 : : }
11010 : : }
11011 [ # # ]: 0 : for (; action->conf != RTE_FLOW_ACTION_TYPE_END; action++) {
11012 [ # # ]: 0 : if (action->type == (typeof(action->type))
11013 : : MLX5_RTE_FLOW_ACTION_TYPE_TUNNEL_SET) {
11014 : 0 : *rule_type = MLX5_TUNNEL_OFFLOAD_SET_RULE;
11015 : 0 : return flow_actions_to_tunnel(action);
11016 : : }
11017 : : }
11018 : : return NULL;
11019 : : }
11020 : :
11021 : : /**
11022 : : * tunnel offload functionality is defined for DV environment only
11023 : : */
11024 : : #ifdef HAVE_IBV_FLOW_DV_SUPPORT
11025 : : __extension__
11026 : : union tunnel_offload_mark {
11027 : : uint32_t val;
11028 : : struct {
11029 : : uint32_t app_reserve:8;
11030 : : uint32_t table_id:15;
11031 : : uint32_t transfer:1;
11032 : : uint32_t _unused_:8;
11033 : : };
11034 : : };
11035 : :
11036 : : static bool
11037 : : mlx5_access_tunnel_offload_db
11038 : : (struct rte_eth_dev *dev,
11039 : : bool (*match)(struct rte_eth_dev *,
11040 : : struct mlx5_flow_tunnel *, const void *),
11041 : : void (*hit)(struct rte_eth_dev *, struct mlx5_flow_tunnel *, void *),
11042 : : void (*miss)(struct rte_eth_dev *, void *),
11043 : : void *ctx, bool lock_op);
11044 : :
11045 : : static int
11046 : 0 : flow_tunnel_add_default_miss(struct rte_eth_dev *dev,
11047 : : struct rte_flow *flow,
11048 : : const struct rte_flow_attr *attr,
11049 : : const struct rte_flow_action *app_actions,
11050 : : uint32_t flow_idx,
11051 : : const struct mlx5_flow_tunnel *tunnel,
11052 : : struct tunnel_default_miss_ctx *ctx,
11053 : : struct rte_flow_error *error)
11054 : : {
11055 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
11056 : : struct mlx5_flow *dev_flow;
11057 : 0 : struct rte_flow_attr miss_attr = *attr;
11058 : 0 : const struct rte_flow_item miss_items[2] = {
11059 : : {
11060 : : .type = RTE_FLOW_ITEM_TYPE_ETH,
11061 : : .spec = NULL,
11062 : : .last = NULL,
11063 : : .mask = NULL
11064 : : },
11065 : : {
11066 : : .type = RTE_FLOW_ITEM_TYPE_END,
11067 : : .spec = NULL,
11068 : : .last = NULL,
11069 : : .mask = NULL
11070 : : }
11071 : : };
11072 : : union tunnel_offload_mark mark_id;
11073 : : struct rte_flow_action_mark miss_mark;
11074 : 0 : struct rte_flow_action miss_actions[3] = {
11075 : : [0] = { .type = RTE_FLOW_ACTION_TYPE_MARK, .conf = &miss_mark },
11076 : : [2] = { .type = RTE_FLOW_ACTION_TYPE_END, .conf = NULL }
11077 : : };
11078 : : const struct rte_flow_action_jump *jump_data;
11079 : 0 : uint32_t i, flow_table = 0; /* prevent compilation warning */
11080 : 0 : struct flow_grp_info grp_info = {
11081 : : .external = 1,
11082 : 0 : .transfer = attr->transfer,
11083 : 0 : .fdb_def_rule = !!priv->fdb_def_rule,
11084 : : .std_tbl_fix = 0,
11085 : : };
11086 : : int ret;
11087 : :
11088 [ # # ]: 0 : if (!attr->transfer) {
11089 : : uint32_t q_size;
11090 : :
11091 : 0 : miss_actions[1].type = RTE_FLOW_ACTION_TYPE_RSS;
11092 : 0 : q_size = priv->reta_idx_n * sizeof(ctx->queue[0]);
11093 : 0 : ctx->queue = mlx5_malloc(MLX5_MEM_SYS | MLX5_MEM_ZERO, q_size,
11094 : : 0, SOCKET_ID_ANY);
11095 [ # # ]: 0 : if (!ctx->queue)
11096 : 0 : return rte_flow_error_set
11097 : : (error, ENOMEM,
11098 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF,
11099 : : NULL, "invalid default miss RSS");
11100 : 0 : ctx->action_rss.func = RTE_ETH_HASH_FUNCTION_DEFAULT,
11101 : 0 : ctx->action_rss.level = 0,
11102 : 0 : ctx->action_rss.types = priv->rss_conf.rss_hf,
11103 : 0 : ctx->action_rss.key_len = priv->rss_conf.rss_key_len,
11104 : 0 : ctx->action_rss.queue_num = priv->reta_idx_n,
11105 : 0 : ctx->action_rss.key = priv->rss_conf.rss_key,
11106 : 0 : ctx->action_rss.queue = ctx->queue;
11107 [ # # # # ]: 0 : if (!priv->reta_idx_n || !priv->rxqs_n)
11108 : 0 : return rte_flow_error_set
11109 : : (error, EINVAL,
11110 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF,
11111 : : NULL, "invalid port configuration");
11112 [ # # ]: 0 : if (!(dev->data->dev_conf.rxmode.mq_mode & RTE_ETH_MQ_RX_RSS_FLAG))
11113 : 0 : ctx->action_rss.types = 0;
11114 [ # # ]: 0 : for (i = 0; i != priv->reta_idx_n; ++i)
11115 : 0 : ctx->queue[i] = (*priv->reta_idx)[i];
11116 : : } else {
11117 : 0 : miss_actions[1].type = RTE_FLOW_ACTION_TYPE_JUMP;
11118 : 0 : ctx->miss_jump.group = MLX5_TNL_MISS_FDB_JUMP_GRP;
11119 : : }
11120 : 0 : miss_actions[1].conf = (typeof(miss_actions[1].conf))ctx->raw;
11121 [ # # ]: 0 : for (; app_actions->type != RTE_FLOW_ACTION_TYPE_JUMP; app_actions++);
11122 : 0 : jump_data = app_actions->conf;
11123 : 0 : miss_attr.priority = MLX5_TNL_MISS_RULE_PRIORITY;
11124 : 0 : miss_attr.group = jump_data->group;
11125 : 0 : ret = mlx5_flow_group_to_table(dev, tunnel, jump_data->group,
11126 : : &flow_table, &grp_info, error);
11127 [ # # ]: 0 : if (ret)
11128 : 0 : return rte_flow_error_set(error, EINVAL,
11129 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF,
11130 : : NULL, "invalid tunnel id");
11131 : 0 : mark_id.app_reserve = 0;
11132 : 0 : mark_id.table_id = tunnel_flow_tbl_to_id(flow_table);
11133 : 0 : mark_id.transfer = !!attr->transfer;
11134 : 0 : mark_id._unused_ = 0;
11135 : 0 : miss_mark.id = mark_id.val;
11136 : : dev_flow = flow_drv_prepare(dev, flow, &miss_attr,
11137 : : miss_items, miss_actions, flow_idx, error);
11138 [ # # ]: 0 : if (!dev_flow)
11139 : 0 : return -rte_errno;
11140 : 0 : dev_flow->flow = flow;
11141 : 0 : dev_flow->external = true;
11142 : 0 : dev_flow->tunnel = tunnel;
11143 : 0 : dev_flow->tof_type = MLX5_TUNNEL_OFFLOAD_MISS_RULE;
11144 : : /* Subflow object was created, we must include one in the list. */
11145 : 0 : SILIST_INSERT(&flow->dev_handles, dev_flow->handle_idx,
11146 : : dev_flow->handle, next);
11147 : 0 : DRV_LOG(DEBUG,
11148 : : "port %u tunnel type=%d id=%u miss rule priority=%u group=%u",
11149 : : dev->data->port_id, tunnel->app_tunnel.type,
11150 : : tunnel->tunnel_id, miss_attr.priority, miss_attr.group);
11151 : : ret = flow_drv_translate(dev, dev_flow, &miss_attr, miss_items,
11152 : : miss_actions, error);
11153 [ # # ]: 0 : if (!ret)
11154 : 0 : ret = flow_mreg_update_copy_table(dev, flow, miss_actions,
11155 : : error);
11156 : :
11157 : : return ret;
11158 : : }
11159 : :
11160 : : static const struct mlx5_flow_tbl_data_entry *
11161 : 0 : tunnel_mark_decode(struct rte_eth_dev *dev, uint32_t mark)
11162 : : {
11163 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
11164 : 0 : struct mlx5_dev_ctx_shared *sh = priv->sh;
11165 : : struct mlx5_list_entry *he;
11166 : 0 : union tunnel_offload_mark mbits = { .val = mark };
11167 : 0 : union mlx5_flow_tbl_key table_key = {
11168 : : {
11169 : 0 : .level = tunnel_id_to_flow_tbl(mbits.table_id),
11170 : : .id = 0,
11171 : : .reserved = 0,
11172 : : .dummy = 0,
11173 : 0 : .is_fdb = !!mbits.transfer,
11174 : : .is_egress = 0,
11175 : : }
11176 : : };
11177 : 0 : struct mlx5_flow_cb_ctx ctx = {
11178 : : .data = &table_key.v64,
11179 : : };
11180 : :
11181 : 0 : he = mlx5_hlist_lookup(sh->flow_tbls, table_key.v64, &ctx);
11182 : : return he ?
11183 [ # # ]: 0 : container_of(he, struct mlx5_flow_tbl_data_entry, entry) : NULL;
11184 : : }
11185 : :
11186 : : static void
11187 : 0 : mlx5_flow_tunnel_grp2tbl_remove_cb(void *tool_ctx,
11188 : : struct mlx5_list_entry *entry)
11189 : : {
11190 : : struct mlx5_dev_ctx_shared *sh = tool_ctx;
11191 : : struct tunnel_tbl_entry *tte = container_of(entry, typeof(*tte), hash);
11192 : :
11193 : 0 : mlx5_ipool_free(sh->ipool[MLX5_IPOOL_TNL_TBL_ID],
11194 : : tunnel_flow_tbl_to_id(tte->flow_table));
11195 : 0 : mlx5_free(tte);
11196 : 0 : }
11197 : :
11198 : : static int
11199 : 0 : mlx5_flow_tunnel_grp2tbl_match_cb(void *tool_ctx __rte_unused,
11200 : : struct mlx5_list_entry *entry, void *cb_ctx)
11201 : : {
11202 : : struct mlx5_flow_cb_ctx *ctx = cb_ctx;
11203 : : union tunnel_tbl_key tbl = {
11204 : 0 : .val = *(uint64_t *)(ctx->data),
11205 : : };
11206 : : struct tunnel_tbl_entry *tte = container_of(entry, typeof(*tte), hash);
11207 : :
11208 [ # # # # ]: 0 : return tbl.tunnel_id != tte->tunnel_id || tbl.group != tte->group;
11209 : : }
11210 : :
11211 : : static struct mlx5_list_entry *
11212 : 0 : mlx5_flow_tunnel_grp2tbl_create_cb(void *tool_ctx, void *cb_ctx)
11213 : : {
11214 : : struct mlx5_dev_ctx_shared *sh = tool_ctx;
11215 : : struct mlx5_flow_cb_ctx *ctx = cb_ctx;
11216 : : struct tunnel_tbl_entry *tte;
11217 : : union tunnel_tbl_key tbl = {
11218 : 0 : .val = *(uint64_t *)(ctx->data),
11219 : : };
11220 : :
11221 : 0 : tte = mlx5_malloc(MLX5_MEM_SYS | MLX5_MEM_ZERO,
11222 : : sizeof(*tte), 0,
11223 : : SOCKET_ID_ANY);
11224 [ # # ]: 0 : if (!tte)
11225 : 0 : goto err;
11226 : 0 : mlx5_ipool_malloc(sh->ipool[MLX5_IPOOL_TNL_TBL_ID],
11227 : : &tte->flow_table);
11228 [ # # ]: 0 : if (tte->flow_table >= MLX5_MAX_TABLES) {
11229 : 0 : DRV_LOG(ERR, "Tunnel TBL ID %d exceed max limit.",
11230 : : tte->flow_table);
11231 : 0 : mlx5_ipool_free(sh->ipool[MLX5_IPOOL_TNL_TBL_ID],
11232 : : tte->flow_table);
11233 : 0 : goto err;
11234 [ # # ]: 0 : } else if (!tte->flow_table) {
11235 : 0 : goto err;
11236 : : }
11237 : 0 : tte->flow_table = tunnel_id_to_flow_tbl(tte->flow_table);
11238 : 0 : tte->tunnel_id = tbl.tunnel_id;
11239 : 0 : tte->group = tbl.group;
11240 : 0 : return &tte->hash;
11241 : 0 : err:
11242 [ # # ]: 0 : if (tte)
11243 : 0 : mlx5_free(tte);
11244 : : return NULL;
11245 : : }
11246 : :
11247 : : static struct mlx5_list_entry *
11248 : 0 : mlx5_flow_tunnel_grp2tbl_clone_cb(void *tool_ctx __rte_unused,
11249 : : struct mlx5_list_entry *oentry,
11250 : : void *cb_ctx __rte_unused)
11251 : : {
11252 : 0 : struct tunnel_tbl_entry *tte = mlx5_malloc(MLX5_MEM_SYS, sizeof(*tte),
11253 : : 0, SOCKET_ID_ANY);
11254 : :
11255 [ # # ]: 0 : if (!tte)
11256 : : return NULL;
11257 : : memcpy(tte, oentry, sizeof(*tte));
11258 : 0 : return &tte->hash;
11259 : : }
11260 : :
11261 : : static void
11262 : 0 : mlx5_flow_tunnel_grp2tbl_clone_free_cb(void *tool_ctx __rte_unused,
11263 : : struct mlx5_list_entry *entry)
11264 : : {
11265 : : struct tunnel_tbl_entry *tte = container_of(entry, typeof(*tte), hash);
11266 : :
11267 : 0 : mlx5_free(tte);
11268 : 0 : }
11269 : :
11270 : : static uint32_t
11271 : 0 : tunnel_flow_group_to_flow_table(struct rte_eth_dev *dev,
11272 : : const struct mlx5_flow_tunnel *tunnel,
11273 : : uint32_t group, uint32_t *table,
11274 : : struct rte_flow_error *error)
11275 : : {
11276 : : struct mlx5_list_entry *he;
11277 : : struct tunnel_tbl_entry *tte;
11278 [ # # ]: 0 : union tunnel_tbl_key key = {
11279 [ # # ]: 0 : .tunnel_id = tunnel ? tunnel->tunnel_id : 0,
11280 : : .group = group
11281 : : };
11282 : : struct mlx5_flow_tunnel_hub *thub = mlx5_tunnel_hub(dev);
11283 : : struct mlx5_hlist *group_hash;
11284 : 0 : struct mlx5_flow_cb_ctx ctx = {
11285 : : .data = &key.val,
11286 : : };
11287 : :
11288 [ # # ]: 0 : group_hash = tunnel ? tunnel->groups : thub->groups;
11289 : 0 : he = mlx5_hlist_register(group_hash, key.val, &ctx);
11290 [ # # ]: 0 : if (!he)
11291 : 0 : return rte_flow_error_set(error, EINVAL,
11292 : : RTE_FLOW_ERROR_TYPE_ATTR_GROUP,
11293 : : NULL,
11294 : : "tunnel group index not supported");
11295 : : tte = container_of(he, typeof(*tte), hash);
11296 : 0 : *table = tte->flow_table;
11297 : 0 : DRV_LOG(DEBUG, "port %u tunnel %u group=%#x table=%#x",
11298 : : dev->data->port_id, key.tunnel_id, group, *table);
11299 : 0 : return 0;
11300 : : }
11301 : :
11302 : : static void
11303 : 0 : mlx5_flow_tunnel_free(struct rte_eth_dev *dev,
11304 : : struct mlx5_flow_tunnel *tunnel)
11305 : : {
11306 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
11307 : : struct mlx5_indexed_pool *ipool;
11308 : :
11309 : 0 : DRV_LOG(DEBUG, "port %u release pmd tunnel id=0x%x",
11310 : : dev->data->port_id, tunnel->tunnel_id);
11311 [ # # ]: 0 : LIST_REMOVE(tunnel, chain);
11312 : 0 : mlx5_hlist_destroy(tunnel->groups);
11313 : 0 : ipool = priv->sh->ipool[MLX5_IPOOL_TUNNEL_ID];
11314 : 0 : mlx5_ipool_free(ipool, tunnel->tunnel_id);
11315 : 0 : }
11316 : :
11317 : : static bool
11318 : 0 : mlx5_access_tunnel_offload_db
11319 : : (struct rte_eth_dev *dev,
11320 : : bool (*match)(struct rte_eth_dev *,
11321 : : struct mlx5_flow_tunnel *, const void *),
11322 : : void (*hit)(struct rte_eth_dev *, struct mlx5_flow_tunnel *, void *),
11323 : : void (*miss)(struct rte_eth_dev *, void *),
11324 : : void *ctx, bool lock_op)
11325 : : {
11326 : : bool verdict = false;
11327 : : struct mlx5_flow_tunnel_hub *thub = mlx5_tunnel_hub(dev);
11328 : : struct mlx5_flow_tunnel *tunnel;
11329 : :
11330 : 0 : rte_spinlock_lock(&thub->sl);
11331 [ # # ]: 0 : LIST_FOREACH(tunnel, &thub->tunnels, chain) {
11332 : 0 : verdict = match(dev, tunnel, (const void *)ctx);
11333 [ # # ]: 0 : if (verdict)
11334 : : break;
11335 : : }
11336 [ # # ]: 0 : if (!lock_op)
11337 : : rte_spinlock_unlock(&thub->sl);
11338 [ # # ]: 0 : if (verdict && hit)
11339 : 0 : hit(dev, tunnel, ctx);
11340 [ # # ]: 0 : if (!verdict && miss)
11341 : 0 : miss(dev, ctx);
11342 [ # # ]: 0 : if (lock_op)
11343 : : rte_spinlock_unlock(&thub->sl);
11344 : :
11345 : 0 : return verdict;
11346 : : }
11347 : :
11348 : : struct tunnel_db_find_tunnel_id_ctx {
11349 : : uint32_t tunnel_id;
11350 : : struct mlx5_flow_tunnel *tunnel;
11351 : : };
11352 : :
11353 : : static bool
11354 : 0 : find_tunnel_id_match(struct rte_eth_dev *dev,
11355 : : struct mlx5_flow_tunnel *tunnel, const void *x)
11356 : : {
11357 : : const struct tunnel_db_find_tunnel_id_ctx *ctx = x;
11358 : :
11359 : : RTE_SET_USED(dev);
11360 : 0 : return tunnel->tunnel_id == ctx->tunnel_id;
11361 : : }
11362 : :
11363 : : static void
11364 : 0 : find_tunnel_id_hit(struct rte_eth_dev *dev,
11365 : : struct mlx5_flow_tunnel *tunnel, void *x)
11366 : : {
11367 : : struct tunnel_db_find_tunnel_id_ctx *ctx = x;
11368 : : RTE_SET_USED(dev);
11369 : 0 : ctx->tunnel = tunnel;
11370 : 0 : }
11371 : :
11372 : : static struct mlx5_flow_tunnel *
11373 : : mlx5_find_tunnel_id(struct rte_eth_dev *dev, uint32_t id)
11374 : : {
11375 : 0 : struct tunnel_db_find_tunnel_id_ctx ctx = {
11376 : : .tunnel_id = id,
11377 : : };
11378 : :
11379 : 0 : mlx5_access_tunnel_offload_db(dev, find_tunnel_id_match,
11380 : : find_tunnel_id_hit, NULL, &ctx, true);
11381 : :
11382 [ # # ]: 0 : return ctx.tunnel;
11383 : : }
11384 : :
11385 : : static struct mlx5_flow_tunnel *
11386 : 0 : mlx5_flow_tunnel_allocate(struct rte_eth_dev *dev,
11387 : : const struct rte_flow_tunnel *app_tunnel)
11388 : : {
11389 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
11390 : : struct mlx5_indexed_pool *ipool;
11391 : : struct mlx5_flow_tunnel *tunnel;
11392 : : uint32_t id;
11393 : :
11394 : 0 : ipool = priv->sh->ipool[MLX5_IPOOL_TUNNEL_ID];
11395 : 0 : tunnel = mlx5_ipool_zmalloc(ipool, &id);
11396 [ # # ]: 0 : if (!tunnel)
11397 : : return NULL;
11398 [ # # ]: 0 : if (id >= MLX5_MAX_TUNNELS) {
11399 : 0 : mlx5_ipool_free(ipool, id);
11400 : 0 : DRV_LOG(ERR, "Tunnel ID %d exceed max limit.", id);
11401 : 0 : return NULL;
11402 : : }
11403 : 0 : tunnel->groups = mlx5_hlist_create("tunnel groups", 64, false, true,
11404 : 0 : priv->sh,
11405 : : mlx5_flow_tunnel_grp2tbl_create_cb,
11406 : : mlx5_flow_tunnel_grp2tbl_match_cb,
11407 : : mlx5_flow_tunnel_grp2tbl_remove_cb,
11408 : : mlx5_flow_tunnel_grp2tbl_clone_cb,
11409 : : mlx5_flow_tunnel_grp2tbl_clone_free_cb);
11410 [ # # ]: 0 : if (!tunnel->groups) {
11411 : 0 : mlx5_ipool_free(ipool, id);
11412 : 0 : return NULL;
11413 : : }
11414 : : /* initiate new PMD tunnel */
11415 : 0 : memcpy(&tunnel->app_tunnel, app_tunnel, sizeof(*app_tunnel));
11416 : 0 : tunnel->tunnel_id = id;
11417 : 0 : tunnel->action.type = (typeof(tunnel->action.type))
11418 : : MLX5_RTE_FLOW_ACTION_TYPE_TUNNEL_SET;
11419 : 0 : tunnel->action.conf = tunnel;
11420 : 0 : tunnel->item.type = (typeof(tunnel->item.type))
11421 : : MLX5_RTE_FLOW_ITEM_TYPE_TUNNEL;
11422 : 0 : tunnel->item.spec = tunnel;
11423 : 0 : tunnel->item.last = NULL;
11424 : 0 : tunnel->item.mask = NULL;
11425 : :
11426 : 0 : DRV_LOG(DEBUG, "port %u new pmd tunnel id=0x%x",
11427 : : dev->data->port_id, tunnel->tunnel_id);
11428 : :
11429 : 0 : return tunnel;
11430 : : }
11431 : :
11432 : : struct tunnel_db_get_tunnel_ctx {
11433 : : const struct rte_flow_tunnel *app_tunnel;
11434 : : struct mlx5_flow_tunnel *tunnel;
11435 : : };
11436 : :
11437 : 0 : static bool get_tunnel_match(struct rte_eth_dev *dev,
11438 : : struct mlx5_flow_tunnel *tunnel, const void *x)
11439 : : {
11440 : : const struct tunnel_db_get_tunnel_ctx *ctx = x;
11441 : :
11442 : : RTE_SET_USED(dev);
11443 : 0 : return !memcmp(ctx->app_tunnel, &tunnel->app_tunnel,
11444 : : sizeof(*ctx->app_tunnel));
11445 : : }
11446 : :
11447 : 0 : static void get_tunnel_hit(struct rte_eth_dev *dev,
11448 : : struct mlx5_flow_tunnel *tunnel, void *x)
11449 : : {
11450 : : /* called under tunnel spinlock protection */
11451 : : struct tunnel_db_get_tunnel_ctx *ctx = x;
11452 : :
11453 : : RTE_SET_USED(dev);
11454 : 0 : tunnel->refctn++;
11455 : 0 : ctx->tunnel = tunnel;
11456 : 0 : }
11457 : :
11458 : 0 : static void get_tunnel_miss(struct rte_eth_dev *dev, void *x)
11459 : : {
11460 : : /* called under tunnel spinlock protection */
11461 : : struct mlx5_flow_tunnel_hub *thub = mlx5_tunnel_hub(dev);
11462 : : struct tunnel_db_get_tunnel_ctx *ctx = x;
11463 : :
11464 : 0 : rte_spinlock_unlock(&thub->sl);
11465 : 0 : ctx->tunnel = mlx5_flow_tunnel_allocate(dev, ctx->app_tunnel);
11466 : : rte_spinlock_lock(&thub->sl);
11467 [ # # ]: 0 : if (ctx->tunnel) {
11468 : 0 : ctx->tunnel->refctn = 1;
11469 [ # # ]: 0 : LIST_INSERT_HEAD(&thub->tunnels, ctx->tunnel, chain);
11470 : : }
11471 : 0 : }
11472 : :
11473 : :
11474 : : static int
11475 : 0 : mlx5_get_flow_tunnel(struct rte_eth_dev *dev,
11476 : : const struct rte_flow_tunnel *app_tunnel,
11477 : : struct mlx5_flow_tunnel **tunnel)
11478 : : {
11479 : 0 : struct tunnel_db_get_tunnel_ctx ctx = {
11480 : : .app_tunnel = app_tunnel,
11481 : : };
11482 : :
11483 : 0 : mlx5_access_tunnel_offload_db(dev, get_tunnel_match, get_tunnel_hit,
11484 : : get_tunnel_miss, &ctx, true);
11485 : 0 : *tunnel = ctx.tunnel;
11486 [ # # ]: 0 : return ctx.tunnel ? 0 : -ENOMEM;
11487 : : }
11488 : :
11489 : 0 : void mlx5_release_tunnel_hub(struct mlx5_dev_ctx_shared *sh, uint16_t port_id)
11490 : : {
11491 : 0 : struct mlx5_flow_tunnel_hub *thub = sh->tunnel_hub;
11492 : :
11493 [ # # ]: 0 : if (!thub)
11494 : : return;
11495 [ # # ]: 0 : if (!LIST_EMPTY(&thub->tunnels))
11496 : 0 : DRV_LOG(WARNING, "port %u tunnels present", port_id);
11497 : 0 : mlx5_hlist_destroy(thub->groups);
11498 : 0 : mlx5_free(thub);
11499 : : }
11500 : :
11501 : 0 : int mlx5_alloc_tunnel_hub(struct mlx5_dev_ctx_shared *sh)
11502 : : {
11503 : : int err;
11504 : : struct mlx5_flow_tunnel_hub *thub;
11505 : :
11506 : 0 : thub = mlx5_malloc(MLX5_MEM_SYS | MLX5_MEM_ZERO, sizeof(*thub),
11507 : : 0, SOCKET_ID_ANY);
11508 [ # # ]: 0 : if (!thub)
11509 : : return -ENOMEM;
11510 : 0 : LIST_INIT(&thub->tunnels);
11511 : : rte_spinlock_init(&thub->sl);
11512 : 0 : thub->groups = mlx5_hlist_create("flow groups", 64,
11513 : : false, true, sh,
11514 : : mlx5_flow_tunnel_grp2tbl_create_cb,
11515 : : mlx5_flow_tunnel_grp2tbl_match_cb,
11516 : : mlx5_flow_tunnel_grp2tbl_remove_cb,
11517 : : mlx5_flow_tunnel_grp2tbl_clone_cb,
11518 : : mlx5_flow_tunnel_grp2tbl_clone_free_cb);
11519 [ # # ]: 0 : if (!thub->groups) {
11520 : 0 : err = -rte_errno;
11521 : 0 : goto err;
11522 : : }
11523 : 0 : sh->tunnel_hub = thub;
11524 : :
11525 : 0 : return 0;
11526 : :
11527 : : err:
11528 : : if (thub->groups)
11529 : : mlx5_hlist_destroy(thub->groups);
11530 : : if (thub)
11531 : 0 : mlx5_free(thub);
11532 : 0 : return err;
11533 : : }
11534 : :
11535 : : static inline int
11536 : 0 : mlx5_flow_tunnel_validate(struct rte_eth_dev *dev,
11537 : : struct rte_flow_tunnel *tunnel,
11538 : : struct rte_flow_error *error)
11539 : : {
11540 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
11541 : :
11542 [ # # ]: 0 : if (!priv->sh->config.dv_flow_en)
11543 : 0 : return rte_flow_error_set(error, ENOTSUP,
11544 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF, NULL,
11545 : : "flow DV interface is off");
11546 [ # # ]: 0 : if (!is_tunnel_offload_active(dev))
11547 : 0 : return rte_flow_error_set(error, ENOTSUP,
11548 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF, NULL,
11549 : : "tunnel offload was not activated, consider setting dv_xmeta_en=3");
11550 [ # # ]: 0 : if (!tunnel)
11551 : 0 : return rte_flow_error_set(error, EINVAL,
11552 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF, NULL,
11553 : : "no application tunnel");
11554 [ # # ]: 0 : switch (tunnel->type) {
11555 : 0 : default:
11556 : 0 : return rte_flow_error_set(error, EINVAL,
11557 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF, NULL,
11558 : : "unsupported tunnel type");
11559 : : case RTE_FLOW_ITEM_TYPE_VXLAN:
11560 : : case RTE_FLOW_ITEM_TYPE_GRE:
11561 : : case RTE_FLOW_ITEM_TYPE_NVGRE:
11562 : : case RTE_FLOW_ITEM_TYPE_GENEVE:
11563 : : break;
11564 : : }
11565 : : return 0;
11566 : : }
11567 : :
11568 : : static int
11569 : 0 : mlx5_flow_tunnel_decap_set(struct rte_eth_dev *dev,
11570 : : struct rte_flow_tunnel *app_tunnel,
11571 : : struct rte_flow_action **actions,
11572 : : uint32_t *num_of_actions,
11573 : : struct rte_flow_error *error)
11574 : : {
11575 : : struct mlx5_flow_tunnel *tunnel;
11576 : 0 : int ret = mlx5_flow_tunnel_validate(dev, app_tunnel, error);
11577 : :
11578 [ # # ]: 0 : if (ret)
11579 : : return ret;
11580 : 0 : ret = mlx5_get_flow_tunnel(dev, app_tunnel, &tunnel);
11581 [ # # ]: 0 : if (ret < 0) {
11582 : 0 : return rte_flow_error_set(error, ret,
11583 : : RTE_FLOW_ERROR_TYPE_ACTION_CONF, NULL,
11584 : : "failed to initialize pmd tunnel");
11585 : : }
11586 : 0 : *actions = &tunnel->action;
11587 : 0 : *num_of_actions = 1;
11588 : 0 : return 0;
11589 : : }
11590 : :
11591 : : static int
11592 : 0 : mlx5_flow_tunnel_match(struct rte_eth_dev *dev,
11593 : : struct rte_flow_tunnel *app_tunnel,
11594 : : struct rte_flow_item **items,
11595 : : uint32_t *num_of_items,
11596 : : struct rte_flow_error *error)
11597 : : {
11598 : : struct mlx5_flow_tunnel *tunnel;
11599 : 0 : int ret = mlx5_flow_tunnel_validate(dev, app_tunnel, error);
11600 : :
11601 [ # # ]: 0 : if (ret)
11602 : : return ret;
11603 : 0 : ret = mlx5_get_flow_tunnel(dev, app_tunnel, &tunnel);
11604 [ # # ]: 0 : if (ret < 0) {
11605 : 0 : return rte_flow_error_set(error, ret,
11606 : : RTE_FLOW_ERROR_TYPE_HANDLE, NULL,
11607 : : "failed to initialize pmd tunnel");
11608 : : }
11609 : 0 : *items = &tunnel->item;
11610 : 0 : *num_of_items = 1;
11611 : 0 : return 0;
11612 : : }
11613 : :
11614 : : struct tunnel_db_element_release_ctx {
11615 : : struct rte_flow_item *items;
11616 : : struct rte_flow_action *actions;
11617 : : uint32_t num_elements;
11618 : : struct rte_flow_error *error;
11619 : : int ret;
11620 : : };
11621 : :
11622 : : static bool
11623 : 0 : tunnel_element_release_match(struct rte_eth_dev *dev,
11624 : : struct mlx5_flow_tunnel *tunnel, const void *x)
11625 : : {
11626 : : const struct tunnel_db_element_release_ctx *ctx = x;
11627 : :
11628 : : RTE_SET_USED(dev);
11629 [ # # ]: 0 : if (ctx->num_elements != 1)
11630 : : return false;
11631 [ # # ]: 0 : else if (ctx->items)
11632 : 0 : return ctx->items == &tunnel->item;
11633 [ # # ]: 0 : else if (ctx->actions)
11634 : 0 : return ctx->actions == &tunnel->action;
11635 : :
11636 : : return false;
11637 : : }
11638 : :
11639 : : static void
11640 : 0 : tunnel_element_release_hit(struct rte_eth_dev *dev,
11641 : : struct mlx5_flow_tunnel *tunnel, void *x)
11642 : : {
11643 : : struct tunnel_db_element_release_ctx *ctx = x;
11644 : 0 : ctx->ret = 0;
11645 [ # # ]: 0 : if (!(rte_atomic_fetch_sub_explicit(&tunnel->refctn, 1, rte_memory_order_relaxed) - 1))
11646 : 0 : mlx5_flow_tunnel_free(dev, tunnel);
11647 : 0 : }
11648 : :
11649 : : static void
11650 : 0 : tunnel_element_release_miss(struct rte_eth_dev *dev, void *x)
11651 : : {
11652 : : struct tunnel_db_element_release_ctx *ctx = x;
11653 : : RTE_SET_USED(dev);
11654 : 0 : ctx->ret = rte_flow_error_set(ctx->error, EINVAL,
11655 : : RTE_FLOW_ERROR_TYPE_HANDLE, NULL,
11656 : : "invalid argument");
11657 : 0 : }
11658 : :
11659 : : static int
11660 : 0 : mlx5_flow_tunnel_item_release(struct rte_eth_dev *dev,
11661 : : struct rte_flow_item *pmd_items,
11662 : : uint32_t num_items, struct rte_flow_error *err)
11663 : : {
11664 : 0 : struct tunnel_db_element_release_ctx ctx = {
11665 : : .items = pmd_items,
11666 : : .actions = NULL,
11667 : : .num_elements = num_items,
11668 : : .error = err,
11669 : : };
11670 : :
11671 : 0 : mlx5_access_tunnel_offload_db(dev, tunnel_element_release_match,
11672 : : tunnel_element_release_hit,
11673 : : tunnel_element_release_miss, &ctx, false);
11674 : :
11675 : 0 : return ctx.ret;
11676 : : }
11677 : :
11678 : : static int
11679 : 0 : mlx5_flow_tunnel_action_release(struct rte_eth_dev *dev,
11680 : : struct rte_flow_action *pmd_actions,
11681 : : uint32_t num_actions, struct rte_flow_error *err)
11682 : : {
11683 : 0 : struct tunnel_db_element_release_ctx ctx = {
11684 : : .items = NULL,
11685 : : .actions = pmd_actions,
11686 : : .num_elements = num_actions,
11687 : : .error = err,
11688 : : };
11689 : :
11690 : 0 : mlx5_access_tunnel_offload_db(dev, tunnel_element_release_match,
11691 : : tunnel_element_release_hit,
11692 : : tunnel_element_release_miss, &ctx, false);
11693 : :
11694 : 0 : return ctx.ret;
11695 : : }
11696 : :
11697 : : static int
11698 : 0 : mlx5_flow_tunnel_get_restore_info(struct rte_eth_dev *dev,
11699 : : struct rte_mbuf *m,
11700 : : struct rte_flow_restore_info *info,
11701 : : struct rte_flow_error *err)
11702 : : {
11703 : 0 : uint64_t ol_flags = m->ol_flags;
11704 : : const struct mlx5_flow_tbl_data_entry *tble;
11705 : : const uint64_t mask = RTE_MBUF_F_RX_FDIR | RTE_MBUF_F_RX_FDIR_ID;
11706 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
11707 : :
11708 [ # # ]: 0 : if (priv->tunnel_enabled == 0)
11709 : 0 : goto err;
11710 [ # # ]: 0 : if ((ol_flags & mask) != mask)
11711 : 0 : goto err;
11712 : 0 : tble = tunnel_mark_decode(dev, m->hash.fdir.hi);
11713 [ # # ]: 0 : if (!tble) {
11714 : 0 : DRV_LOG(DEBUG, "port %u invalid miss tunnel mark %#x",
11715 : : dev->data->port_id, m->hash.fdir.hi);
11716 : 0 : goto err;
11717 : : }
11718 : : MLX5_ASSERT(tble->tunnel);
11719 : 0 : memcpy(&info->tunnel, &tble->tunnel->app_tunnel, sizeof(info->tunnel));
11720 : 0 : info->group_id = tble->group_id;
11721 : 0 : info->flags = RTE_FLOW_RESTORE_INFO_TUNNEL |
11722 : : RTE_FLOW_RESTORE_INFO_GROUP_ID |
11723 : : RTE_FLOW_RESTORE_INFO_ENCAPSULATED;
11724 : :
11725 : 0 : return 0;
11726 : :
11727 : 0 : err:
11728 : 0 : return rte_flow_error_set(err, EINVAL,
11729 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
11730 : : "failed to get restore info");
11731 : : }
11732 : :
11733 : : #else /* HAVE_IBV_FLOW_DV_SUPPORT */
11734 : : static int
11735 : : mlx5_flow_tunnel_decap_set(__rte_unused struct rte_eth_dev *dev,
11736 : : __rte_unused struct rte_flow_tunnel *app_tunnel,
11737 : : __rte_unused struct rte_flow_action **actions,
11738 : : __rte_unused uint32_t *num_of_actions,
11739 : : __rte_unused struct rte_flow_error *error)
11740 : : {
11741 : : return -ENOTSUP;
11742 : : }
11743 : :
11744 : : static int
11745 : : mlx5_flow_tunnel_match(__rte_unused struct rte_eth_dev *dev,
11746 : : __rte_unused struct rte_flow_tunnel *app_tunnel,
11747 : : __rte_unused struct rte_flow_item **items,
11748 : : __rte_unused uint32_t *num_of_items,
11749 : : __rte_unused struct rte_flow_error *error)
11750 : : {
11751 : : return -ENOTSUP;
11752 : : }
11753 : :
11754 : : static int
11755 : : mlx5_flow_tunnel_item_release(__rte_unused struct rte_eth_dev *dev,
11756 : : __rte_unused struct rte_flow_item *pmd_items,
11757 : : __rte_unused uint32_t num_items,
11758 : : __rte_unused struct rte_flow_error *err)
11759 : : {
11760 : : return -ENOTSUP;
11761 : : }
11762 : :
11763 : : static int
11764 : : mlx5_flow_tunnel_action_release(__rte_unused struct rte_eth_dev *dev,
11765 : : __rte_unused struct rte_flow_action *pmd_action,
11766 : : __rte_unused uint32_t num_actions,
11767 : : __rte_unused struct rte_flow_error *err)
11768 : : {
11769 : : return -ENOTSUP;
11770 : : }
11771 : :
11772 : : static int
11773 : : mlx5_flow_tunnel_get_restore_info(__rte_unused struct rte_eth_dev *dev,
11774 : : __rte_unused struct rte_mbuf *m,
11775 : : __rte_unused struct rte_flow_restore_info *i,
11776 : : __rte_unused struct rte_flow_error *err)
11777 : : {
11778 : : return -ENOTSUP;
11779 : : }
11780 : :
11781 : : static int
11782 : : flow_tunnel_add_default_miss(__rte_unused struct rte_eth_dev *dev,
11783 : : __rte_unused struct rte_flow *flow,
11784 : : __rte_unused const struct rte_flow_attr *attr,
11785 : : __rte_unused const struct rte_flow_action *actions,
11786 : : __rte_unused uint32_t flow_idx,
11787 : : __rte_unused const struct mlx5_flow_tunnel *tunnel,
11788 : : __rte_unused struct tunnel_default_miss_ctx *ctx,
11789 : : __rte_unused struct rte_flow_error *error)
11790 : : {
11791 : : return -ENOTSUP;
11792 : : }
11793 : :
11794 : : static struct mlx5_flow_tunnel *
11795 : : mlx5_find_tunnel_id(__rte_unused struct rte_eth_dev *dev,
11796 : : __rte_unused uint32_t id)
11797 : : {
11798 : : return NULL;
11799 : : }
11800 : :
11801 : : static void
11802 : : mlx5_flow_tunnel_free(__rte_unused struct rte_eth_dev *dev,
11803 : : __rte_unused struct mlx5_flow_tunnel *tunnel)
11804 : : {
11805 : : }
11806 : :
11807 : : static uint32_t
11808 : : tunnel_flow_group_to_flow_table(__rte_unused struct rte_eth_dev *dev,
11809 : : __rte_unused const struct mlx5_flow_tunnel *t,
11810 : : __rte_unused uint32_t group,
11811 : : __rte_unused uint32_t *table,
11812 : : struct rte_flow_error *error)
11813 : : {
11814 : : return rte_flow_error_set(error, ENOTSUP,
11815 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
11816 : : "tunnel offload requires DV support");
11817 : : }
11818 : :
11819 : : void
11820 : : mlx5_release_tunnel_hub(__rte_unused struct mlx5_dev_ctx_shared *sh,
11821 : : __rte_unused uint16_t port_id)
11822 : : {
11823 : : }
11824 : : #endif /* HAVE_IBV_FLOW_DV_SUPPORT */
11825 : :
11826 : : /* Flex flow item API */
11827 : : static struct rte_flow_item_flex_handle *
11828 : 0 : mlx5_flow_flex_item_create(struct rte_eth_dev *dev,
11829 : : const struct rte_flow_item_flex_conf *conf,
11830 : : struct rte_flow_error *error)
11831 : : {
11832 : : static const char err_msg[] = "flex item creation unsupported";
11833 [ # # ]: 0 : struct mlx5_priv *priv = dev->data->dev_private;
11834 : : struct rte_flow_attr attr = { .transfer = 0 };
11835 : 0 : const struct mlx5_flow_driver_ops *fops =
11836 : : flow_get_drv_ops(flow_get_drv_type(dev, &attr));
11837 : :
11838 [ # # ]: 0 : if (!priv->pci_dev) {
11839 : 0 : rte_flow_error_set(error, ENOTSUP,
11840 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
11841 : : "create flex item on PF only");
11842 : 0 : return NULL;
11843 : : }
11844 [ # # ]: 0 : switch (priv->pci_dev->id.device_id) {
11845 : : case PCI_DEVICE_ID_MELLANOX_BLUEFIELD2:
11846 : : case PCI_DEVICE_ID_MELLANOX_BLUEFIELD3:
11847 : : break;
11848 : 0 : default:
11849 : 0 : rte_flow_error_set(error, ENOTSUP,
11850 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
11851 : : "flex item available on BlueField ports only");
11852 : 0 : return NULL;
11853 : : }
11854 [ # # ]: 0 : if (!fops->item_create) {
11855 : 0 : DRV_LOG(ERR, "port %u %s.", dev->data->port_id, err_msg);
11856 : 0 : rte_flow_error_set(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ACTION,
11857 : : NULL, err_msg);
11858 : 0 : return NULL;
11859 : : }
11860 : 0 : return fops->item_create(dev, conf, error);
11861 : : }
11862 : :
11863 : : static int
11864 [ # # ]: 0 : mlx5_flow_flex_item_release(struct rte_eth_dev *dev,
11865 : : const struct rte_flow_item_flex_handle *handle,
11866 : : struct rte_flow_error *error)
11867 : : {
11868 : : static const char err_msg[] = "flex item release unsupported";
11869 : : struct rte_flow_attr attr = { .transfer = 0 };
11870 : 0 : const struct mlx5_flow_driver_ops *fops =
11871 : : flow_get_drv_ops(flow_get_drv_type(dev, &attr));
11872 : :
11873 [ # # ]: 0 : if (!fops->item_release) {
11874 : 0 : DRV_LOG(ERR, "port %u %s.", dev->data->port_id, err_msg);
11875 : 0 : rte_flow_error_set(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ACTION,
11876 : : NULL, err_msg);
11877 : 0 : return -rte_errno;
11878 : : }
11879 : 0 : return fops->item_release(dev, handle, error);
11880 : : }
11881 : :
11882 : : static void
11883 : 0 : mlx5_dbg__print_pattern(const struct rte_flow_item *item)
11884 : : {
11885 : : int ret;
11886 : : struct rte_flow_error error;
11887 : :
11888 [ # # ]: 0 : for (; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
11889 : : char *item_name;
11890 : 0 : ret = rte_flow_conv(RTE_FLOW_CONV_OP_ITEM_NAME_PTR, &item_name,
11891 : : sizeof(item_name),
11892 : 0 : (void *)(uintptr_t)item->type, &error);
11893 [ # # ]: 0 : if (ret > 0)
11894 : 0 : printf("%s ", item_name);
11895 : : else
11896 : 0 : printf("%d\n", (int)item->type);
11897 : : }
11898 : : printf("END\n");
11899 : 0 : }
11900 : :
11901 : : static int
11902 : : mlx5_flow_is_std_vxlan_port(const struct rte_flow_item *udp_item)
11903 : : {
11904 : 0 : const struct rte_flow_item_udp *spec = udp_item->spec;
11905 : 0 : const struct rte_flow_item_udp *mask = udp_item->mask;
11906 : : uint16_t udp_dport = 0;
11907 : :
11908 : 0 : if (spec != NULL) {
11909 [ # # ]: 0 : if (!mask)
11910 : : mask = &rte_flow_item_udp_mask;
11911 [ # # ]: 0 : udp_dport = rte_be_to_cpu_16(spec->hdr.dst_port &
11912 : : mask->hdr.dst_port);
11913 : : }
11914 : 0 : return (!udp_dport || udp_dport == MLX5_UDP_PORT_VXLAN);
11915 : : }
11916 : :
11917 : : static const struct mlx5_flow_expand_node *
11918 : 0 : mlx5_flow_expand_rss_adjust_node(const struct rte_flow_item *pattern,
11919 : : unsigned int item_idx,
11920 : : const struct mlx5_flow_expand_node graph[],
11921 : : const struct mlx5_flow_expand_node *node)
11922 : : {
11923 : 0 : const struct rte_flow_item *item = pattern + item_idx, *prev_item;
11924 : :
11925 [ # # # # ]: 0 : if (item->type == RTE_FLOW_ITEM_TYPE_VXLAN &&
11926 : 0 : node != NULL &&
11927 [ # # ]: 0 : node->type == RTE_FLOW_ITEM_TYPE_VXLAN) {
11928 : : /*
11929 : : * The expansion node is VXLAN and it is also the last
11930 : : * expandable item in the pattern, so need to continue
11931 : : * expansion of the inner tunnel.
11932 : : */
11933 : : MLX5_ASSERT(item_idx > 0);
11934 [ # # ]: 0 : prev_item = pattern + item_idx - 1;
11935 : : MLX5_ASSERT(prev_item->type == RTE_FLOW_ITEM_TYPE_UDP);
11936 [ # # ]: 0 : if (mlx5_flow_is_std_vxlan_port(prev_item))
11937 : 0 : return &graph[MLX5_EXPANSION_STD_VXLAN];
11938 : 0 : return &graph[MLX5_EXPANSION_L3_VXLAN];
11939 : : }
11940 : : return node;
11941 : : }
11942 : :
11943 : : /* Map of Verbs to Flow priority with 8 Verbs priorities. */
11944 : : static const uint32_t priority_map_3[][MLX5_PRIORITY_MAP_MAX] = {
11945 : : { 0, 1, 2 }, { 2, 3, 4 }, { 5, 6, 7 },
11946 : : };
11947 : :
11948 : : /* Map of Verbs to Flow priority with 16 Verbs priorities. */
11949 : : static const uint32_t priority_map_5[][MLX5_PRIORITY_MAP_MAX] = {
11950 : : { 0, 1, 2 }, { 3, 4, 5 }, { 6, 7, 8 },
11951 : : { 9, 10, 11 }, { 12, 13, 14 },
11952 : : };
11953 : :
11954 : : /**
11955 : : * Discover the number of available flow priorities.
11956 : : *
11957 : : * @param dev
11958 : : * Ethernet device.
11959 : : *
11960 : : * @return
11961 : : * On success, number of available flow priorities.
11962 : : * On failure, a negative errno-style code and rte_errno is set.
11963 : : */
11964 : : int
11965 : 0 : mlx5_flow_discover_priorities(struct rte_eth_dev *dev)
11966 : : {
11967 : : static const uint16_t vprio[] = {8, 16};
11968 : 0 : const struct mlx5_priv *priv = dev->data->dev_private;
11969 : : const struct mlx5_flow_driver_ops *fops;
11970 : : enum mlx5_flow_drv_type type;
11971 : : int ret;
11972 : :
11973 : : type = mlx5_flow_os_get_type();
11974 : : if (type == MLX5_FLOW_TYPE_MAX) {
11975 : : type = MLX5_FLOW_TYPE_VERBS;
11976 [ # # # # ]: 0 : if (priv->sh->cdev->config.devx && priv->sh->config.dv_flow_en)
11977 : : type = MLX5_FLOW_TYPE_DV;
11978 : : }
11979 : 0 : fops = flow_get_drv_ops(type);
11980 [ # # ]: 0 : if (fops->discover_priorities == NULL) {
11981 : 0 : DRV_LOG(ERR, "Priority discovery not supported");
11982 : 0 : rte_errno = ENOTSUP;
11983 : 0 : return -rte_errno;
11984 : : }
11985 : 0 : ret = fops->discover_priorities(dev, vprio, RTE_DIM(vprio));
11986 [ # # ]: 0 : if (ret < 0)
11987 : : return ret;
11988 [ # # # ]: 0 : switch (ret) {
11989 : : case 8:
11990 : : ret = RTE_DIM(priority_map_3);
11991 : : break;
11992 : 0 : case 16:
11993 : : ret = RTE_DIM(priority_map_5);
11994 : 0 : break;
11995 : 0 : default:
11996 : 0 : rte_errno = ENOTSUP;
11997 : 0 : DRV_LOG(ERR,
11998 : : "port %u maximum priority: %d expected 8/16",
11999 : : dev->data->port_id, ret);
12000 : 0 : return -rte_errno;
12001 : : }
12002 : 0 : DRV_LOG(INFO, "port %u supported flow priorities:"
12003 : : " 0-%d for ingress or egress root table,"
12004 : : " 0-%d for non-root table or transfer root table.",
12005 : : dev->data->port_id, ret - 2,
12006 : : MLX5_NON_ROOT_FLOW_MAX_PRIO - 1);
12007 : 0 : return ret;
12008 : : }
12009 : :
12010 : : /**
12011 : : * Adjust flow priority based on the highest layer and the request priority.
12012 : : *
12013 : : * @param[in] dev
12014 : : * Pointer to the Ethernet device structure.
12015 : : * @param[in] priority
12016 : : * The rule base priority.
12017 : : * @param[in] subpriority
12018 : : * The priority based on the items.
12019 : : *
12020 : : * @return
12021 : : * The new priority.
12022 : : */
12023 : : uint32_t
12024 : 0 : mlx5_flow_adjust_priority(struct rte_eth_dev *dev, int32_t priority,
12025 : : uint32_t subpriority)
12026 : : {
12027 : : uint32_t res = 0;
12028 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
12029 : :
12030 [ # # # ]: 0 : switch (priv->sh->flow_max_priority) {
12031 : 0 : case RTE_DIM(priority_map_3):
12032 : 0 : res = priority_map_3[priority][subpriority];
12033 : 0 : break;
12034 : 0 : case RTE_DIM(priority_map_5):
12035 : 0 : res = priority_map_5[priority][subpriority];
12036 : 0 : break;
12037 : : }
12038 : 0 : return res;
12039 : : }
12040 : :
12041 : : /**
12042 : : * Get the priority for sending traffic to kernel table.
12043 : : *
12044 : : * @param[in] dev
12045 : : * Pointer to the Ethernet device structure.
12046 : : *
12047 : : * @return
12048 : : * On success: the value of priority for sending traffic to kernel table
12049 : : * On failure: -1
12050 : : */
12051 : : uint32_t
12052 : 0 : mlx5_get_send_to_kernel_priority(struct rte_eth_dev *dev)
12053 : : {
12054 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
12055 : : uint32_t res;
12056 : :
12057 [ # # # ]: 0 : switch (priv->sh->flow_max_priority) {
12058 : : case RTE_DIM(priority_map_5):
12059 : : res = 15;
12060 : : break;
12061 : 0 : case RTE_DIM(priority_map_3):
12062 : : res = 7;
12063 : 0 : break;
12064 : 0 : default:
12065 : 0 : DRV_LOG(ERR,
12066 : : "port %u maximum priority: %d expected 8/16",
12067 : : dev->data->port_id, priv->sh->flow_max_priority);
12068 : : res = (uint32_t)-1;
12069 : : }
12070 : 0 : return res;
12071 : : }
12072 : :
12073 : : /**
12074 : : * Get the E-Switch Manager vport id.
12075 : : *
12076 : : * @param[in] dev
12077 : : * Pointer to the Ethernet device structure.
12078 : : *
12079 : : * @return
12080 : : * The vport id.
12081 : : */
12082 : 0 : int16_t mlx5_flow_get_esw_manager_vport_id(struct rte_eth_dev *dev)
12083 : : {
12084 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
12085 : 0 : struct mlx5_common_device *cdev = priv->sh->cdev;
12086 : :
12087 : : /* New FW exposes E-Switch Manager vport ID, can use it directly. */
12088 [ # # ]: 0 : if (cdev->config.hca_attr.esw_mgr_vport_id_valid)
12089 : 0 : return (int16_t)cdev->config.hca_attr.esw_mgr_vport_id;
12090 : :
12091 [ # # ]: 0 : if (priv->pci_dev == NULL)
12092 : : return 0;
12093 [ # # ]: 0 : switch (priv->pci_dev->id.device_id) {
12094 : : case PCI_DEVICE_ID_MELLANOX_BLUEFIELD:
12095 : : case PCI_DEVICE_ID_MELLANOX_BLUEFIELD2:
12096 : : case PCI_DEVICE_ID_MELLANOX_BLUEFIELD3:
12097 : : /*
12098 : : * In old FW which doesn't expose the E-Switch Manager vport ID in the capability,
12099 : : * only the BF embedded CPUs control the E-Switch Manager port. Hence,
12100 : : * ECPF vport ID is selected and not the host port (0) in any BF case.
12101 : : */
12102 : : return (int16_t)MLX5_ECPF_VPORT_ID;
12103 : 0 : default:
12104 : 0 : return MLX5_PF_VPORT_ID;
12105 : : }
12106 : : }
12107 : :
12108 : : /**
12109 : : * Parse item to get the vport id.
12110 : : *
12111 : : * @param[in] dev
12112 : : * Pointer to the Ethernet device structure.
12113 : : * @param[in] item
12114 : : * The src port id match item.
12115 : : * @param[out] vport_id
12116 : : * Pointer to put the vport id.
12117 : : * @param[out] all_ports
12118 : : * Indicate if the item matches all ports.
12119 : : * @param[out] error
12120 : : * Pointer to error structure.
12121 : : *
12122 : : * @return
12123 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
12124 : : */
12125 : 0 : int mlx5_flow_get_item_vport_id(struct rte_eth_dev *dev,
12126 : : const struct rte_flow_item *item,
12127 : : uint16_t *vport_id,
12128 : : bool *all_ports,
12129 : : struct rte_flow_error *error)
12130 : : {
12131 : : struct mlx5_priv *port_priv;
12132 : : const struct rte_flow_item_port_id *pid_v = NULL;
12133 : : const struct rte_flow_item_ethdev *dev_v = NULL;
12134 : : uint32_t esw_mgr_port;
12135 : : uint32_t src_port;
12136 : :
12137 [ # # ]: 0 : if (all_ports)
12138 : 0 : *all_ports = false;
12139 [ # # # # ]: 0 : switch (item->type) {
12140 : 0 : case RTE_FLOW_ITEM_TYPE_PORT_ID:
12141 : 0 : pid_v = item->spec;
12142 [ # # ]: 0 : if (!pid_v)
12143 : : return 0;
12144 : 0 : src_port = pid_v->id;
12145 : : esw_mgr_port = MLX5_PORT_ESW_MGR;
12146 : 0 : break;
12147 : 0 : case RTE_FLOW_ITEM_TYPE_REPRESENTED_PORT:
12148 : 0 : dev_v = item->spec;
12149 [ # # ]: 0 : if (!dev_v) {
12150 [ # # ]: 0 : if (all_ports)
12151 : 0 : *all_ports = true;
12152 : 0 : return 0;
12153 : : }
12154 : 0 : src_port = dev_v->port_id;
12155 : : esw_mgr_port = MLX5_REPRESENTED_PORT_ESW_MGR;
12156 : 0 : break;
12157 : : case RTE_FLOW_ITEM_TYPE_PORT_REPRESENTOR:
12158 : : src_port = MLX5_REPRESENTED_PORT_ESW_MGR;
12159 : : esw_mgr_port = MLX5_REPRESENTED_PORT_ESW_MGR;
12160 : : break;
12161 : 0 : default:
12162 : 0 : return rte_flow_error_set(error, EINVAL, RTE_FLOW_ERROR_TYPE_ITEM_SPEC,
12163 : : NULL, "Incorrect item type.");
12164 : : }
12165 [ # # ]: 0 : if (src_port == esw_mgr_port) {
12166 : 0 : *vport_id = mlx5_flow_get_esw_manager_vport_id(dev);
12167 : : } else {
12168 : 0 : port_priv = mlx5_port_to_eswitch_info(src_port, false);
12169 [ # # ]: 0 : if (!port_priv)
12170 : 0 : return rte_flow_error_set(error, EINVAL, RTE_FLOW_ERROR_TYPE_ITEM_SPEC,
12171 : : NULL, "Failed to get port info.");
12172 : 0 : *vport_id = port_priv->representor_id;
12173 : : }
12174 : :
12175 : : return 0;
12176 : : }
12177 : :
12178 : : int
12179 : 0 : mlx5_flow_pick_transfer_proxy(struct rte_eth_dev *dev,
12180 : : uint16_t *proxy_port_id,
12181 : : struct rte_flow_error *error)
12182 : : {
12183 : 0 : const struct mlx5_priv *priv = dev->data->dev_private;
12184 : : uint16_t port_id;
12185 : :
12186 [ # # ]: 0 : if (!priv->sh->config.dv_esw_en)
12187 : 0 : return rte_flow_error_set(error, EINVAL,
12188 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
12189 : : NULL,
12190 : : "unable to provide a proxy port"
12191 : : " without E-Switch configured");
12192 [ # # ]: 0 : if (!priv->master && !priv->representor)
12193 : 0 : return rte_flow_error_set(error, EINVAL,
12194 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
12195 : : NULL,
12196 : : "unable to provide a proxy port"
12197 : : " for port which is not a master"
12198 : : " or a representor port");
12199 [ # # ]: 0 : if (priv->master) {
12200 : 0 : *proxy_port_id = dev->data->port_id;
12201 : 0 : return 0;
12202 : : }
12203 [ # # ]: 0 : MLX5_ETH_FOREACH_DEV(port_id, dev->device) {
12204 : 0 : const struct rte_eth_dev *port_dev = &rte_eth_devices[port_id];
12205 : 0 : const struct mlx5_priv *port_priv = port_dev->data->dev_private;
12206 : :
12207 [ # # ]: 0 : if (port_priv->master &&
12208 [ # # ]: 0 : port_priv->domain_id == priv->domain_id) {
12209 : 0 : *proxy_port_id = port_id;
12210 : 0 : return 0;
12211 : : }
12212 : : }
12213 : 0 : return rte_flow_error_set(error, ENODEV,
12214 : : RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
12215 : : NULL, "unable to find a proxy port");
12216 : : }
12217 : :
12218 : : /**
12219 : : * Discover IPv6 traffic class ID support in rdma-core and firmware.
12220 : : *
12221 : : * @param dev
12222 : : * Ethernet device.
12223 : : *
12224 : : * @return
12225 : : * 0, rdma-core is good to work with firmware.
12226 : : * -EOPNOTSUPP, rdma-core could not work with new IPv6 TC ID.
12227 : : */
12228 : : int
12229 : 0 : mlx5_flow_discover_ipv6_tc_support(struct rte_eth_dev *dev)
12230 : : {
12231 : : struct rte_flow_action_set_dscp set_dscp;
12232 : : struct rte_flow_attr attr;
12233 : : struct rte_flow_action actions[2];
12234 : : struct rte_flow_item items[3];
12235 : : struct rte_flow_error error;
12236 : : uint32_t flow_idx;
12237 : :
12238 : : memset(&attr, 0, sizeof(attr));
12239 : : memset(actions, 0, sizeof(actions));
12240 : : memset(items, 0, sizeof(items));
12241 : 0 : attr.group = 1;
12242 : 0 : attr.egress = 1;
12243 : 0 : items[0].type = RTE_FLOW_ITEM_TYPE_ETH;
12244 : 0 : items[1].type = RTE_FLOW_ITEM_TYPE_IPV6;
12245 : : items[2].type = RTE_FLOW_ITEM_TYPE_END;
12246 : : /* Random value */
12247 : 0 : set_dscp.dscp = 9;
12248 : 0 : actions[0].type = RTE_FLOW_ACTION_TYPE_SET_IPV6_DSCP;
12249 : 0 : actions[0].conf = &set_dscp;
12250 : : actions[1].type = RTE_FLOW_ACTION_TYPE_END;
12251 : :
12252 : 0 : flow_idx = mlx5_flow_list_create(dev, MLX5_FLOW_TYPE_GEN, &attr, items,
12253 : : actions, true, &error);
12254 [ # # ]: 0 : if (!flow_idx)
12255 : : return -EOPNOTSUPP;
12256 : :
12257 : 0 : mlx5_flow_list_destroy(dev, MLX5_FLOW_TYPE_GEN, flow_idx);
12258 : 0 : return 0;
12259 : : }
12260 : :
12261 : : void *
12262 : 0 : rte_pmd_mlx5_create_geneve_tlv_parser(uint16_t port_id,
12263 : : const struct rte_pmd_mlx5_geneve_tlv tlv_list[],
12264 : : uint8_t nb_options)
12265 : : {
12266 : : #ifdef HAVE_MLX5_HWS_SUPPORT
12267 : 0 : return mlx5_geneve_tlv_parser_create(port_id, tlv_list, nb_options);
12268 : : #else
12269 : : (void)port_id;
12270 : : (void)tlv_list;
12271 : : (void)nb_options;
12272 : : DRV_LOG(ERR, "%s is not supported.", __func__);
12273 : : rte_errno = ENOTSUP;
12274 : : return NULL;
12275 : : #endif
12276 : : }
12277 : :
12278 : : int
12279 : 0 : rte_pmd_mlx5_destroy_geneve_tlv_parser(void *handle)
12280 : : {
12281 : : #ifdef HAVE_MLX5_HWS_SUPPORT
12282 : 0 : return mlx5_geneve_tlv_parser_destroy(handle);
12283 : : #else
12284 : : (void)handle;
12285 : : DRV_LOG(ERR, "%s is not supported.", __func__);
12286 : : rte_errno = ENOTSUP;
12287 : : return -rte_errno;
12288 : : #endif
12289 : : }
12290 : :
12291 : : bool
12292 : 0 : mlx5_ctrl_flow_uc_dmac_exists(struct rte_eth_dev *dev, const struct rte_ether_addr *addr)
12293 : : {
12294 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
12295 : : struct mlx5_ctrl_flow_entry *entry;
12296 : : bool exists = false;
12297 : :
12298 [ # # ]: 0 : LIST_FOREACH(entry, &priv->hw_ctrl_flows, next) {
12299 [ # # # # ]: 0 : if (entry->info.type == MLX5_CTRL_FLOW_TYPE_DEFAULT_RX_RSS_UNICAST_DMAC &&
12300 : : rte_is_same_ether_addr(addr, &entry->info.uc.dmac)) {
12301 : : exists = true;
12302 : : break;
12303 : : }
12304 : : }
12305 : 0 : return exists;
12306 : : }
12307 : :
12308 : : bool
12309 : 0 : mlx5_ctrl_flow_uc_dmac_vlan_exists(struct rte_eth_dev *dev,
12310 : : const struct rte_ether_addr *addr,
12311 : : const uint16_t vid)
12312 : : {
12313 : 0 : struct mlx5_priv *priv = dev->data->dev_private;
12314 : : struct mlx5_ctrl_flow_entry *entry;
12315 : : bool exists = false;
12316 : :
12317 [ # # ]: 0 : LIST_FOREACH(entry, &priv->hw_ctrl_flows, next) {
12318 [ # # # # ]: 0 : if (entry->info.type == MLX5_CTRL_FLOW_TYPE_DEFAULT_RX_RSS_UNICAST_DMAC_VLAN &&
12319 : 0 : rte_is_same_ether_addr(addr, &entry->info.uc.dmac) &&
12320 [ # # ]: 0 : vid == entry->info.uc.vlan) {
12321 : : exists = true;
12322 : : break;
12323 : : }
12324 : : }
12325 : 0 : return exists;
12326 : : }
|