7f997ab74194a8364e5ceafd508c31af8713744c
[dpdk.git] / drivers / net / octeontx2 / otx2_flow_parse.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(C) 2019 Marvell International Ltd.
3  */
4
5 #include "otx2_ethdev.h"
6 #include "otx2_flow.h"
7
8 const struct rte_flow_item *
9 otx2_flow_skip_void_and_any_items(const struct rte_flow_item *pattern)
10 {
11         while ((pattern->type == RTE_FLOW_ITEM_TYPE_VOID) ||
12                (pattern->type == RTE_FLOW_ITEM_TYPE_ANY))
13                 pattern++;
14
15         return pattern;
16 }
17
18 /*
19  * Tunnel+ESP, Tunnel+ICMP4/6, Tunnel+TCP, Tunnel+UDP,
20  * Tunnel+SCTP
21  */
22 int
23 otx2_flow_parse_lh(struct otx2_parse_state *pst)
24 {
25         struct otx2_flow_item_info info;
26         char hw_mask[64];
27         int lid, lt;
28         int rc;
29
30         if (!pst->tunnel)
31                 return 0;
32
33         info.hw_mask = &hw_mask;
34         info.spec = NULL;
35         info.mask = NULL;
36         info.hw_hdr_len = 0;
37         lid = NPC_LID_LH;
38
39         switch (pst->pattern->type) {
40         case RTE_FLOW_ITEM_TYPE_UDP:
41                 lt = NPC_LT_LH_TU_UDP;
42                 info.def_mask = &rte_flow_item_udp_mask;
43                 info.len = sizeof(struct rte_flow_item_udp);
44                 break;
45         case RTE_FLOW_ITEM_TYPE_TCP:
46                 lt = NPC_LT_LH_TU_TCP;
47                 info.def_mask = &rte_flow_item_tcp_mask;
48                 info.len = sizeof(struct rte_flow_item_tcp);
49                 break;
50         case RTE_FLOW_ITEM_TYPE_SCTP:
51                 lt = NPC_LT_LH_TU_SCTP;
52                 info.def_mask = &rte_flow_item_sctp_mask;
53                 info.len = sizeof(struct rte_flow_item_sctp);
54                 break;
55         case RTE_FLOW_ITEM_TYPE_ESP:
56                 lt = NPC_LT_LH_TU_ESP;
57                 info.def_mask = &rte_flow_item_esp_mask;
58                 info.len = sizeof(struct rte_flow_item_esp);
59                 break;
60         default:
61                 return 0;
62         }
63
64         otx2_flow_get_hw_supp_mask(pst, &info, lid, lt);
65         rc = otx2_flow_parse_item_basic(pst->pattern, &info, pst->error);
66         if (rc != 0)
67                 return rc;
68
69         return otx2_flow_update_parse_state(pst, &info, lid, lt, 0);
70 }
71
72 /* Tunnel+IPv4, Tunnel+IPv6 */
73 int
74 otx2_flow_parse_lg(struct otx2_parse_state *pst)
75 {
76         struct otx2_flow_item_info info;
77         char hw_mask[64];
78         int lid, lt;
79         int rc;
80
81         if (!pst->tunnel)
82                 return 0;
83
84         info.hw_mask = &hw_mask;
85         info.spec = NULL;
86         info.mask = NULL;
87         info.hw_hdr_len = 0;
88         lid = NPC_LID_LG;
89
90         if (pst->pattern->type == RTE_FLOW_ITEM_TYPE_IPV4) {
91                 lt = NPC_LT_LG_TU_IP;
92                 info.def_mask = &rte_flow_item_ipv4_mask;
93                 info.len = sizeof(struct rte_flow_item_ipv4);
94         } else if (pst->pattern->type == RTE_FLOW_ITEM_TYPE_IPV6) {
95                 lt = NPC_LT_LG_TU_IP6;
96                 info.def_mask = &rte_flow_item_ipv6_mask;
97                 info.len = sizeof(struct rte_flow_item_ipv6);
98         } else {
99                 /* There is no tunneled IP header */
100                 return 0;
101         }
102
103         otx2_flow_get_hw_supp_mask(pst, &info, lid, lt);
104         rc = otx2_flow_parse_item_basic(pst->pattern, &info, pst->error);
105         if (rc != 0)
106                 return rc;
107
108         return otx2_flow_update_parse_state(pst, &info, lid, lt, 0);
109 }
110
111 /* Tunnel+Ether */
112 int
113 otx2_flow_parse_lf(struct otx2_parse_state *pst)
114 {
115         const struct rte_flow_item *pattern, *last_pattern;
116         struct rte_flow_item_eth hw_mask;
117         struct otx2_flow_item_info info;
118         int lid, lt, lflags;
119         int nr_vlans = 0;
120         int rc;
121
122         /* We hit this layer if there is a tunneling protocol */
123         if (!pst->tunnel)
124                 return 0;
125
126         if (pst->pattern->type != RTE_FLOW_ITEM_TYPE_ETH)
127                 return 0;
128
129         lid = NPC_LID_LF;
130         lt = NPC_LT_LF_TU_ETHER;
131         lflags = 0;
132
133         info.def_mask = &rte_flow_item_vlan_mask;
134         /* No match support for vlan tags */
135         info.hw_mask = NULL;
136         info.len = sizeof(struct rte_flow_item_vlan);
137         info.spec = NULL;
138         info.mask = NULL;
139         info.hw_hdr_len = 0;
140
141         /* Look ahead and find out any VLAN tags. These can be
142          * detected but no data matching is available.
143          */
144         last_pattern = pst->pattern;
145         pattern = pst->pattern + 1;
146         pattern = otx2_flow_skip_void_and_any_items(pattern);
147         while (pattern->type == RTE_FLOW_ITEM_TYPE_VLAN) {
148                 nr_vlans++;
149                 rc = otx2_flow_parse_item_basic(pattern, &info, pst->error);
150                 if (rc != 0)
151                         return rc;
152                 last_pattern = pattern;
153                 pattern++;
154                 pattern = otx2_flow_skip_void_and_any_items(pattern);
155         }
156         otx2_npc_dbg("Nr_vlans = %d", nr_vlans);
157         switch (nr_vlans) {
158         case 0:
159                 break;
160         case 1:
161                 lflags = NPC_F_TU_ETHER_CTAG;
162                 break;
163         case 2:
164                 lflags = NPC_F_TU_ETHER_STAG_CTAG;
165                 break;
166         default:
167                 rte_flow_error_set(pst->error, ENOTSUP,
168                                    RTE_FLOW_ERROR_TYPE_ITEM,
169                                    last_pattern,
170                                    "more than 2 vlans with tunneled Ethernet "
171                                    "not supported");
172                 return -rte_errno;
173         }
174
175         info.def_mask = &rte_flow_item_eth_mask;
176         info.hw_mask = &hw_mask;
177         info.len = sizeof(struct rte_flow_item_eth);
178         info.hw_hdr_len = 0;
179         otx2_flow_get_hw_supp_mask(pst, &info, lid, lt);
180         info.spec = NULL;
181         info.mask = NULL;
182
183         rc = otx2_flow_parse_item_basic(pst->pattern, &info, pst->error);
184         if (rc != 0)
185                 return rc;
186
187         pst->pattern = last_pattern;
188
189         return otx2_flow_update_parse_state(pst, &info, lid, lt, lflags);
190 }
191
192 int
193 otx2_flow_parse_le(struct otx2_parse_state *pst)
194 {
195         /*
196          * We are positioned at UDP. Scan ahead and look for
197          * UDP encapsulated tunnel protocols. If available,
198          * parse them. In that case handle this:
199          *      - RTE spec assumes we point to tunnel header.
200          *      - NPC parser provides offset from UDP header.
201          */
202
203         /*
204          * Note: Add support to GENEVE, VXLAN_GPE when we
205          * upgrade DPDK
206          *
207          * Note: Better to split flags into two nibbles:
208          *      - Higher nibble can have flags
209          *      - Lower nibble to further enumerate protocols
210          *        and have flags based extraction
211          */
212         const struct rte_flow_item *pattern = pst->pattern;
213         struct otx2_flow_item_info info;
214         int lid, lt, lflags;
215         char hw_mask[64];
216         int rc;
217
218         if (pst->tunnel)
219                 return 0;
220
221         if (pst->pattern->type == RTE_FLOW_ITEM_TYPE_MPLS)
222                 return otx2_flow_parse_mpls(pst, NPC_LID_LE);
223
224         info.spec = NULL;
225         info.mask = NULL;
226         info.hw_mask = NULL;
227         info.def_mask = NULL;
228         info.len = 0;
229         info.hw_hdr_len = 0;
230         lid = NPC_LID_LE;
231         lflags = 0;
232
233         /* Ensure we are not matching anything in UDP */
234         rc = otx2_flow_parse_item_basic(pattern, &info, pst->error);
235         if (rc)
236                 return rc;
237
238         info.hw_mask = &hw_mask;
239         pattern = otx2_flow_skip_void_and_any_items(pattern);
240         otx2_npc_dbg("Pattern->type = %d", pattern->type);
241         switch (pattern->type) {
242         case RTE_FLOW_ITEM_TYPE_VXLAN:
243                 lflags = NPC_F_UDP_VXLAN;
244                 info.def_mask = &rte_flow_item_vxlan_mask;
245                 info.len = sizeof(struct rte_flow_item_vxlan);
246                 lt = NPC_LT_LE_VXLAN;
247                 break;
248         case RTE_FLOW_ITEM_TYPE_GTPC:
249                 lflags = NPC_F_UDP_GTP_GTPC;
250                 info.def_mask = &rte_flow_item_gtp_mask;
251                 info.len = sizeof(struct rte_flow_item_gtp);
252                 lt = NPC_LT_LE_GTPC;
253                 break;
254         case RTE_FLOW_ITEM_TYPE_GTPU:
255                 lflags = NPC_F_UDP_GTP_GTPU_G_PDU;
256                 info.def_mask = &rte_flow_item_gtp_mask;
257                 info.len = sizeof(struct rte_flow_item_gtp);
258                 lt = NPC_LT_LE_GTPU;
259                 break;
260         case RTE_FLOW_ITEM_TYPE_GENEVE:
261                 lflags = NPC_F_UDP_GENEVE;
262                 info.def_mask = &rte_flow_item_geneve_mask;
263                 info.len = sizeof(struct rte_flow_item_geneve);
264                 lt = NPC_LT_LE_GENEVE;
265                 break;
266         case RTE_FLOW_ITEM_TYPE_VXLAN_GPE:
267                 lflags = NPC_F_UDP_VXLANGPE;
268                 info.def_mask = &rte_flow_item_vxlan_gpe_mask;
269                 info.len = sizeof(struct rte_flow_item_vxlan_gpe);
270                 lt = NPC_LT_LE_VXLANGPE;
271                 break;
272         default:
273                 return 0;
274         }
275
276         pst->tunnel = 1;
277
278         otx2_flow_get_hw_supp_mask(pst, &info, lid, lt);
279         rc = otx2_flow_parse_item_basic(pattern, &info, pst->error);
280         if (rc != 0)
281                 return rc;
282
283         return otx2_flow_update_parse_state(pst, &info, lid, lt, lflags);
284 }
285
286 static int
287 flow_parse_mpls_label_stack(struct otx2_parse_state *pst, int *flag)
288 {
289         int nr_labels = 0;
290         const struct rte_flow_item *pattern = pst->pattern;
291         struct otx2_flow_item_info info;
292         int rc;
293         uint8_t flag_list[] = {0, NPC_F_MPLS_2_LABELS,
294                 NPC_F_MPLS_3_LABELS, NPC_F_MPLS_4_LABELS};
295
296         /*
297          * pst->pattern points to first MPLS label. We only check
298          * that subsequent labels do not have anything to match.
299          */
300         info.def_mask = &rte_flow_item_mpls_mask;
301         info.hw_mask = NULL;
302         info.len = sizeof(struct rte_flow_item_mpls);
303         info.spec = NULL;
304         info.mask = NULL;
305         info.hw_hdr_len = 0;
306
307         while (pattern->type == RTE_FLOW_ITEM_TYPE_MPLS) {
308                 nr_labels++;
309
310                 /* Basic validation of 2nd/3rd/4th mpls item */
311                 if (nr_labels > 1) {
312                         rc = otx2_flow_parse_item_basic(pattern, &info,
313                                                         pst->error);
314                         if (rc != 0)
315                                 return rc;
316                 }
317                 pst->last_pattern = pattern;
318                 pattern++;
319                 pattern = otx2_flow_skip_void_and_any_items(pattern);
320         }
321
322         if (nr_labels > 4) {
323                 rte_flow_error_set(pst->error, ENOTSUP,
324                                    RTE_FLOW_ERROR_TYPE_ITEM,
325                                    pst->last_pattern,
326                                    "more than 4 mpls labels not supported");
327                 return -rte_errno;
328         }
329
330         *flag = flag_list[nr_labels - 1];
331         return 0;
332 }
333
334 int
335 otx2_flow_parse_mpls(struct otx2_parse_state *pst, int lid)
336 {
337         /* Find number of MPLS labels */
338         struct rte_flow_item_mpls hw_mask;
339         struct otx2_flow_item_info info;
340         int lt, lflags;
341         int rc;
342
343         lflags = 0;
344
345         if (lid == NPC_LID_LC)
346                 lt = NPC_LT_LC_MPLS;
347         else if (lid == NPC_LID_LD)
348                 lt = NPC_LT_LD_TU_MPLS_IN_IP;
349         else
350                 lt = NPC_LT_LE_TU_MPLS_IN_UDP;
351
352         /* Prepare for parsing the first item */
353         info.def_mask = &rte_flow_item_mpls_mask;
354         info.hw_mask = &hw_mask;
355         info.len = sizeof(struct rte_flow_item_mpls);
356         info.spec = NULL;
357         info.mask = NULL;
358         info.hw_hdr_len = 0;
359
360         otx2_flow_get_hw_supp_mask(pst, &info, lid, lt);
361         rc = otx2_flow_parse_item_basic(pst->pattern, &info, pst->error);
362         if (rc != 0)
363                 return rc;
364
365         /*
366          * Parse for more labels.
367          * This sets lflags and pst->last_pattern correctly.
368          */
369         rc = flow_parse_mpls_label_stack(pst, &lflags);
370         if (rc != 0)
371                 return rc;
372
373         pst->tunnel = 1;
374         pst->pattern = pst->last_pattern;
375
376         return otx2_flow_update_parse_state(pst, &info, lid, lt, lflags);
377 }
378
379 /*
380  * ICMP, ICMP6, UDP, TCP, SCTP, VXLAN, GRE, NVGRE,
381  * GTP, GTPC, GTPU, ESP
382  *
383  * Note: UDP tunnel protocols are identified by flags.
384  *       LPTR for these protocol still points to UDP
385  *       header. Need flag based extraction to support
386  *       this.
387  */
388 int
389 otx2_flow_parse_ld(struct otx2_parse_state *pst)
390 {
391         char hw_mask[NPC_MAX_EXTRACT_DATA_LEN];
392         struct otx2_flow_item_info info;
393         int lid, lt, lflags;
394         int rc;
395
396         if (pst->tunnel) {
397                 /* We have already parsed MPLS or IPv4/v6 followed
398                  * by MPLS or IPv4/v6. Subsequent TCP/UDP etc
399                  * would be parsed as tunneled versions. Skip
400                  * this layer, except for tunneled MPLS. If LC is
401                  * MPLS, we have anyway skipped all stacked MPLS
402                  * labels.
403                  */
404                 if (pst->pattern->type == RTE_FLOW_ITEM_TYPE_MPLS)
405                         return otx2_flow_parse_mpls(pst, NPC_LID_LD);
406                 return 0;
407         }
408         info.hw_mask = &hw_mask;
409         info.spec = NULL;
410         info.mask = NULL;
411         info.def_mask = NULL;
412         info.len = 0;
413         info.hw_hdr_len = 0;
414
415         lid = NPC_LID_LD;
416         lflags = 0;
417
418         otx2_npc_dbg("Pst->pattern->type = %d", pst->pattern->type);
419         switch (pst->pattern->type) {
420         case RTE_FLOW_ITEM_TYPE_ICMP:
421                 if (pst->lt[NPC_LID_LC] == NPC_LT_LC_IP6)
422                         lt = NPC_LT_LD_ICMP6;
423                 else
424                         lt = NPC_LT_LD_ICMP;
425                 info.def_mask = &rte_flow_item_icmp_mask;
426                 info.len = sizeof(struct rte_flow_item_icmp);
427                 break;
428         case RTE_FLOW_ITEM_TYPE_UDP:
429                 lt = NPC_LT_LD_UDP;
430                 info.def_mask = &rte_flow_item_udp_mask;
431                 info.len = sizeof(struct rte_flow_item_udp);
432                 break;
433         case RTE_FLOW_ITEM_TYPE_TCP:
434                 lt = NPC_LT_LD_TCP;
435                 info.def_mask = &rte_flow_item_tcp_mask;
436                 info.len = sizeof(struct rte_flow_item_tcp);
437                 break;
438         case RTE_FLOW_ITEM_TYPE_SCTP:
439                 lt = NPC_LT_LD_SCTP;
440                 info.def_mask = &rte_flow_item_sctp_mask;
441                 info.len = sizeof(struct rte_flow_item_sctp);
442                 break;
443         case RTE_FLOW_ITEM_TYPE_ESP:
444                 lt = NPC_LT_LD_ESP;
445                 info.def_mask = &rte_flow_item_esp_mask;
446                 info.len = sizeof(struct rte_flow_item_esp);
447                 break;
448         case RTE_FLOW_ITEM_TYPE_GRE:
449                 lt = NPC_LT_LD_GRE;
450                 info.def_mask = &rte_flow_item_gre_mask;
451                 info.len = sizeof(struct rte_flow_item_gre);
452                 break;
453         case RTE_FLOW_ITEM_TYPE_NVGRE:
454                 lt = NPC_LT_LD_GRE;
455                 lflags = NPC_F_GRE_NVGRE;
456                 info.def_mask = &rte_flow_item_nvgre_mask;
457                 info.len = sizeof(struct rte_flow_item_nvgre);
458                 /* Further IP/Ethernet are parsed as tunneled */
459                 pst->tunnel = 1;
460                 break;
461         default:
462                 return 0;
463         }
464
465         otx2_flow_get_hw_supp_mask(pst, &info, lid, lt);
466         rc = otx2_flow_parse_item_basic(pst->pattern, &info, pst->error);
467         if (rc != 0)
468                 return rc;
469
470         return otx2_flow_update_parse_state(pst, &info, lid, lt, lflags);
471 }
472
473 static inline void
474 flow_check_lc_ip_tunnel(struct otx2_parse_state *pst)
475 {
476         const struct rte_flow_item *pattern = pst->pattern + 1;
477
478         pattern = otx2_flow_skip_void_and_any_items(pattern);
479         if (pattern->type == RTE_FLOW_ITEM_TYPE_MPLS ||
480             pattern->type == RTE_FLOW_ITEM_TYPE_IPV4 ||
481             pattern->type == RTE_FLOW_ITEM_TYPE_IPV6)
482                 pst->tunnel = 1;
483 }
484
485 /* Outer IPv4, Outer IPv6, MPLS, ARP */
486 int
487 otx2_flow_parse_lc(struct otx2_parse_state *pst)
488 {
489         uint8_t hw_mask[NPC_MAX_EXTRACT_DATA_LEN];
490         struct otx2_flow_item_info info;
491         int lid, lt;
492         int rc;
493
494         if (pst->pattern->type == RTE_FLOW_ITEM_TYPE_MPLS)
495                 return otx2_flow_parse_mpls(pst, NPC_LID_LC);
496
497         info.hw_mask = &hw_mask;
498         info.spec = NULL;
499         info.mask = NULL;
500         info.hw_hdr_len = 0;
501         lid = NPC_LID_LC;
502
503         switch (pst->pattern->type) {
504         case RTE_FLOW_ITEM_TYPE_IPV4:
505                 lt = NPC_LT_LC_IP;
506                 info.def_mask = &rte_flow_item_ipv4_mask;
507                 info.len = sizeof(struct rte_flow_item_ipv4);
508                 break;
509         case RTE_FLOW_ITEM_TYPE_IPV6:
510                 lid = NPC_LID_LC;
511                 lt = NPC_LT_LC_IP6;
512                 info.def_mask = &rte_flow_item_ipv6_mask;
513                 info.len = sizeof(struct rte_flow_item_ipv6);
514                 break;
515         case RTE_FLOW_ITEM_TYPE_ARP_ETH_IPV4:
516                 lt = NPC_LT_LC_ARP;
517                 info.def_mask = &rte_flow_item_arp_eth_ipv4_mask;
518                 info.len = sizeof(struct rte_flow_item_arp_eth_ipv4);
519                 break;
520         default:
521                 /* No match at this layer */
522                 return 0;
523         }
524
525         /* Identify if IP tunnels MPLS or IPv4/v6 */
526         flow_check_lc_ip_tunnel(pst);
527
528         otx2_flow_get_hw_supp_mask(pst, &info, lid, lt);
529         rc = otx2_flow_parse_item_basic(pst->pattern, &info, pst->error);
530         if (rc != 0)
531                 return rc;
532
533         return otx2_flow_update_parse_state(pst, &info, lid, lt, 0);
534 }
535
536 /* VLAN, ETAG */
537 int
538 otx2_flow_parse_lb(struct otx2_parse_state *pst)
539 {
540         const struct rte_flow_item *pattern = pst->pattern;
541         const struct rte_flow_item *last_pattern;
542         char hw_mask[NPC_MAX_EXTRACT_DATA_LEN];
543         struct otx2_flow_item_info info;
544         int lid, lt, lflags;
545         int nr_vlans = 0;
546         int rc;
547
548         info.spec = NULL;
549         info.mask = NULL;
550         info.hw_hdr_len = NPC_TPID_LENGTH;
551
552         lid = NPC_LID_LB;
553         lflags = 0;
554         last_pattern = pattern;
555
556         if (pst->pattern->type == RTE_FLOW_ITEM_TYPE_VLAN) {
557                 /* RTE vlan is either 802.1q or 802.1ad,
558                  * this maps to either CTAG/STAG. We need to decide
559                  * based on number of VLANS present. Matching is
560                  * supported on first tag only.
561                  */
562                 info.def_mask = &rte_flow_item_vlan_mask;
563                 info.hw_mask = NULL;
564                 info.len = sizeof(struct rte_flow_item_vlan);
565
566                 pattern = pst->pattern;
567                 while (pattern->type == RTE_FLOW_ITEM_TYPE_VLAN) {
568                         nr_vlans++;
569
570                         /* Basic validation of 2nd/3rd vlan item */
571                         if (nr_vlans > 1) {
572                                 otx2_npc_dbg("Vlans  = %d", nr_vlans);
573                                 rc = otx2_flow_parse_item_basic(pattern, &info,
574                                                                 pst->error);
575                                 if (rc != 0)
576                                         return rc;
577                         }
578                         last_pattern = pattern;
579                         pattern++;
580                         pattern = otx2_flow_skip_void_and_any_items(pattern);
581                 }
582
583                 switch (nr_vlans) {
584                 case 1:
585                         lt = NPC_LT_LB_CTAG;
586                         break;
587                 case 2:
588                         lt = NPC_LT_LB_STAG;
589                         lflags = NPC_F_STAG_CTAG;
590                         break;
591                 case 3:
592                         lt = NPC_LT_LB_STAG;
593                         lflags = NPC_F_STAG_STAG_CTAG;
594                         break;
595                 default:
596                         rte_flow_error_set(pst->error, ENOTSUP,
597                                            RTE_FLOW_ERROR_TYPE_ITEM,
598                                            last_pattern,
599                                            "more than 3 vlans not supported");
600                         return -rte_errno;
601                 }
602         } else if (pst->pattern->type == RTE_FLOW_ITEM_TYPE_E_TAG) {
603                 /* we can support ETAG and match a subsequent CTAG
604                  * without any matching support.
605                  */
606                 lt = NPC_LT_LB_ETAG;
607                 lflags = 0;
608
609                 last_pattern = pst->pattern;
610                 pattern = otx2_flow_skip_void_and_any_items(pst->pattern + 1);
611                 if (pattern->type == RTE_FLOW_ITEM_TYPE_VLAN) {
612                         info.def_mask = &rte_flow_item_vlan_mask;
613                         /* set supported mask to NULL for vlan tag */
614                         info.hw_mask = NULL;
615                         info.len = sizeof(struct rte_flow_item_vlan);
616                         rc = otx2_flow_parse_item_basic(pattern, &info,
617                                                         pst->error);
618                         if (rc != 0)
619                                 return rc;
620
621                         lflags = NPC_F_ETAG_CTAG;
622                         last_pattern = pattern;
623                 }
624
625                 info.def_mask = &rte_flow_item_e_tag_mask;
626                 info.len = sizeof(struct rte_flow_item_e_tag);
627         } else {
628                 return 0;
629         }
630
631         info.hw_mask = &hw_mask;
632         info.spec = NULL;
633         info.mask = NULL;
634         otx2_flow_get_hw_supp_mask(pst, &info, lid, lt);
635
636         rc = otx2_flow_parse_item_basic(pst->pattern, &info, pst->error);
637         if (rc != 0)
638                 return rc;
639
640         /* Point pattern to last item consumed */
641         pst->pattern = last_pattern;
642         return otx2_flow_update_parse_state(pst, &info, lid, lt, lflags);
643 }
644
645 int
646 otx2_flow_parse_la(struct otx2_parse_state *pst)
647 {
648         struct rte_flow_item_eth hw_mask;
649         struct otx2_flow_item_info info;
650         int lid, lt;
651         int rc;
652
653         /* Identify the pattern type into lid, lt */
654         if (pst->pattern->type != RTE_FLOW_ITEM_TYPE_ETH)
655                 return 0;
656
657         lid = NPC_LID_LA;
658         lt = NPC_LT_LA_ETHER;
659         info.hw_hdr_len = 0;
660
661         if (pst->flow->nix_intf == NIX_INTF_TX) {
662                 lt = NPC_LT_LA_IH_NIX_ETHER;
663                 info.hw_hdr_len = NPC_IH_LENGTH;
664         }
665
666         /* Prepare for parsing the item */
667         info.def_mask = &rte_flow_item_eth_mask;
668         info.hw_mask = &hw_mask;
669         info.len = sizeof(struct rte_flow_item_eth);
670         otx2_flow_get_hw_supp_mask(pst, &info, lid, lt);
671         info.spec = NULL;
672         info.mask = NULL;
673
674         /* Basic validation of item parameters */
675         rc = otx2_flow_parse_item_basic(pst->pattern, &info, pst->error);
676         if (rc)
677                 return rc;
678
679         /* Update pst if not validate only? clash check? */
680         return otx2_flow_update_parse_state(pst, &info, lid, lt, 0);
681 }
682
683 static int
684 parse_rss_action(struct rte_eth_dev *dev,
685                  const struct rte_flow_attr *attr,
686                  const struct rte_flow_action *act,
687                  struct rte_flow_error *error)
688 {
689         struct otx2_eth_dev *hw = dev->data->dev_private;
690         struct otx2_rss_info *rss_info = &hw->rss_info;
691         const struct rte_flow_action_rss *rss;
692         uint32_t i;
693
694         rss = (const struct rte_flow_action_rss *)act->conf;
695
696         /* Not supported */
697         if (attr->egress) {
698                 return rte_flow_error_set(error, EINVAL,
699                                           RTE_FLOW_ERROR_TYPE_ATTR_EGRESS,
700                                           attr, "No support of RSS in egress");
701         }
702
703         if (dev->data->dev_conf.rxmode.mq_mode != ETH_MQ_RX_RSS)
704                 return rte_flow_error_set(error, ENOTSUP,
705                                           RTE_FLOW_ERROR_TYPE_ACTION,
706                                           act, "multi-queue mode is disabled");
707
708         /* Parse RSS related parameters from configuration */
709         if (!rss || !rss->queue_num)
710                 return rte_flow_error_set(error, EINVAL,
711                                           RTE_FLOW_ERROR_TYPE_ACTION,
712                                           act, "no valid queues");
713
714         if (rss->func != RTE_ETH_HASH_FUNCTION_DEFAULT)
715                 return rte_flow_error_set(error, ENOTSUP,
716                                           RTE_FLOW_ERROR_TYPE_ACTION, act,
717                                           "non-default RSS hash functions"
718                                           " are not supported");
719
720         if (rss->key_len && rss->key_len > RTE_DIM(rss_info->key))
721                 return rte_flow_error_set(error, ENOTSUP,
722                                           RTE_FLOW_ERROR_TYPE_ACTION, act,
723                                           "RSS hash key too large");
724
725         if (rss->queue_num > rss_info->rss_size)
726                 return rte_flow_error_set
727                         (error, ENOTSUP, RTE_FLOW_ERROR_TYPE_ACTION, act,
728                          "too many queues for RSS context");
729
730         for (i = 0; i < rss->queue_num; i++) {
731                 if (rss->queue[i] >= dev->data->nb_rx_queues)
732                         return rte_flow_error_set(error, EINVAL,
733                                                   RTE_FLOW_ERROR_TYPE_ACTION,
734                                                   act,
735                                                   "queue id > max number"
736                                                   " of queues");
737         }
738
739         return 0;
740 }
741
742 int
743 otx2_flow_parse_actions(struct rte_eth_dev *dev,
744                         const struct rte_flow_attr *attr,
745                         const struct rte_flow_action actions[],
746                         struct rte_flow_error *error,
747                         struct rte_flow *flow)
748 {
749         struct otx2_eth_dev *hw = dev->data->dev_private;
750         struct otx2_npc_flow_info *npc = &hw->npc_flow;
751         const struct rte_flow_action_count *act_count;
752         const struct rte_flow_action_mark *act_mark;
753         const struct rte_flow_action_queue *act_q;
754         const char *errmsg = NULL;
755         int sel_act, req_act = 0;
756         uint16_t pf_func;
757         int errcode = 0;
758         int mark = 0;
759         int rq = 0;
760
761         /* Initialize actions */
762         flow->ctr_id = NPC_COUNTER_NONE;
763
764         for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
765                 otx2_npc_dbg("Action type = %d", actions->type);
766
767                 switch (actions->type) {
768                 case RTE_FLOW_ACTION_TYPE_VOID:
769                         break;
770                 case RTE_FLOW_ACTION_TYPE_MARK:
771                         act_mark =
772                             (const struct rte_flow_action_mark *)actions->conf;
773
774                         /* We have only 16 bits. Use highest val for flag */
775                         if (act_mark->id > (OTX2_FLOW_FLAG_VAL - 2)) {
776                                 errmsg = "mark value must be < 0xfffe";
777                                 errcode = ENOTSUP;
778                                 goto err_exit;
779                         }
780                         mark = act_mark->id + 1;
781                         req_act |= OTX2_FLOW_ACT_MARK;
782                         rte_atomic32_inc(&npc->mark_actions);
783                         break;
784
785                 case RTE_FLOW_ACTION_TYPE_FLAG:
786                         mark = OTX2_FLOW_FLAG_VAL;
787                         req_act |= OTX2_FLOW_ACT_FLAG;
788                         rte_atomic32_inc(&npc->mark_actions);
789                         break;
790
791                 case RTE_FLOW_ACTION_TYPE_COUNT:
792                         act_count =
793                                 (const struct rte_flow_action_count *)
794                                 actions->conf;
795
796                         if (act_count->shared == 1) {
797                                 errmsg = "Shared Counters not supported";
798                                 errcode = ENOTSUP;
799                                 goto err_exit;
800                         }
801                         /* Indicates, need a counter */
802                         flow->ctr_id = 1;
803                         req_act |= OTX2_FLOW_ACT_COUNT;
804                         break;
805
806                 case RTE_FLOW_ACTION_TYPE_DROP:
807                         req_act |= OTX2_FLOW_ACT_DROP;
808                         break;
809
810                 case RTE_FLOW_ACTION_TYPE_QUEUE:
811                         /* Applicable only to ingress flow */
812                         act_q = (const struct rte_flow_action_queue *)
813                                 actions->conf;
814                         rq = act_q->index;
815                         if (rq >= dev->data->nb_rx_queues) {
816                                 errmsg = "invalid queue index";
817                                 errcode = EINVAL;
818                                 goto err_exit;
819                         }
820                         req_act |= OTX2_FLOW_ACT_QUEUE;
821                         break;
822
823                 case RTE_FLOW_ACTION_TYPE_RSS:
824                         errcode = parse_rss_action(dev, attr, actions, error);
825                         if (errcode)
826                                 return -rte_errno;
827
828                         req_act |= OTX2_FLOW_ACT_RSS;
829                         break;
830
831                 case RTE_FLOW_ACTION_TYPE_SECURITY:
832                         /* Assumes user has already configured security
833                          * session for this flow. Associated conf is
834                          * opaque. When RTE security is implemented for otx2,
835                          * we need to verify that for specified security
836                          * session:
837                          *  action_type ==
838                          *    RTE_SECURITY_ACTION_TYPE_INLINE_PROTOCOL &&
839                          *  session_protocol ==
840                          *    RTE_SECURITY_PROTOCOL_IPSEC
841                          *
842                          * RSS is not supported with inline ipsec. Get the
843                          * rq from associated conf, or make
844                          * RTE_FLOW_ACTION_TYPE_QUEUE compulsory with this
845                          * action.
846                          * Currently, rq = 0 is assumed.
847                          */
848                         req_act |= OTX2_FLOW_ACT_SEC;
849                         rq = 0;
850                         break;
851                 default:
852                         errmsg = "Unsupported action specified";
853                         errcode = ENOTSUP;
854                         goto err_exit;
855                 }
856         }
857
858         /* Check if actions specified are compatible */
859         if (attr->egress) {
860                 /* Only DROP/COUNT is supported */
861                 if (!(req_act & OTX2_FLOW_ACT_DROP)) {
862                         errmsg = "DROP is required action for egress";
863                         errcode = EINVAL;
864                         goto err_exit;
865                 } else if (req_act & ~(OTX2_FLOW_ACT_DROP |
866                                        OTX2_FLOW_ACT_COUNT)) {
867                         errmsg = "Unsupported action specified";
868                         errcode = ENOTSUP;
869                         goto err_exit;
870                 }
871                 flow->npc_action = NIX_TX_ACTIONOP_DROP;
872                 goto set_pf_func;
873         }
874
875         /* We have already verified the attr, this is ingress.
876          * - Exactly one terminating action is supported
877          * - Exactly one of MARK or FLAG is supported
878          * - If terminating action is DROP, only count is valid.
879          */
880         sel_act = req_act & OTX2_FLOW_ACT_TERM;
881         if ((sel_act & (sel_act - 1)) != 0) {
882                 errmsg = "Only one terminating action supported";
883                 errcode = EINVAL;
884                 goto err_exit;
885         }
886
887         if (req_act & OTX2_FLOW_ACT_DROP) {
888                 sel_act = req_act & ~OTX2_FLOW_ACT_COUNT;
889                 if ((sel_act & (sel_act - 1)) != 0) {
890                         errmsg = "Only COUNT action is supported "
891                                 "with DROP ingress action";
892                         errcode = ENOTSUP;
893                         goto err_exit;
894                 }
895         }
896
897         if ((req_act & (OTX2_FLOW_ACT_FLAG | OTX2_FLOW_ACT_MARK))
898             == (OTX2_FLOW_ACT_FLAG | OTX2_FLOW_ACT_MARK)) {
899                 errmsg = "Only one of FLAG or MARK action is supported";
900                 errcode = ENOTSUP;
901                 goto err_exit;
902         }
903
904         /* Set NIX_RX_ACTIONOP */
905         if (req_act & OTX2_FLOW_ACT_DROP) {
906                 flow->npc_action = NIX_RX_ACTIONOP_DROP;
907         } else if (req_act & OTX2_FLOW_ACT_QUEUE) {
908                 flow->npc_action = NIX_RX_ACTIONOP_UCAST;
909                 flow->npc_action |= (uint64_t)rq << 20;
910         } else if (req_act & OTX2_FLOW_ACT_RSS) {
911                 /* When user added a rule for rss, first we will add the
912                  *rule in MCAM and then update the action, once if we have
913                  *FLOW_KEY_ALG index. So, till we update the action with
914                  *flow_key_alg index, set the action to drop.
915                  */
916                 if (dev->data->dev_conf.rxmode.mq_mode == ETH_MQ_RX_RSS)
917                         flow->npc_action = NIX_RX_ACTIONOP_DROP;
918                 else
919                         flow->npc_action = NIX_RX_ACTIONOP_UCAST;
920         } else if (req_act & OTX2_FLOW_ACT_SEC) {
921                 flow->npc_action = NIX_RX_ACTIONOP_UCAST_IPSEC;
922                 flow->npc_action |= (uint64_t)rq << 20;
923         } else if (req_act & (OTX2_FLOW_ACT_FLAG | OTX2_FLOW_ACT_MARK)) {
924                 flow->npc_action = NIX_RX_ACTIONOP_UCAST;
925         } else if (req_act & OTX2_FLOW_ACT_COUNT) {
926                 /* Keep OTX2_FLOW_ACT_COUNT always at the end
927                  * This is default action, when user specify only
928                  * COUNT ACTION
929                  */
930                 flow->npc_action = NIX_RX_ACTIONOP_UCAST;
931         } else {
932                 /* Should never reach here */
933                 errmsg = "Invalid action specified";
934                 errcode = EINVAL;
935                 goto err_exit;
936         }
937
938         if (mark)
939                 flow->npc_action |= (uint64_t)mark << 40;
940
941         if (rte_atomic32_read(&npc->mark_actions) == 1)
942                 hw->rx_offload_flags |=
943                         NIX_RX_OFFLOAD_MARK_UPDATE_F;
944
945 set_pf_func:
946         /* Ideally AF must ensure that correct pf_func is set */
947         pf_func = otx2_pfvf_func(hw->pf, hw->vf);
948         flow->npc_action |= (uint64_t)pf_func << 4;
949
950         return 0;
951
952 err_exit:
953         rte_flow_error_set(error, errcode,
954                            RTE_FLOW_ERROR_TYPE_ACTION_NUM, NULL,
955                            errmsg);
956         return -rte_errno;
957 }