1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2018 Chelsio Communications.
5 #include "base/common.h"
6 #include "cxgbe_flow.h"
8 #define __CXGBE_FILL_FS(__v, __m, fs, elem, e) \
10 if ((fs)->mask.elem && ((fs)->val.elem != (__v))) \
11 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_ITEM, \
12 NULL, "Redefined match item with" \
13 " different values found"); \
14 (fs)->val.elem = (__v); \
15 (fs)->mask.elem = (__m); \
18 #define __CXGBE_FILL_FS_MEMCPY(__v, __m, fs, elem) \
20 memcpy(&(fs)->val.elem, &(__v), sizeof(__v)); \
21 memcpy(&(fs)->mask.elem, &(__m), sizeof(__m)); \
24 #define CXGBE_FILL_FS(v, m, elem) \
25 __CXGBE_FILL_FS(v, m, fs, elem, e)
27 #define CXGBE_FILL_FS_MEMCPY(v, m, elem) \
28 __CXGBE_FILL_FS_MEMCPY(v, m, fs, elem)
31 cxgbe_validate_item(const struct rte_flow_item *i, struct rte_flow_error *e)
33 /* rte_flow specification does not allow it. */
34 if (!i->spec && (i->mask || i->last))
35 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_ITEM,
36 i, "last or mask given without spec");
38 * We don't support it.
39 * Although, we can support values in last as 0's or last == spec.
40 * But this will not provide user with any additional functionality
41 * and will only increase the complexity for us.
44 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
45 i, "last is not supported by chelsio pmd");
50 * Apart from the 4-tuple IPv4/IPv6 - TCP/UDP information,
51 * there's only 40-bits available to store match fields.
52 * So, to save space, optimize filter spec for some common
53 * known fields that hardware can parse against incoming
54 * packets automatically.
57 cxgbe_tweak_filter_spec(struct adapter *adap,
58 struct ch_filter_specification *fs)
60 /* Save 16-bit ethertype field space, by setting corresponding
61 * 1-bit flags in the filter spec for common known ethertypes.
62 * When hardware sees these flags, it automatically infers and
63 * matches incoming packets against the corresponding ethertype.
65 if (fs->mask.ethtype == 0xffff) {
66 switch (fs->val.ethtype) {
67 case RTE_ETHER_TYPE_IPV4:
68 if (adap->params.tp.ethertype_shift < 0) {
69 fs->type = FILTER_TYPE_IPV4;
74 case RTE_ETHER_TYPE_IPV6:
75 if (adap->params.tp.ethertype_shift < 0) {
76 fs->type = FILTER_TYPE_IPV6;
81 case RTE_ETHER_TYPE_VLAN:
82 if (adap->params.tp.ethertype_shift < 0 &&
83 adap->params.tp.vlan_shift >= 0) {
84 fs->val.ivlan_vld = 1;
85 fs->mask.ivlan_vld = 1;
90 case RTE_ETHER_TYPE_QINQ:
91 if (adap->params.tp.ethertype_shift < 0 &&
92 adap->params.tp.vnic_shift >= 0) {
93 fs->val.ovlan_vld = 1;
94 fs->mask.ovlan_vld = 1;
106 cxgbe_fill_filter_region(struct adapter *adap,
107 struct ch_filter_specification *fs)
109 struct tp_params *tp = &adap->params.tp;
110 u64 hash_filter_mask = tp->hash_filter_mask;
115 if (!is_hashfilter(adap))
119 uint8_t biton[16] = {0xff, 0xff, 0xff, 0xff,
120 0xff, 0xff, 0xff, 0xff,
121 0xff, 0xff, 0xff, 0xff,
122 0xff, 0xff, 0xff, 0xff};
123 uint8_t bitoff[16] = {0};
125 if (!memcmp(fs->val.lip, bitoff, sizeof(bitoff)) ||
126 !memcmp(fs->val.fip, bitoff, sizeof(bitoff)) ||
127 memcmp(fs->mask.lip, biton, sizeof(biton)) ||
128 memcmp(fs->mask.fip, biton, sizeof(biton)))
131 uint32_t biton = 0xffffffff;
132 uint32_t bitoff = 0x0U;
134 if (!memcmp(fs->val.lip, &bitoff, sizeof(bitoff)) ||
135 !memcmp(fs->val.fip, &bitoff, sizeof(bitoff)) ||
136 memcmp(fs->mask.lip, &biton, sizeof(biton)) ||
137 memcmp(fs->mask.fip, &biton, sizeof(biton)))
141 if (!fs->val.lport || fs->mask.lport != 0xffff)
143 if (!fs->val.fport || fs->mask.fport != 0xffff)
146 if (tp->protocol_shift >= 0)
147 ntuple_mask |= (u64)fs->mask.proto << tp->protocol_shift;
148 if (tp->ethertype_shift >= 0)
149 ntuple_mask |= (u64)fs->mask.ethtype << tp->ethertype_shift;
150 if (tp->port_shift >= 0)
151 ntuple_mask |= (u64)fs->mask.iport << tp->port_shift;
152 if (tp->macmatch_shift >= 0)
153 ntuple_mask |= (u64)fs->mask.macidx << tp->macmatch_shift;
154 if (tp->vlan_shift >= 0 && fs->mask.ivlan_vld)
155 ntuple_mask |= (u64)(F_FT_VLAN_VLD | fs->mask.ivlan) <<
157 if (tp->vnic_shift >= 0) {
158 if (fs->mask.ovlan_vld)
159 ntuple_mask |= (u64)(fs->val.ovlan_vld << 16 |
160 fs->mask.ovlan) << tp->vnic_shift;
161 else if (fs->mask.pfvf_vld)
162 ntuple_mask |= (u64)(fs->mask.pfvf_vld << 16 |
164 fs->mask.vf) << tp->vnic_shift;
166 if (tp->tos_shift >= 0)
167 ntuple_mask |= (u64)fs->mask.tos << tp->tos_shift;
169 if (ntuple_mask != hash_filter_mask)
172 fs->cap = 1; /* use hash region */
176 ch_rte_parsetype_eth(const void *dmask, const struct rte_flow_item *item,
177 struct ch_filter_specification *fs,
178 struct rte_flow_error *e)
180 const struct rte_flow_item_eth *spec = item->spec;
181 const struct rte_flow_item_eth *umask = item->mask;
182 const struct rte_flow_item_eth *mask;
184 /* If user has not given any mask, then use chelsio supported mask. */
185 mask = umask ? umask : (const struct rte_flow_item_eth *)dmask;
190 /* we don't support SRC_MAC filtering*/
191 if (!rte_is_zero_ether_addr(&mask->src))
192 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
194 "src mac filtering not supported");
196 if (!rte_is_zero_ether_addr(&mask->dst)) {
197 const u8 *addr = (const u8 *)&spec->dst.addr_bytes[0];
198 const u8 *m = (const u8 *)&mask->dst.addr_bytes[0];
199 struct rte_flow *flow = (struct rte_flow *)fs->private;
200 struct port_info *pi = (struct port_info *)
201 (flow->dev->data->dev_private);
204 idx = cxgbe_mpstcam_alloc(pi, addr, m);
206 return rte_flow_error_set(e, idx,
207 RTE_FLOW_ERROR_TYPE_ITEM,
208 NULL, "unable to allocate mac"
210 CXGBE_FILL_FS(idx, 0x1ff, macidx);
213 CXGBE_FILL_FS(be16_to_cpu(spec->type),
214 be16_to_cpu(mask->type), ethtype);
220 ch_rte_parsetype_port(const void *dmask, const struct rte_flow_item *item,
221 struct ch_filter_specification *fs,
222 struct rte_flow_error *e)
224 const struct rte_flow_item_phy_port *val = item->spec;
225 const struct rte_flow_item_phy_port *umask = item->mask;
226 const struct rte_flow_item_phy_port *mask;
228 mask = umask ? umask : (const struct rte_flow_item_phy_port *)dmask;
231 return 0; /* Wildcard, match all physical ports */
233 if (val->index > 0x7)
234 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_ITEM,
236 "port index up to 0x7 is supported");
238 CXGBE_FILL_FS(val->index, mask->index, iport);
244 ch_rte_parsetype_vlan(const void *dmask, const struct rte_flow_item *item,
245 struct ch_filter_specification *fs,
246 struct rte_flow_error *e)
248 const struct rte_flow_item_vlan *spec = item->spec;
249 const struct rte_flow_item_vlan *umask = item->mask;
250 const struct rte_flow_item_vlan *mask;
252 /* If user has not given any mask, then use chelsio supported mask. */
253 mask = umask ? umask : (const struct rte_flow_item_vlan *)dmask;
255 if (!fs->mask.ethtype)
256 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_ITEM,
258 "Can't parse VLAN item without knowing ethertype");
260 /* If ethertype is already set and is not VLAN (0x8100) or
261 * QINQ(0x88A8), then don't proceed further. Otherwise,
262 * reset the outer ethertype, so that it can be replaced by
263 * innermost ethertype. Note that hardware will automatically
264 * match against VLAN or QINQ packets, based on 'ivlan_vld' or
265 * 'ovlan_vld' bit set in Chelsio filter spec, respectively.
267 if (fs->mask.ethtype) {
268 if (fs->val.ethtype != RTE_ETHER_TYPE_VLAN &&
269 fs->val.ethtype != RTE_ETHER_TYPE_QINQ)
270 return rte_flow_error_set(e, EINVAL,
271 RTE_FLOW_ERROR_TYPE_ITEM,
273 "Ethertype must be 0x8100 or 0x88a8");
276 if (fs->val.ethtype == RTE_ETHER_TYPE_QINQ) {
277 CXGBE_FILL_FS(1, 1, ovlan_vld);
279 CXGBE_FILL_FS(be16_to_cpu(spec->tci),
280 be16_to_cpu(mask->tci), ovlan);
282 fs->mask.ethtype = 0;
285 } else if (fs->val.ethtype == RTE_ETHER_TYPE_VLAN) {
286 CXGBE_FILL_FS(1, 1, ivlan_vld);
288 CXGBE_FILL_FS(be16_to_cpu(spec->tci),
289 be16_to_cpu(mask->tci), ivlan);
291 fs->mask.ethtype = 0;
297 CXGBE_FILL_FS(be16_to_cpu(spec->inner_type),
298 be16_to_cpu(mask->inner_type), ethtype);
304 ch_rte_parsetype_pf(const void *dmask __rte_unused,
305 const struct rte_flow_item *item __rte_unused,
306 struct ch_filter_specification *fs,
307 struct rte_flow_error *e __rte_unused)
309 struct rte_flow *flow = (struct rte_flow *)fs->private;
310 struct rte_eth_dev *dev = flow->dev;
311 struct adapter *adap = ethdev2adap(dev);
313 CXGBE_FILL_FS(1, 1, pfvf_vld);
315 CXGBE_FILL_FS(adap->pf, 0x7, pf);
320 ch_rte_parsetype_vf(const void *dmask, const struct rte_flow_item *item,
321 struct ch_filter_specification *fs,
322 struct rte_flow_error *e)
324 const struct rte_flow_item_vf *umask = item->mask;
325 const struct rte_flow_item_vf *val = item->spec;
326 const struct rte_flow_item_vf *mask;
328 /* If user has not given any mask, then use chelsio supported mask. */
329 mask = umask ? umask : (const struct rte_flow_item_vf *)dmask;
331 CXGBE_FILL_FS(1, 1, pfvf_vld);
334 return 0; /* Wildcard, match all Vf */
336 if (val->id > UCHAR_MAX)
337 return rte_flow_error_set(e, EINVAL,
338 RTE_FLOW_ERROR_TYPE_ITEM,
342 CXGBE_FILL_FS(val->id, mask->id, vf);
348 ch_rte_parsetype_udp(const void *dmask, const struct rte_flow_item *item,
349 struct ch_filter_specification *fs,
350 struct rte_flow_error *e)
352 const struct rte_flow_item_udp *val = item->spec;
353 const struct rte_flow_item_udp *umask = item->mask;
354 const struct rte_flow_item_udp *mask;
356 mask = umask ? umask : (const struct rte_flow_item_udp *)dmask;
358 if (mask->hdr.dgram_len || mask->hdr.dgram_cksum)
359 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
361 "udp: only src/dst port supported");
363 CXGBE_FILL_FS(IPPROTO_UDP, 0xff, proto);
366 CXGBE_FILL_FS(be16_to_cpu(val->hdr.src_port),
367 be16_to_cpu(mask->hdr.src_port), fport);
368 CXGBE_FILL_FS(be16_to_cpu(val->hdr.dst_port),
369 be16_to_cpu(mask->hdr.dst_port), lport);
374 ch_rte_parsetype_tcp(const void *dmask, const struct rte_flow_item *item,
375 struct ch_filter_specification *fs,
376 struct rte_flow_error *e)
378 const struct rte_flow_item_tcp *val = item->spec;
379 const struct rte_flow_item_tcp *umask = item->mask;
380 const struct rte_flow_item_tcp *mask;
382 mask = umask ? umask : (const struct rte_flow_item_tcp *)dmask;
384 if (mask->hdr.sent_seq || mask->hdr.recv_ack || mask->hdr.data_off ||
385 mask->hdr.tcp_flags || mask->hdr.rx_win || mask->hdr.cksum ||
387 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
389 "tcp: only src/dst port supported");
391 CXGBE_FILL_FS(IPPROTO_TCP, 0xff, proto);
394 CXGBE_FILL_FS(be16_to_cpu(val->hdr.src_port),
395 be16_to_cpu(mask->hdr.src_port), fport);
396 CXGBE_FILL_FS(be16_to_cpu(val->hdr.dst_port),
397 be16_to_cpu(mask->hdr.dst_port), lport);
402 ch_rte_parsetype_ipv4(const void *dmask, const struct rte_flow_item *item,
403 struct ch_filter_specification *fs,
404 struct rte_flow_error *e)
406 const struct rte_flow_item_ipv4 *val = item->spec;
407 const struct rte_flow_item_ipv4 *umask = item->mask;
408 const struct rte_flow_item_ipv4 *mask;
410 mask = umask ? umask : (const struct rte_flow_item_ipv4 *)dmask;
412 if (mask->hdr.time_to_live)
413 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
414 item, "ttl is not supported");
416 if (fs->mask.ethtype &&
417 (fs->val.ethtype != RTE_ETHER_TYPE_IPV4))
418 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_ITEM,
420 "Couldn't find IPv4 ethertype");
421 fs->type = FILTER_TYPE_IPV4;
423 return 0; /* ipv4 wild card */
425 CXGBE_FILL_FS(val->hdr.next_proto_id, mask->hdr.next_proto_id, proto);
426 CXGBE_FILL_FS_MEMCPY(val->hdr.dst_addr, mask->hdr.dst_addr, lip);
427 CXGBE_FILL_FS_MEMCPY(val->hdr.src_addr, mask->hdr.src_addr, fip);
428 CXGBE_FILL_FS(val->hdr.type_of_service, mask->hdr.type_of_service, tos);
434 ch_rte_parsetype_ipv6(const void *dmask, const struct rte_flow_item *item,
435 struct ch_filter_specification *fs,
436 struct rte_flow_error *e)
438 const struct rte_flow_item_ipv6 *val = item->spec;
439 const struct rte_flow_item_ipv6 *umask = item->mask;
440 const struct rte_flow_item_ipv6 *mask;
441 u32 vtc_flow, vtc_flow_mask;
443 mask = umask ? umask : (const struct rte_flow_item_ipv6 *)dmask;
445 vtc_flow_mask = be32_to_cpu(mask->hdr.vtc_flow);
447 if (vtc_flow_mask & RTE_IPV6_HDR_FL_MASK ||
448 mask->hdr.payload_len || mask->hdr.hop_limits)
449 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ITEM,
451 "flow/hop are not supported");
453 if (fs->mask.ethtype &&
454 (fs->val.ethtype != RTE_ETHER_TYPE_IPV6))
455 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_ITEM,
457 "Couldn't find IPv6 ethertype");
458 fs->type = FILTER_TYPE_IPV6;
460 return 0; /* ipv6 wild card */
462 CXGBE_FILL_FS(val->hdr.proto, mask->hdr.proto, proto);
464 vtc_flow = be32_to_cpu(val->hdr.vtc_flow);
465 CXGBE_FILL_FS((vtc_flow & RTE_IPV6_HDR_TC_MASK) >>
466 RTE_IPV6_HDR_TC_SHIFT,
467 (vtc_flow_mask & RTE_IPV6_HDR_TC_MASK) >>
468 RTE_IPV6_HDR_TC_SHIFT,
471 CXGBE_FILL_FS_MEMCPY(val->hdr.dst_addr, mask->hdr.dst_addr, lip);
472 CXGBE_FILL_FS_MEMCPY(val->hdr.src_addr, mask->hdr.src_addr, fip);
478 cxgbe_rtef_parse_attr(struct rte_flow *flow, const struct rte_flow_attr *attr,
479 struct rte_flow_error *e)
482 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ATTR,
483 attr, "attribute:<egress> is"
486 return rte_flow_error_set(e, ENOTSUP, RTE_FLOW_ERROR_TYPE_ATTR,
487 attr, "group parameter is"
490 flow->fidx = attr->priority ? attr->priority - 1 : FILTER_ID_MAX;
495 static inline int check_rxq(struct rte_eth_dev *dev, uint16_t rxq)
497 struct port_info *pi = ethdev2pinfo(dev);
499 if (rxq > pi->n_rx_qsets)
504 static int cxgbe_validate_fidxondel(struct filter_entry *f, unsigned int fidx)
506 struct adapter *adap = ethdev2adap(f->dev);
507 struct ch_filter_specification fs = f->fs;
510 if (fidx >= adap->tids.nftids) {
511 dev_err(adap, "invalid flow index %d.\n", fidx);
515 nentries = cxgbe_filter_slots(adap, fs.type);
516 if (!cxgbe_is_filter_set(&adap->tids, fidx, nentries)) {
517 dev_err(adap, "Already free fidx:%d f:%p\n", fidx, f);
525 cxgbe_validate_fidxonadd(struct ch_filter_specification *fs,
526 struct adapter *adap, unsigned int fidx)
530 nentries = cxgbe_filter_slots(adap, fs->type);
531 if (cxgbe_is_filter_set(&adap->tids, fidx, nentries)) {
532 dev_err(adap, "filter index: %d is busy.\n", fidx);
536 if (fidx >= adap->tids.nftids) {
537 dev_err(adap, "filter index (%u) >= max(%u)\n",
538 fidx, adap->tids.nftids);
546 cxgbe_verify_fidx(struct rte_flow *flow, unsigned int fidx, uint8_t del)
549 return 0; /* Hash filters */
550 return del ? cxgbe_validate_fidxondel(flow->f, fidx) :
551 cxgbe_validate_fidxonadd(&flow->fs,
552 ethdev2adap(flow->dev), fidx);
555 static int cxgbe_get_fidx(struct rte_flow *flow, unsigned int *fidx)
557 struct ch_filter_specification *fs = &flow->fs;
558 struct adapter *adap = ethdev2adap(flow->dev);
560 /* For tcam get the next available slot, if default value specified */
561 if (flow->fidx == FILTER_ID_MAX) {
565 nentries = cxgbe_filter_slots(adap, fs->type);
566 idx = cxgbe_alloc_ftid(adap, nentries);
568 dev_err(adap, "unable to get a filter index in tcam\n");
571 *fidx = (unsigned int)idx;
580 cxgbe_get_flow_item_index(const struct rte_flow_item items[], u32 type)
582 const struct rte_flow_item *i;
583 int j, index = -ENOENT;
585 for (i = items, j = 0; i->type != RTE_FLOW_ITEM_TYPE_END; i++, j++) {
586 if (i->type == type) {
596 ch_rte_parse_nat(uint8_t nmode, struct ch_filter_specification *fs)
599 * BIT_0 = [src_ip], BIT_1 = [dst_ip]
600 * BIT_2 = [src_port], BIT_3 = [dst_port]
602 * Only below cases are supported as per our spec.
606 fs->nat_mode = NAT_MODE_NONE;
609 fs->nat_mode = NAT_MODE_DIP;
612 fs->nat_mode = NAT_MODE_SIP_SP;
615 fs->nat_mode = NAT_MODE_DIP_SIP_SP;
618 fs->nat_mode = NAT_MODE_DIP_DP;
621 fs->nat_mode = NAT_MODE_DIP_DP_SIP;
624 fs->nat_mode = NAT_MODE_DIP_DP_SP;
627 fs->nat_mode = NAT_MODE_ALL;
637 ch_rte_parse_atype_switch(const struct rte_flow_action *a,
638 const struct rte_flow_item items[],
640 struct ch_filter_specification *fs,
641 struct rte_flow_error *e)
643 const struct rte_flow_action_of_set_vlan_vid *vlanid;
644 const struct rte_flow_action_of_set_vlan_pcp *vlanpcp;
645 const struct rte_flow_action_of_push_vlan *pushvlan;
646 const struct rte_flow_action_set_ipv4 *ipv4;
647 const struct rte_flow_action_set_ipv6 *ipv6;
648 const struct rte_flow_action_set_tp *tp_port;
649 const struct rte_flow_action_phy_port *port;
650 const struct rte_flow_action_set_mac *mac;
655 case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID:
656 vlanid = (const struct rte_flow_action_of_set_vlan_vid *)
658 /* If explicitly asked to push a new VLAN header,
659 * then don't set rewrite mode. Otherwise, the
660 * incoming VLAN packets will get their VLAN fields
661 * rewritten, instead of adding an additional outer
664 if (fs->newvlan != VLAN_INSERT)
665 fs->newvlan = VLAN_REWRITE;
666 tmp_vlan = fs->vlan & 0xe000;
667 fs->vlan = (be16_to_cpu(vlanid->vlan_vid) & 0xfff) | tmp_vlan;
669 case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP:
670 vlanpcp = (const struct rte_flow_action_of_set_vlan_pcp *)
672 /* If explicitly asked to push a new VLAN header,
673 * then don't set rewrite mode. Otherwise, the
674 * incoming VLAN packets will get their VLAN fields
675 * rewritten, instead of adding an additional outer
678 if (fs->newvlan != VLAN_INSERT)
679 fs->newvlan = VLAN_REWRITE;
680 tmp_vlan = fs->vlan & 0xfff;
681 fs->vlan = (vlanpcp->vlan_pcp << 13) | tmp_vlan;
683 case RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN:
684 pushvlan = (const struct rte_flow_action_of_push_vlan *)
686 if (be16_to_cpu(pushvlan->ethertype) != RTE_ETHER_TYPE_VLAN)
687 return rte_flow_error_set(e, EINVAL,
688 RTE_FLOW_ERROR_TYPE_ACTION, a,
689 "only ethertype 0x8100 "
690 "supported for push vlan.");
691 fs->newvlan = VLAN_INSERT;
693 case RTE_FLOW_ACTION_TYPE_OF_POP_VLAN:
694 fs->newvlan = VLAN_REMOVE;
696 case RTE_FLOW_ACTION_TYPE_PHY_PORT:
697 port = (const struct rte_flow_action_phy_port *)a->conf;
698 fs->eport = port->index;
700 case RTE_FLOW_ACTION_TYPE_SET_IPV4_SRC:
701 item_index = cxgbe_get_flow_item_index(items,
702 RTE_FLOW_ITEM_TYPE_IPV4);
704 return rte_flow_error_set(e, EINVAL,
705 RTE_FLOW_ERROR_TYPE_ACTION, a,
706 "No RTE_FLOW_ITEM_TYPE_IPV4 "
709 ipv4 = (const struct rte_flow_action_set_ipv4 *)a->conf;
710 memcpy(fs->nat_fip, &ipv4->ipv4_addr, sizeof(ipv4->ipv4_addr));
713 case RTE_FLOW_ACTION_TYPE_SET_IPV4_DST:
714 item_index = cxgbe_get_flow_item_index(items,
715 RTE_FLOW_ITEM_TYPE_IPV4);
717 return rte_flow_error_set(e, EINVAL,
718 RTE_FLOW_ERROR_TYPE_ACTION, a,
719 "No RTE_FLOW_ITEM_TYPE_IPV4 "
722 ipv4 = (const struct rte_flow_action_set_ipv4 *)a->conf;
723 memcpy(fs->nat_lip, &ipv4->ipv4_addr, sizeof(ipv4->ipv4_addr));
726 case RTE_FLOW_ACTION_TYPE_SET_IPV6_SRC:
727 item_index = cxgbe_get_flow_item_index(items,
728 RTE_FLOW_ITEM_TYPE_IPV6);
730 return rte_flow_error_set(e, EINVAL,
731 RTE_FLOW_ERROR_TYPE_ACTION, a,
732 "No RTE_FLOW_ITEM_TYPE_IPV6 "
735 ipv6 = (const struct rte_flow_action_set_ipv6 *)a->conf;
736 memcpy(fs->nat_fip, ipv6->ipv6_addr, sizeof(ipv6->ipv6_addr));
739 case RTE_FLOW_ACTION_TYPE_SET_IPV6_DST:
740 item_index = cxgbe_get_flow_item_index(items,
741 RTE_FLOW_ITEM_TYPE_IPV6);
743 return rte_flow_error_set(e, EINVAL,
744 RTE_FLOW_ERROR_TYPE_ACTION, a,
745 "No RTE_FLOW_ITEM_TYPE_IPV6 "
748 ipv6 = (const struct rte_flow_action_set_ipv6 *)a->conf;
749 memcpy(fs->nat_lip, ipv6->ipv6_addr, sizeof(ipv6->ipv6_addr));
752 case RTE_FLOW_ACTION_TYPE_SET_TP_SRC:
753 item_index = cxgbe_get_flow_item_index(items,
754 RTE_FLOW_ITEM_TYPE_TCP);
755 if (item_index < 0) {
757 cxgbe_get_flow_item_index(items,
758 RTE_FLOW_ITEM_TYPE_UDP);
760 return rte_flow_error_set(e, EINVAL,
761 RTE_FLOW_ERROR_TYPE_ACTION, a,
762 "No RTE_FLOW_ITEM_TYPE_TCP or "
763 "RTE_FLOW_ITEM_TYPE_UDP found");
766 tp_port = (const struct rte_flow_action_set_tp *)a->conf;
767 fs->nat_fport = be16_to_cpu(tp_port->port);
770 case RTE_FLOW_ACTION_TYPE_SET_TP_DST:
771 item_index = cxgbe_get_flow_item_index(items,
772 RTE_FLOW_ITEM_TYPE_TCP);
773 if (item_index < 0) {
775 cxgbe_get_flow_item_index(items,
776 RTE_FLOW_ITEM_TYPE_UDP);
778 return rte_flow_error_set(e, EINVAL,
779 RTE_FLOW_ERROR_TYPE_ACTION, a,
780 "No RTE_FLOW_ITEM_TYPE_TCP or "
781 "RTE_FLOW_ITEM_TYPE_UDP found");
784 tp_port = (const struct rte_flow_action_set_tp *)a->conf;
785 fs->nat_lport = be16_to_cpu(tp_port->port);
788 case RTE_FLOW_ACTION_TYPE_MAC_SWAP:
789 item_index = cxgbe_get_flow_item_index(items,
790 RTE_FLOW_ITEM_TYPE_ETH);
792 return rte_flow_error_set(e, EINVAL,
793 RTE_FLOW_ERROR_TYPE_ACTION, a,
794 "No RTE_FLOW_ITEM_TYPE_ETH "
798 case RTE_FLOW_ACTION_TYPE_SET_MAC_SRC:
799 item_index = cxgbe_get_flow_item_index(items,
800 RTE_FLOW_ITEM_TYPE_ETH);
802 return rte_flow_error_set(e, EINVAL,
803 RTE_FLOW_ERROR_TYPE_ACTION, a,
804 "No RTE_FLOW_ITEM_TYPE_ETH "
806 mac = (const struct rte_flow_action_set_mac *)a->conf;
809 memcpy(fs->smac, mac->mac_addr, sizeof(fs->smac));
811 case RTE_FLOW_ACTION_TYPE_SET_MAC_DST:
812 item_index = cxgbe_get_flow_item_index(items,
813 RTE_FLOW_ITEM_TYPE_ETH);
815 return rte_flow_error_set(e, EINVAL,
816 RTE_FLOW_ERROR_TYPE_ACTION, a,
817 "No RTE_FLOW_ITEM_TYPE_ETH found");
818 mac = (const struct rte_flow_action_set_mac *)a->conf;
821 memcpy(fs->dmac, mac->mac_addr, sizeof(fs->dmac));
824 /* We are not supposed to come here */
825 return rte_flow_error_set(e, EINVAL,
826 RTE_FLOW_ERROR_TYPE_ACTION, a,
827 "Action not supported");
834 cxgbe_rtef_parse_actions(struct rte_flow *flow,
835 const struct rte_flow_item items[],
836 const struct rte_flow_action action[],
837 struct rte_flow_error *e)
839 struct ch_filter_specification *fs = &flow->fs;
840 uint8_t nmode = 0, nat_ipv4 = 0, nat_ipv6 = 0;
841 uint8_t vlan_set_vid = 0, vlan_set_pcp = 0;
842 const struct rte_flow_action_queue *q;
843 const struct rte_flow_action *a;
847 for (a = action; a->type != RTE_FLOW_ACTION_TYPE_END; a++) {
849 case RTE_FLOW_ACTION_TYPE_VOID:
851 case RTE_FLOW_ACTION_TYPE_DROP:
853 return rte_flow_error_set(e, EINVAL,
854 RTE_FLOW_ERROR_TYPE_ACTION, a,
855 "specify only 1 pass/drop");
856 fs->action = FILTER_DROP;
858 case RTE_FLOW_ACTION_TYPE_QUEUE:
859 q = (const struct rte_flow_action_queue *)a->conf;
861 return rte_flow_error_set(e, EINVAL,
862 RTE_FLOW_ERROR_TYPE_ACTION, q,
863 "specify rx queue index");
864 if (check_rxq(flow->dev, q->index))
865 return rte_flow_error_set(e, EINVAL,
866 RTE_FLOW_ERROR_TYPE_ACTION, q,
869 return rte_flow_error_set(e, EINVAL,
870 RTE_FLOW_ERROR_TYPE_ACTION, a,
871 "specify only 1 pass/drop");
872 fs->action = FILTER_PASS;
876 case RTE_FLOW_ACTION_TYPE_COUNT:
879 case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID:
882 case RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP:
885 case RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN:
886 case RTE_FLOW_ACTION_TYPE_OF_POP_VLAN:
887 case RTE_FLOW_ACTION_TYPE_PHY_PORT:
888 case RTE_FLOW_ACTION_TYPE_MAC_SWAP:
889 case RTE_FLOW_ACTION_TYPE_SET_IPV4_SRC:
890 case RTE_FLOW_ACTION_TYPE_SET_IPV4_DST:
893 case RTE_FLOW_ACTION_TYPE_SET_IPV6_SRC:
894 case RTE_FLOW_ACTION_TYPE_SET_IPV6_DST:
897 case RTE_FLOW_ACTION_TYPE_SET_TP_SRC:
898 case RTE_FLOW_ACTION_TYPE_SET_TP_DST:
899 case RTE_FLOW_ACTION_TYPE_SET_MAC_SRC:
900 case RTE_FLOW_ACTION_TYPE_SET_MAC_DST:
902 /* We allow multiple switch actions, but switch is
903 * not compatible with either queue or drop
905 if (abit++ && fs->action != FILTER_SWITCH)
906 return rte_flow_error_set(e, EINVAL,
907 RTE_FLOW_ERROR_TYPE_ACTION, a,
908 "overlapping action specified");
909 if (nat_ipv4 && nat_ipv6)
910 return rte_flow_error_set(e, EINVAL,
911 RTE_FLOW_ERROR_TYPE_ACTION, a,
912 "Can't have one address ipv4 and the"
915 ret = ch_rte_parse_atype_switch(a, items, &nmode, fs,
919 fs->action = FILTER_SWITCH;
922 /* Not supported action : return error */
923 return rte_flow_error_set(e, ENOTSUP,
924 RTE_FLOW_ERROR_TYPE_ACTION,
925 a, "Action not supported");
929 if (fs->newvlan == VLAN_REWRITE && (!vlan_set_vid || !vlan_set_pcp))
930 return rte_flow_error_set(e, EINVAL,
931 RTE_FLOW_ERROR_TYPE_ACTION, a,
932 "Both OF_SET_VLAN_VID and "
933 "OF_SET_VLAN_PCP must be specified");
935 if (ch_rte_parse_nat(nmode, fs))
936 return rte_flow_error_set(e, EINVAL,
937 RTE_FLOW_ERROR_TYPE_ACTION, a,
938 "invalid settings for swich action");
942 static struct chrte_fparse parseitem[] = {
943 [RTE_FLOW_ITEM_TYPE_ETH] = {
944 .fptr = ch_rte_parsetype_eth,
945 .dmask = &(const struct rte_flow_item_eth){
946 .dst.addr_bytes = "\xff\xff\xff\xff\xff\xff",
947 .src.addr_bytes = "\x00\x00\x00\x00\x00\x00",
952 [RTE_FLOW_ITEM_TYPE_PHY_PORT] = {
953 .fptr = ch_rte_parsetype_port,
954 .dmask = &(const struct rte_flow_item_phy_port){
959 [RTE_FLOW_ITEM_TYPE_VLAN] = {
960 .fptr = ch_rte_parsetype_vlan,
961 .dmask = &(const struct rte_flow_item_vlan){
963 .inner_type = 0xffff,
967 [RTE_FLOW_ITEM_TYPE_IPV4] = {
968 .fptr = ch_rte_parsetype_ipv4,
969 .dmask = &(const struct rte_flow_item_ipv4) {
971 .src_addr = RTE_BE32(0xffffffff),
972 .dst_addr = RTE_BE32(0xffffffff),
973 .type_of_service = 0xff,
978 [RTE_FLOW_ITEM_TYPE_IPV6] = {
979 .fptr = ch_rte_parsetype_ipv6,
980 .dmask = &(const struct rte_flow_item_ipv6) {
983 "\xff\xff\xff\xff\xff\xff\xff\xff"
984 "\xff\xff\xff\xff\xff\xff\xff\xff",
986 "\xff\xff\xff\xff\xff\xff\xff\xff"
987 "\xff\xff\xff\xff\xff\xff\xff\xff",
988 .vtc_flow = RTE_BE32(0xff000000),
993 [RTE_FLOW_ITEM_TYPE_UDP] = {
994 .fptr = ch_rte_parsetype_udp,
995 .dmask = &rte_flow_item_udp_mask,
998 [RTE_FLOW_ITEM_TYPE_TCP] = {
999 .fptr = ch_rte_parsetype_tcp,
1000 .dmask = &rte_flow_item_tcp_mask,
1003 [RTE_FLOW_ITEM_TYPE_PF] = {
1004 .fptr = ch_rte_parsetype_pf,
1008 [RTE_FLOW_ITEM_TYPE_VF] = {
1009 .fptr = ch_rte_parsetype_vf,
1010 .dmask = &(const struct rte_flow_item_vf){
1017 cxgbe_rtef_parse_items(struct rte_flow *flow,
1018 const struct rte_flow_item items[],
1019 struct rte_flow_error *e)
1021 struct adapter *adap = ethdev2adap(flow->dev);
1022 const struct rte_flow_item *i;
1023 char repeat[ARRAY_SIZE(parseitem)] = {0};
1025 for (i = items; i->type != RTE_FLOW_ITEM_TYPE_END; i++) {
1026 struct chrte_fparse *idx;
1029 if (i->type >= ARRAY_SIZE(parseitem))
1030 return rte_flow_error_set(e, ENOTSUP,
1031 RTE_FLOW_ERROR_TYPE_ITEM,
1032 i, "Item not supported");
1035 case RTE_FLOW_ITEM_TYPE_VOID:
1038 /* check if item is repeated */
1039 if (repeat[i->type] &&
1040 i->type != RTE_FLOW_ITEM_TYPE_VLAN)
1041 return rte_flow_error_set(e, ENOTSUP,
1042 RTE_FLOW_ERROR_TYPE_ITEM, i,
1043 "parse items cannot be repeated(except void/vlan)");
1045 repeat[i->type] = 1;
1047 /* validate the item */
1048 ret = cxgbe_validate_item(i, e);
1052 idx = &flow->item_parser[i->type];
1053 if (!idx || !idx->fptr) {
1054 return rte_flow_error_set(e, ENOTSUP,
1055 RTE_FLOW_ERROR_TYPE_ITEM, i,
1056 "Item not supported");
1058 ret = idx->fptr(idx->dmask, i, &flow->fs, e);
1065 cxgbe_fill_filter_region(adap, &flow->fs);
1066 cxgbe_tweak_filter_spec(adap, &flow->fs);
1072 cxgbe_flow_parse(struct rte_flow *flow,
1073 const struct rte_flow_attr *attr,
1074 const struct rte_flow_item item[],
1075 const struct rte_flow_action action[],
1076 struct rte_flow_error *e)
1079 /* parse user request into ch_filter_specification */
1080 ret = cxgbe_rtef_parse_attr(flow, attr, e);
1083 ret = cxgbe_rtef_parse_items(flow, item, e);
1086 return cxgbe_rtef_parse_actions(flow, item, action, e);
1089 static int __cxgbe_flow_create(struct rte_eth_dev *dev, struct rte_flow *flow)
1091 struct ch_filter_specification *fs = &flow->fs;
1092 struct adapter *adap = ethdev2adap(dev);
1093 struct tid_info *t = &adap->tids;
1094 struct filter_ctx ctx;
1098 if (cxgbe_get_fidx(flow, &fidx))
1100 if (cxgbe_verify_fidx(flow, fidx, 0))
1103 t4_init_completion(&ctx.completion);
1104 /* go create the filter */
1105 err = cxgbe_set_filter(dev, fidx, fs, &ctx);
1107 dev_err(adap, "Error %d while creating filter.\n", err);
1111 /* Poll the FW for reply */
1112 err = cxgbe_poll_for_completion(&adap->sge.fw_evtq,
1114 CXGBE_FLOW_POLL_CNT,
1117 dev_err(adap, "Filter set operation timed out (%d)\n", err);
1121 dev_err(adap, "Hardware error %d while creating the filter.\n",
1126 if (fs->cap) { /* to destroy the filter */
1127 flow->fidx = ctx.tid;
1128 flow->f = lookup_tid(t, ctx.tid);
1131 flow->f = &adap->tids.ftid_tab[fidx];
1137 static struct rte_flow *
1138 cxgbe_flow_create(struct rte_eth_dev *dev,
1139 const struct rte_flow_attr *attr,
1140 const struct rte_flow_item item[],
1141 const struct rte_flow_action action[],
1142 struct rte_flow_error *e)
1144 struct adapter *adap = ethdev2adap(dev);
1145 struct rte_flow *flow;
1148 flow = t4_os_alloc(sizeof(struct rte_flow));
1150 rte_flow_error_set(e, ENOMEM, RTE_FLOW_ERROR_TYPE_HANDLE,
1151 NULL, "Unable to allocate memory for"
1156 flow->item_parser = parseitem;
1158 flow->fs.private = (void *)flow;
1160 if (cxgbe_flow_parse(flow, attr, item, action, e)) {
1165 t4_os_lock(&adap->flow_lock);
1166 /* go, interact with cxgbe_filter */
1167 ret = __cxgbe_flow_create(dev, flow);
1168 t4_os_unlock(&adap->flow_lock);
1170 rte_flow_error_set(e, ret, RTE_FLOW_ERROR_TYPE_HANDLE,
1171 NULL, "Unable to create flow rule");
1176 flow->f->private = flow; /* Will be used during flush */
1181 static int __cxgbe_flow_destroy(struct rte_eth_dev *dev, struct rte_flow *flow)
1183 struct adapter *adap = ethdev2adap(dev);
1184 struct filter_entry *f = flow->f;
1185 struct ch_filter_specification *fs;
1186 struct filter_ctx ctx;
1190 if (cxgbe_verify_fidx(flow, flow->fidx, 1))
1193 t4_init_completion(&ctx.completion);
1194 err = cxgbe_del_filter(dev, flow->fidx, fs, &ctx);
1196 dev_err(adap, "Error %d while deleting filter.\n", err);
1200 /* Poll the FW for reply */
1201 err = cxgbe_poll_for_completion(&adap->sge.fw_evtq,
1203 CXGBE_FLOW_POLL_CNT,
1206 dev_err(adap, "Filter delete operation timed out (%d)\n", err);
1210 dev_err(adap, "Hardware error %d while deleting the filter.\n",
1216 if (fs->mask.macidx) {
1217 struct port_info *pi = (struct port_info *)
1218 (dev->data->dev_private);
1221 ret = cxgbe_mpstcam_remove(pi, fs->val.macidx);
1230 cxgbe_flow_destroy(struct rte_eth_dev *dev, struct rte_flow *flow,
1231 struct rte_flow_error *e)
1233 struct adapter *adap = ethdev2adap(dev);
1236 t4_os_lock(&adap->flow_lock);
1237 ret = __cxgbe_flow_destroy(dev, flow);
1238 t4_os_unlock(&adap->flow_lock);
1240 return rte_flow_error_set(e, ret, RTE_FLOW_ERROR_TYPE_HANDLE,
1241 flow, "error destroying filter.");
1246 static int __cxgbe_flow_query(struct rte_flow *flow, u64 *count,
1249 struct adapter *adap = ethdev2adap(flow->dev);
1250 struct ch_filter_specification fs = flow->f->fs;
1251 unsigned int fidx = flow->fidx;
1254 ret = cxgbe_get_filter_count(adap, fidx, count, fs.cap, 0);
1257 return cxgbe_get_filter_count(adap, fidx, byte_count, fs.cap, 1);
1261 cxgbe_flow_query(struct rte_eth_dev *dev, struct rte_flow *flow,
1262 const struct rte_flow_action *action, void *data,
1263 struct rte_flow_error *e)
1265 struct adapter *adap = ethdev2adap(flow->dev);
1266 struct ch_filter_specification fs;
1267 struct rte_flow_query_count *c;
1268 struct filter_entry *f;
1276 if (action->type != RTE_FLOW_ACTION_TYPE_COUNT)
1277 return rte_flow_error_set(e, ENOTSUP,
1278 RTE_FLOW_ERROR_TYPE_ACTION, NULL,
1279 "only count supported for query");
1282 * This is a valid operation, Since we are allowed to do chelsio
1283 * specific operations in rte side of our code but not vise-versa
1285 * So, fs can be queried/modified here BUT rte_flow_query_count
1286 * cannot be worked on by the lower layer since we want to maintain
1287 * it as rte_flow agnostic.
1290 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_ACTION,
1291 &fs, "filter hit counters were not"
1292 " enabled during filter creation");
1294 c = (struct rte_flow_query_count *)data;
1296 t4_os_lock(&adap->flow_lock);
1297 ret = __cxgbe_flow_query(flow, &c->hits, &c->bytes);
1299 rte_flow_error_set(e, -ret, RTE_FLOW_ERROR_TYPE_ACTION,
1300 f, "cxgbe pmd failed to perform query");
1304 /* Query was successful */
1308 cxgbe_clear_filter_count(adap, flow->fidx, f->fs.cap, true);
1311 t4_os_unlock(&adap->flow_lock);
1316 cxgbe_flow_validate(struct rte_eth_dev *dev,
1317 const struct rte_flow_attr *attr,
1318 const struct rte_flow_item item[],
1319 const struct rte_flow_action action[],
1320 struct rte_flow_error *e)
1322 struct adapter *adap = ethdev2adap(dev);
1323 struct rte_flow *flow;
1327 flow = t4_os_alloc(sizeof(struct rte_flow));
1329 return rte_flow_error_set(e, ENOMEM, RTE_FLOW_ERROR_TYPE_HANDLE,
1331 "Unable to allocate memory for filter_entry");
1333 flow->item_parser = parseitem;
1336 ret = cxgbe_flow_parse(flow, attr, item, action, e);
1342 if (cxgbe_validate_filter(adap, &flow->fs)) {
1344 return rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_HANDLE,
1346 "validation failed. Check f/w config file.");
1349 t4_os_lock(&adap->flow_lock);
1350 if (cxgbe_get_fidx(flow, &fidx)) {
1351 ret = rte_flow_error_set(e, ENOMEM, RTE_FLOW_ERROR_TYPE_HANDLE,
1352 NULL, "no memory in tcam.");
1356 if (cxgbe_verify_fidx(flow, fidx, 0)) {
1357 ret = rte_flow_error_set(e, EINVAL, RTE_FLOW_ERROR_TYPE_HANDLE,
1358 NULL, "validation failed");
1363 t4_os_unlock(&adap->flow_lock);
1369 * @ret : > 0 filter destroyed succsesfully
1370 * < 0 error destroying filter
1371 * == 1 filter not active / not found
1374 cxgbe_check_n_destroy(struct filter_entry *f, struct rte_eth_dev *dev)
1376 if (f && (f->valid || f->pending) &&
1377 f->dev == dev && /* Only if user has asked for this port */
1378 f->private) /* We (rte_flow) created this filter */
1379 return __cxgbe_flow_destroy(dev, (struct rte_flow *)f->private);
1383 static int cxgbe_flow_flush(struct rte_eth_dev *dev, struct rte_flow_error *e)
1385 struct adapter *adap = ethdev2adap(dev);
1389 t4_os_lock(&adap->flow_lock);
1390 if (adap->tids.ftid_tab) {
1391 struct filter_entry *f = &adap->tids.ftid_tab[0];
1393 for (i = 0; i < adap->tids.nftids; i++, f++) {
1394 ret = cxgbe_check_n_destroy(f, dev);
1396 rte_flow_error_set(e, ret,
1397 RTE_FLOW_ERROR_TYPE_HANDLE,
1399 "error destroying TCAM "
1406 if (is_hashfilter(adap) && adap->tids.tid_tab) {
1407 struct filter_entry *f;
1409 for (i = adap->tids.hash_base; i <= adap->tids.ntids; i++) {
1410 f = (struct filter_entry *)adap->tids.tid_tab[i];
1412 ret = cxgbe_check_n_destroy(f, dev);
1414 rte_flow_error_set(e, ret,
1415 RTE_FLOW_ERROR_TYPE_HANDLE,
1417 "error destroying HASH "
1425 t4_os_unlock(&adap->flow_lock);
1426 return ret >= 0 ? 0 : ret;
1429 static const struct rte_flow_ops cxgbe_flow_ops = {
1430 .validate = cxgbe_flow_validate,
1431 .create = cxgbe_flow_create,
1432 .destroy = cxgbe_flow_destroy,
1433 .flush = cxgbe_flow_flush,
1434 .query = cxgbe_flow_query,
1439 cxgbe_dev_filter_ctrl(struct rte_eth_dev *dev,
1440 enum rte_filter_type filter_type,
1441 enum rte_filter_op filter_op,
1447 switch (filter_type) {
1448 case RTE_ETH_FILTER_GENERIC:
1449 if (filter_op != RTE_ETH_FILTER_GET)
1451 *(const void **)arg = &cxgbe_flow_ops;