1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2016 Intel Corporation
11 #include <sys/queue.h>
16 #include <rte_common.h>
17 #include <rte_byteorder.h>
19 #include <rte_memory.h>
20 #include <rte_memcpy.h>
22 #include <rte_launch.h>
23 #include <rte_atomic.h>
24 #include <rte_cycles.h>
25 #include <rte_prefetch.h>
26 #include <rte_lcore.h>
27 #include <rte_per_lcore.h>
28 #include <rte_branch_prediction.h>
29 #include <rte_interrupts.h>
30 #include <rte_random.h>
31 #include <rte_debug.h>
32 #include <rte_ether.h>
33 #include <rte_ethdev.h>
34 #include <rte_mempool.h>
39 #include <rte_string_fns.h>
42 #if RTE_LOG_DP_LEVEL >= RTE_LOG_DEBUG
43 #define L3FWDACL_DEBUG
45 #define DO_RFC_1812_CHECKS
47 #define RTE_LOGTYPE_L3FWD RTE_LOGTYPE_USER1
49 #define MAX_JUMBO_PKT_LEN 9600
51 #define MEMPOOL_CACHE_SIZE 256
54 * This expression is used to calculate the number of mbufs needed
55 * depending on user input, taking into account memory for rx and tx hardware
56 * rings, cache per lcore and mtable per port per lcore.
57 * RTE_MAX is used to ensure that NB_MBUF never goes below a
58 * minimum value of 8192
61 #define NB_MBUF RTE_MAX(\
62 (nb_ports * nb_rx_queue * nb_rxd + \
63 nb_ports * nb_lcores * MAX_PKT_BURST + \
64 nb_ports * n_tx_queue * nb_txd + \
65 nb_lcores * MEMPOOL_CACHE_SIZE), \
68 #define MAX_PKT_BURST 32
69 #define BURST_TX_DRAIN_US 100 /* TX drain every ~100us */
73 /* Configure how many packets ahead to prefetch, when reading packets */
74 #define PREFETCH_OFFSET 3
77 * Configurable number of RX/TX ring descriptors
79 #define RTE_TEST_RX_DESC_DEFAULT 1024
80 #define RTE_TEST_TX_DESC_DEFAULT 1024
81 static uint16_t nb_rxd = RTE_TEST_RX_DESC_DEFAULT;
82 static uint16_t nb_txd = RTE_TEST_TX_DESC_DEFAULT;
84 /* ethernet addresses of ports */
85 static struct rte_ether_addr ports_eth_addr[RTE_MAX_ETHPORTS];
87 /* mask of enabled ports */
88 static uint32_t enabled_port_mask;
89 static int promiscuous_on; /**< Ports set in promiscuous mode off by default. */
90 static int numa_on = 1; /**< NUMA is enabled by default. */
92 struct lcore_rx_queue {
95 } __rte_cache_aligned;
97 #define MAX_RX_QUEUE_PER_LCORE 16
98 #define MAX_TX_QUEUE_PER_PORT RTE_MAX_ETHPORTS
99 #define MAX_RX_QUEUE_PER_PORT 128
101 #define MAX_LCORE_PARAMS 1024
102 struct lcore_params {
106 } __rte_cache_aligned;
108 static struct lcore_params lcore_params_array[MAX_LCORE_PARAMS];
109 static struct lcore_params lcore_params_array_default[] = {
121 static struct lcore_params *lcore_params = lcore_params_array_default;
122 static uint16_t nb_lcore_params = sizeof(lcore_params_array_default) /
123 sizeof(lcore_params_array_default[0]);
125 static struct rte_eth_conf port_conf = {
127 .mq_mode = ETH_MQ_RX_RSS,
128 .max_rx_pkt_len = RTE_ETHER_MAX_LEN,
130 .offloads = DEV_RX_OFFLOAD_CHECKSUM,
135 .rss_hf = ETH_RSS_IP | ETH_RSS_UDP |
136 ETH_RSS_TCP | ETH_RSS_SCTP,
140 .mq_mode = ETH_MQ_TX_NONE,
144 static struct rte_mempool *pktmbuf_pool[NB_SOCKETS];
146 /***********************start of ACL part******************************/
147 #ifdef DO_RFC_1812_CHECKS
149 is_valid_ipv4_pkt(struct rte_ipv4_hdr *pkt, uint32_t link_len);
152 send_single_packet(struct rte_mbuf *m, uint16_t port);
154 #define MAX_ACL_RULE_NUM 100000
155 #define DEFAULT_MAX_CATEGORIES 1
156 #define L3FWD_ACL_IPV4_NAME "l3fwd-acl-ipv4"
157 #define L3FWD_ACL_IPV6_NAME "l3fwd-acl-ipv6"
158 #define ACL_LEAD_CHAR ('@')
159 #define ROUTE_LEAD_CHAR ('R')
160 #define COMMENT_LEAD_CHAR ('#')
161 #define OPTION_CONFIG "config"
162 #define OPTION_NONUMA "no-numa"
163 #define OPTION_ENBJMO "enable-jumbo"
164 #define OPTION_RULE_IPV4 "rule_ipv4"
165 #define OPTION_RULE_IPV6 "rule_ipv6"
166 #define OPTION_SCALAR "scalar"
167 #define ACL_DENY_SIGNATURE 0xf0000000
168 #define RTE_LOGTYPE_L3FWDACL RTE_LOGTYPE_USER3
169 #define acl_log(format, ...) RTE_LOG(ERR, L3FWDACL, format, ##__VA_ARGS__)
170 #define uint32_t_to_char(ip, a, b, c, d) do {\
171 *a = (unsigned char)(ip >> 24 & 0xff);\
172 *b = (unsigned char)(ip >> 16 & 0xff);\
173 *c = (unsigned char)(ip >> 8 & 0xff);\
174 *d = (unsigned char)(ip & 0xff);\
176 #define OFF_ETHHEAD (sizeof(struct rte_ether_hdr))
177 #define OFF_IPV42PROTO (offsetof(struct rte_ipv4_hdr, next_proto_id))
178 #define OFF_IPV62PROTO (offsetof(struct rte_ipv6_hdr, proto))
179 #define MBUF_IPV4_2PROTO(m) \
180 rte_pktmbuf_mtod_offset((m), uint8_t *, OFF_ETHHEAD + OFF_IPV42PROTO)
181 #define MBUF_IPV6_2PROTO(m) \
182 rte_pktmbuf_mtod_offset((m), uint8_t *, OFF_ETHHEAD + OFF_IPV62PROTO)
184 #define GET_CB_FIELD(in, fd, base, lim, dlm) do { \
188 val = strtoul((in), &end, (base)); \
189 if (errno != 0 || end[0] != (dlm) || val > (lim)) \
191 (fd) = (typeof(fd))val; \
196 * ACL rules should have higher priorities than route ones to ensure ACL rule
197 * always be found when input packets have multi-matches in the database.
198 * A exception case is performance measure, which can define route rules with
199 * higher priority and route rules will always be returned in each lookup.
200 * Reserve range from ACL_RULE_PRIORITY_MAX + 1 to
201 * RTE_ACL_MAX_PRIORITY for route entries in performance measure
203 #define ACL_RULE_PRIORITY_MAX 0x10000000
206 * Forward port info save in ACL lib starts from 1
207 * since ACL assume 0 is invalid.
208 * So, need add 1 when saving and minus 1 when forwarding packets.
210 #define FWD_PORT_SHIFT 1
213 * Rule and trace formats definitions.
226 * That effectively defines order of IPV4VLAN classifications:
228 * - VLAN (TAG and DOMAIN)
231 * - PORTS (SRC and DST)
234 RTE_ACL_IPV4VLAN_PROTO,
235 RTE_ACL_IPV4VLAN_VLAN,
236 RTE_ACL_IPV4VLAN_SRC,
237 RTE_ACL_IPV4VLAN_DST,
238 RTE_ACL_IPV4VLAN_PORTS,
242 struct rte_acl_field_def ipv4_defs[NUM_FIELDS_IPV4] = {
244 .type = RTE_ACL_FIELD_TYPE_BITMASK,
245 .size = sizeof(uint8_t),
246 .field_index = PROTO_FIELD_IPV4,
247 .input_index = RTE_ACL_IPV4VLAN_PROTO,
251 .type = RTE_ACL_FIELD_TYPE_MASK,
252 .size = sizeof(uint32_t),
253 .field_index = SRC_FIELD_IPV4,
254 .input_index = RTE_ACL_IPV4VLAN_SRC,
255 .offset = offsetof(struct rte_ipv4_hdr, src_addr) -
256 offsetof(struct rte_ipv4_hdr, next_proto_id),
259 .type = RTE_ACL_FIELD_TYPE_MASK,
260 .size = sizeof(uint32_t),
261 .field_index = DST_FIELD_IPV4,
262 .input_index = RTE_ACL_IPV4VLAN_DST,
263 .offset = offsetof(struct rte_ipv4_hdr, dst_addr) -
264 offsetof(struct rte_ipv4_hdr, next_proto_id),
267 .type = RTE_ACL_FIELD_TYPE_RANGE,
268 .size = sizeof(uint16_t),
269 .field_index = SRCP_FIELD_IPV4,
270 .input_index = RTE_ACL_IPV4VLAN_PORTS,
271 .offset = sizeof(struct rte_ipv4_hdr) -
272 offsetof(struct rte_ipv4_hdr, next_proto_id),
275 .type = RTE_ACL_FIELD_TYPE_RANGE,
276 .size = sizeof(uint16_t),
277 .field_index = DSTP_FIELD_IPV4,
278 .input_index = RTE_ACL_IPV4VLAN_PORTS,
279 .offset = sizeof(struct rte_ipv4_hdr) -
280 offsetof(struct rte_ipv4_hdr, next_proto_id) +
285 #define IPV6_ADDR_LEN 16
286 #define IPV6_ADDR_U16 (IPV6_ADDR_LEN / sizeof(uint16_t))
287 #define IPV6_ADDR_U32 (IPV6_ADDR_LEN / sizeof(uint32_t))
304 struct rte_acl_field_def ipv6_defs[NUM_FIELDS_IPV6] = {
306 .type = RTE_ACL_FIELD_TYPE_BITMASK,
307 .size = sizeof(uint8_t),
308 .field_index = PROTO_FIELD_IPV6,
309 .input_index = PROTO_FIELD_IPV6,
313 .type = RTE_ACL_FIELD_TYPE_MASK,
314 .size = sizeof(uint32_t),
315 .field_index = SRC1_FIELD_IPV6,
316 .input_index = SRC1_FIELD_IPV6,
317 .offset = offsetof(struct rte_ipv6_hdr, src_addr) -
318 offsetof(struct rte_ipv6_hdr, proto),
321 .type = RTE_ACL_FIELD_TYPE_MASK,
322 .size = sizeof(uint32_t),
323 .field_index = SRC2_FIELD_IPV6,
324 .input_index = SRC2_FIELD_IPV6,
325 .offset = offsetof(struct rte_ipv6_hdr, src_addr) -
326 offsetof(struct rte_ipv6_hdr, proto) + sizeof(uint32_t),
329 .type = RTE_ACL_FIELD_TYPE_MASK,
330 .size = sizeof(uint32_t),
331 .field_index = SRC3_FIELD_IPV6,
332 .input_index = SRC3_FIELD_IPV6,
333 .offset = offsetof(struct rte_ipv6_hdr, src_addr) -
334 offsetof(struct rte_ipv6_hdr, proto) +
335 2 * sizeof(uint32_t),
338 .type = RTE_ACL_FIELD_TYPE_MASK,
339 .size = sizeof(uint32_t),
340 .field_index = SRC4_FIELD_IPV6,
341 .input_index = SRC4_FIELD_IPV6,
342 .offset = offsetof(struct rte_ipv6_hdr, src_addr) -
343 offsetof(struct rte_ipv6_hdr, proto) +
344 3 * sizeof(uint32_t),
347 .type = RTE_ACL_FIELD_TYPE_MASK,
348 .size = sizeof(uint32_t),
349 .field_index = DST1_FIELD_IPV6,
350 .input_index = DST1_FIELD_IPV6,
351 .offset = offsetof(struct rte_ipv6_hdr, dst_addr)
352 - offsetof(struct rte_ipv6_hdr, proto),
355 .type = RTE_ACL_FIELD_TYPE_MASK,
356 .size = sizeof(uint32_t),
357 .field_index = DST2_FIELD_IPV6,
358 .input_index = DST2_FIELD_IPV6,
359 .offset = offsetof(struct rte_ipv6_hdr, dst_addr) -
360 offsetof(struct rte_ipv6_hdr, proto) + sizeof(uint32_t),
363 .type = RTE_ACL_FIELD_TYPE_MASK,
364 .size = sizeof(uint32_t),
365 .field_index = DST3_FIELD_IPV6,
366 .input_index = DST3_FIELD_IPV6,
367 .offset = offsetof(struct rte_ipv6_hdr, dst_addr) -
368 offsetof(struct rte_ipv6_hdr, proto) +
369 2 * sizeof(uint32_t),
372 .type = RTE_ACL_FIELD_TYPE_MASK,
373 .size = sizeof(uint32_t),
374 .field_index = DST4_FIELD_IPV6,
375 .input_index = DST4_FIELD_IPV6,
376 .offset = offsetof(struct rte_ipv6_hdr, dst_addr) -
377 offsetof(struct rte_ipv6_hdr, proto) +
378 3 * sizeof(uint32_t),
381 .type = RTE_ACL_FIELD_TYPE_RANGE,
382 .size = sizeof(uint16_t),
383 .field_index = SRCP_FIELD_IPV6,
384 .input_index = SRCP_FIELD_IPV6,
385 .offset = sizeof(struct rte_ipv6_hdr) -
386 offsetof(struct rte_ipv6_hdr, proto),
389 .type = RTE_ACL_FIELD_TYPE_RANGE,
390 .size = sizeof(uint16_t),
391 .field_index = DSTP_FIELD_IPV6,
392 .input_index = SRCP_FIELD_IPV6,
393 .offset = sizeof(struct rte_ipv6_hdr) -
394 offsetof(struct rte_ipv6_hdr, proto) + sizeof(uint16_t),
403 CB_FLD_SRC_PORT_HIGH,
406 CB_FLD_DST_PORT_HIGH,
412 RTE_ACL_RULE_DEF(acl4_rule, RTE_DIM(ipv4_defs));
413 RTE_ACL_RULE_DEF(acl6_rule, RTE_DIM(ipv6_defs));
415 struct acl_search_t {
416 const uint8_t *data_ipv4[MAX_PKT_BURST];
417 struct rte_mbuf *m_ipv4[MAX_PKT_BURST];
418 uint32_t res_ipv4[MAX_PKT_BURST];
421 const uint8_t *data_ipv6[MAX_PKT_BURST];
422 struct rte_mbuf *m_ipv6[MAX_PKT_BURST];
423 uint32_t res_ipv6[MAX_PKT_BURST];
428 char mapped[NB_SOCKETS];
429 struct rte_acl_ctx *acx_ipv4[NB_SOCKETS];
430 struct rte_acl_ctx *acx_ipv6[NB_SOCKETS];
431 #ifdef L3FWDACL_DEBUG
432 struct acl4_rule *rule_ipv4;
433 struct acl6_rule *rule_ipv6;
438 const char *rule_ipv4_name;
439 const char *rule_ipv6_name;
443 const char cb_port_delim[] = ":";
446 print_one_ipv4_rule(struct acl4_rule *rule, int extra)
448 unsigned char a, b, c, d;
450 uint32_t_to_char(rule->field[SRC_FIELD_IPV4].value.u32,
452 printf("%hhu.%hhu.%hhu.%hhu/%u ", a, b, c, d,
453 rule->field[SRC_FIELD_IPV4].mask_range.u32);
454 uint32_t_to_char(rule->field[DST_FIELD_IPV4].value.u32,
456 printf("%hhu.%hhu.%hhu.%hhu/%u ", a, b, c, d,
457 rule->field[DST_FIELD_IPV4].mask_range.u32);
458 printf("%hu : %hu %hu : %hu 0x%hhx/0x%hhx ",
459 rule->field[SRCP_FIELD_IPV4].value.u16,
460 rule->field[SRCP_FIELD_IPV4].mask_range.u16,
461 rule->field[DSTP_FIELD_IPV4].value.u16,
462 rule->field[DSTP_FIELD_IPV4].mask_range.u16,
463 rule->field[PROTO_FIELD_IPV4].value.u8,
464 rule->field[PROTO_FIELD_IPV4].mask_range.u8);
466 printf("0x%x-0x%x-0x%x ",
467 rule->data.category_mask,
469 rule->data.userdata);
473 print_one_ipv6_rule(struct acl6_rule *rule, int extra)
475 unsigned char a, b, c, d;
477 uint32_t_to_char(rule->field[SRC1_FIELD_IPV6].value.u32,
479 printf("%.2x%.2x:%.2x%.2x", a, b, c, d);
480 uint32_t_to_char(rule->field[SRC2_FIELD_IPV6].value.u32,
482 printf(":%.2x%.2x:%.2x%.2x", a, b, c, d);
483 uint32_t_to_char(rule->field[SRC3_FIELD_IPV6].value.u32,
485 printf(":%.2x%.2x:%.2x%.2x", a, b, c, d);
486 uint32_t_to_char(rule->field[SRC4_FIELD_IPV6].value.u32,
488 printf(":%.2x%.2x:%.2x%.2x/%u ", a, b, c, d,
489 rule->field[SRC1_FIELD_IPV6].mask_range.u32
490 + rule->field[SRC2_FIELD_IPV6].mask_range.u32
491 + rule->field[SRC3_FIELD_IPV6].mask_range.u32
492 + rule->field[SRC4_FIELD_IPV6].mask_range.u32);
494 uint32_t_to_char(rule->field[DST1_FIELD_IPV6].value.u32,
496 printf("%.2x%.2x:%.2x%.2x", a, b, c, d);
497 uint32_t_to_char(rule->field[DST2_FIELD_IPV6].value.u32,
499 printf(":%.2x%.2x:%.2x%.2x", a, b, c, d);
500 uint32_t_to_char(rule->field[DST3_FIELD_IPV6].value.u32,
502 printf(":%.2x%.2x:%.2x%.2x", a, b, c, d);
503 uint32_t_to_char(rule->field[DST4_FIELD_IPV6].value.u32,
505 printf(":%.2x%.2x:%.2x%.2x/%u ", a, b, c, d,
506 rule->field[DST1_FIELD_IPV6].mask_range.u32
507 + rule->field[DST2_FIELD_IPV6].mask_range.u32
508 + rule->field[DST3_FIELD_IPV6].mask_range.u32
509 + rule->field[DST4_FIELD_IPV6].mask_range.u32);
511 printf("%hu : %hu %hu : %hu 0x%hhx/0x%hhx ",
512 rule->field[SRCP_FIELD_IPV6].value.u16,
513 rule->field[SRCP_FIELD_IPV6].mask_range.u16,
514 rule->field[DSTP_FIELD_IPV6].value.u16,
515 rule->field[DSTP_FIELD_IPV6].mask_range.u16,
516 rule->field[PROTO_FIELD_IPV6].value.u8,
517 rule->field[PROTO_FIELD_IPV6].mask_range.u8);
519 printf("0x%x-0x%x-0x%x ",
520 rule->data.category_mask,
522 rule->data.userdata);
525 /* Bypass comment and empty lines */
527 is_bypass_line(char *buff)
532 if (buff[0] == COMMENT_LEAD_CHAR)
535 while (buff[i] != '\0') {
536 if (!isspace(buff[i]))
543 #ifdef L3FWDACL_DEBUG
545 dump_acl4_rule(struct rte_mbuf *m, uint32_t sig)
547 uint32_t offset = sig & ~ACL_DENY_SIGNATURE;
548 unsigned char a, b, c, d;
549 struct rte_ipv4_hdr *ipv4_hdr =
550 rte_pktmbuf_mtod_offset(m, struct rte_ipv4_hdr *,
551 sizeof(struct rte_ether_hdr));
553 uint32_t_to_char(rte_bswap32(ipv4_hdr->src_addr), &a, &b, &c, &d);
554 printf("Packet Src:%hhu.%hhu.%hhu.%hhu ", a, b, c, d);
555 uint32_t_to_char(rte_bswap32(ipv4_hdr->dst_addr), &a, &b, &c, &d);
556 printf("Dst:%hhu.%hhu.%hhu.%hhu ", a, b, c, d);
558 printf("Src port:%hu,Dst port:%hu ",
559 rte_bswap16(*(uint16_t *)(ipv4_hdr + 1)),
560 rte_bswap16(*((uint16_t *)(ipv4_hdr + 1) + 1)));
561 printf("hit ACL %d - ", offset);
563 print_one_ipv4_rule(acl_config.rule_ipv4 + offset, 1);
569 dump_acl6_rule(struct rte_mbuf *m, uint32_t sig)
572 uint32_t offset = sig & ~ACL_DENY_SIGNATURE;
573 struct rte_ipv6_hdr *ipv6_hdr =
574 rte_pktmbuf_mtod_offset(m, struct rte_ipv6_hdr *,
575 sizeof(struct rte_ether_hdr));
577 printf("Packet Src");
578 for (i = 0; i < RTE_DIM(ipv6_hdr->src_addr); i += sizeof(uint16_t))
580 ipv6_hdr->src_addr[i], ipv6_hdr->src_addr[i + 1]);
583 for (i = 0; i < RTE_DIM(ipv6_hdr->dst_addr); i += sizeof(uint16_t))
585 ipv6_hdr->dst_addr[i], ipv6_hdr->dst_addr[i + 1]);
587 printf("\nSrc port:%hu,Dst port:%hu ",
588 rte_bswap16(*(uint16_t *)(ipv6_hdr + 1)),
589 rte_bswap16(*((uint16_t *)(ipv6_hdr + 1) + 1)));
590 printf("hit ACL %d - ", offset);
592 print_one_ipv6_rule(acl_config.rule_ipv6 + offset, 1);
596 #endif /* L3FWDACL_DEBUG */
599 dump_ipv4_rules(struct acl4_rule *rule, int num, int extra)
603 for (i = 0; i < num; i++, rule++) {
604 printf("\t%d:", i + 1);
605 print_one_ipv4_rule(rule, extra);
611 dump_ipv6_rules(struct acl6_rule *rule, int num, int extra)
615 for (i = 0; i < num; i++, rule++) {
616 printf("\t%d:", i + 1);
617 print_one_ipv6_rule(rule, extra);
622 #ifdef DO_RFC_1812_CHECKS
624 prepare_one_packet(struct rte_mbuf **pkts_in, struct acl_search_t *acl,
627 struct rte_ipv4_hdr *ipv4_hdr;
628 struct rte_mbuf *pkt = pkts_in[index];
630 if (RTE_ETH_IS_IPV4_HDR(pkt->packet_type)) {
631 ipv4_hdr = rte_pktmbuf_mtod_offset(pkt, struct rte_ipv4_hdr *,
632 sizeof(struct rte_ether_hdr));
634 /* Check to make sure the packet is valid (RFC1812) */
635 if (is_valid_ipv4_pkt(ipv4_hdr, pkt->pkt_len) >= 0) {
637 /* Update time to live and header checksum */
638 --(ipv4_hdr->time_to_live);
639 ++(ipv4_hdr->hdr_checksum);
641 /* Fill acl structure */
642 acl->data_ipv4[acl->num_ipv4] = MBUF_IPV4_2PROTO(pkt);
643 acl->m_ipv4[(acl->num_ipv4)++] = pkt;
646 /* Not a valid IPv4 packet */
647 rte_pktmbuf_free(pkt);
649 } else if (RTE_ETH_IS_IPV6_HDR(pkt->packet_type)) {
650 /* Fill acl structure */
651 acl->data_ipv6[acl->num_ipv6] = MBUF_IPV6_2PROTO(pkt);
652 acl->m_ipv6[(acl->num_ipv6)++] = pkt;
655 /* Unknown type, drop the packet */
656 rte_pktmbuf_free(pkt);
662 prepare_one_packet(struct rte_mbuf **pkts_in, struct acl_search_t *acl,
665 struct rte_mbuf *pkt = pkts_in[index];
667 if (RTE_ETH_IS_IPV4_HDR(pkt->packet_type)) {
668 /* Fill acl structure */
669 acl->data_ipv4[acl->num_ipv4] = MBUF_IPV4_2PROTO(pkt);
670 acl->m_ipv4[(acl->num_ipv4)++] = pkt;
672 } else if (RTE_ETH_IS_IPV6_HDR(pkt->packet_type)) {
673 /* Fill acl structure */
674 acl->data_ipv6[acl->num_ipv6] = MBUF_IPV6_2PROTO(pkt);
675 acl->m_ipv6[(acl->num_ipv6)++] = pkt;
677 /* Unknown type, drop the packet */
678 rte_pktmbuf_free(pkt);
681 #endif /* DO_RFC_1812_CHECKS */
684 prepare_acl_parameter(struct rte_mbuf **pkts_in, struct acl_search_t *acl,
692 /* Prefetch first packets */
693 for (i = 0; i < PREFETCH_OFFSET && i < nb_rx; i++) {
694 rte_prefetch0(rte_pktmbuf_mtod(
695 pkts_in[i], void *));
698 for (i = 0; i < (nb_rx - PREFETCH_OFFSET); i++) {
699 rte_prefetch0(rte_pktmbuf_mtod(pkts_in[
700 i + PREFETCH_OFFSET], void *));
701 prepare_one_packet(pkts_in, acl, i);
704 /* Process left packets */
705 for (; i < nb_rx; i++)
706 prepare_one_packet(pkts_in, acl, i);
710 send_one_packet(struct rte_mbuf *m, uint32_t res)
712 if (likely((res & ACL_DENY_SIGNATURE) == 0 && res != 0)) {
713 /* forward packets */
714 send_single_packet(m,
715 (uint8_t)(res - FWD_PORT_SHIFT));
717 /* in the ACL list, drop it */
718 #ifdef L3FWDACL_DEBUG
719 if ((res & ACL_DENY_SIGNATURE) != 0) {
720 if (RTE_ETH_IS_IPV4_HDR(m->packet_type))
721 dump_acl4_rule(m, res);
722 else if (RTE_ETH_IS_IPV6_HDR(m->packet_type))
723 dump_acl6_rule(m, res);
733 send_packets(struct rte_mbuf **m, uint32_t *res, int num)
737 /* Prefetch first packets */
738 for (i = 0; i < PREFETCH_OFFSET && i < num; i++) {
739 rte_prefetch0(rte_pktmbuf_mtod(
743 for (i = 0; i < (num - PREFETCH_OFFSET); i++) {
744 rte_prefetch0(rte_pktmbuf_mtod(m[
745 i + PREFETCH_OFFSET], void *));
746 send_one_packet(m[i], res[i]);
749 /* Process left packets */
751 send_one_packet(m[i], res[i]);
755 * Parses IPV6 address, exepcts the following format:
756 * XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX (where X - is a hexedecimal digit).
759 parse_ipv6_addr(const char *in, const char **end, uint32_t v[IPV6_ADDR_U32],
762 uint32_t addr[IPV6_ADDR_U16];
764 GET_CB_FIELD(in, addr[0], 16, UINT16_MAX, ':');
765 GET_CB_FIELD(in, addr[1], 16, UINT16_MAX, ':');
766 GET_CB_FIELD(in, addr[2], 16, UINT16_MAX, ':');
767 GET_CB_FIELD(in, addr[3], 16, UINT16_MAX, ':');
768 GET_CB_FIELD(in, addr[4], 16, UINT16_MAX, ':');
769 GET_CB_FIELD(in, addr[5], 16, UINT16_MAX, ':');
770 GET_CB_FIELD(in, addr[6], 16, UINT16_MAX, ':');
771 GET_CB_FIELD(in, addr[7], 16, UINT16_MAX, dlm);
775 v[0] = (addr[0] << 16) + addr[1];
776 v[1] = (addr[2] << 16) + addr[3];
777 v[2] = (addr[4] << 16) + addr[5];
778 v[3] = (addr[6] << 16) + addr[7];
784 parse_ipv6_net(const char *in, struct rte_acl_field field[4])
789 const uint32_t nbu32 = sizeof(uint32_t) * CHAR_BIT;
792 rc = parse_ipv6_addr(in, &mp, v, '/');
797 GET_CB_FIELD(mp, m, 0, CHAR_BIT * sizeof(v), 0);
799 /* put all together. */
800 for (i = 0; i != RTE_DIM(v); i++) {
801 if (m >= (i + 1) * nbu32)
802 field[i].mask_range.u32 = nbu32;
804 field[i].mask_range.u32 = m > (i * nbu32) ?
807 field[i].value.u32 = v[i];
814 parse_cb_ipv6_rule(char *str, struct rte_acl_rule *v, int has_userdata)
817 char *s, *sp, *in[CB_FLD_NUM];
818 static const char *dlm = " \t\n";
819 int dim = has_userdata ? CB_FLD_NUM : CB_FLD_USERDATA;
822 for (i = 0; i != dim; i++, s = NULL) {
823 in[i] = strtok_r(s, dlm, &sp);
828 rc = parse_ipv6_net(in[CB_FLD_SRC_ADDR], v->field + SRC1_FIELD_IPV6);
830 acl_log("failed to read source address/mask: %s\n",
831 in[CB_FLD_SRC_ADDR]);
835 rc = parse_ipv6_net(in[CB_FLD_DST_ADDR], v->field + DST1_FIELD_IPV6);
837 acl_log("failed to read destination address/mask: %s\n",
838 in[CB_FLD_DST_ADDR]);
843 GET_CB_FIELD(in[CB_FLD_SRC_PORT_LOW],
844 v->field[SRCP_FIELD_IPV6].value.u16,
846 GET_CB_FIELD(in[CB_FLD_SRC_PORT_HIGH],
847 v->field[SRCP_FIELD_IPV6].mask_range.u16,
850 if (strncmp(in[CB_FLD_SRC_PORT_DLM], cb_port_delim,
851 sizeof(cb_port_delim)) != 0)
854 /* destination port. */
855 GET_CB_FIELD(in[CB_FLD_DST_PORT_LOW],
856 v->field[DSTP_FIELD_IPV6].value.u16,
858 GET_CB_FIELD(in[CB_FLD_DST_PORT_HIGH],
859 v->field[DSTP_FIELD_IPV6].mask_range.u16,
862 if (strncmp(in[CB_FLD_DST_PORT_DLM], cb_port_delim,
863 sizeof(cb_port_delim)) != 0)
866 if (v->field[SRCP_FIELD_IPV6].mask_range.u16
867 < v->field[SRCP_FIELD_IPV6].value.u16
868 || v->field[DSTP_FIELD_IPV6].mask_range.u16
869 < v->field[DSTP_FIELD_IPV6].value.u16)
872 GET_CB_FIELD(in[CB_FLD_PROTO], v->field[PROTO_FIELD_IPV6].value.u8,
874 GET_CB_FIELD(in[CB_FLD_PROTO], v->field[PROTO_FIELD_IPV6].mask_range.u8,
878 GET_CB_FIELD(in[CB_FLD_USERDATA], v->data.userdata,
885 * Parse ClassBench rules file.
887 * '@'<src_ipv4_addr>'/'<masklen> <space> \
888 * <dst_ipv4_addr>'/'<masklen> <space> \
889 * <src_port_low> <space> ":" <src_port_high> <space> \
890 * <dst_port_low> <space> ":" <dst_port_high> <space> \
894 parse_ipv4_net(const char *in, uint32_t *addr, uint32_t *mask_len)
896 uint8_t a, b, c, d, m;
898 GET_CB_FIELD(in, a, 0, UINT8_MAX, '.');
899 GET_CB_FIELD(in, b, 0, UINT8_MAX, '.');
900 GET_CB_FIELD(in, c, 0, UINT8_MAX, '.');
901 GET_CB_FIELD(in, d, 0, UINT8_MAX, '/');
902 GET_CB_FIELD(in, m, 0, sizeof(uint32_t) * CHAR_BIT, 0);
904 addr[0] = RTE_IPV4(a, b, c, d);
911 parse_cb_ipv4vlan_rule(char *str, struct rte_acl_rule *v, int has_userdata)
914 char *s, *sp, *in[CB_FLD_NUM];
915 static const char *dlm = " \t\n";
916 int dim = has_userdata ? CB_FLD_NUM : CB_FLD_USERDATA;
919 for (i = 0; i != dim; i++, s = NULL) {
920 in[i] = strtok_r(s, dlm, &sp);
925 rc = parse_ipv4_net(in[CB_FLD_SRC_ADDR],
926 &v->field[SRC_FIELD_IPV4].value.u32,
927 &v->field[SRC_FIELD_IPV4].mask_range.u32);
929 acl_log("failed to read source address/mask: %s\n",
930 in[CB_FLD_SRC_ADDR]);
934 rc = parse_ipv4_net(in[CB_FLD_DST_ADDR],
935 &v->field[DST_FIELD_IPV4].value.u32,
936 &v->field[DST_FIELD_IPV4].mask_range.u32);
938 acl_log("failed to read destination address/mask: %s\n",
939 in[CB_FLD_DST_ADDR]);
943 GET_CB_FIELD(in[CB_FLD_SRC_PORT_LOW],
944 v->field[SRCP_FIELD_IPV4].value.u16,
946 GET_CB_FIELD(in[CB_FLD_SRC_PORT_HIGH],
947 v->field[SRCP_FIELD_IPV4].mask_range.u16,
950 if (strncmp(in[CB_FLD_SRC_PORT_DLM], cb_port_delim,
951 sizeof(cb_port_delim)) != 0)
954 GET_CB_FIELD(in[CB_FLD_DST_PORT_LOW],
955 v->field[DSTP_FIELD_IPV4].value.u16,
957 GET_CB_FIELD(in[CB_FLD_DST_PORT_HIGH],
958 v->field[DSTP_FIELD_IPV4].mask_range.u16,
961 if (strncmp(in[CB_FLD_DST_PORT_DLM], cb_port_delim,
962 sizeof(cb_port_delim)) != 0)
965 if (v->field[SRCP_FIELD_IPV4].mask_range.u16
966 < v->field[SRCP_FIELD_IPV4].value.u16
967 || v->field[DSTP_FIELD_IPV4].mask_range.u16
968 < v->field[DSTP_FIELD_IPV4].value.u16)
971 GET_CB_FIELD(in[CB_FLD_PROTO], v->field[PROTO_FIELD_IPV4].value.u8,
973 GET_CB_FIELD(in[CB_FLD_PROTO], v->field[PROTO_FIELD_IPV4].mask_range.u8,
977 GET_CB_FIELD(in[CB_FLD_USERDATA], v->data.userdata, 0,
984 add_rules(const char *rule_path,
985 struct rte_acl_rule **proute_base,
986 unsigned int *proute_num,
987 struct rte_acl_rule **pacl_base,
988 unsigned int *pacl_num, uint32_t rule_size,
989 int (*parser)(char *, struct rte_acl_rule*, int))
991 uint8_t *acl_rules, *route_rules;
992 struct rte_acl_rule *next;
993 unsigned int acl_num = 0, route_num = 0, total_num = 0;
994 unsigned int acl_cnt = 0, route_cnt = 0;
996 FILE *fh = fopen(rule_path, "rb");
1001 rte_exit(EXIT_FAILURE, "%s: Open %s failed\n", __func__,
1004 while ((fgets(buff, LINE_MAX, fh) != NULL)) {
1005 if (buff[0] == ROUTE_LEAD_CHAR)
1007 else if (buff[0] == ACL_LEAD_CHAR)
1012 rte_exit(EXIT_FAILURE, "Not find any route entries in %s!\n",
1015 val = fseek(fh, 0, SEEK_SET);
1017 rte_exit(EXIT_FAILURE, "%s: File seek operation failed\n",
1021 acl_rules = calloc(acl_num, rule_size);
1023 if (NULL == acl_rules)
1024 rte_exit(EXIT_FAILURE, "%s: failed to malloc memory\n",
1027 route_rules = calloc(route_num, rule_size);
1029 if (NULL == route_rules)
1030 rte_exit(EXIT_FAILURE, "%s: failed to malloc memory\n",
1034 while (fgets(buff, LINE_MAX, fh) != NULL) {
1037 if (is_bypass_line(buff))
1043 if (s == ROUTE_LEAD_CHAR)
1044 next = (struct rte_acl_rule *)(route_rules +
1045 route_cnt * rule_size);
1048 else if (s == ACL_LEAD_CHAR)
1049 next = (struct rte_acl_rule *)(acl_rules +
1050 acl_cnt * rule_size);
1054 rte_exit(EXIT_FAILURE,
1055 "%s Line %u: should start with leading "
1057 rule_path, i, ROUTE_LEAD_CHAR, ACL_LEAD_CHAR);
1059 if (parser(buff + 1, next, s == ROUTE_LEAD_CHAR) != 0)
1060 rte_exit(EXIT_FAILURE,
1061 "%s Line %u: parse rules error\n",
1064 if (s == ROUTE_LEAD_CHAR) {
1065 /* Check the forwarding port number */
1066 if ((enabled_port_mask & (1 << next->data.userdata)) ==
1068 rte_exit(EXIT_FAILURE,
1069 "%s Line %u: fwd number illegal:%u\n",
1070 rule_path, i, next->data.userdata);
1071 next->data.userdata += FWD_PORT_SHIFT;
1074 next->data.userdata = ACL_DENY_SIGNATURE + acl_cnt;
1078 next->data.priority = RTE_ACL_MAX_PRIORITY - total_num;
1079 next->data.category_mask = -1;
1085 *pacl_base = (struct rte_acl_rule *)acl_rules;
1086 *pacl_num = acl_num;
1087 *proute_base = (struct rte_acl_rule *)route_rules;
1088 *proute_num = route_cnt;
1094 dump_acl_config(void)
1096 printf("ACL option are:\n");
1097 printf(OPTION_RULE_IPV4": %s\n", parm_config.rule_ipv4_name);
1098 printf(OPTION_RULE_IPV6": %s\n", parm_config.rule_ipv6_name);
1099 printf(OPTION_SCALAR": %d\n", parm_config.scalar);
1103 check_acl_config(void)
1105 if (parm_config.rule_ipv4_name == NULL) {
1106 acl_log("ACL IPv4 rule file not specified\n");
1108 } else if (parm_config.rule_ipv6_name == NULL) {
1109 acl_log("ACL IPv6 rule file not specified\n");
1116 static struct rte_acl_ctx*
1117 setup_acl(struct rte_acl_rule *route_base,
1118 struct rte_acl_rule *acl_base, unsigned int route_num,
1119 unsigned int acl_num, int ipv6, int socketid)
1121 char name[PATH_MAX];
1122 struct rte_acl_param acl_param;
1123 struct rte_acl_config acl_build_param;
1124 struct rte_acl_ctx *context;
1125 int dim = ipv6 ? RTE_DIM(ipv6_defs) : RTE_DIM(ipv4_defs);
1127 /* Create ACL contexts */
1128 snprintf(name, sizeof(name), "%s%d",
1129 ipv6 ? L3FWD_ACL_IPV6_NAME : L3FWD_ACL_IPV4_NAME,
1132 acl_param.name = name;
1133 acl_param.socket_id = socketid;
1134 acl_param.rule_size = RTE_ACL_RULE_SZ(dim);
1135 acl_param.max_rule_num = MAX_ACL_RULE_NUM;
1137 if ((context = rte_acl_create(&acl_param)) == NULL)
1138 rte_exit(EXIT_FAILURE, "Failed to create ACL context\n");
1140 if (parm_config.scalar && rte_acl_set_ctx_classify(context,
1141 RTE_ACL_CLASSIFY_SCALAR) != 0)
1142 rte_exit(EXIT_FAILURE,
1143 "Failed to setup classify method for ACL context\n");
1145 if (rte_acl_add_rules(context, route_base, route_num) < 0)
1146 rte_exit(EXIT_FAILURE, "add rules failed\n");
1148 if (rte_acl_add_rules(context, acl_base, acl_num) < 0)
1149 rte_exit(EXIT_FAILURE, "add rules failed\n");
1151 /* Perform builds */
1152 memset(&acl_build_param, 0, sizeof(acl_build_param));
1154 acl_build_param.num_categories = DEFAULT_MAX_CATEGORIES;
1155 acl_build_param.num_fields = dim;
1156 memcpy(&acl_build_param.defs, ipv6 ? ipv6_defs : ipv4_defs,
1157 ipv6 ? sizeof(ipv6_defs) : sizeof(ipv4_defs));
1159 if (rte_acl_build(context, &acl_build_param) != 0)
1160 rte_exit(EXIT_FAILURE, "Failed to build ACL trie\n");
1162 rte_acl_dump(context);
1173 struct rte_acl_rule *acl_base_ipv4, *route_base_ipv4,
1174 *acl_base_ipv6, *route_base_ipv6;
1175 unsigned int acl_num_ipv4 = 0, route_num_ipv4 = 0,
1176 acl_num_ipv6 = 0, route_num_ipv6 = 0;
1178 if (check_acl_config() != 0)
1179 rte_exit(EXIT_FAILURE, "Failed to get valid ACL options\n");
1183 /* Load rules from the input file */
1184 if (add_rules(parm_config.rule_ipv4_name, &route_base_ipv4,
1185 &route_num_ipv4, &acl_base_ipv4, &acl_num_ipv4,
1186 sizeof(struct acl4_rule), &parse_cb_ipv4vlan_rule) < 0)
1187 rte_exit(EXIT_FAILURE, "Failed to add rules\n");
1189 acl_log("IPv4 Route entries %u:\n", route_num_ipv4);
1190 dump_ipv4_rules((struct acl4_rule *)route_base_ipv4, route_num_ipv4, 1);
1192 acl_log("IPv4 ACL entries %u:\n", acl_num_ipv4);
1193 dump_ipv4_rules((struct acl4_rule *)acl_base_ipv4, acl_num_ipv4, 1);
1195 if (add_rules(parm_config.rule_ipv6_name, &route_base_ipv6,
1197 &acl_base_ipv6, &acl_num_ipv6,
1198 sizeof(struct acl6_rule), &parse_cb_ipv6_rule) < 0)
1199 rte_exit(EXIT_FAILURE, "Failed to add rules\n");
1201 acl_log("IPv6 Route entries %u:\n", route_num_ipv6);
1202 dump_ipv6_rules((struct acl6_rule *)route_base_ipv6, route_num_ipv6, 1);
1204 acl_log("IPv6 ACL entries %u:\n", acl_num_ipv6);
1205 dump_ipv6_rules((struct acl6_rule *)acl_base_ipv6, acl_num_ipv6, 1);
1207 memset(&acl_config, 0, sizeof(acl_config));
1209 /* Check sockets a context should be created on */
1211 acl_config.mapped[0] = 1;
1213 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
1214 if (rte_lcore_is_enabled(lcore_id) == 0)
1217 socketid = rte_lcore_to_socket_id(lcore_id);
1218 if (socketid >= NB_SOCKETS) {
1219 acl_log("Socket %d of lcore %u is out "
1221 socketid, lcore_id, NB_SOCKETS);
1222 free(route_base_ipv4);
1223 free(route_base_ipv6);
1224 free(acl_base_ipv4);
1225 free(acl_base_ipv6);
1229 acl_config.mapped[socketid] = 1;
1233 for (i = 0; i < NB_SOCKETS; i++) {
1234 if (acl_config.mapped[i]) {
1235 acl_config.acx_ipv4[i] = setup_acl(route_base_ipv4,
1236 acl_base_ipv4, route_num_ipv4, acl_num_ipv4,
1239 acl_config.acx_ipv6[i] = setup_acl(route_base_ipv6,
1240 acl_base_ipv6, route_num_ipv6, acl_num_ipv6,
1245 free(route_base_ipv4);
1246 free(route_base_ipv6);
1248 #ifdef L3FWDACL_DEBUG
1249 acl_config.rule_ipv4 = (struct acl4_rule *)acl_base_ipv4;
1250 acl_config.rule_ipv6 = (struct acl6_rule *)acl_base_ipv6;
1252 free(acl_base_ipv4);
1253 free(acl_base_ipv6);
1259 /***********************end of ACL part******************************/
1262 uint16_t n_rx_queue;
1263 struct lcore_rx_queue rx_queue_list[MAX_RX_QUEUE_PER_LCORE];
1265 uint16_t tx_port_id[RTE_MAX_ETHPORTS];
1266 uint16_t tx_queue_id[RTE_MAX_ETHPORTS];
1267 struct rte_eth_dev_tx_buffer *tx_buffer[RTE_MAX_ETHPORTS];
1268 } __rte_cache_aligned;
1270 static struct lcore_conf lcore_conf[RTE_MAX_LCORE];
1272 /* Enqueue a single packet, and send burst if queue is filled */
1274 send_single_packet(struct rte_mbuf *m, uint16_t port)
1277 struct lcore_conf *qconf;
1279 lcore_id = rte_lcore_id();
1281 qconf = &lcore_conf[lcore_id];
1282 rte_eth_tx_buffer(port, qconf->tx_queue_id[port],
1283 qconf->tx_buffer[port], m);
1286 #ifdef DO_RFC_1812_CHECKS
1288 is_valid_ipv4_pkt(struct rte_ipv4_hdr *pkt, uint32_t link_len)
1290 /* From http://www.rfc-editor.org/rfc/rfc1812.txt section 5.2.2 */
1292 * 1. The packet length reported by the Link Layer must be large
1293 * enough to hold the minimum length legal IP datagram (20 bytes).
1295 if (link_len < sizeof(struct rte_ipv4_hdr))
1298 /* 2. The IP checksum must be correct. */
1299 /* this is checked in H/W */
1302 * 3. The IP version number must be 4. If the version number is not 4
1303 * then the packet may be another version of IP, such as IPng or
1306 if (((pkt->version_ihl) >> 4) != 4)
1309 * 4. The IP header length field must be large enough to hold the
1310 * minimum length legal IP datagram (20 bytes = 5 words).
1312 if ((pkt->version_ihl & 0xf) < 5)
1316 * 5. The IP total length field must be large enough to hold the IP
1317 * datagram header, whose length is specified in the IP header length
1320 if (rte_cpu_to_be_16(pkt->total_length) < sizeof(struct rte_ipv4_hdr))
1327 /* main processing loop */
1329 main_loop(__rte_unused void *dummy)
1331 struct rte_mbuf *pkts_burst[MAX_PKT_BURST];
1333 uint64_t prev_tsc, diff_tsc, cur_tsc;
1337 struct lcore_conf *qconf;
1339 const uint64_t drain_tsc = (rte_get_tsc_hz() + US_PER_S - 1)
1340 / US_PER_S * BURST_TX_DRAIN_US;
1343 lcore_id = rte_lcore_id();
1344 qconf = &lcore_conf[lcore_id];
1345 socketid = rte_lcore_to_socket_id(lcore_id);
1347 if (qconf->n_rx_queue == 0) {
1348 RTE_LOG(INFO, L3FWD, "lcore %u has nothing to do\n", lcore_id);
1352 RTE_LOG(INFO, L3FWD, "entering main loop on lcore %u\n", lcore_id);
1354 for (i = 0; i < qconf->n_rx_queue; i++) {
1356 portid = qconf->rx_queue_list[i].port_id;
1357 queueid = qconf->rx_queue_list[i].queue_id;
1358 RTE_LOG(INFO, L3FWD,
1359 " -- lcoreid=%u portid=%u rxqueueid=%hhu\n",
1360 lcore_id, portid, queueid);
1365 cur_tsc = rte_rdtsc();
1368 * TX burst queue drain
1370 diff_tsc = cur_tsc - prev_tsc;
1371 if (unlikely(diff_tsc > drain_tsc)) {
1372 for (i = 0; i < qconf->n_tx_port; ++i) {
1373 portid = qconf->tx_port_id[i];
1374 rte_eth_tx_buffer_flush(portid,
1375 qconf->tx_queue_id[portid],
1376 qconf->tx_buffer[portid]);
1382 * Read packet from RX queues
1384 for (i = 0; i < qconf->n_rx_queue; ++i) {
1386 portid = qconf->rx_queue_list[i].port_id;
1387 queueid = qconf->rx_queue_list[i].queue_id;
1388 nb_rx = rte_eth_rx_burst(portid, queueid,
1389 pkts_burst, MAX_PKT_BURST);
1392 struct acl_search_t acl_search;
1394 prepare_acl_parameter(pkts_burst, &acl_search,
1397 if (acl_search.num_ipv4) {
1399 acl_config.acx_ipv4[socketid],
1400 acl_search.data_ipv4,
1401 acl_search.res_ipv4,
1402 acl_search.num_ipv4,
1403 DEFAULT_MAX_CATEGORIES);
1405 send_packets(acl_search.m_ipv4,
1406 acl_search.res_ipv4,
1407 acl_search.num_ipv4);
1410 if (acl_search.num_ipv6) {
1412 acl_config.acx_ipv6[socketid],
1413 acl_search.data_ipv6,
1414 acl_search.res_ipv6,
1415 acl_search.num_ipv6,
1416 DEFAULT_MAX_CATEGORIES);
1418 send_packets(acl_search.m_ipv6,
1419 acl_search.res_ipv6,
1420 acl_search.num_ipv6);
1428 check_lcore_params(void)
1430 uint8_t queue, lcore;
1434 for (i = 0; i < nb_lcore_params; ++i) {
1435 queue = lcore_params[i].queue_id;
1436 if (queue >= MAX_RX_QUEUE_PER_PORT) {
1437 printf("invalid queue number: %hhu\n", queue);
1440 lcore = lcore_params[i].lcore_id;
1441 if (!rte_lcore_is_enabled(lcore)) {
1442 printf("error: lcore %hhu is not enabled in "
1443 "lcore mask\n", lcore);
1446 socketid = rte_lcore_to_socket_id(lcore);
1447 if (socketid != 0 && numa_on == 0) {
1448 printf("warning: lcore %hhu is on socket %d "
1457 check_port_config(void)
1462 for (i = 0; i < nb_lcore_params; ++i) {
1463 portid = lcore_params[i].port_id;
1465 if ((enabled_port_mask & (1 << portid)) == 0) {
1466 printf("port %u is not enabled in port mask\n", portid);
1469 if (!rte_eth_dev_is_valid_port(portid)) {
1470 printf("port %u is not present on the board\n", portid);
1478 get_port_n_rx_queues(const uint16_t port)
1483 for (i = 0; i < nb_lcore_params; ++i) {
1484 if (lcore_params[i].port_id == port &&
1485 lcore_params[i].queue_id > queue)
1486 queue = lcore_params[i].queue_id;
1488 return (uint8_t)(++queue);
1492 init_lcore_rx_queues(void)
1494 uint16_t i, nb_rx_queue;
1497 for (i = 0; i < nb_lcore_params; ++i) {
1498 lcore = lcore_params[i].lcore_id;
1499 nb_rx_queue = lcore_conf[lcore].n_rx_queue;
1500 if (nb_rx_queue >= MAX_RX_QUEUE_PER_LCORE) {
1501 printf("error: too many queues (%u) for lcore: %u\n",
1502 (unsigned)nb_rx_queue + 1, (unsigned)lcore);
1505 lcore_conf[lcore].rx_queue_list[nb_rx_queue].port_id =
1506 lcore_params[i].port_id;
1507 lcore_conf[lcore].rx_queue_list[nb_rx_queue].queue_id =
1508 lcore_params[i].queue_id;
1509 lcore_conf[lcore].n_rx_queue++;
1517 print_usage(const char *prgname)
1519 printf("%s [EAL options] -- -p PORTMASK -P"
1520 "--"OPTION_RULE_IPV4"=FILE"
1521 "--"OPTION_RULE_IPV6"=FILE"
1522 " [--"OPTION_CONFIG" (port,queue,lcore)[,(port,queue,lcore]]"
1523 " [--"OPTION_ENBJMO" [--max-pkt-len PKTLEN]]\n"
1524 " -p PORTMASK: hexadecimal bitmask of ports to configure\n"
1525 " -P : enable promiscuous mode\n"
1526 " --"OPTION_CONFIG": (port,queue,lcore): "
1527 "rx queues configuration\n"
1528 " --"OPTION_NONUMA": optional, disable numa awareness\n"
1529 " --"OPTION_ENBJMO": enable jumbo frame"
1530 " which max packet len is PKTLEN in decimal (64-9600)\n"
1531 " --"OPTION_RULE_IPV4"=FILE: specify the ipv4 rules entries "
1533 "Each rule occupy one line. "
1534 "2 kinds of rules are supported. "
1535 "One is ACL entry at while line leads with character '%c', "
1536 "another is route entry at while line leads with "
1538 " --"OPTION_RULE_IPV6"=FILE: specify the ipv6 rules "
1540 " --"OPTION_SCALAR": Use scalar function to do lookup\n",
1541 prgname, ACL_LEAD_CHAR, ROUTE_LEAD_CHAR);
1545 parse_max_pkt_len(const char *pktlen)
1550 /* parse decimal string */
1551 len = strtoul(pktlen, &end, 10);
1552 if ((pktlen[0] == '\0') || (end == NULL) || (*end != '\0'))
1562 parse_portmask(const char *portmask)
1567 /* parse hexadecimal string */
1568 pm = strtoul(portmask, &end, 16);
1569 if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
1579 parse_config(const char *q_arg)
1582 const char *p, *p0 = q_arg;
1590 unsigned long int_fld[_NUM_FLD];
1591 char *str_fld[_NUM_FLD];
1595 nb_lcore_params = 0;
1597 while ((p = strchr(p0, '(')) != NULL) {
1599 if ((p0 = strchr(p, ')')) == NULL)
1603 if (size >= sizeof(s))
1606 snprintf(s, sizeof(s), "%.*s", size, p);
1607 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') !=
1610 for (i = 0; i < _NUM_FLD; i++) {
1612 int_fld[i] = strtoul(str_fld[i], &end, 0);
1613 if (errno != 0 || end == str_fld[i] || int_fld[i] > 255)
1616 if (nb_lcore_params >= MAX_LCORE_PARAMS) {
1617 printf("exceeded max number of lcore params: %hu\n",
1621 lcore_params_array[nb_lcore_params].port_id =
1622 (uint8_t)int_fld[FLD_PORT];
1623 lcore_params_array[nb_lcore_params].queue_id =
1624 (uint8_t)int_fld[FLD_QUEUE];
1625 lcore_params_array[nb_lcore_params].lcore_id =
1626 (uint8_t)int_fld[FLD_LCORE];
1629 lcore_params = lcore_params_array;
1633 /* Parse the argument given in the command line of the application */
1635 parse_args(int argc, char **argv)
1640 char *prgname = argv[0];
1641 static struct option lgopts[] = {
1642 {OPTION_CONFIG, 1, 0, 0},
1643 {OPTION_NONUMA, 0, 0, 0},
1644 {OPTION_ENBJMO, 0, 0, 0},
1645 {OPTION_RULE_IPV4, 1, 0, 0},
1646 {OPTION_RULE_IPV6, 1, 0, 0},
1647 {OPTION_SCALAR, 0, 0, 0},
1653 while ((opt = getopt_long(argc, argvopt, "p:P",
1654 lgopts, &option_index)) != EOF) {
1659 enabled_port_mask = parse_portmask(optarg);
1660 if (enabled_port_mask == 0) {
1661 printf("invalid portmask\n");
1662 print_usage(prgname);
1667 printf("Promiscuous mode selected\n");
1673 if (!strncmp(lgopts[option_index].name,
1675 sizeof(OPTION_CONFIG))) {
1676 ret = parse_config(optarg);
1678 printf("invalid config\n");
1679 print_usage(prgname);
1684 if (!strncmp(lgopts[option_index].name,
1686 sizeof(OPTION_NONUMA))) {
1687 printf("numa is disabled\n");
1691 if (!strncmp(lgopts[option_index].name,
1692 OPTION_ENBJMO, sizeof(OPTION_ENBJMO))) {
1693 struct option lenopts = {
1700 printf("jumbo frame is enabled\n");
1701 port_conf.rxmode.offloads |=
1702 DEV_RX_OFFLOAD_JUMBO_FRAME;
1703 port_conf.txmode.offloads |=
1704 DEV_TX_OFFLOAD_MULTI_SEGS;
1707 * if no max-pkt-len set, then use the
1708 * default value RTE_ETHER_MAX_LEN
1710 if (0 == getopt_long(argc, argvopt, "",
1711 &lenopts, &option_index)) {
1712 ret = parse_max_pkt_len(optarg);
1714 (ret > MAX_JUMBO_PKT_LEN)) {
1715 printf("invalid packet "
1717 print_usage(prgname);
1720 port_conf.rxmode.max_rx_pkt_len = ret;
1722 printf("set jumbo frame max packet length "
1725 port_conf.rxmode.max_rx_pkt_len);
1728 if (!strncmp(lgopts[option_index].name,
1730 sizeof(OPTION_RULE_IPV4)))
1731 parm_config.rule_ipv4_name = optarg;
1733 if (!strncmp(lgopts[option_index].name,
1735 sizeof(OPTION_RULE_IPV6))) {
1736 parm_config.rule_ipv6_name = optarg;
1739 if (!strncmp(lgopts[option_index].name,
1740 OPTION_SCALAR, sizeof(OPTION_SCALAR)))
1741 parm_config.scalar = 1;
1747 print_usage(prgname);
1753 argv[optind-1] = prgname;
1756 optind = 1; /* reset getopt lib */
1761 print_ethaddr(const char *name, const struct rte_ether_addr *eth_addr)
1763 char buf[RTE_ETHER_ADDR_FMT_SIZE];
1764 rte_ether_format_addr(buf, RTE_ETHER_ADDR_FMT_SIZE, eth_addr);
1765 printf("%s%s", name, buf);
1769 init_mem(unsigned nb_mbuf)
1775 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
1776 if (rte_lcore_is_enabled(lcore_id) == 0)
1780 socketid = rte_lcore_to_socket_id(lcore_id);
1784 if (socketid >= NB_SOCKETS) {
1785 rte_exit(EXIT_FAILURE,
1786 "Socket %d of lcore %u is out of range %d\n",
1787 socketid, lcore_id, NB_SOCKETS);
1789 if (pktmbuf_pool[socketid] == NULL) {
1790 snprintf(s, sizeof(s), "mbuf_pool_%d", socketid);
1791 pktmbuf_pool[socketid] =
1792 rte_pktmbuf_pool_create(s, nb_mbuf,
1793 MEMPOOL_CACHE_SIZE, 0,
1794 RTE_MBUF_DEFAULT_BUF_SIZE,
1796 if (pktmbuf_pool[socketid] == NULL)
1797 rte_exit(EXIT_FAILURE,
1798 "Cannot init mbuf pool on socket %d\n",
1801 printf("Allocated mbuf pool on socket %d\n",
1808 /* Check the link status of all ports in up to 9s, and print them finally */
1810 check_all_ports_link_status(uint32_t port_mask)
1812 #define CHECK_INTERVAL 100 /* 100ms */
1813 #define MAX_CHECK_TIME 90 /* 9s (90 * 100ms) in total */
1815 uint8_t count, all_ports_up, print_flag = 0;
1816 struct rte_eth_link link;
1819 printf("\nChecking link status");
1821 for (count = 0; count <= MAX_CHECK_TIME; count++) {
1823 RTE_ETH_FOREACH_DEV(portid) {
1824 if ((port_mask & (1 << portid)) == 0)
1826 memset(&link, 0, sizeof(link));
1827 ret = rte_eth_link_get_nowait(portid, &link);
1830 if (print_flag == 1)
1831 printf("Port %u link get failed: %s\n",
1832 portid, rte_strerror(-ret));
1835 /* print link status if flag set */
1836 if (print_flag == 1) {
1837 if (link.link_status)
1839 "Port%d Link Up. Speed %u Mbps %s\n",
1840 portid, link.link_speed,
1841 (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
1842 ("full-duplex") : ("half-duplex"));
1844 printf("Port %d Link Down\n", portid);
1847 /* clear all_ports_up flag if any link down */
1848 if (link.link_status == ETH_LINK_DOWN) {
1853 /* after finally printing all link status, get out */
1854 if (print_flag == 1)
1857 if (all_ports_up == 0) {
1860 rte_delay_ms(CHECK_INTERVAL);
1863 /* set the print_flag if all ports up or timeout */
1864 if (all_ports_up == 1 || count == (MAX_CHECK_TIME - 1)) {
1872 main(int argc, char **argv)
1874 struct lcore_conf *qconf;
1875 struct rte_eth_dev_info dev_info;
1876 struct rte_eth_txconf *txconf;
1881 uint32_t n_tx_queue, nb_lcores;
1883 uint8_t nb_rx_queue, queue, socketid;
1886 ret = rte_eal_init(argc, argv);
1888 rte_exit(EXIT_FAILURE, "Invalid EAL parameters\n");
1892 /* parse application arguments (after the EAL ones) */
1893 ret = parse_args(argc, argv);
1895 rte_exit(EXIT_FAILURE, "Invalid L3FWD parameters\n");
1897 if (check_lcore_params() < 0)
1898 rte_exit(EXIT_FAILURE, "check_lcore_params failed\n");
1900 ret = init_lcore_rx_queues();
1902 rte_exit(EXIT_FAILURE, "init_lcore_rx_queues failed\n");
1904 nb_ports = rte_eth_dev_count_avail();
1906 if (check_port_config() < 0)
1907 rte_exit(EXIT_FAILURE, "check_port_config failed\n");
1909 /* Add ACL rules and route entries, build trie */
1910 if (app_acl_init() < 0)
1911 rte_exit(EXIT_FAILURE, "app_acl_init failed\n");
1913 nb_lcores = rte_lcore_count();
1915 /* initialize all ports */
1916 RTE_ETH_FOREACH_DEV(portid) {
1917 struct rte_eth_conf local_port_conf = port_conf;
1919 /* skip ports that are not enabled */
1920 if ((enabled_port_mask & (1 << portid)) == 0) {
1921 printf("\nSkipping disabled port %d\n", portid);
1926 printf("Initializing port %d ... ", portid);
1929 nb_rx_queue = get_port_n_rx_queues(portid);
1930 n_tx_queue = nb_lcores;
1931 if (n_tx_queue > MAX_TX_QUEUE_PER_PORT)
1932 n_tx_queue = MAX_TX_QUEUE_PER_PORT;
1933 printf("Creating queues: nb_rxq=%d nb_txq=%u... ",
1934 nb_rx_queue, (unsigned)n_tx_queue);
1936 ret = rte_eth_dev_info_get(portid, &dev_info);
1938 rte_exit(EXIT_FAILURE,
1939 "Error during getting device (port %u) info: %s\n",
1940 portid, strerror(-ret));
1942 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MBUF_FAST_FREE)
1943 local_port_conf.txmode.offloads |=
1944 DEV_TX_OFFLOAD_MBUF_FAST_FREE;
1946 local_port_conf.rx_adv_conf.rss_conf.rss_hf &=
1947 dev_info.flow_type_rss_offloads;
1948 if (local_port_conf.rx_adv_conf.rss_conf.rss_hf !=
1949 port_conf.rx_adv_conf.rss_conf.rss_hf) {
1950 printf("Port %u modified RSS hash function based on hardware support,"
1951 "requested:%#"PRIx64" configured:%#"PRIx64"\n",
1953 port_conf.rx_adv_conf.rss_conf.rss_hf,
1954 local_port_conf.rx_adv_conf.rss_conf.rss_hf);
1957 ret = rte_eth_dev_configure(portid, nb_rx_queue,
1958 (uint16_t)n_tx_queue, &local_port_conf);
1960 rte_exit(EXIT_FAILURE,
1961 "Cannot configure device: err=%d, port=%d\n",
1964 ret = rte_eth_dev_adjust_nb_rx_tx_desc(portid, &nb_rxd,
1967 rte_exit(EXIT_FAILURE,
1968 "rte_eth_dev_adjust_nb_rx_tx_desc: err=%d, port=%d\n",
1971 ret = rte_eth_macaddr_get(portid, &ports_eth_addr[portid]);
1973 rte_exit(EXIT_FAILURE,
1974 "rte_eth_macaddr_get: err=%d, port=%d\n",
1977 print_ethaddr(" Address:", &ports_eth_addr[portid]);
1981 ret = init_mem(NB_MBUF);
1983 rte_exit(EXIT_FAILURE, "init_mem failed\n");
1985 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
1986 if (rte_lcore_is_enabled(lcore_id) == 0)
1989 /* Initialize TX buffers */
1990 qconf = &lcore_conf[lcore_id];
1991 qconf->tx_buffer[portid] = rte_zmalloc_socket("tx_buffer",
1992 RTE_ETH_TX_BUFFER_SIZE(MAX_PKT_BURST), 0,
1993 rte_eth_dev_socket_id(portid));
1994 if (qconf->tx_buffer[portid] == NULL)
1995 rte_exit(EXIT_FAILURE, "Can't allocate tx buffer for port %u\n",
1998 rte_eth_tx_buffer_init(qconf->tx_buffer[portid], MAX_PKT_BURST);
2001 /* init one TX queue per couple (lcore,port) */
2003 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
2004 if (rte_lcore_is_enabled(lcore_id) == 0)
2008 socketid = (uint8_t)
2009 rte_lcore_to_socket_id(lcore_id);
2013 printf("txq=%u,%d,%d ", lcore_id, queueid, socketid);
2016 ret = rte_eth_dev_info_get(portid, &dev_info);
2018 rte_exit(EXIT_FAILURE,
2019 "Error during getting device (port %u) info: %s\n",
2020 portid, strerror(-ret));
2022 txconf = &dev_info.default_txconf;
2023 txconf->offloads = local_port_conf.txmode.offloads;
2024 ret = rte_eth_tx_queue_setup(portid, queueid, nb_txd,
2027 rte_exit(EXIT_FAILURE,
2028 "rte_eth_tx_queue_setup: err=%d, "
2029 "port=%d\n", ret, portid);
2031 qconf = &lcore_conf[lcore_id];
2032 qconf->tx_queue_id[portid] = queueid;
2035 qconf->tx_port_id[qconf->n_tx_port] = portid;
2041 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
2042 if (rte_lcore_is_enabled(lcore_id) == 0)
2044 qconf = &lcore_conf[lcore_id];
2045 printf("\nInitializing rx queues on lcore %u ... ", lcore_id);
2047 /* init RX queues */
2048 for (queue = 0; queue < qconf->n_rx_queue; ++queue) {
2049 struct rte_eth_rxconf rxq_conf;
2051 portid = qconf->rx_queue_list[queue].port_id;
2052 queueid = qconf->rx_queue_list[queue].queue_id;
2055 socketid = (uint8_t)
2056 rte_lcore_to_socket_id(lcore_id);
2060 printf("rxq=%d,%d,%d ", portid, queueid, socketid);
2063 ret = rte_eth_dev_info_get(portid, &dev_info);
2065 rte_exit(EXIT_FAILURE,
2066 "Error during getting device (port %u) info: %s\n",
2067 portid, strerror(-ret));
2069 rxq_conf = dev_info.default_rxconf;
2070 rxq_conf.offloads = port_conf.rxmode.offloads;
2071 ret = rte_eth_rx_queue_setup(portid, queueid, nb_rxd,
2072 socketid, &rxq_conf,
2073 pktmbuf_pool[socketid]);
2075 rte_exit(EXIT_FAILURE,
2076 "rte_eth_rx_queue_setup: err=%d,"
2077 "port=%d\n", ret, portid);
2084 RTE_ETH_FOREACH_DEV(portid) {
2085 if ((enabled_port_mask & (1 << portid)) == 0)
2089 ret = rte_eth_dev_start(portid);
2091 rte_exit(EXIT_FAILURE,
2092 "rte_eth_dev_start: err=%d, port=%d\n",
2096 * If enabled, put device in promiscuous mode.
2097 * This allows IO forwarding mode to forward packets
2098 * to itself through 2 cross-connected ports of the
2101 if (promiscuous_on) {
2102 ret = rte_eth_promiscuous_enable(portid);
2104 rte_exit(EXIT_FAILURE,
2105 "rte_eth_promiscuous_enable: err=%s, port=%u\n",
2106 rte_strerror(-ret), portid);
2110 check_all_ports_link_status(enabled_port_mask);
2112 /* launch per-lcore init on every lcore */
2113 rte_eal_mp_remote_launch(main_loop, NULL, CALL_MASTER);
2114 RTE_LCORE_FOREACH_SLAVE(lcore_id) {
2115 if (rte_eal_wait_lcore(lcore_id) < 0)