1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2018 Chelsio Communications.
6 #include "cxgbe_flow.h"
8 #define __CXGBE_FILL_FS(__v, __m, fs, elem, e) \
10 if (!((fs)->val.elem || (fs)->mask.elem)) { \
11 (fs)->val.elem = (__v); \
12 (fs)->mask.elem = (__m); \
14 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_ITEM, \
15 NULL, "a filter can be specified" \
20 #define __CXGBE_FILL_FS_MEMCPY(__v, __m, fs, elem) \
22 memcpy(&(fs)->val.elem, &(__v), sizeof(__v)); \
23 memcpy(&(fs)->mask.elem, &(__m), sizeof(__m)); \
26 #define CXGBE_FILL_FS(v, m, elem) \
27 __CXGBE_FILL_FS(v, m, fs, elem, e)
29 #define CXGBE_FILL_FS_MEMCPY(v, m, elem) \
30 __CXGBE_FILL_FS_MEMCPY(v, m, fs, elem)
33 cxgbe_validate_item(const struct rte_flow_item *i, struct rte_flow_error *e)
35 /* rte_flow specification does not allow it. */
36 if (!i->spec && (i->mask || i->last))
37 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_ITEM,
38 i, "last or mask given without spec");
40 * We don't support it.
41 * Although, we can support values in last as 0's or last == spec.
42 * But this will not provide user with any additional functionality
43 * and will only increase the complexity for us.
46 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
47 i, "last is not supported by chelsio pmd");
52 cxgbe_fill_filter_region(struct adapter *adap,
53 struct ch_filter_specification *fs)
55 struct tp_params *tp = &adap->params.tp;
56 u64 hash_filter_mask = tp->hash_filter_mask;
61 if (!is_hashfilter(adap))
65 uint8_t biton[16] = {0xff, 0xff, 0xff, 0xff,
66 0xff, 0xff, 0xff, 0xff,
67 0xff, 0xff, 0xff, 0xff,
68 0xff, 0xff, 0xff, 0xff};
69 uint8_t bitoff[16] = {0};
71 if (!memcmp(fs->val.lip, bitoff, sizeof(bitoff)) ||
72 !memcmp(fs->val.fip, bitoff, sizeof(bitoff)) ||
73 memcmp(fs->mask.lip, biton, sizeof(biton)) ||
74 memcmp(fs->mask.fip, biton, sizeof(biton)))
77 uint32_t biton = 0xffffffff;
78 uint32_t bitoff = 0x0U;
80 if (!memcmp(fs->val.lip, &bitoff, sizeof(bitoff)) ||
81 !memcmp(fs->val.fip, &bitoff, sizeof(bitoff)) ||
82 memcmp(fs->mask.lip, &biton, sizeof(biton)) ||
83 memcmp(fs->mask.fip, &biton, sizeof(biton)))
87 if (!fs->val.lport || fs->mask.lport != 0xffff)
89 if (!fs->val.fport || fs->mask.fport != 0xffff)
92 if (tp->protocol_shift >= 0)
93 ntuple_mask |= (u64)fs->mask.proto << tp->protocol_shift;
94 if (tp->ethertype_shift >= 0)
95 ntuple_mask |= (u64)fs->mask.ethtype << tp->ethertype_shift;
96 if (tp->port_shift >= 0)
97 ntuple_mask |= (u64)fs->mask.iport << tp->port_shift;
98 if (tp->macmatch_shift >= 0)
99 ntuple_mask |= (u64)fs->mask.macidx << tp->macmatch_shift;
101 if (ntuple_mask != hash_filter_mask)
104 fs->cap = 1; /* use hash region */
108 ch_rte_parsetype_eth(const void *dmask, const struct rte_flow_item *item,
109 struct ch_filter_specification *fs,
110 struct rte_flow_error *e)
112 const struct rte_flow_item_eth *spec = item->spec;
113 const struct rte_flow_item_eth *umask = item->mask;
114 const struct rte_flow_item_eth *mask;
116 /* If user has not given any mask, then use chelsio supported mask. */
117 mask = umask ? umask : (const struct rte_flow_item_eth *)dmask;
119 /* we don't support SRC_MAC filtering*/
120 if (!is_zero_ether_addr(&mask->src))
121 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
123 "src mac filtering not supported");
125 if (!is_zero_ether_addr(&mask->dst)) {
126 const u8 *addr = (const u8 *)&spec->dst.addr_bytes[0];
127 const u8 *m = (const u8 *)&mask->dst.addr_bytes[0];
128 struct rte_flow *flow = (struct rte_flow *)fs->private;
129 struct port_info *pi = (struct port_info *)
130 (flow->dev->data->dev_private);
133 idx = cxgbe_mpstcam_alloc(pi, addr, m);
135 return rte_flow_error_set(e, idx,
136 RTE_FLOW_ERROR_TYPE_ITEM,
137 NULL, "unable to allocate mac"
139 CXGBE_FILL_FS(idx, 0x1ff, macidx);
142 CXGBE_FILL_FS(be16_to_cpu(spec->type),
143 be16_to_cpu(mask->type), ethtype);
148 ch_rte_parsetype_port(const void *dmask, const struct rte_flow_item *item,
149 struct ch_filter_specification *fs,
150 struct rte_flow_error *e)
152 const struct rte_flow_item_phy_port *val = item->spec;
153 const struct rte_flow_item_phy_port *umask = item->mask;
154 const struct rte_flow_item_phy_port *mask;
156 mask = umask ? umask : (const struct rte_flow_item_phy_port *)dmask;
158 if (val->index > 0x7)
159 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_ITEM,
161 "port index upto 0x7 is supported");
163 CXGBE_FILL_FS(val->index, mask->index, iport);
169 ch_rte_parsetype_udp(const void *dmask, const struct rte_flow_item *item,
170 struct ch_filter_specification *fs,
171 struct rte_flow_error *e)
173 const struct rte_flow_item_udp *val = item->spec;
174 const struct rte_flow_item_udp *umask = item->mask;
175 const struct rte_flow_item_udp *mask;
177 mask = umask ? umask : (const struct rte_flow_item_udp *)dmask;
179 if (mask->hdr.dgram_len || mask->hdr.dgram_cksum)
180 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
182 "udp: only src/dst port supported");
184 CXGBE_FILL_FS(IPPROTO_UDP, 0xff, proto);
187 CXGBE_FILL_FS(be16_to_cpu(val->hdr.src_port),
188 be16_to_cpu(mask->hdr.src_port), fport);
189 CXGBE_FILL_FS(be16_to_cpu(val->hdr.dst_port),
190 be16_to_cpu(mask->hdr.dst_port), lport);
195 ch_rte_parsetype_tcp(const void *dmask, const struct rte_flow_item *item,
196 struct ch_filter_specification *fs,
197 struct rte_flow_error *e)
199 const struct rte_flow_item_tcp *val = item->spec;
200 const struct rte_flow_item_tcp *umask = item->mask;
201 const struct rte_flow_item_tcp *mask;
203 mask = umask ? umask : (const struct rte_flow_item_tcp *)dmask;
205 if (mask->hdr.sent_seq || mask->hdr.recv_ack || mask->hdr.data_off ||
206 mask->hdr.tcp_flags || mask->hdr.rx_win || mask->hdr.cksum ||
208 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
210 "tcp: only src/dst port supported");
212 CXGBE_FILL_FS(IPPROTO_TCP, 0xff, proto);
215 CXGBE_FILL_FS(be16_to_cpu(val->hdr.src_port),
216 be16_to_cpu(mask->hdr.src_port), fport);
217 CXGBE_FILL_FS(be16_to_cpu(val->hdr.dst_port),
218 be16_to_cpu(mask->hdr.dst_port), lport);
223 ch_rte_parsetype_ipv4(const void *dmask, const struct rte_flow_item *item,
224 struct ch_filter_specification *fs,
225 struct rte_flow_error *e)
227 const struct rte_flow_item_ipv4 *val = item->spec;
228 const struct rte_flow_item_ipv4 *umask = item->mask;
229 const struct rte_flow_item_ipv4 *mask;
231 mask = umask ? umask : (const struct rte_flow_item_ipv4 *)dmask;
233 if (mask->hdr.time_to_live || mask->hdr.type_of_service)
234 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
235 item, "ttl/tos are not supported");
237 fs->type = FILTER_TYPE_IPV4;
238 CXGBE_FILL_FS(ETHER_TYPE_IPv4, 0xffff, ethtype);
240 return 0; /* ipv4 wild card */
242 CXGBE_FILL_FS(val->hdr.next_proto_id, mask->hdr.next_proto_id, proto);
243 CXGBE_FILL_FS_MEMCPY(val->hdr.dst_addr, mask->hdr.dst_addr, lip);
244 CXGBE_FILL_FS_MEMCPY(val->hdr.src_addr, mask->hdr.src_addr, fip);
250 ch_rte_parsetype_ipv6(const void *dmask, const struct rte_flow_item *item,
251 struct ch_filter_specification *fs,
252 struct rte_flow_error *e)
254 const struct rte_flow_item_ipv6 *val = item->spec;
255 const struct rte_flow_item_ipv6 *umask = item->mask;
256 const struct rte_flow_item_ipv6 *mask;
258 mask = umask ? umask : (const struct rte_flow_item_ipv6 *)dmask;
260 if (mask->hdr.vtc_flow ||
261 mask->hdr.payload_len || mask->hdr.hop_limits)
262 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
264 "tc/flow/hop are not supported");
266 fs->type = FILTER_TYPE_IPV6;
267 CXGBE_FILL_FS(ETHER_TYPE_IPv6, 0xffff, ethtype);
269 return 0; /* ipv6 wild card */
271 CXGBE_FILL_FS(val->hdr.proto, mask->hdr.proto, proto);
272 CXGBE_FILL_FS_MEMCPY(val->hdr.dst_addr, mask->hdr.dst_addr, lip);
273 CXGBE_FILL_FS_MEMCPY(val->hdr.src_addr, mask->hdr.src_addr, fip);
279 cxgbe_rtef_parse_attr(struct rte_flow *flow, const struct rte_flow_attr *attr,
280 struct rte_flow_error *e)
283 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ATTR,
284 attr, "attribute:<egress> is"
287 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ATTR,
288 attr, "group parameter is"
291 flow->fidx = attr->priority ? attr->priority - 1 : FILTER_ID_MAX;
296 static inline int check_rxq(struct rte_eth_dev *dev, uint16_t rxq)
298 struct port_info *pi = ethdev2pinfo(dev);
300 if (rxq > pi->n_rx_qsets)
305 static int cxgbe_validate_fidxondel(struct filter_entry *f, unsigned int fidx)
307 struct adapter *adap = ethdev2adap(f->dev);
308 struct ch_filter_specification fs = f->fs;
310 if (fidx >= adap->tids.nftids) {
311 dev_err(adap, "invalid flow index %d.\n", fidx);
314 if (!is_filter_set(&adap->tids, fidx, fs.type)) {
315 dev_err(adap, "Already free fidx:%d f:%p\n", fidx, f);
323 cxgbe_validate_fidxonadd(struct ch_filter_specification *fs,
324 struct adapter *adap, unsigned int fidx)
326 if (is_filter_set(&adap->tids, fidx, fs->type)) {
327 dev_err(adap, "filter index: %d is busy.\n", fidx);
330 if (fidx >= adap->tids.nftids) {
331 dev_err(adap, "filter index (%u) >= max(%u)\n",
332 fidx, adap->tids.nftids);
340 cxgbe_verify_fidx(struct rte_flow *flow, unsigned int fidx, uint8_t del)
343 return 0; /* Hash filters */
344 return del ? cxgbe_validate_fidxondel(flow->f, fidx) :
345 cxgbe_validate_fidxonadd(&flow->fs,
346 ethdev2adap(flow->dev), fidx);
349 static int cxgbe_get_fidx(struct rte_flow *flow, unsigned int *fidx)
351 struct ch_filter_specification *fs = &flow->fs;
352 struct adapter *adap = ethdev2adap(flow->dev);
354 /* For tcam get the next available slot, if default value specified */
355 if (flow->fidx == FILTER_ID_MAX) {
358 idx = cxgbe_alloc_ftid(adap, fs->type);
360 dev_err(adap, "unable to get a filter index in tcam\n");
363 *fidx = (unsigned int)idx;
372 cxgbe_get_flow_item_index(const struct rte_flow_item items[], u32 type)
374 const struct rte_flow_item *i;
375 int j, index = -ENOENT;
377 for (i = items, j = 0; i->type != RTE_FLOW_ITEM_TYPE_END; i++, j++) {
378 if (i->type == type) {
388 ch_rte_parse_nat(uint8_t nmode, struct ch_filter_specification *fs)
391 * BIT_0 = [src_ip], BIT_1 = [dst_ip]
392 * BIT_2 = [src_port], BIT_3 = [dst_port]
394 * Only below cases are supported as per our spec.
398 fs->nat_mode = NAT_MODE_NONE;
401 fs->nat_mode = NAT_MODE_DIP;
404 fs->nat_mode = NAT_MODE_SIP_SP;
407 fs->nat_mode = NAT_MODE_DIP_SIP_SP;
410 fs->nat_mode = NAT_MODE_DIP_DP;
413 fs->nat_mode = NAT_MODE_DIP_DP_SIP;
416 fs->nat_mode = NAT_MODE_DIP_DP_SP;
419 fs->nat_mode = NAT_MODE_ALL;
429 ch_rte_parse_atype_switch(const struct rte_flow_action *a,
430 const struct rte_flow_item items[],
432 struct ch_filter_specification *fs,
433 struct rte_flow_error *e)
435 const struct rte_flow_action_of_set_vlan_vid *vlanid;
436 const struct rte_flow_action_of_push_vlan *pushvlan;
437 const struct rte_flow_action_set_ipv4 *ipv4;
438 const struct rte_flow_action_set_ipv6 *ipv6;
439 const struct rte_flow_action_set_tp *tp_port;
440 const struct rte_flow_action_phy_port *port;
444 case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID:
445 vlanid = (const struct rte_flow_action_of_set_vlan_vid *)
447 fs->newvlan = VLAN_REWRITE;
448 fs->vlan = vlanid->vlan_vid;
450 case RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN:
451 pushvlan = (const struct rte_flow_action_of_push_vlan *)
453 if (pushvlan->ethertype != ETHER_TYPE_VLAN)
454 return rte_flow_error_set(e, EINVAL,
455 RTE_FLOW_ERROR_TYPE_ACTION, a,
456 "only ethertype 0x8100 "
457 "supported for push vlan.");
458 fs->newvlan = VLAN_INSERT;
460 case RTE_FLOW_ACTION_TYPE_OF_POP_VLAN:
461 fs->newvlan = VLAN_REMOVE;
463 case RTE_FLOW_ACTION_TYPE_PHY_PORT:
464 port = (const struct rte_flow_action_phy_port *)a->conf;
465 fs->eport = port->index;
467 case RTE_FLOW_ACTION_TYPE_SET_IPV4_SRC:
468 item_index = cxgbe_get_flow_item_index(items,
469 RTE_FLOW_ITEM_TYPE_IPV4);
471 return rte_flow_error_set(e, EINVAL,
472 RTE_FLOW_ERROR_TYPE_ACTION, a,
473 "No RTE_FLOW_ITEM_TYPE_IPV4 "
476 ipv4 = (const struct rte_flow_action_set_ipv4 *)a->conf;
477 memcpy(fs->nat_fip, &ipv4->ipv4_addr, sizeof(ipv4->ipv4_addr));
480 case RTE_FLOW_ACTION_TYPE_SET_IPV4_DST:
481 item_index = cxgbe_get_flow_item_index(items,
482 RTE_FLOW_ITEM_TYPE_IPV4);
484 return rte_flow_error_set(e, EINVAL,
485 RTE_FLOW_ERROR_TYPE_ACTION, a,
486 "No RTE_FLOW_ITEM_TYPE_IPV4 "
489 ipv4 = (const struct rte_flow_action_set_ipv4 *)a->conf;
490 memcpy(fs->nat_lip, &ipv4->ipv4_addr, sizeof(ipv4->ipv4_addr));
493 case RTE_FLOW_ACTION_TYPE_SET_IPV6_SRC:
494 item_index = cxgbe_get_flow_item_index(items,
495 RTE_FLOW_ITEM_TYPE_IPV6);
497 return rte_flow_error_set(e, EINVAL,
498 RTE_FLOW_ERROR_TYPE_ACTION, a,
499 "No RTE_FLOW_ITEM_TYPE_IPV6 "
502 ipv6 = (const struct rte_flow_action_set_ipv6 *)a->conf;
503 memcpy(fs->nat_fip, ipv6->ipv6_addr, sizeof(ipv6->ipv6_addr));
506 case RTE_FLOW_ACTION_TYPE_SET_IPV6_DST:
507 item_index = cxgbe_get_flow_item_index(items,
508 RTE_FLOW_ITEM_TYPE_IPV6);
510 return rte_flow_error_set(e, EINVAL,
511 RTE_FLOW_ERROR_TYPE_ACTION, a,
512 "No RTE_FLOW_ITEM_TYPE_IPV6 "
515 ipv6 = (const struct rte_flow_action_set_ipv6 *)a->conf;
516 memcpy(fs->nat_lip, ipv6->ipv6_addr, sizeof(ipv6->ipv6_addr));
519 case RTE_FLOW_ACTION_TYPE_SET_TP_SRC:
520 item_index = cxgbe_get_flow_item_index(items,
521 RTE_FLOW_ITEM_TYPE_TCP);
522 if (item_index < 0) {
524 cxgbe_get_flow_item_index(items,
525 RTE_FLOW_ITEM_TYPE_UDP);
527 return rte_flow_error_set(e, EINVAL,
528 RTE_FLOW_ERROR_TYPE_ACTION, a,
529 "No RTE_FLOW_ITEM_TYPE_TCP or "
530 "RTE_FLOW_ITEM_TYPE_UDP found");
533 tp_port = (const struct rte_flow_action_set_tp *)a->conf;
534 fs->nat_fport = be16_to_cpu(tp_port->port);
537 case RTE_FLOW_ACTION_TYPE_SET_TP_DST:
538 item_index = cxgbe_get_flow_item_index(items,
539 RTE_FLOW_ITEM_TYPE_TCP);
540 if (item_index < 0) {
542 cxgbe_get_flow_item_index(items,
543 RTE_FLOW_ITEM_TYPE_UDP);
545 return rte_flow_error_set(e, EINVAL,
546 RTE_FLOW_ERROR_TYPE_ACTION, a,
547 "No RTE_FLOW_ITEM_TYPE_TCP or "
548 "RTE_FLOW_ITEM_TYPE_UDP found");
551 tp_port = (const struct rte_flow_action_set_tp *)a->conf;
552 fs->nat_lport = be16_to_cpu(tp_port->port);
555 case RTE_FLOW_ACTION_TYPE_MAC_SWAP:
556 item_index = cxgbe_get_flow_item_index(items,
557 RTE_FLOW_ITEM_TYPE_ETH);
559 return rte_flow_error_set(e, EINVAL,
560 RTE_FLOW_ERROR_TYPE_ACTION, a,
561 "No RTE_FLOW_ITEM_TYPE_ETH "
566 /* We are not supposed to come here */
567 return rte_flow_error_set(e, EINVAL,
568 RTE_FLOW_ERROR_TYPE_ACTION, a,
569 "Action not supported");
576 cxgbe_rtef_parse_actions(struct rte_flow *flow,
577 const struct rte_flow_item items[],
578 const struct rte_flow_action action[],
579 struct rte_flow_error *e)
581 struct ch_filter_specification *fs = &flow->fs;
582 uint8_t nmode = 0, nat_ipv4 = 0, nat_ipv6 = 0;
583 const struct rte_flow_action_queue *q;
584 const struct rte_flow_action *a;
588 for (a = action; a->type != RTE_FLOW_ACTION_TYPE_END; a++) {
590 case RTE_FLOW_ACTION_TYPE_VOID:
592 case RTE_FLOW_ACTION_TYPE_DROP:
594 return rte_flow_error_set(e, EINVAL,
595 RTE_FLOW_ERROR_TYPE_ACTION, a,
596 "specify only 1 pass/drop");
597 fs->action = FILTER_DROP;
599 case RTE_FLOW_ACTION_TYPE_QUEUE:
600 q = (const struct rte_flow_action_queue *)a->conf;
602 return rte_flow_error_set(e, EINVAL,
603 RTE_FLOW_ERROR_TYPE_ACTION, q,
604 "specify rx queue index");
605 if (check_rxq(flow->dev, q->index))
606 return rte_flow_error_set(e, EINVAL,
607 RTE_FLOW_ERROR_TYPE_ACTION, q,
610 return rte_flow_error_set(e, EINVAL,
611 RTE_FLOW_ERROR_TYPE_ACTION, a,
612 "specify only 1 pass/drop");
613 fs->action = FILTER_PASS;
617 case RTE_FLOW_ACTION_TYPE_COUNT:
620 case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID:
621 case RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN:
622 case RTE_FLOW_ACTION_TYPE_OF_POP_VLAN:
623 case RTE_FLOW_ACTION_TYPE_PHY_PORT:
624 case RTE_FLOW_ACTION_TYPE_MAC_SWAP:
625 case RTE_FLOW_ACTION_TYPE_SET_IPV4_SRC:
626 case RTE_FLOW_ACTION_TYPE_SET_IPV4_DST:
629 case RTE_FLOW_ACTION_TYPE_SET_IPV6_SRC:
630 case RTE_FLOW_ACTION_TYPE_SET_IPV6_DST:
633 case RTE_FLOW_ACTION_TYPE_SET_TP_SRC:
634 case RTE_FLOW_ACTION_TYPE_SET_TP_DST:
636 /* We allow multiple switch actions, but switch is
637 * not compatible with either queue or drop
639 if (abit++ && fs->action != FILTER_SWITCH)
640 return rte_flow_error_set(e, EINVAL,
641 RTE_FLOW_ERROR_TYPE_ACTION, a,
642 "overlapping action specified");
643 if (nat_ipv4 && nat_ipv6)
644 return rte_flow_error_set(e, EINVAL,
645 RTE_FLOW_ERROR_TYPE_ACTION, a,
646 "Can't have one address ipv4 and the"
649 ret = ch_rte_parse_atype_switch(a, items, &nmode, fs,
653 fs->action = FILTER_SWITCH;
656 /* Not supported action : return error */
657 return rte_flow_error_set(e, ENOTSUP,
658 RTE_FLOW_ERROR_TYPE_ACTION,
659 a, "Action not supported");
663 if (ch_rte_parse_nat(nmode, fs))
664 return rte_flow_error_set(e, EINVAL,
665 RTE_FLOW_ERROR_TYPE_ACTION, a,
666 "invalid settings for swich action");
670 static struct chrte_fparse parseitem[] = {
671 [RTE_FLOW_ITEM_TYPE_ETH] = {
672 .fptr = ch_rte_parsetype_eth,
673 .dmask = &(const struct rte_flow_item_eth){
674 .dst.addr_bytes = "\xff\xff\xff\xff\xff\xff",
675 .src.addr_bytes = "\x00\x00\x00\x00\x00\x00",
680 [RTE_FLOW_ITEM_TYPE_PHY_PORT] = {
681 .fptr = ch_rte_parsetype_port,
682 .dmask = &(const struct rte_flow_item_phy_port){
687 [RTE_FLOW_ITEM_TYPE_IPV4] = {
688 .fptr = ch_rte_parsetype_ipv4,
689 .dmask = &rte_flow_item_ipv4_mask,
692 [RTE_FLOW_ITEM_TYPE_IPV6] = {
693 .fptr = ch_rte_parsetype_ipv6,
694 .dmask = &rte_flow_item_ipv6_mask,
697 [RTE_FLOW_ITEM_TYPE_UDP] = {
698 .fptr = ch_rte_parsetype_udp,
699 .dmask = &rte_flow_item_udp_mask,
702 [RTE_FLOW_ITEM_TYPE_TCP] = {
703 .fptr = ch_rte_parsetype_tcp,
704 .dmask = &rte_flow_item_tcp_mask,
709 cxgbe_rtef_parse_items(struct rte_flow *flow,
710 const struct rte_flow_item items[],
711 struct rte_flow_error *e)
713 struct adapter *adap = ethdev2adap(flow->dev);
714 const struct rte_flow_item *i;
715 char repeat[ARRAY_SIZE(parseitem)] = {0};
717 for (i = items; i->type != RTE_FLOW_ITEM_TYPE_END; i++) {
718 struct chrte_fparse *idx;
721 if (i->type >= ARRAY_SIZE(parseitem))
722 return rte_flow_error_set(e, ENOTSUP,
723 RTE_FLOW_ERROR_TYPE_ITEM,
724 i, "Item not supported");
727 case RTE_FLOW_ITEM_TYPE_VOID:
730 /* check if item is repeated */
732 return rte_flow_error_set(e, ENOTSUP,
733 RTE_FLOW_ERROR_TYPE_ITEM, i,
734 "parse items cannot be repeated (except void)");
737 /* validate the item */
738 ret = cxgbe_validate_item(i, e);
742 idx = &flow->item_parser[i->type];
743 if (!idx || !idx->fptr) {
744 return rte_flow_error_set(e, ENOTSUP,
745 RTE_FLOW_ERROR_TYPE_ITEM, i,
746 "Item not supported");
748 ret = idx->fptr(idx->dmask, i, &flow->fs, e);
755 cxgbe_fill_filter_region(adap, &flow->fs);
761 cxgbe_flow_parse(struct rte_flow *flow,
762 const struct rte_flow_attr *attr,
763 const struct rte_flow_item item[],
764 const struct rte_flow_action action[],
765 struct rte_flow_error *e)
768 /* parse user request into ch_filter_specification */
769 ret = cxgbe_rtef_parse_attr(flow, attr, e);
772 ret = cxgbe_rtef_parse_items(flow, item, e);
775 return cxgbe_rtef_parse_actions(flow, item, action, e);
778 static int __cxgbe_flow_create(struct rte_eth_dev *dev, struct rte_flow *flow)
780 struct ch_filter_specification *fs = &flow->fs;
781 struct adapter *adap = ethdev2adap(dev);
782 struct tid_info *t = &adap->tids;
783 struct filter_ctx ctx;
787 if (cxgbe_get_fidx(flow, &fidx))
789 if (cxgbe_verify_fidx(flow, fidx, 0))
792 t4_init_completion(&ctx.completion);
793 /* go create the filter */
794 err = cxgbe_set_filter(dev, fidx, fs, &ctx);
796 dev_err(adap, "Error %d while creating filter.\n", err);
800 /* Poll the FW for reply */
801 err = cxgbe_poll_for_completion(&adap->sge.fw_evtq,
806 dev_err(adap, "Filter set operation timed out (%d)\n", err);
810 dev_err(adap, "Hardware error %d while creating the filter.\n",
815 if (fs->cap) { /* to destroy the filter */
816 flow->fidx = ctx.tid;
817 flow->f = lookup_tid(t, ctx.tid);
820 flow->f = &adap->tids.ftid_tab[fidx];
826 static struct rte_flow *
827 cxgbe_flow_create(struct rte_eth_dev *dev,
828 const struct rte_flow_attr *attr,
829 const struct rte_flow_item item[],
830 const struct rte_flow_action action[],
831 struct rte_flow_error *e)
833 struct rte_flow *flow;
836 flow = t4_os_alloc(sizeof(struct rte_flow));
838 rte_flow_error_set(e, ENOMEM, RTE_FLOW_ERROR_TYPE_HANDLE,
839 NULL, "Unable to allocate memory for"
844 flow->item_parser = parseitem;
846 flow->fs.private = (void *)flow;
848 if (cxgbe_flow_parse(flow, attr, item, action, e)) {
853 /* go, interact with cxgbe_filter */
854 ret = __cxgbe_flow_create(dev, flow);
856 rte_flow_error_set(e, ret, RTE_FLOW_ERROR_TYPE_HANDLE,
857 NULL, "Unable to create flow rule");
862 flow->f->private = flow; /* Will be used during flush */
867 static int __cxgbe_flow_destroy(struct rte_eth_dev *dev, struct rte_flow *flow)
869 struct adapter *adap = ethdev2adap(dev);
870 struct filter_entry *f = flow->f;
871 struct ch_filter_specification *fs;
872 struct filter_ctx ctx;
876 if (cxgbe_verify_fidx(flow, flow->fidx, 1))
879 t4_init_completion(&ctx.completion);
880 err = cxgbe_del_filter(dev, flow->fidx, fs, &ctx);
882 dev_err(adap, "Error %d while deleting filter.\n", err);
886 /* Poll the FW for reply */
887 err = cxgbe_poll_for_completion(&adap->sge.fw_evtq,
892 dev_err(adap, "Filter delete operation timed out (%d)\n", err);
896 dev_err(adap, "Hardware error %d while deleting the filter.\n",
902 if (fs->mask.macidx) {
903 struct port_info *pi = (struct port_info *)
904 (dev->data->dev_private);
907 ret = cxgbe_mpstcam_remove(pi, fs->val.macidx);
916 cxgbe_flow_destroy(struct rte_eth_dev *dev, struct rte_flow *flow,
917 struct rte_flow_error *e)
921 ret = __cxgbe_flow_destroy(dev, flow);
923 return rte_flow_error_set(e, ret, RTE_FLOW_ERROR_TYPE_HANDLE,
924 flow, "error destroying filter.");
929 static int __cxgbe_flow_query(struct rte_flow *flow, u64 *count,
932 struct adapter *adap = ethdev2adap(flow->dev);
933 struct ch_filter_specification fs = flow->f->fs;
934 unsigned int fidx = flow->fidx;
937 ret = cxgbe_get_filter_count(adap, fidx, count, fs.cap, 0);
940 return cxgbe_get_filter_count(adap, fidx, byte_count, fs.cap, 1);
944 cxgbe_flow_query(struct rte_eth_dev *dev, struct rte_flow *flow,
945 const struct rte_flow_action *action, void *data,
946 struct rte_flow_error *e)
948 struct ch_filter_specification fs;
949 struct rte_flow_query_count *c;
950 struct filter_entry *f;
958 if (action->type != RTE_FLOW_ACTION_TYPE_COUNT)
959 return rte_flow_error_set(e, ENOTSUP,
960 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
961 "only count supported for query");
964 * This is a valid operation, Since we are allowed to do chelsio
965 * specific operations in rte side of our code but not vise-versa
967 * So, fs can be queried/modified here BUT rte_flow_query_count
968 * cannot be worked on by the lower layer since we want to maintain
969 * it as rte_flow agnostic.
972 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_ACTION,
973 &fs, "filter hit counters were not"
974 " enabled during filter creation");
976 c = (struct rte_flow_query_count *)data;
977 ret = __cxgbe_flow_query(flow, &c->hits, &c->bytes);
979 return rte_flow_error_set(e, -ret, RTE_FLOW_ERROR_TYPE_ACTION,
980 f, "cxgbe pmd failed to"
983 /* Query was successful */
987 return 0; /* success / partial_success */
991 cxgbe_flow_validate(struct rte_eth_dev *dev,
992 const struct rte_flow_attr *attr,
993 const struct rte_flow_item item[],
994 const struct rte_flow_action action[],
995 struct rte_flow_error *e)
997 struct adapter *adap = ethdev2adap(dev);
998 struct rte_flow *flow;
1002 flow = t4_os_alloc(sizeof(struct rte_flow));
1004 return rte_flow_error_set(e, ENOMEM, RTE_FLOW_ERROR_TYPE_HANDLE,
1006 "Unable to allocate memory for filter_entry");
1008 flow->item_parser = parseitem;
1011 ret = cxgbe_flow_parse(flow, attr, item, action, e);
1017 if (validate_filter(adap, &flow->fs)) {
1019 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_HANDLE,
1021 "validation failed. Check f/w config file.");
1024 if (cxgbe_get_fidx(flow, &fidx)) {
1026 return rte_flow_error_set(e, ENOMEM, RTE_FLOW_ERROR_TYPE_HANDLE,
1027 NULL, "no memory in tcam.");
1030 if (cxgbe_verify_fidx(flow, fidx, 0)) {
1032 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_HANDLE,
1033 NULL, "validation failed");
1041 * @ret : > 0 filter destroyed succsesfully
1042 * < 0 error destroying filter
1043 * == 1 filter not active / not found
1046 cxgbe_check_n_destroy(struct filter_entry *f, struct rte_eth_dev *dev,
1047 struct rte_flow_error *e)
1049 if (f && (f->valid || f->pending) &&
1050 f->dev == dev && /* Only if user has asked for this port */
1051 f->private) /* We (rte_flow) created this filter */
1052 return cxgbe_flow_destroy(dev, (struct rte_flow *)f->private,
1057 static int cxgbe_flow_flush(struct rte_eth_dev *dev, struct rte_flow_error *e)
1059 struct adapter *adap = ethdev2adap(dev);
1063 if (adap->tids.ftid_tab) {
1064 struct filter_entry *f = &adap->tids.ftid_tab[0];
1066 for (i = 0; i < adap->tids.nftids; i++, f++) {
1067 ret = cxgbe_check_n_destroy(f, dev, e);
1073 if (is_hashfilter(adap) && adap->tids.tid_tab) {
1074 struct filter_entry *f;
1076 for (i = adap->tids.hash_base; i <= adap->tids.ntids; i++) {
1077 f = (struct filter_entry *)adap->tids.tid_tab[i];
1079 ret = cxgbe_check_n_destroy(f, dev, e);
1086 return ret >= 0 ? 0 : ret;
1089 static const struct rte_flow_ops cxgbe_flow_ops = {
1090 .validate = cxgbe_flow_validate,
1091 .create = cxgbe_flow_create,
1092 .destroy = cxgbe_flow_destroy,
1093 .flush = cxgbe_flow_flush,
1094 .query = cxgbe_flow_query,
1099 cxgbe_dev_filter_ctrl(struct rte_eth_dev *dev,
1100 enum rte_filter_type filter_type,
1101 enum rte_filter_op filter_op,
1107 switch (filter_type) {
1108 case RTE_ETH_FILTER_GENERIC:
1109 if (filter_op != RTE_ETH_FILTER_GET)
1111 *(const void **)arg = &cxgbe_flow_ops;