1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2018-2019 Hisilicon Limited.
7 #include <rte_flow_driver.h>
9 #include <rte_malloc.h>
11 #include "hns3_ethdev.h"
12 #include "hns3_logs.h"
14 /* Default default keys */
15 static uint8_t hns3_hash_key[] = {
16 0x6D, 0x5A, 0x56, 0xDA, 0x25, 0x5B, 0x0E, 0xC2,
17 0x41, 0x67, 0x25, 0x3D, 0x43, 0xA3, 0x8F, 0xB0,
18 0xD0, 0xCA, 0x2B, 0xCB, 0xAE, 0x7B, 0x30, 0xB4,
19 0x77, 0xCB, 0x2D, 0xA3, 0x80, 0x30, 0xF2, 0x0C,
20 0x6A, 0x42, 0xB7, 0x3B, 0xBE, 0xAC, 0x01, 0xFA
23 static const uint8_t full_mask[VNI_OR_TNI_LEN] = { 0xFF, 0xFF, 0xFF };
24 static const uint8_t zero_mask[VNI_OR_TNI_LEN] = { 0x00, 0x00, 0x00 };
26 /* Special Filter id for non-specific packet flagging. Don't change value */
27 #define HNS3_MAX_FILTER_ID 0x0FFF
29 #define ETHER_TYPE_MASK 0xFFFF
30 #define IPPROTO_MASK 0xFF
31 #define TUNNEL_TYPE_MASK 0xFFFF
33 #define HNS3_TUNNEL_TYPE_VXLAN 0x12B5
34 #define HNS3_TUNNEL_TYPE_VXLAN_GPE 0x12B6
35 #define HNS3_TUNNEL_TYPE_GENEVE 0x17C1
36 #define HNS3_TUNNEL_TYPE_NVGRE 0x6558
38 static enum rte_flow_item_type first_items[] = {
39 RTE_FLOW_ITEM_TYPE_ETH,
40 RTE_FLOW_ITEM_TYPE_IPV4,
41 RTE_FLOW_ITEM_TYPE_IPV6,
42 RTE_FLOW_ITEM_TYPE_TCP,
43 RTE_FLOW_ITEM_TYPE_UDP,
44 RTE_FLOW_ITEM_TYPE_SCTP,
45 RTE_FLOW_ITEM_TYPE_ICMP,
46 RTE_FLOW_ITEM_TYPE_NVGRE,
47 RTE_FLOW_ITEM_TYPE_VXLAN,
48 RTE_FLOW_ITEM_TYPE_GENEVE,
49 RTE_FLOW_ITEM_TYPE_VXLAN_GPE,
50 RTE_FLOW_ITEM_TYPE_MPLS
53 static enum rte_flow_item_type L2_next_items[] = {
54 RTE_FLOW_ITEM_TYPE_VLAN,
55 RTE_FLOW_ITEM_TYPE_IPV4,
56 RTE_FLOW_ITEM_TYPE_IPV6
59 static enum rte_flow_item_type L3_next_items[] = {
60 RTE_FLOW_ITEM_TYPE_TCP,
61 RTE_FLOW_ITEM_TYPE_UDP,
62 RTE_FLOW_ITEM_TYPE_SCTP,
63 RTE_FLOW_ITEM_TYPE_NVGRE,
64 RTE_FLOW_ITEM_TYPE_ICMP
67 static enum rte_flow_item_type L4_next_items[] = {
68 RTE_FLOW_ITEM_TYPE_VXLAN,
69 RTE_FLOW_ITEM_TYPE_GENEVE,
70 RTE_FLOW_ITEM_TYPE_VXLAN_GPE,
71 RTE_FLOW_ITEM_TYPE_MPLS
74 static enum rte_flow_item_type tunnel_next_items[] = {
75 RTE_FLOW_ITEM_TYPE_ETH,
76 RTE_FLOW_ITEM_TYPE_VLAN
79 struct items_step_mngr {
80 enum rte_flow_item_type *items;
85 net_addr_to_host(uint32_t *dst, const rte_be32_t *src, size_t len)
89 for (i = 0; i < len; i++)
90 dst[i] = rte_be_to_cpu_32(src[i]);
93 static inline const struct rte_flow_action *
94 find_rss_action(const struct rte_flow_action actions[])
96 const struct rte_flow_action *next = &actions[0];
98 for (; next->type != RTE_FLOW_ACTION_TYPE_END; next++) {
99 if (next->type == RTE_FLOW_ACTION_TYPE_RSS)
105 static inline struct hns3_flow_counter *
106 hns3_counter_lookup(struct rte_eth_dev *dev, uint32_t id)
108 struct hns3_adapter *hns = dev->data->dev_private;
109 struct hns3_pf *pf = &hns->pf;
110 struct hns3_flow_counter *cnt;
112 LIST_FOREACH(cnt, &pf->flow_counters, next) {
120 hns3_counter_new(struct rte_eth_dev *dev, uint32_t shared, uint32_t id,
121 struct rte_flow_error *error)
123 struct hns3_adapter *hns = dev->data->dev_private;
124 struct hns3_pf *pf = &hns->pf;
125 struct hns3_flow_counter *cnt;
127 cnt = hns3_counter_lookup(dev, id);
129 if (!cnt->shared || cnt->shared != shared)
130 return rte_flow_error_set(error, ENOTSUP,
131 RTE_FLOW_ERROR_TYPE_ACTION,
133 "Counter id is used,shared flag not match");
138 cnt = rte_zmalloc("hns3 counter", sizeof(*cnt), 0);
140 return rte_flow_error_set(error, ENOMEM,
141 RTE_FLOW_ERROR_TYPE_ACTION, cnt,
142 "Alloc mem for counter failed");
144 cnt->shared = shared;
147 LIST_INSERT_HEAD(&pf->flow_counters, cnt, next);
152 hns3_counter_query(struct rte_eth_dev *dev, struct rte_flow *flow,
153 struct rte_flow_query_count *qc,
154 struct rte_flow_error *error)
156 struct hns3_adapter *hns = dev->data->dev_private;
157 struct hns3_flow_counter *cnt;
161 /* FDIR is available only in PF driver */
163 return rte_flow_error_set(error, ENOTSUP,
164 RTE_FLOW_ERROR_TYPE_HANDLE, NULL,
165 "Fdir is not supported in VF");
166 cnt = hns3_counter_lookup(dev, flow->counter_id);
168 return rte_flow_error_set(error, EINVAL,
169 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
170 "Can't find counter id");
172 ret = hns3_get_count(&hns->hw, flow->counter_id, &value);
174 rte_flow_error_set(error, -ret,
175 RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
176 NULL, "Read counter fail.");
186 hns3_counter_release(struct rte_eth_dev *dev, uint32_t id)
188 struct hns3_adapter *hns = dev->data->dev_private;
189 struct hns3_hw *hw = &hns->hw;
190 struct hns3_flow_counter *cnt;
192 cnt = hns3_counter_lookup(dev, id);
194 hns3_err(hw, "Can't find available counter to release");
198 if (cnt->ref_cnt == 0) {
199 LIST_REMOVE(cnt, next);
206 hns3_counter_flush(struct rte_eth_dev *dev)
208 struct hns3_adapter *hns = dev->data->dev_private;
209 struct hns3_pf *pf = &hns->pf;
210 struct hns3_flow_counter *cnt_ptr;
212 cnt_ptr = LIST_FIRST(&pf->flow_counters);
214 LIST_REMOVE(cnt_ptr, next);
216 cnt_ptr = LIST_FIRST(&pf->flow_counters);
221 hns3_handle_action_queue(struct rte_eth_dev *dev,
222 const struct rte_flow_action *action,
223 struct hns3_fdir_rule *rule,
224 struct rte_flow_error *error)
226 struct hns3_adapter *hns = dev->data->dev_private;
227 struct hns3_hw *hw = &hns->hw;
228 const struct rte_flow_action_queue *queue;
230 queue = (const struct rte_flow_action_queue *)action->conf;
231 if (queue->index >= hw->data->nb_rx_queues)
232 return rte_flow_error_set(error, EINVAL,
233 RTE_FLOW_ERROR_TYPE_ACTION, action,
234 "Invalid queue ID in PF");
235 rule->queue_id = queue->index;
236 rule->action = HNS3_FD_ACTION_ACCEPT_PACKET;
241 * Parse actions structure from the provided pattern.
242 * The pattern is validated as the items are copied.
246 * NIC specfilc actions derived from the actions.
250 hns3_handle_actions(struct rte_eth_dev *dev,
251 const struct rte_flow_action actions[],
252 struct hns3_fdir_rule *rule, struct rte_flow_error *error)
254 struct hns3_adapter *hns = dev->data->dev_private;
255 const struct rte_flow_action_count *act_count;
256 const struct rte_flow_action_mark *mark;
257 struct hns3_pf *pf = &hns->pf;
258 uint32_t counter_num;
261 for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
262 switch (actions->type) {
263 case RTE_FLOW_ACTION_TYPE_QUEUE:
264 ret = hns3_handle_action_queue(dev, actions, rule,
269 case RTE_FLOW_ACTION_TYPE_DROP:
270 rule->action = HNS3_FD_ACTION_DROP_PACKET;
272 case RTE_FLOW_ACTION_TYPE_MARK:
274 (const struct rte_flow_action_mark *)actions->conf;
275 if (mark->id >= HNS3_MAX_FILTER_ID)
276 return rte_flow_error_set(error, EINVAL,
277 RTE_FLOW_ERROR_TYPE_ACTION,
280 rule->fd_id = mark->id;
281 rule->flags |= HNS3_RULE_FLAG_FDID;
283 case RTE_FLOW_ACTION_TYPE_FLAG:
284 rule->fd_id = HNS3_MAX_FILTER_ID;
285 rule->flags |= HNS3_RULE_FLAG_FDID;
287 case RTE_FLOW_ACTION_TYPE_COUNT:
289 (const struct rte_flow_action_count *)actions->conf;
290 counter_num = pf->fdir.fd_cfg.cnt_num[HNS3_FD_STAGE_1];
291 if (act_count->id >= counter_num)
292 return rte_flow_error_set(error, EINVAL,
293 RTE_FLOW_ERROR_TYPE_ACTION,
295 "Invalid counter id");
296 rule->act_cnt = *act_count;
297 rule->flags |= HNS3_RULE_FLAG_COUNTER;
299 case RTE_FLOW_ACTION_TYPE_VOID:
302 return rte_flow_error_set(error, ENOTSUP,
303 RTE_FLOW_ERROR_TYPE_ACTION,
304 NULL, "Unsupported action");
311 /* Parse to get the attr and action info of flow director rule. */
313 hns3_check_attr(const struct rte_flow_attr *attr, struct rte_flow_error *error)
316 return rte_flow_error_set(error, EINVAL,
317 RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,
318 attr, "Ingress can't be zero");
320 return rte_flow_error_set(error, ENOTSUP,
321 RTE_FLOW_ERROR_TYPE_ATTR_EGRESS,
322 attr, "Not support egress");
324 return rte_flow_error_set(error, ENOTSUP,
325 RTE_FLOW_ERROR_TYPE_ATTR_TRANSFER,
326 attr, "No support for transfer");
328 return rte_flow_error_set(error, ENOTSUP,
329 RTE_FLOW_ERROR_TYPE_ATTR_PRIORITY,
330 attr, "Not support priority");
332 return rte_flow_error_set(error, ENOTSUP,
333 RTE_FLOW_ERROR_TYPE_ATTR_GROUP,
334 attr, "Not support group");
339 hns3_parse_eth(const struct rte_flow_item *item,
340 struct hns3_fdir_rule *rule, struct rte_flow_error *error)
342 const struct rte_flow_item_eth *eth_spec;
343 const struct rte_flow_item_eth *eth_mask;
345 if (item->spec == NULL && item->mask)
346 return rte_flow_error_set(error, EINVAL,
347 RTE_FLOW_ERROR_TYPE_ITEM, item,
348 "Can't configure FDIR with mask but without spec");
350 /* Only used to describe the protocol stack. */
351 if (item->spec == NULL && item->mask == NULL)
355 eth_mask = item->mask;
356 if (eth_mask->type) {
357 hns3_set_bit(rule->input_set, INNER_ETH_TYPE, 1);
358 rule->key_conf.mask.ether_type =
359 rte_be_to_cpu_16(eth_mask->type);
361 if (!rte_is_zero_ether_addr(ð_mask->src)) {
362 hns3_set_bit(rule->input_set, INNER_SRC_MAC, 1);
363 memcpy(rule->key_conf.mask.src_mac,
364 eth_mask->src.addr_bytes, RTE_ETHER_ADDR_LEN);
366 if (!rte_is_zero_ether_addr(ð_mask->dst)) {
367 hns3_set_bit(rule->input_set, INNER_DST_MAC, 1);
368 memcpy(rule->key_conf.mask.dst_mac,
369 eth_mask->dst.addr_bytes, RTE_ETHER_ADDR_LEN);
373 eth_spec = item->spec;
374 rule->key_conf.spec.ether_type = rte_be_to_cpu_16(eth_spec->type);
375 memcpy(rule->key_conf.spec.src_mac, eth_spec->src.addr_bytes,
377 memcpy(rule->key_conf.spec.dst_mac, eth_spec->dst.addr_bytes,
383 hns3_parse_vlan(const struct rte_flow_item *item, struct hns3_fdir_rule *rule,
384 struct rte_flow_error *error)
386 const struct rte_flow_item_vlan *vlan_spec;
387 const struct rte_flow_item_vlan *vlan_mask;
389 if (item->spec == NULL && item->mask)
390 return rte_flow_error_set(error, EINVAL,
391 RTE_FLOW_ERROR_TYPE_ITEM, item,
392 "Can't configure FDIR with mask but without spec");
394 rule->key_conf.vlan_num++;
395 if (rule->key_conf.vlan_num > VLAN_TAG_NUM_MAX)
396 return rte_flow_error_set(error, EINVAL,
397 RTE_FLOW_ERROR_TYPE_ITEM, item,
398 "Vlan_num is more than 2");
400 /* Only used to describe the protocol stack. */
401 if (item->spec == NULL && item->mask == NULL)
405 vlan_mask = item->mask;
406 if (vlan_mask->tci) {
407 if (rule->key_conf.vlan_num == 1) {
408 hns3_set_bit(rule->input_set, INNER_VLAN_TAG1,
410 rule->key_conf.mask.vlan_tag1 =
411 rte_be_to_cpu_16(vlan_mask->tci);
413 hns3_set_bit(rule->input_set, INNER_VLAN_TAG2,
415 rule->key_conf.mask.vlan_tag2 =
416 rte_be_to_cpu_16(vlan_mask->tci);
421 vlan_spec = item->spec;
422 if (rule->key_conf.vlan_num == 1)
423 rule->key_conf.spec.vlan_tag1 =
424 rte_be_to_cpu_16(vlan_spec->tci);
426 rule->key_conf.spec.vlan_tag2 =
427 rte_be_to_cpu_16(vlan_spec->tci);
432 hns3_parse_ipv4(const struct rte_flow_item *item, struct hns3_fdir_rule *rule,
433 struct rte_flow_error *error)
435 const struct rte_flow_item_ipv4 *ipv4_spec;
436 const struct rte_flow_item_ipv4 *ipv4_mask;
438 if (item->spec == NULL && item->mask)
439 return rte_flow_error_set(error, EINVAL,
440 RTE_FLOW_ERROR_TYPE_ITEM, item,
441 "Can't configure FDIR with mask but without spec");
443 hns3_set_bit(rule->input_set, INNER_ETH_TYPE, 1);
444 rule->key_conf.spec.ether_type = RTE_ETHER_TYPE_IPV4;
445 rule->key_conf.mask.ether_type = ETHER_TYPE_MASK;
446 /* Only used to describe the protocol stack. */
447 if (item->spec == NULL && item->mask == NULL)
451 ipv4_mask = item->mask;
453 if (ipv4_mask->hdr.total_length ||
454 ipv4_mask->hdr.packet_id ||
455 ipv4_mask->hdr.fragment_offset ||
456 ipv4_mask->hdr.time_to_live ||
457 ipv4_mask->hdr.hdr_checksum) {
458 return rte_flow_error_set(error, EINVAL,
459 RTE_FLOW_ERROR_TYPE_ITEM,
461 "Only support src & dst ip,tos,proto in IPV4");
464 if (ipv4_mask->hdr.src_addr) {
465 hns3_set_bit(rule->input_set, INNER_SRC_IP, 1);
466 rule->key_conf.mask.src_ip[IP_ADDR_KEY_ID] =
467 rte_be_to_cpu_32(ipv4_mask->hdr.src_addr);
470 if (ipv4_mask->hdr.dst_addr) {
471 hns3_set_bit(rule->input_set, INNER_DST_IP, 1);
472 rule->key_conf.mask.dst_ip[IP_ADDR_KEY_ID] =
473 rte_be_to_cpu_32(ipv4_mask->hdr.dst_addr);
476 if (ipv4_mask->hdr.type_of_service) {
477 hns3_set_bit(rule->input_set, INNER_IP_TOS, 1);
478 rule->key_conf.mask.ip_tos =
479 ipv4_mask->hdr.type_of_service;
482 if (ipv4_mask->hdr.next_proto_id) {
483 hns3_set_bit(rule->input_set, INNER_IP_PROTO, 1);
484 rule->key_conf.mask.ip_proto =
485 ipv4_mask->hdr.next_proto_id;
489 ipv4_spec = item->spec;
490 rule->key_conf.spec.src_ip[IP_ADDR_KEY_ID] =
491 rte_be_to_cpu_32(ipv4_spec->hdr.src_addr);
492 rule->key_conf.spec.dst_ip[IP_ADDR_KEY_ID] =
493 rte_be_to_cpu_32(ipv4_spec->hdr.dst_addr);
494 rule->key_conf.spec.ip_tos = ipv4_spec->hdr.type_of_service;
495 rule->key_conf.spec.ip_proto = ipv4_spec->hdr.next_proto_id;
500 hns3_parse_ipv6(const struct rte_flow_item *item, struct hns3_fdir_rule *rule,
501 struct rte_flow_error *error)
503 const struct rte_flow_item_ipv6 *ipv6_spec;
504 const struct rte_flow_item_ipv6 *ipv6_mask;
506 if (item->spec == NULL && item->mask)
507 return rte_flow_error_set(error, EINVAL,
508 RTE_FLOW_ERROR_TYPE_ITEM, item,
509 "Can't configure FDIR with mask but without spec");
511 hns3_set_bit(rule->input_set, INNER_ETH_TYPE, 1);
512 rule->key_conf.spec.ether_type = RTE_ETHER_TYPE_IPV6;
513 rule->key_conf.mask.ether_type = ETHER_TYPE_MASK;
515 /* Only used to describe the protocol stack. */
516 if (item->spec == NULL && item->mask == NULL)
520 ipv6_mask = item->mask;
521 if (ipv6_mask->hdr.vtc_flow ||
522 ipv6_mask->hdr.payload_len || ipv6_mask->hdr.hop_limits) {
523 return rte_flow_error_set(error, EINVAL,
524 RTE_FLOW_ERROR_TYPE_ITEM,
526 "Only support src & dst ip,proto in IPV6");
528 net_addr_to_host(rule->key_conf.mask.src_ip,
529 (const rte_be32_t *)ipv6_mask->hdr.src_addr,
531 net_addr_to_host(rule->key_conf.mask.dst_ip,
532 (const rte_be32_t *)ipv6_mask->hdr.dst_addr,
534 rule->key_conf.mask.ip_proto = ipv6_mask->hdr.proto;
535 if (rule->key_conf.mask.src_ip[IP_ADDR_KEY_ID])
536 hns3_set_bit(rule->input_set, INNER_SRC_IP, 1);
537 if (rule->key_conf.mask.dst_ip[IP_ADDR_KEY_ID])
538 hns3_set_bit(rule->input_set, INNER_DST_IP, 1);
539 if (ipv6_mask->hdr.proto)
540 hns3_set_bit(rule->input_set, INNER_IP_PROTO, 1);
543 ipv6_spec = item->spec;
544 net_addr_to_host(rule->key_conf.spec.src_ip,
545 (const rte_be32_t *)ipv6_spec->hdr.src_addr,
547 net_addr_to_host(rule->key_conf.spec.dst_ip,
548 (const rte_be32_t *)ipv6_spec->hdr.dst_addr,
550 rule->key_conf.spec.ip_proto = ipv6_spec->hdr.proto;
556 hns3_parse_tcp(const struct rte_flow_item *item, struct hns3_fdir_rule *rule,
557 struct rte_flow_error *error)
559 const struct rte_flow_item_tcp *tcp_spec;
560 const struct rte_flow_item_tcp *tcp_mask;
562 if (item->spec == NULL && item->mask)
563 return rte_flow_error_set(error, EINVAL,
564 RTE_FLOW_ERROR_TYPE_ITEM, item,
565 "Can't configure FDIR with mask but without spec");
567 hns3_set_bit(rule->input_set, INNER_IP_PROTO, 1);
568 rule->key_conf.spec.ip_proto = IPPROTO_TCP;
569 rule->key_conf.mask.ip_proto = IPPROTO_MASK;
571 /* Only used to describe the protocol stack. */
572 if (item->spec == NULL && item->mask == NULL)
576 tcp_mask = item->mask;
577 if (tcp_mask->hdr.sent_seq ||
578 tcp_mask->hdr.recv_ack ||
579 tcp_mask->hdr.data_off ||
580 tcp_mask->hdr.tcp_flags ||
581 tcp_mask->hdr.rx_win ||
582 tcp_mask->hdr.cksum || tcp_mask->hdr.tcp_urp) {
583 return rte_flow_error_set(error, EINVAL,
584 RTE_FLOW_ERROR_TYPE_ITEM,
586 "Only support src & dst port in TCP");
589 if (tcp_mask->hdr.src_port) {
590 hns3_set_bit(rule->input_set, INNER_SRC_PORT, 1);
591 rule->key_conf.mask.src_port =
592 rte_be_to_cpu_16(tcp_mask->hdr.src_port);
594 if (tcp_mask->hdr.dst_port) {
595 hns3_set_bit(rule->input_set, INNER_DST_PORT, 1);
596 rule->key_conf.mask.dst_port =
597 rte_be_to_cpu_16(tcp_mask->hdr.dst_port);
601 tcp_spec = item->spec;
602 rule->key_conf.spec.src_port = rte_be_to_cpu_16(tcp_spec->hdr.src_port);
603 rule->key_conf.spec.dst_port = rte_be_to_cpu_16(tcp_spec->hdr.dst_port);
609 hns3_parse_udp(const struct rte_flow_item *item, struct hns3_fdir_rule *rule,
610 struct rte_flow_error *error)
612 const struct rte_flow_item_udp *udp_spec;
613 const struct rte_flow_item_udp *udp_mask;
615 if (item->spec == NULL && item->mask)
616 return rte_flow_error_set(error, EINVAL,
617 RTE_FLOW_ERROR_TYPE_ITEM, item,
618 "Can't configure FDIR with mask but without spec");
620 hns3_set_bit(rule->input_set, INNER_IP_PROTO, 1);
621 rule->key_conf.spec.ip_proto = IPPROTO_UDP;
622 rule->key_conf.mask.ip_proto = IPPROTO_MASK;
623 /* Only used to describe the protocol stack. */
624 if (item->spec == NULL && item->mask == NULL)
628 udp_mask = item->mask;
629 if (udp_mask->hdr.dgram_len || udp_mask->hdr.dgram_cksum) {
630 return rte_flow_error_set(error, EINVAL,
631 RTE_FLOW_ERROR_TYPE_ITEM,
633 "Only support src & dst port in UDP");
635 if (udp_mask->hdr.src_port) {
636 hns3_set_bit(rule->input_set, INNER_SRC_PORT, 1);
637 rule->key_conf.mask.src_port =
638 rte_be_to_cpu_16(udp_mask->hdr.src_port);
640 if (udp_mask->hdr.dst_port) {
641 hns3_set_bit(rule->input_set, INNER_DST_PORT, 1);
642 rule->key_conf.mask.dst_port =
643 rte_be_to_cpu_16(udp_mask->hdr.dst_port);
647 udp_spec = item->spec;
648 rule->key_conf.spec.src_port = rte_be_to_cpu_16(udp_spec->hdr.src_port);
649 rule->key_conf.spec.dst_port = rte_be_to_cpu_16(udp_spec->hdr.dst_port);
655 hns3_parse_sctp(const struct rte_flow_item *item, struct hns3_fdir_rule *rule,
656 struct rte_flow_error *error)
658 const struct rte_flow_item_sctp *sctp_spec;
659 const struct rte_flow_item_sctp *sctp_mask;
661 if (item->spec == NULL && item->mask)
662 return rte_flow_error_set(error, EINVAL,
663 RTE_FLOW_ERROR_TYPE_ITEM, item,
664 "Can't configure FDIR with mask but without spec");
666 hns3_set_bit(rule->input_set, INNER_IP_PROTO, 1);
667 rule->key_conf.spec.ip_proto = IPPROTO_SCTP;
668 rule->key_conf.mask.ip_proto = IPPROTO_MASK;
670 /* Only used to describe the protocol stack. */
671 if (item->spec == NULL && item->mask == NULL)
675 sctp_mask = item->mask;
676 if (sctp_mask->hdr.cksum)
677 return rte_flow_error_set(error, EINVAL,
678 RTE_FLOW_ERROR_TYPE_ITEM,
680 "Only support src & dst port in SCTP");
682 if (sctp_mask->hdr.src_port) {
683 hns3_set_bit(rule->input_set, INNER_SRC_PORT, 1);
684 rule->key_conf.mask.src_port =
685 rte_be_to_cpu_16(sctp_mask->hdr.src_port);
687 if (sctp_mask->hdr.dst_port) {
688 hns3_set_bit(rule->input_set, INNER_DST_PORT, 1);
689 rule->key_conf.mask.dst_port =
690 rte_be_to_cpu_16(sctp_mask->hdr.dst_port);
692 if (sctp_mask->hdr.tag) {
693 hns3_set_bit(rule->input_set, INNER_SCTP_TAG, 1);
694 rule->key_conf.mask.sctp_tag =
695 rte_be_to_cpu_32(sctp_mask->hdr.tag);
699 sctp_spec = item->spec;
700 rule->key_conf.spec.src_port =
701 rte_be_to_cpu_16(sctp_spec->hdr.src_port);
702 rule->key_conf.spec.dst_port =
703 rte_be_to_cpu_16(sctp_spec->hdr.dst_port);
704 rule->key_conf.spec.sctp_tag = rte_be_to_cpu_32(sctp_spec->hdr.tag);
710 * Check items before tunnel, save inner configs to outer configs,and clear
712 * The key consists of two parts: meta_data and tuple keys.
713 * Meta data uses 15 bits, including vlan_num(2bit), des_port(12bit) and tunnel
715 * Tuple keys uses 384bit, including ot_dst-mac(48bit), ot_dst-port(16bit),
716 * ot_tun_vni(24bit), ot_flow_id(8bit), src-mac(48bit), dst-mac(48bit),
717 * src-ip(32/128bit), dst-ip(32/128bit), src-port(16bit), dst-port(16bit),
718 * tos(8bit), ether-proto(16bit), ip-proto(8bit), vlantag1(16bit),
719 * Vlantag2(16bit) and sctp-tag(32bit).
722 hns3_handle_tunnel(const struct rte_flow_item *item,
723 struct hns3_fdir_rule *rule, struct rte_flow_error *error)
725 /* check eth config */
726 if (rule->input_set & (BIT(INNER_SRC_MAC) | BIT(INNER_DST_MAC)))
727 return rte_flow_error_set(error, EINVAL,
728 RTE_FLOW_ERROR_TYPE_ITEM,
729 item, "Outer eth mac is unsupported");
730 if (rule->input_set & BIT(INNER_ETH_TYPE)) {
731 hns3_set_bit(rule->input_set, OUTER_ETH_TYPE, 1);
732 rule->key_conf.spec.outer_ether_type =
733 rule->key_conf.spec.ether_type;
734 rule->key_conf.mask.outer_ether_type =
735 rule->key_conf.mask.ether_type;
736 hns3_set_bit(rule->input_set, INNER_ETH_TYPE, 0);
737 rule->key_conf.spec.ether_type = 0;
738 rule->key_conf.mask.ether_type = 0;
741 /* check vlan config */
742 if (rule->input_set & (BIT(INNER_VLAN_TAG1) | BIT(INNER_VLAN_TAG2)))
743 return rte_flow_error_set(error, EINVAL,
744 RTE_FLOW_ERROR_TYPE_ITEM,
746 "Outer vlan tags is unsupported");
748 /* clear vlan_num for inner vlan select */
749 rule->key_conf.outer_vlan_num = rule->key_conf.vlan_num;
750 rule->key_conf.vlan_num = 0;
752 /* check L3 config */
753 if (rule->input_set &
754 (BIT(INNER_SRC_IP) | BIT(INNER_DST_IP) | BIT(INNER_IP_TOS)))
755 return rte_flow_error_set(error, EINVAL,
756 RTE_FLOW_ERROR_TYPE_ITEM,
757 item, "Outer ip is unsupported");
758 if (rule->input_set & BIT(INNER_IP_PROTO)) {
759 hns3_set_bit(rule->input_set, OUTER_IP_PROTO, 1);
760 rule->key_conf.spec.outer_proto = rule->key_conf.spec.ip_proto;
761 rule->key_conf.mask.outer_proto = rule->key_conf.mask.ip_proto;
762 hns3_set_bit(rule->input_set, INNER_IP_PROTO, 0);
763 rule->key_conf.spec.ip_proto = 0;
764 rule->key_conf.mask.ip_proto = 0;
767 /* check L4 config */
768 if (rule->input_set & BIT(INNER_SCTP_TAG))
769 return rte_flow_error_set(error, EINVAL,
770 RTE_FLOW_ERROR_TYPE_ITEM, item,
771 "Outer sctp tag is unsupported");
773 if (rule->input_set & BIT(INNER_SRC_PORT)) {
774 hns3_set_bit(rule->input_set, OUTER_SRC_PORT, 1);
775 rule->key_conf.spec.outer_src_port =
776 rule->key_conf.spec.src_port;
777 rule->key_conf.mask.outer_src_port =
778 rule->key_conf.mask.src_port;
779 hns3_set_bit(rule->input_set, INNER_SRC_PORT, 0);
780 rule->key_conf.spec.src_port = 0;
781 rule->key_conf.mask.src_port = 0;
783 if (rule->input_set & BIT(INNER_DST_PORT)) {
784 hns3_set_bit(rule->input_set, INNER_DST_PORT, 0);
785 rule->key_conf.spec.dst_port = 0;
786 rule->key_conf.mask.dst_port = 0;
792 hns3_parse_vxlan(const struct rte_flow_item *item, struct hns3_fdir_rule *rule,
793 struct rte_flow_error *error)
795 const struct rte_flow_item_vxlan *vxlan_spec;
796 const struct rte_flow_item_vxlan *vxlan_mask;
798 if (item->spec == NULL && item->mask)
799 return rte_flow_error_set(error, EINVAL,
800 RTE_FLOW_ERROR_TYPE_ITEM, item,
801 "Can't configure FDIR with mask but without spec");
802 else if (item->spec && (item->mask == NULL))
803 return rte_flow_error_set(error, EINVAL,
804 RTE_FLOW_ERROR_TYPE_ITEM, item,
805 "Tunnel packets must configure with mask");
807 hns3_set_bit(rule->input_set, OUTER_DST_PORT, 1);
808 rule->key_conf.mask.tunnel_type = TUNNEL_TYPE_MASK;
809 if (item->type == RTE_FLOW_ITEM_TYPE_VXLAN)
810 rule->key_conf.spec.tunnel_type = HNS3_TUNNEL_TYPE_VXLAN;
812 rule->key_conf.spec.tunnel_type = HNS3_TUNNEL_TYPE_VXLAN_GPE;
814 /* Only used to describe the protocol stack. */
815 if (item->spec == NULL && item->mask == NULL)
818 vxlan_mask = item->mask;
819 vxlan_spec = item->spec;
821 if (vxlan_mask->flags)
822 return rte_flow_error_set(error, EINVAL,
823 RTE_FLOW_ERROR_TYPE_ITEM, item,
824 "Flags is not supported in VxLAN");
826 /* VNI must be totally masked or not. */
827 if (memcmp(vxlan_mask->vni, full_mask, VNI_OR_TNI_LEN) &&
828 memcmp(vxlan_mask->vni, zero_mask, VNI_OR_TNI_LEN))
829 return rte_flow_error_set(error, EINVAL,
830 RTE_FLOW_ERROR_TYPE_ITEM, item,
831 "VNI must be totally masked or not in VxLAN");
832 if (vxlan_mask->vni[0]) {
833 hns3_set_bit(rule->input_set, OUTER_TUN_VNI, 1);
834 memcpy(rule->key_conf.mask.outer_tun_vni, vxlan_mask->vni,
837 memcpy(rule->key_conf.spec.outer_tun_vni, vxlan_spec->vni,
843 hns3_parse_nvgre(const struct rte_flow_item *item, struct hns3_fdir_rule *rule,
844 struct rte_flow_error *error)
846 const struct rte_flow_item_nvgre *nvgre_spec;
847 const struct rte_flow_item_nvgre *nvgre_mask;
849 if (item->spec == NULL && item->mask)
850 return rte_flow_error_set(error, EINVAL,
851 RTE_FLOW_ERROR_TYPE_ITEM, item,
852 "Can't configure FDIR with mask but without spec");
853 else if (item->spec && (item->mask == NULL))
854 return rte_flow_error_set(error, EINVAL,
855 RTE_FLOW_ERROR_TYPE_ITEM, item,
856 "Tunnel packets must configure with mask");
858 hns3_set_bit(rule->input_set, OUTER_IP_PROTO, 1);
859 rule->key_conf.spec.outer_proto = IPPROTO_GRE;
860 rule->key_conf.mask.outer_proto = IPPROTO_MASK;
862 hns3_set_bit(rule->input_set, OUTER_DST_PORT, 1);
863 rule->key_conf.spec.tunnel_type = HNS3_TUNNEL_TYPE_NVGRE;
864 rule->key_conf.mask.tunnel_type = ~HNS3_TUNNEL_TYPE_NVGRE;
865 /* Only used to describe the protocol stack. */
866 if (item->spec == NULL && item->mask == NULL)
869 nvgre_mask = item->mask;
870 nvgre_spec = item->spec;
872 if (nvgre_mask->protocol || nvgre_mask->c_k_s_rsvd0_ver)
873 return rte_flow_error_set(error, EINVAL,
874 RTE_FLOW_ERROR_TYPE_ITEM, item,
875 "Ver/protocal is not supported in NVGRE");
877 /* TNI must be totally masked or not. */
878 if (memcmp(nvgre_mask->tni, full_mask, VNI_OR_TNI_LEN) &&
879 memcmp(nvgre_mask->tni, zero_mask, VNI_OR_TNI_LEN))
880 return rte_flow_error_set(error, EINVAL,
881 RTE_FLOW_ERROR_TYPE_ITEM, item,
882 "TNI must be totally masked or not in NVGRE");
884 if (nvgre_mask->tni[0]) {
885 hns3_set_bit(rule->input_set, OUTER_TUN_VNI, 1);
886 memcpy(rule->key_conf.mask.outer_tun_vni, nvgre_mask->tni,
889 memcpy(rule->key_conf.spec.outer_tun_vni, nvgre_spec->tni,
892 if (nvgre_mask->flow_id) {
893 hns3_set_bit(rule->input_set, OUTER_TUN_FLOW_ID, 1);
894 rule->key_conf.mask.outer_tun_flow_id = nvgre_mask->flow_id;
896 rule->key_conf.spec.outer_tun_flow_id = nvgre_spec->flow_id;
901 hns3_parse_geneve(const struct rte_flow_item *item, struct hns3_fdir_rule *rule,
902 struct rte_flow_error *error)
904 const struct rte_flow_item_geneve *geneve_spec;
905 const struct rte_flow_item_geneve *geneve_mask;
907 if (item->spec == NULL && item->mask)
908 return rte_flow_error_set(error, EINVAL,
909 RTE_FLOW_ERROR_TYPE_ITEM, item,
910 "Can't configure FDIR with mask but without spec");
911 else if (item->spec && (item->mask == NULL))
912 return rte_flow_error_set(error, EINVAL,
913 RTE_FLOW_ERROR_TYPE_ITEM, item,
914 "Tunnel packets must configure with mask");
916 hns3_set_bit(rule->input_set, OUTER_DST_PORT, 1);
917 rule->key_conf.spec.tunnel_type = HNS3_TUNNEL_TYPE_GENEVE;
918 rule->key_conf.mask.tunnel_type = TUNNEL_TYPE_MASK;
919 /* Only used to describe the protocol stack. */
920 if (item->spec == NULL && item->mask == NULL)
923 geneve_mask = item->mask;
924 geneve_spec = item->spec;
926 if (geneve_mask->ver_opt_len_o_c_rsvd0 || geneve_mask->protocol)
927 return rte_flow_error_set(error, EINVAL,
928 RTE_FLOW_ERROR_TYPE_ITEM, item,
929 "Ver/protocal is not supported in GENEVE");
930 /* VNI must be totally masked or not. */
931 if (memcmp(geneve_mask->vni, full_mask, VNI_OR_TNI_LEN) &&
932 memcmp(geneve_mask->vni, zero_mask, VNI_OR_TNI_LEN))
933 return rte_flow_error_set(error, EINVAL,
934 RTE_FLOW_ERROR_TYPE_ITEM, item,
935 "VNI must be totally masked or not in GENEVE");
936 if (geneve_mask->vni[0]) {
937 hns3_set_bit(rule->input_set, OUTER_TUN_VNI, 1);
938 memcpy(rule->key_conf.mask.outer_tun_vni, geneve_mask->vni,
941 memcpy(rule->key_conf.spec.outer_tun_vni, geneve_spec->vni,
947 hns3_parse_tunnel(const struct rte_flow_item *item, struct hns3_fdir_rule *rule,
948 struct rte_flow_error *error)
952 switch (item->type) {
953 case RTE_FLOW_ITEM_TYPE_VXLAN:
954 case RTE_FLOW_ITEM_TYPE_VXLAN_GPE:
955 ret = hns3_parse_vxlan(item, rule, error);
957 case RTE_FLOW_ITEM_TYPE_NVGRE:
958 ret = hns3_parse_nvgre(item, rule, error);
960 case RTE_FLOW_ITEM_TYPE_GENEVE:
961 ret = hns3_parse_geneve(item, rule, error);
964 return rte_flow_error_set(error, ENOTSUP,
965 RTE_FLOW_ERROR_TYPE_HANDLE,
966 NULL, "Unsupported tunnel type!");
970 return hns3_handle_tunnel(item, rule, error);
974 hns3_parse_normal(const struct rte_flow_item *item,
975 struct hns3_fdir_rule *rule,
976 struct items_step_mngr *step_mngr,
977 struct rte_flow_error *error)
981 switch (item->type) {
982 case RTE_FLOW_ITEM_TYPE_ETH:
983 ret = hns3_parse_eth(item, rule, error);
984 step_mngr->items = L2_next_items;
985 step_mngr->count = ARRAY_SIZE(L2_next_items);
987 case RTE_FLOW_ITEM_TYPE_VLAN:
988 ret = hns3_parse_vlan(item, rule, error);
989 step_mngr->items = L2_next_items;
990 step_mngr->count = ARRAY_SIZE(L2_next_items);
992 case RTE_FLOW_ITEM_TYPE_IPV4:
993 ret = hns3_parse_ipv4(item, rule, error);
994 step_mngr->items = L3_next_items;
995 step_mngr->count = ARRAY_SIZE(L3_next_items);
997 case RTE_FLOW_ITEM_TYPE_IPV6:
998 ret = hns3_parse_ipv6(item, rule, error);
999 step_mngr->items = L3_next_items;
1000 step_mngr->count = ARRAY_SIZE(L3_next_items);
1002 case RTE_FLOW_ITEM_TYPE_TCP:
1003 ret = hns3_parse_tcp(item, rule, error);
1004 step_mngr->items = L4_next_items;
1005 step_mngr->count = ARRAY_SIZE(L4_next_items);
1007 case RTE_FLOW_ITEM_TYPE_UDP:
1008 ret = hns3_parse_udp(item, rule, error);
1009 step_mngr->items = L4_next_items;
1010 step_mngr->count = ARRAY_SIZE(L4_next_items);
1012 case RTE_FLOW_ITEM_TYPE_SCTP:
1013 ret = hns3_parse_sctp(item, rule, error);
1014 step_mngr->items = L4_next_items;
1015 step_mngr->count = ARRAY_SIZE(L4_next_items);
1018 return rte_flow_error_set(error, ENOTSUP,
1019 RTE_FLOW_ERROR_TYPE_HANDLE,
1020 NULL, "Unsupported normal type!");
1027 hns3_validate_item(const struct rte_flow_item *item,
1028 struct items_step_mngr step_mngr,
1029 struct rte_flow_error *error)
1034 return rte_flow_error_set(error, ENOTSUP,
1035 RTE_FLOW_ERROR_TYPE_UNSPECIFIED, item,
1036 "Not supported last point for range");
1038 for (i = 0; i < step_mngr.count; i++) {
1039 if (item->type == step_mngr.items[i])
1043 if (i == step_mngr.count) {
1044 return rte_flow_error_set(error, EINVAL,
1045 RTE_FLOW_ERROR_TYPE_ITEM,
1046 item, "Inval or missing item");
1052 is_tunnel_packet(enum rte_flow_item_type type)
1054 if (type == RTE_FLOW_ITEM_TYPE_VXLAN_GPE ||
1055 type == RTE_FLOW_ITEM_TYPE_VXLAN ||
1056 type == RTE_FLOW_ITEM_TYPE_NVGRE ||
1057 type == RTE_FLOW_ITEM_TYPE_GENEVE ||
1058 type == RTE_FLOW_ITEM_TYPE_MPLS)
1064 * Parse the rule to see if it is a IP or MAC VLAN flow director rule.
1065 * And get the flow director filter info BTW.
1066 * UDP/TCP/SCTP PATTERN:
1067 * The first not void item can be ETH or IPV4 or IPV6
1068 * The second not void item must be IPV4 or IPV6 if the first one is ETH.
1069 * The next not void item could be UDP or TCP or SCTP (optional)
1070 * The next not void item could be RAW (for flexbyte, optional)
1071 * The next not void item must be END.
1072 * A Fuzzy Match pattern can appear at any place before END.
1073 * Fuzzy Match is optional for IPV4 but is required for IPV6
1075 * The first not void item must be ETH.
1076 * The second not void item must be MAC VLAN.
1077 * The next not void item must be END.
1079 * The first not void action should be QUEUE or DROP.
1080 * The second not void optional action should be MARK,
1081 * mark_id is a uint32_t number.
1082 * The next not void action should be END.
1083 * UDP/TCP/SCTP pattern example:
1086 * IPV4 src_addr 192.168.1.20 0xFFFFFFFF
1087 * dst_addr 192.167.3.50 0xFFFFFFFF
1088 * UDP/TCP/SCTP src_port 80 0xFFFF
1089 * dst_port 80 0xFFFF
1091 * MAC VLAN pattern example:
1094 {0xAC, 0x7B, 0xA1, {0xFF, 0xFF, 0xFF,
1095 0x2C, 0x6D, 0x36} 0xFF, 0xFF, 0xFF}
1096 * MAC VLAN tci 0x2016 0xEFFF
1098 * Other members in mask and spec should set to 0x00.
1099 * Item->last should be NULL.
1102 hns3_parse_fdir_filter(struct rte_eth_dev *dev,
1103 const struct rte_flow_item pattern[],
1104 const struct rte_flow_action actions[],
1105 struct hns3_fdir_rule *rule,
1106 struct rte_flow_error *error)
1108 struct hns3_adapter *hns = dev->data->dev_private;
1109 const struct rte_flow_item *item;
1110 struct items_step_mngr step_mngr;
1113 /* FDIR is available only in PF driver */
1115 return rte_flow_error_set(error, ENOTSUP,
1116 RTE_FLOW_ERROR_TYPE_HANDLE, NULL,
1117 "Fdir not supported in VF");
1119 if (dev->data->dev_conf.fdir_conf.mode != RTE_FDIR_MODE_PERFECT)
1120 return rte_flow_error_set(error, ENOTSUP,
1121 RTE_FLOW_ERROR_TYPE_ITEM_NUM, NULL,
1122 "fdir_conf.mode isn't perfect");
1124 step_mngr.items = first_items;
1125 step_mngr.count = ARRAY_SIZE(first_items);
1126 for (item = pattern; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
1127 if (item->type == RTE_FLOW_ITEM_TYPE_VOID)
1130 ret = hns3_validate_item(item, step_mngr, error);
1134 if (is_tunnel_packet(item->type)) {
1135 ret = hns3_parse_tunnel(item, rule, error);
1138 step_mngr.items = tunnel_next_items;
1139 step_mngr.count = ARRAY_SIZE(tunnel_next_items);
1141 ret = hns3_parse_normal(item, rule, &step_mngr, error);
1147 return hns3_handle_actions(dev, actions, rule, error);
1151 hns3_filterlist_init(struct rte_eth_dev *dev)
1153 struct hns3_process_private *process_list = dev->process_private;
1155 TAILQ_INIT(&process_list->fdir_list);
1156 TAILQ_INIT(&process_list->filter_rss_list);
1157 TAILQ_INIT(&process_list->flow_list);
1161 hns3_filterlist_flush(struct rte_eth_dev *dev)
1163 struct hns3_process_private *process_list = dev->process_private;
1164 struct hns3_fdir_rule_ele *fdir_rule_ptr;
1165 struct hns3_rss_conf_ele *rss_filter_ptr;
1166 struct hns3_flow_mem *flow_node;
1168 fdir_rule_ptr = TAILQ_FIRST(&process_list->fdir_list);
1169 while (fdir_rule_ptr) {
1170 TAILQ_REMOVE(&process_list->fdir_list, fdir_rule_ptr, entries);
1171 rte_free(fdir_rule_ptr);
1172 fdir_rule_ptr = TAILQ_FIRST(&process_list->fdir_list);
1175 rss_filter_ptr = TAILQ_FIRST(&process_list->filter_rss_list);
1176 while (rss_filter_ptr) {
1177 TAILQ_REMOVE(&process_list->filter_rss_list, rss_filter_ptr,
1179 rte_free(rss_filter_ptr);
1180 rss_filter_ptr = TAILQ_FIRST(&process_list->filter_rss_list);
1183 flow_node = TAILQ_FIRST(&process_list->flow_list);
1185 TAILQ_REMOVE(&process_list->flow_list, flow_node, entries);
1186 rte_free(flow_node->flow);
1187 rte_free(flow_node);
1188 flow_node = TAILQ_FIRST(&process_list->flow_list);
1193 hns3_action_rss_same(const struct rte_flow_action_rss *comp,
1194 const struct rte_flow_action_rss *with)
1196 return (comp->func == with->func &&
1197 comp->level == with->level &&
1198 comp->types == with->types &&
1199 comp->key_len == with->key_len &&
1200 comp->queue_num == with->queue_num &&
1201 !memcmp(comp->key, with->key, with->key_len) &&
1202 !memcmp(comp->queue, with->queue,
1203 sizeof(*with->queue) * with->queue_num));
1207 hns3_rss_conf_copy(struct hns3_rss_conf *out,
1208 const struct rte_flow_action_rss *in)
1210 if (in->key_len > RTE_DIM(out->key) ||
1211 in->queue_num > RTE_DIM(out->queue))
1213 if (in->key == NULL && in->key_len)
1215 out->conf = (struct rte_flow_action_rss) {
1219 .key_len = in->key_len,
1220 .queue_num = in->queue_num,
1223 memcpy(out->queue, in->queue,
1224 sizeof(*in->queue) * in->queue_num);
1226 out->conf.key = memcpy(out->key, in->key, in->key_len);
1232 * This function is used to parse rss action validatation.
1235 hns3_parse_rss_filter(struct rte_eth_dev *dev,
1236 const struct rte_flow_action *actions,
1237 struct rte_flow_error *error)
1239 struct hns3_adapter *hns = dev->data->dev_private;
1240 struct hns3_hw *hw = &hns->hw;
1241 struct hns3_rss_conf *rss_conf = &hw->rss_info;
1242 const struct rte_flow_action_rss *rss;
1243 const struct rte_flow_action *act;
1244 uint32_t act_index = 0;
1245 uint64_t flow_types;
1248 NEXT_ITEM_OF_ACTION(act, actions, act_index);
1249 /* Get configuration args from APP cmdline input */
1252 if (rss == NULL || rss->queue_num == 0) {
1253 return rte_flow_error_set(error, EINVAL,
1254 RTE_FLOW_ERROR_TYPE_ACTION,
1255 act, "no valid queues");
1258 for (n = 0; n < rss->queue_num; n++) {
1259 if (rss->queue[n] < dev->data->nb_rx_queues)
1261 return rte_flow_error_set(error, EINVAL,
1262 RTE_FLOW_ERROR_TYPE_ACTION,
1264 "queue id > max number of queues");
1267 /* Parse flow types of RSS */
1268 if (!(rss->types & HNS3_ETH_RSS_SUPPORT) && rss->types)
1269 return rte_flow_error_set(error, EINVAL,
1270 RTE_FLOW_ERROR_TYPE_ACTION,
1272 "Flow types is unsupported by "
1275 flow_types = rss->types & HNS3_ETH_RSS_SUPPORT;
1276 if (flow_types != rss->types)
1277 hns3_warn(hw, "RSS flow types(%" PRIx64 ") include unsupported "
1278 "flow types", rss->types);
1280 /* Parse RSS related parameters from RSS configuration */
1281 switch (rss->func) {
1282 case RTE_ETH_HASH_FUNCTION_DEFAULT:
1283 case RTE_ETH_HASH_FUNCTION_TOEPLITZ:
1284 case RTE_ETH_HASH_FUNCTION_SIMPLE_XOR:
1287 return rte_flow_error_set(error, ENOTSUP,
1288 RTE_FLOW_ERROR_TYPE_ACTION, act,
1289 "input RSS hash functions are not supported");
1293 return rte_flow_error_set(error, ENOTSUP,
1294 RTE_FLOW_ERROR_TYPE_ACTION, act,
1295 "a nonzero RSS encapsulation level is not supported");
1296 if (rss->key_len && rss->key_len != RTE_DIM(rss_conf->key))
1297 return rte_flow_error_set(error, ENOTSUP,
1298 RTE_FLOW_ERROR_TYPE_ACTION, act,
1299 "RSS hash key must be exactly 40 bytes");
1300 if (rss->queue_num > RTE_DIM(rss_conf->queue))
1301 return rte_flow_error_set(error, ENOTSUP,
1302 RTE_FLOW_ERROR_TYPE_ACTION, act,
1303 "too many queues for RSS context");
1307 /* Check if the next not void action is END */
1308 NEXT_ITEM_OF_ACTION(act, actions, act_index);
1309 if (act->type != RTE_FLOW_ACTION_TYPE_END) {
1310 memset(rss_conf, 0, sizeof(struct hns3_rss_conf));
1311 return rte_flow_error_set(error, EINVAL,
1312 RTE_FLOW_ERROR_TYPE_ACTION,
1313 act, "Not supported action.");
1320 hns3_disable_rss(struct hns3_hw *hw)
1324 /* Redirected the redirection table to queue 0 */
1325 ret = hns3_rss_reset_indir_table(hw);
1330 hw->rss_info.conf.types = 0;
1336 hns3_parse_rss_key(struct hns3_hw *hw, struct rte_flow_action_rss *rss_conf)
1338 if (rss_conf->key == NULL ||
1339 rss_conf->key_len < HNS3_RSS_KEY_SIZE) {
1340 hns3_info(hw, "Default RSS hash key to be set");
1341 rss_conf->key = hns3_hash_key;
1342 rss_conf->key_len = HNS3_RSS_KEY_SIZE;
1347 hns3_parse_rss_algorithm(struct hns3_hw *hw, enum rte_eth_hash_function *func,
1350 enum rte_eth_hash_function algo_func = *func;
1351 switch (algo_func) {
1352 case RTE_ETH_HASH_FUNCTION_DEFAULT:
1353 /* Keep *hash_algo as what it used to be */
1354 algo_func = hw->rss_info.conf.func;
1356 case RTE_ETH_HASH_FUNCTION_TOEPLITZ:
1357 *hash_algo = HNS3_RSS_HASH_ALGO_TOEPLITZ;
1359 case RTE_ETH_HASH_FUNCTION_SIMPLE_XOR:
1360 *hash_algo = HNS3_RSS_HASH_ALGO_SIMPLE;
1363 hns3_err(hw, "Invalid RSS algorithm configuration(%u)",
1373 hns3_hw_rss_hash_set(struct hns3_hw *hw, struct rte_flow_action_rss *rss_config)
1376 (hw->rss_info.conf.func == RTE_ETH_HASH_FUNCTION_TOEPLITZ ?
1377 HNS3_RSS_HASH_ALGO_TOEPLITZ : HNS3_RSS_HASH_ALGO_SIMPLE);
1378 struct hns3_rss_tuple_cfg *tuple;
1381 /* Parse hash key */
1382 hns3_parse_rss_key(hw, rss_config);
1384 /* Parse hash algorithm */
1385 ret = hns3_parse_rss_algorithm(hw, &rss_config->func, &hash_algo);
1389 ret = hns3_set_rss_algo_key(hw, hash_algo, rss_config->key);
1393 /* Update algorithm of hw */
1394 hw->rss_info.conf.func = rss_config->func;
1396 /* Set flow type supported */
1397 tuple = &hw->rss_info.rss_tuple_sets;
1398 ret = hns3_set_rss_tuple_by_rss_hf(hw, tuple, rss_config->types);
1400 hns3_err(hw, "Update RSS tuples by rss hf failed %d", ret);
1406 hns3_update_indir_table(struct rte_eth_dev *dev,
1407 const struct rte_flow_action_rss *conf, uint16_t num)
1409 struct hns3_adapter *hns = dev->data->dev_private;
1410 struct hns3_hw *hw = &hns->hw;
1411 uint8_t indir_tbl[HNS3_RSS_IND_TBL_SIZE];
1412 uint16_t j, allow_rss_queues;
1417 hns3_err(hw, "No PF queues are configured to enable RSS");
1421 allow_rss_queues = RTE_MIN(dev->data->nb_rx_queues, hw->rss_size_max);
1422 /* Fill in redirection table */
1423 memcpy(indir_tbl, hw->rss_info.rss_indirection_tbl,
1424 HNS3_RSS_IND_TBL_SIZE);
1425 for (i = 0, j = 0; i < HNS3_RSS_IND_TBL_SIZE; i++, j++) {
1427 if (conf->queue[j] >= allow_rss_queues) {
1428 hns3_err(hw, "Invalid queue id(%u) to be set in "
1429 "redirection table, max number of rss "
1430 "queues: %u", conf->queue[j],
1434 queue_id = conf->queue[j];
1435 indir_tbl[i] = queue_id;
1438 return hns3_set_rss_indir_table(hw, indir_tbl, HNS3_RSS_IND_TBL_SIZE);
1442 hns3_config_rss_filter(struct rte_eth_dev *dev,
1443 const struct hns3_rss_conf *conf, bool add)
1445 struct hns3_adapter *hns = dev->data->dev_private;
1446 struct hns3_hw *hw = &hns->hw;
1447 struct hns3_rss_conf *rss_info;
1448 uint64_t flow_types;
1452 struct rte_flow_action_rss rss_flow_conf = {
1453 .func = conf->conf.func,
1454 .level = conf->conf.level,
1455 .types = conf->conf.types,
1456 .key_len = conf->conf.key_len,
1457 .queue_num = conf->conf.queue_num,
1458 .key = conf->conf.key_len ?
1459 (void *)(uintptr_t)conf->conf.key : NULL,
1460 .queue = conf->conf.queue,
1463 /* The types is Unsupported by hns3' RSS */
1464 if (!(rss_flow_conf.types & HNS3_ETH_RSS_SUPPORT) &&
1465 rss_flow_conf.types) {
1467 "Flow types(%" PRIx64 ") is unsupported by hns3's RSS",
1468 rss_flow_conf.types);
1472 /* Filter the unsupported flow types */
1473 flow_types = rss_flow_conf.types & HNS3_ETH_RSS_SUPPORT;
1474 if (flow_types != rss_flow_conf.types)
1475 hns3_warn(hw, "modified RSS types based on hardware support, "
1476 "requested:%" PRIx64 " configured:%" PRIx64,
1477 rss_flow_conf.types, flow_types);
1478 /* Update the useful flow types */
1479 rss_flow_conf.types = flow_types;
1481 if ((rss_flow_conf.types & ETH_RSS_PROTO_MASK) == 0)
1482 return hns3_disable_rss(hw);
1484 rss_info = &hw->rss_info;
1486 if (hns3_action_rss_same(&rss_info->conf, &rss_flow_conf)) {
1487 ret = hns3_disable_rss(hw);
1489 hns3_err(hw, "RSS disable failed(%d)", ret);
1492 memset(rss_info, 0, sizeof(struct hns3_rss_conf));
1498 /* Get rx queues num */
1499 num = dev->data->nb_rx_queues;
1501 /* Set rx queues to use */
1502 num = RTE_MIN(num, rss_flow_conf.queue_num);
1503 if (rss_flow_conf.queue_num > num)
1504 hns3_warn(hw, "Config queue numbers %u are beyond the scope of truncated",
1505 rss_flow_conf.queue_num);
1506 hns3_info(hw, "Max of contiguous %u PF queues are configured", num);
1508 rte_spinlock_lock(&hw->lock);
1509 /* Update redirection talbe of rss */
1510 ret = hns3_update_indir_table(dev, &rss_flow_conf, num);
1512 goto rss_config_err;
1514 /* Set hash algorithm and flow types by the user's config */
1515 ret = hns3_hw_rss_hash_set(hw, &rss_flow_conf);
1517 goto rss_config_err;
1519 ret = hns3_rss_conf_copy(rss_info, &rss_flow_conf);
1521 hns3_err(hw, "RSS config init fail(%d)", ret);
1522 goto rss_config_err;
1526 rte_spinlock_unlock(&hw->lock);
1531 /* Remove the rss filter */
1533 hns3_clear_rss_filter(struct rte_eth_dev *dev)
1535 struct hns3_adapter *hns = dev->data->dev_private;
1536 struct hns3_hw *hw = &hns->hw;
1538 if (hw->rss_info.conf.queue_num == 0)
1541 return hns3_config_rss_filter(dev, &hw->rss_info, false);
1545 hns3_flow_parse_rss(struct rte_eth_dev *dev,
1546 const struct hns3_rss_conf *conf, bool add)
1548 struct hns3_adapter *hns = dev->data->dev_private;
1549 struct hns3_hw *hw = &hns->hw;
1552 /* Action rss same */
1553 ret = hns3_action_rss_same(&hw->rss_info.conf, &conf->conf);
1555 hns3_err(hw, "Enter duplicate RSS configuration : %d", ret);
1559 return hns3_config_rss_filter(dev, conf, add);
1563 hns3_flow_args_check(const struct rte_flow_attr *attr,
1564 const struct rte_flow_item pattern[],
1565 const struct rte_flow_action actions[],
1566 struct rte_flow_error *error)
1568 if (pattern == NULL)
1569 return rte_flow_error_set(error, EINVAL,
1570 RTE_FLOW_ERROR_TYPE_ITEM_NUM,
1571 NULL, "NULL pattern.");
1573 if (actions == NULL)
1574 return rte_flow_error_set(error, EINVAL,
1575 RTE_FLOW_ERROR_TYPE_ACTION_NUM,
1576 NULL, "NULL action.");
1579 return rte_flow_error_set(error, EINVAL,
1580 RTE_FLOW_ERROR_TYPE_ATTR,
1581 NULL, "NULL attribute.");
1583 return hns3_check_attr(attr, error);
1587 * Check if the flow rule is supported by hns3.
1588 * It only checkes the format. Don't guarantee the rule can be programmed into
1589 * the HW. Because there can be no enough room for the rule.
1592 hns3_flow_validate(struct rte_eth_dev *dev, const struct rte_flow_attr *attr,
1593 const struct rte_flow_item pattern[],
1594 const struct rte_flow_action actions[],
1595 struct rte_flow_error *error)
1597 struct hns3_fdir_rule fdir_rule;
1600 ret = hns3_flow_args_check(attr, pattern, actions, error);
1604 if (find_rss_action(actions))
1605 return hns3_parse_rss_filter(dev, actions, error);
1607 memset(&fdir_rule, 0, sizeof(struct hns3_fdir_rule));
1608 return hns3_parse_fdir_filter(dev, pattern, actions, &fdir_rule, error);
1612 * Create or destroy a flow rule.
1613 * Theorically one rule can match more than one filters.
1614 * We will let it use the filter which it hitt first.
1615 * So, the sequence matters.
1617 static struct rte_flow *
1618 hns3_flow_create(struct rte_eth_dev *dev, const struct rte_flow_attr *attr,
1619 const struct rte_flow_item pattern[],
1620 const struct rte_flow_action actions[],
1621 struct rte_flow_error *error)
1623 struct hns3_process_private *process_list = dev->process_private;
1624 struct hns3_adapter *hns = dev->data->dev_private;
1625 struct hns3_hw *hw = &hns->hw;
1626 const struct hns3_rss_conf *rss_conf;
1627 struct hns3_fdir_rule_ele *fdir_rule_ptr;
1628 struct hns3_rss_conf_ele *rss_filter_ptr;
1629 struct hns3_flow_mem *flow_node;
1630 const struct rte_flow_action *act;
1631 struct rte_flow *flow;
1632 struct hns3_fdir_rule fdir_rule;
1635 ret = hns3_flow_args_check(attr, pattern, actions, error);
1639 flow = rte_zmalloc("hns3 flow", sizeof(struct rte_flow), 0);
1641 rte_flow_error_set(error, ENOMEM,
1642 RTE_FLOW_ERROR_TYPE_HANDLE, NULL,
1643 "Failed to allocate flow memory");
1646 flow_node = rte_zmalloc("hns3 flow node",
1647 sizeof(struct hns3_flow_mem), 0);
1648 if (flow_node == NULL) {
1649 rte_flow_error_set(error, ENOMEM,
1650 RTE_FLOW_ERROR_TYPE_HANDLE, NULL,
1651 "Failed to allocate flow list memory");
1656 flow_node->flow = flow;
1657 TAILQ_INSERT_TAIL(&process_list->flow_list, flow_node, entries);
1659 act = find_rss_action(actions);
1661 rss_conf = act->conf;
1663 ret = hns3_flow_parse_rss(dev, rss_conf, true);
1667 rss_filter_ptr = rte_zmalloc("hns3 rss filter",
1668 sizeof(struct hns3_rss_conf_ele),
1670 if (rss_filter_ptr == NULL) {
1672 "Failed to allocate hns3_rss_filter memory");
1676 memcpy(&rss_filter_ptr->filter_info, rss_conf,
1677 sizeof(struct hns3_rss_conf));
1678 TAILQ_INSERT_TAIL(&process_list->filter_rss_list,
1679 rss_filter_ptr, entries);
1681 flow->rule = rss_filter_ptr;
1682 flow->filter_type = RTE_ETH_FILTER_HASH;
1686 memset(&fdir_rule, 0, sizeof(struct hns3_fdir_rule));
1687 ret = hns3_parse_fdir_filter(dev, pattern, actions, &fdir_rule, error);
1691 if (fdir_rule.flags & HNS3_RULE_FLAG_COUNTER) {
1692 ret = hns3_counter_new(dev, fdir_rule.act_cnt.shared,
1693 fdir_rule.act_cnt.id, error);
1697 flow->counter_id = fdir_rule.act_cnt.id;
1699 ret = hns3_fdir_filter_program(hns, &fdir_rule, false);
1701 fdir_rule_ptr = rte_zmalloc("hns3 fdir rule",
1702 sizeof(struct hns3_fdir_rule_ele),
1704 if (fdir_rule_ptr == NULL) {
1705 hns3_err(hw, "Failed to allocate fdir_rule memory");
1709 memcpy(&fdir_rule_ptr->fdir_conf, &fdir_rule,
1710 sizeof(struct hns3_fdir_rule));
1711 TAILQ_INSERT_TAIL(&process_list->fdir_list,
1712 fdir_rule_ptr, entries);
1713 flow->rule = fdir_rule_ptr;
1714 flow->filter_type = RTE_ETH_FILTER_FDIR;
1720 if (fdir_rule.flags & HNS3_RULE_FLAG_COUNTER)
1721 hns3_counter_release(dev, fdir_rule.act_cnt.id);
1724 rte_flow_error_set(error, -ret, RTE_FLOW_ERROR_TYPE_HANDLE, NULL,
1725 "Failed to create flow");
1727 TAILQ_REMOVE(&process_list->flow_list, flow_node, entries);
1728 rte_free(flow_node);
1733 /* Destroy a flow rule on hns3. */
1735 hns3_flow_destroy(struct rte_eth_dev *dev, struct rte_flow *flow,
1736 struct rte_flow_error *error)
1738 struct hns3_process_private *process_list = dev->process_private;
1739 struct hns3_adapter *hns = dev->data->dev_private;
1740 struct hns3_fdir_rule_ele *fdir_rule_ptr;
1741 struct hns3_rss_conf_ele *rss_filter_ptr;
1742 struct hns3_flow_mem *flow_node;
1743 struct hns3_hw *hw = &hns->hw;
1744 enum rte_filter_type filter_type;
1745 struct hns3_fdir_rule fdir_rule;
1749 return rte_flow_error_set(error, EINVAL,
1750 RTE_FLOW_ERROR_TYPE_HANDLE,
1751 flow, "Flow is NULL");
1752 filter_type = flow->filter_type;
1753 switch (filter_type) {
1754 case RTE_ETH_FILTER_FDIR:
1755 fdir_rule_ptr = (struct hns3_fdir_rule_ele *)flow->rule;
1756 memcpy(&fdir_rule, &fdir_rule_ptr->fdir_conf,
1757 sizeof(struct hns3_fdir_rule));
1759 ret = hns3_fdir_filter_program(hns, &fdir_rule, true);
1761 return rte_flow_error_set(error, EIO,
1762 RTE_FLOW_ERROR_TYPE_HANDLE,
1764 "Destroy FDIR fail.Try again");
1765 if (fdir_rule.flags & HNS3_RULE_FLAG_COUNTER)
1766 hns3_counter_release(dev, fdir_rule.act_cnt.id);
1767 TAILQ_REMOVE(&process_list->fdir_list, fdir_rule_ptr, entries);
1768 rte_free(fdir_rule_ptr);
1769 fdir_rule_ptr = NULL;
1771 case RTE_ETH_FILTER_HASH:
1772 rss_filter_ptr = (struct hns3_rss_conf_ele *)flow->rule;
1773 ret = hns3_config_rss_filter(dev, &hw->rss_info, false);
1775 return rte_flow_error_set(error, EIO,
1776 RTE_FLOW_ERROR_TYPE_HANDLE,
1778 "Destroy RSS fail.Try again");
1779 TAILQ_REMOVE(&process_list->filter_rss_list, rss_filter_ptr,
1781 rte_free(rss_filter_ptr);
1782 rss_filter_ptr = NULL;
1785 return rte_flow_error_set(error, EINVAL,
1786 RTE_FLOW_ERROR_TYPE_HANDLE, flow,
1787 "Unsupported filter type");
1790 TAILQ_FOREACH(flow_node, &process_list->flow_list, entries) {
1791 if (flow_node->flow == flow) {
1792 TAILQ_REMOVE(&process_list->flow_list, flow_node,
1794 rte_free(flow_node);
1805 /* Destroy all flow rules associated with a port on hns3. */
1807 hns3_flow_flush(struct rte_eth_dev *dev, struct rte_flow_error *error)
1809 struct hns3_adapter *hns = dev->data->dev_private;
1812 /* FDIR is available only in PF driver */
1814 ret = hns3_clear_all_fdir_filter(hns);
1816 rte_flow_error_set(error, ret,
1817 RTE_FLOW_ERROR_TYPE_HANDLE,
1818 NULL, "Failed to flush rule");
1821 hns3_counter_flush(dev);
1824 ret = hns3_clear_rss_filter(dev);
1828 hns3_filterlist_flush(dev);
1833 /* Query an existing flow rule. */
1835 hns3_flow_query(struct rte_eth_dev *dev, struct rte_flow *flow,
1836 const struct rte_flow_action *actions, void *data,
1837 struct rte_flow_error *error)
1839 struct rte_flow_query_count *qc;
1842 for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
1843 switch (actions->type) {
1844 case RTE_FLOW_ACTION_TYPE_VOID:
1846 case RTE_FLOW_ACTION_TYPE_COUNT:
1847 qc = (struct rte_flow_query_count *)data;
1848 ret = hns3_counter_query(dev, flow, qc, error);
1853 return rte_flow_error_set(error, ENOTSUP,
1854 RTE_FLOW_ERROR_TYPE_ACTION,
1856 "Query action only support count");
1862 static const struct rte_flow_ops hns3_flow_ops = {
1863 .validate = hns3_flow_validate,
1864 .create = hns3_flow_create,
1865 .destroy = hns3_flow_destroy,
1866 .flush = hns3_flow_flush,
1867 .query = hns3_flow_query,
1872 * The entry of flow API.
1874 * Pointer to Ethernet device.
1876 * 0 on success, a negative errno value otherwise is set.
1879 hns3_dev_filter_ctrl(struct rte_eth_dev *dev, enum rte_filter_type filter_type,
1880 enum rte_filter_op filter_op, void *arg)
1887 hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1888 switch (filter_type) {
1889 case RTE_ETH_FILTER_GENERIC:
1890 if (filter_op != RTE_ETH_FILTER_GET)
1892 if (hw->adapter_state >= HNS3_NIC_CLOSED)
1894 *(const void **)arg = &hns3_flow_ops;
1897 hns3_err(hw, "Filter type (%d) not supported", filter_type);