d88daeccbcc2b11c6f2dd544bfe10add883bec5d
[dpdk.git] / drivers / net / mlx5 / mlx5_flow_dv.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2018 Mellanox Technologies, Ltd
3  */
4
5 #include <sys/queue.h>
6 #include <stdalign.h>
7 #include <stdint.h>
8 #include <string.h>
9 #include <unistd.h>
10
11 /* Verbs header. */
12 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
13 #ifdef PEDANTIC
14 #pragma GCC diagnostic ignored "-Wpedantic"
15 #endif
16 #include <infiniband/verbs.h>
17 #ifdef PEDANTIC
18 #pragma GCC diagnostic error "-Wpedantic"
19 #endif
20
21 #include <rte_common.h>
22 #include <rte_ether.h>
23 #include <rte_ethdev_driver.h>
24 #include <rte_flow.h>
25 #include <rte_flow_driver.h>
26 #include <rte_malloc.h>
27 #include <rte_ip.h>
28 #include <rte_gre.h>
29 #include <rte_vxlan.h>
30 #include <rte_gtp.h>
31
32 #include <mlx5_glue.h>
33 #include <mlx5_devx_cmds.h>
34 #include <mlx5_prm.h>
35
36 #include "mlx5_defs.h"
37 #include "mlx5.h"
38 #include "mlx5_flow.h"
39 #include "mlx5_rxtx.h"
40
41 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
42
43 #ifndef HAVE_IBV_FLOW_DEVX_COUNTERS
44 #define MLX5DV_FLOW_ACTION_COUNTERS_DEVX 0
45 #endif
46
47 #ifndef HAVE_MLX5DV_DR_ESWITCH
48 #ifndef MLX5DV_FLOW_TABLE_TYPE_FDB
49 #define MLX5DV_FLOW_TABLE_TYPE_FDB 0
50 #endif
51 #endif
52
53 #ifndef HAVE_MLX5DV_DR
54 #define MLX5DV_DR_ACTION_FLAGS_ROOT_LEVEL 1
55 #endif
56
57 #define MLX5_ENCAPSULATION_DECISION_SIZE (sizeof(struct rte_flow_item_eth) + \
58                                           sizeof(struct rte_flow_item_ipv4))
59 /* VLAN header definitions */
60 #define MLX5DV_FLOW_VLAN_PCP_SHIFT 13
61 #define MLX5DV_FLOW_VLAN_PCP_MASK (0x7 << MLX5DV_FLOW_VLAN_PCP_SHIFT)
62 #define MLX5DV_FLOW_VLAN_VID_MASK 0x0fff
63 #define MLX5DV_FLOW_VLAN_PCP_MASK_BE RTE_BE16(MLX5DV_FLOW_VLAN_PCP_MASK)
64 #define MLX5DV_FLOW_VLAN_VID_MASK_BE RTE_BE16(MLX5DV_FLOW_VLAN_VID_MASK)
65
66 union flow_dv_attr {
67         struct {
68                 uint32_t valid:1;
69                 uint32_t ipv4:1;
70                 uint32_t ipv6:1;
71                 uint32_t tcp:1;
72                 uint32_t udp:1;
73                 uint32_t reserved:27;
74         };
75         uint32_t attr;
76 };
77
78 /**
79  * Initialize flow attributes structure according to flow items' types.
80  *
81  * flow_dv_validate() avoids multiple L3/L4 layers cases other than tunnel
82  * mode. For tunnel mode, the items to be modified are the outermost ones.
83  *
84  * @param[in] item
85  *   Pointer to item specification.
86  * @param[out] attr
87  *   Pointer to flow attributes structure.
88  */
89 static void
90 flow_dv_attr_init(const struct rte_flow_item *item, union flow_dv_attr *attr)
91 {
92         for (; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
93                 switch (item->type) {
94                 case RTE_FLOW_ITEM_TYPE_IPV4:
95                         if (!attr->ipv6)
96                                 attr->ipv4 = 1;
97                         break;
98                 case RTE_FLOW_ITEM_TYPE_IPV6:
99                         if (!attr->ipv4)
100                                 attr->ipv6 = 1;
101                         break;
102                 case RTE_FLOW_ITEM_TYPE_UDP:
103                         if (!attr->tcp)
104                                 attr->udp = 1;
105                         break;
106                 case RTE_FLOW_ITEM_TYPE_TCP:
107                         if (!attr->udp)
108                                 attr->tcp = 1;
109                         break;
110                 default:
111                         break;
112                 }
113         }
114         attr->valid = 1;
115 }
116
117 /**
118  * Convert rte_mtr_color to mlx5 color.
119  *
120  * @param[in] rcol
121  *   rte_mtr_color.
122  *
123  * @return
124  *   mlx5 color.
125  */
126 static int
127 rte_col_2_mlx5_col(enum rte_color rcol)
128 {
129         switch (rcol) {
130         case RTE_COLOR_GREEN:
131                 return MLX5_FLOW_COLOR_GREEN;
132         case RTE_COLOR_YELLOW:
133                 return MLX5_FLOW_COLOR_YELLOW;
134         case RTE_COLOR_RED:
135                 return MLX5_FLOW_COLOR_RED;
136         default:
137                 break;
138         }
139         return MLX5_FLOW_COLOR_UNDEFINED;
140 }
141
142 struct field_modify_info {
143         uint32_t size; /* Size of field in protocol header, in bytes. */
144         uint32_t offset; /* Offset of field in protocol header, in bytes. */
145         enum mlx5_modification_field id;
146 };
147
148 struct field_modify_info modify_eth[] = {
149         {4,  0, MLX5_MODI_OUT_DMAC_47_16},
150         {2,  4, MLX5_MODI_OUT_DMAC_15_0},
151         {4,  6, MLX5_MODI_OUT_SMAC_47_16},
152         {2, 10, MLX5_MODI_OUT_SMAC_15_0},
153         {0, 0, 0},
154 };
155
156 struct field_modify_info modify_vlan_out_first_vid[] = {
157         /* Size in bits !!! */
158         {12, 0, MLX5_MODI_OUT_FIRST_VID},
159         {0, 0, 0},
160 };
161
162 struct field_modify_info modify_ipv4[] = {
163         {1,  1, MLX5_MODI_OUT_IP_DSCP},
164         {1,  8, MLX5_MODI_OUT_IPV4_TTL},
165         {4, 12, MLX5_MODI_OUT_SIPV4},
166         {4, 16, MLX5_MODI_OUT_DIPV4},
167         {0, 0, 0},
168 };
169
170 struct field_modify_info modify_ipv6[] = {
171         {1,  0, MLX5_MODI_OUT_IP_DSCP},
172         {1,  7, MLX5_MODI_OUT_IPV6_HOPLIMIT},
173         {4,  8, MLX5_MODI_OUT_SIPV6_127_96},
174         {4, 12, MLX5_MODI_OUT_SIPV6_95_64},
175         {4, 16, MLX5_MODI_OUT_SIPV6_63_32},
176         {4, 20, MLX5_MODI_OUT_SIPV6_31_0},
177         {4, 24, MLX5_MODI_OUT_DIPV6_127_96},
178         {4, 28, MLX5_MODI_OUT_DIPV6_95_64},
179         {4, 32, MLX5_MODI_OUT_DIPV6_63_32},
180         {4, 36, MLX5_MODI_OUT_DIPV6_31_0},
181         {0, 0, 0},
182 };
183
184 struct field_modify_info modify_udp[] = {
185         {2, 0, MLX5_MODI_OUT_UDP_SPORT},
186         {2, 2, MLX5_MODI_OUT_UDP_DPORT},
187         {0, 0, 0},
188 };
189
190 struct field_modify_info modify_tcp[] = {
191         {2, 0, MLX5_MODI_OUT_TCP_SPORT},
192         {2, 2, MLX5_MODI_OUT_TCP_DPORT},
193         {4, 4, MLX5_MODI_OUT_TCP_SEQ_NUM},
194         {4, 8, MLX5_MODI_OUT_TCP_ACK_NUM},
195         {0, 0, 0},
196 };
197
198 static void
199 mlx5_flow_tunnel_ip_check(const struct rte_flow_item *item __rte_unused,
200                           uint8_t next_protocol, uint64_t *item_flags,
201                           int *tunnel)
202 {
203         MLX5_ASSERT(item->type == RTE_FLOW_ITEM_TYPE_IPV4 ||
204                     item->type == RTE_FLOW_ITEM_TYPE_IPV6);
205         if (next_protocol == IPPROTO_IPIP) {
206                 *item_flags |= MLX5_FLOW_LAYER_IPIP;
207                 *tunnel = 1;
208         }
209         if (next_protocol == IPPROTO_IPV6) {
210                 *item_flags |= MLX5_FLOW_LAYER_IPV6_ENCAP;
211                 *tunnel = 1;
212         }
213 }
214
215 /**
216  * Acquire the synchronizing object to protect multithreaded access
217  * to shared dv context. Lock occurs only if context is actually
218  * shared, i.e. we have multiport IB device and representors are
219  * created.
220  *
221  * @param[in] dev
222  *   Pointer to the rte_eth_dev structure.
223  */
224 static void
225 flow_dv_shared_lock(struct rte_eth_dev *dev)
226 {
227         struct mlx5_priv *priv = dev->data->dev_private;
228         struct mlx5_ibv_shared *sh = priv->sh;
229
230         if (sh->dv_refcnt > 1) {
231                 int ret;
232
233                 ret = pthread_mutex_lock(&sh->dv_mutex);
234                 MLX5_ASSERT(!ret);
235                 (void)ret;
236         }
237 }
238
239 static void
240 flow_dv_shared_unlock(struct rte_eth_dev *dev)
241 {
242         struct mlx5_priv *priv = dev->data->dev_private;
243         struct mlx5_ibv_shared *sh = priv->sh;
244
245         if (sh->dv_refcnt > 1) {
246                 int ret;
247
248                 ret = pthread_mutex_unlock(&sh->dv_mutex);
249                 MLX5_ASSERT(!ret);
250                 (void)ret;
251         }
252 }
253
254 /* Update VLAN's VID/PCP based on input rte_flow_action.
255  *
256  * @param[in] action
257  *   Pointer to struct rte_flow_action.
258  * @param[out] vlan
259  *   Pointer to struct rte_vlan_hdr.
260  */
261 static void
262 mlx5_update_vlan_vid_pcp(const struct rte_flow_action *action,
263                          struct rte_vlan_hdr *vlan)
264 {
265         uint16_t vlan_tci;
266         if (action->type == RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP) {
267                 vlan_tci =
268                     ((const struct rte_flow_action_of_set_vlan_pcp *)
269                                                action->conf)->vlan_pcp;
270                 vlan_tci = vlan_tci << MLX5DV_FLOW_VLAN_PCP_SHIFT;
271                 vlan->vlan_tci &= ~MLX5DV_FLOW_VLAN_PCP_MASK;
272                 vlan->vlan_tci |= vlan_tci;
273         } else if (action->type == RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID) {
274                 vlan->vlan_tci &= ~MLX5DV_FLOW_VLAN_VID_MASK;
275                 vlan->vlan_tci |= rte_be_to_cpu_16
276                     (((const struct rte_flow_action_of_set_vlan_vid *)
277                                              action->conf)->vlan_vid);
278         }
279 }
280
281 /**
282  * Fetch 1, 2, 3 or 4 byte field from the byte array
283  * and return as unsigned integer in host-endian format.
284  *
285  * @param[in] data
286  *   Pointer to data array.
287  * @param[in] size
288  *   Size of field to extract.
289  *
290  * @return
291  *   converted field in host endian format.
292  */
293 static inline uint32_t
294 flow_dv_fetch_field(const uint8_t *data, uint32_t size)
295 {
296         uint32_t ret;
297
298         switch (size) {
299         case 1:
300                 ret = *data;
301                 break;
302         case 2:
303                 ret = rte_be_to_cpu_16(*(const unaligned_uint16_t *)data);
304                 break;
305         case 3:
306                 ret = rte_be_to_cpu_16(*(const unaligned_uint16_t *)data);
307                 ret = (ret << 8) | *(data + sizeof(uint16_t));
308                 break;
309         case 4:
310                 ret = rte_be_to_cpu_32(*(const unaligned_uint32_t *)data);
311                 break;
312         default:
313                 MLX5_ASSERT(false);
314                 ret = 0;
315                 break;
316         }
317         return ret;
318 }
319
320 /**
321  * Convert modify-header action to DV specification.
322  *
323  * Data length of each action is determined by provided field description
324  * and the item mask. Data bit offset and width of each action is determined
325  * by provided item mask.
326  *
327  * @param[in] item
328  *   Pointer to item specification.
329  * @param[in] field
330  *   Pointer to field modification information.
331  *     For MLX5_MODIFICATION_TYPE_SET specifies destination field.
332  *     For MLX5_MODIFICATION_TYPE_ADD specifies destination field.
333  *     For MLX5_MODIFICATION_TYPE_COPY specifies source field.
334  * @param[in] dcopy
335  *   Destination field info for MLX5_MODIFICATION_TYPE_COPY in @type.
336  *   Negative offset value sets the same offset as source offset.
337  *   size field is ignored, value is taken from source field.
338  * @param[in,out] resource
339  *   Pointer to the modify-header resource.
340  * @param[in] type
341  *   Type of modification.
342  * @param[out] error
343  *   Pointer to the error structure.
344  *
345  * @return
346  *   0 on success, a negative errno value otherwise and rte_errno is set.
347  */
348 static int
349 flow_dv_convert_modify_action(struct rte_flow_item *item,
350                               struct field_modify_info *field,
351                               struct field_modify_info *dcopy,
352                               struct mlx5_flow_dv_modify_hdr_resource *resource,
353                               uint32_t type, struct rte_flow_error *error)
354 {
355         uint32_t i = resource->actions_num;
356         struct mlx5_modification_cmd *actions = resource->actions;
357
358         /*
359          * The item and mask are provided in big-endian format.
360          * The fields should be presented as in big-endian format either.
361          * Mask must be always present, it defines the actual field width.
362          */
363         MLX5_ASSERT(item->mask);
364         MLX5_ASSERT(field->size);
365         do {
366                 unsigned int size_b;
367                 unsigned int off_b;
368                 uint32_t mask;
369                 uint32_t data;
370
371                 if (i >= MLX5_MAX_MODIFY_NUM)
372                         return rte_flow_error_set(error, EINVAL,
373                                  RTE_FLOW_ERROR_TYPE_ACTION, NULL,
374                                  "too many items to modify");
375                 /* Fetch variable byte size mask from the array. */
376                 mask = flow_dv_fetch_field((const uint8_t *)item->mask +
377                                            field->offset, field->size);
378                 if (!mask) {
379                         ++field;
380                         continue;
381                 }
382                 /* Deduce actual data width in bits from mask value. */
383                 off_b = rte_bsf32(mask);
384                 size_b = sizeof(uint32_t) * CHAR_BIT -
385                          off_b - __builtin_clz(mask);
386                 MLX5_ASSERT(size_b);
387                 size_b = size_b == sizeof(uint32_t) * CHAR_BIT ? 0 : size_b;
388                 actions[i] = (struct mlx5_modification_cmd) {
389                         .action_type = type,
390                         .field = field->id,
391                         .offset = off_b,
392                         .length = size_b,
393                 };
394                 /* Convert entire record to expected big-endian format. */
395                 actions[i].data0 = rte_cpu_to_be_32(actions[i].data0);
396                 if (type == MLX5_MODIFICATION_TYPE_COPY) {
397                         MLX5_ASSERT(dcopy);
398                         actions[i].dst_field = dcopy->id;
399                         actions[i].dst_offset =
400                                 (int)dcopy->offset < 0 ? off_b : dcopy->offset;
401                         /* Convert entire record to big-endian format. */
402                         actions[i].data1 = rte_cpu_to_be_32(actions[i].data1);
403                 } else {
404                         MLX5_ASSERT(item->spec);
405                         data = flow_dv_fetch_field((const uint8_t *)item->spec +
406                                                    field->offset, field->size);
407                         /* Shift out the trailing masked bits from data. */
408                         data = (data & mask) >> off_b;
409                         actions[i].data1 = rte_cpu_to_be_32(data);
410                 }
411                 ++i;
412                 ++field;
413         } while (field->size);
414         if (resource->actions_num == i)
415                 return rte_flow_error_set(error, EINVAL,
416                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
417                                           "invalid modification flow item");
418         resource->actions_num = i;
419         return 0;
420 }
421
422 /**
423  * Convert modify-header set IPv4 address action to DV specification.
424  *
425  * @param[in,out] resource
426  *   Pointer to the modify-header resource.
427  * @param[in] action
428  *   Pointer to action specification.
429  * @param[out] error
430  *   Pointer to the error structure.
431  *
432  * @return
433  *   0 on success, a negative errno value otherwise and rte_errno is set.
434  */
435 static int
436 flow_dv_convert_action_modify_ipv4
437                         (struct mlx5_flow_dv_modify_hdr_resource *resource,
438                          const struct rte_flow_action *action,
439                          struct rte_flow_error *error)
440 {
441         const struct rte_flow_action_set_ipv4 *conf =
442                 (const struct rte_flow_action_set_ipv4 *)(action->conf);
443         struct rte_flow_item item = { .type = RTE_FLOW_ITEM_TYPE_IPV4 };
444         struct rte_flow_item_ipv4 ipv4;
445         struct rte_flow_item_ipv4 ipv4_mask;
446
447         memset(&ipv4, 0, sizeof(ipv4));
448         memset(&ipv4_mask, 0, sizeof(ipv4_mask));
449         if (action->type == RTE_FLOW_ACTION_TYPE_SET_IPV4_SRC) {
450                 ipv4.hdr.src_addr = conf->ipv4_addr;
451                 ipv4_mask.hdr.src_addr = rte_flow_item_ipv4_mask.hdr.src_addr;
452         } else {
453                 ipv4.hdr.dst_addr = conf->ipv4_addr;
454                 ipv4_mask.hdr.dst_addr = rte_flow_item_ipv4_mask.hdr.dst_addr;
455         }
456         item.spec = &ipv4;
457         item.mask = &ipv4_mask;
458         return flow_dv_convert_modify_action(&item, modify_ipv4, NULL, resource,
459                                              MLX5_MODIFICATION_TYPE_SET, error);
460 }
461
462 /**
463  * Convert modify-header set IPv6 address action to DV specification.
464  *
465  * @param[in,out] resource
466  *   Pointer to the modify-header resource.
467  * @param[in] action
468  *   Pointer to action specification.
469  * @param[out] error
470  *   Pointer to the error structure.
471  *
472  * @return
473  *   0 on success, a negative errno value otherwise and rte_errno is set.
474  */
475 static int
476 flow_dv_convert_action_modify_ipv6
477                         (struct mlx5_flow_dv_modify_hdr_resource *resource,
478                          const struct rte_flow_action *action,
479                          struct rte_flow_error *error)
480 {
481         const struct rte_flow_action_set_ipv6 *conf =
482                 (const struct rte_flow_action_set_ipv6 *)(action->conf);
483         struct rte_flow_item item = { .type = RTE_FLOW_ITEM_TYPE_IPV6 };
484         struct rte_flow_item_ipv6 ipv6;
485         struct rte_flow_item_ipv6 ipv6_mask;
486
487         memset(&ipv6, 0, sizeof(ipv6));
488         memset(&ipv6_mask, 0, sizeof(ipv6_mask));
489         if (action->type == RTE_FLOW_ACTION_TYPE_SET_IPV6_SRC) {
490                 memcpy(&ipv6.hdr.src_addr, &conf->ipv6_addr,
491                        sizeof(ipv6.hdr.src_addr));
492                 memcpy(&ipv6_mask.hdr.src_addr,
493                        &rte_flow_item_ipv6_mask.hdr.src_addr,
494                        sizeof(ipv6.hdr.src_addr));
495         } else {
496                 memcpy(&ipv6.hdr.dst_addr, &conf->ipv6_addr,
497                        sizeof(ipv6.hdr.dst_addr));
498                 memcpy(&ipv6_mask.hdr.dst_addr,
499                        &rte_flow_item_ipv6_mask.hdr.dst_addr,
500                        sizeof(ipv6.hdr.dst_addr));
501         }
502         item.spec = &ipv6;
503         item.mask = &ipv6_mask;
504         return flow_dv_convert_modify_action(&item, modify_ipv6, NULL, resource,
505                                              MLX5_MODIFICATION_TYPE_SET, error);
506 }
507
508 /**
509  * Convert modify-header set MAC address action to DV specification.
510  *
511  * @param[in,out] resource
512  *   Pointer to the modify-header resource.
513  * @param[in] action
514  *   Pointer to action specification.
515  * @param[out] error
516  *   Pointer to the error structure.
517  *
518  * @return
519  *   0 on success, a negative errno value otherwise and rte_errno is set.
520  */
521 static int
522 flow_dv_convert_action_modify_mac
523                         (struct mlx5_flow_dv_modify_hdr_resource *resource,
524                          const struct rte_flow_action *action,
525                          struct rte_flow_error *error)
526 {
527         const struct rte_flow_action_set_mac *conf =
528                 (const struct rte_flow_action_set_mac *)(action->conf);
529         struct rte_flow_item item = { .type = RTE_FLOW_ITEM_TYPE_ETH };
530         struct rte_flow_item_eth eth;
531         struct rte_flow_item_eth eth_mask;
532
533         memset(&eth, 0, sizeof(eth));
534         memset(&eth_mask, 0, sizeof(eth_mask));
535         if (action->type == RTE_FLOW_ACTION_TYPE_SET_MAC_SRC) {
536                 memcpy(&eth.src.addr_bytes, &conf->mac_addr,
537                        sizeof(eth.src.addr_bytes));
538                 memcpy(&eth_mask.src.addr_bytes,
539                        &rte_flow_item_eth_mask.src.addr_bytes,
540                        sizeof(eth_mask.src.addr_bytes));
541         } else {
542                 memcpy(&eth.dst.addr_bytes, &conf->mac_addr,
543                        sizeof(eth.dst.addr_bytes));
544                 memcpy(&eth_mask.dst.addr_bytes,
545                        &rte_flow_item_eth_mask.dst.addr_bytes,
546                        sizeof(eth_mask.dst.addr_bytes));
547         }
548         item.spec = &eth;
549         item.mask = &eth_mask;
550         return flow_dv_convert_modify_action(&item, modify_eth, NULL, resource,
551                                              MLX5_MODIFICATION_TYPE_SET, error);
552 }
553
554 /**
555  * Convert modify-header set VLAN VID action to DV specification.
556  *
557  * @param[in,out] resource
558  *   Pointer to the modify-header resource.
559  * @param[in] action
560  *   Pointer to action specification.
561  * @param[out] error
562  *   Pointer to the error structure.
563  *
564  * @return
565  *   0 on success, a negative errno value otherwise and rte_errno is set.
566  */
567 static int
568 flow_dv_convert_action_modify_vlan_vid
569                         (struct mlx5_flow_dv_modify_hdr_resource *resource,
570                          const struct rte_flow_action *action,
571                          struct rte_flow_error *error)
572 {
573         const struct rte_flow_action_of_set_vlan_vid *conf =
574                 (const struct rte_flow_action_of_set_vlan_vid *)(action->conf);
575         int i = resource->actions_num;
576         struct mlx5_modification_cmd *actions = &resource->actions[i];
577         struct field_modify_info *field = modify_vlan_out_first_vid;
578
579         if (i >= MLX5_MAX_MODIFY_NUM)
580                 return rte_flow_error_set(error, EINVAL,
581                          RTE_FLOW_ERROR_TYPE_ACTION, NULL,
582                          "too many items to modify");
583         actions[i] = (struct mlx5_modification_cmd) {
584                 .action_type = MLX5_MODIFICATION_TYPE_SET,
585                 .field = field->id,
586                 .length = field->size,
587                 .offset = field->offset,
588         };
589         actions[i].data0 = rte_cpu_to_be_32(actions[i].data0);
590         actions[i].data1 = conf->vlan_vid;
591         actions[i].data1 = actions[i].data1 << 16;
592         resource->actions_num = ++i;
593         return 0;
594 }
595
596 /**
597  * Convert modify-header set TP action to DV specification.
598  *
599  * @param[in,out] resource
600  *   Pointer to the modify-header resource.
601  * @param[in] action
602  *   Pointer to action specification.
603  * @param[in] items
604  *   Pointer to rte_flow_item objects list.
605  * @param[in] attr
606  *   Pointer to flow attributes structure.
607  * @param[out] error
608  *   Pointer to the error structure.
609  *
610  * @return
611  *   0 on success, a negative errno value otherwise and rte_errno is set.
612  */
613 static int
614 flow_dv_convert_action_modify_tp
615                         (struct mlx5_flow_dv_modify_hdr_resource *resource,
616                          const struct rte_flow_action *action,
617                          const struct rte_flow_item *items,
618                          union flow_dv_attr *attr,
619                          struct rte_flow_error *error)
620 {
621         const struct rte_flow_action_set_tp *conf =
622                 (const struct rte_flow_action_set_tp *)(action->conf);
623         struct rte_flow_item item;
624         struct rte_flow_item_udp udp;
625         struct rte_flow_item_udp udp_mask;
626         struct rte_flow_item_tcp tcp;
627         struct rte_flow_item_tcp tcp_mask;
628         struct field_modify_info *field;
629
630         if (!attr->valid)
631                 flow_dv_attr_init(items, attr);
632         if (attr->udp) {
633                 memset(&udp, 0, sizeof(udp));
634                 memset(&udp_mask, 0, sizeof(udp_mask));
635                 if (action->type == RTE_FLOW_ACTION_TYPE_SET_TP_SRC) {
636                         udp.hdr.src_port = conf->port;
637                         udp_mask.hdr.src_port =
638                                         rte_flow_item_udp_mask.hdr.src_port;
639                 } else {
640                         udp.hdr.dst_port = conf->port;
641                         udp_mask.hdr.dst_port =
642                                         rte_flow_item_udp_mask.hdr.dst_port;
643                 }
644                 item.type = RTE_FLOW_ITEM_TYPE_UDP;
645                 item.spec = &udp;
646                 item.mask = &udp_mask;
647                 field = modify_udp;
648         }
649         if (attr->tcp) {
650                 memset(&tcp, 0, sizeof(tcp));
651                 memset(&tcp_mask, 0, sizeof(tcp_mask));
652                 if (action->type == RTE_FLOW_ACTION_TYPE_SET_TP_SRC) {
653                         tcp.hdr.src_port = conf->port;
654                         tcp_mask.hdr.src_port =
655                                         rte_flow_item_tcp_mask.hdr.src_port;
656                 } else {
657                         tcp.hdr.dst_port = conf->port;
658                         tcp_mask.hdr.dst_port =
659                                         rte_flow_item_tcp_mask.hdr.dst_port;
660                 }
661                 item.type = RTE_FLOW_ITEM_TYPE_TCP;
662                 item.spec = &tcp;
663                 item.mask = &tcp_mask;
664                 field = modify_tcp;
665         }
666         return flow_dv_convert_modify_action(&item, field, NULL, resource,
667                                              MLX5_MODIFICATION_TYPE_SET, error);
668 }
669
670 /**
671  * Convert modify-header set TTL action to DV specification.
672  *
673  * @param[in,out] resource
674  *   Pointer to the modify-header resource.
675  * @param[in] action
676  *   Pointer to action specification.
677  * @param[in] items
678  *   Pointer to rte_flow_item objects list.
679  * @param[in] attr
680  *   Pointer to flow attributes structure.
681  * @param[out] error
682  *   Pointer to the error structure.
683  *
684  * @return
685  *   0 on success, a negative errno value otherwise and rte_errno is set.
686  */
687 static int
688 flow_dv_convert_action_modify_ttl
689                         (struct mlx5_flow_dv_modify_hdr_resource *resource,
690                          const struct rte_flow_action *action,
691                          const struct rte_flow_item *items,
692                          union flow_dv_attr *attr,
693                          struct rte_flow_error *error)
694 {
695         const struct rte_flow_action_set_ttl *conf =
696                 (const struct rte_flow_action_set_ttl *)(action->conf);
697         struct rte_flow_item item;
698         struct rte_flow_item_ipv4 ipv4;
699         struct rte_flow_item_ipv4 ipv4_mask;
700         struct rte_flow_item_ipv6 ipv6;
701         struct rte_flow_item_ipv6 ipv6_mask;
702         struct field_modify_info *field;
703
704         if (!attr->valid)
705                 flow_dv_attr_init(items, attr);
706         if (attr->ipv4) {
707                 memset(&ipv4, 0, sizeof(ipv4));
708                 memset(&ipv4_mask, 0, sizeof(ipv4_mask));
709                 ipv4.hdr.time_to_live = conf->ttl_value;
710                 ipv4_mask.hdr.time_to_live = 0xFF;
711                 item.type = RTE_FLOW_ITEM_TYPE_IPV4;
712                 item.spec = &ipv4;
713                 item.mask = &ipv4_mask;
714                 field = modify_ipv4;
715         }
716         if (attr->ipv6) {
717                 memset(&ipv6, 0, sizeof(ipv6));
718                 memset(&ipv6_mask, 0, sizeof(ipv6_mask));
719                 ipv6.hdr.hop_limits = conf->ttl_value;
720                 ipv6_mask.hdr.hop_limits = 0xFF;
721                 item.type = RTE_FLOW_ITEM_TYPE_IPV6;
722                 item.spec = &ipv6;
723                 item.mask = &ipv6_mask;
724                 field = modify_ipv6;
725         }
726         return flow_dv_convert_modify_action(&item, field, NULL, resource,
727                                              MLX5_MODIFICATION_TYPE_SET, error);
728 }
729
730 /**
731  * Convert modify-header decrement TTL action to DV specification.
732  *
733  * @param[in,out] resource
734  *   Pointer to the modify-header resource.
735  * @param[in] action
736  *   Pointer to action specification.
737  * @param[in] items
738  *   Pointer to rte_flow_item objects list.
739  * @param[in] attr
740  *   Pointer to flow attributes structure.
741  * @param[out] error
742  *   Pointer to the error structure.
743  *
744  * @return
745  *   0 on success, a negative errno value otherwise and rte_errno is set.
746  */
747 static int
748 flow_dv_convert_action_modify_dec_ttl
749                         (struct mlx5_flow_dv_modify_hdr_resource *resource,
750                          const struct rte_flow_item *items,
751                          union flow_dv_attr *attr,
752                          struct rte_flow_error *error)
753 {
754         struct rte_flow_item item;
755         struct rte_flow_item_ipv4 ipv4;
756         struct rte_flow_item_ipv4 ipv4_mask;
757         struct rte_flow_item_ipv6 ipv6;
758         struct rte_flow_item_ipv6 ipv6_mask;
759         struct field_modify_info *field;
760
761         if (!attr->valid)
762                 flow_dv_attr_init(items, attr);
763         if (attr->ipv4) {
764                 memset(&ipv4, 0, sizeof(ipv4));
765                 memset(&ipv4_mask, 0, sizeof(ipv4_mask));
766                 ipv4.hdr.time_to_live = 0xFF;
767                 ipv4_mask.hdr.time_to_live = 0xFF;
768                 item.type = RTE_FLOW_ITEM_TYPE_IPV4;
769                 item.spec = &ipv4;
770                 item.mask = &ipv4_mask;
771                 field = modify_ipv4;
772         }
773         if (attr->ipv6) {
774                 memset(&ipv6, 0, sizeof(ipv6));
775                 memset(&ipv6_mask, 0, sizeof(ipv6_mask));
776                 ipv6.hdr.hop_limits = 0xFF;
777                 ipv6_mask.hdr.hop_limits = 0xFF;
778                 item.type = RTE_FLOW_ITEM_TYPE_IPV6;
779                 item.spec = &ipv6;
780                 item.mask = &ipv6_mask;
781                 field = modify_ipv6;
782         }
783         return flow_dv_convert_modify_action(&item, field, NULL, resource,
784                                              MLX5_MODIFICATION_TYPE_ADD, error);
785 }
786
787 /**
788  * Convert modify-header increment/decrement TCP Sequence number
789  * to DV specification.
790  *
791  * @param[in,out] resource
792  *   Pointer to the modify-header resource.
793  * @param[in] action
794  *   Pointer to action specification.
795  * @param[out] error
796  *   Pointer to the error structure.
797  *
798  * @return
799  *   0 on success, a negative errno value otherwise and rte_errno is set.
800  */
801 static int
802 flow_dv_convert_action_modify_tcp_seq
803                         (struct mlx5_flow_dv_modify_hdr_resource *resource,
804                          const struct rte_flow_action *action,
805                          struct rte_flow_error *error)
806 {
807         const rte_be32_t *conf = (const rte_be32_t *)(action->conf);
808         uint64_t value = rte_be_to_cpu_32(*conf);
809         struct rte_flow_item item;
810         struct rte_flow_item_tcp tcp;
811         struct rte_flow_item_tcp tcp_mask;
812
813         memset(&tcp, 0, sizeof(tcp));
814         memset(&tcp_mask, 0, sizeof(tcp_mask));
815         if (action->type == RTE_FLOW_ACTION_TYPE_DEC_TCP_SEQ)
816                 /*
817                  * The HW has no decrement operation, only increment operation.
818                  * To simulate decrement X from Y using increment operation
819                  * we need to add UINT32_MAX X times to Y.
820                  * Each adding of UINT32_MAX decrements Y by 1.
821                  */
822                 value *= UINT32_MAX;
823         tcp.hdr.sent_seq = rte_cpu_to_be_32((uint32_t)value);
824         tcp_mask.hdr.sent_seq = RTE_BE32(UINT32_MAX);
825         item.type = RTE_FLOW_ITEM_TYPE_TCP;
826         item.spec = &tcp;
827         item.mask = &tcp_mask;
828         return flow_dv_convert_modify_action(&item, modify_tcp, NULL, resource,
829                                              MLX5_MODIFICATION_TYPE_ADD, error);
830 }
831
832 /**
833  * Convert modify-header increment/decrement TCP Acknowledgment number
834  * to DV specification.
835  *
836  * @param[in,out] resource
837  *   Pointer to the modify-header resource.
838  * @param[in] action
839  *   Pointer to action specification.
840  * @param[out] error
841  *   Pointer to the error structure.
842  *
843  * @return
844  *   0 on success, a negative errno value otherwise and rte_errno is set.
845  */
846 static int
847 flow_dv_convert_action_modify_tcp_ack
848                         (struct mlx5_flow_dv_modify_hdr_resource *resource,
849                          const struct rte_flow_action *action,
850                          struct rte_flow_error *error)
851 {
852         const rte_be32_t *conf = (const rte_be32_t *)(action->conf);
853         uint64_t value = rte_be_to_cpu_32(*conf);
854         struct rte_flow_item item;
855         struct rte_flow_item_tcp tcp;
856         struct rte_flow_item_tcp tcp_mask;
857
858         memset(&tcp, 0, sizeof(tcp));
859         memset(&tcp_mask, 0, sizeof(tcp_mask));
860         if (action->type == RTE_FLOW_ACTION_TYPE_DEC_TCP_ACK)
861                 /*
862                  * The HW has no decrement operation, only increment operation.
863                  * To simulate decrement X from Y using increment operation
864                  * we need to add UINT32_MAX X times to Y.
865                  * Each adding of UINT32_MAX decrements Y by 1.
866                  */
867                 value *= UINT32_MAX;
868         tcp.hdr.recv_ack = rte_cpu_to_be_32((uint32_t)value);
869         tcp_mask.hdr.recv_ack = RTE_BE32(UINT32_MAX);
870         item.type = RTE_FLOW_ITEM_TYPE_TCP;
871         item.spec = &tcp;
872         item.mask = &tcp_mask;
873         return flow_dv_convert_modify_action(&item, modify_tcp, NULL, resource,
874                                              MLX5_MODIFICATION_TYPE_ADD, error);
875 }
876
877 static enum mlx5_modification_field reg_to_field[] = {
878         [REG_NONE] = MLX5_MODI_OUT_NONE,
879         [REG_A] = MLX5_MODI_META_DATA_REG_A,
880         [REG_B] = MLX5_MODI_META_DATA_REG_B,
881         [REG_C_0] = MLX5_MODI_META_REG_C_0,
882         [REG_C_1] = MLX5_MODI_META_REG_C_1,
883         [REG_C_2] = MLX5_MODI_META_REG_C_2,
884         [REG_C_3] = MLX5_MODI_META_REG_C_3,
885         [REG_C_4] = MLX5_MODI_META_REG_C_4,
886         [REG_C_5] = MLX5_MODI_META_REG_C_5,
887         [REG_C_6] = MLX5_MODI_META_REG_C_6,
888         [REG_C_7] = MLX5_MODI_META_REG_C_7,
889 };
890
891 /**
892  * Convert register set to DV specification.
893  *
894  * @param[in,out] resource
895  *   Pointer to the modify-header resource.
896  * @param[in] action
897  *   Pointer to action specification.
898  * @param[out] error
899  *   Pointer to the error structure.
900  *
901  * @return
902  *   0 on success, a negative errno value otherwise and rte_errno is set.
903  */
904 static int
905 flow_dv_convert_action_set_reg
906                         (struct mlx5_flow_dv_modify_hdr_resource *resource,
907                          const struct rte_flow_action *action,
908                          struct rte_flow_error *error)
909 {
910         const struct mlx5_rte_flow_action_set_tag *conf = action->conf;
911         struct mlx5_modification_cmd *actions = resource->actions;
912         uint32_t i = resource->actions_num;
913
914         if (i >= MLX5_MAX_MODIFY_NUM)
915                 return rte_flow_error_set(error, EINVAL,
916                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
917                                           "too many items to modify");
918         MLX5_ASSERT(conf->id != REG_NONE);
919         MLX5_ASSERT(conf->id < RTE_DIM(reg_to_field));
920         actions[i] = (struct mlx5_modification_cmd) {
921                 .action_type = MLX5_MODIFICATION_TYPE_SET,
922                 .field = reg_to_field[conf->id],
923         };
924         actions[i].data0 = rte_cpu_to_be_32(actions[i].data0);
925         actions[i].data1 = rte_cpu_to_be_32(conf->data);
926         ++i;
927         resource->actions_num = i;
928         return 0;
929 }
930
931 /**
932  * Convert SET_TAG action to DV specification.
933  *
934  * @param[in] dev
935  *   Pointer to the rte_eth_dev structure.
936  * @param[in,out] resource
937  *   Pointer to the modify-header resource.
938  * @param[in] conf
939  *   Pointer to action specification.
940  * @param[out] error
941  *   Pointer to the error structure.
942  *
943  * @return
944  *   0 on success, a negative errno value otherwise and rte_errno is set.
945  */
946 static int
947 flow_dv_convert_action_set_tag
948                         (struct rte_eth_dev *dev,
949                          struct mlx5_flow_dv_modify_hdr_resource *resource,
950                          const struct rte_flow_action_set_tag *conf,
951                          struct rte_flow_error *error)
952 {
953         rte_be32_t data = rte_cpu_to_be_32(conf->data);
954         rte_be32_t mask = rte_cpu_to_be_32(conf->mask);
955         struct rte_flow_item item = {
956                 .spec = &data,
957                 .mask = &mask,
958         };
959         struct field_modify_info reg_c_x[] = {
960                 [1] = {0, 0, 0},
961         };
962         enum mlx5_modification_field reg_type;
963         int ret;
964
965         ret = mlx5_flow_get_reg_id(dev, MLX5_APP_TAG, conf->index, error);
966         if (ret < 0)
967                 return ret;
968         MLX5_ASSERT(ret != REG_NONE);
969         MLX5_ASSERT((unsigned int)ret < RTE_DIM(reg_to_field));
970         reg_type = reg_to_field[ret];
971         MLX5_ASSERT(reg_type > 0);
972         reg_c_x[0] = (struct field_modify_info){4, 0, reg_type};
973         return flow_dv_convert_modify_action(&item, reg_c_x, NULL, resource,
974                                              MLX5_MODIFICATION_TYPE_SET, error);
975 }
976
977 /**
978  * Convert internal COPY_REG action to DV specification.
979  *
980  * @param[in] dev
981  *   Pointer to the rte_eth_dev structure.
982  * @param[in,out] res
983  *   Pointer to the modify-header resource.
984  * @param[in] action
985  *   Pointer to action specification.
986  * @param[out] error
987  *   Pointer to the error structure.
988  *
989  * @return
990  *   0 on success, a negative errno value otherwise and rte_errno is set.
991  */
992 static int
993 flow_dv_convert_action_copy_mreg(struct rte_eth_dev *dev,
994                                  struct mlx5_flow_dv_modify_hdr_resource *res,
995                                  const struct rte_flow_action *action,
996                                  struct rte_flow_error *error)
997 {
998         const struct mlx5_flow_action_copy_mreg *conf = action->conf;
999         rte_be32_t mask = RTE_BE32(UINT32_MAX);
1000         struct rte_flow_item item = {
1001                 .spec = NULL,
1002                 .mask = &mask,
1003         };
1004         struct field_modify_info reg_src[] = {
1005                 {4, 0, reg_to_field[conf->src]},
1006                 {0, 0, 0},
1007         };
1008         struct field_modify_info reg_dst = {
1009                 .offset = 0,
1010                 .id = reg_to_field[conf->dst],
1011         };
1012         /* Adjust reg_c[0] usage according to reported mask. */
1013         if (conf->dst == REG_C_0 || conf->src == REG_C_0) {
1014                 struct mlx5_priv *priv = dev->data->dev_private;
1015                 uint32_t reg_c0 = priv->sh->dv_regc0_mask;
1016
1017                 MLX5_ASSERT(reg_c0);
1018                 MLX5_ASSERT(priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY);
1019                 if (conf->dst == REG_C_0) {
1020                         /* Copy to reg_c[0], within mask only. */
1021                         reg_dst.offset = rte_bsf32(reg_c0);
1022                         /*
1023                          * Mask is ignoring the enianness, because
1024                          * there is no conversion in datapath.
1025                          */
1026 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
1027                         /* Copy from destination lower bits to reg_c[0]. */
1028                         mask = reg_c0 >> reg_dst.offset;
1029 #else
1030                         /* Copy from destination upper bits to reg_c[0]. */
1031                         mask = reg_c0 << (sizeof(reg_c0) * CHAR_BIT -
1032                                           rte_fls_u32(reg_c0));
1033 #endif
1034                 } else {
1035                         mask = rte_cpu_to_be_32(reg_c0);
1036 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
1037                         /* Copy from reg_c[0] to destination lower bits. */
1038                         reg_dst.offset = 0;
1039 #else
1040                         /* Copy from reg_c[0] to destination upper bits. */
1041                         reg_dst.offset = sizeof(reg_c0) * CHAR_BIT -
1042                                          (rte_fls_u32(reg_c0) -
1043                                           rte_bsf32(reg_c0));
1044 #endif
1045                 }
1046         }
1047         return flow_dv_convert_modify_action(&item,
1048                                              reg_src, &reg_dst, res,
1049                                              MLX5_MODIFICATION_TYPE_COPY,
1050                                              error);
1051 }
1052
1053 /**
1054  * Convert MARK action to DV specification. This routine is used
1055  * in extensive metadata only and requires metadata register to be
1056  * handled. In legacy mode hardware tag resource is engaged.
1057  *
1058  * @param[in] dev
1059  *   Pointer to the rte_eth_dev structure.
1060  * @param[in] conf
1061  *   Pointer to MARK action specification.
1062  * @param[in,out] resource
1063  *   Pointer to the modify-header resource.
1064  * @param[out] error
1065  *   Pointer to the error structure.
1066  *
1067  * @return
1068  *   0 on success, a negative errno value otherwise and rte_errno is set.
1069  */
1070 static int
1071 flow_dv_convert_action_mark(struct rte_eth_dev *dev,
1072                             const struct rte_flow_action_mark *conf,
1073                             struct mlx5_flow_dv_modify_hdr_resource *resource,
1074                             struct rte_flow_error *error)
1075 {
1076         struct mlx5_priv *priv = dev->data->dev_private;
1077         rte_be32_t mask = rte_cpu_to_be_32(MLX5_FLOW_MARK_MASK &
1078                                            priv->sh->dv_mark_mask);
1079         rte_be32_t data = rte_cpu_to_be_32(conf->id) & mask;
1080         struct rte_flow_item item = {
1081                 .spec = &data,
1082                 .mask = &mask,
1083         };
1084         struct field_modify_info reg_c_x[] = {
1085                 {4, 0, 0}, /* dynamic instead of MLX5_MODI_META_REG_C_1. */
1086                 {0, 0, 0},
1087         };
1088         int reg;
1089
1090         if (!mask)
1091                 return rte_flow_error_set(error, EINVAL,
1092                                           RTE_FLOW_ERROR_TYPE_ACTION_CONF,
1093                                           NULL, "zero mark action mask");
1094         reg = mlx5_flow_get_reg_id(dev, MLX5_FLOW_MARK, 0, error);
1095         if (reg < 0)
1096                 return reg;
1097         MLX5_ASSERT(reg > 0);
1098         if (reg == REG_C_0) {
1099                 uint32_t msk_c0 = priv->sh->dv_regc0_mask;
1100                 uint32_t shl_c0 = rte_bsf32(msk_c0);
1101
1102                 data = rte_cpu_to_be_32(rte_cpu_to_be_32(data) << shl_c0);
1103                 mask = rte_cpu_to_be_32(mask) & msk_c0;
1104                 mask = rte_cpu_to_be_32(mask << shl_c0);
1105         }
1106         reg_c_x[0].id = reg_to_field[reg];
1107         return flow_dv_convert_modify_action(&item, reg_c_x, NULL, resource,
1108                                              MLX5_MODIFICATION_TYPE_SET, error);
1109 }
1110
1111 /**
1112  * Get metadata register index for specified steering domain.
1113  *
1114  * @param[in] dev
1115  *   Pointer to the rte_eth_dev structure.
1116  * @param[in] attr
1117  *   Attributes of flow to determine steering domain.
1118  * @param[out] error
1119  *   Pointer to the error structure.
1120  *
1121  * @return
1122  *   positive index on success, a negative errno value otherwise
1123  *   and rte_errno is set.
1124  */
1125 static enum modify_reg
1126 flow_dv_get_metadata_reg(struct rte_eth_dev *dev,
1127                          const struct rte_flow_attr *attr,
1128                          struct rte_flow_error *error)
1129 {
1130         int reg =
1131                 mlx5_flow_get_reg_id(dev, attr->transfer ?
1132                                           MLX5_METADATA_FDB :
1133                                             attr->egress ?
1134                                             MLX5_METADATA_TX :
1135                                             MLX5_METADATA_RX, 0, error);
1136         if (reg < 0)
1137                 return rte_flow_error_set(error,
1138                                           ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
1139                                           NULL, "unavailable "
1140                                           "metadata register");
1141         return reg;
1142 }
1143
1144 /**
1145  * Convert SET_META action to DV specification.
1146  *
1147  * @param[in] dev
1148  *   Pointer to the rte_eth_dev structure.
1149  * @param[in,out] resource
1150  *   Pointer to the modify-header resource.
1151  * @param[in] attr
1152  *   Attributes of flow that includes this item.
1153  * @param[in] conf
1154  *   Pointer to action specification.
1155  * @param[out] error
1156  *   Pointer to the error structure.
1157  *
1158  * @return
1159  *   0 on success, a negative errno value otherwise and rte_errno is set.
1160  */
1161 static int
1162 flow_dv_convert_action_set_meta
1163                         (struct rte_eth_dev *dev,
1164                          struct mlx5_flow_dv_modify_hdr_resource *resource,
1165                          const struct rte_flow_attr *attr,
1166                          const struct rte_flow_action_set_meta *conf,
1167                          struct rte_flow_error *error)
1168 {
1169         uint32_t data = conf->data;
1170         uint32_t mask = conf->mask;
1171         struct rte_flow_item item = {
1172                 .spec = &data,
1173                 .mask = &mask,
1174         };
1175         struct field_modify_info reg_c_x[] = {
1176                 [1] = {0, 0, 0},
1177         };
1178         int reg = flow_dv_get_metadata_reg(dev, attr, error);
1179
1180         if (reg < 0)
1181                 return reg;
1182         /*
1183          * In datapath code there is no endianness
1184          * coversions for perfromance reasons, all
1185          * pattern conversions are done in rte_flow.
1186          */
1187         if (reg == REG_C_0) {
1188                 struct mlx5_priv *priv = dev->data->dev_private;
1189                 uint32_t msk_c0 = priv->sh->dv_regc0_mask;
1190                 uint32_t shl_c0;
1191
1192                 MLX5_ASSERT(msk_c0);
1193 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
1194                 shl_c0 = rte_bsf32(msk_c0);
1195 #else
1196                 shl_c0 = sizeof(msk_c0) * CHAR_BIT - rte_fls_u32(msk_c0);
1197 #endif
1198                 mask <<= shl_c0;
1199                 data <<= shl_c0;
1200                 MLX5_ASSERT(!(~msk_c0 & rte_cpu_to_be_32(mask)));
1201         }
1202         reg_c_x[0] = (struct field_modify_info){4, 0, reg_to_field[reg]};
1203         /* The routine expects parameters in memory as big-endian ones. */
1204         return flow_dv_convert_modify_action(&item, reg_c_x, NULL, resource,
1205                                              MLX5_MODIFICATION_TYPE_SET, error);
1206 }
1207
1208 /**
1209  * Convert modify-header set IPv4 DSCP action to DV specification.
1210  *
1211  * @param[in,out] resource
1212  *   Pointer to the modify-header resource.
1213  * @param[in] action
1214  *   Pointer to action specification.
1215  * @param[out] error
1216  *   Pointer to the error structure.
1217  *
1218  * @return
1219  *   0 on success, a negative errno value otherwise and rte_errno is set.
1220  */
1221 static int
1222 flow_dv_convert_action_modify_ipv4_dscp
1223                         (struct mlx5_flow_dv_modify_hdr_resource *resource,
1224                          const struct rte_flow_action *action,
1225                          struct rte_flow_error *error)
1226 {
1227         const struct rte_flow_action_set_dscp *conf =
1228                 (const struct rte_flow_action_set_dscp *)(action->conf);
1229         struct rte_flow_item item = { .type = RTE_FLOW_ITEM_TYPE_IPV4 };
1230         struct rte_flow_item_ipv4 ipv4;
1231         struct rte_flow_item_ipv4 ipv4_mask;
1232
1233         memset(&ipv4, 0, sizeof(ipv4));
1234         memset(&ipv4_mask, 0, sizeof(ipv4_mask));
1235         ipv4.hdr.type_of_service = conf->dscp;
1236         ipv4_mask.hdr.type_of_service = RTE_IPV4_HDR_DSCP_MASK >> 2;
1237         item.spec = &ipv4;
1238         item.mask = &ipv4_mask;
1239         return flow_dv_convert_modify_action(&item, modify_ipv4, NULL, resource,
1240                                              MLX5_MODIFICATION_TYPE_SET, error);
1241 }
1242
1243 /**
1244  * Convert modify-header set IPv6 DSCP action to DV specification.
1245  *
1246  * @param[in,out] resource
1247  *   Pointer to the modify-header resource.
1248  * @param[in] action
1249  *   Pointer to action specification.
1250  * @param[out] error
1251  *   Pointer to the error structure.
1252  *
1253  * @return
1254  *   0 on success, a negative errno value otherwise and rte_errno is set.
1255  */
1256 static int
1257 flow_dv_convert_action_modify_ipv6_dscp
1258                         (struct mlx5_flow_dv_modify_hdr_resource *resource,
1259                          const struct rte_flow_action *action,
1260                          struct rte_flow_error *error)
1261 {
1262         const struct rte_flow_action_set_dscp *conf =
1263                 (const struct rte_flow_action_set_dscp *)(action->conf);
1264         struct rte_flow_item item = { .type = RTE_FLOW_ITEM_TYPE_IPV6 };
1265         struct rte_flow_item_ipv6 ipv6;
1266         struct rte_flow_item_ipv6 ipv6_mask;
1267
1268         memset(&ipv6, 0, sizeof(ipv6));
1269         memset(&ipv6_mask, 0, sizeof(ipv6_mask));
1270         /*
1271          * Even though the DSCP bits offset of IPv6 is not byte aligned,
1272          * rdma-core only accept the DSCP bits byte aligned start from
1273          * bit 0 to 5 as to be compatible with IPv4. No need to shift the
1274          * bits in IPv6 case as rdma-core requires byte aligned value.
1275          */
1276         ipv6.hdr.vtc_flow = conf->dscp;
1277         ipv6_mask.hdr.vtc_flow = RTE_IPV6_HDR_DSCP_MASK >> 22;
1278         item.spec = &ipv6;
1279         item.mask = &ipv6_mask;
1280         return flow_dv_convert_modify_action(&item, modify_ipv6, NULL, resource,
1281                                              MLX5_MODIFICATION_TYPE_SET, error);
1282 }
1283
1284 /**
1285  * Validate MARK item.
1286  *
1287  * @param[in] dev
1288  *   Pointer to the rte_eth_dev structure.
1289  * @param[in] item
1290  *   Item specification.
1291  * @param[in] attr
1292  *   Attributes of flow that includes this item.
1293  * @param[out] error
1294  *   Pointer to error structure.
1295  *
1296  * @return
1297  *   0 on success, a negative errno value otherwise and rte_errno is set.
1298  */
1299 static int
1300 flow_dv_validate_item_mark(struct rte_eth_dev *dev,
1301                            const struct rte_flow_item *item,
1302                            const struct rte_flow_attr *attr __rte_unused,
1303                            struct rte_flow_error *error)
1304 {
1305         struct mlx5_priv *priv = dev->data->dev_private;
1306         struct mlx5_dev_config *config = &priv->config;
1307         const struct rte_flow_item_mark *spec = item->spec;
1308         const struct rte_flow_item_mark *mask = item->mask;
1309         const struct rte_flow_item_mark nic_mask = {
1310                 .id = priv->sh->dv_mark_mask,
1311         };
1312         int ret;
1313
1314         if (config->dv_xmeta_en == MLX5_XMETA_MODE_LEGACY)
1315                 return rte_flow_error_set(error, ENOTSUP,
1316                                           RTE_FLOW_ERROR_TYPE_ITEM, item,
1317                                           "extended metadata feature"
1318                                           " isn't enabled");
1319         if (!mlx5_flow_ext_mreg_supported(dev))
1320                 return rte_flow_error_set(error, ENOTSUP,
1321                                           RTE_FLOW_ERROR_TYPE_ITEM, item,
1322                                           "extended metadata register"
1323                                           " isn't supported");
1324         if (!nic_mask.id)
1325                 return rte_flow_error_set(error, ENOTSUP,
1326                                           RTE_FLOW_ERROR_TYPE_ITEM, item,
1327                                           "extended metadata register"
1328                                           " isn't available");
1329         ret = mlx5_flow_get_reg_id(dev, MLX5_FLOW_MARK, 0, error);
1330         if (ret < 0)
1331                 return ret;
1332         if (!spec)
1333                 return rte_flow_error_set(error, EINVAL,
1334                                           RTE_FLOW_ERROR_TYPE_ITEM_SPEC,
1335                                           item->spec,
1336                                           "data cannot be empty");
1337         if (spec->id >= (MLX5_FLOW_MARK_MAX & nic_mask.id))
1338                 return rte_flow_error_set(error, EINVAL,
1339                                           RTE_FLOW_ERROR_TYPE_ACTION_CONF,
1340                                           &spec->id,
1341                                           "mark id exceeds the limit");
1342         if (!mask)
1343                 mask = &nic_mask;
1344         ret = mlx5_flow_item_acceptable(item, (const uint8_t *)mask,
1345                                         (const uint8_t *)&nic_mask,
1346                                         sizeof(struct rte_flow_item_mark),
1347                                         error);
1348         if (ret < 0)
1349                 return ret;
1350         return 0;
1351 }
1352
1353 /**
1354  * Validate META item.
1355  *
1356  * @param[in] dev
1357  *   Pointer to the rte_eth_dev structure.
1358  * @param[in] item
1359  *   Item specification.
1360  * @param[in] attr
1361  *   Attributes of flow that includes this item.
1362  * @param[out] error
1363  *   Pointer to error structure.
1364  *
1365  * @return
1366  *   0 on success, a negative errno value otherwise and rte_errno is set.
1367  */
1368 static int
1369 flow_dv_validate_item_meta(struct rte_eth_dev *dev __rte_unused,
1370                            const struct rte_flow_item *item,
1371                            const struct rte_flow_attr *attr,
1372                            struct rte_flow_error *error)
1373 {
1374         struct mlx5_priv *priv = dev->data->dev_private;
1375         struct mlx5_dev_config *config = &priv->config;
1376         const struct rte_flow_item_meta *spec = item->spec;
1377         const struct rte_flow_item_meta *mask = item->mask;
1378         struct rte_flow_item_meta nic_mask = {
1379                 .data = UINT32_MAX
1380         };
1381         int reg;
1382         int ret;
1383
1384         if (!spec)
1385                 return rte_flow_error_set(error, EINVAL,
1386                                           RTE_FLOW_ERROR_TYPE_ITEM_SPEC,
1387                                           item->spec,
1388                                           "data cannot be empty");
1389         if (!spec->data)
1390                 return rte_flow_error_set(error, EINVAL,
1391                                           RTE_FLOW_ERROR_TYPE_ITEM_SPEC, NULL,
1392                                           "data cannot be zero");
1393         if (config->dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
1394                 if (!mlx5_flow_ext_mreg_supported(dev))
1395                         return rte_flow_error_set(error, ENOTSUP,
1396                                           RTE_FLOW_ERROR_TYPE_ITEM, item,
1397                                           "extended metadata register"
1398                                           " isn't supported");
1399                 reg = flow_dv_get_metadata_reg(dev, attr, error);
1400                 if (reg < 0)
1401                         return reg;
1402                 if (reg == REG_B)
1403                         return rte_flow_error_set(error, ENOTSUP,
1404                                           RTE_FLOW_ERROR_TYPE_ITEM, item,
1405                                           "match on reg_b "
1406                                           "isn't supported");
1407                 if (reg != REG_A)
1408                         nic_mask.data = priv->sh->dv_meta_mask;
1409         }
1410         if (!mask)
1411                 mask = &rte_flow_item_meta_mask;
1412         ret = mlx5_flow_item_acceptable(item, (const uint8_t *)mask,
1413                                         (const uint8_t *)&nic_mask,
1414                                         sizeof(struct rte_flow_item_meta),
1415                                         error);
1416         return ret;
1417 }
1418
1419 /**
1420  * Validate TAG item.
1421  *
1422  * @param[in] dev
1423  *   Pointer to the rte_eth_dev structure.
1424  * @param[in] item
1425  *   Item specification.
1426  * @param[in] attr
1427  *   Attributes of flow that includes this item.
1428  * @param[out] error
1429  *   Pointer to error structure.
1430  *
1431  * @return
1432  *   0 on success, a negative errno value otherwise and rte_errno is set.
1433  */
1434 static int
1435 flow_dv_validate_item_tag(struct rte_eth_dev *dev,
1436                           const struct rte_flow_item *item,
1437                           const struct rte_flow_attr *attr __rte_unused,
1438                           struct rte_flow_error *error)
1439 {
1440         const struct rte_flow_item_tag *spec = item->spec;
1441         const struct rte_flow_item_tag *mask = item->mask;
1442         const struct rte_flow_item_tag nic_mask = {
1443                 .data = RTE_BE32(UINT32_MAX),
1444                 .index = 0xff,
1445         };
1446         int ret;
1447
1448         if (!mlx5_flow_ext_mreg_supported(dev))
1449                 return rte_flow_error_set(error, ENOTSUP,
1450                                           RTE_FLOW_ERROR_TYPE_ITEM, item,
1451                                           "extensive metadata register"
1452                                           " isn't supported");
1453         if (!spec)
1454                 return rte_flow_error_set(error, EINVAL,
1455                                           RTE_FLOW_ERROR_TYPE_ITEM_SPEC,
1456                                           item->spec,
1457                                           "data cannot be empty");
1458         if (!mask)
1459                 mask = &rte_flow_item_tag_mask;
1460         ret = mlx5_flow_item_acceptable(item, (const uint8_t *)mask,
1461                                         (const uint8_t *)&nic_mask,
1462                                         sizeof(struct rte_flow_item_tag),
1463                                         error);
1464         if (ret < 0)
1465                 return ret;
1466         if (mask->index != 0xff)
1467                 return rte_flow_error_set(error, EINVAL,
1468                                           RTE_FLOW_ERROR_TYPE_ITEM_SPEC, NULL,
1469                                           "partial mask for tag index"
1470                                           " is not supported");
1471         ret = mlx5_flow_get_reg_id(dev, MLX5_APP_TAG, spec->index, error);
1472         if (ret < 0)
1473                 return ret;
1474         MLX5_ASSERT(ret != REG_NONE);
1475         return 0;
1476 }
1477
1478 /**
1479  * Validate vport item.
1480  *
1481  * @param[in] dev
1482  *   Pointer to the rte_eth_dev structure.
1483  * @param[in] item
1484  *   Item specification.
1485  * @param[in] attr
1486  *   Attributes of flow that includes this item.
1487  * @param[in] item_flags
1488  *   Bit-fields that holds the items detected until now.
1489  * @param[out] error
1490  *   Pointer to error structure.
1491  *
1492  * @return
1493  *   0 on success, a negative errno value otherwise and rte_errno is set.
1494  */
1495 static int
1496 flow_dv_validate_item_port_id(struct rte_eth_dev *dev,
1497                               const struct rte_flow_item *item,
1498                               const struct rte_flow_attr *attr,
1499                               uint64_t item_flags,
1500                               struct rte_flow_error *error)
1501 {
1502         const struct rte_flow_item_port_id *spec = item->spec;
1503         const struct rte_flow_item_port_id *mask = item->mask;
1504         const struct rte_flow_item_port_id switch_mask = {
1505                         .id = 0xffffffff,
1506         };
1507         struct mlx5_priv *esw_priv;
1508         struct mlx5_priv *dev_priv;
1509         int ret;
1510
1511         if (!attr->transfer)
1512                 return rte_flow_error_set(error, EINVAL,
1513                                           RTE_FLOW_ERROR_TYPE_ITEM,
1514                                           NULL,
1515                                           "match on port id is valid only"
1516                                           " when transfer flag is enabled");
1517         if (item_flags & MLX5_FLOW_ITEM_PORT_ID)
1518                 return rte_flow_error_set(error, ENOTSUP,
1519                                           RTE_FLOW_ERROR_TYPE_ITEM, item,
1520                                           "multiple source ports are not"
1521                                           " supported");
1522         if (!mask)
1523                 mask = &switch_mask;
1524         if (mask->id != 0xffffffff)
1525                 return rte_flow_error_set(error, ENOTSUP,
1526                                            RTE_FLOW_ERROR_TYPE_ITEM_MASK,
1527                                            mask,
1528                                            "no support for partial mask on"
1529                                            " \"id\" field");
1530         ret = mlx5_flow_item_acceptable
1531                                 (item, (const uint8_t *)mask,
1532                                  (const uint8_t *)&rte_flow_item_port_id_mask,
1533                                  sizeof(struct rte_flow_item_port_id),
1534                                  error);
1535         if (ret)
1536                 return ret;
1537         if (!spec)
1538                 return 0;
1539         esw_priv = mlx5_port_to_eswitch_info(spec->id, false);
1540         if (!esw_priv)
1541                 return rte_flow_error_set(error, rte_errno,
1542                                           RTE_FLOW_ERROR_TYPE_ITEM_SPEC, spec,
1543                                           "failed to obtain E-Switch info for"
1544                                           " port");
1545         dev_priv = mlx5_dev_to_eswitch_info(dev);
1546         if (!dev_priv)
1547                 return rte_flow_error_set(error, rte_errno,
1548                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1549                                           NULL,
1550                                           "failed to obtain E-Switch info");
1551         if (esw_priv->domain_id != dev_priv->domain_id)
1552                 return rte_flow_error_set(error, EINVAL,
1553                                           RTE_FLOW_ERROR_TYPE_ITEM_SPEC, spec,
1554                                           "cannot match on a port from a"
1555                                           " different E-Switch");
1556         return 0;
1557 }
1558
1559 /**
1560  * Validate GTP item.
1561  *
1562  * @param[in] dev
1563  *   Pointer to the rte_eth_dev structure.
1564  * @param[in] item
1565  *   Item specification.
1566  * @param[in] item_flags
1567  *   Bit-fields that holds the items detected until now.
1568  * @param[out] error
1569  *   Pointer to error structure.
1570  *
1571  * @return
1572  *   0 on success, a negative errno value otherwise and rte_errno is set.
1573  */
1574 static int
1575 flow_dv_validate_item_gtp(struct rte_eth_dev *dev,
1576                           const struct rte_flow_item *item,
1577                           uint64_t item_flags,
1578                           struct rte_flow_error *error)
1579 {
1580         struct mlx5_priv *priv = dev->data->dev_private;
1581         const struct rte_flow_item_gtp *mask = item->mask;
1582         const struct rte_flow_item_gtp nic_mask = {
1583                 .msg_type = 0xff,
1584                 .teid = RTE_BE32(0xffffffff),
1585         };
1586
1587         if (!priv->config.hca_attr.tunnel_stateless_gtp)
1588                 return rte_flow_error_set(error, ENOTSUP,
1589                                           RTE_FLOW_ERROR_TYPE_ITEM, item,
1590                                           "GTP support is not enabled");
1591         if (item_flags & MLX5_FLOW_LAYER_TUNNEL)
1592                 return rte_flow_error_set(error, ENOTSUP,
1593                                           RTE_FLOW_ERROR_TYPE_ITEM, item,
1594                                           "multiple tunnel layers not"
1595                                           " supported");
1596         if (!(item_flags & MLX5_FLOW_LAYER_OUTER_L4_UDP))
1597                 return rte_flow_error_set(error, EINVAL,
1598                                           RTE_FLOW_ERROR_TYPE_ITEM, item,
1599                                           "no outer UDP layer found");
1600         if (!mask)
1601                 mask = &rte_flow_item_gtp_mask;
1602         return mlx5_flow_item_acceptable
1603                 (item, (const uint8_t *)mask,
1604                  (const uint8_t *)&nic_mask,
1605                  sizeof(struct rte_flow_item_gtp),
1606                  error);
1607 }
1608
1609 /**
1610  * Validate the pop VLAN action.
1611  *
1612  * @param[in] dev
1613  *   Pointer to the rte_eth_dev structure.
1614  * @param[in] action_flags
1615  *   Holds the actions detected until now.
1616  * @param[in] action
1617  *   Pointer to the pop vlan action.
1618  * @param[in] item_flags
1619  *   The items found in this flow rule.
1620  * @param[in] attr
1621  *   Pointer to flow attributes.
1622  * @param[out] error
1623  *   Pointer to error structure.
1624  *
1625  * @return
1626  *   0 on success, a negative errno value otherwise and rte_errno is set.
1627  */
1628 static int
1629 flow_dv_validate_action_pop_vlan(struct rte_eth_dev *dev,
1630                                  uint64_t action_flags,
1631                                  const struct rte_flow_action *action,
1632                                  uint64_t item_flags,
1633                                  const struct rte_flow_attr *attr,
1634                                  struct rte_flow_error *error)
1635 {
1636         struct mlx5_priv *priv = dev->data->dev_private;
1637
1638         (void)action;
1639         (void)attr;
1640         if (!priv->sh->pop_vlan_action)
1641                 return rte_flow_error_set(error, ENOTSUP,
1642                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1643                                           NULL,
1644                                           "pop vlan action is not supported");
1645         if (attr->egress)
1646                 return rte_flow_error_set(error, ENOTSUP,
1647                                           RTE_FLOW_ERROR_TYPE_ATTR_EGRESS,
1648                                           NULL,
1649                                           "pop vlan action not supported for "
1650                                           "egress");
1651         if (action_flags & MLX5_FLOW_VLAN_ACTIONS)
1652                 return rte_flow_error_set(error, ENOTSUP,
1653                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
1654                                           "no support for multiple VLAN "
1655                                           "actions");
1656         if (!(item_flags & MLX5_FLOW_LAYER_OUTER_VLAN))
1657                 return rte_flow_error_set(error, ENOTSUP,
1658                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1659                                           NULL,
1660                                           "cannot pop vlan without a "
1661                                           "match on (outer) vlan in the flow");
1662         if (action_flags & MLX5_FLOW_ACTION_PORT_ID)
1663                 return rte_flow_error_set(error, EINVAL,
1664                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
1665                                           "wrong action order, port_id should "
1666                                           "be after pop VLAN action");
1667         return 0;
1668 }
1669
1670 /**
1671  * Get VLAN default info from vlan match info.
1672  *
1673  * @param[in] items
1674  *   the list of item specifications.
1675  * @param[out] vlan
1676  *   pointer VLAN info to fill to.
1677  *
1678  * @return
1679  *   0 on success, a negative errno value otherwise and rte_errno is set.
1680  */
1681 static void
1682 flow_dev_get_vlan_info_from_items(const struct rte_flow_item *items,
1683                                   struct rte_vlan_hdr *vlan)
1684 {
1685         const struct rte_flow_item_vlan nic_mask = {
1686                 .tci = RTE_BE16(MLX5DV_FLOW_VLAN_PCP_MASK |
1687                                 MLX5DV_FLOW_VLAN_VID_MASK),
1688                 .inner_type = RTE_BE16(0xffff),
1689         };
1690
1691         if (items == NULL)
1692                 return;
1693         for (; items->type != RTE_FLOW_ITEM_TYPE_END &&
1694                items->type != RTE_FLOW_ITEM_TYPE_VLAN; items++)
1695                 ;
1696         if (items->type == RTE_FLOW_ITEM_TYPE_VLAN) {
1697                 const struct rte_flow_item_vlan *vlan_m = items->mask;
1698                 const struct rte_flow_item_vlan *vlan_v = items->spec;
1699
1700                 if (!vlan_m)
1701                         vlan_m = &nic_mask;
1702                 /* Only full match values are accepted */
1703                 if ((vlan_m->tci & MLX5DV_FLOW_VLAN_PCP_MASK_BE) ==
1704                      MLX5DV_FLOW_VLAN_PCP_MASK_BE) {
1705                         vlan->vlan_tci &= MLX5DV_FLOW_VLAN_PCP_MASK;
1706                         vlan->vlan_tci |=
1707                                 rte_be_to_cpu_16(vlan_v->tci &
1708                                                  MLX5DV_FLOW_VLAN_PCP_MASK_BE);
1709                 }
1710                 if ((vlan_m->tci & MLX5DV_FLOW_VLAN_VID_MASK_BE) ==
1711                      MLX5DV_FLOW_VLAN_VID_MASK_BE) {
1712                         vlan->vlan_tci &= ~MLX5DV_FLOW_VLAN_VID_MASK;
1713                         vlan->vlan_tci |=
1714                                 rte_be_to_cpu_16(vlan_v->tci &
1715                                                  MLX5DV_FLOW_VLAN_VID_MASK_BE);
1716                 }
1717                 if (vlan_m->inner_type == nic_mask.inner_type)
1718                         vlan->eth_proto = rte_be_to_cpu_16(vlan_v->inner_type &
1719                                                            vlan_m->inner_type);
1720         }
1721 }
1722
1723 /**
1724  * Validate the push VLAN action.
1725  *
1726  * @param[in] action_flags
1727  *   Holds the actions detected until now.
1728  * @param[in] item_flags
1729  *   The items found in this flow rule.
1730  * @param[in] action
1731  *   Pointer to the action structure.
1732  * @param[in] attr
1733  *   Pointer to flow attributes
1734  * @param[out] error
1735  *   Pointer to error structure.
1736  *
1737  * @return
1738  *   0 on success, a negative errno value otherwise and rte_errno is set.
1739  */
1740 static int
1741 flow_dv_validate_action_push_vlan(uint64_t action_flags,
1742                                   uint64_t item_flags __rte_unused,
1743                                   const struct rte_flow_action *action,
1744                                   const struct rte_flow_attr *attr,
1745                                   struct rte_flow_error *error)
1746 {
1747         const struct rte_flow_action_of_push_vlan *push_vlan = action->conf;
1748
1749         if (!attr->transfer && attr->ingress)
1750                 return rte_flow_error_set(error, ENOTSUP,
1751                                           RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,
1752                                           NULL,
1753                                           "push VLAN action not supported for "
1754                                           "ingress");
1755         if (push_vlan->ethertype != RTE_BE16(RTE_ETHER_TYPE_VLAN) &&
1756             push_vlan->ethertype != RTE_BE16(RTE_ETHER_TYPE_QINQ))
1757                 return rte_flow_error_set(error, EINVAL,
1758                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
1759                                           "invalid vlan ethertype");
1760         if (action_flags & MLX5_FLOW_VLAN_ACTIONS)
1761                 return rte_flow_error_set(error, ENOTSUP,
1762                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
1763                                           "no support for multiple VLAN "
1764                                           "actions");
1765         if (action_flags & MLX5_FLOW_ACTION_PORT_ID)
1766                 return rte_flow_error_set(error, EINVAL,
1767                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
1768                                           "wrong action order, port_id should "
1769                                           "be after push VLAN");
1770         (void)attr;
1771         return 0;
1772 }
1773
1774 /**
1775  * Validate the set VLAN PCP.
1776  *
1777  * @param[in] action_flags
1778  *   Holds the actions detected until now.
1779  * @param[in] actions
1780  *   Pointer to the list of actions remaining in the flow rule.
1781  * @param[out] error
1782  *   Pointer to error structure.
1783  *
1784  * @return
1785  *   0 on success, a negative errno value otherwise and rte_errno is set.
1786  */
1787 static int
1788 flow_dv_validate_action_set_vlan_pcp(uint64_t action_flags,
1789                                      const struct rte_flow_action actions[],
1790                                      struct rte_flow_error *error)
1791 {
1792         const struct rte_flow_action *action = actions;
1793         const struct rte_flow_action_of_set_vlan_pcp *conf = action->conf;
1794
1795         if (conf->vlan_pcp > 7)
1796                 return rte_flow_error_set(error, EINVAL,
1797                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
1798                                           "VLAN PCP value is too big");
1799         if (!(action_flags & MLX5_FLOW_ACTION_OF_PUSH_VLAN))
1800                 return rte_flow_error_set(error, ENOTSUP,
1801                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
1802                                           "set VLAN PCP action must follow "
1803                                           "the push VLAN action");
1804         if (action_flags & MLX5_FLOW_ACTION_OF_SET_VLAN_PCP)
1805                 return rte_flow_error_set(error, ENOTSUP,
1806                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
1807                                           "Multiple VLAN PCP modification are "
1808                                           "not supported");
1809         if (action_flags & MLX5_FLOW_ACTION_PORT_ID)
1810                 return rte_flow_error_set(error, EINVAL,
1811                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
1812                                           "wrong action order, port_id should "
1813                                           "be after set VLAN PCP");
1814         return 0;
1815 }
1816
1817 /**
1818  * Validate the set VLAN VID.
1819  *
1820  * @param[in] item_flags
1821  *   Holds the items detected in this rule.
1822  * @param[in] action_flags
1823  *   Holds the actions detected until now.
1824  * @param[in] actions
1825  *   Pointer to the list of actions remaining in the flow rule.
1826  * @param[out] error
1827  *   Pointer to error structure.
1828  *
1829  * @return
1830  *   0 on success, a negative errno value otherwise and rte_errno is set.
1831  */
1832 static int
1833 flow_dv_validate_action_set_vlan_vid(uint64_t item_flags,
1834                                      uint64_t action_flags,
1835                                      const struct rte_flow_action actions[],
1836                                      struct rte_flow_error *error)
1837 {
1838         const struct rte_flow_action *action = actions;
1839         const struct rte_flow_action_of_set_vlan_vid *conf = action->conf;
1840
1841         if (conf->vlan_vid > RTE_BE16(0xFFE))
1842                 return rte_flow_error_set(error, EINVAL,
1843                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
1844                                           "VLAN VID value is too big");
1845         if (!(action_flags & MLX5_FLOW_ACTION_OF_PUSH_VLAN) &&
1846             !(item_flags & MLX5_FLOW_LAYER_OUTER_VLAN))
1847                 return rte_flow_error_set(error, ENOTSUP,
1848                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
1849                                           "set VLAN VID action must follow push"
1850                                           " VLAN action or match on VLAN item");
1851         if (action_flags & MLX5_FLOW_ACTION_OF_SET_VLAN_VID)
1852                 return rte_flow_error_set(error, ENOTSUP,
1853                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
1854                                           "Multiple VLAN VID modifications are "
1855                                           "not supported");
1856         if (action_flags & MLX5_FLOW_ACTION_PORT_ID)
1857                 return rte_flow_error_set(error, EINVAL,
1858                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
1859                                           "wrong action order, port_id should "
1860                                           "be after set VLAN VID");
1861         return 0;
1862 }
1863
1864 /*
1865  * Validate the FLAG action.
1866  *
1867  * @param[in] dev
1868  *   Pointer to the rte_eth_dev structure.
1869  * @param[in] action_flags
1870  *   Holds the actions detected until now.
1871  * @param[in] attr
1872  *   Pointer to flow attributes
1873  * @param[out] error
1874  *   Pointer to error structure.
1875  *
1876  * @return
1877  *   0 on success, a negative errno value otherwise and rte_errno is set.
1878  */
1879 static int
1880 flow_dv_validate_action_flag(struct rte_eth_dev *dev,
1881                              uint64_t action_flags,
1882                              const struct rte_flow_attr *attr,
1883                              struct rte_flow_error *error)
1884 {
1885         struct mlx5_priv *priv = dev->data->dev_private;
1886         struct mlx5_dev_config *config = &priv->config;
1887         int ret;
1888
1889         /* Fall back if no extended metadata register support. */
1890         if (config->dv_xmeta_en == MLX5_XMETA_MODE_LEGACY)
1891                 return mlx5_flow_validate_action_flag(action_flags, attr,
1892                                                       error);
1893         /* Extensive metadata mode requires registers. */
1894         if (!mlx5_flow_ext_mreg_supported(dev))
1895                 return rte_flow_error_set(error, ENOTSUP,
1896                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
1897                                           "no metadata registers "
1898                                           "to support flag action");
1899         if (!(priv->sh->dv_mark_mask & MLX5_FLOW_MARK_DEFAULT))
1900                 return rte_flow_error_set(error, ENOTSUP,
1901                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
1902                                           "extended metadata register"
1903                                           " isn't available");
1904         ret = mlx5_flow_get_reg_id(dev, MLX5_FLOW_MARK, 0, error);
1905         if (ret < 0)
1906                 return ret;
1907         MLX5_ASSERT(ret > 0);
1908         if (action_flags & MLX5_FLOW_ACTION_MARK)
1909                 return rte_flow_error_set(error, EINVAL,
1910                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
1911                                           "can't mark and flag in same flow");
1912         if (action_flags & MLX5_FLOW_ACTION_FLAG)
1913                 return rte_flow_error_set(error, EINVAL,
1914                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
1915                                           "can't have 2 flag"
1916                                           " actions in same flow");
1917         return 0;
1918 }
1919
1920 /**
1921  * Validate MARK action.
1922  *
1923  * @param[in] dev
1924  *   Pointer to the rte_eth_dev structure.
1925  * @param[in] action
1926  *   Pointer to action.
1927  * @param[in] action_flags
1928  *   Holds the actions detected until now.
1929  * @param[in] attr
1930  *   Pointer to flow attributes
1931  * @param[out] error
1932  *   Pointer to error structure.
1933  *
1934  * @return
1935  *   0 on success, a negative errno value otherwise and rte_errno is set.
1936  */
1937 static int
1938 flow_dv_validate_action_mark(struct rte_eth_dev *dev,
1939                              const struct rte_flow_action *action,
1940                              uint64_t action_flags,
1941                              const struct rte_flow_attr *attr,
1942                              struct rte_flow_error *error)
1943 {
1944         struct mlx5_priv *priv = dev->data->dev_private;
1945         struct mlx5_dev_config *config = &priv->config;
1946         const struct rte_flow_action_mark *mark = action->conf;
1947         int ret;
1948
1949         /* Fall back if no extended metadata register support. */
1950         if (config->dv_xmeta_en == MLX5_XMETA_MODE_LEGACY)
1951                 return mlx5_flow_validate_action_mark(action, action_flags,
1952                                                       attr, error);
1953         /* Extensive metadata mode requires registers. */
1954         if (!mlx5_flow_ext_mreg_supported(dev))
1955                 return rte_flow_error_set(error, ENOTSUP,
1956                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
1957                                           "no metadata registers "
1958                                           "to support mark action");
1959         if (!priv->sh->dv_mark_mask)
1960                 return rte_flow_error_set(error, ENOTSUP,
1961                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
1962                                           "extended metadata register"
1963                                           " isn't available");
1964         ret = mlx5_flow_get_reg_id(dev, MLX5_FLOW_MARK, 0, error);
1965         if (ret < 0)
1966                 return ret;
1967         MLX5_ASSERT(ret > 0);
1968         if (!mark)
1969                 return rte_flow_error_set(error, EINVAL,
1970                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
1971                                           "configuration cannot be null");
1972         if (mark->id >= (MLX5_FLOW_MARK_MAX & priv->sh->dv_mark_mask))
1973                 return rte_flow_error_set(error, EINVAL,
1974                                           RTE_FLOW_ERROR_TYPE_ACTION_CONF,
1975                                           &mark->id,
1976                                           "mark id exceeds the limit");
1977         if (action_flags & MLX5_FLOW_ACTION_FLAG)
1978                 return rte_flow_error_set(error, EINVAL,
1979                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
1980                                           "can't flag and mark in same flow");
1981         if (action_flags & MLX5_FLOW_ACTION_MARK)
1982                 return rte_flow_error_set(error, EINVAL,
1983                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
1984                                           "can't have 2 mark actions in same"
1985                                           " flow");
1986         return 0;
1987 }
1988
1989 /**
1990  * Validate SET_META action.
1991  *
1992  * @param[in] dev
1993  *   Pointer to the rte_eth_dev structure.
1994  * @param[in] action
1995  *   Pointer to the action structure.
1996  * @param[in] action_flags
1997  *   Holds the actions detected until now.
1998  * @param[in] attr
1999  *   Pointer to flow attributes
2000  * @param[out] error
2001  *   Pointer to error structure.
2002  *
2003  * @return
2004  *   0 on success, a negative errno value otherwise and rte_errno is set.
2005  */
2006 static int
2007 flow_dv_validate_action_set_meta(struct rte_eth_dev *dev,
2008                                  const struct rte_flow_action *action,
2009                                  uint64_t action_flags __rte_unused,
2010                                  const struct rte_flow_attr *attr,
2011                                  struct rte_flow_error *error)
2012 {
2013         const struct rte_flow_action_set_meta *conf;
2014         uint32_t nic_mask = UINT32_MAX;
2015         int reg;
2016
2017         if (!mlx5_flow_ext_mreg_supported(dev))
2018                 return rte_flow_error_set(error, ENOTSUP,
2019                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
2020                                           "extended metadata register"
2021                                           " isn't supported");
2022         reg = flow_dv_get_metadata_reg(dev, attr, error);
2023         if (reg < 0)
2024                 return reg;
2025         if (reg != REG_A && reg != REG_B) {
2026                 struct mlx5_priv *priv = dev->data->dev_private;
2027
2028                 nic_mask = priv->sh->dv_meta_mask;
2029         }
2030         if (!(action->conf))
2031                 return rte_flow_error_set(error, EINVAL,
2032                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
2033                                           "configuration cannot be null");
2034         conf = (const struct rte_flow_action_set_meta *)action->conf;
2035         if (!conf->mask)
2036                 return rte_flow_error_set(error, EINVAL,
2037                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
2038                                           "zero mask doesn't have any effect");
2039         if (conf->mask & ~nic_mask)
2040                 return rte_flow_error_set(error, EINVAL,
2041                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
2042                                           "meta data must be within reg C0");
2043         if (!(conf->data & conf->mask))
2044                 return rte_flow_error_set(error, EINVAL,
2045                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
2046                                           "zero value has no effect");
2047         return 0;
2048 }
2049
2050 /**
2051  * Validate SET_TAG action.
2052  *
2053  * @param[in] dev
2054  *   Pointer to the rte_eth_dev structure.
2055  * @param[in] action
2056  *   Pointer to the action structure.
2057  * @param[in] action_flags
2058  *   Holds the actions detected until now.
2059  * @param[in] attr
2060  *   Pointer to flow attributes
2061  * @param[out] error
2062  *   Pointer to error structure.
2063  *
2064  * @return
2065  *   0 on success, a negative errno value otherwise and rte_errno is set.
2066  */
2067 static int
2068 flow_dv_validate_action_set_tag(struct rte_eth_dev *dev,
2069                                 const struct rte_flow_action *action,
2070                                 uint64_t action_flags,
2071                                 const struct rte_flow_attr *attr,
2072                                 struct rte_flow_error *error)
2073 {
2074         const struct rte_flow_action_set_tag *conf;
2075         const uint64_t terminal_action_flags =
2076                 MLX5_FLOW_ACTION_DROP | MLX5_FLOW_ACTION_QUEUE |
2077                 MLX5_FLOW_ACTION_RSS;
2078         int ret;
2079
2080         if (!mlx5_flow_ext_mreg_supported(dev))
2081                 return rte_flow_error_set(error, ENOTSUP,
2082                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
2083                                           "extensive metadata register"
2084                                           " isn't supported");
2085         if (!(action->conf))
2086                 return rte_flow_error_set(error, EINVAL,
2087                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
2088                                           "configuration cannot be null");
2089         conf = (const struct rte_flow_action_set_tag *)action->conf;
2090         if (!conf->mask)
2091                 return rte_flow_error_set(error, EINVAL,
2092                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
2093                                           "zero mask doesn't have any effect");
2094         ret = mlx5_flow_get_reg_id(dev, MLX5_APP_TAG, conf->index, error);
2095         if (ret < 0)
2096                 return ret;
2097         if (!attr->transfer && attr->ingress &&
2098             (action_flags & terminal_action_flags))
2099                 return rte_flow_error_set(error, EINVAL,
2100                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
2101                                           "set_tag has no effect"
2102                                           " with terminal actions");
2103         return 0;
2104 }
2105
2106 /**
2107  * Validate count action.
2108  *
2109  * @param[in] dev
2110  *   Pointer to rte_eth_dev structure.
2111  * @param[out] error
2112  *   Pointer to error structure.
2113  *
2114  * @return
2115  *   0 on success, a negative errno value otherwise and rte_errno is set.
2116  */
2117 static int
2118 flow_dv_validate_action_count(struct rte_eth_dev *dev,
2119                               struct rte_flow_error *error)
2120 {
2121         struct mlx5_priv *priv = dev->data->dev_private;
2122
2123         if (!priv->config.devx)
2124                 goto notsup_err;
2125 #ifdef HAVE_IBV_FLOW_DEVX_COUNTERS
2126         return 0;
2127 #endif
2128 notsup_err:
2129         return rte_flow_error_set
2130                       (error, ENOTSUP,
2131                        RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
2132                        NULL,
2133                        "count action not supported");
2134 }
2135
2136 /**
2137  * Validate the L2 encap action.
2138  *
2139  * @param[in] action_flags
2140  *   Holds the actions detected until now.
2141  * @param[in] action
2142  *   Pointer to the action structure.
2143  * @param[out] error
2144  *   Pointer to error structure.
2145  *
2146  * @return
2147  *   0 on success, a negative errno value otherwise and rte_errno is set.
2148  */
2149 static int
2150 flow_dv_validate_action_l2_encap(uint64_t action_flags,
2151                                  const struct rte_flow_action *action,
2152                                  struct rte_flow_error *error)
2153 {
2154         if (!(action->conf))
2155                 return rte_flow_error_set(error, EINVAL,
2156                                           RTE_FLOW_ERROR_TYPE_ACTION, action,
2157                                           "configuration cannot be null");
2158         if (action_flags & MLX5_FLOW_ACTION_ENCAP)
2159                 return rte_flow_error_set(error, EINVAL,
2160                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2161                                           "can only have a single encap action "
2162                                           "in a flow");
2163         return 0;
2164 }
2165
2166 /**
2167  * Validate a decap action.
2168  *
2169  * @param[in] action_flags
2170  *   Holds the actions detected until now.
2171  * @param[in] attr
2172  *   Pointer to flow attributes
2173  * @param[out] error
2174  *   Pointer to error structure.
2175  *
2176  * @return
2177  *   0 on success, a negative errno value otherwise and rte_errno is set.
2178  */
2179 static int
2180 flow_dv_validate_action_decap(uint64_t action_flags,
2181                                  const struct rte_flow_attr *attr,
2182                                  struct rte_flow_error *error)
2183 {
2184         if (action_flags & MLX5_FLOW_XCAP_ACTIONS)
2185                 return rte_flow_error_set(error, ENOTSUP,
2186                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2187                                           action_flags &
2188                                           MLX5_FLOW_ACTION_DECAP ? "can only "
2189                                           "have a single decap action" : "decap "
2190                                           "after encap is not supported");
2191         if (action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS)
2192                 return rte_flow_error_set(error, EINVAL,
2193                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2194                                           "can't have decap action after"
2195                                           " modify action");
2196         if (attr->egress)
2197                 return rte_flow_error_set(error, ENOTSUP,
2198                                           RTE_FLOW_ERROR_TYPE_ATTR_EGRESS,
2199                                           NULL,
2200                                           "decap action not supported for "
2201                                           "egress");
2202         return 0;
2203 }
2204
2205 const struct rte_flow_action_raw_decap empty_decap = {.data = NULL, .size = 0,};
2206
2207 /**
2208  * Validate the raw encap and decap actions.
2209  *
2210  * @param[in] decap
2211  *   Pointer to the decap action.
2212  * @param[in] encap
2213  *   Pointer to the encap action.
2214  * @param[in] attr
2215  *   Pointer to flow attributes
2216  * @param[in/out] action_flags
2217  *   Holds the actions detected until now.
2218  * @param[out] actions_n
2219  *   pointer to the number of actions counter.
2220  * @param[out] error
2221  *   Pointer to error structure.
2222  *
2223  * @return
2224  *   0 on success, a negative errno value otherwise and rte_errno is set.
2225  */
2226 static int
2227 flow_dv_validate_action_raw_encap_decap
2228         (const struct rte_flow_action_raw_decap *decap,
2229          const struct rte_flow_action_raw_encap *encap,
2230          const struct rte_flow_attr *attr, uint64_t *action_flags,
2231          int *actions_n, struct rte_flow_error *error)
2232 {
2233         int ret;
2234
2235         if (encap && (!encap->size || !encap->data))
2236                 return rte_flow_error_set(error, EINVAL,
2237                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
2238                                           "raw encap data cannot be empty");
2239         if (decap && encap) {
2240                 if (decap->size <= MLX5_ENCAPSULATION_DECISION_SIZE &&
2241                     encap->size > MLX5_ENCAPSULATION_DECISION_SIZE)
2242                         /* L3 encap. */
2243                         decap = NULL;
2244                 else if (encap->size <=
2245                            MLX5_ENCAPSULATION_DECISION_SIZE &&
2246                            decap->size >
2247                            MLX5_ENCAPSULATION_DECISION_SIZE)
2248                         /* L3 decap. */
2249                         encap = NULL;
2250                 else if (encap->size >
2251                            MLX5_ENCAPSULATION_DECISION_SIZE &&
2252                            decap->size >
2253                            MLX5_ENCAPSULATION_DECISION_SIZE)
2254                         /* 2 L2 actions: encap and decap. */
2255                         ;
2256                 else
2257                         return rte_flow_error_set(error,
2258                                 ENOTSUP,
2259                                 RTE_FLOW_ERROR_TYPE_ACTION,
2260                                 NULL, "unsupported too small "
2261                                 "raw decap and too small raw "
2262                                 "encap combination");
2263         }
2264         if (decap) {
2265                 ret = flow_dv_validate_action_decap(*action_flags, attr, error);
2266                 if (ret < 0)
2267                         return ret;
2268                 *action_flags |= MLX5_FLOW_ACTION_DECAP;
2269                 ++(*actions_n);
2270         }
2271         if (encap) {
2272                 if (encap->size <= MLX5_ENCAPSULATION_DECISION_SIZE)
2273                         return rte_flow_error_set(error, ENOTSUP,
2274                                                   RTE_FLOW_ERROR_TYPE_ACTION,
2275                                                   NULL,
2276                                                   "small raw encap size");
2277                 if (*action_flags & MLX5_FLOW_ACTION_ENCAP)
2278                         return rte_flow_error_set(error, EINVAL,
2279                                                   RTE_FLOW_ERROR_TYPE_ACTION,
2280                                                   NULL,
2281                                                   "more than one encap action");
2282                 *action_flags |= MLX5_FLOW_ACTION_ENCAP;
2283                 ++(*actions_n);
2284         }
2285         return 0;
2286 }
2287
2288 /**
2289  * Find existing encap/decap resource or create and register a new one.
2290  *
2291  * @param[in, out] dev
2292  *   Pointer to rte_eth_dev structure.
2293  * @param[in, out] resource
2294  *   Pointer to encap/decap resource.
2295  * @parm[in, out] dev_flow
2296  *   Pointer to the dev_flow.
2297  * @param[out] error
2298  *   pointer to error structure.
2299  *
2300  * @return
2301  *   0 on success otherwise -errno and errno is set.
2302  */
2303 static int
2304 flow_dv_encap_decap_resource_register
2305                         (struct rte_eth_dev *dev,
2306                          struct mlx5_flow_dv_encap_decap_resource *resource,
2307                          struct mlx5_flow *dev_flow,
2308                          struct rte_flow_error *error)
2309 {
2310         struct mlx5_priv *priv = dev->data->dev_private;
2311         struct mlx5_ibv_shared *sh = priv->sh;
2312         struct mlx5_flow_dv_encap_decap_resource *cache_resource;
2313         struct mlx5dv_dr_domain *domain;
2314
2315         resource->flags = dev_flow->group ? 0 : 1;
2316         if (resource->ft_type == MLX5DV_FLOW_TABLE_TYPE_FDB)
2317                 domain = sh->fdb_domain;
2318         else if (resource->ft_type == MLX5DV_FLOW_TABLE_TYPE_NIC_RX)
2319                 domain = sh->rx_domain;
2320         else
2321                 domain = sh->tx_domain;
2322         /* Lookup a matching resource from cache. */
2323         LIST_FOREACH(cache_resource, &sh->encaps_decaps, next) {
2324                 if (resource->reformat_type == cache_resource->reformat_type &&
2325                     resource->ft_type == cache_resource->ft_type &&
2326                     resource->flags == cache_resource->flags &&
2327                     resource->size == cache_resource->size &&
2328                     !memcmp((const void *)resource->buf,
2329                             (const void *)cache_resource->buf,
2330                             resource->size)) {
2331                         DRV_LOG(DEBUG, "encap/decap resource %p: refcnt %d++",
2332                                 (void *)cache_resource,
2333                                 rte_atomic32_read(&cache_resource->refcnt));
2334                         rte_atomic32_inc(&cache_resource->refcnt);
2335                         dev_flow->dv.encap_decap = cache_resource;
2336                         return 0;
2337                 }
2338         }
2339         /* Register new encap/decap resource. */
2340         cache_resource = rte_calloc(__func__, 1, sizeof(*cache_resource), 0);
2341         if (!cache_resource)
2342                 return rte_flow_error_set(error, ENOMEM,
2343                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
2344                                           "cannot allocate resource memory");
2345         *cache_resource = *resource;
2346         cache_resource->verbs_action =
2347                 mlx5_glue->dv_create_flow_action_packet_reformat
2348                         (sh->ctx, cache_resource->reformat_type,
2349                          cache_resource->ft_type, domain, cache_resource->flags,
2350                          cache_resource->size,
2351                          (cache_resource->size ? cache_resource->buf : NULL));
2352         if (!cache_resource->verbs_action) {
2353                 rte_free(cache_resource);
2354                 return rte_flow_error_set(error, ENOMEM,
2355                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
2356                                           NULL, "cannot create action");
2357         }
2358         rte_atomic32_init(&cache_resource->refcnt);
2359         rte_atomic32_inc(&cache_resource->refcnt);
2360         LIST_INSERT_HEAD(&sh->encaps_decaps, cache_resource, next);
2361         dev_flow->dv.encap_decap = cache_resource;
2362         DRV_LOG(DEBUG, "new encap/decap resource %p: refcnt %d++",
2363                 (void *)cache_resource,
2364                 rte_atomic32_read(&cache_resource->refcnt));
2365         return 0;
2366 }
2367
2368 /**
2369  * Find existing table jump resource or create and register a new one.
2370  *
2371  * @param[in, out] dev
2372  *   Pointer to rte_eth_dev structure.
2373  * @param[in, out] tbl
2374  *   Pointer to flow table resource.
2375  * @parm[in, out] dev_flow
2376  *   Pointer to the dev_flow.
2377  * @param[out] error
2378  *   pointer to error structure.
2379  *
2380  * @return
2381  *   0 on success otherwise -errno and errno is set.
2382  */
2383 static int
2384 flow_dv_jump_tbl_resource_register
2385                         (struct rte_eth_dev *dev __rte_unused,
2386                          struct mlx5_flow_tbl_resource *tbl,
2387                          struct mlx5_flow *dev_flow,
2388                          struct rte_flow_error *error)
2389 {
2390         struct mlx5_flow_tbl_data_entry *tbl_data =
2391                 container_of(tbl, struct mlx5_flow_tbl_data_entry, tbl);
2392         int cnt;
2393
2394         MLX5_ASSERT(tbl);
2395         cnt = rte_atomic32_read(&tbl_data->jump.refcnt);
2396         if (!cnt) {
2397                 tbl_data->jump.action =
2398                         mlx5_glue->dr_create_flow_action_dest_flow_tbl
2399                         (tbl->obj);
2400                 if (!tbl_data->jump.action)
2401                         return rte_flow_error_set(error, ENOMEM,
2402                                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
2403                                         NULL, "cannot create jump action");
2404                 DRV_LOG(DEBUG, "new jump table resource %p: refcnt %d++",
2405                         (void *)&tbl_data->jump, cnt);
2406         } else {
2407                 MLX5_ASSERT(tbl_data->jump.action);
2408                 DRV_LOG(DEBUG, "existed jump table resource %p: refcnt %d++",
2409                         (void *)&tbl_data->jump, cnt);
2410         }
2411         rte_atomic32_inc(&tbl_data->jump.refcnt);
2412         dev_flow->dv.jump = &tbl_data->jump;
2413         return 0;
2414 }
2415
2416 /**
2417  * Find existing table port ID resource or create and register a new one.
2418  *
2419  * @param[in, out] dev
2420  *   Pointer to rte_eth_dev structure.
2421  * @param[in, out] resource
2422  *   Pointer to port ID action resource.
2423  * @parm[in, out] dev_flow
2424  *   Pointer to the dev_flow.
2425  * @param[out] error
2426  *   pointer to error structure.
2427  *
2428  * @return
2429  *   0 on success otherwise -errno and errno is set.
2430  */
2431 static int
2432 flow_dv_port_id_action_resource_register
2433                         (struct rte_eth_dev *dev,
2434                          struct mlx5_flow_dv_port_id_action_resource *resource,
2435                          struct mlx5_flow *dev_flow,
2436                          struct rte_flow_error *error)
2437 {
2438         struct mlx5_priv *priv = dev->data->dev_private;
2439         struct mlx5_ibv_shared *sh = priv->sh;
2440         struct mlx5_flow_dv_port_id_action_resource *cache_resource;
2441
2442         /* Lookup a matching resource from cache. */
2443         LIST_FOREACH(cache_resource, &sh->port_id_action_list, next) {
2444                 if (resource->port_id == cache_resource->port_id) {
2445                         DRV_LOG(DEBUG, "port id action resource resource %p: "
2446                                 "refcnt %d++",
2447                                 (void *)cache_resource,
2448                                 rte_atomic32_read(&cache_resource->refcnt));
2449                         rte_atomic32_inc(&cache_resource->refcnt);
2450                         dev_flow->dv.port_id_action = cache_resource;
2451                         return 0;
2452                 }
2453         }
2454         /* Register new port id action resource. */
2455         cache_resource = rte_calloc(__func__, 1, sizeof(*cache_resource), 0);
2456         if (!cache_resource)
2457                 return rte_flow_error_set(error, ENOMEM,
2458                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
2459                                           "cannot allocate resource memory");
2460         *cache_resource = *resource;
2461         /*
2462          * Depending on rdma_core version the glue routine calls
2463          * either mlx5dv_dr_action_create_dest_ib_port(domain, ibv_port)
2464          * or mlx5dv_dr_action_create_dest_vport(domain, vport_id).
2465          */
2466         cache_resource->action =
2467                 mlx5_glue->dr_create_flow_action_dest_port
2468                         (priv->sh->fdb_domain, resource->port_id);
2469         if (!cache_resource->action) {
2470                 rte_free(cache_resource);
2471                 return rte_flow_error_set(error, ENOMEM,
2472                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
2473                                           NULL, "cannot create action");
2474         }
2475         rte_atomic32_init(&cache_resource->refcnt);
2476         rte_atomic32_inc(&cache_resource->refcnt);
2477         LIST_INSERT_HEAD(&sh->port_id_action_list, cache_resource, next);
2478         dev_flow->dv.port_id_action = cache_resource;
2479         DRV_LOG(DEBUG, "new port id action resource %p: refcnt %d++",
2480                 (void *)cache_resource,
2481                 rte_atomic32_read(&cache_resource->refcnt));
2482         return 0;
2483 }
2484
2485 /**
2486  * Find existing push vlan resource or create and register a new one.
2487  *
2488  * @param [in, out] dev
2489  *   Pointer to rte_eth_dev structure.
2490  * @param[in, out] resource
2491  *   Pointer to port ID action resource.
2492  * @parm[in, out] dev_flow
2493  *   Pointer to the dev_flow.
2494  * @param[out] error
2495  *   pointer to error structure.
2496  *
2497  * @return
2498  *   0 on success otherwise -errno and errno is set.
2499  */
2500 static int
2501 flow_dv_push_vlan_action_resource_register
2502                        (struct rte_eth_dev *dev,
2503                         struct mlx5_flow_dv_push_vlan_action_resource *resource,
2504                         struct mlx5_flow *dev_flow,
2505                         struct rte_flow_error *error)
2506 {
2507         struct mlx5_priv *priv = dev->data->dev_private;
2508         struct mlx5_ibv_shared *sh = priv->sh;
2509         struct mlx5_flow_dv_push_vlan_action_resource *cache_resource;
2510         struct mlx5dv_dr_domain *domain;
2511
2512         /* Lookup a matching resource from cache. */
2513         LIST_FOREACH(cache_resource, &sh->push_vlan_action_list, next) {
2514                 if (resource->vlan_tag == cache_resource->vlan_tag &&
2515                     resource->ft_type == cache_resource->ft_type) {
2516                         DRV_LOG(DEBUG, "push-VLAN action resource resource %p: "
2517                                 "refcnt %d++",
2518                                 (void *)cache_resource,
2519                                 rte_atomic32_read(&cache_resource->refcnt));
2520                         rte_atomic32_inc(&cache_resource->refcnt);
2521                         dev_flow->dv.push_vlan_res = cache_resource;
2522                         return 0;
2523                 }
2524         }
2525         /* Register new push_vlan action resource. */
2526         cache_resource = rte_calloc(__func__, 1, sizeof(*cache_resource), 0);
2527         if (!cache_resource)
2528                 return rte_flow_error_set(error, ENOMEM,
2529                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
2530                                           "cannot allocate resource memory");
2531         *cache_resource = *resource;
2532         if (resource->ft_type == MLX5DV_FLOW_TABLE_TYPE_FDB)
2533                 domain = sh->fdb_domain;
2534         else if (resource->ft_type == MLX5DV_FLOW_TABLE_TYPE_NIC_RX)
2535                 domain = sh->rx_domain;
2536         else
2537                 domain = sh->tx_domain;
2538         cache_resource->action =
2539                 mlx5_glue->dr_create_flow_action_push_vlan(domain,
2540                                                            resource->vlan_tag);
2541         if (!cache_resource->action) {
2542                 rte_free(cache_resource);
2543                 return rte_flow_error_set(error, ENOMEM,
2544                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
2545                                           NULL, "cannot create action");
2546         }
2547         rte_atomic32_init(&cache_resource->refcnt);
2548         rte_atomic32_inc(&cache_resource->refcnt);
2549         LIST_INSERT_HEAD(&sh->push_vlan_action_list, cache_resource, next);
2550         dev_flow->dv.push_vlan_res = cache_resource;
2551         DRV_LOG(DEBUG, "new push vlan action resource %p: refcnt %d++",
2552                 (void *)cache_resource,
2553                 rte_atomic32_read(&cache_resource->refcnt));
2554         return 0;
2555 }
2556 /**
2557  * Get the size of specific rte_flow_item_type
2558  *
2559  * @param[in] item_type
2560  *   Tested rte_flow_item_type.
2561  *
2562  * @return
2563  *   sizeof struct item_type, 0 if void or irrelevant.
2564  */
2565 static size_t
2566 flow_dv_get_item_len(const enum rte_flow_item_type item_type)
2567 {
2568         size_t retval;
2569
2570         switch (item_type) {
2571         case RTE_FLOW_ITEM_TYPE_ETH:
2572                 retval = sizeof(struct rte_flow_item_eth);
2573                 break;
2574         case RTE_FLOW_ITEM_TYPE_VLAN:
2575                 retval = sizeof(struct rte_flow_item_vlan);
2576                 break;
2577         case RTE_FLOW_ITEM_TYPE_IPV4:
2578                 retval = sizeof(struct rte_flow_item_ipv4);
2579                 break;
2580         case RTE_FLOW_ITEM_TYPE_IPV6:
2581                 retval = sizeof(struct rte_flow_item_ipv6);
2582                 break;
2583         case RTE_FLOW_ITEM_TYPE_UDP:
2584                 retval = sizeof(struct rte_flow_item_udp);
2585                 break;
2586         case RTE_FLOW_ITEM_TYPE_TCP:
2587                 retval = sizeof(struct rte_flow_item_tcp);
2588                 break;
2589         case RTE_FLOW_ITEM_TYPE_VXLAN:
2590                 retval = sizeof(struct rte_flow_item_vxlan);
2591                 break;
2592         case RTE_FLOW_ITEM_TYPE_GRE:
2593                 retval = sizeof(struct rte_flow_item_gre);
2594                 break;
2595         case RTE_FLOW_ITEM_TYPE_NVGRE:
2596                 retval = sizeof(struct rte_flow_item_nvgre);
2597                 break;
2598         case RTE_FLOW_ITEM_TYPE_VXLAN_GPE:
2599                 retval = sizeof(struct rte_flow_item_vxlan_gpe);
2600                 break;
2601         case RTE_FLOW_ITEM_TYPE_MPLS:
2602                 retval = sizeof(struct rte_flow_item_mpls);
2603                 break;
2604         case RTE_FLOW_ITEM_TYPE_VOID: /* Fall through. */
2605         default:
2606                 retval = 0;
2607                 break;
2608         }
2609         return retval;
2610 }
2611
2612 #define MLX5_ENCAP_IPV4_VERSION         0x40
2613 #define MLX5_ENCAP_IPV4_IHL_MIN         0x05
2614 #define MLX5_ENCAP_IPV4_TTL_DEF         0x40
2615 #define MLX5_ENCAP_IPV6_VTC_FLOW        0x60000000
2616 #define MLX5_ENCAP_IPV6_HOP_LIMIT       0xff
2617 #define MLX5_ENCAP_VXLAN_FLAGS          0x08000000
2618 #define MLX5_ENCAP_VXLAN_GPE_FLAGS      0x04
2619
2620 /**
2621  * Convert the encap action data from list of rte_flow_item to raw buffer
2622  *
2623  * @param[in] items
2624  *   Pointer to rte_flow_item objects list.
2625  * @param[out] buf
2626  *   Pointer to the output buffer.
2627  * @param[out] size
2628  *   Pointer to the output buffer size.
2629  * @param[out] error
2630  *   Pointer to the error structure.
2631  *
2632  * @return
2633  *   0 on success, a negative errno value otherwise and rte_errno is set.
2634  */
2635 static int
2636 flow_dv_convert_encap_data(const struct rte_flow_item *items, uint8_t *buf,
2637                            size_t *size, struct rte_flow_error *error)
2638 {
2639         struct rte_ether_hdr *eth = NULL;
2640         struct rte_vlan_hdr *vlan = NULL;
2641         struct rte_ipv4_hdr *ipv4 = NULL;
2642         struct rte_ipv6_hdr *ipv6 = NULL;
2643         struct rte_udp_hdr *udp = NULL;
2644         struct rte_vxlan_hdr *vxlan = NULL;
2645         struct rte_vxlan_gpe_hdr *vxlan_gpe = NULL;
2646         struct rte_gre_hdr *gre = NULL;
2647         size_t len;
2648         size_t temp_size = 0;
2649
2650         if (!items)
2651                 return rte_flow_error_set(error, EINVAL,
2652                                           RTE_FLOW_ERROR_TYPE_ACTION,
2653                                           NULL, "invalid empty data");
2654         for (; items->type != RTE_FLOW_ITEM_TYPE_END; items++) {
2655                 len = flow_dv_get_item_len(items->type);
2656                 if (len + temp_size > MLX5_ENCAP_MAX_LEN)
2657                         return rte_flow_error_set(error, EINVAL,
2658                                                   RTE_FLOW_ERROR_TYPE_ACTION,
2659                                                   (void *)items->type,
2660                                                   "items total size is too big"
2661                                                   " for encap action");
2662                 rte_memcpy((void *)&buf[temp_size], items->spec, len);
2663                 switch (items->type) {
2664                 case RTE_FLOW_ITEM_TYPE_ETH:
2665                         eth = (struct rte_ether_hdr *)&buf[temp_size];
2666                         break;
2667                 case RTE_FLOW_ITEM_TYPE_VLAN:
2668                         vlan = (struct rte_vlan_hdr *)&buf[temp_size];
2669                         if (!eth)
2670                                 return rte_flow_error_set(error, EINVAL,
2671                                                 RTE_FLOW_ERROR_TYPE_ACTION,
2672                                                 (void *)items->type,
2673                                                 "eth header not found");
2674                         if (!eth->ether_type)
2675                                 eth->ether_type = RTE_BE16(RTE_ETHER_TYPE_VLAN);
2676                         break;
2677                 case RTE_FLOW_ITEM_TYPE_IPV4:
2678                         ipv4 = (struct rte_ipv4_hdr *)&buf[temp_size];
2679                         if (!vlan && !eth)
2680                                 return rte_flow_error_set(error, EINVAL,
2681                                                 RTE_FLOW_ERROR_TYPE_ACTION,
2682                                                 (void *)items->type,
2683                                                 "neither eth nor vlan"
2684                                                 " header found");
2685                         if (vlan && !vlan->eth_proto)
2686                                 vlan->eth_proto = RTE_BE16(RTE_ETHER_TYPE_IPV4);
2687                         else if (eth && !eth->ether_type)
2688                                 eth->ether_type = RTE_BE16(RTE_ETHER_TYPE_IPV4);
2689                         if (!ipv4->version_ihl)
2690                                 ipv4->version_ihl = MLX5_ENCAP_IPV4_VERSION |
2691                                                     MLX5_ENCAP_IPV4_IHL_MIN;
2692                         if (!ipv4->time_to_live)
2693                                 ipv4->time_to_live = MLX5_ENCAP_IPV4_TTL_DEF;
2694                         break;
2695                 case RTE_FLOW_ITEM_TYPE_IPV6:
2696                         ipv6 = (struct rte_ipv6_hdr *)&buf[temp_size];
2697                         if (!vlan && !eth)
2698                                 return rte_flow_error_set(error, EINVAL,
2699                                                 RTE_FLOW_ERROR_TYPE_ACTION,
2700                                                 (void *)items->type,
2701                                                 "neither eth nor vlan"
2702                                                 " header found");
2703                         if (vlan && !vlan->eth_proto)
2704                                 vlan->eth_proto = RTE_BE16(RTE_ETHER_TYPE_IPV6);
2705                         else if (eth && !eth->ether_type)
2706                                 eth->ether_type = RTE_BE16(RTE_ETHER_TYPE_IPV6);
2707                         if (!ipv6->vtc_flow)
2708                                 ipv6->vtc_flow =
2709                                         RTE_BE32(MLX5_ENCAP_IPV6_VTC_FLOW);
2710                         if (!ipv6->hop_limits)
2711                                 ipv6->hop_limits = MLX5_ENCAP_IPV6_HOP_LIMIT;
2712                         break;
2713                 case RTE_FLOW_ITEM_TYPE_UDP:
2714                         udp = (struct rte_udp_hdr *)&buf[temp_size];
2715                         if (!ipv4 && !ipv6)
2716                                 return rte_flow_error_set(error, EINVAL,
2717                                                 RTE_FLOW_ERROR_TYPE_ACTION,
2718                                                 (void *)items->type,
2719                                                 "ip header not found");
2720                         if (ipv4 && !ipv4->next_proto_id)
2721                                 ipv4->next_proto_id = IPPROTO_UDP;
2722                         else if (ipv6 && !ipv6->proto)
2723                                 ipv6->proto = IPPROTO_UDP;
2724                         break;
2725                 case RTE_FLOW_ITEM_TYPE_VXLAN:
2726                         vxlan = (struct rte_vxlan_hdr *)&buf[temp_size];
2727                         if (!udp)
2728                                 return rte_flow_error_set(error, EINVAL,
2729                                                 RTE_FLOW_ERROR_TYPE_ACTION,
2730                                                 (void *)items->type,
2731                                                 "udp header not found");
2732                         if (!udp->dst_port)
2733                                 udp->dst_port = RTE_BE16(MLX5_UDP_PORT_VXLAN);
2734                         if (!vxlan->vx_flags)
2735                                 vxlan->vx_flags =
2736                                         RTE_BE32(MLX5_ENCAP_VXLAN_FLAGS);
2737                         break;
2738                 case RTE_FLOW_ITEM_TYPE_VXLAN_GPE:
2739                         vxlan_gpe = (struct rte_vxlan_gpe_hdr *)&buf[temp_size];
2740                         if (!udp)
2741                                 return rte_flow_error_set(error, EINVAL,
2742                                                 RTE_FLOW_ERROR_TYPE_ACTION,
2743                                                 (void *)items->type,
2744                                                 "udp header not found");
2745                         if (!vxlan_gpe->proto)
2746                                 return rte_flow_error_set(error, EINVAL,
2747                                                 RTE_FLOW_ERROR_TYPE_ACTION,
2748                                                 (void *)items->type,
2749                                                 "next protocol not found");
2750                         if (!udp->dst_port)
2751                                 udp->dst_port =
2752                                         RTE_BE16(MLX5_UDP_PORT_VXLAN_GPE);
2753                         if (!vxlan_gpe->vx_flags)
2754                                 vxlan_gpe->vx_flags =
2755                                                 MLX5_ENCAP_VXLAN_GPE_FLAGS;
2756                         break;
2757                 case RTE_FLOW_ITEM_TYPE_GRE:
2758                 case RTE_FLOW_ITEM_TYPE_NVGRE:
2759                         gre = (struct rte_gre_hdr *)&buf[temp_size];
2760                         if (!gre->proto)
2761                                 return rte_flow_error_set(error, EINVAL,
2762                                                 RTE_FLOW_ERROR_TYPE_ACTION,
2763                                                 (void *)items->type,
2764                                                 "next protocol not found");
2765                         if (!ipv4 && !ipv6)
2766                                 return rte_flow_error_set(error, EINVAL,
2767                                                 RTE_FLOW_ERROR_TYPE_ACTION,
2768                                                 (void *)items->type,
2769                                                 "ip header not found");
2770                         if (ipv4 && !ipv4->next_proto_id)
2771                                 ipv4->next_proto_id = IPPROTO_GRE;
2772                         else if (ipv6 && !ipv6->proto)
2773                                 ipv6->proto = IPPROTO_GRE;
2774                         break;
2775                 case RTE_FLOW_ITEM_TYPE_VOID:
2776                         break;
2777                 default:
2778                         return rte_flow_error_set(error, EINVAL,
2779                                                   RTE_FLOW_ERROR_TYPE_ACTION,
2780                                                   (void *)items->type,
2781                                                   "unsupported item type");
2782                         break;
2783                 }
2784                 temp_size += len;
2785         }
2786         *size = temp_size;
2787         return 0;
2788 }
2789
2790 static int
2791 flow_dv_zero_encap_udp_csum(void *data, struct rte_flow_error *error)
2792 {
2793         struct rte_ether_hdr *eth = NULL;
2794         struct rte_vlan_hdr *vlan = NULL;
2795         struct rte_ipv6_hdr *ipv6 = NULL;
2796         struct rte_udp_hdr *udp = NULL;
2797         char *next_hdr;
2798         uint16_t proto;
2799
2800         eth = (struct rte_ether_hdr *)data;
2801         next_hdr = (char *)(eth + 1);
2802         proto = RTE_BE16(eth->ether_type);
2803
2804         /* VLAN skipping */
2805         while (proto == RTE_ETHER_TYPE_VLAN || proto == RTE_ETHER_TYPE_QINQ) {
2806                 vlan = (struct rte_vlan_hdr *)next_hdr;
2807                 proto = RTE_BE16(vlan->eth_proto);
2808                 next_hdr += sizeof(struct rte_vlan_hdr);
2809         }
2810
2811         /* HW calculates IPv4 csum. no need to proceed */
2812         if (proto == RTE_ETHER_TYPE_IPV4)
2813                 return 0;
2814
2815         /* non IPv4/IPv6 header. not supported */
2816         if (proto != RTE_ETHER_TYPE_IPV6) {
2817                 return rte_flow_error_set(error, ENOTSUP,
2818                                           RTE_FLOW_ERROR_TYPE_ACTION,
2819                                           NULL, "Cannot offload non IPv4/IPv6");
2820         }
2821
2822         ipv6 = (struct rte_ipv6_hdr *)next_hdr;
2823
2824         /* ignore non UDP */
2825         if (ipv6->proto != IPPROTO_UDP)
2826                 return 0;
2827
2828         udp = (struct rte_udp_hdr *)(ipv6 + 1);
2829         udp->dgram_cksum = 0;
2830
2831         return 0;
2832 }
2833
2834 /**
2835  * Convert L2 encap action to DV specification.
2836  *
2837  * @param[in] dev
2838  *   Pointer to rte_eth_dev structure.
2839  * @param[in] action
2840  *   Pointer to action structure.
2841  * @param[in, out] dev_flow
2842  *   Pointer to the mlx5_flow.
2843  * @param[in] transfer
2844  *   Mark if the flow is E-Switch flow.
2845  * @param[out] error
2846  *   Pointer to the error structure.
2847  *
2848  * @return
2849  *   0 on success, a negative errno value otherwise and rte_errno is set.
2850  */
2851 static int
2852 flow_dv_create_action_l2_encap(struct rte_eth_dev *dev,
2853                                const struct rte_flow_action *action,
2854                                struct mlx5_flow *dev_flow,
2855                                uint8_t transfer,
2856                                struct rte_flow_error *error)
2857 {
2858         const struct rte_flow_item *encap_data;
2859         const struct rte_flow_action_raw_encap *raw_encap_data;
2860         struct mlx5_flow_dv_encap_decap_resource res = {
2861                 .reformat_type =
2862                         MLX5DV_FLOW_ACTION_PACKET_REFORMAT_TYPE_L2_TO_L2_TUNNEL,
2863                 .ft_type = transfer ? MLX5DV_FLOW_TABLE_TYPE_FDB :
2864                                       MLX5DV_FLOW_TABLE_TYPE_NIC_TX,
2865         };
2866
2867         if (action->type == RTE_FLOW_ACTION_TYPE_RAW_ENCAP) {
2868                 raw_encap_data =
2869                         (const struct rte_flow_action_raw_encap *)action->conf;
2870                 res.size = raw_encap_data->size;
2871                 memcpy(res.buf, raw_encap_data->data, res.size);
2872         } else {
2873                 if (action->type == RTE_FLOW_ACTION_TYPE_VXLAN_ENCAP)
2874                         encap_data =
2875                                 ((const struct rte_flow_action_vxlan_encap *)
2876                                                 action->conf)->definition;
2877                 else
2878                         encap_data =
2879                                 ((const struct rte_flow_action_nvgre_encap *)
2880                                                 action->conf)->definition;
2881                 if (flow_dv_convert_encap_data(encap_data, res.buf,
2882                                                &res.size, error))
2883                         return -rte_errno;
2884         }
2885         if (flow_dv_zero_encap_udp_csum(res.buf, error))
2886                 return -rte_errno;
2887         if (flow_dv_encap_decap_resource_register(dev, &res, dev_flow, error))
2888                 return rte_flow_error_set(error, EINVAL,
2889                                           RTE_FLOW_ERROR_TYPE_ACTION,
2890                                           NULL, "can't create L2 encap action");
2891         return 0;
2892 }
2893
2894 /**
2895  * Convert L2 decap action to DV specification.
2896  *
2897  * @param[in] dev
2898  *   Pointer to rte_eth_dev structure.
2899  * @param[in, out] dev_flow
2900  *   Pointer to the mlx5_flow.
2901  * @param[in] transfer
2902  *   Mark if the flow is E-Switch flow.
2903  * @param[out] error
2904  *   Pointer to the error structure.
2905  *
2906  * @return
2907  *   0 on success, a negative errno value otherwise and rte_errno is set.
2908  */
2909 static int
2910 flow_dv_create_action_l2_decap(struct rte_eth_dev *dev,
2911                                struct mlx5_flow *dev_flow,
2912                                uint8_t transfer,
2913                                struct rte_flow_error *error)
2914 {
2915         struct mlx5_flow_dv_encap_decap_resource res = {
2916                 .size = 0,
2917                 .reformat_type =
2918                         MLX5DV_FLOW_ACTION_PACKET_REFORMAT_TYPE_L2_TUNNEL_TO_L2,
2919                 .ft_type = transfer ? MLX5DV_FLOW_TABLE_TYPE_FDB :
2920                                       MLX5DV_FLOW_TABLE_TYPE_NIC_RX,
2921         };
2922
2923         if (flow_dv_encap_decap_resource_register(dev, &res, dev_flow, error))
2924                 return rte_flow_error_set(error, EINVAL,
2925                                           RTE_FLOW_ERROR_TYPE_ACTION,
2926                                           NULL, "can't create L2 decap action");
2927         return 0;
2928 }
2929
2930 /**
2931  * Convert raw decap/encap (L3 tunnel) action to DV specification.
2932  *
2933  * @param[in] dev
2934  *   Pointer to rte_eth_dev structure.
2935  * @param[in] action
2936  *   Pointer to action structure.
2937  * @param[in, out] dev_flow
2938  *   Pointer to the mlx5_flow.
2939  * @param[in] attr
2940  *   Pointer to the flow attributes.
2941  * @param[out] error
2942  *   Pointer to the error structure.
2943  *
2944  * @return
2945  *   0 on success, a negative errno value otherwise and rte_errno is set.
2946  */
2947 static int
2948 flow_dv_create_action_raw_encap(struct rte_eth_dev *dev,
2949                                 const struct rte_flow_action *action,
2950                                 struct mlx5_flow *dev_flow,
2951                                 const struct rte_flow_attr *attr,
2952                                 struct rte_flow_error *error)
2953 {
2954         const struct rte_flow_action_raw_encap *encap_data;
2955         struct mlx5_flow_dv_encap_decap_resource res;
2956
2957         encap_data = (const struct rte_flow_action_raw_encap *)action->conf;
2958         res.size = encap_data->size;
2959         memcpy(res.buf, encap_data->data, res.size);
2960         res.reformat_type = res.size < MLX5_ENCAPSULATION_DECISION_SIZE ?
2961                 MLX5DV_FLOW_ACTION_PACKET_REFORMAT_TYPE_L3_TUNNEL_TO_L2 :
2962                 MLX5DV_FLOW_ACTION_PACKET_REFORMAT_TYPE_L2_TO_L3_TUNNEL;
2963         if (attr->transfer)
2964                 res.ft_type = MLX5DV_FLOW_TABLE_TYPE_FDB;
2965         else
2966                 res.ft_type = attr->egress ? MLX5DV_FLOW_TABLE_TYPE_NIC_TX :
2967                                              MLX5DV_FLOW_TABLE_TYPE_NIC_RX;
2968         if (flow_dv_encap_decap_resource_register(dev, &res, dev_flow, error))
2969                 return rte_flow_error_set(error, EINVAL,
2970                                           RTE_FLOW_ERROR_TYPE_ACTION,
2971                                           NULL, "can't create encap action");
2972         return 0;
2973 }
2974
2975 /**
2976  * Create action push VLAN.
2977  *
2978  * @param[in] dev
2979  *   Pointer to rte_eth_dev structure.
2980  * @param[in] attr
2981  *   Pointer to the flow attributes.
2982  * @param[in] vlan
2983  *   Pointer to the vlan to push to the Ethernet header.
2984  * @param[in, out] dev_flow
2985  *   Pointer to the mlx5_flow.
2986  * @param[out] error
2987  *   Pointer to the error structure.
2988  *
2989  * @return
2990  *   0 on success, a negative errno value otherwise and rte_errno is set.
2991  */
2992 static int
2993 flow_dv_create_action_push_vlan(struct rte_eth_dev *dev,
2994                                 const struct rte_flow_attr *attr,
2995                                 const struct rte_vlan_hdr *vlan,
2996                                 struct mlx5_flow *dev_flow,
2997                                 struct rte_flow_error *error)
2998 {
2999         struct mlx5_flow_dv_push_vlan_action_resource res;
3000
3001         res.vlan_tag =
3002                 rte_cpu_to_be_32(((uint32_t)vlan->eth_proto) << 16 |
3003                                  vlan->vlan_tci);
3004         if (attr->transfer)
3005                 res.ft_type = MLX5DV_FLOW_TABLE_TYPE_FDB;
3006         else
3007                 res.ft_type = attr->egress ? MLX5DV_FLOW_TABLE_TYPE_NIC_TX :
3008                                              MLX5DV_FLOW_TABLE_TYPE_NIC_RX;
3009         return flow_dv_push_vlan_action_resource_register
3010                                             (dev, &res, dev_flow, error);
3011 }
3012
3013 /**
3014  * Validate the modify-header actions.
3015  *
3016  * @param[in] action_flags
3017  *   Holds the actions detected until now.
3018  * @param[in] action
3019  *   Pointer to the modify action.
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 static int
3027 flow_dv_validate_action_modify_hdr(const uint64_t action_flags,
3028                                    const struct rte_flow_action *action,
3029                                    struct rte_flow_error *error)
3030 {
3031         if (action->type != RTE_FLOW_ACTION_TYPE_DEC_TTL && !action->conf)
3032                 return rte_flow_error_set(error, EINVAL,
3033                                           RTE_FLOW_ERROR_TYPE_ACTION_CONF,
3034                                           NULL, "action configuration not set");
3035         if (action_flags & MLX5_FLOW_ACTION_ENCAP)
3036                 return rte_flow_error_set(error, EINVAL,
3037                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
3038                                           "can't have encap action before"
3039                                           " modify action");
3040         return 0;
3041 }
3042
3043 /**
3044  * Validate the modify-header MAC address actions.
3045  *
3046  * @param[in] action_flags
3047  *   Holds the actions detected until now.
3048  * @param[in] action
3049  *   Pointer to the modify action.
3050  * @param[in] item_flags
3051  *   Holds the items detected.
3052  * @param[out] error
3053  *   Pointer to error structure.
3054  *
3055  * @return
3056  *   0 on success, a negative errno value otherwise and rte_errno is set.
3057  */
3058 static int
3059 flow_dv_validate_action_modify_mac(const uint64_t action_flags,
3060                                    const struct rte_flow_action *action,
3061                                    const uint64_t item_flags,
3062                                    struct rte_flow_error *error)
3063 {
3064         int ret = 0;
3065
3066         ret = flow_dv_validate_action_modify_hdr(action_flags, action, error);
3067         if (!ret) {
3068                 if (!(item_flags & MLX5_FLOW_LAYER_L2))
3069                         return rte_flow_error_set(error, EINVAL,
3070                                                   RTE_FLOW_ERROR_TYPE_ACTION,
3071                                                   NULL,
3072                                                   "no L2 item in pattern");
3073         }
3074         return ret;
3075 }
3076
3077 /**
3078  * Validate the modify-header IPv4 address actions.
3079  *
3080  * @param[in] action_flags
3081  *   Holds the actions detected until now.
3082  * @param[in] action
3083  *   Pointer to the modify action.
3084  * @param[in] item_flags
3085  *   Holds the items detected.
3086  * @param[out] error
3087  *   Pointer to error structure.
3088  *
3089  * @return
3090  *   0 on success, a negative errno value otherwise and rte_errno is set.
3091  */
3092 static int
3093 flow_dv_validate_action_modify_ipv4(const uint64_t action_flags,
3094                                     const struct rte_flow_action *action,
3095                                     const uint64_t item_flags,
3096                                     struct rte_flow_error *error)
3097 {
3098         int ret = 0;
3099
3100         ret = flow_dv_validate_action_modify_hdr(action_flags, action, error);
3101         if (!ret) {
3102                 if (!(item_flags & MLX5_FLOW_LAYER_L3_IPV4))
3103                         return rte_flow_error_set(error, EINVAL,
3104                                                   RTE_FLOW_ERROR_TYPE_ACTION,
3105                                                   NULL,
3106                                                   "no ipv4 item in pattern");
3107         }
3108         return ret;
3109 }
3110
3111 /**
3112  * Validate the modify-header IPv6 address actions.
3113  *
3114  * @param[in] action_flags
3115  *   Holds the actions detected until now.
3116  * @param[in] action
3117  *   Pointer to the modify action.
3118  * @param[in] item_flags
3119  *   Holds the items detected.
3120  * @param[out] error
3121  *   Pointer to error structure.
3122  *
3123  * @return
3124  *   0 on success, a negative errno value otherwise and rte_errno is set.
3125  */
3126 static int
3127 flow_dv_validate_action_modify_ipv6(const uint64_t action_flags,
3128                                     const struct rte_flow_action *action,
3129                                     const uint64_t item_flags,
3130                                     struct rte_flow_error *error)
3131 {
3132         int ret = 0;
3133
3134         ret = flow_dv_validate_action_modify_hdr(action_flags, action, error);
3135         if (!ret) {
3136                 if (!(item_flags & MLX5_FLOW_LAYER_L3_IPV6))
3137                         return rte_flow_error_set(error, EINVAL,
3138                                                   RTE_FLOW_ERROR_TYPE_ACTION,
3139                                                   NULL,
3140                                                   "no ipv6 item in pattern");
3141         }
3142         return ret;
3143 }
3144
3145 /**
3146  * Validate the modify-header TP actions.
3147  *
3148  * @param[in] action_flags
3149  *   Holds the actions detected until now.
3150  * @param[in] action
3151  *   Pointer to the modify action.
3152  * @param[in] item_flags
3153  *   Holds the items detected.
3154  * @param[out] error
3155  *   Pointer to error structure.
3156  *
3157  * @return
3158  *   0 on success, a negative errno value otherwise and rte_errno is set.
3159  */
3160 static int
3161 flow_dv_validate_action_modify_tp(const uint64_t action_flags,
3162                                   const struct rte_flow_action *action,
3163                                   const uint64_t item_flags,
3164                                   struct rte_flow_error *error)
3165 {
3166         int ret = 0;
3167
3168         ret = flow_dv_validate_action_modify_hdr(action_flags, action, error);
3169         if (!ret) {
3170                 if (!(item_flags & MLX5_FLOW_LAYER_L4))
3171                         return rte_flow_error_set(error, EINVAL,
3172                                                   RTE_FLOW_ERROR_TYPE_ACTION,
3173                                                   NULL, "no transport layer "
3174                                                   "in pattern");
3175         }
3176         return ret;
3177 }
3178
3179 /**
3180  * Validate the modify-header actions of increment/decrement
3181  * TCP Sequence-number.
3182  *
3183  * @param[in] action_flags
3184  *   Holds the actions detected until now.
3185  * @param[in] action
3186  *   Pointer to the modify action.
3187  * @param[in] item_flags
3188  *   Holds the items detected.
3189  * @param[out] error
3190  *   Pointer to error structure.
3191  *
3192  * @return
3193  *   0 on success, a negative errno value otherwise and rte_errno is set.
3194  */
3195 static int
3196 flow_dv_validate_action_modify_tcp_seq(const uint64_t action_flags,
3197                                        const struct rte_flow_action *action,
3198                                        const uint64_t item_flags,
3199                                        struct rte_flow_error *error)
3200 {
3201         int ret = 0;
3202
3203         ret = flow_dv_validate_action_modify_hdr(action_flags, action, error);
3204         if (!ret) {
3205                 if (!(item_flags & MLX5_FLOW_LAYER_OUTER_L4_TCP))
3206                         return rte_flow_error_set(error, EINVAL,
3207                                                   RTE_FLOW_ERROR_TYPE_ACTION,
3208                                                   NULL, "no TCP item in"
3209                                                   " pattern");
3210                 if ((action->type == RTE_FLOW_ACTION_TYPE_INC_TCP_SEQ &&
3211                         (action_flags & MLX5_FLOW_ACTION_DEC_TCP_SEQ)) ||
3212                     (action->type == RTE_FLOW_ACTION_TYPE_DEC_TCP_SEQ &&
3213                         (action_flags & MLX5_FLOW_ACTION_INC_TCP_SEQ)))
3214                         return rte_flow_error_set(error, EINVAL,
3215                                                   RTE_FLOW_ERROR_TYPE_ACTION,
3216                                                   NULL,
3217                                                   "cannot decrease and increase"
3218                                                   " TCP sequence number"
3219                                                   " at the same time");
3220         }
3221         return ret;
3222 }
3223
3224 /**
3225  * Validate the modify-header actions of increment/decrement
3226  * TCP Acknowledgment number.
3227  *
3228  * @param[in] action_flags
3229  *   Holds the actions detected until now.
3230  * @param[in] action
3231  *   Pointer to the modify action.
3232  * @param[in] item_flags
3233  *   Holds the items detected.
3234  * @param[out] error
3235  *   Pointer to error structure.
3236  *
3237  * @return
3238  *   0 on success, a negative errno value otherwise and rte_errno is set.
3239  */
3240 static int
3241 flow_dv_validate_action_modify_tcp_ack(const uint64_t action_flags,
3242                                        const struct rte_flow_action *action,
3243                                        const uint64_t item_flags,
3244                                        struct rte_flow_error *error)
3245 {
3246         int ret = 0;
3247
3248         ret = flow_dv_validate_action_modify_hdr(action_flags, action, error);
3249         if (!ret) {
3250                 if (!(item_flags & MLX5_FLOW_LAYER_OUTER_L4_TCP))
3251                         return rte_flow_error_set(error, EINVAL,
3252                                                   RTE_FLOW_ERROR_TYPE_ACTION,
3253                                                   NULL, "no TCP item in"
3254                                                   " pattern");
3255                 if ((action->type == RTE_FLOW_ACTION_TYPE_INC_TCP_ACK &&
3256                         (action_flags & MLX5_FLOW_ACTION_DEC_TCP_ACK)) ||
3257                     (action->type == RTE_FLOW_ACTION_TYPE_DEC_TCP_ACK &&
3258                         (action_flags & MLX5_FLOW_ACTION_INC_TCP_ACK)))
3259                         return rte_flow_error_set(error, EINVAL,
3260                                                   RTE_FLOW_ERROR_TYPE_ACTION,
3261                                                   NULL,
3262                                                   "cannot decrease and increase"
3263                                                   " TCP acknowledgment number"
3264                                                   " at the same time");
3265         }
3266         return ret;
3267 }
3268
3269 /**
3270  * Validate the modify-header TTL actions.
3271  *
3272  * @param[in] action_flags
3273  *   Holds the actions detected until now.
3274  * @param[in] action
3275  *   Pointer to the modify action.
3276  * @param[in] item_flags
3277  *   Holds the items detected.
3278  * @param[out] error
3279  *   Pointer to error structure.
3280  *
3281  * @return
3282  *   0 on success, a negative errno value otherwise and rte_errno is set.
3283  */
3284 static int
3285 flow_dv_validate_action_modify_ttl(const uint64_t action_flags,
3286                                    const struct rte_flow_action *action,
3287                                    const uint64_t item_flags,
3288                                    struct rte_flow_error *error)
3289 {
3290         int ret = 0;
3291
3292         ret = flow_dv_validate_action_modify_hdr(action_flags, action, error);
3293         if (!ret) {
3294                 if (!(item_flags & MLX5_FLOW_LAYER_L3))
3295                         return rte_flow_error_set(error, EINVAL,
3296                                                   RTE_FLOW_ERROR_TYPE_ACTION,
3297                                                   NULL,
3298                                                   "no IP protocol in pattern");
3299         }
3300         return ret;
3301 }
3302
3303 /**
3304  * Validate jump action.
3305  *
3306  * @param[in] action
3307  *   Pointer to the jump action.
3308  * @param[in] action_flags
3309  *   Holds the actions detected until now.
3310  * @param[in] attributes
3311  *   Pointer to flow attributes
3312  * @param[in] external
3313  *   Action belongs to flow rule created by request external to PMD.
3314  * @param[out] error
3315  *   Pointer to error structure.
3316  *
3317  * @return
3318  *   0 on success, a negative errno value otherwise and rte_errno is set.
3319  */
3320 static int
3321 flow_dv_validate_action_jump(const struct rte_flow_action *action,
3322                              uint64_t action_flags,
3323                              const struct rte_flow_attr *attributes,
3324                              bool external, struct rte_flow_error *error)
3325 {
3326         uint32_t target_group, table;
3327         int ret = 0;
3328
3329         if (action_flags & (MLX5_FLOW_FATE_ACTIONS |
3330                             MLX5_FLOW_FATE_ESWITCH_ACTIONS))
3331                 return rte_flow_error_set(error, EINVAL,
3332                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
3333                                           "can't have 2 fate actions in"
3334                                           " same flow");
3335         if (action_flags & MLX5_FLOW_ACTION_METER)
3336                 return rte_flow_error_set(error, ENOTSUP,
3337                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
3338                                           "jump with meter not support");
3339         if (!action->conf)
3340                 return rte_flow_error_set(error, EINVAL,
3341                                           RTE_FLOW_ERROR_TYPE_ACTION_CONF,
3342                                           NULL, "action configuration not set");
3343         target_group =
3344                 ((const struct rte_flow_action_jump *)action->conf)->group;
3345         ret = mlx5_flow_group_to_table(attributes, external, target_group,
3346                                        true, &table, error);
3347         if (ret)
3348                 return ret;
3349         if (attributes->group == target_group)
3350                 return rte_flow_error_set(error, EINVAL,
3351                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
3352                                           "target group must be other than"
3353                                           " the current flow group");
3354         return 0;
3355 }
3356
3357 /*
3358  * Validate the port_id action.
3359  *
3360  * @param[in] dev
3361  *   Pointer to rte_eth_dev structure.
3362  * @param[in] action_flags
3363  *   Bit-fields that holds the actions detected until now.
3364  * @param[in] action
3365  *   Port_id RTE action structure.
3366  * @param[in] attr
3367  *   Attributes of flow that includes this action.
3368  * @param[out] error
3369  *   Pointer to error structure.
3370  *
3371  * @return
3372  *   0 on success, a negative errno value otherwise and rte_errno is set.
3373  */
3374 static int
3375 flow_dv_validate_action_port_id(struct rte_eth_dev *dev,
3376                                 uint64_t action_flags,
3377                                 const struct rte_flow_action *action,
3378                                 const struct rte_flow_attr *attr,
3379                                 struct rte_flow_error *error)
3380 {
3381         const struct rte_flow_action_port_id *port_id;
3382         struct mlx5_priv *act_priv;
3383         struct mlx5_priv *dev_priv;
3384         uint16_t port;
3385
3386         if (!attr->transfer)
3387                 return rte_flow_error_set(error, ENOTSUP,
3388                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
3389                                           NULL,
3390                                           "port id action is valid in transfer"
3391                                           " mode only");
3392         if (!action || !action->conf)
3393                 return rte_flow_error_set(error, ENOTSUP,
3394                                           RTE_FLOW_ERROR_TYPE_ACTION_CONF,
3395                                           NULL,
3396                                           "port id action parameters must be"
3397                                           " specified");
3398         if (action_flags & (MLX5_FLOW_FATE_ACTIONS |
3399                             MLX5_FLOW_FATE_ESWITCH_ACTIONS))
3400                 return rte_flow_error_set(error, EINVAL,
3401                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
3402                                           "can have only one fate actions in"
3403                                           " a flow");
3404         dev_priv = mlx5_dev_to_eswitch_info(dev);
3405         if (!dev_priv)
3406                 return rte_flow_error_set(error, rte_errno,
3407                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
3408                                           NULL,
3409                                           "failed to obtain E-Switch info");
3410         port_id = action->conf;
3411         port = port_id->original ? dev->data->port_id : port_id->id;
3412         act_priv = mlx5_port_to_eswitch_info(port, false);
3413         if (!act_priv)
3414                 return rte_flow_error_set
3415                                 (error, rte_errno,
3416                                  RTE_FLOW_ERROR_TYPE_ACTION_CONF, port_id,
3417                                  "failed to obtain E-Switch port id for port");
3418         if (act_priv->domain_id != dev_priv->domain_id)
3419                 return rte_flow_error_set
3420                                 (error, EINVAL,
3421                                  RTE_FLOW_ERROR_TYPE_ACTION, NULL,
3422                                  "port does not belong to"
3423                                  " E-Switch being configured");
3424         return 0;
3425 }
3426
3427 /**
3428  * Get the maximum number of modify header actions.
3429  *
3430  * @param dev
3431  *   Pointer to rte_eth_dev structure.
3432  * @param flags
3433  *   Flags bits to check if root level.
3434  *
3435  * @return
3436  *   Max number of modify header actions device can support.
3437  */
3438 static unsigned int
3439 flow_dv_modify_hdr_action_max(struct rte_eth_dev *dev, uint64_t flags)
3440 {
3441         /*
3442          * There's no way to directly query the max cap. Although it has to be
3443          * acquried by iterative trial, it is a safe assumption that more
3444          * actions are supported by FW if extensive metadata register is
3445          * supported. (Only in the root table)
3446          */
3447         if (!(flags & MLX5DV_DR_ACTION_FLAGS_ROOT_LEVEL))
3448                 return MLX5_MAX_MODIFY_NUM;
3449         else
3450                 return mlx5_flow_ext_mreg_supported(dev) ?
3451                                         MLX5_ROOT_TBL_MODIFY_NUM :
3452                                         MLX5_ROOT_TBL_MODIFY_NUM_NO_MREG;
3453 }
3454
3455 /**
3456  * Validate the meter action.
3457  *
3458  * @param[in] dev
3459  *   Pointer to rte_eth_dev structure.
3460  * @param[in] action_flags
3461  *   Bit-fields that holds the actions detected until now.
3462  * @param[in] action
3463  *   Pointer to the meter action.
3464  * @param[in] attr
3465  *   Attributes of flow that includes this action.
3466  * @param[out] error
3467  *   Pointer to error structure.
3468  *
3469  * @return
3470  *   0 on success, a negative errno value otherwise and rte_ernno is set.
3471  */
3472 static int
3473 mlx5_flow_validate_action_meter(struct rte_eth_dev *dev,
3474                                 uint64_t action_flags,
3475                                 const struct rte_flow_action *action,
3476                                 const struct rte_flow_attr *attr,
3477                                 struct rte_flow_error *error)
3478 {
3479         struct mlx5_priv *priv = dev->data->dev_private;
3480         const struct rte_flow_action_meter *am = action->conf;
3481         struct mlx5_flow_meter *fm;
3482
3483         if (!am)
3484                 return rte_flow_error_set(error, EINVAL,
3485                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
3486                                           "meter action conf is NULL");
3487
3488         if (action_flags & MLX5_FLOW_ACTION_METER)
3489                 return rte_flow_error_set(error, ENOTSUP,
3490                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
3491                                           "meter chaining not support");
3492         if (action_flags & MLX5_FLOW_ACTION_JUMP)
3493                 return rte_flow_error_set(error, ENOTSUP,
3494                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
3495                                           "meter with jump not support");
3496         if (!priv->mtr_en)
3497                 return rte_flow_error_set(error, ENOTSUP,
3498                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
3499                                           NULL,
3500                                           "meter action not supported");
3501         fm = mlx5_flow_meter_find(priv, am->mtr_id);
3502         if (!fm)
3503                 return rte_flow_error_set(error, EINVAL,
3504                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
3505                                           "Meter not found");
3506         if (fm->ref_cnt && (!(fm->attr.transfer == attr->transfer ||
3507               (!fm->attr.ingress && !attr->ingress && attr->egress) ||
3508               (!fm->attr.egress && !attr->egress && attr->ingress))))
3509                 return rte_flow_error_set(error, EINVAL,
3510                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
3511                                           "Flow attributes are either invalid "
3512                                           "or have a conflict with current "
3513                                           "meter attributes");
3514         return 0;
3515 }
3516
3517 /**
3518  * Validate the modify-header IPv4 DSCP actions.
3519  *
3520  * @param[in] action_flags
3521  *   Holds the actions detected until now.
3522  * @param[in] action
3523  *   Pointer to the modify action.
3524  * @param[in] item_flags
3525  *   Holds the items detected.
3526  * @param[out] error
3527  *   Pointer to error structure.
3528  *
3529  * @return
3530  *   0 on success, a negative errno value otherwise and rte_errno is set.
3531  */
3532 static int
3533 flow_dv_validate_action_modify_ipv4_dscp(const uint64_t action_flags,
3534                                          const struct rte_flow_action *action,
3535                                          const uint64_t item_flags,
3536                                          struct rte_flow_error *error)
3537 {
3538         int ret = 0;
3539
3540         ret = flow_dv_validate_action_modify_hdr(action_flags, action, error);
3541         if (!ret) {
3542                 if (!(item_flags & MLX5_FLOW_LAYER_L3_IPV4))
3543                         return rte_flow_error_set(error, EINVAL,
3544                                                   RTE_FLOW_ERROR_TYPE_ACTION,
3545                                                   NULL,
3546                                                   "no ipv4 item in pattern");
3547         }
3548         return ret;
3549 }
3550
3551 /**
3552  * Validate the modify-header IPv6 DSCP actions.
3553  *
3554  * @param[in] action_flags
3555  *   Holds the actions detected until now.
3556  * @param[in] action
3557  *   Pointer to the modify action.
3558  * @param[in] item_flags
3559  *   Holds the items detected.
3560  * @param[out] error
3561  *   Pointer to error structure.
3562  *
3563  * @return
3564  *   0 on success, a negative errno value otherwise and rte_errno is set.
3565  */
3566 static int
3567 flow_dv_validate_action_modify_ipv6_dscp(const uint64_t action_flags,
3568                                          const struct rte_flow_action *action,
3569                                          const uint64_t item_flags,
3570                                          struct rte_flow_error *error)
3571 {
3572         int ret = 0;
3573
3574         ret = flow_dv_validate_action_modify_hdr(action_flags, action, error);
3575         if (!ret) {
3576                 if (!(item_flags & MLX5_FLOW_LAYER_L3_IPV6))
3577                         return rte_flow_error_set(error, EINVAL,
3578                                                   RTE_FLOW_ERROR_TYPE_ACTION,
3579                                                   NULL,
3580                                                   "no ipv6 item in pattern");
3581         }
3582         return ret;
3583 }
3584
3585 /**
3586  * Find existing modify-header resource or create and register a new one.
3587  *
3588  * @param dev[in, out]
3589  *   Pointer to rte_eth_dev structure.
3590  * @param[in, out] resource
3591  *   Pointer to modify-header resource.
3592  * @parm[in, out] dev_flow
3593  *   Pointer to the dev_flow.
3594  * @param[out] error
3595  *   pointer to error structure.
3596  *
3597  * @return
3598  *   0 on success otherwise -errno and errno is set.
3599  */
3600 static int
3601 flow_dv_modify_hdr_resource_register
3602                         (struct rte_eth_dev *dev,
3603                          struct mlx5_flow_dv_modify_hdr_resource *resource,
3604                          struct mlx5_flow *dev_flow,
3605                          struct rte_flow_error *error)
3606 {
3607         struct mlx5_priv *priv = dev->data->dev_private;
3608         struct mlx5_ibv_shared *sh = priv->sh;
3609         struct mlx5_flow_dv_modify_hdr_resource *cache_resource;
3610         struct mlx5dv_dr_domain *ns;
3611         uint32_t actions_len;
3612
3613         resource->flags =
3614                 dev_flow->group ? 0 : MLX5DV_DR_ACTION_FLAGS_ROOT_LEVEL;
3615         if (resource->actions_num > flow_dv_modify_hdr_action_max(dev,
3616                                     resource->flags))
3617                 return rte_flow_error_set(error, EOVERFLOW,
3618                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
3619                                           "too many modify header items");
3620         if (resource->ft_type == MLX5DV_FLOW_TABLE_TYPE_FDB)
3621                 ns = sh->fdb_domain;
3622         else if (resource->ft_type == MLX5DV_FLOW_TABLE_TYPE_NIC_TX)
3623                 ns = sh->tx_domain;
3624         else
3625                 ns = sh->rx_domain;
3626         /* Lookup a matching resource from cache. */
3627         actions_len = resource->actions_num * sizeof(resource->actions[0]);
3628         LIST_FOREACH(cache_resource, &sh->modify_cmds, next) {
3629                 if (resource->ft_type == cache_resource->ft_type &&
3630                     resource->actions_num == cache_resource->actions_num &&
3631                     resource->flags == cache_resource->flags &&
3632                     !memcmp((const void *)resource->actions,
3633                             (const void *)cache_resource->actions,
3634                             actions_len)) {
3635                         DRV_LOG(DEBUG, "modify-header resource %p: refcnt %d++",
3636                                 (void *)cache_resource,
3637                                 rte_atomic32_read(&cache_resource->refcnt));
3638                         rte_atomic32_inc(&cache_resource->refcnt);
3639                         dev_flow->dv.modify_hdr = cache_resource;
3640                         return 0;
3641                 }
3642         }
3643         /* Register new modify-header resource. */
3644         cache_resource = rte_calloc(__func__, 1,
3645                                     sizeof(*cache_resource) + actions_len, 0);
3646         if (!cache_resource)
3647                 return rte_flow_error_set(error, ENOMEM,
3648                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
3649                                           "cannot allocate resource memory");
3650         *cache_resource = *resource;
3651         rte_memcpy(cache_resource->actions, resource->actions, actions_len);
3652         cache_resource->verbs_action =
3653                 mlx5_glue->dv_create_flow_action_modify_header
3654                                         (sh->ctx, cache_resource->ft_type, ns,
3655                                          cache_resource->flags, actions_len,
3656                                          (uint64_t *)cache_resource->actions);
3657         if (!cache_resource->verbs_action) {
3658                 rte_free(cache_resource);
3659                 return rte_flow_error_set(error, ENOMEM,
3660                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
3661                                           NULL, "cannot create action");
3662         }
3663         rte_atomic32_init(&cache_resource->refcnt);
3664         rte_atomic32_inc(&cache_resource->refcnt);
3665         LIST_INSERT_HEAD(&sh->modify_cmds, cache_resource, next);
3666         dev_flow->dv.modify_hdr = cache_resource;
3667         DRV_LOG(DEBUG, "new modify-header resource %p: refcnt %d++",
3668                 (void *)cache_resource,
3669                 rte_atomic32_read(&cache_resource->refcnt));
3670         return 0;
3671 }
3672
3673 #define MLX5_CNT_CONTAINER_RESIZE 64
3674
3675 /**
3676  * Get or create a flow counter.
3677  *
3678  * @param[in] dev
3679  *   Pointer to the Ethernet device structure.
3680  * @param[in] shared
3681  *   Indicate if this counter is shared with other flows.
3682  * @param[in] id
3683  *   Counter identifier.
3684  *
3685  * @return
3686  *   pointer to flow counter on success, NULL otherwise and rte_errno is set.
3687  */
3688 static struct mlx5_flow_counter *
3689 flow_dv_counter_alloc_fallback(struct rte_eth_dev *dev, uint32_t shared,
3690                                uint32_t id)
3691 {
3692         struct mlx5_priv *priv = dev->data->dev_private;
3693         struct mlx5_flow_counter *cnt = NULL;
3694         struct mlx5_devx_obj *dcs = NULL;
3695
3696         if (!priv->config.devx) {
3697                 rte_errno = ENOTSUP;
3698                 return NULL;
3699         }
3700         if (shared) {
3701                 TAILQ_FOREACH(cnt, &priv->sh->cmng.flow_counters, next) {
3702                         if (cnt->shared && cnt->id == id) {
3703                                 cnt->ref_cnt++;
3704                                 return cnt;
3705                         }
3706                 }
3707         }
3708         dcs = mlx5_devx_cmd_flow_counter_alloc(priv->sh->ctx, 0);
3709         if (!dcs)
3710                 return NULL;
3711         cnt = rte_calloc(__func__, 1, sizeof(*cnt), 0);
3712         if (!cnt) {
3713                 claim_zero(mlx5_devx_cmd_destroy(cnt->dcs));
3714                 rte_errno = ENOMEM;
3715                 return NULL;
3716         }
3717         struct mlx5_flow_counter tmpl = {
3718                 .shared = shared,
3719                 .ref_cnt = 1,
3720                 .id = id,
3721                 .dcs = dcs,
3722         };
3723         tmpl.action = mlx5_glue->dv_create_flow_action_counter(dcs->obj, 0);
3724         if (!tmpl.action) {
3725                 claim_zero(mlx5_devx_cmd_destroy(cnt->dcs));
3726                 rte_errno = errno;
3727                 rte_free(cnt);
3728                 return NULL;
3729         }
3730         *cnt = tmpl;
3731         TAILQ_INSERT_HEAD(&priv->sh->cmng.flow_counters, cnt, next);
3732         return cnt;
3733 }
3734
3735 /**
3736  * Release a flow counter.
3737  *
3738  * @param[in] dev
3739  *   Pointer to the Ethernet device structure.
3740  * @param[in] counter
3741  *   Pointer to the counter handler.
3742  */
3743 static void
3744 flow_dv_counter_release_fallback(struct rte_eth_dev *dev,
3745                                  struct mlx5_flow_counter *counter)
3746 {
3747         struct mlx5_priv *priv = dev->data->dev_private;
3748
3749         if (!counter)
3750                 return;
3751         if (--counter->ref_cnt == 0) {
3752                 TAILQ_REMOVE(&priv->sh->cmng.flow_counters, counter, next);
3753                 claim_zero(mlx5_devx_cmd_destroy(counter->dcs));
3754                 rte_free(counter);
3755         }
3756 }
3757
3758 /**
3759  * Query a devx flow counter.
3760  *
3761  * @param[in] dev
3762  *   Pointer to the Ethernet device structure.
3763  * @param[in] cnt
3764  *   Pointer to the flow counter.
3765  * @param[out] pkts
3766  *   The statistics value of packets.
3767  * @param[out] bytes
3768  *   The statistics value of bytes.
3769  *
3770  * @return
3771  *   0 on success, otherwise a negative errno value and rte_errno is set.
3772  */
3773 static inline int
3774 _flow_dv_query_count_fallback(struct rte_eth_dev *dev __rte_unused,
3775                      struct mlx5_flow_counter *cnt, uint64_t *pkts,
3776                      uint64_t *bytes)
3777 {
3778         return mlx5_devx_cmd_flow_counter_query(cnt->dcs, 0, 0, pkts, bytes,
3779                                                 0, NULL, NULL, 0);
3780 }
3781
3782 /**
3783  * Get a pool by a counter.
3784  *
3785  * @param[in] cnt
3786  *   Pointer to the counter.
3787  *
3788  * @return
3789  *   The counter pool.
3790  */
3791 static struct mlx5_flow_counter_pool *
3792 flow_dv_counter_pool_get(struct mlx5_flow_counter *cnt)
3793 {
3794         if (!cnt->batch) {
3795                 cnt -= cnt->dcs->id % MLX5_COUNTERS_PER_POOL;
3796                 return (struct mlx5_flow_counter_pool *)cnt - 1;
3797         }
3798         return cnt->pool;
3799 }
3800
3801 /**
3802  * Get a pool by devx counter ID.
3803  *
3804  * @param[in] cont
3805  *   Pointer to the counter container.
3806  * @param[in] id
3807  *   The counter devx ID.
3808  *
3809  * @return
3810  *   The counter pool pointer if exists, NULL otherwise,
3811  */
3812 static struct mlx5_flow_counter_pool *
3813 flow_dv_find_pool_by_id(struct mlx5_pools_container *cont, int id)
3814 {
3815         struct mlx5_flow_counter_pool *pool;
3816
3817         TAILQ_FOREACH(pool, &cont->pool_list, next) {
3818                 int base = (pool->min_dcs->id / MLX5_COUNTERS_PER_POOL) *
3819                                 MLX5_COUNTERS_PER_POOL;
3820
3821                 if (id >= base && id < base + MLX5_COUNTERS_PER_POOL)
3822                         return pool;
3823         };
3824         return NULL;
3825 }
3826
3827 /**
3828  * Allocate a new memory for the counter values wrapped by all the needed
3829  * management.
3830  *
3831  * @param[in] dev
3832  *   Pointer to the Ethernet device structure.
3833  * @param[in] raws_n
3834  *   The raw memory areas - each one for MLX5_COUNTERS_PER_POOL counters.
3835  *
3836  * @return
3837  *   The new memory management pointer on success, otherwise NULL and rte_errno
3838  *   is set.
3839  */
3840 static struct mlx5_counter_stats_mem_mng *
3841 flow_dv_create_counter_stat_mem_mng(struct rte_eth_dev *dev, int raws_n)
3842 {
3843         struct mlx5_ibv_shared *sh = ((struct mlx5_priv *)
3844                                         (dev->data->dev_private))->sh;
3845         struct mlx5_devx_mkey_attr mkey_attr;
3846         struct mlx5_counter_stats_mem_mng *mem_mng;
3847         volatile struct flow_counter_stats *raw_data;
3848         int size = (sizeof(struct flow_counter_stats) *
3849                         MLX5_COUNTERS_PER_POOL +
3850                         sizeof(struct mlx5_counter_stats_raw)) * raws_n +
3851                         sizeof(struct mlx5_counter_stats_mem_mng);
3852         uint8_t *mem = rte_calloc(__func__, 1, size, sysconf(_SC_PAGESIZE));
3853         int i;
3854
3855         if (!mem) {
3856                 rte_errno = ENOMEM;
3857                 return NULL;
3858         }
3859         mem_mng = (struct mlx5_counter_stats_mem_mng *)(mem + size) - 1;
3860         size = sizeof(*raw_data) * MLX5_COUNTERS_PER_POOL * raws_n;
3861         mem_mng->umem = mlx5_glue->devx_umem_reg(sh->ctx, mem, size,
3862                                                  IBV_ACCESS_LOCAL_WRITE);
3863         if (!mem_mng->umem) {
3864                 rte_errno = errno;
3865                 rte_free(mem);
3866                 return NULL;
3867         }
3868         mkey_attr.addr = (uintptr_t)mem;
3869         mkey_attr.size = size;
3870         mkey_attr.umem_id = mem_mng->umem->umem_id;
3871         mkey_attr.pd = sh->pdn;
3872         mkey_attr.log_entity_size = 0;
3873         mkey_attr.pg_access = 0;
3874         mkey_attr.klm_array = NULL;
3875         mkey_attr.klm_num = 0;
3876         mem_mng->dm = mlx5_devx_cmd_mkey_create(sh->ctx, &mkey_attr);
3877         if (!mem_mng->dm) {
3878                 mlx5_glue->devx_umem_dereg(mem_mng->umem);
3879                 rte_errno = errno;
3880                 rte_free(mem);
3881                 return NULL;
3882         }
3883         mem_mng->raws = (struct mlx5_counter_stats_raw *)(mem + size);
3884         raw_data = (volatile struct flow_counter_stats *)mem;
3885         for (i = 0; i < raws_n; ++i) {
3886                 mem_mng->raws[i].mem_mng = mem_mng;
3887                 mem_mng->raws[i].data = raw_data + i * MLX5_COUNTERS_PER_POOL;
3888         }
3889         LIST_INSERT_HEAD(&sh->cmng.mem_mngs, mem_mng, next);
3890         return mem_mng;
3891 }
3892
3893 /**
3894  * Resize a counter container.
3895  *
3896  * @param[in] dev
3897  *   Pointer to the Ethernet device structure.
3898  * @param[in] batch
3899  *   Whether the pool is for counter that was allocated by batch command.
3900  *
3901  * @return
3902  *   The new container pointer on success, otherwise NULL and rte_errno is set.
3903  */
3904 static struct mlx5_pools_container *
3905 flow_dv_container_resize(struct rte_eth_dev *dev, uint32_t batch)
3906 {
3907         struct mlx5_priv *priv = dev->data->dev_private;
3908         struct mlx5_pools_container *cont =
3909                         MLX5_CNT_CONTAINER(priv->sh, batch, 0);
3910         struct mlx5_pools_container *new_cont =
3911                         MLX5_CNT_CONTAINER_UNUSED(priv->sh, batch, 0);
3912         struct mlx5_counter_stats_mem_mng *mem_mng;
3913         uint32_t resize = cont->n + MLX5_CNT_CONTAINER_RESIZE;
3914         uint32_t mem_size = sizeof(struct mlx5_flow_counter_pool *) * resize;
3915         int i;
3916
3917         if (cont != MLX5_CNT_CONTAINER(priv->sh, batch, 1)) {
3918                 /* The last resize still hasn't detected by the host thread. */
3919                 rte_errno = EAGAIN;
3920                 return NULL;
3921         }
3922         new_cont->pools = rte_calloc(__func__, 1, mem_size, 0);
3923         if (!new_cont->pools) {
3924                 rte_errno = ENOMEM;
3925                 return NULL;
3926         }
3927         if (cont->n)
3928                 memcpy(new_cont->pools, cont->pools, cont->n *
3929                        sizeof(struct mlx5_flow_counter_pool *));
3930         mem_mng = flow_dv_create_counter_stat_mem_mng(dev,
3931                 MLX5_CNT_CONTAINER_RESIZE + MLX5_MAX_PENDING_QUERIES);
3932         if (!mem_mng) {
3933                 rte_free(new_cont->pools);
3934                 return NULL;
3935         }
3936         for (i = 0; i < MLX5_MAX_PENDING_QUERIES; ++i)
3937                 LIST_INSERT_HEAD(&priv->sh->cmng.free_stat_raws,
3938                                  mem_mng->raws + MLX5_CNT_CONTAINER_RESIZE +
3939                                  i, next);
3940         new_cont->n = resize;
3941         rte_atomic16_set(&new_cont->n_valid, rte_atomic16_read(&cont->n_valid));
3942         TAILQ_INIT(&new_cont->pool_list);
3943         TAILQ_CONCAT(&new_cont->pool_list, &cont->pool_list, next);
3944         new_cont->init_mem_mng = mem_mng;
3945         rte_cio_wmb();
3946          /* Flip the master container. */
3947         priv->sh->cmng.mhi[batch] ^= (uint8_t)1;
3948         return new_cont;
3949 }
3950
3951 /**
3952  * Query a devx flow counter.
3953  *
3954  * @param[in] dev
3955  *   Pointer to the Ethernet device structure.
3956  * @param[in] cnt
3957  *   Pointer to the flow counter.
3958  * @param[out] pkts
3959  *   The statistics value of packets.
3960  * @param[out] bytes
3961  *   The statistics value of bytes.
3962  *
3963  * @return
3964  *   0 on success, otherwise a negative errno value and rte_errno is set.
3965  */
3966 static inline int
3967 _flow_dv_query_count(struct rte_eth_dev *dev,
3968                      struct mlx5_flow_counter *cnt, uint64_t *pkts,
3969                      uint64_t *bytes)
3970 {
3971         struct mlx5_priv *priv = dev->data->dev_private;
3972         struct mlx5_flow_counter_pool *pool =
3973                         flow_dv_counter_pool_get(cnt);
3974         int offset = cnt - &pool->counters_raw[0];
3975
3976         if (priv->counter_fallback)
3977                 return _flow_dv_query_count_fallback(dev, cnt, pkts, bytes);
3978
3979         rte_spinlock_lock(&pool->sl);
3980         /*
3981          * The single counters allocation may allocate smaller ID than the
3982          * current allocated in parallel to the host reading.
3983          * In this case the new counter values must be reported as 0.
3984          */
3985         if (unlikely(!cnt->batch && cnt->dcs->id < pool->raw->min_dcs_id)) {
3986                 *pkts = 0;
3987                 *bytes = 0;
3988         } else {
3989                 *pkts = rte_be_to_cpu_64(pool->raw->data[offset].hits);
3990                 *bytes = rte_be_to_cpu_64(pool->raw->data[offset].bytes);
3991         }
3992         rte_spinlock_unlock(&pool->sl);
3993         return 0;
3994 }
3995
3996 /**
3997  * Create and initialize a new counter pool.
3998  *
3999  * @param[in] dev
4000  *   Pointer to the Ethernet device structure.
4001  * @param[out] dcs
4002  *   The devX counter handle.
4003  * @param[in] batch
4004  *   Whether the pool is for counter that was allocated by batch command.
4005  *
4006  * @return
4007  *   A new pool pointer on success, NULL otherwise and rte_errno is set.
4008  */
4009 static struct mlx5_flow_counter_pool *
4010 flow_dv_pool_create(struct rte_eth_dev *dev, struct mlx5_devx_obj *dcs,
4011                     uint32_t batch)
4012 {
4013         struct mlx5_priv *priv = dev->data->dev_private;
4014         struct mlx5_flow_counter_pool *pool;
4015         struct mlx5_pools_container *cont = MLX5_CNT_CONTAINER(priv->sh, batch,
4016                                                                0);
4017         int16_t n_valid = rte_atomic16_read(&cont->n_valid);
4018         uint32_t size;
4019
4020         if (cont->n == n_valid) {
4021                 cont = flow_dv_container_resize(dev, batch);
4022                 if (!cont)
4023                         return NULL;
4024         }
4025         size = sizeof(*pool) + MLX5_COUNTERS_PER_POOL *
4026                         sizeof(struct mlx5_flow_counter);
4027         pool = rte_calloc(__func__, 1, size, 0);
4028         if (!pool) {
4029                 rte_errno = ENOMEM;
4030                 return NULL;
4031         }
4032         pool->min_dcs = dcs;
4033         pool->raw = cont->init_mem_mng->raws + n_valid %
4034                                                      MLX5_CNT_CONTAINER_RESIZE;
4035         pool->raw_hw = NULL;
4036         rte_spinlock_init(&pool->sl);
4037         /*
4038          * The generation of the new allocated counters in this pool is 0, 2 in
4039          * the pool generation makes all the counters valid for allocation.
4040          */
4041         rte_atomic64_set(&pool->query_gen, 0x2);
4042         TAILQ_INIT(&pool->counters);
4043         TAILQ_INSERT_TAIL(&cont->pool_list, pool, next);
4044         cont->pools[n_valid] = pool;
4045         /* Pool initialization must be updated before host thread access. */
4046         rte_cio_wmb();
4047         rte_atomic16_add(&cont->n_valid, 1);
4048         return pool;
4049 }
4050
4051 /**
4052  * Prepare a new counter and/or a new counter pool.
4053  *
4054  * @param[in] dev
4055  *   Pointer to the Ethernet device structure.
4056  * @param[out] cnt_free
4057  *   Where to put the pointer of a new counter.
4058  * @param[in] batch
4059  *   Whether the pool is for counter that was allocated by batch command.
4060  *
4061  * @return
4062  *   The free counter pool pointer and @p cnt_free is set on success,
4063  *   NULL otherwise and rte_errno is set.
4064  */
4065 static struct mlx5_flow_counter_pool *
4066 flow_dv_counter_pool_prepare(struct rte_eth_dev *dev,
4067                              struct mlx5_flow_counter **cnt_free,
4068                              uint32_t batch)
4069 {
4070         struct mlx5_priv *priv = dev->data->dev_private;
4071         struct mlx5_flow_counter_pool *pool;
4072         struct mlx5_devx_obj *dcs = NULL;
4073         struct mlx5_flow_counter *cnt;
4074         uint32_t i;
4075
4076         if (!batch) {
4077                 /* bulk_bitmap must be 0 for single counter allocation. */
4078                 dcs = mlx5_devx_cmd_flow_counter_alloc(priv->sh->ctx, 0);
4079                 if (!dcs)
4080                         return NULL;
4081                 pool = flow_dv_find_pool_by_id
4082                         (MLX5_CNT_CONTAINER(priv->sh, batch, 0), dcs->id);
4083                 if (!pool) {
4084                         pool = flow_dv_pool_create(dev, dcs, batch);
4085                         if (!pool) {
4086                                 mlx5_devx_cmd_destroy(dcs);
4087                                 return NULL;
4088                         }
4089                 } else if (dcs->id < pool->min_dcs->id) {
4090                         rte_atomic64_set(&pool->a64_dcs,
4091                                          (int64_t)(uintptr_t)dcs);
4092                 }
4093                 cnt = &pool->counters_raw[dcs->id % MLX5_COUNTERS_PER_POOL];
4094                 TAILQ_INSERT_HEAD(&pool->counters, cnt, next);
4095                 cnt->dcs = dcs;
4096                 *cnt_free = cnt;
4097                 return pool;
4098         }
4099         /* bulk_bitmap is in 128 counters units. */
4100         if (priv->config.hca_attr.flow_counter_bulk_alloc_bitmap & 0x4)
4101                 dcs = mlx5_devx_cmd_flow_counter_alloc(priv->sh->ctx, 0x4);
4102         if (!dcs) {
4103                 rte_errno = ENODATA;
4104                 return NULL;
4105         }
4106         pool = flow_dv_pool_create(dev, dcs, batch);
4107         if (!pool) {
4108                 mlx5_devx_cmd_destroy(dcs);
4109                 return NULL;
4110         }
4111         for (i = 0; i < MLX5_COUNTERS_PER_POOL; ++i) {
4112                 cnt = &pool->counters_raw[i];
4113                 cnt->pool = pool;
4114                 TAILQ_INSERT_HEAD(&pool->counters, cnt, next);
4115         }
4116         *cnt_free = &pool->counters_raw[0];
4117         return pool;
4118 }
4119
4120 /**
4121  * Search for existed shared counter.
4122  *
4123  * @param[in] cont
4124  *   Pointer to the relevant counter pool container.
4125  * @param[in] id
4126  *   The shared counter ID to search.
4127  *
4128  * @return
4129  *   NULL if not existed, otherwise pointer to the shared counter.
4130  */
4131 static struct mlx5_flow_counter *
4132 flow_dv_counter_shared_search(struct mlx5_pools_container *cont,
4133                               uint32_t id)
4134 {
4135         static struct mlx5_flow_counter *cnt;
4136         struct mlx5_flow_counter_pool *pool;
4137         int i;
4138
4139         TAILQ_FOREACH(pool, &cont->pool_list, next) {
4140                 for (i = 0; i < MLX5_COUNTERS_PER_POOL; ++i) {
4141                         cnt = &pool->counters_raw[i];
4142                         if (cnt->ref_cnt && cnt->shared && cnt->id == id)
4143                                 return cnt;
4144                 }
4145         }
4146         return NULL;
4147 }
4148
4149 /**
4150  * Allocate a flow counter.
4151  *
4152  * @param[in] dev
4153  *   Pointer to the Ethernet device structure.
4154  * @param[in] shared
4155  *   Indicate if this counter is shared with other flows.
4156  * @param[in] id
4157  *   Counter identifier.
4158  * @param[in] group
4159  *   Counter flow group.
4160  *
4161  * @return
4162  *   pointer to flow counter on success, NULL otherwise and rte_errno is set.
4163  */
4164 static struct mlx5_flow_counter *
4165 flow_dv_counter_alloc(struct rte_eth_dev *dev, uint32_t shared, uint32_t id,
4166                       uint16_t group)
4167 {
4168         struct mlx5_priv *priv = dev->data->dev_private;
4169         struct mlx5_flow_counter_pool *pool = NULL;
4170         struct mlx5_flow_counter *cnt_free = NULL;
4171         /*
4172          * Currently group 0 flow counter cannot be assigned to a flow if it is
4173          * not the first one in the batch counter allocation, so it is better
4174          * to allocate counters one by one for these flows in a separate
4175          * container.
4176          * A counter can be shared between different groups so need to take
4177          * shared counters from the single container.
4178          */
4179         uint32_t batch = (group && !shared) ? 1 : 0;
4180         struct mlx5_pools_container *cont = MLX5_CNT_CONTAINER(priv->sh, batch,
4181                                                                0);
4182
4183         if (priv->counter_fallback)
4184                 return flow_dv_counter_alloc_fallback(dev, shared, id);
4185         if (!priv->config.devx) {
4186                 rte_errno = ENOTSUP;
4187                 return NULL;
4188         }
4189         if (shared) {
4190                 cnt_free = flow_dv_counter_shared_search(cont, id);
4191                 if (cnt_free) {
4192                         if (cnt_free->ref_cnt + 1 == 0) {
4193                                 rte_errno = E2BIG;
4194                                 return NULL;
4195                         }
4196                         cnt_free->ref_cnt++;
4197                         return cnt_free;
4198                 }
4199         }
4200         /* Pools which has a free counters are in the start. */
4201         TAILQ_FOREACH(pool, &cont->pool_list, next) {
4202                 /*
4203                  * The free counter reset values must be updated between the
4204                  * counter release to the counter allocation, so, at least one
4205                  * query must be done in this time. ensure it by saving the
4206                  * query generation in the release time.
4207                  * The free list is sorted according to the generation - so if
4208                  * the first one is not updated, all the others are not
4209                  * updated too.
4210                  */
4211                 cnt_free = TAILQ_FIRST(&pool->counters);
4212                 if (cnt_free && cnt_free->query_gen + 1 <
4213                     rte_atomic64_read(&pool->query_gen))
4214                         break;
4215                 cnt_free = NULL;
4216         }
4217         if (!cnt_free) {
4218                 pool = flow_dv_counter_pool_prepare(dev, &cnt_free, batch);
4219                 if (!pool)
4220                         return NULL;
4221         }
4222         cnt_free->batch = batch;
4223         /* Create a DV counter action only in the first time usage. */
4224         if (!cnt_free->action) {
4225                 uint16_t offset;
4226                 struct mlx5_devx_obj *dcs;
4227
4228                 if (batch) {
4229                         offset = cnt_free - &pool->counters_raw[0];
4230                         dcs = pool->min_dcs;
4231                 } else {
4232                         offset = 0;
4233                         dcs = cnt_free->dcs;
4234                 }
4235                 cnt_free->action = mlx5_glue->dv_create_flow_action_counter
4236                                         (dcs->obj, offset);
4237                 if (!cnt_free->action) {
4238                         rte_errno = errno;
4239                         return NULL;
4240                 }
4241         }
4242         /* Update the counter reset values. */
4243         if (_flow_dv_query_count(dev, cnt_free, &cnt_free->hits,
4244                                  &cnt_free->bytes))
4245                 return NULL;
4246         cnt_free->shared = shared;
4247         cnt_free->ref_cnt = 1;
4248         cnt_free->id = id;
4249         if (!priv->sh->cmng.query_thread_on)
4250                 /* Start the asynchronous batch query by the host thread. */
4251                 mlx5_set_query_alarm(priv->sh);
4252         TAILQ_REMOVE(&pool->counters, cnt_free, next);
4253         if (TAILQ_EMPTY(&pool->counters)) {
4254                 /* Move the pool to the end of the container pool list. */
4255                 TAILQ_REMOVE(&cont->pool_list, pool, next);
4256                 TAILQ_INSERT_TAIL(&cont->pool_list, pool, next);
4257         }
4258         return cnt_free;
4259 }
4260
4261 /**
4262  * Release a flow counter.
4263  *
4264  * @param[in] dev
4265  *   Pointer to the Ethernet device structure.
4266  * @param[in] counter
4267  *   Pointer to the counter handler.
4268  */
4269 static void
4270 flow_dv_counter_release(struct rte_eth_dev *dev,
4271                         struct mlx5_flow_counter *counter)
4272 {
4273         struct mlx5_priv *priv = dev->data->dev_private;
4274
4275         if (!counter)
4276                 return;
4277         if (priv->counter_fallback) {
4278                 flow_dv_counter_release_fallback(dev, counter);
4279                 return;
4280         }
4281         if (--counter->ref_cnt == 0) {
4282                 struct mlx5_flow_counter_pool *pool =
4283                                 flow_dv_counter_pool_get(counter);
4284
4285                 /* Put the counter in the end - the last updated one. */
4286                 TAILQ_INSERT_TAIL(&pool->counters, counter, next);
4287                 counter->query_gen = rte_atomic64_read(&pool->query_gen);
4288         }
4289 }
4290
4291 /**
4292  * Verify the @p attributes will be correctly understood by the NIC and store
4293  * them in the @p flow if everything is correct.
4294  *
4295  * @param[in] dev
4296  *   Pointer to dev struct.
4297  * @param[in] attributes
4298  *   Pointer to flow attributes
4299  * @param[in] external
4300  *   This flow rule is created by request external to PMD.
4301  * @param[out] error
4302  *   Pointer to error structure.
4303  *
4304  * @return
4305  *   0 on success, a negative errno value otherwise and rte_errno is set.
4306  */
4307 static int
4308 flow_dv_validate_attributes(struct rte_eth_dev *dev,
4309                             const struct rte_flow_attr *attributes,
4310                             bool external __rte_unused,
4311                             struct rte_flow_error *error)
4312 {
4313         struct mlx5_priv *priv = dev->data->dev_private;
4314         uint32_t priority_max = priv->config.flow_prio - 1;
4315
4316 #ifndef HAVE_MLX5DV_DR
4317         if (attributes->group)
4318                 return rte_flow_error_set(error, ENOTSUP,
4319                                           RTE_FLOW_ERROR_TYPE_ATTR_GROUP,
4320                                           NULL,
4321                                           "groups are not supported");
4322 #else
4323         uint32_t table;
4324         int ret;
4325
4326         ret = mlx5_flow_group_to_table(attributes, external,
4327                                        attributes->group, !!priv->fdb_def_rule,
4328                                        &table, error);
4329         if (ret)
4330                 return ret;
4331 #endif
4332         if (attributes->priority != MLX5_FLOW_PRIO_RSVD &&
4333             attributes->priority >= priority_max)
4334                 return rte_flow_error_set(error, ENOTSUP,
4335                                           RTE_FLOW_ERROR_TYPE_ATTR_PRIORITY,
4336                                           NULL,
4337                                           "priority out of range");
4338         if (attributes->transfer) {
4339                 if (!priv->config.dv_esw_en)
4340                         return rte_flow_error_set
4341                                 (error, ENOTSUP,
4342                                  RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
4343                                  "E-Switch dr is not supported");
4344                 if (!(priv->representor || priv->master))
4345                         return rte_flow_error_set
4346                                 (error, EINVAL, RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
4347                                  NULL, "E-Switch configuration can only be"
4348                                  " done by a master or a representor device");
4349                 if (attributes->egress)
4350                         return rte_flow_error_set
4351                                 (error, ENOTSUP,
4352                                  RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, attributes,
4353                                  "egress is not supported");
4354         }
4355         if (!(attributes->egress ^ attributes->ingress))
4356                 return rte_flow_error_set(error, ENOTSUP,
4357                                           RTE_FLOW_ERROR_TYPE_ATTR, NULL,
4358                                           "must specify exactly one of "
4359                                           "ingress or egress");
4360         return 0;
4361 }
4362
4363 /**
4364  * Internal validation function. For validating both actions and items.
4365  *
4366  * @param[in] dev
4367  *   Pointer to the rte_eth_dev structure.
4368  * @param[in] attr
4369  *   Pointer to the flow attributes.
4370  * @param[in] items
4371  *   Pointer to the list of items.
4372  * @param[in] actions
4373  *   Pointer to the list of actions.
4374  * @param[in] external
4375  *   This flow rule is created by request external to PMD.
4376  * @param[out] error
4377  *   Pointer to the error structure.
4378  *
4379  * @return
4380  *   0 on success, a negative errno value otherwise and rte_errno is set.
4381  */
4382 static int
4383 flow_dv_validate(struct rte_eth_dev *dev, const struct rte_flow_attr *attr,
4384                  const struct rte_flow_item items[],
4385                  const struct rte_flow_action actions[],
4386                  bool external, struct rte_flow_error *error)
4387 {
4388         int ret;
4389         uint64_t action_flags = 0;
4390         uint64_t item_flags = 0;
4391         uint64_t last_item = 0;
4392         uint8_t next_protocol = 0xff;
4393         uint16_t ether_type = 0;
4394         int actions_n = 0;
4395         uint8_t item_ipv6_proto = 0;
4396         const struct rte_flow_item *gre_item = NULL;
4397         const struct rte_flow_action_raw_decap *decap;
4398         const struct rte_flow_action_raw_encap *encap;
4399         const struct rte_flow_action_rss *rss;
4400         struct rte_flow_item_tcp nic_tcp_mask = {
4401                 .hdr = {
4402                         .tcp_flags = 0xFF,
4403                         .src_port = RTE_BE16(UINT16_MAX),
4404                         .dst_port = RTE_BE16(UINT16_MAX),
4405                 }
4406         };
4407         struct mlx5_priv *priv = dev->data->dev_private;
4408         struct mlx5_dev_config *dev_conf = &priv->config;
4409         uint16_t queue_index = 0xFFFF;
4410
4411         if (items == NULL)
4412                 return -1;
4413         ret = flow_dv_validate_attributes(dev, attr, external, error);
4414         if (ret < 0)
4415                 return ret;
4416         for (; items->type != RTE_FLOW_ITEM_TYPE_END; items++) {
4417                 int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
4418                 int type = items->type;
4419
4420                 switch (type) {
4421                 case RTE_FLOW_ITEM_TYPE_VOID:
4422                         break;
4423                 case RTE_FLOW_ITEM_TYPE_PORT_ID:
4424                         ret = flow_dv_validate_item_port_id
4425                                         (dev, items, attr, item_flags, error);
4426                         if (ret < 0)
4427                                 return ret;
4428                         last_item = MLX5_FLOW_ITEM_PORT_ID;
4429                         break;
4430                 case RTE_FLOW_ITEM_TYPE_ETH:
4431                         ret = mlx5_flow_validate_item_eth(items, item_flags,
4432                                                           error);
4433                         if (ret < 0)
4434                                 return ret;
4435                         last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L2 :
4436                                              MLX5_FLOW_LAYER_OUTER_L2;
4437                         if (items->mask != NULL && items->spec != NULL) {
4438                                 ether_type =
4439                                         ((const struct rte_flow_item_eth *)
4440                                          items->spec)->type;
4441                                 ether_type &=
4442                                         ((const struct rte_flow_item_eth *)
4443                                          items->mask)->type;
4444                                 ether_type = rte_be_to_cpu_16(ether_type);
4445                         } else {
4446                                 ether_type = 0;
4447                         }
4448                         break;
4449                 case RTE_FLOW_ITEM_TYPE_VLAN:
4450                         ret = mlx5_flow_validate_item_vlan(items, item_flags,
4451                                                            dev, error);
4452                         if (ret < 0)
4453                                 return ret;
4454                         last_item = tunnel ? MLX5_FLOW_LAYER_INNER_VLAN :
4455                                              MLX5_FLOW_LAYER_OUTER_VLAN;
4456                         if (items->mask != NULL && items->spec != NULL) {
4457                                 ether_type =
4458                                         ((const struct rte_flow_item_vlan *)
4459                                          items->spec)->inner_type;
4460                                 ether_type &=
4461                                         ((const struct rte_flow_item_vlan *)
4462                                          items->mask)->inner_type;
4463                                 ether_type = rte_be_to_cpu_16(ether_type);
4464                         } else {
4465                                 ether_type = 0;
4466                         }
4467                         break;
4468                 case RTE_FLOW_ITEM_TYPE_IPV4:
4469                         mlx5_flow_tunnel_ip_check(items, next_protocol,
4470                                                   &item_flags, &tunnel);
4471                         ret = mlx5_flow_validate_item_ipv4(items, item_flags,
4472                                                            last_item,
4473                                                            ether_type, NULL,
4474                                                            error);
4475                         if (ret < 0)
4476                                 return ret;
4477                         last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L3_IPV4 :
4478                                              MLX5_FLOW_LAYER_OUTER_L3_IPV4;
4479                         if (items->mask != NULL &&
4480                             ((const struct rte_flow_item_ipv4 *)
4481                              items->mask)->hdr.next_proto_id) {
4482                                 next_protocol =
4483                                         ((const struct rte_flow_item_ipv4 *)
4484                                          (items->spec))->hdr.next_proto_id;
4485                                 next_protocol &=
4486                                         ((const struct rte_flow_item_ipv4 *)
4487                                          (items->mask))->hdr.next_proto_id;
4488                         } else {
4489                                 /* Reset for inner layer. */
4490                                 next_protocol = 0xff;
4491                         }
4492                         break;
4493                 case RTE_FLOW_ITEM_TYPE_IPV6:
4494                         mlx5_flow_tunnel_ip_check(items, next_protocol,
4495                                                   &item_flags, &tunnel);
4496                         ret = mlx5_flow_validate_item_ipv6(items, item_flags,
4497                                                            last_item,
4498                                                            ether_type, NULL,
4499                                                            error);
4500                         if (ret < 0)
4501                                 return ret;
4502                         last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L3_IPV6 :
4503                                              MLX5_FLOW_LAYER_OUTER_L3_IPV6;
4504                         if (items->mask != NULL &&
4505                             ((const struct rte_flow_item_ipv6 *)
4506                              items->mask)->hdr.proto) {
4507                                 item_ipv6_proto =
4508                                         ((const struct rte_flow_item_ipv6 *)
4509                                          items->spec)->hdr.proto;
4510                                 next_protocol =
4511                                         ((const struct rte_flow_item_ipv6 *)
4512                                          items->spec)->hdr.proto;
4513                                 next_protocol &=
4514                                         ((const struct rte_flow_item_ipv6 *)
4515                                          items->mask)->hdr.proto;
4516                         } else {
4517                                 /* Reset for inner layer. */
4518                                 next_protocol = 0xff;
4519                         }
4520                         break;
4521                 case RTE_FLOW_ITEM_TYPE_TCP:
4522                         ret = mlx5_flow_validate_item_tcp
4523                                                 (items, item_flags,
4524                                                  next_protocol,
4525                                                  &nic_tcp_mask,
4526                                                  error);
4527                         if (ret < 0)
4528                                 return ret;
4529                         last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L4_TCP :
4530                                              MLX5_FLOW_LAYER_OUTER_L4_TCP;
4531                         break;
4532                 case RTE_FLOW_ITEM_TYPE_UDP:
4533                         ret = mlx5_flow_validate_item_udp(items, item_flags,
4534                                                           next_protocol,
4535                                                           error);
4536                         if (ret < 0)
4537                                 return ret;
4538                         last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L4_UDP :
4539                                              MLX5_FLOW_LAYER_OUTER_L4_UDP;
4540                         break;
4541                 case RTE_FLOW_ITEM_TYPE_GRE:
4542                         ret = mlx5_flow_validate_item_gre(items, item_flags,
4543                                                           next_protocol, error);
4544                         if (ret < 0)
4545                                 return ret;
4546                         gre_item = items;
4547                         last_item = MLX5_FLOW_LAYER_GRE;
4548                         break;
4549                 case RTE_FLOW_ITEM_TYPE_NVGRE:
4550                         ret = mlx5_flow_validate_item_nvgre(items, item_flags,
4551                                                             next_protocol,
4552                                                             error);
4553                         if (ret < 0)
4554                                 return ret;
4555                         last_item = MLX5_FLOW_LAYER_NVGRE;
4556                         break;
4557                 case RTE_FLOW_ITEM_TYPE_GRE_KEY:
4558                         ret = mlx5_flow_validate_item_gre_key
4559                                 (items, item_flags, gre_item, error);
4560                         if (ret < 0)
4561                                 return ret;
4562                         last_item = MLX5_FLOW_LAYER_GRE_KEY;
4563                         break;
4564                 case RTE_FLOW_ITEM_TYPE_VXLAN:
4565                         ret = mlx5_flow_validate_item_vxlan(items, item_flags,
4566                                                             error);
4567                         if (ret < 0)
4568                                 return ret;
4569                         last_item = MLX5_FLOW_LAYER_VXLAN;
4570                         break;
4571                 case RTE_FLOW_ITEM_TYPE_VXLAN_GPE:
4572                         ret = mlx5_flow_validate_item_vxlan_gpe(items,
4573                                                                 item_flags, dev,
4574                                                                 error);
4575                         if (ret < 0)
4576                                 return ret;
4577                         last_item = MLX5_FLOW_LAYER_VXLAN_GPE;
4578                         break;
4579                 case RTE_FLOW_ITEM_TYPE_GENEVE:
4580                         ret = mlx5_flow_validate_item_geneve(items,
4581                                                              item_flags, dev,
4582                                                              error);
4583                         if (ret < 0)
4584                                 return ret;
4585                         last_item = MLX5_FLOW_LAYER_GENEVE;
4586                         break;
4587                 case RTE_FLOW_ITEM_TYPE_MPLS:
4588                         ret = mlx5_flow_validate_item_mpls(dev, items,
4589                                                            item_flags,
4590                                                            last_item, error);
4591                         if (ret < 0)
4592                                 return ret;
4593                         last_item = MLX5_FLOW_LAYER_MPLS;
4594                         break;
4595
4596                 case RTE_FLOW_ITEM_TYPE_MARK:
4597                         ret = flow_dv_validate_item_mark(dev, items, attr,
4598                                                          error);
4599                         if (ret < 0)
4600                                 return ret;
4601                         last_item = MLX5_FLOW_ITEM_MARK;
4602                         break;
4603                 case RTE_FLOW_ITEM_TYPE_META:
4604                         ret = flow_dv_validate_item_meta(dev, items, attr,
4605                                                          error);
4606                         if (ret < 0)
4607                                 return ret;
4608                         last_item = MLX5_FLOW_ITEM_METADATA;
4609                         break;
4610                 case RTE_FLOW_ITEM_TYPE_ICMP:
4611                         ret = mlx5_flow_validate_item_icmp(items, item_flags,
4612                                                            next_protocol,
4613                                                            error);
4614                         if (ret < 0)
4615                                 return ret;
4616                         last_item = MLX5_FLOW_LAYER_ICMP;
4617                         break;
4618                 case RTE_FLOW_ITEM_TYPE_ICMP6:
4619                         ret = mlx5_flow_validate_item_icmp6(items, item_flags,
4620                                                             next_protocol,
4621                                                             error);
4622                         if (ret < 0)
4623                                 return ret;
4624                         last_item = MLX5_FLOW_LAYER_ICMP6;
4625                         break;
4626                 case RTE_FLOW_ITEM_TYPE_TAG:
4627                         ret = flow_dv_validate_item_tag(dev, items,
4628                                                         attr, error);
4629                         if (ret < 0)
4630                                 return ret;
4631                         last_item = MLX5_FLOW_ITEM_TAG;
4632                         break;
4633                 case MLX5_RTE_FLOW_ITEM_TYPE_TAG:
4634                 case MLX5_RTE_FLOW_ITEM_TYPE_TX_QUEUE:
4635                         break;
4636                 case RTE_FLOW_ITEM_TYPE_GTP:
4637                         ret = flow_dv_validate_item_gtp(dev, items, item_flags,
4638                                                         error);
4639                         if (ret < 0)
4640                                 return ret;
4641                         last_item = MLX5_FLOW_LAYER_GTP;
4642                         break;
4643                 default:
4644                         return rte_flow_error_set(error, ENOTSUP,
4645                                                   RTE_FLOW_ERROR_TYPE_ITEM,
4646                                                   NULL, "item not supported");
4647                 }
4648                 item_flags |= last_item;
4649         }
4650         for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
4651                 int type = actions->type;
4652                 if (actions_n == MLX5_DV_MAX_NUMBER_OF_ACTIONS)
4653                         return rte_flow_error_set(error, ENOTSUP,
4654                                                   RTE_FLOW_ERROR_TYPE_ACTION,
4655                                                   actions, "too many actions");
4656                 switch (type) {
4657                 case RTE_FLOW_ACTION_TYPE_VOID:
4658                         break;
4659                 case RTE_FLOW_ACTION_TYPE_PORT_ID:
4660                         ret = flow_dv_validate_action_port_id(dev,
4661                                                               action_flags,
4662                                                               actions,
4663                                                               attr,
4664                                                               error);
4665                         if (ret)
4666                                 return ret;
4667                         action_flags |= MLX5_FLOW_ACTION_PORT_ID;
4668                         ++actions_n;
4669                         break;
4670                 case RTE_FLOW_ACTION_TYPE_FLAG:
4671                         ret = flow_dv_validate_action_flag(dev, action_flags,
4672                                                            attr, error);
4673                         if (ret < 0)
4674                                 return ret;
4675                         if (dev_conf->dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
4676                                 /* Count all modify-header actions as one. */
4677                                 if (!(action_flags &
4678                                       MLX5_FLOW_MODIFY_HDR_ACTIONS))
4679                                         ++actions_n;
4680                                 action_flags |= MLX5_FLOW_ACTION_FLAG |
4681                                                 MLX5_FLOW_ACTION_MARK_EXT;
4682                         } else {
4683                                 action_flags |= MLX5_FLOW_ACTION_FLAG;
4684                                 ++actions_n;
4685                         }
4686                         break;
4687                 case RTE_FLOW_ACTION_TYPE_MARK:
4688                         ret = flow_dv_validate_action_mark(dev, actions,
4689                                                            action_flags,
4690                                                            attr, error);
4691                         if (ret < 0)
4692                                 return ret;
4693                         if (dev_conf->dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
4694                                 /* Count all modify-header actions as one. */
4695                                 if (!(action_flags &
4696                                       MLX5_FLOW_MODIFY_HDR_ACTIONS))
4697                                         ++actions_n;
4698                                 action_flags |= MLX5_FLOW_ACTION_MARK |
4699                                                 MLX5_FLOW_ACTION_MARK_EXT;
4700                         } else {
4701                                 action_flags |= MLX5_FLOW_ACTION_MARK;
4702                                 ++actions_n;
4703                         }
4704                         break;
4705                 case RTE_FLOW_ACTION_TYPE_SET_META:
4706                         ret = flow_dv_validate_action_set_meta(dev, actions,
4707                                                                action_flags,
4708                                                                attr, error);
4709                         if (ret < 0)
4710                                 return ret;
4711                         /* Count all modify-header actions as one action. */
4712                         if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
4713                                 ++actions_n;
4714                         action_flags |= MLX5_FLOW_ACTION_SET_META;
4715                         break;
4716                 case RTE_FLOW_ACTION_TYPE_SET_TAG:
4717                         ret = flow_dv_validate_action_set_tag(dev, actions,
4718                                                               action_flags,
4719                                                               attr, error);
4720                         if (ret < 0)
4721                                 return ret;
4722                         /* Count all modify-header actions as one action. */
4723                         if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
4724                                 ++actions_n;
4725                         action_flags |= MLX5_FLOW_ACTION_SET_TAG;
4726                         break;
4727                 case RTE_FLOW_ACTION_TYPE_DROP:
4728                         ret = mlx5_flow_validate_action_drop(action_flags,
4729                                                              attr, error);
4730                         if (ret < 0)
4731                                 return ret;
4732                         action_flags |= MLX5_FLOW_ACTION_DROP;
4733                         ++actions_n;
4734                         break;
4735                 case RTE_FLOW_ACTION_TYPE_QUEUE:
4736                         ret = mlx5_flow_validate_action_queue(actions,
4737                                                               action_flags, dev,
4738                                                               attr, error);
4739                         if (ret < 0)
4740                                 return ret;
4741                         queue_index = ((const struct rte_flow_action_queue *)
4742                                                         (actions->conf))->index;
4743                         action_flags |= MLX5_FLOW_ACTION_QUEUE;
4744                         ++actions_n;
4745                         break;
4746                 case RTE_FLOW_ACTION_TYPE_RSS:
4747                         rss = actions->conf;
4748                         ret = mlx5_flow_validate_action_rss(actions,
4749                                                             action_flags, dev,
4750                                                             attr, item_flags,
4751                                                             error);
4752                         if (ret < 0)
4753                                 return ret;
4754                         if (rss != NULL && rss->queue_num)
4755                                 queue_index = rss->queue[0];
4756                         action_flags |= MLX5_FLOW_ACTION_RSS;
4757                         ++actions_n;
4758                         break;
4759                 case RTE_FLOW_ACTION_TYPE_COUNT:
4760                         ret = flow_dv_validate_action_count(dev, error);
4761                         if (ret < 0)
4762                                 return ret;
4763                         action_flags |= MLX5_FLOW_ACTION_COUNT;
4764                         ++actions_n;
4765                         break;
4766                 case RTE_FLOW_ACTION_TYPE_OF_POP_VLAN:
4767                         if (flow_dv_validate_action_pop_vlan(dev,
4768                                                              action_flags,
4769                                                              actions,
4770                                                              item_flags, attr,
4771                                                              error))
4772                                 return -rte_errno;
4773                         action_flags |= MLX5_FLOW_ACTION_OF_POP_VLAN;
4774                         ++actions_n;
4775                         break;
4776                 case RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN:
4777                         ret = flow_dv_validate_action_push_vlan(action_flags,
4778                                                                 item_flags,
4779                                                                 actions, attr,
4780                                                                 error);
4781                         if (ret < 0)
4782                                 return ret;
4783                         action_flags |= MLX5_FLOW_ACTION_OF_PUSH_VLAN;
4784                         ++actions_n;
4785                         break;
4786                 case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP:
4787                         ret = flow_dv_validate_action_set_vlan_pcp
4788                                                 (action_flags, actions, error);
4789                         if (ret < 0)
4790                                 return ret;
4791                         /* Count PCP with push_vlan command. */
4792                         action_flags |= MLX5_FLOW_ACTION_OF_SET_VLAN_PCP;
4793                         break;
4794                 case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID:
4795                         ret = flow_dv_validate_action_set_vlan_vid
4796                                                 (item_flags, action_flags,
4797                                                  actions, error);
4798                         if (ret < 0)
4799                                 return ret;
4800                         /* Count VID with push_vlan command. */
4801                         action_flags |= MLX5_FLOW_ACTION_OF_SET_VLAN_VID;
4802                         break;
4803                 case RTE_FLOW_ACTION_TYPE_VXLAN_ENCAP:
4804                 case RTE_FLOW_ACTION_TYPE_NVGRE_ENCAP:
4805                         ret = flow_dv_validate_action_l2_encap(action_flags,
4806                                                                actions, error);
4807                         if (ret < 0)
4808                                 return ret;
4809                         action_flags |= MLX5_FLOW_ACTION_ENCAP;
4810                         ++actions_n;
4811                         break;
4812                 case RTE_FLOW_ACTION_TYPE_VXLAN_DECAP:
4813                 case RTE_FLOW_ACTION_TYPE_NVGRE_DECAP:
4814                         ret = flow_dv_validate_action_decap(action_flags, attr,
4815                                                             error);
4816                         if (ret < 0)
4817                                 return ret;
4818                         action_flags |= MLX5_FLOW_ACTION_DECAP;
4819                         ++actions_n;
4820                         break;
4821                 case RTE_FLOW_ACTION_TYPE_RAW_ENCAP:
4822                         ret = flow_dv_validate_action_raw_encap_decap
4823                                 (NULL, actions->conf, attr, &action_flags,
4824                                  &actions_n, error);
4825                         if (ret < 0)
4826                                 return ret;
4827                         break;
4828                 case RTE_FLOW_ACTION_TYPE_RAW_DECAP:
4829                         decap = actions->conf;
4830                         while ((++actions)->type == RTE_FLOW_ACTION_TYPE_VOID)
4831                                 ;
4832                         if (actions->type != RTE_FLOW_ACTION_TYPE_RAW_ENCAP) {
4833                                 encap = NULL;
4834                                 actions--;
4835                         } else {
4836                                 encap = actions->conf;
4837                         }
4838                         ret = flow_dv_validate_action_raw_encap_decap
4839                                            (decap ? decap : &empty_decap, encap,
4840                                             attr, &action_flags, &actions_n,
4841                                             error);
4842                         if (ret < 0)
4843                                 return ret;
4844                         break;
4845                 case RTE_FLOW_ACTION_TYPE_SET_MAC_SRC:
4846                 case RTE_FLOW_ACTION_TYPE_SET_MAC_DST:
4847                         ret = flow_dv_validate_action_modify_mac(action_flags,
4848                                                                  actions,
4849                                                                  item_flags,
4850                                                                  error);
4851                         if (ret < 0)
4852                                 return ret;
4853                         /* Count all modify-header actions as one action. */
4854                         if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
4855                                 ++actions_n;
4856                         action_flags |= actions->type ==
4857                                         RTE_FLOW_ACTION_TYPE_SET_MAC_SRC ?
4858                                                 MLX5_FLOW_ACTION_SET_MAC_SRC :
4859                                                 MLX5_FLOW_ACTION_SET_MAC_DST;
4860                         break;
4861
4862                 case RTE_FLOW_ACTION_TYPE_SET_IPV4_SRC:
4863                 case RTE_FLOW_ACTION_TYPE_SET_IPV4_DST:
4864                         ret = flow_dv_validate_action_modify_ipv4(action_flags,
4865                                                                   actions,
4866                                                                   item_flags,
4867                                                                   error);
4868                         if (ret < 0)
4869                                 return ret;
4870                         /* Count all modify-header actions as one action. */
4871                         if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
4872                                 ++actions_n;
4873                         action_flags |= actions->type ==
4874                                         RTE_FLOW_ACTION_TYPE_SET_IPV4_SRC ?
4875                                                 MLX5_FLOW_ACTION_SET_IPV4_SRC :
4876                                                 MLX5_FLOW_ACTION_SET_IPV4_DST;
4877                         break;
4878                 case RTE_FLOW_ACTION_TYPE_SET_IPV6_SRC:
4879                 case RTE_FLOW_ACTION_TYPE_SET_IPV6_DST:
4880                         ret = flow_dv_validate_action_modify_ipv6(action_flags,
4881                                                                   actions,
4882                                                                   item_flags,
4883                                                                   error);
4884                         if (ret < 0)
4885                                 return ret;
4886                         if (item_ipv6_proto == IPPROTO_ICMPV6)
4887                                 return rte_flow_error_set(error, ENOTSUP,
4888                                         RTE_FLOW_ERROR_TYPE_ACTION,
4889                                         actions,
4890                                         "Can't change header "
4891                                         "with ICMPv6 proto");
4892                         /* Count all modify-header actions as one action. */
4893                         if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
4894                                 ++actions_n;
4895                         action_flags |= actions->type ==
4896                                         RTE_FLOW_ACTION_TYPE_SET_IPV6_SRC ?
4897                                                 MLX5_FLOW_ACTION_SET_IPV6_SRC :
4898                                                 MLX5_FLOW_ACTION_SET_IPV6_DST;
4899                         break;
4900                 case RTE_FLOW_ACTION_TYPE_SET_TP_SRC:
4901                 case RTE_FLOW_ACTION_TYPE_SET_TP_DST:
4902                         ret = flow_dv_validate_action_modify_tp(action_flags,
4903                                                                 actions,
4904                                                                 item_flags,
4905                                                                 error);
4906                         if (ret < 0)
4907                                 return ret;
4908                         /* Count all modify-header actions as one action. */
4909                         if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
4910                                 ++actions_n;
4911                         action_flags |= actions->type ==
4912                                         RTE_FLOW_ACTION_TYPE_SET_TP_SRC ?
4913                                                 MLX5_FLOW_ACTION_SET_TP_SRC :
4914                                                 MLX5_FLOW_ACTION_SET_TP_DST;
4915                         break;
4916                 case RTE_FLOW_ACTION_TYPE_DEC_TTL:
4917                 case RTE_FLOW_ACTION_TYPE_SET_TTL:
4918                         ret = flow_dv_validate_action_modify_ttl(action_flags,
4919                                                                  actions,
4920                                                                  item_flags,
4921                                                                  error);
4922                         if (ret < 0)
4923                                 return ret;
4924                         /* Count all modify-header actions as one action. */
4925                         if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
4926                                 ++actions_n;
4927                         action_flags |= actions->type ==
4928                                         RTE_FLOW_ACTION_TYPE_SET_TTL ?
4929                                                 MLX5_FLOW_ACTION_SET_TTL :
4930                                                 MLX5_FLOW_ACTION_DEC_TTL;
4931                         break;
4932                 case RTE_FLOW_ACTION_TYPE_JUMP:
4933                         ret = flow_dv_validate_action_jump(actions,
4934                                                            action_flags,
4935                                                            attr, external,
4936                                                            error);
4937                         if (ret)
4938                                 return ret;
4939                         ++actions_n;
4940                         action_flags |= MLX5_FLOW_ACTION_JUMP;
4941                         break;
4942                 case RTE_FLOW_ACTION_TYPE_INC_TCP_SEQ:
4943                 case RTE_FLOW_ACTION_TYPE_DEC_TCP_SEQ:
4944                         ret = flow_dv_validate_action_modify_tcp_seq
4945                                                                 (action_flags,
4946                                                                  actions,
4947                                                                  item_flags,
4948                                                                  error);
4949                         if (ret < 0)
4950                                 return ret;
4951                         /* Count all modify-header actions as one action. */
4952                         if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
4953                                 ++actions_n;
4954                         action_flags |= actions->type ==
4955                                         RTE_FLOW_ACTION_TYPE_INC_TCP_SEQ ?
4956                                                 MLX5_FLOW_ACTION_INC_TCP_SEQ :
4957                                                 MLX5_FLOW_ACTION_DEC_TCP_SEQ;
4958                         break;
4959                 case RTE_FLOW_ACTION_TYPE_INC_TCP_ACK:
4960                 case RTE_FLOW_ACTION_TYPE_DEC_TCP_ACK:
4961                         ret = flow_dv_validate_action_modify_tcp_ack
4962                                                                 (action_flags,
4963                                                                  actions,
4964                                                                  item_flags,
4965                                                                  error);
4966                         if (ret < 0)
4967                                 return ret;
4968                         /* Count all modify-header actions as one action. */
4969                         if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
4970                                 ++actions_n;
4971                         action_flags |= actions->type ==
4972                                         RTE_FLOW_ACTION_TYPE_INC_TCP_ACK ?
4973                                                 MLX5_FLOW_ACTION_INC_TCP_ACK :
4974                                                 MLX5_FLOW_ACTION_DEC_TCP_ACK;
4975                         break;
4976                 case MLX5_RTE_FLOW_ACTION_TYPE_TAG:
4977                 case MLX5_RTE_FLOW_ACTION_TYPE_MARK:
4978                 case MLX5_RTE_FLOW_ACTION_TYPE_COPY_MREG:
4979                         break;
4980                 case RTE_FLOW_ACTION_TYPE_METER:
4981                         ret = mlx5_flow_validate_action_meter(dev,
4982                                                               action_flags,
4983                                                               actions, attr,
4984                                                               error);
4985                         if (ret < 0)
4986                                 return ret;
4987                         action_flags |= MLX5_FLOW_ACTION_METER;
4988                         ++actions_n;
4989                         break;
4990                 case RTE_FLOW_ACTION_TYPE_SET_IPV4_DSCP:
4991                         ret = flow_dv_validate_action_modify_ipv4_dscp
4992                                                          (action_flags,
4993                                                           actions,
4994                                                           item_flags,
4995                                                           error);
4996                         if (ret < 0)
4997                                 return ret;
4998                         /* Count all modify-header actions as one action. */
4999                         if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
5000                                 ++actions_n;
5001                         action_flags |= MLX5_FLOW_ACTION_SET_IPV4_DSCP;
5002                         break;
5003                 case RTE_FLOW_ACTION_TYPE_SET_IPV6_DSCP:
5004                         ret = flow_dv_validate_action_modify_ipv6_dscp
5005                                                                 (action_flags,
5006                                                                  actions,
5007                                                                  item_flags,
5008                                                                  error);
5009                         if (ret < 0)
5010                                 return ret;
5011                         /* Count all modify-header actions as one action. */
5012                         if (!(action_flags & MLX5_FLOW_MODIFY_HDR_ACTIONS))
5013                                 ++actions_n;
5014                         action_flags |= MLX5_FLOW_ACTION_SET_IPV6_DSCP;
5015                         break;
5016                 default:
5017                         return rte_flow_error_set(error, ENOTSUP,
5018                                                   RTE_FLOW_ERROR_TYPE_ACTION,
5019                                                   actions,
5020                                                   "action not supported");
5021                 }
5022         }
5023         /*
5024          * Validate the drop action mutual exclusion with other actions.
5025          * Drop action is mutually-exclusive with any other action, except for
5026          * Count action.
5027          */
5028         if ((action_flags & MLX5_FLOW_ACTION_DROP) &&
5029             (action_flags & ~(MLX5_FLOW_ACTION_DROP | MLX5_FLOW_ACTION_COUNT)))
5030                 return rte_flow_error_set(error, EINVAL,
5031                                           RTE_FLOW_ERROR_TYPE_ACTION, NULL,
5032                                           "Drop action is mutually-exclusive "
5033                                           "with any other action, except for "
5034                                           "Count action");
5035         /* Eswitch has few restrictions on using items and actions */
5036         if (attr->transfer) {
5037                 if (!mlx5_flow_ext_mreg_supported(dev) &&
5038                     action_flags & MLX5_FLOW_ACTION_FLAG)
5039                         return rte_flow_error_set(error, ENOTSUP,
5040                                                   RTE_FLOW_ERROR_TYPE_ACTION,
5041                                                   NULL,
5042                                                   "unsupported action FLAG");
5043                 if (!mlx5_flow_ext_mreg_supported(dev) &&
5044                     action_flags & MLX5_FLOW_ACTION_MARK)
5045                         return rte_flow_error_set(error, ENOTSUP,
5046                                                   RTE_FLOW_ERROR_TYPE_ACTION,
5047                                                   NULL,
5048                                                   "unsupported action MARK");
5049                 if (action_flags & MLX5_FLOW_ACTION_QUEUE)
5050                         return rte_flow_error_set(error, ENOTSUP,
5051                                                   RTE_FLOW_ERROR_TYPE_ACTION,
5052                                                   NULL,
5053                                                   "unsupported action QUEUE");
5054                 if (action_flags & MLX5_FLOW_ACTION_RSS)
5055                         return rte_flow_error_set(error, ENOTSUP,
5056                                                   RTE_FLOW_ERROR_TYPE_ACTION,
5057                                                   NULL,
5058                                                   "unsupported action RSS");
5059                 if (!(action_flags & MLX5_FLOW_FATE_ESWITCH_ACTIONS))
5060                         return rte_flow_error_set(error, EINVAL,
5061                                                   RTE_FLOW_ERROR_TYPE_ACTION,
5062                                                   actions,
5063                                                   "no fate action is found");
5064         } else {
5065                 if (!(action_flags & MLX5_FLOW_FATE_ACTIONS) && attr->ingress)
5066                         return rte_flow_error_set(error, EINVAL,
5067                                                   RTE_FLOW_ERROR_TYPE_ACTION,
5068                                                   actions,
5069                                                   "no fate action is found");
5070         }
5071         /* Continue validation for Xcap actions.*/
5072         if ((action_flags & MLX5_FLOW_XCAP_ACTIONS) && (queue_index == 0xFFFF ||
5073             mlx5_rxq_get_type(dev, queue_index) != MLX5_RXQ_TYPE_HAIRPIN)) {
5074                 if ((action_flags & MLX5_FLOW_XCAP_ACTIONS) ==
5075                     MLX5_FLOW_XCAP_ACTIONS)
5076                         return rte_flow_error_set(error, ENOTSUP,
5077                                                   RTE_FLOW_ERROR_TYPE_ACTION,
5078                                                   NULL, "encap and decap "
5079                                                   "combination aren't supported");
5080                 if (!attr->transfer && attr->ingress && (action_flags &
5081                                                         MLX5_FLOW_ACTION_ENCAP))
5082                         return rte_flow_error_set(error, ENOTSUP,
5083                                                   RTE_FLOW_ERROR_TYPE_ACTION,
5084                                                   NULL, "encap is not supported"
5085                                                   " for ingress traffic");
5086         }
5087         return 0;
5088 }
5089
5090 /**
5091  * Internal preparation function. Allocates the DV flow size,
5092  * this size is constant.
5093  *
5094  * @param[in] attr
5095  *   Pointer to the flow attributes.
5096  * @param[in] items
5097  *   Pointer to the list of items.
5098  * @param[in] actions
5099  *   Pointer to the list of actions.
5100  * @param[out] error
5101  *   Pointer to the error structure.
5102  *
5103  * @return
5104  *   Pointer to mlx5_flow object on success,
5105  *   otherwise NULL and rte_errno is set.
5106  */
5107 static struct mlx5_flow *
5108 flow_dv_prepare(const struct rte_flow_attr *attr __rte_unused,
5109                 const struct rte_flow_item items[] __rte_unused,
5110                 const struct rte_flow_action actions[] __rte_unused,
5111                 struct rte_flow_error *error)
5112 {
5113         size_t size = sizeof(struct mlx5_flow);
5114         struct mlx5_flow *dev_flow;
5115
5116         dev_flow = rte_calloc(__func__, 1, size, 0);
5117         if (!dev_flow) {
5118                 rte_flow_error_set(error, ENOMEM,
5119                                    RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
5120                                    "not enough memory to create flow");
5121                 return NULL;
5122         }
5123         dev_flow->dv.value.size = MLX5_ST_SZ_BYTES(fte_match_param);
5124         dev_flow->ingress = attr->ingress;
5125         dev_flow->transfer = attr->transfer;
5126         return dev_flow;
5127 }
5128
5129 #ifdef RTE_LIBRTE_MLX5_DEBUG
5130 /**
5131  * Sanity check for match mask and value. Similar to check_valid_spec() in
5132  * kernel driver. If unmasked bit is present in value, it returns failure.
5133  *
5134  * @param match_mask
5135  *   pointer to match mask buffer.
5136  * @param match_value
5137  *   pointer to match value buffer.
5138  *
5139  * @return
5140  *   0 if valid, -EINVAL otherwise.
5141  */
5142 static int
5143 flow_dv_check_valid_spec(void *match_mask, void *match_value)
5144 {
5145         uint8_t *m = match_mask;
5146         uint8_t *v = match_value;
5147         unsigned int i;
5148
5149         for (i = 0; i < MLX5_ST_SZ_BYTES(fte_match_param); ++i) {
5150                 if (v[i] & ~m[i]) {
5151                         DRV_LOG(ERR,
5152                                 "match_value differs from match_criteria"
5153                                 " %p[%u] != %p[%u]",
5154                                 match_value, i, match_mask, i);
5155                         return -EINVAL;
5156                 }
5157         }
5158         return 0;
5159 }
5160 #endif
5161
5162 /**
5163  * Add Ethernet item to matcher and to the value.
5164  *
5165  * @param[in, out] matcher
5166  *   Flow matcher.
5167  * @param[in, out] key
5168  *   Flow matcher value.
5169  * @param[in] item
5170  *   Flow pattern to translate.
5171  * @param[in] inner
5172  *   Item is inner pattern.
5173  */
5174 static void
5175 flow_dv_translate_item_eth(void *matcher, void *key,
5176                            const struct rte_flow_item *item, int inner)
5177 {
5178         const struct rte_flow_item_eth *eth_m = item->mask;
5179         const struct rte_flow_item_eth *eth_v = item->spec;
5180         const struct rte_flow_item_eth nic_mask = {
5181                 .dst.addr_bytes = "\xff\xff\xff\xff\xff\xff",
5182                 .src.addr_bytes = "\xff\xff\xff\xff\xff\xff",
5183                 .type = RTE_BE16(0xffff),
5184         };
5185         void *headers_m;
5186         void *headers_v;
5187         char *l24_v;
5188         unsigned int i;
5189
5190         if (!eth_v)
5191                 return;
5192         if (!eth_m)
5193                 eth_m = &nic_mask;
5194         if (inner) {
5195                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5196                                          inner_headers);
5197                 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
5198         } else {
5199                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5200                                          outer_headers);
5201                 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
5202         }
5203         memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_m, dmac_47_16),
5204                &eth_m->dst, sizeof(eth_m->dst));
5205         /* The value must be in the range of the mask. */
5206         l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v, dmac_47_16);
5207         for (i = 0; i < sizeof(eth_m->dst); ++i)
5208                 l24_v[i] = eth_m->dst.addr_bytes[i] & eth_v->dst.addr_bytes[i];
5209         memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_m, smac_47_16),
5210                &eth_m->src, sizeof(eth_m->src));
5211         l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v, smac_47_16);
5212         /* The value must be in the range of the mask. */
5213         for (i = 0; i < sizeof(eth_m->dst); ++i)
5214                 l24_v[i] = eth_m->src.addr_bytes[i] & eth_v->src.addr_bytes[i];
5215         MLX5_SET(fte_match_set_lyr_2_4, headers_m, ethertype,
5216                  rte_be_to_cpu_16(eth_m->type));
5217         l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v, ethertype);
5218         *(uint16_t *)(l24_v) = eth_m->type & eth_v->type;
5219 }
5220
5221 /**
5222  * Add VLAN item to matcher and to the value.
5223  *
5224  * @param[in, out] dev_flow
5225  *   Flow descriptor.
5226  * @param[in, out] matcher
5227  *   Flow matcher.
5228  * @param[in, out] key
5229  *   Flow matcher value.
5230  * @param[in] item
5231  *   Flow pattern to translate.
5232  * @param[in] inner
5233  *   Item is inner pattern.
5234  */
5235 static void
5236 flow_dv_translate_item_vlan(struct mlx5_flow *dev_flow,
5237                             void *matcher, void *key,
5238                             const struct rte_flow_item *item,
5239                             int inner)
5240 {
5241         const struct rte_flow_item_vlan *vlan_m = item->mask;
5242         const struct rte_flow_item_vlan *vlan_v = item->spec;
5243         void *headers_m;
5244         void *headers_v;
5245         uint16_t tci_m;
5246         uint16_t tci_v;
5247
5248         if (!vlan_v)
5249                 return;
5250         if (!vlan_m)
5251                 vlan_m = &rte_flow_item_vlan_mask;
5252         if (inner) {
5253                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5254                                          inner_headers);
5255                 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
5256         } else {
5257                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5258                                          outer_headers);
5259                 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
5260                 /*
5261                  * This is workaround, masks are not supported,
5262                  * and pre-validated.
5263                  */
5264                 dev_flow->dv.vf_vlan.tag =
5265                         rte_be_to_cpu_16(vlan_v->tci) & 0x0fff;
5266         }
5267         tci_m = rte_be_to_cpu_16(vlan_m->tci);
5268         tci_v = rte_be_to_cpu_16(vlan_m->tci & vlan_v->tci);
5269         MLX5_SET(fte_match_set_lyr_2_4, headers_m, cvlan_tag, 1);
5270         MLX5_SET(fte_match_set_lyr_2_4, headers_v, cvlan_tag, 1);
5271         MLX5_SET(fte_match_set_lyr_2_4, headers_m, first_vid, tci_m);
5272         MLX5_SET(fte_match_set_lyr_2_4, headers_v, first_vid, tci_v);
5273         MLX5_SET(fte_match_set_lyr_2_4, headers_m, first_cfi, tci_m >> 12);
5274         MLX5_SET(fte_match_set_lyr_2_4, headers_v, first_cfi, tci_v >> 12);
5275         MLX5_SET(fte_match_set_lyr_2_4, headers_m, first_prio, tci_m >> 13);
5276         MLX5_SET(fte_match_set_lyr_2_4, headers_v, first_prio, tci_v >> 13);
5277         MLX5_SET(fte_match_set_lyr_2_4, headers_m, ethertype,
5278                  rte_be_to_cpu_16(vlan_m->inner_type));
5279         MLX5_SET(fte_match_set_lyr_2_4, headers_v, ethertype,
5280                  rte_be_to_cpu_16(vlan_m->inner_type & vlan_v->inner_type));
5281 }
5282
5283 /**
5284  * Add IPV4 item to matcher and to the value.
5285  *
5286  * @param[in, out] matcher
5287  *   Flow matcher.
5288  * @param[in, out] key
5289  *   Flow matcher value.
5290  * @param[in] item
5291  *   Flow pattern to translate.
5292  * @param[in] inner
5293  *   Item is inner pattern.
5294  * @param[in] group
5295  *   The group to insert the rule.
5296  */
5297 static void
5298 flow_dv_translate_item_ipv4(void *matcher, void *key,
5299                             const struct rte_flow_item *item,
5300                             int inner, uint32_t group)
5301 {
5302         const struct rte_flow_item_ipv4 *ipv4_m = item->mask;
5303         const struct rte_flow_item_ipv4 *ipv4_v = item->spec;
5304         const struct rte_flow_item_ipv4 nic_mask = {
5305                 .hdr = {
5306                         .src_addr = RTE_BE32(0xffffffff),
5307                         .dst_addr = RTE_BE32(0xffffffff),
5308                         .type_of_service = 0xff,
5309                         .next_proto_id = 0xff,
5310                 },
5311         };
5312         void *headers_m;
5313         void *headers_v;
5314         char *l24_m;
5315         char *l24_v;
5316         uint8_t tos;
5317
5318         if (inner) {
5319                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5320                                          inner_headers);
5321                 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
5322         } else {
5323                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5324                                          outer_headers);
5325                 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
5326         }
5327         if (group == 0)
5328                 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_version, 0xf);
5329         else
5330                 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_version, 0x4);
5331         MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_version, 4);
5332         if (!ipv4_v)
5333                 return;
5334         if (!ipv4_m)
5335                 ipv4_m = &nic_mask;
5336         l24_m = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_m,
5337                              dst_ipv4_dst_ipv6.ipv4_layout.ipv4);
5338         l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
5339                              dst_ipv4_dst_ipv6.ipv4_layout.ipv4);
5340         *(uint32_t *)l24_m = ipv4_m->hdr.dst_addr;
5341         *(uint32_t *)l24_v = ipv4_m->hdr.dst_addr & ipv4_v->hdr.dst_addr;
5342         l24_m = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_m,
5343                           src_ipv4_src_ipv6.ipv4_layout.ipv4);
5344         l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
5345                           src_ipv4_src_ipv6.ipv4_layout.ipv4);
5346         *(uint32_t *)l24_m = ipv4_m->hdr.src_addr;
5347         *(uint32_t *)l24_v = ipv4_m->hdr.src_addr & ipv4_v->hdr.src_addr;
5348         tos = ipv4_m->hdr.type_of_service & ipv4_v->hdr.type_of_service;
5349         MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_ecn,
5350                  ipv4_m->hdr.type_of_service);
5351         MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_ecn, tos);
5352         MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_dscp,
5353                  ipv4_m->hdr.type_of_service >> 2);
5354         MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_dscp, tos >> 2);
5355         MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_protocol,
5356                  ipv4_m->hdr.next_proto_id);
5357         MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol,
5358                  ipv4_v->hdr.next_proto_id & ipv4_m->hdr.next_proto_id);
5359 }
5360
5361 /**
5362  * Add IPV6 item to matcher and to the value.
5363  *
5364  * @param[in, out] matcher
5365  *   Flow matcher.
5366  * @param[in, out] key
5367  *   Flow matcher value.
5368  * @param[in] item
5369  *   Flow pattern to translate.
5370  * @param[in] inner
5371  *   Item is inner pattern.
5372  * @param[in] group
5373  *   The group to insert the rule.
5374  */
5375 static void
5376 flow_dv_translate_item_ipv6(void *matcher, void *key,
5377                             const struct rte_flow_item *item,
5378                             int inner, uint32_t group)
5379 {
5380         const struct rte_flow_item_ipv6 *ipv6_m = item->mask;
5381         const struct rte_flow_item_ipv6 *ipv6_v = item->spec;
5382         const struct rte_flow_item_ipv6 nic_mask = {
5383                 .hdr = {
5384                         .src_addr =
5385                                 "\xff\xff\xff\xff\xff\xff\xff\xff"
5386                                 "\xff\xff\xff\xff\xff\xff\xff\xff",
5387                         .dst_addr =
5388                                 "\xff\xff\xff\xff\xff\xff\xff\xff"
5389                                 "\xff\xff\xff\xff\xff\xff\xff\xff",
5390                         .vtc_flow = RTE_BE32(0xffffffff),
5391                         .proto = 0xff,
5392                         .hop_limits = 0xff,
5393                 },
5394         };
5395         void *headers_m;
5396         void *headers_v;
5397         void *misc_m = MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters);
5398         void *misc_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters);
5399         char *l24_m;
5400         char *l24_v;
5401         uint32_t vtc_m;
5402         uint32_t vtc_v;
5403         int i;
5404         int size;
5405
5406         if (inner) {
5407                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5408                                          inner_headers);
5409                 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
5410         } else {
5411                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5412                                          outer_headers);
5413                 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
5414         }
5415         if (group == 0)
5416                 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_version, 0xf);
5417         else
5418                 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_version, 0x6);
5419         MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_version, 6);
5420         if (!ipv6_v)
5421                 return;
5422         if (!ipv6_m)
5423                 ipv6_m = &nic_mask;
5424         size = sizeof(ipv6_m->hdr.dst_addr);
5425         l24_m = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_m,
5426                              dst_ipv4_dst_ipv6.ipv6_layout.ipv6);
5427         l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
5428                              dst_ipv4_dst_ipv6.ipv6_layout.ipv6);
5429         memcpy(l24_m, ipv6_m->hdr.dst_addr, size);
5430         for (i = 0; i < size; ++i)
5431                 l24_v[i] = l24_m[i] & ipv6_v->hdr.dst_addr[i];
5432         l24_m = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_m,
5433                              src_ipv4_src_ipv6.ipv6_layout.ipv6);
5434         l24_v = MLX5_ADDR_OF(fte_match_set_lyr_2_4, headers_v,
5435                              src_ipv4_src_ipv6.ipv6_layout.ipv6);
5436         memcpy(l24_m, ipv6_m->hdr.src_addr, size);
5437         for (i = 0; i < size; ++i)
5438                 l24_v[i] = l24_m[i] & ipv6_v->hdr.src_addr[i];
5439         /* TOS. */
5440         vtc_m = rte_be_to_cpu_32(ipv6_m->hdr.vtc_flow);
5441         vtc_v = rte_be_to_cpu_32(ipv6_m->hdr.vtc_flow & ipv6_v->hdr.vtc_flow);
5442         MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_ecn, vtc_m >> 20);
5443         MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_ecn, vtc_v >> 20);
5444         MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_dscp, vtc_m >> 22);
5445         MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_dscp, vtc_v >> 22);
5446         /* Label. */
5447         if (inner) {
5448                 MLX5_SET(fte_match_set_misc, misc_m, inner_ipv6_flow_label,
5449                          vtc_m);
5450                 MLX5_SET(fte_match_set_misc, misc_v, inner_ipv6_flow_label,
5451                          vtc_v);
5452         } else {
5453                 MLX5_SET(fte_match_set_misc, misc_m, outer_ipv6_flow_label,
5454                          vtc_m);
5455                 MLX5_SET(fte_match_set_misc, misc_v, outer_ipv6_flow_label,
5456                          vtc_v);
5457         }
5458         /* Protocol. */
5459         MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_protocol,
5460                  ipv6_m->hdr.proto);
5461         MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol,
5462                  ipv6_v->hdr.proto & ipv6_m->hdr.proto);
5463 }
5464
5465 /**
5466  * Add TCP item to matcher and to the value.
5467  *
5468  * @param[in, out] matcher
5469  *   Flow matcher.
5470  * @param[in, out] key
5471  *   Flow matcher value.
5472  * @param[in] item
5473  *   Flow pattern to translate.
5474  * @param[in] inner
5475  *   Item is inner pattern.
5476  */
5477 static void
5478 flow_dv_translate_item_tcp(void *matcher, void *key,
5479                            const struct rte_flow_item *item,
5480                            int inner)
5481 {
5482         const struct rte_flow_item_tcp *tcp_m = item->mask;
5483         const struct rte_flow_item_tcp *tcp_v = item->spec;
5484         void *headers_m;
5485         void *headers_v;
5486
5487         if (inner) {
5488                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5489                                          inner_headers);
5490                 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
5491         } else {
5492                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5493                                          outer_headers);
5494                 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
5495         }
5496         MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_protocol, 0xff);
5497         MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol, IPPROTO_TCP);
5498         if (!tcp_v)
5499                 return;
5500         if (!tcp_m)
5501                 tcp_m = &rte_flow_item_tcp_mask;
5502         MLX5_SET(fte_match_set_lyr_2_4, headers_m, tcp_sport,
5503                  rte_be_to_cpu_16(tcp_m->hdr.src_port));
5504         MLX5_SET(fte_match_set_lyr_2_4, headers_v, tcp_sport,
5505                  rte_be_to_cpu_16(tcp_v->hdr.src_port & tcp_m->hdr.src_port));
5506         MLX5_SET(fte_match_set_lyr_2_4, headers_m, tcp_dport,
5507                  rte_be_to_cpu_16(tcp_m->hdr.dst_port));
5508         MLX5_SET(fte_match_set_lyr_2_4, headers_v, tcp_dport,
5509                  rte_be_to_cpu_16(tcp_v->hdr.dst_port & tcp_m->hdr.dst_port));
5510         MLX5_SET(fte_match_set_lyr_2_4, headers_m, tcp_flags,
5511                  tcp_m->hdr.tcp_flags);
5512         MLX5_SET(fte_match_set_lyr_2_4, headers_v, tcp_flags,
5513                  (tcp_v->hdr.tcp_flags & tcp_m->hdr.tcp_flags));
5514 }
5515
5516 /**
5517  * Add UDP item to matcher and to the value.
5518  *
5519  * @param[in, out] matcher
5520  *   Flow matcher.
5521  * @param[in, out] key
5522  *   Flow matcher value.
5523  * @param[in] item
5524  *   Flow pattern to translate.
5525  * @param[in] inner
5526  *   Item is inner pattern.
5527  */
5528 static void
5529 flow_dv_translate_item_udp(void *matcher, void *key,
5530                            const struct rte_flow_item *item,
5531                            int inner)
5532 {
5533         const struct rte_flow_item_udp *udp_m = item->mask;
5534         const struct rte_flow_item_udp *udp_v = item->spec;
5535         void *headers_m;
5536         void *headers_v;
5537
5538         if (inner) {
5539                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5540                                          inner_headers);
5541                 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
5542         } else {
5543                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5544                                          outer_headers);
5545                 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
5546         }
5547         MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_protocol, 0xff);
5548         MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol, IPPROTO_UDP);
5549         if (!udp_v)
5550                 return;
5551         if (!udp_m)
5552                 udp_m = &rte_flow_item_udp_mask;
5553         MLX5_SET(fte_match_set_lyr_2_4, headers_m, udp_sport,
5554                  rte_be_to_cpu_16(udp_m->hdr.src_port));
5555         MLX5_SET(fte_match_set_lyr_2_4, headers_v, udp_sport,
5556                  rte_be_to_cpu_16(udp_v->hdr.src_port & udp_m->hdr.src_port));
5557         MLX5_SET(fte_match_set_lyr_2_4, headers_m, udp_dport,
5558                  rte_be_to_cpu_16(udp_m->hdr.dst_port));
5559         MLX5_SET(fte_match_set_lyr_2_4, headers_v, udp_dport,
5560                  rte_be_to_cpu_16(udp_v->hdr.dst_port & udp_m->hdr.dst_port));
5561 }
5562
5563 /**
5564  * Add GRE optional Key item to matcher and to the value.
5565  *
5566  * @param[in, out] matcher
5567  *   Flow matcher.
5568  * @param[in, out] key
5569  *   Flow matcher value.
5570  * @param[in] item
5571  *   Flow pattern to translate.
5572  * @param[in] inner
5573  *   Item is inner pattern.
5574  */
5575 static void
5576 flow_dv_translate_item_gre_key(void *matcher, void *key,
5577                                    const struct rte_flow_item *item)
5578 {
5579         const rte_be32_t *key_m = item->mask;
5580         const rte_be32_t *key_v = item->spec;
5581         void *misc_m = MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters);
5582         void *misc_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters);
5583         rte_be32_t gre_key_default_mask = RTE_BE32(UINT32_MAX);
5584
5585         if (!key_v)
5586                 return;
5587         if (!key_m)
5588                 key_m = &gre_key_default_mask;
5589         /* GRE K bit must be on and should already be validated */
5590         MLX5_SET(fte_match_set_misc, misc_m, gre_k_present, 1);
5591         MLX5_SET(fte_match_set_misc, misc_v, gre_k_present, 1);
5592         MLX5_SET(fte_match_set_misc, misc_m, gre_key_h,
5593                  rte_be_to_cpu_32(*key_m) >> 8);
5594         MLX5_SET(fte_match_set_misc, misc_v, gre_key_h,
5595                  rte_be_to_cpu_32((*key_v) & (*key_m)) >> 8);
5596         MLX5_SET(fte_match_set_misc, misc_m, gre_key_l,
5597                  rte_be_to_cpu_32(*key_m) & 0xFF);
5598         MLX5_SET(fte_match_set_misc, misc_v, gre_key_l,
5599                  rte_be_to_cpu_32((*key_v) & (*key_m)) & 0xFF);
5600 }
5601
5602 /**
5603  * Add GRE item to matcher and to the value.
5604  *
5605  * @param[in, out] matcher
5606  *   Flow matcher.
5607  * @param[in, out] key
5608  *   Flow matcher value.
5609  * @param[in] item
5610  *   Flow pattern to translate.
5611  * @param[in] inner
5612  *   Item is inner pattern.
5613  */
5614 static void
5615 flow_dv_translate_item_gre(void *matcher, void *key,
5616                            const struct rte_flow_item *item,
5617                            int inner)
5618 {
5619         const struct rte_flow_item_gre *gre_m = item->mask;
5620         const struct rte_flow_item_gre *gre_v = item->spec;
5621         void *headers_m;
5622         void *headers_v;
5623         void *misc_m = MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters);
5624         void *misc_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters);
5625         struct {
5626                 union {
5627                         __extension__
5628                         struct {
5629                                 uint16_t version:3;
5630                                 uint16_t rsvd0:9;
5631                                 uint16_t s_present:1;
5632                                 uint16_t k_present:1;
5633                                 uint16_t rsvd_bit1:1;
5634                                 uint16_t c_present:1;
5635                         };
5636                         uint16_t value;
5637                 };
5638         } gre_crks_rsvd0_ver_m, gre_crks_rsvd0_ver_v;
5639
5640         if (inner) {
5641                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5642                                          inner_headers);
5643                 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
5644         } else {
5645                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5646                                          outer_headers);
5647                 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
5648         }
5649         MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_protocol, 0xff);
5650         MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol, IPPROTO_GRE);
5651         if (!gre_v)
5652                 return;
5653         if (!gre_m)
5654                 gre_m = &rte_flow_item_gre_mask;
5655         MLX5_SET(fte_match_set_misc, misc_m, gre_protocol,
5656                  rte_be_to_cpu_16(gre_m->protocol));
5657         MLX5_SET(fte_match_set_misc, misc_v, gre_protocol,
5658                  rte_be_to_cpu_16(gre_v->protocol & gre_m->protocol));
5659         gre_crks_rsvd0_ver_m.value = rte_be_to_cpu_16(gre_m->c_rsvd0_ver);
5660         gre_crks_rsvd0_ver_v.value = rte_be_to_cpu_16(gre_v->c_rsvd0_ver);
5661         MLX5_SET(fte_match_set_misc, misc_m, gre_c_present,
5662                  gre_crks_rsvd0_ver_m.c_present);
5663         MLX5_SET(fte_match_set_misc, misc_v, gre_c_present,
5664                  gre_crks_rsvd0_ver_v.c_present &
5665                  gre_crks_rsvd0_ver_m.c_present);
5666         MLX5_SET(fte_match_set_misc, misc_m, gre_k_present,
5667                  gre_crks_rsvd0_ver_m.k_present);
5668         MLX5_SET(fte_match_set_misc, misc_v, gre_k_present,
5669                  gre_crks_rsvd0_ver_v.k_present &
5670                  gre_crks_rsvd0_ver_m.k_present);
5671         MLX5_SET(fte_match_set_misc, misc_m, gre_s_present,
5672                  gre_crks_rsvd0_ver_m.s_present);
5673         MLX5_SET(fte_match_set_misc, misc_v, gre_s_present,
5674                  gre_crks_rsvd0_ver_v.s_present &
5675                  gre_crks_rsvd0_ver_m.s_present);
5676 }
5677
5678 /**
5679  * Add NVGRE item to matcher and to the value.
5680  *
5681  * @param[in, out] matcher
5682  *   Flow matcher.
5683  * @param[in, out] key
5684  *   Flow matcher value.
5685  * @param[in] item
5686  *   Flow pattern to translate.
5687  * @param[in] inner
5688  *   Item is inner pattern.
5689  */
5690 static void
5691 flow_dv_translate_item_nvgre(void *matcher, void *key,
5692                              const struct rte_flow_item *item,
5693                              int inner)
5694 {
5695         const struct rte_flow_item_nvgre *nvgre_m = item->mask;
5696         const struct rte_flow_item_nvgre *nvgre_v = item->spec;
5697         void *misc_m = MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters);
5698         void *misc_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters);
5699         const char *tni_flow_id_m = (const char *)nvgre_m->tni;
5700         const char *tni_flow_id_v = (const char *)nvgre_v->tni;
5701         char *gre_key_m;
5702         char *gre_key_v;
5703         int size;
5704         int i;
5705
5706         /* For NVGRE, GRE header fields must be set with defined values. */
5707         const struct rte_flow_item_gre gre_spec = {
5708                 .c_rsvd0_ver = RTE_BE16(0x2000),
5709                 .protocol = RTE_BE16(RTE_ETHER_TYPE_TEB)
5710         };
5711         const struct rte_flow_item_gre gre_mask = {
5712                 .c_rsvd0_ver = RTE_BE16(0xB000),
5713                 .protocol = RTE_BE16(UINT16_MAX),
5714         };
5715         const struct rte_flow_item gre_item = {
5716                 .spec = &gre_spec,
5717                 .mask = &gre_mask,
5718                 .last = NULL,
5719         };
5720         flow_dv_translate_item_gre(matcher, key, &gre_item, inner);
5721         if (!nvgre_v)
5722                 return;
5723         if (!nvgre_m)
5724                 nvgre_m = &rte_flow_item_nvgre_mask;
5725         size = sizeof(nvgre_m->tni) + sizeof(nvgre_m->flow_id);
5726         gre_key_m = MLX5_ADDR_OF(fte_match_set_misc, misc_m, gre_key_h);
5727         gre_key_v = MLX5_ADDR_OF(fte_match_set_misc, misc_v, gre_key_h);
5728         memcpy(gre_key_m, tni_flow_id_m, size);
5729         for (i = 0; i < size; ++i)
5730                 gre_key_v[i] = gre_key_m[i] & tni_flow_id_v[i];
5731 }
5732
5733 /**
5734  * Add VXLAN item to matcher and to the value.
5735  *
5736  * @param[in, out] matcher
5737  *   Flow matcher.
5738  * @param[in, out] key
5739  *   Flow matcher value.
5740  * @param[in] item
5741  *   Flow pattern to translate.
5742  * @param[in] inner
5743  *   Item is inner pattern.
5744  */
5745 static void
5746 flow_dv_translate_item_vxlan(void *matcher, void *key,
5747                              const struct rte_flow_item *item,
5748                              int inner)
5749 {
5750         const struct rte_flow_item_vxlan *vxlan_m = item->mask;
5751         const struct rte_flow_item_vxlan *vxlan_v = item->spec;
5752         void *headers_m;
5753         void *headers_v;
5754         void *misc_m = MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters);
5755         void *misc_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters);
5756         char *vni_m;
5757         char *vni_v;
5758         uint16_t dport;
5759         int size;
5760         int i;
5761
5762         if (inner) {
5763                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5764                                          inner_headers);
5765                 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
5766         } else {
5767                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5768                                          outer_headers);
5769                 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
5770         }
5771         dport = item->type == RTE_FLOW_ITEM_TYPE_VXLAN ?
5772                 MLX5_UDP_PORT_VXLAN : MLX5_UDP_PORT_VXLAN_GPE;
5773         if (!MLX5_GET16(fte_match_set_lyr_2_4, headers_v, udp_dport)) {
5774                 MLX5_SET(fte_match_set_lyr_2_4, headers_m, udp_dport, 0xFFFF);
5775                 MLX5_SET(fte_match_set_lyr_2_4, headers_v, udp_dport, dport);
5776         }
5777         if (!vxlan_v)
5778                 return;
5779         if (!vxlan_m)
5780                 vxlan_m = &rte_flow_item_vxlan_mask;
5781         size = sizeof(vxlan_m->vni);
5782         vni_m = MLX5_ADDR_OF(fte_match_set_misc, misc_m, vxlan_vni);
5783         vni_v = MLX5_ADDR_OF(fte_match_set_misc, misc_v, vxlan_vni);
5784         memcpy(vni_m, vxlan_m->vni, size);
5785         for (i = 0; i < size; ++i)
5786                 vni_v[i] = vni_m[i] & vxlan_v->vni[i];
5787 }
5788
5789 /**
5790  * Add VXLAN-GPE item to matcher and to the value.
5791  *
5792  * @param[in, out] matcher
5793  *   Flow matcher.
5794  * @param[in, out] key
5795  *   Flow matcher value.
5796  * @param[in] item
5797  *   Flow pattern to translate.
5798  * @param[in] inner
5799  *   Item is inner pattern.
5800  */
5801
5802 static void
5803 flow_dv_translate_item_vxlan_gpe(void *matcher, void *key,
5804                                  const struct rte_flow_item *item, int inner)
5805 {
5806         const struct rte_flow_item_vxlan_gpe *vxlan_m = item->mask;
5807         const struct rte_flow_item_vxlan_gpe *vxlan_v = item->spec;
5808         void *headers_m;
5809         void *headers_v;
5810         void *misc_m =
5811                 MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters_3);
5812         void *misc_v =
5813                 MLX5_ADDR_OF(fte_match_param, key, misc_parameters_3);
5814         char *vni_m;
5815         char *vni_v;
5816         uint16_t dport;
5817         int size;
5818         int i;
5819         uint8_t flags_m = 0xff;
5820         uint8_t flags_v = 0xc;
5821
5822         if (inner) {
5823                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5824                                          inner_headers);
5825                 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
5826         } else {
5827                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5828                                          outer_headers);
5829                 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
5830         }
5831         dport = item->type == RTE_FLOW_ITEM_TYPE_VXLAN ?
5832                 MLX5_UDP_PORT_VXLAN : MLX5_UDP_PORT_VXLAN_GPE;
5833         if (!MLX5_GET16(fte_match_set_lyr_2_4, headers_v, udp_dport)) {
5834                 MLX5_SET(fte_match_set_lyr_2_4, headers_m, udp_dport, 0xFFFF);
5835                 MLX5_SET(fte_match_set_lyr_2_4, headers_v, udp_dport, dport);
5836         }
5837         if (!vxlan_v)
5838                 return;
5839         if (!vxlan_m)
5840                 vxlan_m = &rte_flow_item_vxlan_gpe_mask;
5841         size = sizeof(vxlan_m->vni);
5842         vni_m = MLX5_ADDR_OF(fte_match_set_misc3, misc_m, outer_vxlan_gpe_vni);
5843         vni_v = MLX5_ADDR_OF(fte_match_set_misc3, misc_v, outer_vxlan_gpe_vni);
5844         memcpy(vni_m, vxlan_m->vni, size);
5845         for (i = 0; i < size; ++i)
5846                 vni_v[i] = vni_m[i] & vxlan_v->vni[i];
5847         if (vxlan_m->flags) {
5848                 flags_m = vxlan_m->flags;
5849                 flags_v = vxlan_v->flags;
5850         }
5851         MLX5_SET(fte_match_set_misc3, misc_m, outer_vxlan_gpe_flags, flags_m);
5852         MLX5_SET(fte_match_set_misc3, misc_v, outer_vxlan_gpe_flags, flags_v);
5853         MLX5_SET(fte_match_set_misc3, misc_m, outer_vxlan_gpe_next_protocol,
5854                  vxlan_m->protocol);
5855         MLX5_SET(fte_match_set_misc3, misc_v, outer_vxlan_gpe_next_protocol,
5856                  vxlan_v->protocol);
5857 }
5858
5859 /**
5860  * Add Geneve item to matcher and to the value.
5861  *
5862  * @param[in, out] matcher
5863  *   Flow matcher.
5864  * @param[in, out] key
5865  *   Flow matcher value.
5866  * @param[in] item
5867  *   Flow pattern to translate.
5868  * @param[in] inner
5869  *   Item is inner pattern.
5870  */
5871
5872 static void
5873 flow_dv_translate_item_geneve(void *matcher, void *key,
5874                               const struct rte_flow_item *item, int inner)
5875 {
5876         const struct rte_flow_item_geneve *geneve_m = item->mask;
5877         const struct rte_flow_item_geneve *geneve_v = item->spec;
5878         void *headers_m;
5879         void *headers_v;
5880         void *misc_m = MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters);
5881         void *misc_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters);
5882         uint16_t dport;
5883         uint16_t gbhdr_m;
5884         uint16_t gbhdr_v;
5885         char *vni_m;
5886         char *vni_v;
5887         size_t size, i;
5888
5889         if (inner) {
5890                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5891                                          inner_headers);
5892                 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
5893         } else {
5894                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
5895                                          outer_headers);
5896                 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
5897         }
5898         dport = MLX5_UDP_PORT_GENEVE;
5899         if (!MLX5_GET16(fte_match_set_lyr_2_4, headers_v, udp_dport)) {
5900                 MLX5_SET(fte_match_set_lyr_2_4, headers_m, udp_dport, 0xFFFF);
5901                 MLX5_SET(fte_match_set_lyr_2_4, headers_v, udp_dport, dport);
5902         }
5903         if (!geneve_v)
5904                 return;
5905         if (!geneve_m)
5906                 geneve_m = &rte_flow_item_geneve_mask;
5907         size = sizeof(geneve_m->vni);
5908         vni_m = MLX5_ADDR_OF(fte_match_set_misc, misc_m, geneve_vni);
5909         vni_v = MLX5_ADDR_OF(fte_match_set_misc, misc_v, geneve_vni);
5910         memcpy(vni_m, geneve_m->vni, size);
5911         for (i = 0; i < size; ++i)
5912                 vni_v[i] = vni_m[i] & geneve_v->vni[i];
5913         MLX5_SET(fte_match_set_misc, misc_m, geneve_protocol_type,
5914                  rte_be_to_cpu_16(geneve_m->protocol));
5915         MLX5_SET(fte_match_set_misc, misc_v, geneve_protocol_type,
5916                  rte_be_to_cpu_16(geneve_v->protocol & geneve_m->protocol));
5917         gbhdr_m = rte_be_to_cpu_16(geneve_m->ver_opt_len_o_c_rsvd0);
5918         gbhdr_v = rte_be_to_cpu_16(geneve_v->ver_opt_len_o_c_rsvd0);
5919         MLX5_SET(fte_match_set_misc, misc_m, geneve_oam,
5920                  MLX5_GENEVE_OAMF_VAL(gbhdr_m));
5921         MLX5_SET(fte_match_set_misc, misc_v, geneve_oam,
5922                  MLX5_GENEVE_OAMF_VAL(gbhdr_v) & MLX5_GENEVE_OAMF_VAL(gbhdr_m));
5923         MLX5_SET(fte_match_set_misc, misc_m, geneve_opt_len,
5924                  MLX5_GENEVE_OPTLEN_VAL(gbhdr_m));
5925         MLX5_SET(fte_match_set_misc, misc_v, geneve_opt_len,
5926                  MLX5_GENEVE_OPTLEN_VAL(gbhdr_v) &
5927                  MLX5_GENEVE_OPTLEN_VAL(gbhdr_m));
5928 }
5929
5930 /**
5931  * Add MPLS item to matcher and to the value.
5932  *
5933  * @param[in, out] matcher
5934  *   Flow matcher.
5935  * @param[in, out] key
5936  *   Flow matcher value.
5937  * @param[in] item
5938  *   Flow pattern to translate.
5939  * @param[in] prev_layer
5940  *   The protocol layer indicated in previous item.
5941  * @param[in] inner
5942  *   Item is inner pattern.
5943  */
5944 static void
5945 flow_dv_translate_item_mpls(void *matcher, void *key,
5946                             const struct rte_flow_item *item,
5947                             uint64_t prev_layer,
5948                             int inner)
5949 {
5950         const uint32_t *in_mpls_m = item->mask;
5951         const uint32_t *in_mpls_v = item->spec;
5952         uint32_t *out_mpls_m = 0;
5953         uint32_t *out_mpls_v = 0;
5954         void *misc_m = MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters);
5955         void *misc_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters);
5956         void *misc2_m = MLX5_ADDR_OF(fte_match_param, matcher,
5957                                      misc_parameters_2);
5958         void *misc2_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters_2);
5959         void *headers_m = MLX5_ADDR_OF(fte_match_param, matcher, outer_headers);
5960         void *headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
5961
5962         switch (prev_layer) {
5963         case MLX5_FLOW_LAYER_OUTER_L4_UDP:
5964                 MLX5_SET(fte_match_set_lyr_2_4, headers_m, udp_dport, 0xffff);
5965                 MLX5_SET(fte_match_set_lyr_2_4, headers_v, udp_dport,
5966                          MLX5_UDP_PORT_MPLS);
5967                 break;
5968         case MLX5_FLOW_LAYER_GRE:
5969                 MLX5_SET(fte_match_set_misc, misc_m, gre_protocol, 0xffff);
5970                 MLX5_SET(fte_match_set_misc, misc_v, gre_protocol,
5971                          RTE_ETHER_TYPE_MPLS);
5972                 break;
5973         default:
5974                 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_protocol, 0xff);
5975                 MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol,
5976                          IPPROTO_MPLS);
5977                 break;
5978         }
5979         if (!in_mpls_v)
5980                 return;
5981         if (!in_mpls_m)
5982                 in_mpls_m = (const uint32_t *)&rte_flow_item_mpls_mask;
5983         switch (prev_layer) {
5984         case MLX5_FLOW_LAYER_OUTER_L4_UDP:
5985                 out_mpls_m =
5986                         (uint32_t *)MLX5_ADDR_OF(fte_match_set_misc2, misc2_m,
5987                                                  outer_first_mpls_over_udp);
5988                 out_mpls_v =
5989                         (uint32_t *)MLX5_ADDR_OF(fte_match_set_misc2, misc2_v,
5990                                                  outer_first_mpls_over_udp);
5991                 break;
5992         case MLX5_FLOW_LAYER_GRE:
5993                 out_mpls_m =
5994                         (uint32_t *)MLX5_ADDR_OF(fte_match_set_misc2, misc2_m,
5995                                                  outer_first_mpls_over_gre);
5996                 out_mpls_v =
5997                         (uint32_t *)MLX5_ADDR_OF(fte_match_set_misc2, misc2_v,
5998                                                  outer_first_mpls_over_gre);
5999                 break;
6000         default:
6001                 /* Inner MPLS not over GRE is not supported. */
6002                 if (!inner) {
6003                         out_mpls_m =
6004                                 (uint32_t *)MLX5_ADDR_OF(fte_match_set_misc2,
6005                                                          misc2_m,
6006                                                          outer_first_mpls);
6007                         out_mpls_v =
6008                                 (uint32_t *)MLX5_ADDR_OF(fte_match_set_misc2,
6009                                                          misc2_v,
6010                                                          outer_first_mpls);
6011                 }
6012                 break;
6013         }
6014         if (out_mpls_m && out_mpls_v) {
6015                 *out_mpls_m = *in_mpls_m;
6016                 *out_mpls_v = *in_mpls_v & *in_mpls_m;
6017         }
6018 }
6019
6020 /**
6021  * Add metadata register item to matcher
6022  *
6023  * @param[in, out] matcher
6024  *   Flow matcher.
6025  * @param[in, out] key
6026  *   Flow matcher value.
6027  * @param[in] reg_type
6028  *   Type of device metadata register
6029  * @param[in] value
6030  *   Register value
6031  * @param[in] mask
6032  *   Register mask
6033  */
6034 static void
6035 flow_dv_match_meta_reg(void *matcher, void *key,
6036                        enum modify_reg reg_type,
6037                        uint32_t data, uint32_t mask)
6038 {
6039         void *misc2_m =
6040                 MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters_2);
6041         void *misc2_v =
6042                 MLX5_ADDR_OF(fte_match_param, key, misc_parameters_2);
6043         uint32_t temp;
6044
6045         data &= mask;
6046         switch (reg_type) {
6047         case REG_A:
6048                 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_a, mask);
6049                 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_a, data);
6050                 break;
6051         case REG_B:
6052                 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_b, mask);
6053                 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_b, data);
6054                 break;
6055         case REG_C_0:
6056                 /*
6057                  * The metadata register C0 field might be divided into
6058                  * source vport index and META item value, we should set
6059                  * this field according to specified mask, not as whole one.
6060                  */
6061                 temp = MLX5_GET(fte_match_set_misc2, misc2_m, metadata_reg_c_0);
6062                 temp |= mask;
6063                 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_c_0, temp);
6064                 temp = MLX5_GET(fte_match_set_misc2, misc2_v, metadata_reg_c_0);
6065                 temp &= ~mask;
6066                 temp |= data;
6067                 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_c_0, temp);
6068                 break;
6069         case REG_C_1:
6070                 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_c_1, mask);
6071                 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_c_1, data);
6072                 break;
6073         case REG_C_2:
6074                 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_c_2, mask);
6075                 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_c_2, data);
6076                 break;
6077         case REG_C_3:
6078                 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_c_3, mask);
6079                 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_c_3, data);
6080                 break;
6081         case REG_C_4:
6082                 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_c_4, mask);
6083                 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_c_4, data);
6084                 break;
6085         case REG_C_5:
6086                 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_c_5, mask);
6087                 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_c_5, data);
6088                 break;
6089         case REG_C_6:
6090                 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_c_6, mask);
6091                 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_c_6, data);
6092                 break;
6093         case REG_C_7:
6094                 MLX5_SET(fte_match_set_misc2, misc2_m, metadata_reg_c_7, mask);
6095                 MLX5_SET(fte_match_set_misc2, misc2_v, metadata_reg_c_7, data);
6096                 break;
6097         default:
6098                 MLX5_ASSERT(false);
6099                 break;
6100         }
6101 }
6102
6103 /**
6104  * Add MARK item to matcher
6105  *
6106  * @param[in] dev
6107  *   The device to configure through.
6108  * @param[in, out] matcher
6109  *   Flow matcher.
6110  * @param[in, out] key
6111  *   Flow matcher value.
6112  * @param[in] item
6113  *   Flow pattern to translate.
6114  */
6115 static void
6116 flow_dv_translate_item_mark(struct rte_eth_dev *dev,
6117                             void *matcher, void *key,
6118                             const struct rte_flow_item *item)
6119 {
6120         struct mlx5_priv *priv = dev->data->dev_private;
6121         const struct rte_flow_item_mark *mark;
6122         uint32_t value;
6123         uint32_t mask;
6124
6125         mark = item->mask ? (const void *)item->mask :
6126                             &rte_flow_item_mark_mask;
6127         mask = mark->id & priv->sh->dv_mark_mask;
6128         mark = (const void *)item->spec;
6129         MLX5_ASSERT(mark);
6130         value = mark->id & priv->sh->dv_mark_mask & mask;
6131         if (mask) {
6132                 enum modify_reg reg;
6133
6134                 /* Get the metadata register index for the mark. */
6135                 reg = mlx5_flow_get_reg_id(dev, MLX5_FLOW_MARK, 0, NULL);
6136                 MLX5_ASSERT(reg > 0);
6137                 if (reg == REG_C_0) {
6138                         struct mlx5_priv *priv = dev->data->dev_private;
6139                         uint32_t msk_c0 = priv->sh->dv_regc0_mask;
6140                         uint32_t shl_c0 = rte_bsf32(msk_c0);
6141
6142                         mask &= msk_c0;
6143                         mask <<= shl_c0;
6144                         value <<= shl_c0;
6145                 }
6146                 flow_dv_match_meta_reg(matcher, key, reg, value, mask);
6147         }
6148 }
6149
6150 /**
6151  * Add META item to matcher
6152  *
6153  * @param[in] dev
6154  *   The devich to configure through.
6155  * @param[in, out] matcher
6156  *   Flow matcher.
6157  * @param[in, out] key
6158  *   Flow matcher value.
6159  * @param[in] attr
6160  *   Attributes of flow that includes this item.
6161  * @param[in] item
6162  *   Flow pattern to translate.
6163  */
6164 static void
6165 flow_dv_translate_item_meta(struct rte_eth_dev *dev,
6166                             void *matcher, void *key,
6167                             const struct rte_flow_attr *attr,
6168                             const struct rte_flow_item *item)
6169 {
6170         const struct rte_flow_item_meta *meta_m;
6171         const struct rte_flow_item_meta *meta_v;
6172
6173         meta_m = (const void *)item->mask;
6174         if (!meta_m)
6175                 meta_m = &rte_flow_item_meta_mask;
6176         meta_v = (const void *)item->spec;
6177         if (meta_v) {
6178                 int reg;
6179                 uint32_t value = meta_v->data;
6180                 uint32_t mask = meta_m->data;
6181
6182                 reg = flow_dv_get_metadata_reg(dev, attr, NULL);
6183                 if (reg < 0)
6184                         return;
6185                 /*
6186                  * In datapath code there is no endianness
6187                  * coversions for perfromance reasons, all
6188                  * pattern conversions are done in rte_flow.
6189                  */
6190                 value = rte_cpu_to_be_32(value);
6191                 mask = rte_cpu_to_be_32(mask);
6192                 if (reg == REG_C_0) {
6193                         struct mlx5_priv *priv = dev->data->dev_private;
6194                         uint32_t msk_c0 = priv->sh->dv_regc0_mask;
6195                         uint32_t shl_c0 = rte_bsf32(msk_c0);
6196 #if RTE_BYTE_ORDER == RTE_LITTLE_ENDIAN
6197                         uint32_t shr_c0 = __builtin_clz(priv->sh->dv_meta_mask);
6198
6199                         value >>= shr_c0;
6200                         mask >>= shr_c0;
6201 #endif
6202                         value <<= shl_c0;
6203                         mask <<= shl_c0;
6204                         MLX5_ASSERT(msk_c0);
6205                         MLX5_ASSERT(!(~msk_c0 & mask));
6206                 }
6207                 flow_dv_match_meta_reg(matcher, key, reg, value, mask);
6208         }
6209 }
6210
6211 /**
6212  * Add vport metadata Reg C0 item to matcher
6213  *
6214  * @param[in, out] matcher
6215  *   Flow matcher.
6216  * @param[in, out] key
6217  *   Flow matcher value.
6218  * @param[in] reg
6219  *   Flow pattern to translate.
6220  */
6221 static void
6222 flow_dv_translate_item_meta_vport(void *matcher, void *key,
6223                                   uint32_t value, uint32_t mask)
6224 {
6225         flow_dv_match_meta_reg(matcher, key, REG_C_0, value, mask);
6226 }
6227
6228 /**
6229  * Add tag item to matcher
6230  *
6231  * @param[in] dev
6232  *   The devich to configure through.
6233  * @param[in, out] matcher
6234  *   Flow matcher.
6235  * @param[in, out] key
6236  *   Flow matcher value.
6237  * @param[in] item
6238  *   Flow pattern to translate.
6239  */
6240 static void
6241 flow_dv_translate_mlx5_item_tag(struct rte_eth_dev *dev,
6242                                 void *matcher, void *key,
6243                                 const struct rte_flow_item *item)
6244 {
6245         const struct mlx5_rte_flow_item_tag *tag_v = item->spec;
6246         const struct mlx5_rte_flow_item_tag *tag_m = item->mask;
6247         uint32_t mask, value;
6248
6249         MLX5_ASSERT(tag_v);
6250         value = tag_v->data;
6251         mask = tag_m ? tag_m->data : UINT32_MAX;
6252         if (tag_v->id == REG_C_0) {
6253                 struct mlx5_priv *priv = dev->data->dev_private;
6254                 uint32_t msk_c0 = priv->sh->dv_regc0_mask;
6255                 uint32_t shl_c0 = rte_bsf32(msk_c0);
6256
6257                 mask &= msk_c0;
6258                 mask <<= shl_c0;
6259                 value <<= shl_c0;
6260         }
6261         flow_dv_match_meta_reg(matcher, key, tag_v->id, value, mask);
6262 }
6263
6264 /**
6265  * Add TAG item to matcher
6266  *
6267  * @param[in] dev
6268  *   The devich to configure through.
6269  * @param[in, out] matcher
6270  *   Flow matcher.
6271  * @param[in, out] key
6272  *   Flow matcher value.
6273  * @param[in] item
6274  *   Flow pattern to translate.
6275  */
6276 static void
6277 flow_dv_translate_item_tag(struct rte_eth_dev *dev,
6278                            void *matcher, void *key,
6279                            const struct rte_flow_item *item)
6280 {
6281         const struct rte_flow_item_tag *tag_v = item->spec;
6282         const struct rte_flow_item_tag *tag_m = item->mask;
6283         enum modify_reg reg;
6284
6285         MLX5_ASSERT(tag_v);
6286         tag_m = tag_m ? tag_m : &rte_flow_item_tag_mask;
6287         /* Get the metadata register index for the tag. */
6288         reg = mlx5_flow_get_reg_id(dev, MLX5_APP_TAG, tag_v->index, NULL);
6289         MLX5_ASSERT(reg > 0);
6290         flow_dv_match_meta_reg(matcher, key, reg, tag_v->data, tag_m->data);
6291 }
6292
6293 /**
6294  * Add source vport match to the specified matcher.
6295  *
6296  * @param[in, out] matcher
6297  *   Flow matcher.
6298  * @param[in, out] key
6299  *   Flow matcher value.
6300  * @param[in] port
6301  *   Source vport value to match
6302  * @param[in] mask
6303  *   Mask
6304  */
6305 static void
6306 flow_dv_translate_item_source_vport(void *matcher, void *key,
6307                                     int16_t port, uint16_t mask)
6308 {
6309         void *misc_m = MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters);
6310         void *misc_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters);
6311
6312         MLX5_SET(fte_match_set_misc, misc_m, source_port, mask);
6313         MLX5_SET(fte_match_set_misc, misc_v, source_port, port);
6314 }
6315
6316 /**
6317  * Translate port-id item to eswitch match on  port-id.
6318  *
6319  * @param[in] dev
6320  *   The devich to configure through.
6321  * @param[in, out] matcher
6322  *   Flow matcher.
6323  * @param[in, out] key
6324  *   Flow matcher value.
6325  * @param[in] item
6326  *   Flow pattern to translate.
6327  *
6328  * @return
6329  *   0 on success, a negative errno value otherwise.
6330  */
6331 static int
6332 flow_dv_translate_item_port_id(struct rte_eth_dev *dev, void *matcher,
6333                                void *key, const struct rte_flow_item *item)
6334 {
6335         const struct rte_flow_item_port_id *pid_m = item ? item->mask : NULL;
6336         const struct rte_flow_item_port_id *pid_v = item ? item->spec : NULL;
6337         struct mlx5_priv *priv;
6338         uint16_t mask, id;
6339
6340         mask = pid_m ? pid_m->id : 0xffff;
6341         id = pid_v ? pid_v->id : dev->data->port_id;
6342         priv = mlx5_port_to_eswitch_info(id, item == NULL);
6343         if (!priv)
6344                 return -rte_errno;
6345         /* Translate to vport field or to metadata, depending on mode. */
6346         if (priv->vport_meta_mask)
6347                 flow_dv_translate_item_meta_vport(matcher, key,
6348                                                   priv->vport_meta_tag,
6349                                                   priv->vport_meta_mask);
6350         else
6351                 flow_dv_translate_item_source_vport(matcher, key,
6352                                                     priv->vport_id, mask);
6353         return 0;
6354 }
6355
6356 /**
6357  * Add ICMP6 item to matcher and to the value.
6358  *
6359  * @param[in, out] matcher
6360  *   Flow matcher.
6361  * @param[in, out] key
6362  *   Flow matcher value.
6363  * @param[in] item
6364  *   Flow pattern to translate.
6365  * @param[in] inner
6366  *   Item is inner pattern.
6367  */
6368 static void
6369 flow_dv_translate_item_icmp6(void *matcher, void *key,
6370                               const struct rte_flow_item *item,
6371                               int inner)
6372 {
6373         const struct rte_flow_item_icmp6 *icmp6_m = item->mask;
6374         const struct rte_flow_item_icmp6 *icmp6_v = item->spec;
6375         void *headers_m;
6376         void *headers_v;
6377         void *misc3_m = MLX5_ADDR_OF(fte_match_param, matcher,
6378                                      misc_parameters_3);
6379         void *misc3_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters_3);
6380         if (inner) {
6381                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
6382                                          inner_headers);
6383                 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
6384         } else {
6385                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
6386                                          outer_headers);
6387                 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
6388         }
6389         MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_protocol, 0xFF);
6390         MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol, IPPROTO_ICMPV6);
6391         if (!icmp6_v)
6392                 return;
6393         if (!icmp6_m)
6394                 icmp6_m = &rte_flow_item_icmp6_mask;
6395         MLX5_SET(fte_match_set_misc3, misc3_m, icmpv6_type, icmp6_m->type);
6396         MLX5_SET(fte_match_set_misc3, misc3_v, icmpv6_type,
6397                  icmp6_v->type & icmp6_m->type);
6398         MLX5_SET(fte_match_set_misc3, misc3_m, icmpv6_code, icmp6_m->code);
6399         MLX5_SET(fte_match_set_misc3, misc3_v, icmpv6_code,
6400                  icmp6_v->code & icmp6_m->code);
6401 }
6402
6403 /**
6404  * Add ICMP item to matcher and to the value.
6405  *
6406  * @param[in, out] matcher
6407  *   Flow matcher.
6408  * @param[in, out] key
6409  *   Flow matcher value.
6410  * @param[in] item
6411  *   Flow pattern to translate.
6412  * @param[in] inner
6413  *   Item is inner pattern.
6414  */
6415 static void
6416 flow_dv_translate_item_icmp(void *matcher, void *key,
6417                             const struct rte_flow_item *item,
6418                             int inner)
6419 {
6420         const struct rte_flow_item_icmp *icmp_m = item->mask;
6421         const struct rte_flow_item_icmp *icmp_v = item->spec;
6422         void *headers_m;
6423         void *headers_v;
6424         void *misc3_m = MLX5_ADDR_OF(fte_match_param, matcher,
6425                                      misc_parameters_3);
6426         void *misc3_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters_3);
6427         if (inner) {
6428                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
6429                                          inner_headers);
6430                 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
6431         } else {
6432                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
6433                                          outer_headers);
6434                 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
6435         }
6436         MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_protocol, 0xFF);
6437         MLX5_SET(fte_match_set_lyr_2_4, headers_v, ip_protocol, IPPROTO_ICMP);
6438         if (!icmp_v)
6439                 return;
6440         if (!icmp_m)
6441                 icmp_m = &rte_flow_item_icmp_mask;
6442         MLX5_SET(fte_match_set_misc3, misc3_m, icmp_type,
6443                  icmp_m->hdr.icmp_type);
6444         MLX5_SET(fte_match_set_misc3, misc3_v, icmp_type,
6445                  icmp_v->hdr.icmp_type & icmp_m->hdr.icmp_type);
6446         MLX5_SET(fte_match_set_misc3, misc3_m, icmp_code,
6447                  icmp_m->hdr.icmp_code);
6448         MLX5_SET(fte_match_set_misc3, misc3_v, icmp_code,
6449                  icmp_v->hdr.icmp_code & icmp_m->hdr.icmp_code);
6450 }
6451
6452 /**
6453  * Add GTP item to matcher and to the value.
6454  *
6455  * @param[in, out] matcher
6456  *   Flow matcher.
6457  * @param[in, out] key
6458  *   Flow matcher value.
6459  * @param[in] item
6460  *   Flow pattern to translate.
6461  * @param[in] inner
6462  *   Item is inner pattern.
6463  */
6464 static void
6465 flow_dv_translate_item_gtp(void *matcher, void *key,
6466                            const struct rte_flow_item *item, int inner)
6467 {
6468         const struct rte_flow_item_gtp *gtp_m = item->mask;
6469         const struct rte_flow_item_gtp *gtp_v = item->spec;
6470         void *headers_m;
6471         void *headers_v;
6472         void *misc3_m = MLX5_ADDR_OF(fte_match_param, matcher,
6473                                      misc_parameters_3);
6474         void *misc3_v = MLX5_ADDR_OF(fte_match_param, key, misc_parameters_3);
6475         uint16_t dport = RTE_GTPU_UDP_PORT;
6476
6477         if (inner) {
6478                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
6479                                          inner_headers);
6480                 headers_v = MLX5_ADDR_OF(fte_match_param, key, inner_headers);
6481         } else {
6482                 headers_m = MLX5_ADDR_OF(fte_match_param, matcher,
6483                                          outer_headers);
6484                 headers_v = MLX5_ADDR_OF(fte_match_param, key, outer_headers);
6485         }
6486         if (!MLX5_GET16(fte_match_set_lyr_2_4, headers_v, udp_dport)) {
6487                 MLX5_SET(fte_match_set_lyr_2_4, headers_m, udp_dport, 0xFFFF);
6488                 MLX5_SET(fte_match_set_lyr_2_4, headers_v, udp_dport, dport);
6489         }
6490         if (!gtp_v)
6491                 return;
6492         if (!gtp_m)
6493                 gtp_m = &rte_flow_item_gtp_mask;
6494         MLX5_SET(fte_match_set_misc3, misc3_m, gtpu_msg_type, gtp_m->msg_type);
6495         MLX5_SET(fte_match_set_misc3, misc3_v, gtpu_msg_type,
6496                  gtp_v->msg_type & gtp_m->msg_type);
6497         MLX5_SET(fte_match_set_misc3, misc3_m, gtpu_teid,
6498                  rte_be_to_cpu_32(gtp_m->teid));
6499         MLX5_SET(fte_match_set_misc3, misc3_v, gtpu_teid,
6500                  rte_be_to_cpu_32(gtp_v->teid & gtp_m->teid));
6501 }
6502
6503 static uint32_t matcher_zero[MLX5_ST_SZ_DW(fte_match_param)] = { 0 };
6504
6505 #define HEADER_IS_ZERO(match_criteria, headers)                              \
6506         !(memcmp(MLX5_ADDR_OF(fte_match_param, match_criteria, headers),     \
6507                  matcher_zero, MLX5_FLD_SZ_BYTES(fte_match_param, headers))) \
6508
6509 /**
6510  * Calculate flow matcher enable bitmap.
6511  *
6512  * @param match_criteria
6513  *   Pointer to flow matcher criteria.
6514  *
6515  * @return
6516  *   Bitmap of enabled fields.
6517  */
6518 static uint8_t
6519 flow_dv_matcher_enable(uint32_t *match_criteria)
6520 {
6521         uint8_t match_criteria_enable;
6522
6523         match_criteria_enable =
6524                 (!HEADER_IS_ZERO(match_criteria, outer_headers)) <<
6525                 MLX5_MATCH_CRITERIA_ENABLE_OUTER_BIT;
6526         match_criteria_enable |=
6527                 (!HEADER_IS_ZERO(match_criteria, misc_parameters)) <<
6528                 MLX5_MATCH_CRITERIA_ENABLE_MISC_BIT;
6529         match_criteria_enable |=
6530                 (!HEADER_IS_ZERO(match_criteria, inner_headers)) <<
6531                 MLX5_MATCH_CRITERIA_ENABLE_INNER_BIT;
6532         match_criteria_enable |=
6533                 (!HEADER_IS_ZERO(match_criteria, misc_parameters_2)) <<
6534                 MLX5_MATCH_CRITERIA_ENABLE_MISC2_BIT;
6535         match_criteria_enable |=
6536                 (!HEADER_IS_ZERO(match_criteria, misc_parameters_3)) <<
6537                 MLX5_MATCH_CRITERIA_ENABLE_MISC3_BIT;
6538         return match_criteria_enable;
6539 }
6540
6541
6542 /**
6543  * Get a flow table.
6544  *
6545  * @param[in, out] dev
6546  *   Pointer to rte_eth_dev structure.
6547  * @param[in] table_id
6548  *   Table id to use.
6549  * @param[in] egress
6550  *   Direction of the table.
6551  * @param[in] transfer
6552  *   E-Switch or NIC flow.
6553  * @param[out] error
6554  *   pointer to error structure.
6555  *
6556  * @return
6557  *   Returns tables resource based on the index, NULL in case of failed.
6558  */
6559 static struct mlx5_flow_tbl_resource *
6560 flow_dv_tbl_resource_get(struct rte_eth_dev *dev,
6561                          uint32_t table_id, uint8_t egress,
6562                          uint8_t transfer,
6563                          struct rte_flow_error *error)
6564 {
6565         struct mlx5_priv *priv = dev->data->dev_private;
6566         struct mlx5_ibv_shared *sh = priv->sh;
6567         struct mlx5_flow_tbl_resource *tbl;
6568         union mlx5_flow_tbl_key table_key = {
6569                 {
6570                         .table_id = table_id,
6571                         .reserved = 0,
6572                         .domain = !!transfer,
6573                         .direction = !!egress,
6574                 }
6575         };
6576         struct mlx5_hlist_entry *pos = mlx5_hlist_lookup(sh->flow_tbls,
6577                                                          table_key.v64);
6578         struct mlx5_flow_tbl_data_entry *tbl_data;
6579         int ret;
6580         void *domain;
6581
6582         if (pos) {
6583                 tbl_data = container_of(pos, struct mlx5_flow_tbl_data_entry,
6584                                         entry);
6585                 tbl = &tbl_data->tbl;
6586                 rte_atomic32_inc(&tbl->refcnt);
6587                 return tbl;
6588         }
6589         tbl_data = rte_zmalloc(NULL, sizeof(*tbl_data), 0);
6590         if (!tbl_data) {
6591                 rte_flow_error_set(error, ENOMEM,
6592                                    RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
6593                                    NULL,
6594                                    "cannot allocate flow table data entry");
6595                 return NULL;
6596         }
6597         tbl = &tbl_data->tbl;
6598         pos = &tbl_data->entry;
6599         if (transfer)
6600                 domain = sh->fdb_domain;
6601         else if (egress)
6602                 domain = sh->tx_domain;
6603         else
6604                 domain = sh->rx_domain;
6605         tbl->obj = mlx5_glue->dr_create_flow_tbl(domain, table_id);
6606         if (!tbl->obj) {
6607                 rte_flow_error_set(error, ENOMEM,
6608                                    RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
6609                                    NULL, "cannot create flow table object");
6610                 rte_free(tbl_data);
6611                 return NULL;
6612         }
6613         /*
6614          * No multi-threads now, but still better to initialize the reference
6615          * count before insert it into the hash list.
6616          */
6617         rte_atomic32_init(&tbl->refcnt);
6618         /* Jump action reference count is initialized here. */
6619         rte_atomic32_init(&tbl_data->jump.refcnt);
6620         pos->key = table_key.v64;
6621         ret = mlx5_hlist_insert(sh->flow_tbls, pos);
6622         if (ret < 0) {
6623                 rte_flow_error_set(error, -ret,
6624                                    RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
6625                                    "cannot insert flow table data entry");
6626                 mlx5_glue->dr_destroy_flow_tbl(tbl->obj);
6627                 rte_free(tbl_data);
6628         }
6629         rte_atomic32_inc(&tbl->refcnt);
6630         return tbl;
6631 }
6632
6633 /**
6634  * Release a flow table.
6635  *
6636  * @param[in] dev
6637  *   Pointer to rte_eth_dev structure.
6638  * @param[in] tbl
6639  *   Table resource to be released.
6640  *
6641  * @return
6642  *   Returns 0 if table was released, else return 1;
6643  */
6644 static int
6645 flow_dv_tbl_resource_release(struct rte_eth_dev *dev,
6646                              struct mlx5_flow_tbl_resource *tbl)
6647 {
6648         struct mlx5_priv *priv = dev->data->dev_private;
6649         struct mlx5_ibv_shared *sh = priv->sh;
6650         struct mlx5_flow_tbl_data_entry *tbl_data =
6651                 container_of(tbl, struct mlx5_flow_tbl_data_entry, tbl);
6652
6653         if (!tbl)
6654                 return 0;
6655         if (rte_atomic32_dec_and_test(&tbl->refcnt)) {
6656                 struct mlx5_hlist_entry *pos = &tbl_data->entry;
6657
6658                 mlx5_glue->dr_destroy_flow_tbl(tbl->obj);
6659                 tbl->obj = NULL;
6660                 /* remove the entry from the hash list and free memory. */
6661                 mlx5_hlist_remove(sh->flow_tbls, pos);
6662                 rte_free(tbl_data);
6663                 return 0;
6664         }
6665         return 1;
6666 }
6667
6668 /**
6669  * Register the flow matcher.
6670  *
6671  * @param[in, out] dev
6672  *   Pointer to rte_eth_dev structure.
6673  * @param[in, out] matcher
6674  *   Pointer to flow matcher.
6675  * @param[in, out] key
6676  *   Pointer to flow table key.
6677  * @parm[in, out] dev_flow
6678  *   Pointer to the dev_flow.
6679  * @param[out] error
6680  *   pointer to error structure.
6681  *
6682  * @return
6683  *   0 on success otherwise -errno and errno is set.
6684  */
6685 static int
6686 flow_dv_matcher_register(struct rte_eth_dev *dev,
6687                          struct mlx5_flow_dv_matcher *matcher,
6688                          union mlx5_flow_tbl_key *key,
6689                          struct mlx5_flow *dev_flow,
6690                          struct rte_flow_error *error)
6691 {
6692         struct mlx5_priv *priv = dev->data->dev_private;
6693         struct mlx5_ibv_shared *sh = priv->sh;
6694         struct mlx5_flow_dv_matcher *cache_matcher;
6695         struct mlx5dv_flow_matcher_attr dv_attr = {
6696                 .type = IBV_FLOW_ATTR_NORMAL,
6697                 .match_mask = (void *)&matcher->mask,
6698         };
6699         struct mlx5_flow_tbl_resource *tbl;
6700         struct mlx5_flow_tbl_data_entry *tbl_data;
6701
6702         tbl = flow_dv_tbl_resource_get(dev, key->table_id, key->direction,
6703                                        key->domain, error);
6704         if (!tbl)
6705                 return -rte_errno;      /* No need to refill the error info */
6706         tbl_data = container_of(tbl, struct mlx5_flow_tbl_data_entry, tbl);
6707         /* Lookup from cache. */
6708         LIST_FOREACH(cache_matcher, &tbl_data->matchers, next) {
6709                 if (matcher->crc == cache_matcher->crc &&
6710                     matcher->priority == cache_matcher->priority &&
6711                     !memcmp((const void *)matcher->mask.buf,
6712                             (const void *)cache_matcher->mask.buf,
6713                             cache_matcher->mask.size)) {
6714                         DRV_LOG(DEBUG,
6715                                 "%s group %u priority %hd use %s "
6716                                 "matcher %p: refcnt %d++",
6717                                 key->domain ? "FDB" : "NIC", key->table_id,
6718                                 cache_matcher->priority,
6719                                 key->direction ? "tx" : "rx",
6720                                 (void *)cache_matcher,
6721                                 rte_atomic32_read(&cache_matcher->refcnt));
6722                         rte_atomic32_inc(&cache_matcher->refcnt);
6723                         dev_flow->dv.matcher = cache_matcher;
6724                         /* old matcher should not make the table ref++. */
6725                         flow_dv_tbl_resource_release(dev, tbl);
6726                         return 0;
6727                 }
6728         }
6729         /* Register new matcher. */
6730         cache_matcher = rte_calloc(__func__, 1, sizeof(*cache_matcher), 0);
6731         if (!cache_matcher) {
6732                 flow_dv_tbl_resource_release(dev, tbl);
6733                 return rte_flow_error_set(error, ENOMEM,
6734                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
6735                                           "cannot allocate matcher memory");
6736         }
6737         *cache_matcher = *matcher;
6738         dv_attr.match_criteria_enable =
6739                 flow_dv_matcher_enable(cache_matcher->mask.buf);
6740         dv_attr.priority = matcher->priority;
6741         if (key->direction)
6742                 dv_attr.flags |= IBV_FLOW_ATTR_FLAGS_EGRESS;
6743         cache_matcher->matcher_object =
6744                 mlx5_glue->dv_create_flow_matcher(sh->ctx, &dv_attr, tbl->obj);
6745         if (!cache_matcher->matcher_object) {
6746                 rte_free(cache_matcher);
6747 #ifdef HAVE_MLX5DV_DR
6748                 flow_dv_tbl_resource_release(dev, tbl);
6749 #endif
6750                 return rte_flow_error_set(error, ENOMEM,
6751                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
6752                                           NULL, "cannot create matcher");
6753         }
6754         /* Save the table information */
6755         cache_matcher->tbl = tbl;
6756         rte_atomic32_init(&cache_matcher->refcnt);
6757         /* only matcher ref++, table ref++ already done above in get API. */
6758         rte_atomic32_inc(&cache_matcher->refcnt);
6759         LIST_INSERT_HEAD(&tbl_data->matchers, cache_matcher, next);
6760         dev_flow->dv.matcher = cache_matcher;
6761         DRV_LOG(DEBUG, "%s group %u priority %hd new %s matcher %p: refcnt %d",
6762                 key->domain ? "FDB" : "NIC", key->table_id,
6763                 cache_matcher->priority,
6764                 key->direction ? "tx" : "rx", (void *)cache_matcher,
6765                 rte_atomic32_read(&cache_matcher->refcnt));
6766         return 0;
6767 }
6768
6769 /**
6770  * Find existing tag resource or create and register a new one.
6771  *
6772  * @param dev[in, out]
6773  *   Pointer to rte_eth_dev structure.
6774  * @param[in, out] tag_be24
6775  *   Tag value in big endian then R-shift 8.
6776  * @parm[in, out] dev_flow
6777  *   Pointer to the dev_flow.
6778  * @param[out] error
6779  *   pointer to error structure.
6780  *
6781  * @return
6782  *   0 on success otherwise -errno and errno is set.
6783  */
6784 static int
6785 flow_dv_tag_resource_register
6786                         (struct rte_eth_dev *dev,
6787                          uint32_t tag_be24,
6788                          struct mlx5_flow *dev_flow,
6789                          struct rte_flow_error *error)
6790 {
6791         struct mlx5_priv *priv = dev->data->dev_private;
6792         struct mlx5_ibv_shared *sh = priv->sh;
6793         struct mlx5_flow_dv_tag_resource *cache_resource;
6794         struct mlx5_hlist_entry *entry;
6795
6796         /* Lookup a matching resource from cache. */
6797         entry = mlx5_hlist_lookup(sh->tag_table, (uint64_t)tag_be24);
6798         if (entry) {
6799                 cache_resource = container_of
6800                         (entry, struct mlx5_flow_dv_tag_resource, entry);
6801                 rte_atomic32_inc(&cache_resource->refcnt);
6802                 dev_flow->dv.tag_resource = cache_resource;
6803                 DRV_LOG(DEBUG, "cached tag resource %p: refcnt now %d++",
6804                         (void *)cache_resource,
6805                         rte_atomic32_read(&cache_resource->refcnt));
6806                 return 0;
6807         }
6808         /* Register new resource. */
6809         cache_resource = rte_calloc(__func__, 1, sizeof(*cache_resource), 0);
6810         if (!cache_resource)
6811                 return rte_flow_error_set(error, ENOMEM,
6812                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
6813                                           "cannot allocate resource memory");
6814         cache_resource->entry.key = (uint64_t)tag_be24;
6815         cache_resource->action = mlx5_glue->dv_create_flow_action_tag(tag_be24);
6816         if (!cache_resource->action) {
6817                 rte_free(cache_resource);
6818                 return rte_flow_error_set(error, ENOMEM,
6819                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
6820                                           NULL, "cannot create action");
6821         }
6822         rte_atomic32_init(&cache_resource->refcnt);
6823         rte_atomic32_inc(&cache_resource->refcnt);
6824         if (mlx5_hlist_insert(sh->tag_table, &cache_resource->entry)) {
6825                 mlx5_glue->destroy_flow_action(cache_resource->action);
6826                 rte_free(cache_resource);
6827                 return rte_flow_error_set(error, EEXIST,
6828                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
6829                                           NULL, "cannot insert tag");
6830         }
6831         dev_flow->dv.tag_resource = cache_resource;
6832         DRV_LOG(DEBUG, "new tag resource %p: refcnt now %d++",
6833                 (void *)cache_resource,
6834                 rte_atomic32_read(&cache_resource->refcnt));
6835         return 0;
6836 }
6837
6838 /**
6839  * Release the tag.
6840  *
6841  * @param dev
6842  *   Pointer to Ethernet device.
6843  * @param flow
6844  *   Pointer to mlx5_flow.
6845  *
6846  * @return
6847  *   1 while a reference on it exists, 0 when freed.
6848  */
6849 static int
6850 flow_dv_tag_release(struct rte_eth_dev *dev,
6851                     struct mlx5_flow_dv_tag_resource *tag)
6852 {
6853         struct mlx5_priv *priv = dev->data->dev_private;
6854         struct mlx5_ibv_shared *sh = priv->sh;
6855
6856         MLX5_ASSERT(tag);
6857         DRV_LOG(DEBUG, "port %u tag %p: refcnt %d--",
6858                 dev->data->port_id, (void *)tag,
6859                 rte_atomic32_read(&tag->refcnt));
6860         if (rte_atomic32_dec_and_test(&tag->refcnt)) {
6861                 claim_zero(mlx5_glue->destroy_flow_action(tag->action));
6862                 mlx5_hlist_remove(sh->tag_table, &tag->entry);
6863                 DRV_LOG(DEBUG, "port %u tag %p: removed",
6864                         dev->data->port_id, (void *)tag);
6865                 rte_free(tag);
6866                 return 0;
6867         }
6868         return 1;
6869 }
6870
6871 /**
6872  * Translate port ID action to vport.
6873  *
6874  * @param[in] dev
6875  *   Pointer to rte_eth_dev structure.
6876  * @param[in] action
6877  *   Pointer to the port ID action.
6878  * @param[out] dst_port_id
6879  *   The target port ID.
6880  * @param[out] error
6881  *   Pointer to the error structure.
6882  *
6883  * @return
6884  *   0 on success, a negative errno value otherwise and rte_errno is set.
6885  */
6886 static int
6887 flow_dv_translate_action_port_id(struct rte_eth_dev *dev,
6888                                  const struct rte_flow_action *action,
6889                                  uint32_t *dst_port_id,
6890                                  struct rte_flow_error *error)
6891 {
6892         uint32_t port;
6893         struct mlx5_priv *priv;
6894         const struct rte_flow_action_port_id *conf =
6895                         (const struct rte_flow_action_port_id *)action->conf;
6896
6897         port = conf->original ? dev->data->port_id : conf->id;
6898         priv = mlx5_port_to_eswitch_info(port, false);
6899         if (!priv)
6900                 return rte_flow_error_set(error, -rte_errno,
6901                                           RTE_FLOW_ERROR_TYPE_ACTION,
6902                                           NULL,
6903                                           "No eswitch info was found for port");
6904 #ifdef HAVE_MLX5DV_DR_DEVX_PORT
6905         /*
6906          * This parameter is transferred to
6907          * mlx5dv_dr_action_create_dest_ib_port().
6908          */
6909         *dst_port_id = priv->ibv_port;
6910 #else
6911         /*
6912          * Legacy mode, no LAG configurations is supported.
6913          * This parameter is transferred to
6914          * mlx5dv_dr_action_create_dest_vport().
6915          */
6916         *dst_port_id = priv->vport_id;
6917 #endif
6918         return 0;
6919 }
6920
6921 /**
6922  * Add Tx queue matcher
6923  *
6924  * @param[in] dev
6925  *   Pointer to the dev struct.
6926  * @param[in, out] matcher
6927  *   Flow matcher.
6928  * @param[in, out] key
6929  *   Flow matcher value.
6930  * @param[in] item
6931  *   Flow pattern to translate.
6932  * @param[in] inner
6933  *   Item is inner pattern.
6934  */
6935 static void
6936 flow_dv_translate_item_tx_queue(struct rte_eth_dev *dev,
6937                                 void *matcher, void *key,
6938                                 const struct rte_flow_item *item)
6939 {
6940         const struct mlx5_rte_flow_item_tx_queue *queue_m;
6941         const struct mlx5_rte_flow_item_tx_queue *queue_v;
6942         void *misc_m =
6943                 MLX5_ADDR_OF(fte_match_param, matcher, misc_parameters);
6944         void *misc_v =
6945                 MLX5_ADDR_OF(fte_match_param, key, misc_parameters);
6946         struct mlx5_txq_ctrl *txq;
6947         uint32_t queue;
6948
6949
6950         queue_m = (const void *)item->mask;
6951         if (!queue_m)
6952                 return;
6953         queue_v = (const void *)item->spec;
6954         if (!queue_v)
6955                 return;
6956         txq = mlx5_txq_get(dev, queue_v->queue);
6957         if (!txq)
6958                 return;
6959         queue = txq->obj->sq->id;
6960         MLX5_SET(fte_match_set_misc, misc_m, source_sqn, queue_m->queue);
6961         MLX5_SET(fte_match_set_misc, misc_v, source_sqn,
6962                  queue & queue_m->queue);
6963         mlx5_txq_release(dev, queue_v->queue);
6964 }
6965
6966 /**
6967  * Set the hash fields according to the @p flow information.
6968  *
6969  * @param[in] dev_flow
6970  *   Pointer to the mlx5_flow.
6971  */
6972 static void
6973 flow_dv_hashfields_set(struct mlx5_flow *dev_flow)
6974 {
6975         struct rte_flow *flow = dev_flow->flow;
6976         uint64_t items = dev_flow->layers;
6977         int rss_inner = 0;
6978         uint64_t rss_types = rte_eth_rss_hf_refine(flow->rss.types);
6979
6980         dev_flow->hash_fields = 0;
6981 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
6982         if (flow->rss.level >= 2) {
6983                 dev_flow->hash_fields |= IBV_RX_HASH_INNER;
6984                 rss_inner = 1;
6985         }
6986 #endif
6987         if ((rss_inner && (items & MLX5_FLOW_LAYER_INNER_L3_IPV4)) ||
6988             (!rss_inner && (items & MLX5_FLOW_LAYER_OUTER_L3_IPV4))) {
6989                 if (rss_types & MLX5_IPV4_LAYER_TYPES) {
6990                         if (rss_types & ETH_RSS_L3_SRC_ONLY)
6991                                 dev_flow->hash_fields |= IBV_RX_HASH_SRC_IPV4;
6992                         else if (rss_types & ETH_RSS_L3_DST_ONLY)
6993                                 dev_flow->hash_fields |= IBV_RX_HASH_DST_IPV4;
6994                         else
6995                                 dev_flow->hash_fields |= MLX5_IPV4_IBV_RX_HASH;
6996                 }
6997         } else if ((rss_inner && (items & MLX5_FLOW_LAYER_INNER_L3_IPV6)) ||
6998                    (!rss_inner && (items & MLX5_FLOW_LAYER_OUTER_L3_IPV6))) {
6999                 if (rss_types & MLX5_IPV6_LAYER_TYPES) {
7000                         if (rss_types & ETH_RSS_L3_SRC_ONLY)
7001                                 dev_flow->hash_fields |= IBV_RX_HASH_SRC_IPV6;
7002                         else if (rss_types & ETH_RSS_L3_DST_ONLY)
7003                                 dev_flow->hash_fields |= IBV_RX_HASH_DST_IPV6;
7004                         else
7005                                 dev_flow->hash_fields |= MLX5_IPV6_IBV_RX_HASH;
7006                 }
7007         }
7008         if ((rss_inner && (items & MLX5_FLOW_LAYER_INNER_L4_UDP)) ||
7009             (!rss_inner && (items & MLX5_FLOW_LAYER_OUTER_L4_UDP))) {
7010                 if (rss_types & ETH_RSS_UDP) {
7011                         if (rss_types & ETH_RSS_L4_SRC_ONLY)
7012                                 dev_flow->hash_fields |=
7013                                                 IBV_RX_HASH_SRC_PORT_UDP;
7014                         else if (rss_types & ETH_RSS_L4_DST_ONLY)
7015                                 dev_flow->hash_fields |=
7016                                                 IBV_RX_HASH_DST_PORT_UDP;
7017                         else
7018                                 dev_flow->hash_fields |= MLX5_UDP_IBV_RX_HASH;
7019                 }
7020         } else if ((rss_inner && (items & MLX5_FLOW_LAYER_INNER_L4_TCP)) ||
7021                    (!rss_inner && (items & MLX5_FLOW_LAYER_OUTER_L4_TCP))) {
7022                 if (rss_types & ETH_RSS_TCP) {
7023                         if (rss_types & ETH_RSS_L4_SRC_ONLY)
7024                                 dev_flow->hash_fields |=
7025                                                 IBV_RX_HASH_SRC_PORT_TCP;
7026                         else if (rss_types & ETH_RSS_L4_DST_ONLY)
7027                                 dev_flow->hash_fields |=
7028                                                 IBV_RX_HASH_DST_PORT_TCP;
7029                         else
7030                                 dev_flow->hash_fields |= MLX5_TCP_IBV_RX_HASH;
7031                 }
7032         }
7033 }
7034
7035 /**
7036  * Fill the flow with DV spec, lock free
7037  * (mutex should be acquired by caller).
7038  *
7039  * @param[in] dev
7040  *   Pointer to rte_eth_dev structure.
7041  * @param[in, out] dev_flow
7042  *   Pointer to the sub flow.
7043  * @param[in] attr
7044  *   Pointer to the flow attributes.
7045  * @param[in] items
7046  *   Pointer to the list of items.
7047  * @param[in] actions
7048  *   Pointer to the list of actions.
7049  * @param[out] error
7050  *   Pointer to the error structure.
7051  *
7052  * @return
7053  *   0 on success, a negative errno value otherwise and rte_errno is set.
7054  */
7055 static int
7056 __flow_dv_translate(struct rte_eth_dev *dev,
7057                     struct mlx5_flow *dev_flow,
7058                     const struct rte_flow_attr *attr,
7059                     const struct rte_flow_item items[],
7060                     const struct rte_flow_action actions[],
7061                     struct rte_flow_error *error)
7062 {
7063         struct mlx5_priv *priv = dev->data->dev_private;
7064         struct mlx5_dev_config *dev_conf = &priv->config;
7065         struct rte_flow *flow = dev_flow->flow;
7066         uint64_t item_flags = 0;
7067         uint64_t last_item = 0;
7068         uint64_t action_flags = 0;
7069         uint64_t priority = attr->priority;
7070         struct mlx5_flow_dv_matcher matcher = {
7071                 .mask = {
7072                         .size = sizeof(matcher.mask.buf),
7073                 },
7074         };
7075         int actions_n = 0;
7076         bool actions_end = false;
7077         union {
7078                 struct mlx5_flow_dv_modify_hdr_resource res;
7079                 uint8_t len[sizeof(struct mlx5_flow_dv_modify_hdr_resource) +
7080                             sizeof(struct mlx5_modification_cmd) *
7081                             (MLX5_MAX_MODIFY_NUM + 1)];
7082         } mhdr_dummy;
7083         struct mlx5_flow_dv_modify_hdr_resource *mhdr_res = &mhdr_dummy.res;
7084         union flow_dv_attr flow_attr = { .attr = 0 };
7085         uint32_t tag_be;
7086         union mlx5_flow_tbl_key tbl_key;
7087         uint32_t modify_action_position = UINT32_MAX;
7088         void *match_mask = matcher.mask.buf;
7089         void *match_value = dev_flow->dv.value.buf;
7090         uint8_t next_protocol = 0xff;
7091         struct rte_vlan_hdr vlan = { 0 };
7092         uint32_t table;
7093         int ret = 0;
7094
7095         mhdr_res->ft_type = attr->egress ? MLX5DV_FLOW_TABLE_TYPE_NIC_TX :
7096                                            MLX5DV_FLOW_TABLE_TYPE_NIC_RX;
7097         ret = mlx5_flow_group_to_table(attr, dev_flow->external, attr->group,
7098                                        !!priv->fdb_def_rule, &table, error);
7099         if (ret)
7100                 return ret;
7101         dev_flow->group = table;
7102         if (attr->transfer)
7103                 mhdr_res->ft_type = MLX5DV_FLOW_TABLE_TYPE_FDB;
7104         if (priority == MLX5_FLOW_PRIO_RSVD)
7105                 priority = dev_conf->flow_prio - 1;
7106         /* number of actions must be set to 0 in case of dirty stack. */
7107         mhdr_res->actions_num = 0;
7108         for (; !actions_end ; actions++) {
7109                 const struct rte_flow_action_queue *queue;
7110                 const struct rte_flow_action_rss *rss;
7111                 const struct rte_flow_action *action = actions;
7112                 const struct rte_flow_action_count *count = action->conf;
7113                 const uint8_t *rss_key;
7114                 const struct rte_flow_action_jump *jump_data;
7115                 const struct rte_flow_action_meter *mtr;
7116                 struct mlx5_flow_tbl_resource *tbl;
7117                 uint32_t port_id = 0;
7118                 struct mlx5_flow_dv_port_id_action_resource port_id_resource;
7119                 int action_type = actions->type;
7120                 const struct rte_flow_action *found_action = NULL;
7121
7122                 switch (action_type) {
7123                 case RTE_FLOW_ACTION_TYPE_VOID:
7124                         break;
7125                 case RTE_FLOW_ACTION_TYPE_PORT_ID:
7126                         if (flow_dv_translate_action_port_id(dev, action,
7127                                                              &port_id, error))
7128                                 return -rte_errno;
7129                         port_id_resource.port_id = port_id;
7130                         if (flow_dv_port_id_action_resource_register
7131                             (dev, &port_id_resource, dev_flow, error))
7132                                 return -rte_errno;
7133                         dev_flow->dv.actions[actions_n++] =
7134                                 dev_flow->dv.port_id_action->action;
7135                         action_flags |= MLX5_FLOW_ACTION_PORT_ID;
7136                         break;
7137                 case RTE_FLOW_ACTION_TYPE_FLAG:
7138                         action_flags |= MLX5_FLOW_ACTION_FLAG;
7139                         if (dev_conf->dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
7140                                 struct rte_flow_action_mark mark = {
7141                                         .id = MLX5_FLOW_MARK_DEFAULT,
7142                                 };
7143
7144                                 if (flow_dv_convert_action_mark(dev, &mark,
7145                                                                 mhdr_res,
7146                                                                 error))
7147                                         return -rte_errno;
7148                                 action_flags |= MLX5_FLOW_ACTION_MARK_EXT;
7149                                 break;
7150                         }
7151                         tag_be = mlx5_flow_mark_set(MLX5_FLOW_MARK_DEFAULT);
7152                         if (!dev_flow->dv.tag_resource)
7153                                 if (flow_dv_tag_resource_register
7154                                     (dev, tag_be, dev_flow, error))
7155                                         return -rte_errno;
7156                         dev_flow->dv.actions[actions_n++] =
7157                                 dev_flow->dv.tag_resource->action;
7158                         break;
7159                 case RTE_FLOW_ACTION_TYPE_MARK:
7160                         action_flags |= MLX5_FLOW_ACTION_MARK;
7161                         if (dev_conf->dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
7162                                 const struct rte_flow_action_mark *mark =
7163                                         (const struct rte_flow_action_mark *)
7164                                                 actions->conf;
7165
7166                                 if (flow_dv_convert_action_mark(dev, mark,
7167                                                                 mhdr_res,
7168                                                                 error))
7169                                         return -rte_errno;
7170                                 action_flags |= MLX5_FLOW_ACTION_MARK_EXT;
7171                                 break;
7172                         }
7173                         /* Fall-through */
7174                 case MLX5_RTE_FLOW_ACTION_TYPE_MARK:
7175                         /* Legacy (non-extensive) MARK action. */
7176                         tag_be = mlx5_flow_mark_set
7177                               (((const struct rte_flow_action_mark *)
7178                                (actions->conf))->id);
7179                         if (!dev_flow->dv.tag_resource)
7180                                 if (flow_dv_tag_resource_register
7181                                     (dev, tag_be, dev_flow, error))
7182                                         return -rte_errno;
7183                         dev_flow->dv.actions[actions_n++] =
7184                                 dev_flow->dv.tag_resource->action;
7185                         break;
7186                 case RTE_FLOW_ACTION_TYPE_SET_META:
7187                         if (flow_dv_convert_action_set_meta
7188                                 (dev, mhdr_res, attr,
7189                                  (const struct rte_flow_action_set_meta *)
7190                                   actions->conf, error))
7191                                 return -rte_errno;
7192                         action_flags |= MLX5_FLOW_ACTION_SET_META;
7193                         break;
7194                 case RTE_FLOW_ACTION_TYPE_SET_TAG:
7195                         if (flow_dv_convert_action_set_tag
7196                                 (dev, mhdr_res,
7197                                  (const struct rte_flow_action_set_tag *)
7198                                   actions->conf, error))
7199                                 return -rte_errno;
7200                         action_flags |= MLX5_FLOW_ACTION_SET_TAG;
7201                         break;
7202                 case RTE_FLOW_ACTION_TYPE_DROP:
7203                         action_flags |= MLX5_FLOW_ACTION_DROP;
7204                         break;
7205                 case RTE_FLOW_ACTION_TYPE_QUEUE:
7206                         MLX5_ASSERT(flow->rss.queue);
7207                         queue = actions->conf;
7208                         flow->rss.queue_num = 1;
7209                         (*flow->rss.queue)[0] = queue->index;
7210                         action_flags |= MLX5_FLOW_ACTION_QUEUE;
7211                         break;
7212                 case RTE_FLOW_ACTION_TYPE_RSS:
7213                         MLX5_ASSERT(flow->rss.queue);
7214                         rss = actions->conf;
7215                         if (flow->rss.queue)
7216                                 memcpy((*flow->rss.queue), rss->queue,
7217                                        rss->queue_num * sizeof(uint16_t));
7218                         flow->rss.queue_num = rss->queue_num;
7219                         /* NULL RSS key indicates default RSS key. */
7220                         rss_key = !rss->key ? rss_hash_default_key : rss->key;
7221                         memcpy(flow->rss.key, rss_key, MLX5_RSS_HASH_KEY_LEN);
7222                         /*
7223                          * rss->level and rss.types should be set in advance
7224                          * when expanding items for RSS.
7225                          */
7226                         action_flags |= MLX5_FLOW_ACTION_RSS;
7227                         break;
7228                 case RTE_FLOW_ACTION_TYPE_COUNT:
7229                         if (!dev_conf->devx) {
7230                                 rte_errno = ENOTSUP;
7231                                 goto cnt_err;
7232                         }
7233                         flow->counter = flow_dv_counter_alloc(dev,
7234                                                               count->shared,
7235                                                               count->id,
7236                                                               dev_flow->group);
7237                         if (flow->counter == NULL)
7238                                 goto cnt_err;
7239                         dev_flow->dv.actions[actions_n++] =
7240                                 flow->counter->action;
7241                         action_flags |= MLX5_FLOW_ACTION_COUNT;
7242                         break;
7243 cnt_err:
7244                         if (rte_errno == ENOTSUP)
7245                                 return rte_flow_error_set
7246                                               (error, ENOTSUP,
7247                                                RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
7248                                                NULL,
7249                                                "count action not supported");
7250                         else
7251                                 return rte_flow_error_set
7252                                                 (error, rte_errno,
7253                                                  RTE_FLOW_ERROR_TYPE_ACTION,
7254                                                  action,
7255                                                  "cannot create counter"
7256                                                   " object.");
7257                         break;
7258                 case RTE_FLOW_ACTION_TYPE_OF_POP_VLAN:
7259                         dev_flow->dv.actions[actions_n++] =
7260                                                 priv->sh->pop_vlan_action;
7261                         action_flags |= MLX5_FLOW_ACTION_OF_POP_VLAN;
7262                         break;
7263                 case RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN:
7264                         flow_dev_get_vlan_info_from_items(items, &vlan);
7265                         vlan.eth_proto = rte_be_to_cpu_16
7266                              ((((const struct rte_flow_action_of_push_vlan *)
7267                                                    actions->conf)->ethertype));
7268                         found_action = mlx5_flow_find_action
7269                                         (actions + 1,
7270                                          RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID);
7271                         if (found_action)
7272                                 mlx5_update_vlan_vid_pcp(found_action, &vlan);
7273                         found_action = mlx5_flow_find_action
7274                                         (actions + 1,
7275                                          RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP);
7276                         if (found_action)
7277                                 mlx5_update_vlan_vid_pcp(found_action, &vlan);
7278                         if (flow_dv_create_action_push_vlan
7279                                             (dev, attr, &vlan, dev_flow, error))
7280                                 return -rte_errno;
7281                         dev_flow->dv.actions[actions_n++] =
7282                                            dev_flow->dv.push_vlan_res->action;
7283                         action_flags |= MLX5_FLOW_ACTION_OF_PUSH_VLAN;
7284                         break;
7285                 case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP:
7286                         /* of_vlan_push action handled this action */
7287                         MLX5_ASSERT(action_flags &
7288                                     MLX5_FLOW_ACTION_OF_PUSH_VLAN);
7289                         break;
7290                 case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID:
7291                         if (action_flags & MLX5_FLOW_ACTION_OF_PUSH_VLAN)
7292                                 break;
7293                         flow_dev_get_vlan_info_from_items(items, &vlan);
7294                         mlx5_update_vlan_vid_pcp(actions, &vlan);
7295                         /* If no VLAN push - this is a modify header action */
7296                         if (flow_dv_convert_action_modify_vlan_vid
7297                                                 (mhdr_res, actions, error))
7298                                 return -rte_errno;
7299                         action_flags |= MLX5_FLOW_ACTION_OF_SET_VLAN_VID;
7300                         break;
7301                 case RTE_FLOW_ACTION_TYPE_VXLAN_ENCAP:
7302                 case RTE_FLOW_ACTION_TYPE_NVGRE_ENCAP:
7303                         if (flow_dv_create_action_l2_encap(dev, actions,
7304                                                            dev_flow,
7305                                                            attr->transfer,
7306                                                            error))
7307                                 return -rte_errno;
7308                         dev_flow->dv.actions[actions_n++] =
7309                                 dev_flow->dv.encap_decap->verbs_action;
7310                         action_flags |= MLX5_FLOW_ACTION_ENCAP;
7311                         break;
7312                 case RTE_FLOW_ACTION_TYPE_VXLAN_DECAP:
7313                 case RTE_FLOW_ACTION_TYPE_NVGRE_DECAP:
7314                         if (flow_dv_create_action_l2_decap(dev, dev_flow,
7315                                                            attr->transfer,
7316                                                            error))
7317                                 return -rte_errno;
7318                         dev_flow->dv.actions[actions_n++] =
7319                                 dev_flow->dv.encap_decap->verbs_action;
7320                         action_flags |= MLX5_FLOW_ACTION_DECAP;
7321                         break;
7322                 case RTE_FLOW_ACTION_TYPE_RAW_ENCAP:
7323                         /* Handle encap with preceding decap. */
7324                         if (action_flags & MLX5_FLOW_ACTION_DECAP) {
7325                                 if (flow_dv_create_action_raw_encap
7326                                         (dev, actions, dev_flow, attr, error))
7327                                         return -rte_errno;
7328                                 dev_flow->dv.actions[actions_n++] =
7329                                         dev_flow->dv.encap_decap->verbs_action;
7330                         } else {
7331                                 /* Handle encap without preceding decap. */
7332                                 if (flow_dv_create_action_l2_encap
7333                                     (dev, actions, dev_flow, attr->transfer,
7334                                      error))
7335                                         return -rte_errno;
7336                                 dev_flow->dv.actions[actions_n++] =
7337                                         dev_flow->dv.encap_decap->verbs_action;
7338                         }
7339                         action_flags |= MLX5_FLOW_ACTION_ENCAP;
7340                         break;
7341                 case RTE_FLOW_ACTION_TYPE_RAW_DECAP:
7342                         while ((++action)->type == RTE_FLOW_ACTION_TYPE_VOID)
7343                                 ;
7344                         if (action->type != RTE_FLOW_ACTION_TYPE_RAW_ENCAP) {
7345                                 if (flow_dv_create_action_l2_decap
7346                                     (dev, dev_flow, attr->transfer, error))
7347                                         return -rte_errno;
7348                                 dev_flow->dv.actions[actions_n++] =
7349                                         dev_flow->dv.encap_decap->verbs_action;
7350                         }
7351                         /* If decap is followed by encap, handle it at encap. */
7352                         action_flags |= MLX5_FLOW_ACTION_DECAP;
7353                         break;
7354                 case RTE_FLOW_ACTION_TYPE_JUMP:
7355                         jump_data = action->conf;
7356                         ret = mlx5_flow_group_to_table(attr, dev_flow->external,
7357                                                        jump_data->group,
7358                                                        !!priv->fdb_def_rule,
7359                                                        &table, error);
7360                         if (ret)
7361                                 return ret;
7362                         tbl = flow_dv_tbl_resource_get(dev, table,
7363                                                        attr->egress,
7364                                                        attr->transfer, error);
7365                         if (!tbl)
7366                                 return rte_flow_error_set
7367                                                 (error, errno,
7368                                                  RTE_FLOW_ERROR_TYPE_ACTION,
7369                                                  NULL,
7370                                                  "cannot create jump action.");
7371                         if (flow_dv_jump_tbl_resource_register
7372                             (dev, tbl, dev_flow, error)) {
7373                                 flow_dv_tbl_resource_release(dev, tbl);
7374                                 return rte_flow_error_set
7375                                                 (error, errno,
7376                                                  RTE_FLOW_ERROR_TYPE_ACTION,
7377                                                  NULL,
7378                                                  "cannot create jump action.");
7379                         }
7380                         dev_flow->dv.actions[actions_n++] =
7381                                 dev_flow->dv.jump->action;
7382                         action_flags |= MLX5_FLOW_ACTION_JUMP;
7383                         break;
7384                 case RTE_FLOW_ACTION_TYPE_SET_MAC_SRC:
7385                 case RTE_FLOW_ACTION_TYPE_SET_MAC_DST:
7386                         if (flow_dv_convert_action_modify_mac
7387                                         (mhdr_res, actions, error))
7388                                 return -rte_errno;
7389                         action_flags |= actions->type ==
7390                                         RTE_FLOW_ACTION_TYPE_SET_MAC_SRC ?
7391                                         MLX5_FLOW_ACTION_SET_MAC_SRC :
7392                                         MLX5_FLOW_ACTION_SET_MAC_DST;
7393                         break;
7394                 case RTE_FLOW_ACTION_TYPE_SET_IPV4_SRC:
7395                 case RTE_FLOW_ACTION_TYPE_SET_IPV4_DST:
7396                         if (flow_dv_convert_action_modify_ipv4
7397                                         (mhdr_res, actions, error))
7398                                 return -rte_errno;
7399                         action_flags |= actions->type ==
7400                                         RTE_FLOW_ACTION_TYPE_SET_IPV4_SRC ?
7401                                         MLX5_FLOW_ACTION_SET_IPV4_SRC :
7402                                         MLX5_FLOW_ACTION_SET_IPV4_DST;
7403                         break;
7404                 case RTE_FLOW_ACTION_TYPE_SET_IPV6_SRC:
7405                 case RTE_FLOW_ACTION_TYPE_SET_IPV6_DST:
7406                         if (flow_dv_convert_action_modify_ipv6
7407                                         (mhdr_res, actions, error))
7408                                 return -rte_errno;
7409                         action_flags |= actions->type ==
7410                                         RTE_FLOW_ACTION_TYPE_SET_IPV6_SRC ?
7411                                         MLX5_FLOW_ACTION_SET_IPV6_SRC :
7412                                         MLX5_FLOW_ACTION_SET_IPV6_DST;
7413                         break;
7414                 case RTE_FLOW_ACTION_TYPE_SET_TP_SRC:
7415                 case RTE_FLOW_ACTION_TYPE_SET_TP_DST:
7416                         if (flow_dv_convert_action_modify_tp
7417                                         (mhdr_res, actions, items,
7418                                          &flow_attr, error))
7419                                 return -rte_errno;
7420                         action_flags |= actions->type ==
7421                                         RTE_FLOW_ACTION_TYPE_SET_TP_SRC ?
7422                                         MLX5_FLOW_ACTION_SET_TP_SRC :
7423                                         MLX5_FLOW_ACTION_SET_TP_DST;
7424                         break;
7425                 case RTE_FLOW_ACTION_TYPE_DEC_TTL:
7426                         if (flow_dv_convert_action_modify_dec_ttl
7427                                         (mhdr_res, items, &flow_attr, error))
7428                                 return -rte_errno;
7429                         action_flags |= MLX5_FLOW_ACTION_DEC_TTL;
7430                         break;
7431                 case RTE_FLOW_ACTION_TYPE_SET_TTL:
7432                         if (flow_dv_convert_action_modify_ttl
7433                                         (mhdr_res, actions, items,
7434                                          &flow_attr, error))
7435                                 return -rte_errno;
7436                         action_flags |= MLX5_FLOW_ACTION_SET_TTL;
7437                         break;
7438                 case RTE_FLOW_ACTION_TYPE_INC_TCP_SEQ:
7439                 case RTE_FLOW_ACTION_TYPE_DEC_TCP_SEQ:
7440                         if (flow_dv_convert_action_modify_tcp_seq
7441                                         (mhdr_res, actions, error))
7442                                 return -rte_errno;
7443                         action_flags |= actions->type ==
7444                                         RTE_FLOW_ACTION_TYPE_INC_TCP_SEQ ?
7445                                         MLX5_FLOW_ACTION_INC_TCP_SEQ :
7446                                         MLX5_FLOW_ACTION_DEC_TCP_SEQ;
7447                         break;
7448
7449                 case RTE_FLOW_ACTION_TYPE_INC_TCP_ACK:
7450                 case RTE_FLOW_ACTION_TYPE_DEC_TCP_ACK:
7451                         if (flow_dv_convert_action_modify_tcp_ack
7452                                         (mhdr_res, actions, error))
7453                                 return -rte_errno;
7454                         action_flags |= actions->type ==
7455                                         RTE_FLOW_ACTION_TYPE_INC_TCP_ACK ?
7456                                         MLX5_FLOW_ACTION_INC_TCP_ACK :
7457                                         MLX5_FLOW_ACTION_DEC_TCP_ACK;
7458                         break;
7459                 case MLX5_RTE_FLOW_ACTION_TYPE_TAG:
7460                         if (flow_dv_convert_action_set_reg
7461                                         (mhdr_res, actions, error))
7462                                 return -rte_errno;
7463                         action_flags |= MLX5_FLOW_ACTION_SET_TAG;
7464                         break;
7465                 case MLX5_RTE_FLOW_ACTION_TYPE_COPY_MREG:
7466                         if (flow_dv_convert_action_copy_mreg
7467                                         (dev, mhdr_res, actions, error))
7468                                 return -rte_errno;
7469                         action_flags |= MLX5_FLOW_ACTION_SET_TAG;
7470                         break;
7471                 case RTE_FLOW_ACTION_TYPE_METER:
7472                         mtr = actions->conf;
7473                         if (!flow->meter) {
7474                                 flow->meter = mlx5_flow_meter_attach(priv,
7475                                                         mtr->mtr_id, attr,
7476                                                         error);
7477                                 if (!flow->meter)
7478                                         return rte_flow_error_set(error,
7479                                                 rte_errno,
7480                                                 RTE_FLOW_ERROR_TYPE_ACTION,
7481                                                 NULL,
7482                                                 "meter not found "
7483                                                 "or invalid parameters");
7484                         }
7485                         /* Set the meter action. */
7486                         dev_flow->dv.actions[actions_n++] =
7487                                 flow->meter->mfts->meter_action;
7488                         action_flags |= MLX5_FLOW_ACTION_METER;
7489                         break;
7490                 case RTE_FLOW_ACTION_TYPE_SET_IPV4_DSCP:
7491                         if (flow_dv_convert_action_modify_ipv4_dscp(mhdr_res,
7492                                                               actions, error))
7493                                 return -rte_errno;
7494                         action_flags |= MLX5_FLOW_ACTION_SET_IPV4_DSCP;
7495                         break;
7496                 case RTE_FLOW_ACTION_TYPE_SET_IPV6_DSCP:
7497                         if (flow_dv_convert_action_modify_ipv6_dscp(mhdr_res,
7498                                                               actions, error))
7499                                 return -rte_errno;
7500                         action_flags |= MLX5_FLOW_ACTION_SET_IPV6_DSCP;
7501                         break;
7502                 case RTE_FLOW_ACTION_TYPE_END:
7503                         actions_end = true;
7504                         if (mhdr_res->actions_num) {
7505                                 /* create modify action if needed. */
7506                                 if (flow_dv_modify_hdr_resource_register
7507                                         (dev, mhdr_res, dev_flow, error))
7508                                         return -rte_errno;
7509                                 dev_flow->dv.actions[modify_action_position] =
7510                                         dev_flow->dv.modify_hdr->verbs_action;
7511                         }
7512                         break;
7513                 default:
7514                         break;
7515                 }
7516                 if (mhdr_res->actions_num &&
7517                     modify_action_position == UINT32_MAX)
7518                         modify_action_position = actions_n++;
7519         }
7520         dev_flow->dv.actions_n = actions_n;
7521         dev_flow->actions = action_flags;
7522         for (; items->type != RTE_FLOW_ITEM_TYPE_END; items++) {
7523                 int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL);
7524                 int item_type = items->type;
7525
7526                 switch (item_type) {
7527                 case RTE_FLOW_ITEM_TYPE_PORT_ID:
7528                         flow_dv_translate_item_port_id(dev, match_mask,
7529                                                        match_value, items);
7530                         last_item = MLX5_FLOW_ITEM_PORT_ID;
7531                         break;
7532                 case RTE_FLOW_ITEM_TYPE_ETH:
7533                         flow_dv_translate_item_eth(match_mask, match_value,
7534                                                    items, tunnel);
7535                         matcher.priority = MLX5_PRIORITY_MAP_L2;
7536                         last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L2 :
7537                                              MLX5_FLOW_LAYER_OUTER_L2;
7538                         break;
7539                 case RTE_FLOW_ITEM_TYPE_VLAN:
7540                         flow_dv_translate_item_vlan(dev_flow,
7541                                                     match_mask, match_value,
7542                                                     items, tunnel);
7543                         matcher.priority = MLX5_PRIORITY_MAP_L2;
7544                         last_item = tunnel ? (MLX5_FLOW_LAYER_INNER_L2 |
7545                                               MLX5_FLOW_LAYER_INNER_VLAN) :
7546                                              (MLX5_FLOW_LAYER_OUTER_L2 |
7547                                               MLX5_FLOW_LAYER_OUTER_VLAN);
7548                         break;
7549                 case RTE_FLOW_ITEM_TYPE_IPV4:
7550                         mlx5_flow_tunnel_ip_check(items, next_protocol,
7551                                                   &item_flags, &tunnel);
7552                         flow_dv_translate_item_ipv4(match_mask, match_value,
7553                                                     items, tunnel,
7554                                                     dev_flow->group);
7555                         matcher.priority = MLX5_PRIORITY_MAP_L3;
7556                         last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L3_IPV4 :
7557                                              MLX5_FLOW_LAYER_OUTER_L3_IPV4;
7558                         if (items->mask != NULL &&
7559                             ((const struct rte_flow_item_ipv4 *)
7560                              items->mask)->hdr.next_proto_id) {
7561                                 next_protocol =
7562                                         ((const struct rte_flow_item_ipv4 *)
7563                                          (items->spec))->hdr.next_proto_id;
7564                                 next_protocol &=
7565                                         ((const struct rte_flow_item_ipv4 *)
7566                                          (items->mask))->hdr.next_proto_id;
7567                         } else {
7568                                 /* Reset for inner layer. */
7569                                 next_protocol = 0xff;
7570                         }
7571                         break;
7572                 case RTE_FLOW_ITEM_TYPE_IPV6:
7573                         mlx5_flow_tunnel_ip_check(items, next_protocol,
7574                                                   &item_flags, &tunnel);
7575                         flow_dv_translate_item_ipv6(match_mask, match_value,
7576                                                     items, tunnel,
7577                                                     dev_flow->group);
7578                         matcher.priority = MLX5_PRIORITY_MAP_L3;
7579                         last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L3_IPV6 :
7580                                              MLX5_FLOW_LAYER_OUTER_L3_IPV6;
7581                         if (items->mask != NULL &&
7582                             ((const struct rte_flow_item_ipv6 *)
7583                              items->mask)->hdr.proto) {
7584                                 next_protocol =
7585                                         ((const struct rte_flow_item_ipv6 *)
7586                                          items->spec)->hdr.proto;
7587                                 next_protocol &=
7588                                         ((const struct rte_flow_item_ipv6 *)
7589                                          items->mask)->hdr.proto;
7590                         } else {
7591                                 /* Reset for inner layer. */
7592                                 next_protocol = 0xff;
7593                         }
7594                         break;
7595                 case RTE_FLOW_ITEM_TYPE_TCP:
7596                         flow_dv_translate_item_tcp(match_mask, match_value,
7597                                                    items, tunnel);
7598                         matcher.priority = MLX5_PRIORITY_MAP_L4;
7599                         last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L4_TCP :
7600                                              MLX5_FLOW_LAYER_OUTER_L4_TCP;
7601                         break;
7602                 case RTE_FLOW_ITEM_TYPE_UDP:
7603                         flow_dv_translate_item_udp(match_mask, match_value,
7604                                                    items, tunnel);
7605                         matcher.priority = MLX5_PRIORITY_MAP_L4;
7606                         last_item = tunnel ? MLX5_FLOW_LAYER_INNER_L4_UDP :
7607                                              MLX5_FLOW_LAYER_OUTER_L4_UDP;
7608                         break;
7609                 case RTE_FLOW_ITEM_TYPE_GRE:
7610                         flow_dv_translate_item_gre(match_mask, match_value,
7611                                                    items, tunnel);
7612                         last_item = MLX5_FLOW_LAYER_GRE;
7613                         break;
7614                 case RTE_FLOW_ITEM_TYPE_GRE_KEY:
7615                         flow_dv_translate_item_gre_key(match_mask,
7616                                                        match_value, items);
7617                         last_item = MLX5_FLOW_LAYER_GRE_KEY;
7618                         break;
7619                 case RTE_FLOW_ITEM_TYPE_NVGRE:
7620                         flow_dv_translate_item_nvgre(match_mask, match_value,
7621                                                      items, tunnel);
7622                         last_item = MLX5_FLOW_LAYER_GRE;
7623                         break;
7624                 case RTE_FLOW_ITEM_TYPE_VXLAN:
7625                         flow_dv_translate_item_vxlan(match_mask, match_value,
7626                                                      items, tunnel);
7627                         last_item = MLX5_FLOW_LAYER_VXLAN;
7628                         break;
7629                 case RTE_FLOW_ITEM_TYPE_VXLAN_GPE:
7630                         flow_dv_translate_item_vxlan_gpe(match_mask,
7631                                                          match_value, items,
7632                                                          tunnel);
7633                         last_item = MLX5_FLOW_LAYER_VXLAN_GPE;
7634                         break;
7635                 case RTE_FLOW_ITEM_TYPE_GENEVE:
7636                         flow_dv_translate_item_geneve(match_mask, match_value,
7637                                                       items, tunnel);
7638                         last_item = MLX5_FLOW_LAYER_GENEVE;
7639                         break;
7640                 case RTE_FLOW_ITEM_TYPE_MPLS:
7641                         flow_dv_translate_item_mpls(match_mask, match_value,
7642                                                     items, last_item, tunnel);
7643                         last_item = MLX5_FLOW_LAYER_MPLS;
7644                         break;
7645                 case RTE_FLOW_ITEM_TYPE_MARK:
7646                         flow_dv_translate_item_mark(dev, match_mask,
7647                                                     match_value, items);
7648                         last_item = MLX5_FLOW_ITEM_MARK;
7649                         break;
7650                 case RTE_FLOW_ITEM_TYPE_META:
7651                         flow_dv_translate_item_meta(dev, match_mask,
7652                                                     match_value, attr, items);
7653                         last_item = MLX5_FLOW_ITEM_METADATA;
7654                         break;
7655                 case RTE_FLOW_ITEM_TYPE_ICMP:
7656                         flow_dv_translate_item_icmp(match_mask, match_value,
7657                                                     items, tunnel);
7658                         last_item = MLX5_FLOW_LAYER_ICMP;
7659                         break;
7660                 case RTE_FLOW_ITEM_TYPE_ICMP6:
7661                         flow_dv_translate_item_icmp6(match_mask, match_value,
7662                                                       items, tunnel);
7663                         last_item = MLX5_FLOW_LAYER_ICMP6;
7664                         break;
7665                 case RTE_FLOW_ITEM_TYPE_TAG:
7666                         flow_dv_translate_item_tag(dev, match_mask,
7667                                                    match_value, items);
7668                         last_item = MLX5_FLOW_ITEM_TAG;
7669                         break;
7670                 case MLX5_RTE_FLOW_ITEM_TYPE_TAG:
7671                         flow_dv_translate_mlx5_item_tag(dev, match_mask,
7672                                                         match_value, items);
7673                         last_item = MLX5_FLOW_ITEM_TAG;
7674                         break;
7675                 case MLX5_RTE_FLOW_ITEM_TYPE_TX_QUEUE:
7676                         flow_dv_translate_item_tx_queue(dev, match_mask,
7677                                                         match_value,
7678                                                         items);
7679                         last_item = MLX5_FLOW_ITEM_TX_QUEUE;
7680                         break;
7681                 case RTE_FLOW_ITEM_TYPE_GTP:
7682                         flow_dv_translate_item_gtp(match_mask, match_value,
7683                                                    items, tunnel);
7684                         last_item = MLX5_FLOW_LAYER_GTP;
7685                         break;
7686                 default:
7687                         break;
7688                 }
7689                 item_flags |= last_item;
7690         }
7691         /*
7692          * When E-Switch mode is enabled, we have two cases where we need to
7693          * set the source port manually.
7694          * The first one, is in case of Nic steering rule, and the second is
7695          * E-Switch rule where no port_id item was found. In both cases
7696          * the source port is set according the current port in use.
7697          */
7698         if (!(item_flags & MLX5_FLOW_ITEM_PORT_ID) &&
7699             (priv->representor || priv->master)) {
7700                 if (flow_dv_translate_item_port_id(dev, match_mask,
7701                                                    match_value, NULL))
7702                         return -rte_errno;
7703         }
7704 #ifdef RTE_LIBRTE_MLX5_DEBUG
7705         MLX5_ASSERT(!flow_dv_check_valid_spec(matcher.mask.buf,
7706                                               dev_flow->dv.value.buf));
7707 #endif
7708         dev_flow->layers = item_flags;
7709         if (action_flags & MLX5_FLOW_ACTION_RSS)
7710                 flow_dv_hashfields_set(dev_flow);
7711         /* Register matcher. */
7712         matcher.crc = rte_raw_cksum((const void *)matcher.mask.buf,
7713                                     matcher.mask.size);
7714         matcher.priority = mlx5_flow_adjust_priority(dev, priority,
7715                                                      matcher.priority);
7716         /* reserved field no needs to be set to 0 here. */
7717         tbl_key.domain = attr->transfer;
7718         tbl_key.direction = attr->egress;
7719         tbl_key.table_id = dev_flow->group;
7720         if (flow_dv_matcher_register(dev, &matcher, &tbl_key, dev_flow, error))
7721                 return -rte_errno;
7722         return 0;
7723 }
7724
7725 /**
7726  * Apply the flow to the NIC, lock free,
7727  * (mutex should be acquired by caller).
7728  *
7729  * @param[in] dev
7730  *   Pointer to the Ethernet device structure.
7731  * @param[in, out] flow
7732  *   Pointer to flow structure.
7733  * @param[out] error
7734  *   Pointer to error structure.
7735  *
7736  * @return
7737  *   0 on success, a negative errno value otherwise and rte_errno is set.
7738  */
7739 static int
7740 __flow_dv_apply(struct rte_eth_dev *dev, struct rte_flow *flow,
7741                 struct rte_flow_error *error)
7742 {
7743         struct mlx5_flow_dv *dv;
7744         struct mlx5_flow *dev_flow;
7745         struct mlx5_priv *priv = dev->data->dev_private;
7746         int n;
7747         int err;
7748
7749         LIST_FOREACH(dev_flow, &flow->dev_flows, next) {
7750                 dv = &dev_flow->dv;
7751                 n = dv->actions_n;
7752                 if (dev_flow->actions & MLX5_FLOW_ACTION_DROP) {
7753                         if (dev_flow->transfer) {
7754                                 dv->actions[n++] = priv->sh->esw_drop_action;
7755                         } else {
7756                                 dv->hrxq = mlx5_hrxq_drop_new(dev);
7757                                 if (!dv->hrxq) {
7758                                         rte_flow_error_set
7759                                                 (error, errno,
7760                                                  RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
7761                                                  NULL,
7762                                                  "cannot get drop hash queue");
7763                                         goto error;
7764                                 }
7765                                 dv->actions[n++] = dv->hrxq->action;
7766                         }
7767                 } else if (dev_flow->actions &
7768                            (MLX5_FLOW_ACTION_QUEUE | MLX5_FLOW_ACTION_RSS)) {
7769                         struct mlx5_hrxq *hrxq;
7770
7771                         MLX5_ASSERT(flow->rss.queue);
7772                         hrxq = mlx5_hrxq_get(dev, flow->rss.key,
7773                                              MLX5_RSS_HASH_KEY_LEN,
7774                                              dev_flow->hash_fields,
7775                                              (*flow->rss.queue),
7776                                              flow->rss.queue_num);
7777                         if (!hrxq) {
7778                                 hrxq = mlx5_hrxq_new
7779                                         (dev, flow->rss.key,
7780                                          MLX5_RSS_HASH_KEY_LEN,
7781                                          dev_flow->hash_fields,
7782                                          (*flow->rss.queue),
7783                                          flow->rss.queue_num,
7784                                          !!(dev_flow->layers &
7785                                             MLX5_FLOW_LAYER_TUNNEL));
7786                         }
7787                         if (!hrxq) {
7788                                 rte_flow_error_set
7789                                         (error, rte_errno,
7790                                          RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
7791                                          "cannot get hash queue");
7792                                 goto error;
7793                         }
7794                         dv->hrxq = hrxq;
7795                         dv->actions[n++] = dv->hrxq->action;
7796                 }
7797                 dv->flow =
7798                         mlx5_glue->dv_create_flow(dv->matcher->matcher_object,
7799                                                   (void *)&dv->value, n,
7800                                                   dv->actions);
7801                 if (!dv->flow) {
7802                         rte_flow_error_set(error, errno,
7803                                            RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
7804                                            NULL,
7805                                            "hardware refuses to create flow");
7806                         goto error;
7807                 }
7808                 if (priv->vmwa_context &&
7809                     dev_flow->dv.vf_vlan.tag &&
7810                     !dev_flow->dv.vf_vlan.created) {
7811                         /*
7812                          * The rule contains the VLAN pattern.
7813                          * For VF we are going to create VLAN
7814                          * interface to make hypervisor set correct
7815                          * e-Switch vport context.
7816                          */
7817                         mlx5_vlan_vmwa_acquire(dev, &dev_flow->dv.vf_vlan);
7818                 }
7819         }
7820         return 0;
7821 error:
7822         err = rte_errno; /* Save rte_errno before cleanup. */
7823         LIST_FOREACH(dev_flow, &flow->dev_flows, next) {
7824                 struct mlx5_flow_dv *dv = &dev_flow->dv;
7825                 if (dv->hrxq) {
7826                         if (dev_flow->actions & MLX5_FLOW_ACTION_DROP)
7827                                 mlx5_hrxq_drop_release(dev);
7828                         else
7829                                 mlx5_hrxq_release(dev, dv->hrxq);
7830                         dv->hrxq = NULL;
7831                 }
7832                 if (dev_flow->dv.vf_vlan.tag &&
7833                     dev_flow->dv.vf_vlan.created)
7834                         mlx5_vlan_vmwa_release(dev, &dev_flow->dv.vf_vlan);
7835         }
7836         rte_errno = err; /* Restore rte_errno. */
7837         return -rte_errno;
7838 }
7839
7840 /**
7841  * Release the flow matcher.
7842  *
7843  * @param dev
7844  *   Pointer to Ethernet device.
7845  * @param flow
7846  *   Pointer to mlx5_flow.
7847  *
7848  * @return
7849  *   1 while a reference on it exists, 0 when freed.
7850  */
7851 static int
7852 flow_dv_matcher_release(struct rte_eth_dev *dev,
7853                         struct mlx5_flow *flow)
7854 {
7855         struct mlx5_flow_dv_matcher *matcher = flow->dv.matcher;
7856
7857         MLX5_ASSERT(matcher->matcher_object);
7858         DRV_LOG(DEBUG, "port %u matcher %p: refcnt %d--",
7859                 dev->data->port_id, (void *)matcher,
7860                 rte_atomic32_read(&matcher->refcnt));
7861         if (rte_atomic32_dec_and_test(&matcher->refcnt)) {
7862                 claim_zero(mlx5_glue->dv_destroy_flow_matcher
7863                            (matcher->matcher_object));
7864                 LIST_REMOVE(matcher, next);
7865                 /* table ref-- in release interface. */
7866                 flow_dv_tbl_resource_release(dev, matcher->tbl);
7867                 rte_free(matcher);
7868                 DRV_LOG(DEBUG, "port %u matcher %p: removed",
7869                         dev->data->port_id, (void *)matcher);
7870                 return 0;
7871         }
7872         return 1;
7873 }
7874
7875 /**
7876  * Release an encap/decap resource.
7877  *
7878  * @param flow
7879  *   Pointer to mlx5_flow.
7880  *
7881  * @return
7882  *   1 while a reference on it exists, 0 when freed.
7883  */
7884 static int
7885 flow_dv_encap_decap_resource_release(struct mlx5_flow *flow)
7886 {
7887         struct mlx5_flow_dv_encap_decap_resource *cache_resource =
7888                                                 flow->dv.encap_decap;
7889
7890         MLX5_ASSERT(cache_resource->verbs_action);
7891         DRV_LOG(DEBUG, "encap/decap resource %p: refcnt %d--",
7892                 (void *)cache_resource,
7893                 rte_atomic32_read(&cache_resource->refcnt));
7894         if (rte_atomic32_dec_and_test(&cache_resource->refcnt)) {
7895                 claim_zero(mlx5_glue->destroy_flow_action
7896                                 (cache_resource->verbs_action));
7897                 LIST_REMOVE(cache_resource, next);
7898                 rte_free(cache_resource);
7899                 DRV_LOG(DEBUG, "encap/decap resource %p: removed",
7900                         (void *)cache_resource);
7901                 return 0;
7902         }
7903         return 1;
7904 }
7905
7906 /**
7907  * Release an jump to table action resource.
7908  *
7909  * @param dev
7910  *   Pointer to Ethernet device.
7911  * @param flow
7912  *   Pointer to mlx5_flow.
7913  *
7914  * @return
7915  *   1 while a reference on it exists, 0 when freed.
7916  */
7917 static int
7918 flow_dv_jump_tbl_resource_release(struct rte_eth_dev *dev,
7919                                   struct mlx5_flow *flow)
7920 {
7921         struct mlx5_flow_dv_jump_tbl_resource *cache_resource = flow->dv.jump;
7922         struct mlx5_flow_tbl_data_entry *tbl_data =
7923                         container_of(cache_resource,
7924                                      struct mlx5_flow_tbl_data_entry, jump);
7925
7926         MLX5_ASSERT(cache_resource->action);
7927         DRV_LOG(DEBUG, "jump table resource %p: refcnt %d--",
7928                 (void *)cache_resource,
7929                 rte_atomic32_read(&cache_resource->refcnt));
7930         if (rte_atomic32_dec_and_test(&cache_resource->refcnt)) {
7931                 claim_zero(mlx5_glue->destroy_flow_action
7932                                 (cache_resource->action));
7933                 /* jump action memory free is inside the table release. */
7934                 flow_dv_tbl_resource_release(dev, &tbl_data->tbl);
7935                 DRV_LOG(DEBUG, "jump table resource %p: removed",
7936                         (void *)cache_resource);
7937                 return 0;
7938         }
7939         return 1;
7940 }
7941
7942 /**
7943  * Release a modify-header resource.
7944  *
7945  * @param flow
7946  *   Pointer to mlx5_flow.
7947  *
7948  * @return
7949  *   1 while a reference on it exists, 0 when freed.
7950  */
7951 static int
7952 flow_dv_modify_hdr_resource_release(struct mlx5_flow *flow)
7953 {
7954         struct mlx5_flow_dv_modify_hdr_resource *cache_resource =
7955                                                 flow->dv.modify_hdr;
7956
7957         MLX5_ASSERT(cache_resource->verbs_action);
7958         DRV_LOG(DEBUG, "modify-header resource %p: refcnt %d--",
7959                 (void *)cache_resource,
7960                 rte_atomic32_read(&cache_resource->refcnt));
7961         if (rte_atomic32_dec_and_test(&cache_resource->refcnt)) {
7962                 claim_zero(mlx5_glue->destroy_flow_action
7963                                 (cache_resource->verbs_action));
7964                 LIST_REMOVE(cache_resource, next);
7965                 rte_free(cache_resource);
7966                 DRV_LOG(DEBUG, "modify-header resource %p: removed",
7967                         (void *)cache_resource);
7968                 return 0;
7969         }
7970         return 1;
7971 }
7972
7973 /**
7974  * Release port ID action resource.
7975  *
7976  * @param flow
7977  *   Pointer to mlx5_flow.
7978  *
7979  * @return
7980  *   1 while a reference on it exists, 0 when freed.
7981  */
7982 static int
7983 flow_dv_port_id_action_resource_release(struct mlx5_flow *flow)
7984 {
7985         struct mlx5_flow_dv_port_id_action_resource *cache_resource =
7986                 flow->dv.port_id_action;
7987
7988         MLX5_ASSERT(cache_resource->action);
7989         DRV_LOG(DEBUG, "port ID action resource %p: refcnt %d--",
7990                 (void *)cache_resource,
7991                 rte_atomic32_read(&cache_resource->refcnt));
7992         if (rte_atomic32_dec_and_test(&cache_resource->refcnt)) {
7993                 claim_zero(mlx5_glue->destroy_flow_action
7994                                 (cache_resource->action));
7995                 LIST_REMOVE(cache_resource, next);
7996                 rte_free(cache_resource);
7997                 DRV_LOG(DEBUG, "port id action resource %p: removed",
7998                         (void *)cache_resource);
7999                 return 0;
8000         }
8001         return 1;
8002 }
8003
8004 /**
8005  * Release push vlan action resource.
8006  *
8007  * @param flow
8008  *   Pointer to mlx5_flow.
8009  *
8010  * @return
8011  *   1 while a reference on it exists, 0 when freed.
8012  */
8013 static int
8014 flow_dv_push_vlan_action_resource_release(struct mlx5_flow *flow)
8015 {
8016         struct mlx5_flow_dv_push_vlan_action_resource *cache_resource =
8017                 flow->dv.push_vlan_res;
8018
8019         MLX5_ASSERT(cache_resource->action);
8020         DRV_LOG(DEBUG, "push VLAN action resource %p: refcnt %d--",
8021                 (void *)cache_resource,
8022                 rte_atomic32_read(&cache_resource->refcnt));
8023         if (rte_atomic32_dec_and_test(&cache_resource->refcnt)) {
8024                 claim_zero(mlx5_glue->destroy_flow_action
8025                                 (cache_resource->action));
8026                 LIST_REMOVE(cache_resource, next);
8027                 rte_free(cache_resource);
8028                 DRV_LOG(DEBUG, "push vlan action resource %p: removed",
8029                         (void *)cache_resource);
8030                 return 0;
8031         }
8032         return 1;
8033 }
8034
8035 /**
8036  * Remove the flow from the NIC but keeps it in memory.
8037  * Lock free, (mutex should be acquired by caller).
8038  *
8039  * @param[in] dev
8040  *   Pointer to Ethernet device.
8041  * @param[in, out] flow
8042  *   Pointer to flow structure.
8043  */
8044 static void
8045 __flow_dv_remove(struct rte_eth_dev *dev, struct rte_flow *flow)
8046 {
8047         struct mlx5_flow_dv *dv;
8048         struct mlx5_flow *dev_flow;
8049
8050         if (!flow)
8051                 return;
8052         LIST_FOREACH(dev_flow, &flow->dev_flows, next) {
8053                 dv = &dev_flow->dv;
8054                 if (dv->flow) {
8055                         claim_zero(mlx5_glue->dv_destroy_flow(dv->flow));
8056                         dv->flow = NULL;
8057                 }
8058                 if (dv->hrxq) {
8059                         if (dev_flow->actions & MLX5_FLOW_ACTION_DROP)
8060                                 mlx5_hrxq_drop_release(dev);
8061                         else
8062                                 mlx5_hrxq_release(dev, dv->hrxq);
8063                         dv->hrxq = NULL;
8064                 }
8065                 if (dev_flow->dv.vf_vlan.tag &&
8066                     dev_flow->dv.vf_vlan.created)
8067                         mlx5_vlan_vmwa_release(dev, &dev_flow->dv.vf_vlan);
8068         }
8069 }
8070
8071 /**
8072  * Remove the flow from the NIC and the memory.
8073  * Lock free, (mutex should be acquired by caller).
8074  *
8075  * @param[in] dev
8076  *   Pointer to the Ethernet device structure.
8077  * @param[in, out] flow
8078  *   Pointer to flow structure.
8079  */
8080 static void
8081 __flow_dv_destroy(struct rte_eth_dev *dev, struct rte_flow *flow)
8082 {
8083         struct mlx5_flow *dev_flow;
8084
8085         if (!flow)
8086                 return;
8087         __flow_dv_remove(dev, flow);
8088         if (flow->counter) {
8089                 flow_dv_counter_release(dev, flow->counter);
8090                 flow->counter = NULL;
8091         }
8092         if (flow->meter) {
8093                 mlx5_flow_meter_detach(flow->meter);
8094                 flow->meter = NULL;
8095         }
8096         while (!LIST_EMPTY(&flow->dev_flows)) {
8097                 dev_flow = LIST_FIRST(&flow->dev_flows);
8098                 LIST_REMOVE(dev_flow, next);
8099                 if (dev_flow->dv.matcher)
8100                         flow_dv_matcher_release(dev, dev_flow);
8101                 if (dev_flow->dv.encap_decap)
8102                         flow_dv_encap_decap_resource_release(dev_flow);
8103                 if (dev_flow->dv.modify_hdr)
8104                         flow_dv_modify_hdr_resource_release(dev_flow);
8105                 if (dev_flow->dv.jump)
8106                         flow_dv_jump_tbl_resource_release(dev, dev_flow);
8107                 if (dev_flow->dv.port_id_action)
8108                         flow_dv_port_id_action_resource_release(dev_flow);
8109                 if (dev_flow->dv.push_vlan_res)
8110                         flow_dv_push_vlan_action_resource_release(dev_flow);
8111                 if (dev_flow->dv.tag_resource)
8112                         flow_dv_tag_release(dev, dev_flow->dv.tag_resource);
8113                 rte_free(dev_flow);
8114         }
8115 }
8116
8117 /**
8118  * Query a dv flow  rule for its statistics via devx.
8119  *
8120  * @param[in] dev
8121  *   Pointer to Ethernet device.
8122  * @param[in] flow
8123  *   Pointer to the sub flow.
8124  * @param[out] data
8125  *   data retrieved by the query.
8126  * @param[out] error
8127  *   Perform verbose error reporting if not NULL.
8128  *
8129  * @return
8130  *   0 on success, a negative errno value otherwise and rte_errno is set.
8131  */
8132 static int
8133 flow_dv_query_count(struct rte_eth_dev *dev, struct rte_flow *flow,
8134                     void *data, struct rte_flow_error *error)
8135 {
8136         struct mlx5_priv *priv = dev->data->dev_private;
8137         struct rte_flow_query_count *qc = data;
8138
8139         if (!priv->config.devx)
8140                 return rte_flow_error_set(error, ENOTSUP,
8141                                           RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
8142                                           NULL,
8143                                           "counters are not supported");
8144         if (flow->counter) {
8145                 uint64_t pkts, bytes;
8146                 int err = _flow_dv_query_count(dev, flow->counter, &pkts,
8147                                                &bytes);
8148
8149                 if (err)
8150                         return rte_flow_error_set(error, -err,
8151                                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
8152                                         NULL, "cannot read counters");
8153                 qc->hits_set = 1;
8154                 qc->bytes_set = 1;
8155                 qc->hits = pkts - flow->counter->hits;
8156                 qc->bytes = bytes - flow->counter->bytes;
8157                 if (qc->reset) {
8158                         flow->counter->hits = pkts;
8159                         flow->counter->bytes = bytes;
8160                 }
8161                 return 0;
8162         }
8163         return rte_flow_error_set(error, EINVAL,
8164                                   RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
8165                                   NULL,
8166                                   "counters are not available");
8167 }
8168
8169 /**
8170  * Query a flow.
8171  *
8172  * @see rte_flow_query()
8173  * @see rte_flow_ops
8174  */
8175 static int
8176 flow_dv_query(struct rte_eth_dev *dev,
8177               struct rte_flow *flow __rte_unused,
8178               const struct rte_flow_action *actions __rte_unused,
8179               void *data __rte_unused,
8180               struct rte_flow_error *error __rte_unused)
8181 {
8182         int ret = -EINVAL;
8183
8184         for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
8185                 switch (actions->type) {
8186                 case RTE_FLOW_ACTION_TYPE_VOID:
8187                         break;
8188                 case RTE_FLOW_ACTION_TYPE_COUNT:
8189                         ret = flow_dv_query_count(dev, flow, data, error);
8190                         break;
8191                 default:
8192                         return rte_flow_error_set(error, ENOTSUP,
8193                                                   RTE_FLOW_ERROR_TYPE_ACTION,
8194                                                   actions,
8195                                                   "action not supported");
8196                 }
8197         }
8198         return ret;
8199 }
8200
8201 /**
8202  * Destroy the meter table set.
8203  * Lock free, (mutex should be acquired by caller).
8204  *
8205  * @param[in] dev
8206  *   Pointer to Ethernet device.
8207  * @param[in] tbl
8208  *   Pointer to the meter table set.
8209  *
8210  * @return
8211  *   Always 0.
8212  */
8213 static int
8214 flow_dv_destroy_mtr_tbl(struct rte_eth_dev *dev,
8215                         struct mlx5_meter_domains_infos *tbl)
8216 {
8217         struct mlx5_priv *priv = dev->data->dev_private;
8218         struct mlx5_meter_domains_infos *mtd =
8219                                 (struct mlx5_meter_domains_infos *)tbl;
8220
8221         if (!mtd || !priv->config.dv_flow_en)
8222                 return 0;
8223         if (mtd->ingress.policer_rules[RTE_MTR_DROPPED])
8224                 claim_zero(mlx5_glue->dv_destroy_flow
8225                           (mtd->ingress.policer_rules[RTE_MTR_DROPPED]));
8226         if (mtd->egress.policer_rules[RTE_MTR_DROPPED])
8227                 claim_zero(mlx5_glue->dv_destroy_flow
8228                           (mtd->egress.policer_rules[RTE_MTR_DROPPED]));
8229         if (mtd->transfer.policer_rules[RTE_MTR_DROPPED])
8230                 claim_zero(mlx5_glue->dv_destroy_flow
8231                           (mtd->transfer.policer_rules[RTE_MTR_DROPPED]));
8232         if (mtd->egress.color_matcher)
8233                 claim_zero(mlx5_glue->dv_destroy_flow_matcher
8234                           (mtd->egress.color_matcher));
8235         if (mtd->egress.any_matcher)
8236                 claim_zero(mlx5_glue->dv_destroy_flow_matcher
8237                           (mtd->egress.any_matcher));
8238         if (mtd->egress.tbl)
8239                 claim_zero(flow_dv_tbl_resource_release(dev,
8240                                                         mtd->egress.tbl));
8241         if (mtd->ingress.color_matcher)
8242                 claim_zero(mlx5_glue->dv_destroy_flow_matcher
8243                           (mtd->ingress.color_matcher));
8244         if (mtd->ingress.any_matcher)
8245                 claim_zero(mlx5_glue->dv_destroy_flow_matcher
8246                           (mtd->ingress.any_matcher));
8247         if (mtd->ingress.tbl)
8248                 claim_zero(flow_dv_tbl_resource_release(dev,
8249                                                         mtd->ingress.tbl));
8250         if (mtd->transfer.color_matcher)
8251                 claim_zero(mlx5_glue->dv_destroy_flow_matcher
8252                           (mtd->transfer.color_matcher));
8253         if (mtd->transfer.any_matcher)
8254                 claim_zero(mlx5_glue->dv_destroy_flow_matcher
8255                           (mtd->transfer.any_matcher));
8256         if (mtd->transfer.tbl)
8257                 claim_zero(flow_dv_tbl_resource_release(dev,
8258                                                         mtd->transfer.tbl));
8259         if (mtd->drop_actn)
8260                 claim_zero(mlx5_glue->destroy_flow_action(mtd->drop_actn));
8261         rte_free(mtd);
8262         return 0;
8263 }
8264
8265 /* Number of meter flow actions, count and jump or count and drop. */
8266 #define METER_ACTIONS 2
8267
8268 /**
8269  * Create specify domain meter table and suffix table.
8270  *
8271  * @param[in] dev
8272  *   Pointer to Ethernet device.
8273  * @param[in,out] mtb
8274  *   Pointer to DV meter table set.
8275  * @param[in] egress
8276  *   Table attribute.
8277  * @param[in] transfer
8278  *   Table attribute.
8279  * @param[in] color_reg_c_idx
8280  *   Reg C index for color match.
8281  *
8282  * @return
8283  *   0 on success, -1 otherwise and rte_errno is set.
8284  */
8285 static int
8286 flow_dv_prepare_mtr_tables(struct rte_eth_dev *dev,
8287                            struct mlx5_meter_domains_infos *mtb,
8288                            uint8_t egress, uint8_t transfer,
8289                            uint32_t color_reg_c_idx)
8290 {
8291         struct mlx5_priv *priv = dev->data->dev_private;
8292         struct mlx5_ibv_shared *sh = priv->sh;
8293         struct mlx5_flow_dv_match_params mask = {
8294                 .size = sizeof(mask.buf),
8295         };
8296         struct mlx5_flow_dv_match_params value = {
8297                 .size = sizeof(value.buf),
8298         };
8299         struct mlx5dv_flow_matcher_attr dv_attr = {
8300                 .type = IBV_FLOW_ATTR_NORMAL,
8301                 .priority = 0,
8302                 .match_criteria_enable = 0,
8303                 .match_mask = (void *)&mask,
8304         };
8305         void *actions[METER_ACTIONS];
8306         struct mlx5_flow_tbl_resource **sfx_tbl;
8307         struct mlx5_meter_domain_info *dtb;
8308         struct rte_flow_error error;
8309         int i = 0;
8310
8311         if (transfer) {
8312                 sfx_tbl = &sh->fdb_mtr_sfx_tbl;
8313                 dtb = &mtb->transfer;
8314         } else if (egress) {
8315                 sfx_tbl = &sh->tx_mtr_sfx_tbl;
8316                 dtb = &mtb->egress;
8317         } else {
8318                 sfx_tbl = &sh->rx_mtr_sfx_tbl;
8319                 dtb = &mtb->ingress;
8320         }
8321         /* If the suffix table in missing, create it. */
8322         if (!(*sfx_tbl)) {
8323                 *sfx_tbl = flow_dv_tbl_resource_get(dev,
8324                                                 MLX5_FLOW_TABLE_LEVEL_SUFFIX,
8325                                                 egress, transfer, &error);
8326                 if (!(*sfx_tbl)) {
8327                         DRV_LOG(ERR, "Failed to create meter suffix table.");
8328                         return -1;
8329                 }
8330         }
8331         /* Create the meter table with METER level. */
8332         dtb->tbl = flow_dv_tbl_resource_get(dev, MLX5_FLOW_TABLE_LEVEL_METER,
8333                                             egress, transfer, &error);
8334         if (!dtb->tbl) {
8335                 DRV_LOG(ERR, "Failed to create meter policer table.");
8336                 return -1;
8337         }
8338         /* Create matchers, Any and Color. */
8339         dv_attr.priority = 3;
8340         dv_attr.match_criteria_enable = 0;
8341         dtb->any_matcher = mlx5_glue->dv_create_flow_matcher(sh->ctx,
8342                                                              &dv_attr,
8343                                                              dtb->tbl->obj);
8344         if (!dtb->any_matcher) {
8345                 DRV_LOG(ERR, "Failed to create meter"
8346                              " policer default matcher.");
8347                 goto error_exit;
8348         }
8349         dv_attr.priority = 0;
8350         dv_attr.match_criteria_enable =
8351                                 1 << MLX5_MATCH_CRITERIA_ENABLE_MISC2_BIT;
8352         flow_dv_match_meta_reg(mask.buf, value.buf, color_reg_c_idx,
8353                                rte_col_2_mlx5_col(RTE_COLORS), UINT8_MAX);
8354         dtb->color_matcher = mlx5_glue->dv_create_flow_matcher(sh->ctx,
8355                                                                &dv_attr,
8356                                                                dtb->tbl->obj);
8357         if (!dtb->color_matcher) {
8358                 DRV_LOG(ERR, "Failed to create meter policer color matcher.");
8359                 goto error_exit;
8360         }
8361         if (mtb->count_actns[RTE_MTR_DROPPED])
8362                 actions[i++] = mtb->count_actns[RTE_MTR_DROPPED];
8363         actions[i++] = mtb->drop_actn;
8364         /* Default rule: lowest priority, match any, actions: drop. */
8365         dtb->policer_rules[RTE_MTR_DROPPED] =
8366                         mlx5_glue->dv_create_flow(dtb->any_matcher,
8367                                                  (void *)&value, i, actions);
8368         if (!dtb->policer_rules[RTE_MTR_DROPPED]) {
8369                 DRV_LOG(ERR, "Failed to create meter policer drop rule.");
8370                 goto error_exit;
8371         }
8372         return 0;
8373 error_exit:
8374         return -1;
8375 }
8376
8377 /**
8378  * Create the needed meter and suffix tables.
8379  * Lock free, (mutex should be acquired by caller).
8380  *
8381  * @param[in] dev
8382  *   Pointer to Ethernet device.
8383  * @param[in] fm
8384  *   Pointer to the flow meter.
8385  *
8386  * @return
8387  *   Pointer to table set on success, NULL otherwise and rte_errno is set.
8388  */
8389 static struct mlx5_meter_domains_infos *
8390 flow_dv_create_mtr_tbl(struct rte_eth_dev *dev,
8391                        const struct mlx5_flow_meter *fm)
8392 {
8393         struct mlx5_priv *priv = dev->data->dev_private;
8394         struct mlx5_meter_domains_infos *mtb;
8395         int ret;
8396         int i;
8397
8398         if (!priv->mtr_en) {
8399                 rte_errno = ENOTSUP;
8400                 return NULL;
8401         }
8402         mtb = rte_calloc(__func__, 1, sizeof(*mtb), 0);
8403         if (!mtb) {
8404                 DRV_LOG(ERR, "Failed to allocate memory for meter.");
8405                 return NULL;
8406         }
8407         /* Create meter count actions */
8408         for (i = 0; i <= RTE_MTR_DROPPED; i++) {
8409                 if (!fm->policer_stats.cnt[i])
8410                         continue;
8411                 mtb->count_actns[i] = fm->policer_stats.cnt[i]->action;
8412         }
8413         /* Create drop action. */
8414         mtb->drop_actn = mlx5_glue->dr_create_flow_action_drop();
8415         if (!mtb->drop_actn) {
8416                 DRV_LOG(ERR, "Failed to create drop action.");
8417                 goto error_exit;
8418         }
8419         /* Egress meter table. */
8420         ret = flow_dv_prepare_mtr_tables(dev, mtb, 1, 0, priv->mtr_color_reg);
8421         if (ret) {
8422                 DRV_LOG(ERR, "Failed to prepare egress meter table.");
8423                 goto error_exit;
8424         }
8425         /* Ingress meter table. */
8426         ret = flow_dv_prepare_mtr_tables(dev, mtb, 0, 0, priv->mtr_color_reg);
8427         if (ret) {
8428                 DRV_LOG(ERR, "Failed to prepare ingress meter table.");
8429                 goto error_exit;
8430         }
8431         /* FDB meter table. */
8432         if (priv->config.dv_esw_en) {
8433                 ret = flow_dv_prepare_mtr_tables(dev, mtb, 0, 1,
8434                                                  priv->mtr_color_reg);
8435                 if (ret) {
8436                         DRV_LOG(ERR, "Failed to prepare fdb meter table.");
8437                         goto error_exit;
8438                 }
8439         }
8440         return mtb;
8441 error_exit:
8442         flow_dv_destroy_mtr_tbl(dev, mtb);
8443         return NULL;
8444 }
8445
8446 /**
8447  * Destroy domain policer rule.
8448  *
8449  * @param[in] dt
8450  *   Pointer to domain table.
8451  */
8452 static void
8453 flow_dv_destroy_domain_policer_rule(struct mlx5_meter_domain_info *dt)
8454 {
8455         int i;
8456
8457         for (i = 0; i < RTE_MTR_DROPPED; i++) {
8458                 if (dt->policer_rules[i]) {
8459                         claim_zero(mlx5_glue->dv_destroy_flow
8460                                   (dt->policer_rules[i]));
8461                         dt->policer_rules[i] = NULL;
8462                 }
8463         }
8464         if (dt->jump_actn) {
8465                 claim_zero(mlx5_glue->destroy_flow_action(dt->jump_actn));
8466                 dt->jump_actn = NULL;
8467         }
8468 }
8469
8470 /**
8471  * Destroy policer rules.
8472  *
8473  * @param[in] dev
8474  *   Pointer to Ethernet device.
8475  * @param[in] fm
8476  *   Pointer to flow meter structure.
8477  * @param[in] attr
8478  *   Pointer to flow attributes.
8479  *
8480  * @return
8481  *   Always 0.
8482  */
8483 static int
8484 flow_dv_destroy_policer_rules(struct rte_eth_dev *dev __rte_unused,
8485                               const struct mlx5_flow_meter *fm,
8486                               const struct rte_flow_attr *attr)
8487 {
8488         struct mlx5_meter_domains_infos *mtb = fm ? fm->mfts : NULL;
8489
8490         if (!mtb)
8491                 return 0;
8492         if (attr->egress)
8493                 flow_dv_destroy_domain_policer_rule(&mtb->egress);
8494         if (attr->ingress)
8495                 flow_dv_destroy_domain_policer_rule(&mtb->ingress);
8496         if (attr->transfer)
8497                 flow_dv_destroy_domain_policer_rule(&mtb->transfer);
8498         return 0;
8499 }
8500
8501 /**
8502  * Create specify domain meter policer rule.
8503  *
8504  * @param[in] fm
8505  *   Pointer to flow meter structure.
8506  * @param[in] mtb
8507  *   Pointer to DV meter table set.
8508  * @param[in] sfx_tb
8509  *   Pointer to suffix table.
8510  * @param[in] mtr_reg_c
8511  *   Color match REG_C.
8512  *
8513  * @return
8514  *   0 on success, -1 otherwise.
8515  */
8516 static int
8517 flow_dv_create_policer_forward_rule(struct mlx5_flow_meter *fm,
8518                                     struct mlx5_meter_domain_info *dtb,
8519                                     struct mlx5_flow_tbl_resource *sfx_tb,
8520                                     uint8_t mtr_reg_c)
8521 {
8522         struct mlx5_flow_dv_match_params matcher = {
8523                 .size = sizeof(matcher.buf),
8524         };
8525         struct mlx5_flow_dv_match_params value = {
8526                 .size = sizeof(value.buf),
8527         };
8528         struct mlx5_meter_domains_infos *mtb = fm->mfts;
8529         void *actions[METER_ACTIONS];
8530         int i;
8531
8532         /* Create jump action. */
8533         if (!sfx_tb)
8534                 return -1;
8535         if (!dtb->jump_actn)
8536                 dtb->jump_actn =
8537                         mlx5_glue->dr_create_flow_action_dest_flow_tbl
8538                                                         (sfx_tb->obj);
8539         if (!dtb->jump_actn) {
8540                 DRV_LOG(ERR, "Failed to create policer jump action.");
8541                 goto error;
8542         }
8543         for (i = 0; i < RTE_MTR_DROPPED; i++) {
8544                 int j = 0;
8545
8546                 flow_dv_match_meta_reg(matcher.buf, value.buf, mtr_reg_c,
8547                                        rte_col_2_mlx5_col(i), UINT8_MAX);
8548                 if (mtb->count_actns[i])
8549                         actions[j++] = mtb->count_actns[i];
8550                 if (fm->params.action[i] == MTR_POLICER_ACTION_DROP)
8551                         actions[j++] = mtb->drop_actn;
8552                 else
8553                         actions[j++] = dtb->jump_actn;
8554                 dtb->policer_rules[i] =
8555                         mlx5_glue->dv_create_flow(dtb->color_matcher,
8556                                                  (void *)&value,
8557                                                   j, actions);
8558                 if (!dtb->policer_rules[i]) {
8559                         DRV_LOG(ERR, "Failed to create policer rule.");
8560                         goto error;
8561                 }
8562         }
8563         return 0;
8564 error:
8565         rte_errno = errno;
8566         return -1;
8567 }
8568
8569 /**
8570  * Create policer rules.
8571  *
8572  * @param[in] dev
8573  *   Pointer to Ethernet device.
8574  * @param[in] fm
8575  *   Pointer to flow meter structure.
8576  * @param[in] attr
8577  *   Pointer to flow attributes.
8578  *
8579  * @return
8580  *   0 on success, -1 otherwise.
8581  */
8582 static int
8583 flow_dv_create_policer_rules(struct rte_eth_dev *dev,
8584                              struct mlx5_flow_meter *fm,
8585                              const struct rte_flow_attr *attr)
8586 {
8587         struct mlx5_priv *priv = dev->data->dev_private;
8588         struct mlx5_meter_domains_infos *mtb = fm->mfts;
8589         int ret;
8590
8591         if (attr->egress) {
8592                 ret = flow_dv_create_policer_forward_rule(fm, &mtb->egress,
8593                                                 priv->sh->tx_mtr_sfx_tbl,
8594                                                 priv->mtr_color_reg);
8595                 if (ret) {
8596                         DRV_LOG(ERR, "Failed to create egress policer.");
8597                         goto error;
8598                 }
8599         }
8600         if (attr->ingress) {
8601                 ret = flow_dv_create_policer_forward_rule(fm, &mtb->ingress,
8602                                                 priv->sh->rx_mtr_sfx_tbl,
8603                                                 priv->mtr_color_reg);
8604                 if (ret) {
8605                         DRV_LOG(ERR, "Failed to create ingress policer.");
8606                         goto error;
8607                 }
8608         }
8609         if (attr->transfer) {
8610                 ret = flow_dv_create_policer_forward_rule(fm, &mtb->transfer,
8611                                                 priv->sh->fdb_mtr_sfx_tbl,
8612                                                 priv->mtr_color_reg);
8613                 if (ret) {
8614                         DRV_LOG(ERR, "Failed to create transfer policer.");
8615                         goto error;
8616                 }
8617         }
8618         return 0;
8619 error:
8620         flow_dv_destroy_policer_rules(dev, fm, attr);
8621         return -1;
8622 }
8623
8624 /**
8625  * Query a devx counter.
8626  *
8627  * @param[in] dev
8628  *   Pointer to the Ethernet device structure.
8629  * @param[in] cnt
8630  *   Pointer to the flow counter.
8631  * @param[in] clear
8632  *   Set to clear the counter statistics.
8633  * @param[out] pkts
8634  *   The statistics value of packets.
8635  * @param[out] bytes
8636  *   The statistics value of bytes.
8637  *
8638  * @return
8639  *   0 on success, otherwise return -1.
8640  */
8641 static int
8642 flow_dv_counter_query(struct rte_eth_dev *dev,
8643                       struct mlx5_flow_counter *cnt, bool clear,
8644                       uint64_t *pkts, uint64_t *bytes)
8645 {
8646         struct mlx5_priv *priv = dev->data->dev_private;
8647         uint64_t inn_pkts, inn_bytes;
8648         int ret;
8649
8650         if (!priv->config.devx)
8651                 return -1;
8652         ret = _flow_dv_query_count(dev, cnt, &inn_pkts, &inn_bytes);
8653         if (ret)
8654                 return -1;
8655         *pkts = inn_pkts - cnt->hits;
8656         *bytes = inn_bytes - cnt->bytes;
8657         if (clear) {
8658                 cnt->hits = inn_pkts;
8659                 cnt->bytes = inn_bytes;
8660         }
8661         return 0;
8662 }
8663
8664 /*
8665  * Mutex-protected thunk to lock-free  __flow_dv_translate().
8666  */
8667 static int
8668 flow_dv_translate(struct rte_eth_dev *dev,
8669                   struct mlx5_flow *dev_flow,
8670                   const struct rte_flow_attr *attr,
8671                   const struct rte_flow_item items[],
8672                   const struct rte_flow_action actions[],
8673                   struct rte_flow_error *error)
8674 {
8675         int ret;
8676
8677         flow_dv_shared_lock(dev);
8678         ret = __flow_dv_translate(dev, dev_flow, attr, items, actions, error);
8679         flow_dv_shared_unlock(dev);
8680         return ret;
8681 }
8682
8683 /*
8684  * Mutex-protected thunk to lock-free  __flow_dv_apply().
8685  */
8686 static int
8687 flow_dv_apply(struct rte_eth_dev *dev,
8688               struct rte_flow *flow,
8689               struct rte_flow_error *error)
8690 {
8691         int ret;
8692
8693         flow_dv_shared_lock(dev);
8694         ret = __flow_dv_apply(dev, flow, error);
8695         flow_dv_shared_unlock(dev);
8696         return ret;
8697 }
8698
8699 /*
8700  * Mutex-protected thunk to lock-free __flow_dv_remove().
8701  */
8702 static void
8703 flow_dv_remove(struct rte_eth_dev *dev, struct rte_flow *flow)
8704 {
8705         flow_dv_shared_lock(dev);
8706         __flow_dv_remove(dev, flow);
8707         flow_dv_shared_unlock(dev);
8708 }
8709
8710 /*
8711  * Mutex-protected thunk to lock-free __flow_dv_destroy().
8712  */
8713 static void
8714 flow_dv_destroy(struct rte_eth_dev *dev, struct rte_flow *flow)
8715 {
8716         flow_dv_shared_lock(dev);
8717         __flow_dv_destroy(dev, flow);
8718         flow_dv_shared_unlock(dev);
8719 }
8720
8721 /*
8722  * Mutex-protected thunk to lock-free flow_dv_counter_alloc().
8723  */
8724 static struct mlx5_flow_counter *
8725 flow_dv_counter_allocate(struct rte_eth_dev *dev)
8726 {
8727         struct mlx5_flow_counter *cnt;
8728
8729         flow_dv_shared_lock(dev);
8730         cnt = flow_dv_counter_alloc(dev, 0, 0, 1);
8731         flow_dv_shared_unlock(dev);
8732         return cnt;
8733 }
8734
8735 /*
8736  * Mutex-protected thunk to lock-free flow_dv_counter_release().
8737  */
8738 static void
8739 flow_dv_counter_free(struct rte_eth_dev *dev, struct mlx5_flow_counter *cnt)
8740 {
8741         flow_dv_shared_lock(dev);
8742         flow_dv_counter_release(dev, cnt);
8743         flow_dv_shared_unlock(dev);
8744 }
8745
8746 const struct mlx5_flow_driver_ops mlx5_flow_dv_drv_ops = {
8747         .validate = flow_dv_validate,
8748         .prepare = flow_dv_prepare,
8749         .translate = flow_dv_translate,
8750         .apply = flow_dv_apply,
8751         .remove = flow_dv_remove,
8752         .destroy = flow_dv_destroy,
8753         .query = flow_dv_query,
8754         .create_mtr_tbls = flow_dv_create_mtr_tbl,
8755         .destroy_mtr_tbls = flow_dv_destroy_mtr_tbl,
8756         .create_policer_rules = flow_dv_create_policer_rules,
8757         .destroy_policer_rules = flow_dv_destroy_policer_rules,
8758         .counter_alloc = flow_dv_counter_allocate,
8759         .counter_free = flow_dv_counter_free,
8760         .counter_query = flow_dv_counter_query,
8761 };
8762
8763 #endif /* HAVE_IBV_FLOW_DV_SUPPORT */