net/softnic: support flow mark action
[dpdk.git] / drivers / net / softnic / rte_eth_softnic_flow.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2018 Intel Corporation
3  */
4 #include <stdint.h>
5 #include <stdlib.h>
6 #include <string.h>
7
8 #include <rte_common.h>
9 #include <rte_byteorder.h>
10 #include <rte_malloc.h>
11 #include <rte_string_fns.h>
12 #include <rte_flow.h>
13 #include <rte_flow_driver.h>
14 #include <rte_tailq.h>
15
16 #include "rte_eth_softnic_internals.h"
17 #include "rte_eth_softnic.h"
18
19 #define rte_htons rte_cpu_to_be_16
20 #define rte_htonl rte_cpu_to_be_32
21
22 #define rte_ntohs rte_be_to_cpu_16
23 #define rte_ntohl rte_be_to_cpu_32
24
25 static struct rte_flow *
26 softnic_flow_find(struct softnic_table *table,
27         struct softnic_table_rule_match *rule_match)
28 {
29         struct rte_flow *flow;
30
31         TAILQ_FOREACH(flow, &table->flows, node)
32                 if (memcmp(&flow->match, rule_match, sizeof(*rule_match)) == 0)
33                         return flow;
34
35         return NULL;
36 }
37
38 int
39 flow_attr_map_set(struct pmd_internals *softnic,
40                 uint32_t group_id,
41                 int ingress,
42                 const char *pipeline_name,
43                 uint32_t table_id)
44 {
45         struct pipeline *pipeline;
46         struct flow_attr_map *map;
47
48         if (group_id >= SOFTNIC_FLOW_MAX_GROUPS ||
49                         pipeline_name == NULL)
50                 return -1;
51
52         pipeline = softnic_pipeline_find(softnic, pipeline_name);
53         if (pipeline == NULL ||
54                         table_id >= pipeline->n_tables)
55                 return -1;
56
57         map = (ingress) ? &softnic->flow.ingress_map[group_id] :
58                 &softnic->flow.egress_map[group_id];
59         strcpy(map->pipeline_name, pipeline_name);
60         map->table_id = table_id;
61         map->valid = 1;
62
63         return 0;
64 }
65
66 struct flow_attr_map *
67 flow_attr_map_get(struct pmd_internals *softnic,
68                 uint32_t group_id,
69                 int ingress)
70 {
71         if (group_id >= SOFTNIC_FLOW_MAX_GROUPS)
72                 return NULL;
73
74         return (ingress) ? &softnic->flow.ingress_map[group_id] :
75                 &softnic->flow.egress_map[group_id];
76 }
77
78 static int
79 flow_pipeline_table_get(struct pmd_internals *softnic,
80                 const struct rte_flow_attr *attr,
81                 const char **pipeline_name,
82                 uint32_t *table_id,
83                 struct rte_flow_error *error)
84 {
85         struct flow_attr_map *map;
86
87         if (attr == NULL)
88                 return rte_flow_error_set(error,
89                                 EINVAL,
90                                 RTE_FLOW_ERROR_TYPE_ATTR,
91                                 NULL,
92                                 "Null attr");
93
94         if (!attr->ingress && !attr->egress)
95                 return rte_flow_error_set(error,
96                                 EINVAL,
97                                 RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,
98                                 attr,
99                                 "Ingress/egress not specified");
100
101         if (attr->ingress && attr->egress)
102                 return rte_flow_error_set(error,
103                                 EINVAL,
104                                 RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,
105                                 attr,
106                                 "Setting both ingress and egress is not allowed");
107
108         map = flow_attr_map_get(softnic,
109                         attr->group,
110                         attr->ingress);
111         if (map == NULL ||
112                         map->valid == 0)
113                 return rte_flow_error_set(error,
114                                 EINVAL,
115                                 RTE_FLOW_ERROR_TYPE_ATTR_GROUP,
116                                 attr,
117                                 "Invalid group ID");
118
119         if (pipeline_name)
120                 *pipeline_name = map->pipeline_name;
121
122         if (table_id)
123                 *table_id = map->table_id;
124
125         return 0;
126 }
127
128 union flow_item {
129         uint8_t raw[TABLE_RULE_MATCH_SIZE_MAX];
130         struct rte_flow_item_eth eth;
131         struct rte_flow_item_vlan vlan;
132         struct rte_flow_item_ipv4 ipv4;
133         struct rte_flow_item_ipv6 ipv6;
134         struct rte_flow_item_icmp icmp;
135         struct rte_flow_item_udp udp;
136         struct rte_flow_item_tcp tcp;
137         struct rte_flow_item_sctp sctp;
138         struct rte_flow_item_vxlan vxlan;
139         struct rte_flow_item_e_tag e_tag;
140         struct rte_flow_item_nvgre nvgre;
141         struct rte_flow_item_mpls mpls;
142         struct rte_flow_item_gre gre;
143         struct rte_flow_item_gtp gtp;
144         struct rte_flow_item_esp esp;
145         struct rte_flow_item_geneve geneve;
146         struct rte_flow_item_vxlan_gpe vxlan_gpe;
147         struct rte_flow_item_arp_eth_ipv4 arp_eth_ipv4;
148         struct rte_flow_item_ipv6_ext ipv6_ext;
149         struct rte_flow_item_icmp6 icmp6;
150         struct rte_flow_item_icmp6_nd_ns icmp6_nd_ns;
151         struct rte_flow_item_icmp6_nd_na icmp6_nd_na;
152         struct rte_flow_item_icmp6_nd_opt icmp6_nd_opt;
153         struct rte_flow_item_icmp6_nd_opt_sla_eth icmp6_nd_opt_sla_eth;
154         struct rte_flow_item_icmp6_nd_opt_tla_eth icmp6_nd_opt_tla_eth;
155 };
156
157 static const union flow_item flow_item_raw_mask;
158
159 static int
160 flow_item_is_proto(enum rte_flow_item_type type,
161         const void **mask,
162         size_t *size)
163 {
164         switch (type) {
165         case RTE_FLOW_ITEM_TYPE_RAW:
166                 *mask = &flow_item_raw_mask;
167                 *size = sizeof(flow_item_raw_mask);
168                 return 1; /* TRUE */
169
170         case RTE_FLOW_ITEM_TYPE_ETH:
171                 *mask = &rte_flow_item_eth_mask;
172                 *size = sizeof(struct rte_flow_item_eth);
173                 return 1; /* TRUE */
174
175         case RTE_FLOW_ITEM_TYPE_VLAN:
176                 *mask = &rte_flow_item_vlan_mask;
177                 *size = sizeof(struct rte_flow_item_vlan);
178                 return 1;
179
180         case RTE_FLOW_ITEM_TYPE_IPV4:
181                 *mask = &rte_flow_item_ipv4_mask;
182                 *size = sizeof(struct rte_flow_item_ipv4);
183                 return 1;
184
185         case RTE_FLOW_ITEM_TYPE_IPV6:
186                 *mask = &rte_flow_item_ipv6_mask;
187                 *size = sizeof(struct rte_flow_item_ipv6);
188                 return 1;
189
190         case RTE_FLOW_ITEM_TYPE_ICMP:
191                 *mask = &rte_flow_item_icmp_mask;
192                 *size = sizeof(struct rte_flow_item_icmp);
193                 return 1;
194
195         case RTE_FLOW_ITEM_TYPE_UDP:
196                 *mask = &rte_flow_item_udp_mask;
197                 *size = sizeof(struct rte_flow_item_udp);
198                 return 1;
199
200         case RTE_FLOW_ITEM_TYPE_TCP:
201                 *mask = &rte_flow_item_tcp_mask;
202                 *size = sizeof(struct rte_flow_item_tcp);
203                 return 1;
204
205         case RTE_FLOW_ITEM_TYPE_SCTP:
206                 *mask = &rte_flow_item_sctp_mask;
207                 *size = sizeof(struct rte_flow_item_sctp);
208                 return 1;
209
210         case RTE_FLOW_ITEM_TYPE_VXLAN:
211                 *mask = &rte_flow_item_vxlan_mask;
212                 *size = sizeof(struct rte_flow_item_vxlan);
213                 return 1;
214
215         case RTE_FLOW_ITEM_TYPE_E_TAG:
216                 *mask = &rte_flow_item_e_tag_mask;
217                 *size = sizeof(struct rte_flow_item_e_tag);
218                 return 1;
219
220         case RTE_FLOW_ITEM_TYPE_NVGRE:
221                 *mask = &rte_flow_item_nvgre_mask;
222                 *size = sizeof(struct rte_flow_item_nvgre);
223                 return 1;
224
225         case RTE_FLOW_ITEM_TYPE_MPLS:
226                 *mask = &rte_flow_item_mpls_mask;
227                 *size = sizeof(struct rte_flow_item_mpls);
228                 return 1;
229
230         case RTE_FLOW_ITEM_TYPE_GRE:
231                 *mask = &rte_flow_item_gre_mask;
232                 *size = sizeof(struct rte_flow_item_gre);
233                 return 1;
234
235         case RTE_FLOW_ITEM_TYPE_GTP:
236         case RTE_FLOW_ITEM_TYPE_GTPC:
237         case RTE_FLOW_ITEM_TYPE_GTPU:
238                 *mask = &rte_flow_item_gtp_mask;
239                 *size = sizeof(struct rte_flow_item_gtp);
240                 return 1;
241
242         case RTE_FLOW_ITEM_TYPE_ESP:
243                 *mask = &rte_flow_item_esp_mask;
244                 *size = sizeof(struct rte_flow_item_esp);
245                 return 1;
246
247         case RTE_FLOW_ITEM_TYPE_GENEVE:
248                 *mask = &rte_flow_item_geneve_mask;
249                 *size = sizeof(struct rte_flow_item_geneve);
250                 return 1;
251
252         case RTE_FLOW_ITEM_TYPE_VXLAN_GPE:
253                 *mask = &rte_flow_item_vxlan_gpe_mask;
254                 *size = sizeof(struct rte_flow_item_vxlan_gpe);
255                 return 1;
256
257         case RTE_FLOW_ITEM_TYPE_ARP_ETH_IPV4:
258                 *mask = &rte_flow_item_arp_eth_ipv4_mask;
259                 *size = sizeof(struct rte_flow_item_arp_eth_ipv4);
260                 return 1;
261
262         case RTE_FLOW_ITEM_TYPE_IPV6_EXT:
263                 *mask = &rte_flow_item_ipv6_ext_mask;
264                 *size = sizeof(struct rte_flow_item_ipv6_ext);
265                 return 1;
266
267         case RTE_FLOW_ITEM_TYPE_ICMP6:
268                 *mask = &rte_flow_item_icmp6_mask;
269                 *size = sizeof(struct rte_flow_item_icmp6);
270                 return 1;
271
272         case RTE_FLOW_ITEM_TYPE_ICMP6_ND_NS:
273                 *mask = &rte_flow_item_icmp6_nd_ns_mask;
274                 *size = sizeof(struct rte_flow_item_icmp6_nd_ns);
275                 return 1;
276
277         case RTE_FLOW_ITEM_TYPE_ICMP6_ND_NA:
278                 *mask = &rte_flow_item_icmp6_nd_na_mask;
279                 *size = sizeof(struct rte_flow_item_icmp6_nd_na);
280                 return 1;
281
282         case RTE_FLOW_ITEM_TYPE_ICMP6_ND_OPT:
283                 *mask = &rte_flow_item_icmp6_nd_opt_mask;
284                 *size = sizeof(struct rte_flow_item_icmp6_nd_opt);
285                 return 1;
286
287         case RTE_FLOW_ITEM_TYPE_ICMP6_ND_OPT_SLA_ETH:
288                 *mask = &rte_flow_item_icmp6_nd_opt_sla_eth_mask;
289                 *size = sizeof(struct rte_flow_item_icmp6_nd_opt_sla_eth);
290                 return 1;
291
292         case RTE_FLOW_ITEM_TYPE_ICMP6_ND_OPT_TLA_ETH:
293                 *mask = &rte_flow_item_icmp6_nd_opt_tla_eth_mask;
294                 *size = sizeof(struct rte_flow_item_icmp6_nd_opt_tla_eth);
295                 return 1;
296
297         default: return 0; /* FALSE */
298         }
299 }
300
301 static int
302 flow_item_raw_preprocess(const struct rte_flow_item *item,
303         union flow_item *item_spec,
304         union flow_item *item_mask,
305         size_t *item_size,
306         int *item_disabled,
307         struct rte_flow_error *error)
308 {
309         const struct rte_flow_item_raw *item_raw_spec = item->spec;
310         const struct rte_flow_item_raw *item_raw_mask = item->mask;
311         const uint8_t *pattern;
312         const uint8_t *pattern_mask;
313         uint8_t *spec = (uint8_t *)item_spec;
314         uint8_t *mask = (uint8_t *)item_mask;
315         size_t pattern_length, pattern_offset, i;
316         int disabled;
317
318         if (!item->spec)
319                 return rte_flow_error_set(error,
320                         ENOTSUP,
321                         RTE_FLOW_ERROR_TYPE_ITEM,
322                         item,
323                         "RAW: Null specification");
324
325         if (item->last)
326                 return rte_flow_error_set(error,
327                         ENOTSUP,
328                         RTE_FLOW_ERROR_TYPE_ITEM,
329                         item,
330                         "RAW: Range not allowed (last must be NULL)");
331
332         if (item_raw_spec->relative == 0)
333                 return rte_flow_error_set(error,
334                         ENOTSUP,
335                         RTE_FLOW_ERROR_TYPE_ITEM,
336                         item,
337                         "RAW: Absolute offset not supported");
338
339         if (item_raw_spec->search)
340                 return rte_flow_error_set(error,
341                         ENOTSUP,
342                         RTE_FLOW_ERROR_TYPE_ITEM,
343                         item,
344                         "RAW: Search not supported");
345
346         if (item_raw_spec->offset < 0)
347                 return rte_flow_error_set(error,
348                         ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
349                         item,
350                         "RAW: Negative offset not supported");
351
352         if (item_raw_spec->length == 0)
353                 return rte_flow_error_set(error,
354                         ENOTSUP,
355                         RTE_FLOW_ERROR_TYPE_ITEM,
356                         item,
357                         "RAW: Zero pattern length");
358
359         if (item_raw_spec->offset + item_raw_spec->length >
360                 TABLE_RULE_MATCH_SIZE_MAX)
361                 return rte_flow_error_set(error,
362                         ENOTSUP,
363                         RTE_FLOW_ERROR_TYPE_ITEM,
364                         item,
365                         "RAW: Item too big");
366
367         if (!item_raw_spec->pattern && item_raw_mask && item_raw_mask->pattern)
368                 return rte_flow_error_set(error,
369                         ENOTSUP,
370                         RTE_FLOW_ERROR_TYPE_ITEM,
371                         item,
372                         "RAW: Non-NULL pattern mask not allowed with NULL pattern");
373
374         pattern = item_raw_spec->pattern;
375         pattern_mask = (item_raw_mask) ? item_raw_mask->pattern : NULL;
376         pattern_length = (size_t)item_raw_spec->length;
377         pattern_offset = (size_t)item_raw_spec->offset;
378
379         disabled = 0;
380         if (pattern_mask == NULL)
381                 disabled = 1;
382         else
383                 for (i = 0; i < pattern_length; i++)
384                         if ((pattern)[i])
385                                 disabled = 1;
386
387         memset(spec, 0, TABLE_RULE_MATCH_SIZE_MAX);
388         if (pattern)
389                 memcpy(&spec[pattern_offset], pattern, pattern_length);
390
391         memset(mask, 0, TABLE_RULE_MATCH_SIZE_MAX);
392         if (pattern_mask)
393                 memcpy(&mask[pattern_offset], pattern_mask, pattern_length);
394
395         *item_size = pattern_offset + pattern_length;
396         *item_disabled = disabled;
397
398         return 0;
399 }
400
401 static int
402 flow_item_proto_preprocess(const struct rte_flow_item *item,
403         union flow_item *item_spec,
404         union flow_item *item_mask,
405         size_t *item_size,
406         int *item_disabled,
407         struct rte_flow_error *error)
408 {
409         const void *mask_default;
410         uint8_t *spec = (uint8_t *)item_spec;
411         uint8_t *mask = (uint8_t *)item_mask;
412         size_t size, i;
413
414         if (!flow_item_is_proto(item->type, &mask_default, &size))
415                 return rte_flow_error_set(error,
416                         ENOTSUP,
417                         RTE_FLOW_ERROR_TYPE_ITEM,
418                         item,
419                         "Item type not supported");
420
421         if (item->type == RTE_FLOW_ITEM_TYPE_RAW)
422                 return flow_item_raw_preprocess(item,
423                         item_spec,
424                         item_mask,
425                         item_size,
426                         item_disabled,
427                         error);
428
429         /* spec */
430         if (!item->spec) {
431                 /* If spec is NULL, then last and mask also have to be NULL. */
432                 if (item->last || item->mask)
433                         return rte_flow_error_set(error,
434                                 EINVAL,
435                                 RTE_FLOW_ERROR_TYPE_ITEM,
436                                 item,
437                                 "Invalid item (NULL spec with non-NULL last or mask)");
438
439                 memset(item_spec, 0, size);
440                 memset(item_mask, 0, size);
441                 *item_size = size;
442                 *item_disabled = 1; /* TRUE */
443                 return 0;
444         }
445
446         memcpy(spec, item->spec, size);
447         *item_size = size;
448
449         /* mask */
450         if (item->mask)
451                 memcpy(mask, item->mask, size);
452         else
453                 memcpy(mask, mask_default, size);
454
455         /* disabled */
456         for (i = 0; i < size; i++)
457                 if (mask[i])
458                         break;
459         *item_disabled = (i == size) ? 1 : 0;
460
461         /* Apply mask over spec. */
462         for (i = 0; i < size; i++)
463                 spec[i] &= mask[i];
464
465         /* last */
466         if (item->last) {
467                 uint8_t last[size];
468
469                 /* init last */
470                 memcpy(last, item->last, size);
471                 for (i = 0; i < size; i++)
472                         last[i] &= mask[i];
473
474                 /* check for range */
475                 for (i = 0; i < size; i++)
476                         if (last[i] != spec[i])
477                                 return rte_flow_error_set(error,
478                                         ENOTSUP,
479                                         RTE_FLOW_ERROR_TYPE_ITEM,
480                                         item,
481                                         "Range not supported");
482         }
483
484         return 0;
485 }
486
487 /***
488  * Skip disabled protocol items and VOID items
489  * until any of the mutually exclusive conditions
490  * from the list below takes place:
491  *    (A) A protocol present in the proto_mask
492  *        is met (either ENABLED or DISABLED);
493  *    (B) A protocol NOT present in the proto_mask is met in ENABLED state;
494  *    (C) The END item is met.
495  */
496 static int
497 flow_item_skip_disabled_protos(const struct rte_flow_item **item,
498         uint64_t proto_mask,
499         size_t *length,
500         struct rte_flow_error *error)
501 {
502         size_t len = 0;
503
504         for ( ; (*item)->type != RTE_FLOW_ITEM_TYPE_END; (*item)++) {
505                 union flow_item spec, mask;
506                 size_t size;
507                 int disabled = 0, status;
508
509                 if ((*item)->type == RTE_FLOW_ITEM_TYPE_VOID)
510                         continue;
511
512                 status = flow_item_proto_preprocess(*item,
513                                 &spec,
514                                 &mask,
515                                 &size,
516                                 &disabled,
517                                 error);
518                 if (status)
519                         return status;
520
521                 if ((proto_mask & (1LLU << (*item)->type)) ||
522                                 !disabled)
523                         break;
524
525                 len += size;
526         }
527
528         if (length)
529                 *length = len;
530
531         return 0;
532 }
533
534 #define FLOW_ITEM_PROTO_IP \
535         ((1LLU << RTE_FLOW_ITEM_TYPE_IPV4) | \
536          (1LLU << RTE_FLOW_ITEM_TYPE_IPV6))
537
538 static void
539 flow_item_skip_void(const struct rte_flow_item **item)
540 {
541         for ( ; ; (*item)++)
542                 if ((*item)->type != RTE_FLOW_ITEM_TYPE_VOID)
543                         return;
544 }
545
546 #define IP_PROTOCOL_TCP 0x06
547 #define IP_PROTOCOL_UDP 0x11
548 #define IP_PROTOCOL_SCTP 0x84
549
550 static int
551 mask_to_depth(uint64_t mask,
552                 uint32_t *depth)
553 {
554         uint64_t n;
555
556         if (mask == UINT64_MAX) {
557                 if (depth)
558                         *depth = 64;
559
560                 return 0;
561         }
562
563         mask = ~mask;
564
565         if (mask & (mask + 1))
566                 return -1;
567
568         n = __builtin_popcountll(mask);
569         if (depth)
570                 *depth = (uint32_t)(64 - n);
571
572         return 0;
573 }
574
575 static int
576 ipv4_mask_to_depth(uint32_t mask,
577                 uint32_t *depth)
578 {
579         uint32_t d;
580         int status;
581
582         status = mask_to_depth(mask | (UINT64_MAX << 32), &d);
583         if (status)
584                 return status;
585
586         d -= 32;
587         if (depth)
588                 *depth = d;
589
590         return 0;
591 }
592
593 static int
594 ipv6_mask_to_depth(uint8_t *mask,
595         uint32_t *depth)
596 {
597         uint64_t *m = (uint64_t *)mask;
598         uint64_t m0 = rte_be_to_cpu_64(m[0]);
599         uint64_t m1 = rte_be_to_cpu_64(m[1]);
600         uint32_t d0, d1;
601         int status;
602
603         status = mask_to_depth(m0, &d0);
604         if (status)
605                 return status;
606
607         status = mask_to_depth(m1, &d1);
608         if (status)
609                 return status;
610
611         if (d0 < 64 && d1)
612                 return -1;
613
614         if (depth)
615                 *depth = d0 + d1;
616
617         return 0;
618 }
619
620 static int
621 port_mask_to_range(uint16_t port,
622         uint16_t port_mask,
623         uint16_t *port0,
624         uint16_t *port1)
625 {
626         int status;
627         uint16_t p0, p1;
628
629         status = mask_to_depth(port_mask | (UINT64_MAX << 16), NULL);
630         if (status)
631                 return -1;
632
633         p0 = port & port_mask;
634         p1 = p0 | ~port_mask;
635
636         if (port0)
637                 *port0 = p0;
638
639         if (port1)
640                 *port1 = p1;
641
642         return 0;
643 }
644
645 static int
646 flow_rule_match_acl_get(struct pmd_internals *softnic __rte_unused,
647                 struct pipeline *pipeline __rte_unused,
648                 struct softnic_table *table __rte_unused,
649                 const struct rte_flow_attr *attr,
650                 const struct rte_flow_item *item,
651                 struct softnic_table_rule_match *rule_match,
652                 struct rte_flow_error *error)
653 {
654         union flow_item spec, mask;
655         size_t size, length = 0;
656         int disabled = 0, status;
657         uint8_t ip_proto, ip_proto_mask;
658
659         memset(rule_match, 0, sizeof(*rule_match));
660         rule_match->match_type = TABLE_ACL;
661         rule_match->match.acl.priority = attr->priority;
662
663         /* VOID or disabled protos only, if any. */
664         status = flow_item_skip_disabled_protos(&item,
665                         FLOW_ITEM_PROTO_IP, &length, error);
666         if (status)
667                 return status;
668
669         /* IP only. */
670         status = flow_item_proto_preprocess(item, &spec, &mask,
671                         &size, &disabled, error);
672         if (status)
673                 return status;
674
675         switch (item->type) {
676         case RTE_FLOW_ITEM_TYPE_IPV4:
677         {
678                 uint32_t sa_depth, da_depth;
679
680                 status = ipv4_mask_to_depth(rte_ntohl(mask.ipv4.hdr.src_addr),
681                                 &sa_depth);
682                 if (status)
683                         return rte_flow_error_set(error,
684                                 EINVAL,
685                                 RTE_FLOW_ERROR_TYPE_ITEM,
686                                 item,
687                                 "ACL: Illegal IPv4 header source address mask");
688
689                 status = ipv4_mask_to_depth(rte_ntohl(mask.ipv4.hdr.dst_addr),
690                                 &da_depth);
691                 if (status)
692                         return rte_flow_error_set(error,
693                                 EINVAL,
694                                 RTE_FLOW_ERROR_TYPE_ITEM,
695                                 item,
696                                 "ACL: Illegal IPv4 header destination address mask");
697
698                 ip_proto = spec.ipv4.hdr.next_proto_id;
699                 ip_proto_mask = mask.ipv4.hdr.next_proto_id;
700
701                 rule_match->match.acl.ip_version = 1;
702                 rule_match->match.acl.ipv4.sa =
703                         rte_ntohl(spec.ipv4.hdr.src_addr);
704                 rule_match->match.acl.ipv4.da =
705                         rte_ntohl(spec.ipv4.hdr.dst_addr);
706                 rule_match->match.acl.sa_depth = sa_depth;
707                 rule_match->match.acl.da_depth = da_depth;
708                 rule_match->match.acl.proto = ip_proto;
709                 rule_match->match.acl.proto_mask = ip_proto_mask;
710                 break;
711         } /* RTE_FLOW_ITEM_TYPE_IPV4 */
712
713         case RTE_FLOW_ITEM_TYPE_IPV6:
714         {
715                 uint32_t sa_depth, da_depth;
716
717                 status = ipv6_mask_to_depth(mask.ipv6.hdr.src_addr, &sa_depth);
718                 if (status)
719                         return rte_flow_error_set(error,
720                                 EINVAL,
721                                 RTE_FLOW_ERROR_TYPE_ITEM,
722                                 item,
723                                 "ACL: Illegal IPv6 header source address mask");
724
725                 status = ipv6_mask_to_depth(mask.ipv6.hdr.dst_addr, &da_depth);
726                 if (status)
727                         return rte_flow_error_set(error,
728                                 EINVAL,
729                                 RTE_FLOW_ERROR_TYPE_ITEM,
730                                 item,
731                                 "ACL: Illegal IPv6 header destination address mask");
732
733                 ip_proto = spec.ipv6.hdr.proto;
734                 ip_proto_mask = mask.ipv6.hdr.proto;
735
736                 rule_match->match.acl.ip_version = 0;
737                 memcpy(rule_match->match.acl.ipv6.sa,
738                         spec.ipv6.hdr.src_addr,
739                         sizeof(spec.ipv6.hdr.src_addr));
740                 memcpy(rule_match->match.acl.ipv6.da,
741                         spec.ipv6.hdr.dst_addr,
742                         sizeof(spec.ipv6.hdr.dst_addr));
743                 rule_match->match.acl.sa_depth = sa_depth;
744                 rule_match->match.acl.da_depth = da_depth;
745                 rule_match->match.acl.proto = ip_proto;
746                 rule_match->match.acl.proto_mask = ip_proto_mask;
747                 break;
748         } /* RTE_FLOW_ITEM_TYPE_IPV6 */
749
750         default:
751                 return rte_flow_error_set(error,
752                         ENOTSUP,
753                         RTE_FLOW_ERROR_TYPE_ITEM,
754                         item,
755                         "ACL: IP protocol required");
756         } /* switch */
757
758         if (ip_proto_mask != UINT8_MAX)
759                 return rte_flow_error_set(error,
760                         EINVAL,
761                         RTE_FLOW_ERROR_TYPE_ITEM,
762                         item,
763                         "ACL: Illegal IP protocol mask");
764
765         item++;
766
767         /* VOID only, if any. */
768         flow_item_skip_void(&item);
769
770         /* TCP/UDP/SCTP only. */
771         status = flow_item_proto_preprocess(item, &spec, &mask,
772                         &size, &disabled, error);
773         if (status)
774                 return status;
775
776         switch (item->type) {
777         case RTE_FLOW_ITEM_TYPE_TCP:
778         {
779                 uint16_t sp0, sp1, dp0, dp1;
780
781                 if (ip_proto != IP_PROTOCOL_TCP)
782                         return rte_flow_error_set(error,
783                                 EINVAL,
784                                 RTE_FLOW_ERROR_TYPE_ITEM,
785                                 item,
786                                 "ACL: Item type is TCP, but IP protocol is not");
787
788                 status = port_mask_to_range(rte_ntohs(spec.tcp.hdr.src_port),
789                                 rte_ntohs(mask.tcp.hdr.src_port),
790                                 &sp0,
791                                 &sp1);
792
793                 if (status)
794                         return rte_flow_error_set(error,
795                                 EINVAL,
796                                 RTE_FLOW_ERROR_TYPE_ITEM,
797                                 item,
798                                 "ACL: Illegal TCP source port mask");
799
800                 status = port_mask_to_range(rte_ntohs(spec.tcp.hdr.dst_port),
801                                 rte_ntohs(mask.tcp.hdr.dst_port),
802                                 &dp0,
803                                 &dp1);
804
805                 if (status)
806                         return rte_flow_error_set(error,
807                                 EINVAL,
808                                 RTE_FLOW_ERROR_TYPE_ITEM,
809                                 item,
810                                 "ACL: Illegal TCP destination port mask");
811
812                 rule_match->match.acl.sp0 = sp0;
813                 rule_match->match.acl.sp1 = sp1;
814                 rule_match->match.acl.dp0 = dp0;
815                 rule_match->match.acl.dp1 = dp1;
816
817                 break;
818         } /* RTE_FLOW_ITEM_TYPE_TCP */
819
820         case RTE_FLOW_ITEM_TYPE_UDP:
821         {
822                 uint16_t sp0, sp1, dp0, dp1;
823
824                 if (ip_proto != IP_PROTOCOL_UDP)
825                         return rte_flow_error_set(error,
826                                 EINVAL,
827                                 RTE_FLOW_ERROR_TYPE_ITEM,
828                                 item,
829                                 "ACL: Item type is UDP, but IP protocol is not");
830
831                 status = port_mask_to_range(rte_ntohs(spec.udp.hdr.src_port),
832                         rte_ntohs(mask.udp.hdr.src_port),
833                         &sp0,
834                         &sp1);
835                 if (status)
836                         return rte_flow_error_set(error,
837                                 EINVAL,
838                                 RTE_FLOW_ERROR_TYPE_ITEM,
839                                 item,
840                                 "ACL: Illegal UDP source port mask");
841
842                 status = port_mask_to_range(rte_ntohs(spec.udp.hdr.dst_port),
843                         rte_ntohs(mask.udp.hdr.dst_port),
844                         &dp0,
845                         &dp1);
846                 if (status)
847                         return rte_flow_error_set(error,
848                                 EINVAL,
849                                 RTE_FLOW_ERROR_TYPE_ITEM,
850                                 item,
851                                 "ACL: Illegal UDP destination port mask");
852
853                 rule_match->match.acl.sp0 = sp0;
854                 rule_match->match.acl.sp1 = sp1;
855                 rule_match->match.acl.dp0 = dp0;
856                 rule_match->match.acl.dp1 = dp1;
857
858                 break;
859         } /* RTE_FLOW_ITEM_TYPE_UDP */
860
861         case RTE_FLOW_ITEM_TYPE_SCTP:
862         {
863                 uint16_t sp0, sp1, dp0, dp1;
864
865                 if (ip_proto != IP_PROTOCOL_SCTP)
866                         return rte_flow_error_set(error,
867                                 EINVAL,
868                                 RTE_FLOW_ERROR_TYPE_ITEM,
869                                 item,
870                                 "ACL: Item type is SCTP, but IP protocol is not");
871
872                 status = port_mask_to_range(rte_ntohs(spec.sctp.hdr.src_port),
873                         rte_ntohs(mask.sctp.hdr.src_port),
874                         &sp0,
875                         &sp1);
876
877                 if (status)
878                         return rte_flow_error_set(error,
879                                 EINVAL,
880                                 RTE_FLOW_ERROR_TYPE_ITEM,
881                                 item,
882                                 "ACL: Illegal SCTP source port mask");
883
884                 status = port_mask_to_range(rte_ntohs(spec.sctp.hdr.dst_port),
885                         rte_ntohs(mask.sctp.hdr.dst_port),
886                         &dp0,
887                         &dp1);
888                 if (status)
889                         return rte_flow_error_set(error,
890                                 EINVAL,
891                                 RTE_FLOW_ERROR_TYPE_ITEM,
892                                 item,
893                                 "ACL: Illegal SCTP destination port mask");
894
895                 rule_match->match.acl.sp0 = sp0;
896                 rule_match->match.acl.sp1 = sp1;
897                 rule_match->match.acl.dp0 = dp0;
898                 rule_match->match.acl.dp1 = dp1;
899
900                 break;
901         } /* RTE_FLOW_ITEM_TYPE_SCTP */
902
903         default:
904                 return rte_flow_error_set(error,
905                         ENOTSUP,
906                         RTE_FLOW_ERROR_TYPE_ITEM,
907                         item,
908                         "ACL: TCP/UDP/SCTP required");
909         } /* switch */
910
911         item++;
912
913         /* VOID or disabled protos only, if any. */
914         status = flow_item_skip_disabled_protos(&item, 0, NULL, error);
915         if (status)
916                 return status;
917
918         /* END only. */
919         if (item->type != RTE_FLOW_ITEM_TYPE_END)
920                 return rte_flow_error_set(error,
921                         EINVAL,
922                         RTE_FLOW_ERROR_TYPE_ITEM,
923                         item,
924                         "ACL: Expecting END item");
925
926         return 0;
927 }
928
929 /***
930  * Both *tmask* and *fmask* are byte arrays of size *tsize* and *fsize*
931  * respectively.
932  * They are located within a larger buffer at offsets *toffset* and *foffset*
933  * respectivelly. Both *tmask* and *fmask* represent bitmasks for the larger
934  * buffer.
935  * Question: are the two masks equivalent?
936  *
937  * Notes:
938  * 1. Offset basically indicates that the first offset bytes in the buffer
939  *    are "don't care", so offset is equivalent to pre-pending an "all-zeros"
940  *    array of *offset* bytes to the *mask*.
941  * 2. Each *mask* might contain a number of zero bytes at the beginning or
942  *    at the end.
943  * 3. Bytes in the larger buffer after the end of the *mask* are also considered
944  *    "don't care", so they are equivalent to appending an "all-zeros" array of
945  *    bytes to the *mask*.
946  *
947  * Example:
948  * Buffer = [xx xx xx xx xx xx xx xx], buffer size = 8 bytes
949  * tmask = [00 22 00 33 00], toffset = 2, tsize = 5
950  *    => buffer mask = [00 00 00 22 00 33 00 00]
951  * fmask = [22 00 33], foffset = 3, fsize = 3 =>
952  *    => buffer mask = [00 00 00 22 00 33 00 00]
953  * Therefore, the tmask and fmask from this example are equivalent.
954  */
955 static int
956 hash_key_mask_is_same(uint8_t *tmask,
957         size_t toffset,
958         size_t tsize,
959         uint8_t *fmask,
960         size_t foffset,
961         size_t fsize,
962         size_t *toffset_plus,
963         size_t *foffset_plus)
964 {
965         size_t tpos; /* Position of first non-zero byte in the tmask buffer. */
966         size_t fpos; /* Position of first non-zero byte in the fmask buffer. */
967
968         /* Compute tpos and fpos. */
969         for (tpos = 0; tmask[tpos] == 0; tpos++)
970                 ;
971         for (fpos = 0; fmask[fpos] == 0; fpos++)
972                 ;
973
974         if (toffset + tpos != foffset + fpos)
975                 return 0; /* FALSE */
976
977         tsize -= tpos;
978         fsize -= fpos;
979
980         if (tsize < fsize) {
981                 size_t i;
982
983                 for (i = 0; i < tsize; i++)
984                         if (tmask[tpos + i] != fmask[fpos + i])
985                                 return 0; /* FALSE */
986
987                 for ( ; i < fsize; i++)
988                         if (fmask[fpos + i])
989                                 return 0; /* FALSE */
990         } else {
991                 size_t i;
992
993                 for (i = 0; i < fsize; i++)
994                         if (tmask[tpos + i] != fmask[fpos + i])
995                                 return 0; /* FALSE */
996
997                 for ( ; i < tsize; i++)
998                         if (tmask[tpos + i])
999                                 return 0; /* FALSE */
1000         }
1001
1002         if (toffset_plus)
1003                 *toffset_plus = tpos;
1004
1005         if (foffset_plus)
1006                 *foffset_plus = fpos;
1007
1008         return 1; /* TRUE */
1009 }
1010
1011 static int
1012 flow_rule_match_hash_get(struct pmd_internals *softnic __rte_unused,
1013         struct pipeline *pipeline __rte_unused,
1014         struct softnic_table *table,
1015         const struct rte_flow_attr *attr __rte_unused,
1016         const struct rte_flow_item *item,
1017         struct softnic_table_rule_match *rule_match,
1018         struct rte_flow_error *error)
1019 {
1020         struct softnic_table_rule_match_hash key, key_mask;
1021         struct softnic_table_hash_params *params = &table->params.match.hash;
1022         size_t offset = 0, length = 0, tpos, fpos;
1023         int status;
1024
1025         memset(&key, 0, sizeof(key));
1026         memset(&key_mask, 0, sizeof(key_mask));
1027
1028         /* VOID or disabled protos only, if any. */
1029         status = flow_item_skip_disabled_protos(&item, 0, &offset, error);
1030         if (status)
1031                 return status;
1032
1033         if (item->type == RTE_FLOW_ITEM_TYPE_END)
1034                 return rte_flow_error_set(error,
1035                         EINVAL,
1036                         RTE_FLOW_ERROR_TYPE_ITEM,
1037                         item,
1038                         "HASH: END detected too early");
1039
1040         /* VOID or any protocols (enabled or disabled). */
1041         for ( ; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
1042                 union flow_item spec, mask;
1043                 size_t size;
1044                 int disabled, status;
1045
1046                 if (item->type == RTE_FLOW_ITEM_TYPE_VOID)
1047                         continue;
1048
1049                 status = flow_item_proto_preprocess(item,
1050                         &spec,
1051                         &mask,
1052                         &size,
1053                         &disabled,
1054                         error);
1055                 if (status)
1056                         return status;
1057
1058                 if (length + size > sizeof(key)) {
1059                         if (disabled)
1060                                 break;
1061
1062                         return rte_flow_error_set(error,
1063                                 ENOTSUP,
1064                                 RTE_FLOW_ERROR_TYPE_ITEM,
1065                                 item,
1066                                 "HASH: Item too big");
1067                 }
1068
1069                 memcpy(&key.key[length], &spec, size);
1070                 memcpy(&key_mask.key[length], &mask, size);
1071                 length += size;
1072         }
1073
1074         if (item->type != RTE_FLOW_ITEM_TYPE_END) {
1075                 /* VOID or disabled protos only, if any. */
1076                 status = flow_item_skip_disabled_protos(&item, 0, NULL, error);
1077                 if (status)
1078                         return status;
1079
1080                 /* END only. */
1081                 if (item->type != RTE_FLOW_ITEM_TYPE_END)
1082                         return rte_flow_error_set(error,
1083                                 EINVAL,
1084                                 RTE_FLOW_ERROR_TYPE_ITEM,
1085                                 item,
1086                                 "HASH: Expecting END item");
1087         }
1088
1089         /* Compare flow key mask against table key mask. */
1090         offset += sizeof(struct rte_mbuf) + RTE_PKTMBUF_HEADROOM;
1091
1092         if (!hash_key_mask_is_same(params->key_mask,
1093                 params->key_offset,
1094                 params->key_size,
1095                 key_mask.key,
1096                 offset,
1097                 length,
1098                 &tpos,
1099                 &fpos))
1100                 return rte_flow_error_set(error,
1101                         EINVAL,
1102                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1103                         NULL,
1104                         "HASH: Item list is not observing the match format");
1105
1106         /* Rule match. */
1107         memset(rule_match, 0, sizeof(*rule_match));
1108         rule_match->match_type = TABLE_HASH;
1109         memcpy(&rule_match->match.hash.key[tpos],
1110                 &key.key[fpos],
1111                 RTE_MIN(sizeof(rule_match->match.hash.key) - tpos,
1112                         length - fpos));
1113
1114         return 0;
1115 }
1116
1117 static int
1118 flow_rule_match_get(struct pmd_internals *softnic,
1119                 struct pipeline *pipeline,
1120                 struct softnic_table *table,
1121                 const struct rte_flow_attr *attr,
1122                 const struct rte_flow_item *item,
1123                 struct softnic_table_rule_match *rule_match,
1124                 struct rte_flow_error *error)
1125 {
1126         switch (table->params.match_type) {
1127         case TABLE_ACL:
1128                 return flow_rule_match_acl_get(softnic,
1129                         pipeline,
1130                         table,
1131                         attr,
1132                         item,
1133                         rule_match,
1134                         error);
1135
1136                 /* FALLTHROUGH */
1137
1138         case TABLE_HASH:
1139                 return flow_rule_match_hash_get(softnic,
1140                         pipeline,
1141                         table,
1142                         attr,
1143                         item,
1144                         rule_match,
1145                         error);
1146
1147                 /* FALLTHROUGH */
1148
1149         default:
1150                 return rte_flow_error_set(error,
1151                         ENOTSUP,
1152                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1153                         NULL,
1154                         "Unsupported pipeline table match type");
1155         }
1156 }
1157
1158 static int
1159 flow_rule_action_get(struct pmd_internals *softnic,
1160         struct pipeline *pipeline,
1161         struct softnic_table *table,
1162         const struct rte_flow_attr *attr,
1163         const struct rte_flow_action *action,
1164         struct softnic_table_rule_action *rule_action,
1165         struct rte_flow_error *error)
1166 {
1167         struct softnic_table_action_profile *profile;
1168         struct softnic_table_action_profile_params *params;
1169         int n_jump_queue_rss_drop = 0;
1170         int n_count = 0;
1171         int n_mark = 0;
1172
1173         profile = softnic_table_action_profile_find(softnic,
1174                 table->params.action_profile_name);
1175         if (profile == NULL)
1176                 return rte_flow_error_set(error,
1177                         EINVAL,
1178                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1179                         action,
1180                         "JUMP: Table action profile");
1181
1182         params = &profile->params;
1183
1184         for ( ; action->type != RTE_FLOW_ACTION_TYPE_END; action++) {
1185                 if (action->type == RTE_FLOW_ACTION_TYPE_VOID)
1186                         continue;
1187
1188                 switch (action->type) {
1189                 case RTE_FLOW_ACTION_TYPE_JUMP:
1190                 {
1191                         const struct rte_flow_action_jump *conf = action->conf;
1192                         struct flow_attr_map *map;
1193
1194                         if (conf == NULL)
1195                                 return rte_flow_error_set(error,
1196                                         EINVAL,
1197                                         RTE_FLOW_ERROR_TYPE_ACTION,
1198                                         action,
1199                                         "JUMP: Null configuration");
1200
1201                         if (n_jump_queue_rss_drop)
1202                                 return rte_flow_error_set(error,
1203                                         EINVAL,
1204                                         RTE_FLOW_ERROR_TYPE_ACTION,
1205                                         action,
1206                                         "Only one termination action is"
1207                                         " allowed per flow");
1208
1209                         if ((params->action_mask &
1210                                 (1LLU << RTE_TABLE_ACTION_FWD)) == 0)
1211                                 return rte_flow_error_set(error,
1212                                         EINVAL,
1213                                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1214                                         NULL,
1215                                         "JUMP action not enabled for this table");
1216
1217                         n_jump_queue_rss_drop = 1;
1218
1219                         map = flow_attr_map_get(softnic,
1220                                 conf->group,
1221                                 attr->ingress);
1222                         if (map == NULL || map->valid == 0)
1223                                 return rte_flow_error_set(error,
1224                                         EINVAL,
1225                                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1226                                         NULL,
1227                                         "JUMP: Invalid group mapping");
1228
1229                         if (strcmp(pipeline->name, map->pipeline_name) != 0)
1230                                 return rte_flow_error_set(error,
1231                                         ENOTSUP,
1232                                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1233                                         NULL,
1234                                         "JUMP: Jump to table in different pipeline");
1235
1236                         /* RTE_TABLE_ACTION_FWD */
1237                         rule_action->fwd.action = RTE_PIPELINE_ACTION_TABLE;
1238                         rule_action->fwd.id = map->table_id;
1239                         rule_action->action_mask |= 1 << RTE_TABLE_ACTION_FWD;
1240                         break;
1241                 } /* RTE_FLOW_ACTION_TYPE_JUMP */
1242
1243                 case RTE_FLOW_ACTION_TYPE_QUEUE:
1244                 {
1245                         char name[NAME_SIZE];
1246                         struct rte_eth_dev *dev;
1247                         const struct rte_flow_action_queue *conf = action->conf;
1248                         uint32_t port_id;
1249                         int status;
1250
1251                         if (conf == NULL)
1252                                 return rte_flow_error_set(error,
1253                                         EINVAL,
1254                                         RTE_FLOW_ERROR_TYPE_ACTION,
1255                                         action,
1256                                         "QUEUE: Null configuration");
1257
1258                         if (n_jump_queue_rss_drop)
1259                                 return rte_flow_error_set(error,
1260                                         EINVAL,
1261                                         RTE_FLOW_ERROR_TYPE_ACTION,
1262                                         action,
1263                                         "Only one termination action is allowed"
1264                                         " per flow");
1265
1266                         if ((params->action_mask &
1267                                 (1LLU << RTE_TABLE_ACTION_FWD)) == 0)
1268                                 return rte_flow_error_set(error,
1269                                         EINVAL,
1270                                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1271                                         NULL,
1272                                         "QUEUE action not enabled for this table");
1273
1274                         n_jump_queue_rss_drop = 1;
1275
1276                         dev = ETHDEV(softnic);
1277                         if (dev == NULL ||
1278                                 conf->index >= dev->data->nb_rx_queues)
1279                                 return rte_flow_error_set(error,
1280                                         EINVAL,
1281                                         RTE_FLOW_ERROR_TYPE_ACTION,
1282                                         action,
1283                                         "QUEUE: Invalid RX queue ID");
1284
1285                         sprintf(name, "RXQ%u", (uint32_t)conf->index);
1286
1287                         status = softnic_pipeline_port_out_find(softnic,
1288                                 pipeline->name,
1289                                 name,
1290                                 &port_id);
1291                         if (status)
1292                                 return rte_flow_error_set(error,
1293                                         ENOTSUP,
1294                                         RTE_FLOW_ERROR_TYPE_ACTION,
1295                                         action,
1296                                         "QUEUE: RX queue not accessible from this pipeline");
1297
1298                         /* RTE_TABLE_ACTION_FWD */
1299                         rule_action->fwd.action = RTE_PIPELINE_ACTION_PORT;
1300                         rule_action->fwd.id = port_id;
1301                         rule_action->action_mask |= 1 << RTE_TABLE_ACTION_FWD;
1302                         break;
1303                 } /*RTE_FLOW_ACTION_TYPE_QUEUE */
1304
1305                 case RTE_FLOW_ACTION_TYPE_RSS:
1306                 {
1307                         const struct rte_flow_action_rss *conf = action->conf;
1308                         uint32_t i;
1309
1310                         if (conf == NULL)
1311                                 return rte_flow_error_set(error,
1312                                         EINVAL,
1313                                         RTE_FLOW_ERROR_TYPE_ACTION,
1314                                         action,
1315                                         "RSS: Null configuration");
1316
1317                         if (!rte_is_power_of_2(conf->queue_num))
1318                                 return rte_flow_error_set(error,
1319                                         EINVAL,
1320                                         RTE_FLOW_ERROR_TYPE_ACTION_CONF,
1321                                         conf,
1322                                         "RSS: Number of queues must be a power of 2");
1323
1324                         if (conf->queue_num > RTE_DIM(rule_action->lb.out))
1325                                 return rte_flow_error_set(error,
1326                                         EINVAL,
1327                                         RTE_FLOW_ERROR_TYPE_ACTION_CONF,
1328                                         conf,
1329                                         "RSS: Number of queues too big");
1330
1331                         if (n_jump_queue_rss_drop)
1332                                 return rte_flow_error_set(error,
1333                                         EINVAL,
1334                                         RTE_FLOW_ERROR_TYPE_ACTION,
1335                                         action,
1336                                         "Only one termination action is allowed per flow");
1337
1338                         if (((params->action_mask &
1339                                 (1LLU << RTE_TABLE_ACTION_FWD)) == 0) ||
1340                                 ((params->action_mask &
1341                                 (1LLU << RTE_TABLE_ACTION_LB)) == 0))
1342                                 return rte_flow_error_set(error,
1343                                         ENOTSUP,
1344                                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1345                                         NULL,
1346                                         "RSS action not supported by this table");
1347
1348                         if (params->lb.out_offset !=
1349                                 pipeline->params.offset_port_id)
1350                                 return rte_flow_error_set(error,
1351                                         EINVAL,
1352                                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1353                                         NULL,
1354                                         "RSS action not supported by this pipeline");
1355
1356                         n_jump_queue_rss_drop = 1;
1357
1358                         /* RTE_TABLE_ACTION_LB */
1359                         for (i = 0; i < conf->queue_num; i++) {
1360                                 char name[NAME_SIZE];
1361                                 struct rte_eth_dev *dev;
1362                                 uint32_t port_id;
1363                                 int status;
1364
1365                                 dev = ETHDEV(softnic);
1366                                 if (dev == NULL ||
1367                                         conf->queue[i] >=
1368                                                 dev->data->nb_rx_queues)
1369                                         return rte_flow_error_set(error,
1370                                                 EINVAL,
1371                                                 RTE_FLOW_ERROR_TYPE_ACTION,
1372                                                 action,
1373                                                 "RSS: Invalid RX queue ID");
1374
1375                                 sprintf(name, "RXQ%u",
1376                                         (uint32_t)conf->queue[i]);
1377
1378                                 status = softnic_pipeline_port_out_find(softnic,
1379                                         pipeline->name,
1380                                         name,
1381                                         &port_id);
1382                                 if (status)
1383                                         return rte_flow_error_set(error,
1384                                                 ENOTSUP,
1385                                                 RTE_FLOW_ERROR_TYPE_ACTION,
1386                                                 action,
1387                                                 "RSS: RX queue not accessible from this pipeline");
1388
1389                                 rule_action->lb.out[i] = port_id;
1390                         }
1391
1392                         for ( ; i < RTE_DIM(rule_action->lb.out); i++)
1393                                 rule_action->lb.out[i] =
1394                                 rule_action->lb.out[i % conf->queue_num];
1395
1396                         rule_action->action_mask |= 1 << RTE_TABLE_ACTION_LB;
1397
1398                         /* RTE_TABLE_ACTION_FWD */
1399                         rule_action->fwd.action = RTE_PIPELINE_ACTION_PORT_META;
1400                         rule_action->action_mask |= 1 << RTE_TABLE_ACTION_FWD;
1401                         break;
1402                 } /* RTE_FLOW_ACTION_TYPE_RSS */
1403
1404                 case RTE_FLOW_ACTION_TYPE_DROP:
1405                 {
1406                         const void *conf = action->conf;
1407
1408                         if (conf != NULL)
1409                                 return rte_flow_error_set(error,
1410                                         EINVAL,
1411                                         RTE_FLOW_ERROR_TYPE_ACTION,
1412                                         action,
1413                                         "DROP: No configuration required");
1414
1415                         if (n_jump_queue_rss_drop)
1416                                 return rte_flow_error_set(error,
1417                                         EINVAL,
1418                                         RTE_FLOW_ERROR_TYPE_ACTION,
1419                                         action,
1420                                         "Only one termination action is allowed per flow");
1421                         if ((params->action_mask &
1422                                 (1LLU << RTE_TABLE_ACTION_FWD)) == 0)
1423                                 return rte_flow_error_set(error,
1424                                         ENOTSUP,
1425                                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1426                                         NULL,
1427                                         "DROP action not supported by this table");
1428
1429                         n_jump_queue_rss_drop = 1;
1430
1431                         /* RTE_TABLE_ACTION_FWD */
1432                         rule_action->fwd.action = RTE_PIPELINE_ACTION_DROP;
1433                         rule_action->action_mask |= 1 << RTE_TABLE_ACTION_FWD;
1434                         break;
1435                 } /* RTE_FLOW_ACTION_TYPE_DROP */
1436
1437                 case RTE_FLOW_ACTION_TYPE_COUNT:
1438                 {
1439                         const struct rte_flow_action_count *conf = action->conf;
1440
1441                         if (conf == NULL)
1442                                 return rte_flow_error_set(error,
1443                                         EINVAL,
1444                                         RTE_FLOW_ERROR_TYPE_ACTION,
1445                                         action,
1446                                         "COUNT: Null configuration");
1447
1448                         if (conf->shared)
1449                                 return rte_flow_error_set(error,
1450                                         ENOTSUP,
1451                                         RTE_FLOW_ERROR_TYPE_ACTION_CONF,
1452                                         conf,
1453                                         "COUNT: Shared counters not supported");
1454
1455                         if (n_count)
1456                                 return rte_flow_error_set(error,
1457                                         ENOTSUP,
1458                                         RTE_FLOW_ERROR_TYPE_ACTION,
1459                                         action,
1460                                         "Only one COUNT action per flow");
1461
1462                         if ((params->action_mask &
1463                                 (1LLU << RTE_TABLE_ACTION_STATS)) == 0)
1464                                 return rte_flow_error_set(error,
1465                                         ENOTSUP,
1466                                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1467                                         NULL,
1468                                         "COUNT action not supported by this table");
1469
1470                         n_count = 1;
1471
1472                         /* RTE_TABLE_ACTION_STATS */
1473                         rule_action->stats.n_packets = 0;
1474                         rule_action->stats.n_bytes = 0;
1475                         rule_action->action_mask |= 1 << RTE_TABLE_ACTION_STATS;
1476                         break;
1477                 } /* RTE_FLOW_ACTION_TYPE_COUNT */
1478
1479                 case RTE_FLOW_ACTION_TYPE_MARK:
1480                 {
1481                         const struct rte_flow_action_mark *conf = action->conf;
1482
1483                         if (conf == NULL)
1484                                 return rte_flow_error_set(error,
1485                                         EINVAL,
1486                                         RTE_FLOW_ERROR_TYPE_ACTION,
1487                                         action,
1488                                         "MARK: Null configuration");
1489
1490                         if (n_mark)
1491                                 return rte_flow_error_set(error,
1492                                         ENOTSUP,
1493                                         RTE_FLOW_ERROR_TYPE_ACTION,
1494                                         action,
1495                                         "Only one MARK action per flow");
1496
1497                         if ((params->action_mask &
1498                                 (1LLU << RTE_TABLE_ACTION_TAG)) == 0)
1499                                 return rte_flow_error_set(error,
1500                                         ENOTSUP,
1501                                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1502                                         NULL,
1503                                         "MARK action not supported by this table");
1504
1505                         n_mark = 1;
1506
1507                         /* RTE_TABLE_ACTION_TAG */
1508                         rule_action->tag.tag = conf->id;
1509                         rule_action->action_mask |= 1 << RTE_TABLE_ACTION_TAG;
1510                         break;
1511                 } /* RTE_FLOW_ACTION_TYPE_MARK */
1512
1513                 case RTE_FLOW_ACTION_TYPE_METER:
1514                 {
1515                         const struct rte_flow_action_meter *conf = action->conf;
1516                         struct softnic_mtr_meter_profile *mp;
1517                         struct softnic_mtr *m;
1518                         uint32_t table_id = table - pipeline->table;
1519                         uint32_t meter_profile_id;
1520                         int status;
1521
1522                         if ((params->action_mask & (1LLU << RTE_TABLE_ACTION_MTR)) == 0)
1523                                 return rte_flow_error_set(error,
1524                                         EINVAL,
1525                                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1526                                         NULL,
1527                                         "METER: Table action not supported");
1528
1529                         if (params->mtr.n_tc != 1)
1530                                 return rte_flow_error_set(error,
1531                                         EINVAL,
1532                                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1533                                         NULL,
1534                                         "METER: Multiple TCs not supported");
1535
1536                         if (conf == NULL)
1537                                 return rte_flow_error_set(error,
1538                                         EINVAL,
1539                                         RTE_FLOW_ERROR_TYPE_ACTION,
1540                                         action,
1541                                         "METER: Null configuration");
1542
1543                         m = softnic_mtr_find(softnic, conf->mtr_id);
1544
1545                         if (m == NULL)
1546                                 return rte_flow_error_set(error,
1547                                         EINVAL,
1548                                         RTE_FLOW_ERROR_TYPE_ACTION_CONF,
1549                                         NULL,
1550                                         "METER: Invalid meter ID");
1551
1552                         if (m->flow)
1553                                 return rte_flow_error_set(error,
1554                                         EINVAL,
1555                                         RTE_FLOW_ERROR_TYPE_ACTION_CONF,
1556                                         NULL,
1557                                         "METER: Meter already attached to a flow");
1558
1559                         meter_profile_id = m->params.meter_profile_id;
1560                         mp = softnic_mtr_meter_profile_find(softnic, meter_profile_id);
1561
1562                         /* Add meter profile to pipeline table */
1563                         if (!softnic_pipeline_table_meter_profile_find(table,
1564                                         meter_profile_id)) {
1565                                 struct rte_table_action_meter_profile profile;
1566
1567                                 memset(&profile, 0, sizeof(profile));
1568                                 profile.alg = RTE_TABLE_ACTION_METER_TRTCM;
1569                                 profile.trtcm.cir = mp->params.trtcm_rfc2698.cir;
1570                                 profile.trtcm.pir = mp->params.trtcm_rfc2698.pir;
1571                                 profile.trtcm.cbs = mp->params.trtcm_rfc2698.cbs;
1572                                 profile.trtcm.pbs = mp->params.trtcm_rfc2698.pbs;
1573
1574                                 status = softnic_pipeline_table_mtr_profile_add(softnic,
1575                                                 pipeline->name,
1576                                                 table_id,
1577                                                 meter_profile_id,
1578                                                 &profile);
1579                                 if (status) {
1580                                         rte_flow_error_set(error,
1581                                                 EINVAL,
1582                                                 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1583                                                 NULL,
1584                                                 "METER: Table meter profile add failed");
1585                                         return -1;
1586                                 }
1587                         }
1588
1589                         /* RTE_TABLE_ACTION_METER */
1590                         rule_action->mtr.mtr[0].meter_profile_id = meter_profile_id;
1591                         rule_action->mtr.mtr[0].policer[e_RTE_METER_GREEN] =
1592                                 (enum rte_table_action_policer)m->params.action[RTE_MTR_GREEN];
1593                         rule_action->mtr.mtr[0].policer[e_RTE_METER_YELLOW] =
1594                                 (enum rte_table_action_policer)m->params.action[RTE_MTR_YELLOW];
1595                         rule_action->mtr.mtr[0].policer[e_RTE_METER_RED] =
1596                                 (enum rte_table_action_policer)m->params.action[RTE_MTR_RED];
1597                         rule_action->mtr.tc_mask = 1;
1598                         rule_action->action_mask |= 1 << RTE_TABLE_ACTION_MTR;
1599                         break;
1600                 } /* RTE_FLOW_ACTION_TYPE_METER */
1601
1602                 default:
1603                         return -ENOTSUP;
1604                 }
1605         }
1606
1607         if (n_jump_queue_rss_drop == 0)
1608                 return rte_flow_error_set(error,
1609                         EINVAL,
1610                         RTE_FLOW_ERROR_TYPE_ACTION,
1611                         action,
1612                         "Flow does not have any terminating action");
1613
1614         return 0;
1615 }
1616
1617 static int
1618 pmd_flow_validate(struct rte_eth_dev *dev,
1619                 const struct rte_flow_attr *attr,
1620                 const struct rte_flow_item item[],
1621                 const struct rte_flow_action action[],
1622                 struct rte_flow_error *error)
1623 {
1624         struct softnic_table_rule_match rule_match;
1625         struct softnic_table_rule_action rule_action;
1626
1627         struct pmd_internals *softnic = dev->data->dev_private;
1628         struct pipeline *pipeline;
1629         struct softnic_table *table;
1630         const char *pipeline_name = NULL;
1631         uint32_t table_id = 0;
1632         int status;
1633
1634         /* Check input parameters. */
1635         if (attr == NULL)
1636                 return rte_flow_error_set(error,
1637                                 EINVAL,
1638                                 RTE_FLOW_ERROR_TYPE_ATTR,
1639                                 NULL, "Null attr");
1640
1641         if (item == NULL)
1642                 return rte_flow_error_set(error,
1643                                 EINVAL,
1644                                 RTE_FLOW_ERROR_TYPE_ITEM,
1645                                 NULL,
1646                                 "Null item");
1647
1648         if (action == NULL)
1649                 return rte_flow_error_set(error,
1650                                 EINVAL,
1651                                 RTE_FLOW_ERROR_TYPE_ACTION,
1652                                 NULL,
1653                                 "Null action");
1654
1655         /* Identify the pipeline table to add this flow to. */
1656         status = flow_pipeline_table_get(softnic, attr, &pipeline_name,
1657                                         &table_id, error);
1658         if (status)
1659                 return status;
1660
1661         pipeline = softnic_pipeline_find(softnic, pipeline_name);
1662         if (pipeline == NULL)
1663                 return rte_flow_error_set(error,
1664                                 EINVAL,
1665                                 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1666                                 NULL,
1667                                 "Invalid pipeline name");
1668
1669         if (table_id >= pipeline->n_tables)
1670                 return rte_flow_error_set(error,
1671                                 EINVAL,
1672                                 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1673                                 NULL,
1674                                 "Invalid pipeline table ID");
1675
1676         table = &pipeline->table[table_id];
1677
1678         /* Rule match. */
1679         memset(&rule_match, 0, sizeof(rule_match));
1680         status = flow_rule_match_get(softnic,
1681                         pipeline,
1682                         table,
1683                         attr,
1684                         item,
1685                         &rule_match,
1686                         error);
1687         if (status)
1688                 return status;
1689
1690         /* Rule action. */
1691         memset(&rule_action, 0, sizeof(rule_action));
1692         status = flow_rule_action_get(softnic,
1693                 pipeline,
1694                 table,
1695                 attr,
1696                 action,
1697                 &rule_action,
1698                 error);
1699         if (status)
1700                 return status;
1701
1702         return 0;
1703 }
1704
1705 static struct softnic_mtr *
1706 flow_action_meter_get(struct pmd_internals *softnic,
1707         const struct rte_flow_action *action)
1708 {
1709         for ( ; action->type != RTE_FLOW_ACTION_TYPE_END; action++)
1710                 if (action->type == RTE_FLOW_ACTION_TYPE_METER) {
1711                         const struct rte_flow_action_meter *conf = action->conf;
1712
1713                         if (conf == NULL)
1714                                 return NULL;
1715
1716                         return softnic_mtr_find(softnic, conf->mtr_id);
1717                 }
1718
1719         return NULL;
1720 }
1721
1722 static void
1723 flow_meter_owner_reset(struct pmd_internals *softnic,
1724         struct rte_flow *flow)
1725 {
1726         struct softnic_mtr_list *ml = &softnic->mtr.mtrs;
1727         struct softnic_mtr *m;
1728
1729         TAILQ_FOREACH(m, ml, node)
1730                 if (m->flow == flow) {
1731                         m->flow = NULL;
1732                         break;
1733                 }
1734 }
1735
1736 static void
1737 flow_meter_owner_set(struct pmd_internals *softnic,
1738         struct rte_flow *flow,
1739         struct softnic_mtr *mtr)
1740 {
1741         /* Reset current flow meter  */
1742         flow_meter_owner_reset(softnic, flow);
1743
1744         /* Set new flow meter */
1745         mtr->flow = flow;
1746 }
1747
1748 static int
1749 is_meter_action_enable(struct pmd_internals *softnic,
1750         struct softnic_table *table)
1751 {
1752         struct softnic_table_action_profile *profile =
1753                 softnic_table_action_profile_find(softnic,
1754                         table->params.action_profile_name);
1755         struct softnic_table_action_profile_params *params = &profile->params;
1756
1757         return (params->action_mask & (1LLU << RTE_TABLE_ACTION_MTR)) ? 1 : 0;
1758 }
1759
1760 static struct rte_flow *
1761 pmd_flow_create(struct rte_eth_dev *dev,
1762         const struct rte_flow_attr *attr,
1763         const struct rte_flow_item item[],
1764         const struct rte_flow_action action[],
1765         struct rte_flow_error *error)
1766 {
1767         struct softnic_table_rule_match rule_match;
1768         struct softnic_table_rule_action rule_action;
1769         void *rule_data;
1770
1771         struct pmd_internals *softnic = dev->data->dev_private;
1772         struct pipeline *pipeline;
1773         struct softnic_table *table;
1774         struct rte_flow *flow;
1775         struct softnic_mtr *mtr;
1776         const char *pipeline_name = NULL;
1777         uint32_t table_id = 0;
1778         int new_flow, status;
1779
1780         /* Check input parameters. */
1781         if (attr == NULL) {
1782                 rte_flow_error_set(error,
1783                         EINVAL,
1784                         RTE_FLOW_ERROR_TYPE_ATTR,
1785                         NULL,
1786                         "Null attr");
1787                 return NULL;
1788         }
1789
1790         if (item == NULL) {
1791                 rte_flow_error_set(error,
1792                         EINVAL,
1793                         RTE_FLOW_ERROR_TYPE_ITEM,
1794                         NULL,
1795                         "Null item");
1796                 return NULL;
1797         }
1798
1799         if (action == NULL) {
1800                 rte_flow_error_set(error,
1801                         EINVAL,
1802                         RTE_FLOW_ERROR_TYPE_ACTION,
1803                         NULL,
1804                         "Null action");
1805                 return NULL;
1806         }
1807
1808         /* Identify the pipeline table to add this flow to. */
1809         status = flow_pipeline_table_get(softnic, attr, &pipeline_name,
1810                                         &table_id, error);
1811         if (status)
1812                 return NULL;
1813
1814         pipeline = softnic_pipeline_find(softnic, pipeline_name);
1815         if (pipeline == NULL) {
1816                 rte_flow_error_set(error,
1817                         EINVAL,
1818                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1819                         NULL,
1820                         "Invalid pipeline name");
1821                 return NULL;
1822         }
1823
1824         if (table_id >= pipeline->n_tables) {
1825                 rte_flow_error_set(error,
1826                         EINVAL,
1827                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1828                         NULL,
1829                         "Invalid pipeline table ID");
1830                 return NULL;
1831         }
1832
1833         table = &pipeline->table[table_id];
1834
1835         /* Rule match. */
1836         memset(&rule_match, 0, sizeof(rule_match));
1837         status = flow_rule_match_get(softnic,
1838                 pipeline,
1839                 table,
1840                 attr,
1841                 item,
1842                 &rule_match,
1843                 error);
1844         if (status)
1845                 return NULL;
1846
1847         /* Rule action. */
1848         memset(&rule_action, 0, sizeof(rule_action));
1849         status = flow_rule_action_get(softnic,
1850                 pipeline,
1851                 table,
1852                 attr,
1853                 action,
1854                 &rule_action,
1855                 error);
1856         if (status)
1857                 return NULL;
1858
1859         /* Flow find/allocate. */
1860         new_flow = 0;
1861         flow = softnic_flow_find(table, &rule_match);
1862         if (flow == NULL) {
1863                 new_flow = 1;
1864                 flow = calloc(1, sizeof(struct rte_flow));
1865                 if (flow == NULL) {
1866                         rte_flow_error_set(error,
1867                                 ENOMEM,
1868                                 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1869                                 NULL,
1870                                 "Not enough memory for new flow");
1871                         return NULL;
1872                 }
1873         }
1874
1875         /* Rule add. */
1876         status = softnic_pipeline_table_rule_add(softnic,
1877                 pipeline_name,
1878                 table_id,
1879                 &rule_match,
1880                 &rule_action,
1881                 &rule_data);
1882         if (status) {
1883                 if (new_flow)
1884                         free(flow);
1885
1886                 rte_flow_error_set(error,
1887                         EINVAL,
1888                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1889                         NULL,
1890                         "Pipeline table rule add failed");
1891                 return NULL;
1892         }
1893
1894         /* Flow fill in. */
1895         memcpy(&flow->match, &rule_match, sizeof(rule_match));
1896         memcpy(&flow->action, &rule_action, sizeof(rule_action));
1897         flow->data = rule_data;
1898         flow->pipeline = pipeline;
1899         flow->table_id = table_id;
1900
1901         mtr = flow_action_meter_get(softnic, action);
1902         if (mtr)
1903                 flow_meter_owner_set(softnic, flow, mtr);
1904
1905         /* Flow add to list. */
1906         if (new_flow)
1907                 TAILQ_INSERT_TAIL(&table->flows, flow, node);
1908
1909         return flow;
1910 }
1911
1912 static int
1913 pmd_flow_destroy(struct rte_eth_dev *dev,
1914         struct rte_flow *flow,
1915         struct rte_flow_error *error)
1916 {
1917         struct pmd_internals *softnic = dev->data->dev_private;
1918         struct softnic_table *table;
1919         int status;
1920
1921         /* Check input parameters. */
1922         if (flow == NULL)
1923                 return rte_flow_error_set(error,
1924                         EINVAL,
1925                         RTE_FLOW_ERROR_TYPE_HANDLE,
1926                         NULL,
1927                         "Null flow");
1928
1929         table = &flow->pipeline->table[flow->table_id];
1930
1931         /* Rule delete. */
1932         status = softnic_pipeline_table_rule_delete(softnic,
1933                 flow->pipeline->name,
1934                 flow->table_id,
1935                 &flow->match);
1936         if (status)
1937                 return rte_flow_error_set(error,
1938                         EINVAL,
1939                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1940                         NULL,
1941                         "Pipeline table rule delete failed");
1942
1943         /* Update dependencies */
1944         if (is_meter_action_enable(softnic, table))
1945                 flow_meter_owner_reset(softnic, flow);
1946
1947         /* Flow delete. */
1948         TAILQ_REMOVE(&table->flows, flow, node);
1949         free(flow);
1950
1951         return 0;
1952 }
1953
1954 static int
1955 pmd_flow_flush(struct rte_eth_dev *dev,
1956         struct rte_flow_error *error)
1957 {
1958         struct pmd_internals *softnic = dev->data->dev_private;
1959         struct pipeline *pipeline;
1960         int fail_to_del_rule = 0;
1961         uint32_t i;
1962
1963         TAILQ_FOREACH(pipeline, &softnic->pipeline_list, node) {
1964                 /* Remove all the flows added to the tables. */
1965                 for (i = 0; i < pipeline->n_tables; i++) {
1966                         struct softnic_table *table = &pipeline->table[i];
1967                         struct rte_flow *flow;
1968                         void *temp;
1969                         int status;
1970
1971                         TAILQ_FOREACH_SAFE(flow, &table->flows, node, temp) {
1972                                 /* Rule delete. */
1973                                 status = softnic_pipeline_table_rule_delete
1974                                                 (softnic,
1975                                                 pipeline->name,
1976                                                 i,
1977                                                 &flow->match);
1978                                 if (status)
1979                                         fail_to_del_rule = 1;
1980                                 /* Update dependencies */
1981                                 if (is_meter_action_enable(softnic, table))
1982                                         flow_meter_owner_reset(softnic, flow);
1983
1984                                 /* Flow delete. */
1985                                 TAILQ_REMOVE(&table->flows, flow, node);
1986                                 free(flow);
1987                         }
1988                 }
1989         }
1990
1991         if (fail_to_del_rule)
1992                 return rte_flow_error_set(error,
1993                         EINVAL,
1994                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
1995                         NULL,
1996                         "Some of the rules could not be deleted");
1997
1998         return 0;
1999 }
2000
2001 static int
2002 pmd_flow_query(struct rte_eth_dev *dev __rte_unused,
2003         struct rte_flow *flow,
2004         const struct rte_flow_action *action __rte_unused,
2005         void *data,
2006         struct rte_flow_error *error)
2007 {
2008         struct rte_table_action_stats_counters stats;
2009         struct softnic_table *table;
2010         struct rte_flow_query_count *flow_stats = data;
2011         int status;
2012
2013         /* Check input parameters. */
2014         if (flow == NULL)
2015                 return rte_flow_error_set(error,
2016                         EINVAL,
2017                         RTE_FLOW_ERROR_TYPE_HANDLE,
2018                         NULL,
2019                         "Null flow");
2020
2021         if (data == NULL)
2022                 return rte_flow_error_set(error,
2023                         EINVAL,
2024                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
2025                         NULL,
2026                         "Null data");
2027
2028         table = &flow->pipeline->table[flow->table_id];
2029
2030         /* Rule stats read. */
2031         status = rte_table_action_stats_read(table->a,
2032                 flow->data,
2033                 &stats,
2034                 flow_stats->reset);
2035         if (status)
2036                 return rte_flow_error_set(error,
2037                         EINVAL,
2038                         RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
2039                         NULL,
2040                         "Pipeline table rule stats read failed");
2041
2042         /* Fill in flow stats. */
2043         flow_stats->hits_set =
2044                 (table->ap->params.stats.n_packets_enabled) ? 1 : 0;
2045         flow_stats->bytes_set =
2046                 (table->ap->params.stats.n_bytes_enabled) ? 1 : 0;
2047         flow_stats->hits = stats.n_packets;
2048         flow_stats->bytes = stats.n_bytes;
2049
2050         return 0;
2051 }
2052
2053 const struct rte_flow_ops pmd_flow_ops = {
2054         .validate = pmd_flow_validate,
2055         .create = pmd_flow_create,
2056         .destroy = pmd_flow_destroy,
2057         .flush = pmd_flow_flush,
2058         .query = pmd_flow_query,
2059         .isolate = NULL,
2060 };