4 * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 #include <sys/types.h>
40 #include <sys/queue.h>
45 #include <rte_common.h>
46 #include <rte_byteorder.h>
48 #include <rte_memory.h>
49 #include <rte_memcpy.h>
50 #include <rte_memzone.h>
52 #include <rte_per_lcore.h>
53 #include <rte_launch.h>
54 #include <rte_atomic.h>
55 #include <rte_cycles.h>
56 #include <rte_prefetch.h>
57 #include <rte_lcore.h>
58 #include <rte_per_lcore.h>
59 #include <rte_branch_prediction.h>
60 #include <rte_interrupts.h>
62 #include <rte_random.h>
63 #include <rte_debug.h>
64 #include <rte_ether.h>
65 #include <rte_ethdev.h>
67 #include <rte_mempool.h>
72 #include <rte_string_fns.h>
75 #define DO_RFC_1812_CHECKS
77 #define RTE_LOGTYPE_L3FWD RTE_LOGTYPE_USER1
79 #define MAX_JUMBO_PKT_LEN 9600
81 #define MEMPOOL_CACHE_SIZE 256
84 * This expression is used to calculate the number of mbufs needed
85 * depending on user input, taking into account memory for rx and tx hardware
86 * rings, cache per lcore and mtable per port per lcore.
87 * RTE_MAX is used to ensure that NB_MBUF never goes below a
88 * minimum value of 8192
91 #define NB_MBUF RTE_MAX(\
92 (nb_ports * nb_rx_queue*RTE_TEST_RX_DESC_DEFAULT + \
93 nb_ports * nb_lcores * MAX_PKT_BURST + \
94 nb_ports * n_tx_queue * RTE_TEST_TX_DESC_DEFAULT + \
95 nb_lcores * MEMPOOL_CACHE_SIZE), \
98 #define MAX_PKT_BURST 32
99 #define BURST_TX_DRAIN_US 100 /* TX drain every ~100us */
103 /* Configure how many packets ahead to prefetch, when reading packets */
104 #define PREFETCH_OFFSET 3
107 * Configurable number of RX/TX ring descriptors
109 #define RTE_TEST_RX_DESC_DEFAULT 128
110 #define RTE_TEST_TX_DESC_DEFAULT 512
111 static uint16_t nb_rxd = RTE_TEST_RX_DESC_DEFAULT;
112 static uint16_t nb_txd = RTE_TEST_TX_DESC_DEFAULT;
114 /* ethernet addresses of ports */
115 static struct ether_addr ports_eth_addr[RTE_MAX_ETHPORTS];
117 /* mask of enabled ports */
118 static uint32_t enabled_port_mask;
119 static int promiscuous_on; /**< Ports set in promiscuous mode off by default. */
120 static int numa_on = 1; /**< NUMA is enabled by default. */
124 struct rte_mbuf *m_table[MAX_PKT_BURST];
127 struct lcore_rx_queue {
130 } __rte_cache_aligned;
132 #define MAX_RX_QUEUE_PER_LCORE 16
133 #define MAX_TX_QUEUE_PER_PORT RTE_MAX_ETHPORTS
134 #define MAX_RX_QUEUE_PER_PORT 128
136 #define MAX_LCORE_PARAMS 1024
137 struct lcore_params {
141 } __rte_cache_aligned;
143 static struct lcore_params lcore_params_array[MAX_LCORE_PARAMS];
144 static struct lcore_params lcore_params_array_default[] = {
156 static struct lcore_params *lcore_params = lcore_params_array_default;
157 static uint16_t nb_lcore_params = sizeof(lcore_params_array_default) /
158 sizeof(lcore_params_array_default[0]);
160 static struct rte_eth_conf port_conf = {
162 .mq_mode = ETH_MQ_RX_RSS,
163 .max_rx_pkt_len = ETHER_MAX_LEN,
165 .header_split = 0, /**< Header Split disabled */
166 .hw_ip_checksum = 1, /**< IP checksum offload enabled */
167 .hw_vlan_filter = 0, /**< VLAN filtering disabled */
168 .jumbo_frame = 0, /**< Jumbo Frame Support disabled */
169 .hw_strip_crc = 0, /**< CRC stripped by hardware */
174 .rss_hf = ETH_RSS_IP | ETH_RSS_UDP |
175 ETH_RSS_TCP | ETH_RSS_SCTP,
179 .mq_mode = ETH_MQ_TX_NONE,
183 static struct rte_mempool *pktmbuf_pool[NB_SOCKETS];
185 /***********************start of ACL part******************************/
186 #ifdef DO_RFC_1812_CHECKS
188 is_valid_ipv4_pkt(struct ipv4_hdr *pkt, uint32_t link_len);
191 send_single_packet(struct rte_mbuf *m, uint8_t port);
193 #define MAX_ACL_RULE_NUM 100000
194 #define DEFAULT_MAX_CATEGORIES 1
195 #define L3FWD_ACL_IPV4_NAME "l3fwd-acl-ipv4"
196 #define L3FWD_ACL_IPV6_NAME "l3fwd-acl-ipv6"
197 #define ACL_LEAD_CHAR ('@')
198 #define ROUTE_LEAD_CHAR ('R')
199 #define COMMENT_LEAD_CHAR ('#')
200 #define OPTION_CONFIG "config"
201 #define OPTION_NONUMA "no-numa"
202 #define OPTION_ENBJMO "enable-jumbo"
203 #define OPTION_RULE_IPV4 "rule_ipv4"
204 #define OPTION_RULE_IPV6 "rule_ipv6"
205 #define OPTION_SCALAR "scalar"
206 #define ACL_DENY_SIGNATURE 0xf0000000
207 #define RTE_LOGTYPE_L3FWDACL RTE_LOGTYPE_USER3
208 #define acl_log(format, ...) RTE_LOG(ERR, L3FWDACL, format, ##__VA_ARGS__)
209 #define uint32_t_to_char(ip, a, b, c, d) do {\
210 *a = (unsigned char)(ip >> 24 & 0xff);\
211 *b = (unsigned char)(ip >> 16 & 0xff);\
212 *c = (unsigned char)(ip >> 8 & 0xff);\
213 *d = (unsigned char)(ip & 0xff);\
215 #define OFF_ETHHEAD (sizeof(struct ether_hdr))
216 #define OFF_IPV42PROTO (offsetof(struct ipv4_hdr, next_proto_id))
217 #define OFF_IPV62PROTO (offsetof(struct ipv6_hdr, proto))
218 #define MBUF_IPV4_2PROTO(m) \
219 rte_pktmbuf_mtod_offset((m), uint8_t *, OFF_ETHHEAD + OFF_IPV42PROTO)
220 #define MBUF_IPV6_2PROTO(m) \
221 rte_pktmbuf_mtod_offset((m), uint8_t *, OFF_ETHHEAD + OFF_IPV62PROTO)
223 #define GET_CB_FIELD(in, fd, base, lim, dlm) do { \
227 val = strtoul((in), &end, (base)); \
228 if (errno != 0 || end[0] != (dlm) || val > (lim)) \
230 (fd) = (typeof(fd))val; \
235 * ACL rules should have higher priorities than route ones to ensure ACL rule
236 * always be found when input packets have multi-matches in the database.
237 * A exception case is performance measure, which can define route rules with
238 * higher priority and route rules will always be returned in each lookup.
239 * Reserve range from ACL_RULE_PRIORITY_MAX + 1 to
240 * RTE_ACL_MAX_PRIORITY for route entries in performance measure
242 #define ACL_RULE_PRIORITY_MAX 0x10000000
245 * Forward port info save in ACL lib starts from 1
246 * since ACL assume 0 is invalid.
247 * So, need add 1 when saving and minus 1 when forwarding packets.
249 #define FWD_PORT_SHIFT 1
252 * Rule and trace formats definitions.
264 struct rte_acl_field_def ipv4_defs[NUM_FIELDS_IPV4] = {
266 .type = RTE_ACL_FIELD_TYPE_BITMASK,
267 .size = sizeof(uint8_t),
268 .field_index = PROTO_FIELD_IPV4,
269 .input_index = RTE_ACL_IPV4VLAN_PROTO,
273 .type = RTE_ACL_FIELD_TYPE_MASK,
274 .size = sizeof(uint32_t),
275 .field_index = SRC_FIELD_IPV4,
276 .input_index = RTE_ACL_IPV4VLAN_SRC,
277 .offset = offsetof(struct ipv4_hdr, src_addr) -
278 offsetof(struct ipv4_hdr, next_proto_id),
281 .type = RTE_ACL_FIELD_TYPE_MASK,
282 .size = sizeof(uint32_t),
283 .field_index = DST_FIELD_IPV4,
284 .input_index = RTE_ACL_IPV4VLAN_DST,
285 .offset = offsetof(struct ipv4_hdr, dst_addr) -
286 offsetof(struct ipv4_hdr, next_proto_id),
289 .type = RTE_ACL_FIELD_TYPE_RANGE,
290 .size = sizeof(uint16_t),
291 .field_index = SRCP_FIELD_IPV4,
292 .input_index = RTE_ACL_IPV4VLAN_PORTS,
293 .offset = sizeof(struct ipv4_hdr) -
294 offsetof(struct ipv4_hdr, next_proto_id),
297 .type = RTE_ACL_FIELD_TYPE_RANGE,
298 .size = sizeof(uint16_t),
299 .field_index = DSTP_FIELD_IPV4,
300 .input_index = RTE_ACL_IPV4VLAN_PORTS,
301 .offset = sizeof(struct ipv4_hdr) -
302 offsetof(struct ipv4_hdr, next_proto_id) +
307 #define IPV6_ADDR_LEN 16
308 #define IPV6_ADDR_U16 (IPV6_ADDR_LEN / sizeof(uint16_t))
309 #define IPV6_ADDR_U32 (IPV6_ADDR_LEN / sizeof(uint32_t))
326 struct rte_acl_field_def ipv6_defs[NUM_FIELDS_IPV6] = {
328 .type = RTE_ACL_FIELD_TYPE_BITMASK,
329 .size = sizeof(uint8_t),
330 .field_index = PROTO_FIELD_IPV6,
331 .input_index = PROTO_FIELD_IPV6,
335 .type = RTE_ACL_FIELD_TYPE_MASK,
336 .size = sizeof(uint32_t),
337 .field_index = SRC1_FIELD_IPV6,
338 .input_index = SRC1_FIELD_IPV6,
339 .offset = offsetof(struct ipv6_hdr, src_addr) -
340 offsetof(struct ipv6_hdr, proto),
343 .type = RTE_ACL_FIELD_TYPE_MASK,
344 .size = sizeof(uint32_t),
345 .field_index = SRC2_FIELD_IPV6,
346 .input_index = SRC2_FIELD_IPV6,
347 .offset = offsetof(struct ipv6_hdr, src_addr) -
348 offsetof(struct ipv6_hdr, proto) + sizeof(uint32_t),
351 .type = RTE_ACL_FIELD_TYPE_MASK,
352 .size = sizeof(uint32_t),
353 .field_index = SRC3_FIELD_IPV6,
354 .input_index = SRC3_FIELD_IPV6,
355 .offset = offsetof(struct ipv6_hdr, src_addr) -
356 offsetof(struct ipv6_hdr, proto) + 2 * sizeof(uint32_t),
359 .type = RTE_ACL_FIELD_TYPE_MASK,
360 .size = sizeof(uint32_t),
361 .field_index = SRC4_FIELD_IPV6,
362 .input_index = SRC4_FIELD_IPV6,
363 .offset = offsetof(struct ipv6_hdr, src_addr) -
364 offsetof(struct ipv6_hdr, proto) + 3 * sizeof(uint32_t),
367 .type = RTE_ACL_FIELD_TYPE_MASK,
368 .size = sizeof(uint32_t),
369 .field_index = DST1_FIELD_IPV6,
370 .input_index = DST1_FIELD_IPV6,
371 .offset = offsetof(struct ipv6_hdr, dst_addr)
372 - offsetof(struct ipv6_hdr, proto),
375 .type = RTE_ACL_FIELD_TYPE_MASK,
376 .size = sizeof(uint32_t),
377 .field_index = DST2_FIELD_IPV6,
378 .input_index = DST2_FIELD_IPV6,
379 .offset = offsetof(struct ipv6_hdr, dst_addr) -
380 offsetof(struct ipv6_hdr, proto) + sizeof(uint32_t),
383 .type = RTE_ACL_FIELD_TYPE_MASK,
384 .size = sizeof(uint32_t),
385 .field_index = DST3_FIELD_IPV6,
386 .input_index = DST3_FIELD_IPV6,
387 .offset = offsetof(struct ipv6_hdr, dst_addr) -
388 offsetof(struct ipv6_hdr, proto) + 2 * sizeof(uint32_t),
391 .type = RTE_ACL_FIELD_TYPE_MASK,
392 .size = sizeof(uint32_t),
393 .field_index = DST4_FIELD_IPV6,
394 .input_index = DST4_FIELD_IPV6,
395 .offset = offsetof(struct ipv6_hdr, dst_addr) -
396 offsetof(struct ipv6_hdr, proto) + 3 * sizeof(uint32_t),
399 .type = RTE_ACL_FIELD_TYPE_RANGE,
400 .size = sizeof(uint16_t),
401 .field_index = SRCP_FIELD_IPV6,
402 .input_index = SRCP_FIELD_IPV6,
403 .offset = sizeof(struct ipv6_hdr) -
404 offsetof(struct ipv6_hdr, proto),
407 .type = RTE_ACL_FIELD_TYPE_RANGE,
408 .size = sizeof(uint16_t),
409 .field_index = DSTP_FIELD_IPV6,
410 .input_index = SRCP_FIELD_IPV6,
411 .offset = sizeof(struct ipv6_hdr) -
412 offsetof(struct ipv6_hdr, proto) + sizeof(uint16_t),
421 CB_FLD_SRC_PORT_HIGH,
424 CB_FLD_DST_PORT_HIGH,
430 RTE_ACL_RULE_DEF(acl4_rule, RTE_DIM(ipv4_defs));
431 RTE_ACL_RULE_DEF(acl6_rule, RTE_DIM(ipv6_defs));
433 struct acl_search_t {
434 const uint8_t *data_ipv4[MAX_PKT_BURST];
435 struct rte_mbuf *m_ipv4[MAX_PKT_BURST];
436 uint32_t res_ipv4[MAX_PKT_BURST];
439 const uint8_t *data_ipv6[MAX_PKT_BURST];
440 struct rte_mbuf *m_ipv6[MAX_PKT_BURST];
441 uint32_t res_ipv6[MAX_PKT_BURST];
446 char mapped[NB_SOCKETS];
447 struct rte_acl_ctx *acx_ipv4[NB_SOCKETS];
448 struct rte_acl_ctx *acx_ipv6[NB_SOCKETS];
449 #ifdef L3FWDACL_DEBUG
450 struct acl4_rule *rule_ipv4;
451 struct acl6_rule *rule_ipv6;
456 const char *rule_ipv4_name;
457 const char *rule_ipv6_name;
461 const char cb_port_delim[] = ":";
464 print_one_ipv4_rule(struct acl4_rule *rule, int extra)
466 unsigned char a, b, c, d;
468 uint32_t_to_char(rule->field[SRC_FIELD_IPV4].value.u32,
470 printf("%hhu.%hhu.%hhu.%hhu/%u ", a, b, c, d,
471 rule->field[SRC_FIELD_IPV4].mask_range.u32);
472 uint32_t_to_char(rule->field[DST_FIELD_IPV4].value.u32,
474 printf("%hhu.%hhu.%hhu.%hhu/%u ", a, b, c, d,
475 rule->field[DST_FIELD_IPV4].mask_range.u32);
476 printf("%hu : %hu %hu : %hu 0x%hhx/0x%hhx ",
477 rule->field[SRCP_FIELD_IPV4].value.u16,
478 rule->field[SRCP_FIELD_IPV4].mask_range.u16,
479 rule->field[DSTP_FIELD_IPV4].value.u16,
480 rule->field[DSTP_FIELD_IPV4].mask_range.u16,
481 rule->field[PROTO_FIELD_IPV4].value.u8,
482 rule->field[PROTO_FIELD_IPV4].mask_range.u8);
484 printf("0x%x-0x%x-0x%x ",
485 rule->data.category_mask,
487 rule->data.userdata);
491 print_one_ipv6_rule(struct acl6_rule *rule, int extra)
493 unsigned char a, b, c, d;
495 uint32_t_to_char(rule->field[SRC1_FIELD_IPV6].value.u32,
497 printf("%.2x%.2x:%.2x%.2x", a, b, c, d);
498 uint32_t_to_char(rule->field[SRC2_FIELD_IPV6].value.u32,
500 printf(":%.2x%.2x:%.2x%.2x", a, b, c, d);
501 uint32_t_to_char(rule->field[SRC3_FIELD_IPV6].value.u32,
503 printf(":%.2x%.2x:%.2x%.2x", a, b, c, d);
504 uint32_t_to_char(rule->field[SRC4_FIELD_IPV6].value.u32,
506 printf(":%.2x%.2x:%.2x%.2x/%u ", a, b, c, d,
507 rule->field[SRC1_FIELD_IPV6].mask_range.u32
508 + rule->field[SRC2_FIELD_IPV6].mask_range.u32
509 + rule->field[SRC3_FIELD_IPV6].mask_range.u32
510 + rule->field[SRC4_FIELD_IPV6].mask_range.u32);
512 uint32_t_to_char(rule->field[DST1_FIELD_IPV6].value.u32,
514 printf("%.2x%.2x:%.2x%.2x", a, b, c, d);
515 uint32_t_to_char(rule->field[DST2_FIELD_IPV6].value.u32,
517 printf(":%.2x%.2x:%.2x%.2x", a, b, c, d);
518 uint32_t_to_char(rule->field[DST3_FIELD_IPV6].value.u32,
520 printf(":%.2x%.2x:%.2x%.2x", a, b, c, d);
521 uint32_t_to_char(rule->field[DST4_FIELD_IPV6].value.u32,
523 printf(":%.2x%.2x:%.2x%.2x/%u ", a, b, c, d,
524 rule->field[DST1_FIELD_IPV6].mask_range.u32
525 + rule->field[DST2_FIELD_IPV6].mask_range.u32
526 + rule->field[DST3_FIELD_IPV6].mask_range.u32
527 + rule->field[DST4_FIELD_IPV6].mask_range.u32);
529 printf("%hu : %hu %hu : %hu 0x%hhx/0x%hhx ",
530 rule->field[SRCP_FIELD_IPV6].value.u16,
531 rule->field[SRCP_FIELD_IPV6].mask_range.u16,
532 rule->field[DSTP_FIELD_IPV6].value.u16,
533 rule->field[DSTP_FIELD_IPV6].mask_range.u16,
534 rule->field[PROTO_FIELD_IPV6].value.u8,
535 rule->field[PROTO_FIELD_IPV6].mask_range.u8);
537 printf("0x%x-0x%x-0x%x ",
538 rule->data.category_mask,
540 rule->data.userdata);
543 /* Bypass comment and empty lines */
545 is_bypass_line(char *buff)
550 if (buff[0] == COMMENT_LEAD_CHAR)
553 while (buff[i] != '\0') {
554 if (!isspace(buff[i]))
561 #ifdef L3FWDACL_DEBUG
563 dump_acl4_rule(struct rte_mbuf *m, uint32_t sig)
565 uint32_t offset = sig & ~ACL_DENY_SIGNATURE;
566 unsigned char a, b, c, d;
567 struct ipv4_hdr *ipv4_hdr = rte_pktmbuf_mtod_offset(m,
569 sizeof(struct ether_hdr));
571 uint32_t_to_char(rte_bswap32(ipv4_hdr->src_addr), &a, &b, &c, &d);
572 printf("Packet Src:%hhu.%hhu.%hhu.%hhu ", a, b, c, d);
573 uint32_t_to_char(rte_bswap32(ipv4_hdr->dst_addr), &a, &b, &c, &d);
574 printf("Dst:%hhu.%hhu.%hhu.%hhu ", a, b, c, d);
576 printf("Src port:%hu,Dst port:%hu ",
577 rte_bswap16(*(uint16_t *)(ipv4_hdr + 1)),
578 rte_bswap16(*((uint16_t *)(ipv4_hdr + 1) + 1)));
579 printf("hit ACL %d - ", offset);
581 print_one_ipv4_rule(acl_config.rule_ipv4 + offset, 1);
587 dump_acl6_rule(struct rte_mbuf *m, uint32_t sig)
590 uint32_t offset = sig & ~ACL_DENY_SIGNATURE;
591 struct ipv6_hdr *ipv6_hdr = rte_pktmbuf_mtod_offset(m,
593 sizeof(struct ether_hdr));
595 printf("Packet Src");
596 for (i = 0; i < RTE_DIM(ipv6_hdr->src_addr); i += sizeof(uint16_t))
598 ipv6_hdr->src_addr[i], ipv6_hdr->src_addr[i + 1]);
601 for (i = 0; i < RTE_DIM(ipv6_hdr->dst_addr); i += sizeof(uint16_t))
603 ipv6_hdr->dst_addr[i], ipv6_hdr->dst_addr[i + 1]);
605 printf("\nSrc port:%hu,Dst port:%hu ",
606 rte_bswap16(*(uint16_t *)(ipv6_hdr + 1)),
607 rte_bswap16(*((uint16_t *)(ipv6_hdr + 1) + 1)));
608 printf("hit ACL %d - ", offset);
610 print_one_ipv6_rule(acl_config.rule_ipv6 + offset, 1);
614 #endif /* L3FWDACL_DEBUG */
617 dump_ipv4_rules(struct acl4_rule *rule, int num, int extra)
621 for (i = 0; i < num; i++, rule++) {
622 printf("\t%d:", i + 1);
623 print_one_ipv4_rule(rule, extra);
629 dump_ipv6_rules(struct acl6_rule *rule, int num, int extra)
633 for (i = 0; i < num; i++, rule++) {
634 printf("\t%d:", i + 1);
635 print_one_ipv6_rule(rule, extra);
640 #ifdef DO_RFC_1812_CHECKS
642 prepare_one_packet(struct rte_mbuf **pkts_in, struct acl_search_t *acl,
645 struct ipv4_hdr *ipv4_hdr;
646 struct rte_mbuf *pkt = pkts_in[index];
648 int type = pkt->ol_flags & (PKT_RX_IPV4_HDR | PKT_RX_IPV6_HDR);
650 if (type == PKT_RX_IPV4_HDR) {
652 ipv4_hdr = rte_pktmbuf_mtod_offset(pkt, struct ipv4_hdr *,
653 sizeof(struct ether_hdr));
655 /* Check to make sure the packet is valid (RFC1812) */
656 if (is_valid_ipv4_pkt(ipv4_hdr, pkt->pkt_len) >= 0) {
658 /* Update time to live and header checksum */
659 --(ipv4_hdr->time_to_live);
660 ++(ipv4_hdr->hdr_checksum);
662 /* Fill acl structure */
663 acl->data_ipv4[acl->num_ipv4] = MBUF_IPV4_2PROTO(pkt);
664 acl->m_ipv4[(acl->num_ipv4)++] = pkt;
667 /* Not a valid IPv4 packet */
668 rte_pktmbuf_free(pkt);
671 } else if (type == PKT_RX_IPV6_HDR) {
673 /* Fill acl structure */
674 acl->data_ipv6[acl->num_ipv6] = MBUF_IPV6_2PROTO(pkt);
675 acl->m_ipv6[(acl->num_ipv6)++] = pkt;
678 /* Unknown type, drop the packet */
679 rte_pktmbuf_free(pkt);
685 prepare_one_packet(struct rte_mbuf **pkts_in, struct acl_search_t *acl,
688 struct rte_mbuf *pkt = pkts_in[index];
690 int type = pkt->ol_flags & (PKT_RX_IPV4_HDR | PKT_RX_IPV6_HDR);
692 if (type == PKT_RX_IPV4_HDR) {
694 /* Fill acl structure */
695 acl->data_ipv4[acl->num_ipv4] = MBUF_IPV4_2PROTO(pkt);
696 acl->m_ipv4[(acl->num_ipv4)++] = pkt;
699 } else if (type == PKT_RX_IPV6_HDR) {
701 /* Fill acl structure */
702 acl->data_ipv6[acl->num_ipv6] = MBUF_IPV6_2PROTO(pkt);
703 acl->m_ipv6[(acl->num_ipv6)++] = pkt;
705 /* Unknown type, drop the packet */
706 rte_pktmbuf_free(pkt);
709 #endif /* DO_RFC_1812_CHECKS */
712 prepare_acl_parameter(struct rte_mbuf **pkts_in, struct acl_search_t *acl,
720 /* Prefetch first packets */
721 for (i = 0; i < PREFETCH_OFFSET && i < nb_rx; i++) {
722 rte_prefetch0(rte_pktmbuf_mtod(
723 pkts_in[i], void *));
726 for (i = 0; i < (nb_rx - PREFETCH_OFFSET); i++) {
727 rte_prefetch0(rte_pktmbuf_mtod(pkts_in[
728 i + PREFETCH_OFFSET], void *));
729 prepare_one_packet(pkts_in, acl, i);
732 /* Process left packets */
733 for (; i < nb_rx; i++)
734 prepare_one_packet(pkts_in, acl, i);
738 send_one_packet(struct rte_mbuf *m, uint32_t res)
740 if (likely((res & ACL_DENY_SIGNATURE) == 0 && res != 0)) {
741 /* forward packets */
742 send_single_packet(m,
743 (uint8_t)(res - FWD_PORT_SHIFT));
745 /* in the ACL list, drop it */
746 #ifdef L3FWDACL_DEBUG
747 if ((res & ACL_DENY_SIGNATURE) != 0) {
748 if (m->ol_flags & PKT_RX_IPV4_HDR)
749 dump_acl4_rule(m, res);
751 dump_acl6_rule(m, res);
761 send_packets(struct rte_mbuf **m, uint32_t *res, int num)
765 /* Prefetch first packets */
766 for (i = 0; i < PREFETCH_OFFSET && i < num; i++) {
767 rte_prefetch0(rte_pktmbuf_mtod(
771 for (i = 0; i < (num - PREFETCH_OFFSET); i++) {
772 rte_prefetch0(rte_pktmbuf_mtod(m[
773 i + PREFETCH_OFFSET], void *));
774 send_one_packet(m[i], res[i]);
777 /* Process left packets */
779 send_one_packet(m[i], res[i]);
783 * Parses IPV6 address, exepcts the following format:
784 * XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX:XXXX (where X - is a hexedecimal digit).
787 parse_ipv6_addr(const char *in, const char **end, uint32_t v[IPV6_ADDR_U32],
790 uint32_t addr[IPV6_ADDR_U16];
792 GET_CB_FIELD(in, addr[0], 16, UINT16_MAX, ':');
793 GET_CB_FIELD(in, addr[1], 16, UINT16_MAX, ':');
794 GET_CB_FIELD(in, addr[2], 16, UINT16_MAX, ':');
795 GET_CB_FIELD(in, addr[3], 16, UINT16_MAX, ':');
796 GET_CB_FIELD(in, addr[4], 16, UINT16_MAX, ':');
797 GET_CB_FIELD(in, addr[5], 16, UINT16_MAX, ':');
798 GET_CB_FIELD(in, addr[6], 16, UINT16_MAX, ':');
799 GET_CB_FIELD(in, addr[7], 16, UINT16_MAX, dlm);
803 v[0] = (addr[0] << 16) + addr[1];
804 v[1] = (addr[2] << 16) + addr[3];
805 v[2] = (addr[4] << 16) + addr[5];
806 v[3] = (addr[6] << 16) + addr[7];
812 parse_ipv6_net(const char *in, struct rte_acl_field field[4])
817 const uint32_t nbu32 = sizeof(uint32_t) * CHAR_BIT;
820 rc = parse_ipv6_addr(in, &mp, v, '/');
825 GET_CB_FIELD(mp, m, 0, CHAR_BIT * sizeof(v), 0);
827 /* put all together. */
828 for (i = 0; i != RTE_DIM(v); i++) {
829 if (m >= (i + 1) * nbu32)
830 field[i].mask_range.u32 = nbu32;
832 field[i].mask_range.u32 = m > (i * nbu32) ?
835 field[i].value.u32 = v[i];
842 parse_cb_ipv6_rule(char *str, struct rte_acl_rule *v, int has_userdata)
845 char *s, *sp, *in[CB_FLD_NUM];
846 static const char *dlm = " \t\n";
847 int dim = has_userdata ? CB_FLD_NUM : CB_FLD_USERDATA;
850 for (i = 0; i != dim; i++, s = NULL) {
851 in[i] = strtok_r(s, dlm, &sp);
856 rc = parse_ipv6_net(in[CB_FLD_SRC_ADDR], v->field + SRC1_FIELD_IPV6);
858 acl_log("failed to read source address/mask: %s\n",
859 in[CB_FLD_SRC_ADDR]);
863 rc = parse_ipv6_net(in[CB_FLD_DST_ADDR], v->field + DST1_FIELD_IPV6);
865 acl_log("failed to read destination address/mask: %s\n",
866 in[CB_FLD_DST_ADDR]);
871 GET_CB_FIELD(in[CB_FLD_SRC_PORT_LOW],
872 v->field[SRCP_FIELD_IPV6].value.u16,
874 GET_CB_FIELD(in[CB_FLD_SRC_PORT_HIGH],
875 v->field[SRCP_FIELD_IPV6].mask_range.u16,
878 if (strncmp(in[CB_FLD_SRC_PORT_DLM], cb_port_delim,
879 sizeof(cb_port_delim)) != 0)
882 /* destination port. */
883 GET_CB_FIELD(in[CB_FLD_DST_PORT_LOW],
884 v->field[DSTP_FIELD_IPV6].value.u16,
886 GET_CB_FIELD(in[CB_FLD_DST_PORT_HIGH],
887 v->field[DSTP_FIELD_IPV6].mask_range.u16,
890 if (strncmp(in[CB_FLD_DST_PORT_DLM], cb_port_delim,
891 sizeof(cb_port_delim)) != 0)
894 if (v->field[SRCP_FIELD_IPV6].mask_range.u16
895 < v->field[SRCP_FIELD_IPV6].value.u16
896 || v->field[DSTP_FIELD_IPV6].mask_range.u16
897 < v->field[DSTP_FIELD_IPV6].value.u16)
900 GET_CB_FIELD(in[CB_FLD_PROTO], v->field[PROTO_FIELD_IPV6].value.u8,
902 GET_CB_FIELD(in[CB_FLD_PROTO], v->field[PROTO_FIELD_IPV6].mask_range.u8,
906 GET_CB_FIELD(in[CB_FLD_USERDATA], v->data.userdata,
913 * Parse ClassBench rules file.
915 * '@'<src_ipv4_addr>'/'<masklen> <space> \
916 * <dst_ipv4_addr>'/'<masklen> <space> \
917 * <src_port_low> <space> ":" <src_port_high> <space> \
918 * <dst_port_low> <space> ":" <dst_port_high> <space> \
922 parse_ipv4_net(const char *in, uint32_t *addr, uint32_t *mask_len)
924 uint8_t a, b, c, d, m;
926 GET_CB_FIELD(in, a, 0, UINT8_MAX, '.');
927 GET_CB_FIELD(in, b, 0, UINT8_MAX, '.');
928 GET_CB_FIELD(in, c, 0, UINT8_MAX, '.');
929 GET_CB_FIELD(in, d, 0, UINT8_MAX, '/');
930 GET_CB_FIELD(in, m, 0, sizeof(uint32_t) * CHAR_BIT, 0);
932 addr[0] = IPv4(a, b, c, d);
939 parse_cb_ipv4vlan_rule(char *str, struct rte_acl_rule *v, int has_userdata)
942 char *s, *sp, *in[CB_FLD_NUM];
943 static const char *dlm = " \t\n";
944 int dim = has_userdata ? CB_FLD_NUM : CB_FLD_USERDATA;
947 for (i = 0; i != dim; i++, s = NULL) {
948 in[i] = strtok_r(s, dlm, &sp);
953 rc = parse_ipv4_net(in[CB_FLD_SRC_ADDR],
954 &v->field[SRC_FIELD_IPV4].value.u32,
955 &v->field[SRC_FIELD_IPV4].mask_range.u32);
957 acl_log("failed to read source address/mask: %s\n",
958 in[CB_FLD_SRC_ADDR]);
962 rc = parse_ipv4_net(in[CB_FLD_DST_ADDR],
963 &v->field[DST_FIELD_IPV4].value.u32,
964 &v->field[DST_FIELD_IPV4].mask_range.u32);
966 acl_log("failed to read destination address/mask: %s\n",
967 in[CB_FLD_DST_ADDR]);
971 GET_CB_FIELD(in[CB_FLD_SRC_PORT_LOW],
972 v->field[SRCP_FIELD_IPV4].value.u16,
974 GET_CB_FIELD(in[CB_FLD_SRC_PORT_HIGH],
975 v->field[SRCP_FIELD_IPV4].mask_range.u16,
978 if (strncmp(in[CB_FLD_SRC_PORT_DLM], cb_port_delim,
979 sizeof(cb_port_delim)) != 0)
982 GET_CB_FIELD(in[CB_FLD_DST_PORT_LOW],
983 v->field[DSTP_FIELD_IPV4].value.u16,
985 GET_CB_FIELD(in[CB_FLD_DST_PORT_HIGH],
986 v->field[DSTP_FIELD_IPV4].mask_range.u16,
989 if (strncmp(in[CB_FLD_DST_PORT_DLM], cb_port_delim,
990 sizeof(cb_port_delim)) != 0)
993 if (v->field[SRCP_FIELD_IPV4].mask_range.u16
994 < v->field[SRCP_FIELD_IPV4].value.u16
995 || v->field[DSTP_FIELD_IPV4].mask_range.u16
996 < v->field[DSTP_FIELD_IPV4].value.u16)
999 GET_CB_FIELD(in[CB_FLD_PROTO], v->field[PROTO_FIELD_IPV4].value.u8,
1001 GET_CB_FIELD(in[CB_FLD_PROTO], v->field[PROTO_FIELD_IPV4].mask_range.u8,
1005 GET_CB_FIELD(in[CB_FLD_USERDATA], v->data.userdata, 0,
1012 add_rules(const char *rule_path,
1013 struct rte_acl_rule **proute_base,
1014 unsigned int *proute_num,
1015 struct rte_acl_rule **pacl_base,
1016 unsigned int *pacl_num, uint32_t rule_size,
1017 int (*parser)(char *, struct rte_acl_rule*, int))
1019 uint8_t *acl_rules, *route_rules;
1020 struct rte_acl_rule *next;
1021 unsigned int acl_num = 0, route_num = 0, total_num = 0;
1022 unsigned int acl_cnt = 0, route_cnt = 0;
1023 char buff[LINE_MAX];
1024 FILE *fh = fopen(rule_path, "rb");
1028 rte_exit(EXIT_FAILURE, "%s: Open %s failed\n", __func__,
1031 while ((fgets(buff, LINE_MAX, fh) != NULL)) {
1032 if (buff[0] == ROUTE_LEAD_CHAR)
1034 else if (buff[0] == ACL_LEAD_CHAR)
1039 rte_exit(EXIT_FAILURE, "Not find any route entries in %s!\n",
1042 fseek(fh, 0, SEEK_SET);
1044 acl_rules = calloc(acl_num, rule_size);
1046 if (NULL == acl_rules)
1047 rte_exit(EXIT_FAILURE, "%s: failed to malloc memory\n",
1050 route_rules = calloc(route_num, rule_size);
1052 if (NULL == route_rules)
1053 rte_exit(EXIT_FAILURE, "%s: failed to malloc memory\n",
1057 while (fgets(buff, LINE_MAX, fh) != NULL) {
1060 if (is_bypass_line(buff))
1066 if (s == ROUTE_LEAD_CHAR)
1067 next = (struct rte_acl_rule *)(route_rules +
1068 route_cnt * rule_size);
1071 else if (s == ACL_LEAD_CHAR)
1072 next = (struct rte_acl_rule *)(acl_rules +
1073 acl_cnt * rule_size);
1077 rte_exit(EXIT_FAILURE,
1078 "%s Line %u: should start with leading "
1080 rule_path, i, ROUTE_LEAD_CHAR, ACL_LEAD_CHAR);
1082 if (parser(buff + 1, next, s == ROUTE_LEAD_CHAR) != 0)
1083 rte_exit(EXIT_FAILURE,
1084 "%s Line %u: parse rules error\n",
1087 if (s == ROUTE_LEAD_CHAR) {
1088 /* Check the forwarding port number */
1089 if ((enabled_port_mask & (1 << next->data.userdata)) ==
1091 rte_exit(EXIT_FAILURE,
1092 "%s Line %u: fwd number illegal:%u\n",
1093 rule_path, i, next->data.userdata);
1094 next->data.userdata += FWD_PORT_SHIFT;
1097 next->data.userdata = ACL_DENY_SIGNATURE + acl_cnt;
1101 next->data.priority = RTE_ACL_MAX_PRIORITY - total_num;
1102 next->data.category_mask = -1;
1108 *pacl_base = (struct rte_acl_rule *)acl_rules;
1109 *pacl_num = acl_num;
1110 *proute_base = (struct rte_acl_rule *)route_rules;
1111 *proute_num = route_cnt;
1117 dump_acl_config(void)
1119 printf("ACL option are:\n");
1120 printf(OPTION_RULE_IPV4": %s\n", parm_config.rule_ipv4_name);
1121 printf(OPTION_RULE_IPV6": %s\n", parm_config.rule_ipv6_name);
1122 printf(OPTION_SCALAR": %d\n", parm_config.scalar);
1126 check_acl_config(void)
1128 if (parm_config.rule_ipv4_name == NULL) {
1129 acl_log("ACL IPv4 rule file not specified\n");
1131 } else if (parm_config.rule_ipv6_name == NULL) {
1132 acl_log("ACL IPv6 rule file not specified\n");
1139 static struct rte_acl_ctx*
1140 setup_acl(struct rte_acl_rule *route_base,
1141 struct rte_acl_rule *acl_base, unsigned int route_num,
1142 unsigned int acl_num, int ipv6, int socketid)
1144 char name[PATH_MAX];
1145 struct rte_acl_param acl_param;
1146 struct rte_acl_config acl_build_param;
1147 struct rte_acl_ctx *context;
1148 int dim = ipv6 ? RTE_DIM(ipv6_defs) : RTE_DIM(ipv4_defs);
1150 /* Create ACL contexts */
1151 snprintf(name, sizeof(name), "%s%d",
1152 ipv6 ? L3FWD_ACL_IPV6_NAME : L3FWD_ACL_IPV4_NAME,
1155 acl_param.name = name;
1156 acl_param.socket_id = socketid;
1157 acl_param.rule_size = RTE_ACL_RULE_SZ(dim);
1158 acl_param.max_rule_num = MAX_ACL_RULE_NUM;
1160 if ((context = rte_acl_create(&acl_param)) == NULL)
1161 rte_exit(EXIT_FAILURE, "Failed to create ACL context\n");
1163 if (parm_config.scalar && rte_acl_set_ctx_classify(context,
1164 RTE_ACL_CLASSIFY_SCALAR) != 0)
1165 rte_exit(EXIT_FAILURE,
1166 "Failed to setup classify method for ACL context\n");
1168 if (rte_acl_add_rules(context, route_base, route_num) < 0)
1169 rte_exit(EXIT_FAILURE, "add rules failed\n");
1171 if (rte_acl_add_rules(context, acl_base, acl_num) < 0)
1172 rte_exit(EXIT_FAILURE, "add rules failed\n");
1174 /* Perform builds */
1175 memset(&acl_build_param, 0, sizeof(acl_build_param));
1177 acl_build_param.num_categories = DEFAULT_MAX_CATEGORIES;
1178 acl_build_param.num_fields = dim;
1179 memcpy(&acl_build_param.defs, ipv6 ? ipv6_defs : ipv4_defs,
1180 ipv6 ? sizeof(ipv6_defs) : sizeof(ipv4_defs));
1182 if (rte_acl_build(context, &acl_build_param) != 0)
1183 rte_exit(EXIT_FAILURE, "Failed to build ACL trie\n");
1185 rte_acl_dump(context);
1196 struct rte_acl_rule *acl_base_ipv4, *route_base_ipv4,
1197 *acl_base_ipv6, *route_base_ipv6;
1198 unsigned int acl_num_ipv4 = 0, route_num_ipv4 = 0,
1199 acl_num_ipv6 = 0, route_num_ipv6 = 0;
1201 if (check_acl_config() != 0)
1202 rte_exit(EXIT_FAILURE, "Failed to get valid ACL options\n");
1206 /* Load rules from the input file */
1207 if (add_rules(parm_config.rule_ipv4_name, &route_base_ipv4,
1208 &route_num_ipv4, &acl_base_ipv4, &acl_num_ipv4,
1209 sizeof(struct acl4_rule), &parse_cb_ipv4vlan_rule) < 0)
1210 rte_exit(EXIT_FAILURE, "Failed to add rules\n");
1212 acl_log("IPv4 Route entries %u:\n", route_num_ipv4);
1213 dump_ipv4_rules((struct acl4_rule *)route_base_ipv4, route_num_ipv4, 1);
1215 acl_log("IPv4 ACL entries %u:\n", acl_num_ipv4);
1216 dump_ipv4_rules((struct acl4_rule *)acl_base_ipv4, acl_num_ipv4, 1);
1218 if (add_rules(parm_config.rule_ipv6_name, &route_base_ipv6,
1220 &acl_base_ipv6, &acl_num_ipv6,
1221 sizeof(struct acl6_rule), &parse_cb_ipv6_rule) < 0)
1222 rte_exit(EXIT_FAILURE, "Failed to add rules\n");
1224 acl_log("IPv6 Route entries %u:\n", route_num_ipv6);
1225 dump_ipv6_rules((struct acl6_rule *)route_base_ipv6, route_num_ipv6, 1);
1227 acl_log("IPv6 ACL entries %u:\n", acl_num_ipv6);
1228 dump_ipv6_rules((struct acl6_rule *)acl_base_ipv6, acl_num_ipv6, 1);
1230 memset(&acl_config, 0, sizeof(acl_config));
1232 /* Check sockets a context should be created on */
1234 acl_config.mapped[0] = 1;
1236 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
1237 if (rte_lcore_is_enabled(lcore_id) == 0)
1240 socketid = rte_lcore_to_socket_id(lcore_id);
1241 if (socketid >= NB_SOCKETS) {
1242 acl_log("Socket %d of lcore %u is out "
1244 socketid, lcore_id, NB_SOCKETS);
1245 free(route_base_ipv4);
1246 free(route_base_ipv6);
1247 free(acl_base_ipv4);
1248 free(acl_base_ipv6);
1252 acl_config.mapped[socketid] = 1;
1256 for (i = 0; i < NB_SOCKETS; i++) {
1257 if (acl_config.mapped[i]) {
1258 acl_config.acx_ipv4[i] = setup_acl(route_base_ipv4,
1259 acl_base_ipv4, route_num_ipv4, acl_num_ipv4,
1262 acl_config.acx_ipv6[i] = setup_acl(route_base_ipv6,
1263 acl_base_ipv6, route_num_ipv6, acl_num_ipv6,
1268 free(route_base_ipv4);
1269 free(route_base_ipv6);
1271 #ifdef L3FWDACL_DEBUG
1272 acl_config.rule_ipv4 = (struct acl4_rule *)acl_base_ipv4;
1273 acl_config.rule_ipv6 = (struct acl6_rule *)acl_base_ipv6;
1275 free(acl_base_ipv4);
1276 free(acl_base_ipv6);
1282 /***********************end of ACL part******************************/
1285 uint16_t n_rx_queue;
1286 struct lcore_rx_queue rx_queue_list[MAX_RX_QUEUE_PER_LCORE];
1287 uint16_t tx_queue_id[RTE_MAX_ETHPORTS];
1288 struct mbuf_table tx_mbufs[RTE_MAX_ETHPORTS];
1289 } __rte_cache_aligned;
1291 static struct lcore_conf lcore_conf[RTE_MAX_LCORE];
1293 /* Send burst of packets on an output interface */
1295 send_burst(struct lcore_conf *qconf, uint16_t n, uint8_t port)
1297 struct rte_mbuf **m_table;
1301 queueid = qconf->tx_queue_id[port];
1302 m_table = (struct rte_mbuf **)qconf->tx_mbufs[port].m_table;
1304 ret = rte_eth_tx_burst(port, queueid, m_table, n);
1305 if (unlikely(ret < n)) {
1307 rte_pktmbuf_free(m_table[ret]);
1308 } while (++ret < n);
1314 /* Enqueue a single packet, and send burst if queue is filled */
1316 send_single_packet(struct rte_mbuf *m, uint8_t port)
1320 struct lcore_conf *qconf;
1322 lcore_id = rte_lcore_id();
1324 qconf = &lcore_conf[lcore_id];
1325 len = qconf->tx_mbufs[port].len;
1326 qconf->tx_mbufs[port].m_table[len] = m;
1329 /* enough pkts to be sent */
1330 if (unlikely(len == MAX_PKT_BURST)) {
1331 send_burst(qconf, MAX_PKT_BURST, port);
1335 qconf->tx_mbufs[port].len = len;
1339 #ifdef DO_RFC_1812_CHECKS
1341 is_valid_ipv4_pkt(struct ipv4_hdr *pkt, uint32_t link_len)
1343 /* From http://www.rfc-editor.org/rfc/rfc1812.txt section 5.2.2 */
1345 * 1. The packet length reported by the Link Layer must be large
1346 * enough to hold the minimum length legal IP datagram (20 bytes).
1348 if (link_len < sizeof(struct ipv4_hdr))
1351 /* 2. The IP checksum must be correct. */
1352 /* this is checked in H/W */
1355 * 3. The IP version number must be 4. If the version number is not 4
1356 * then the packet may be another version of IP, such as IPng or
1359 if (((pkt->version_ihl) >> 4) != 4)
1362 * 4. The IP header length field must be large enough to hold the
1363 * minimum length legal IP datagram (20 bytes = 5 words).
1365 if ((pkt->version_ihl & 0xf) < 5)
1369 * 5. The IP total length field must be large enough to hold the IP
1370 * datagram header, whose length is specified in the IP header length
1373 if (rte_cpu_to_be_16(pkt->total_length) < sizeof(struct ipv4_hdr))
1380 /* main processing loop */
1382 main_loop(__attribute__((unused)) void *dummy)
1384 struct rte_mbuf *pkts_burst[MAX_PKT_BURST];
1386 uint64_t prev_tsc, diff_tsc, cur_tsc;
1388 uint8_t portid, queueid;
1389 struct lcore_conf *qconf;
1391 const uint64_t drain_tsc = (rte_get_tsc_hz() + US_PER_S - 1)
1392 / US_PER_S * BURST_TX_DRAIN_US;
1395 lcore_id = rte_lcore_id();
1396 qconf = &lcore_conf[lcore_id];
1397 socketid = rte_lcore_to_socket_id(lcore_id);
1399 if (qconf->n_rx_queue == 0) {
1400 RTE_LOG(INFO, L3FWD, "lcore %u has nothing to do\n", lcore_id);
1404 RTE_LOG(INFO, L3FWD, "entering main loop on lcore %u\n", lcore_id);
1406 for (i = 0; i < qconf->n_rx_queue; i++) {
1408 portid = qconf->rx_queue_list[i].port_id;
1409 queueid = qconf->rx_queue_list[i].queue_id;
1410 RTE_LOG(INFO, L3FWD,
1411 " -- lcoreid=%u portid=%hhu rxqueueid=%hhu\n",
1412 lcore_id, portid, queueid);
1417 cur_tsc = rte_rdtsc();
1420 * TX burst queue drain
1422 diff_tsc = cur_tsc - prev_tsc;
1423 if (unlikely(diff_tsc > drain_tsc)) {
1426 * This could be optimized (use queueid instead of
1427 * portid), but it is not called so often
1429 for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++) {
1430 if (qconf->tx_mbufs[portid].len == 0)
1432 send_burst(&lcore_conf[lcore_id],
1433 qconf->tx_mbufs[portid].len,
1435 qconf->tx_mbufs[portid].len = 0;
1442 * Read packet from RX queues
1444 for (i = 0; i < qconf->n_rx_queue; ++i) {
1446 portid = qconf->rx_queue_list[i].port_id;
1447 queueid = qconf->rx_queue_list[i].queue_id;
1448 nb_rx = rte_eth_rx_burst(portid, queueid,
1449 pkts_burst, MAX_PKT_BURST);
1452 struct acl_search_t acl_search;
1454 prepare_acl_parameter(pkts_burst, &acl_search,
1457 if (acl_search.num_ipv4) {
1459 acl_config.acx_ipv4[socketid],
1460 acl_search.data_ipv4,
1461 acl_search.res_ipv4,
1462 acl_search.num_ipv4,
1463 DEFAULT_MAX_CATEGORIES);
1465 send_packets(acl_search.m_ipv4,
1466 acl_search.res_ipv4,
1467 acl_search.num_ipv4);
1470 if (acl_search.num_ipv6) {
1472 acl_config.acx_ipv6[socketid],
1473 acl_search.data_ipv6,
1474 acl_search.res_ipv6,
1475 acl_search.num_ipv6,
1476 DEFAULT_MAX_CATEGORIES);
1478 send_packets(acl_search.m_ipv6,
1479 acl_search.res_ipv6,
1480 acl_search.num_ipv6);
1488 check_lcore_params(void)
1490 uint8_t queue, lcore;
1494 for (i = 0; i < nb_lcore_params; ++i) {
1495 queue = lcore_params[i].queue_id;
1496 if (queue >= MAX_RX_QUEUE_PER_PORT) {
1497 printf("invalid queue number: %hhu\n", queue);
1500 lcore = lcore_params[i].lcore_id;
1501 if (!rte_lcore_is_enabled(lcore)) {
1502 printf("error: lcore %hhu is not enabled in "
1503 "lcore mask\n", lcore);
1506 socketid = rte_lcore_to_socket_id(lcore);
1507 if (socketid != 0 && numa_on == 0) {
1508 printf("warning: lcore %hhu is on socket %d "
1517 check_port_config(const unsigned nb_ports)
1522 for (i = 0; i < nb_lcore_params; ++i) {
1523 portid = lcore_params[i].port_id;
1525 if ((enabled_port_mask & (1 << portid)) == 0) {
1526 printf("port %u is not enabled in port mask\n", portid);
1529 if (portid >= nb_ports) {
1530 printf("port %u is not present on the board\n", portid);
1538 get_port_n_rx_queues(const uint8_t port)
1543 for (i = 0; i < nb_lcore_params; ++i) {
1544 if (lcore_params[i].port_id == port &&
1545 lcore_params[i].queue_id > queue)
1546 queue = lcore_params[i].queue_id;
1548 return (uint8_t)(++queue);
1552 init_lcore_rx_queues(void)
1554 uint16_t i, nb_rx_queue;
1557 for (i = 0; i < nb_lcore_params; ++i) {
1558 lcore = lcore_params[i].lcore_id;
1559 nb_rx_queue = lcore_conf[lcore].n_rx_queue;
1560 if (nb_rx_queue >= MAX_RX_QUEUE_PER_LCORE) {
1561 printf("error: too many queues (%u) for lcore: %u\n",
1562 (unsigned)nb_rx_queue + 1, (unsigned)lcore);
1565 lcore_conf[lcore].rx_queue_list[nb_rx_queue].port_id =
1566 lcore_params[i].port_id;
1567 lcore_conf[lcore].rx_queue_list[nb_rx_queue].queue_id =
1568 lcore_params[i].queue_id;
1569 lcore_conf[lcore].n_rx_queue++;
1577 print_usage(const char *prgname)
1579 printf("%s [EAL options] -- -p PORTMASK -P"
1580 "--"OPTION_RULE_IPV4"=FILE"
1581 "--"OPTION_RULE_IPV6"=FILE"
1582 " [--"OPTION_CONFIG" (port,queue,lcore)[,(port,queue,lcore]]"
1583 " [--"OPTION_ENBJMO" [--max-pkt-len PKTLEN]]\n"
1584 " -p PORTMASK: hexadecimal bitmask of ports to configure\n"
1585 " -P : enable promiscuous mode\n"
1586 " --"OPTION_CONFIG": (port,queue,lcore): "
1587 "rx queues configuration\n"
1588 " --"OPTION_NONUMA": optional, disable numa awareness\n"
1589 " --"OPTION_ENBJMO": enable jumbo frame"
1590 " which max packet len is PKTLEN in decimal (64-9600)\n"
1591 " --"OPTION_RULE_IPV4"=FILE: specify the ipv4 rules entries "
1593 "Each rule occupy one line. "
1594 "2 kinds of rules are supported. "
1595 "One is ACL entry at while line leads with character '%c', "
1596 "another is route entry at while line leads with "
1598 " --"OPTION_RULE_IPV6"=FILE: specify the ipv6 rules "
1600 " --"OPTION_SCALAR": Use scalar function to do lookup\n",
1601 prgname, ACL_LEAD_CHAR, ROUTE_LEAD_CHAR);
1605 parse_max_pkt_len(const char *pktlen)
1610 /* parse decimal string */
1611 len = strtoul(pktlen, &end, 10);
1612 if ((pktlen[0] == '\0') || (end == NULL) || (*end != '\0'))
1622 parse_portmask(const char *portmask)
1627 /* parse hexadecimal string */
1628 pm = strtoul(portmask, &end, 16);
1629 if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
1639 parse_config(const char *q_arg)
1642 const char *p, *p0 = q_arg;
1650 unsigned long int_fld[_NUM_FLD];
1651 char *str_fld[_NUM_FLD];
1655 nb_lcore_params = 0;
1657 while ((p = strchr(p0, '(')) != NULL) {
1659 if ((p0 = strchr(p, ')')) == NULL)
1663 if (size >= sizeof(s))
1666 snprintf(s, sizeof(s), "%.*s", size, p);
1667 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') !=
1670 for (i = 0; i < _NUM_FLD; i++) {
1672 int_fld[i] = strtoul(str_fld[i], &end, 0);
1673 if (errno != 0 || end == str_fld[i] || int_fld[i] > 255)
1676 if (nb_lcore_params >= MAX_LCORE_PARAMS) {
1677 printf("exceeded max number of lcore params: %hu\n",
1681 lcore_params_array[nb_lcore_params].port_id =
1682 (uint8_t)int_fld[FLD_PORT];
1683 lcore_params_array[nb_lcore_params].queue_id =
1684 (uint8_t)int_fld[FLD_QUEUE];
1685 lcore_params_array[nb_lcore_params].lcore_id =
1686 (uint8_t)int_fld[FLD_LCORE];
1689 lcore_params = lcore_params_array;
1693 /* Parse the argument given in the command line of the application */
1695 parse_args(int argc, char **argv)
1700 char *prgname = argv[0];
1701 static struct option lgopts[] = {
1702 {OPTION_CONFIG, 1, 0, 0},
1703 {OPTION_NONUMA, 0, 0, 0},
1704 {OPTION_ENBJMO, 0, 0, 0},
1705 {OPTION_RULE_IPV4, 1, 0, 0},
1706 {OPTION_RULE_IPV6, 1, 0, 0},
1707 {OPTION_SCALAR, 0, 0, 0},
1713 while ((opt = getopt_long(argc, argvopt, "p:P",
1714 lgopts, &option_index)) != EOF) {
1719 enabled_port_mask = parse_portmask(optarg);
1720 if (enabled_port_mask == 0) {
1721 printf("invalid portmask\n");
1722 print_usage(prgname);
1727 printf("Promiscuous mode selected\n");
1733 if (!strncmp(lgopts[option_index].name,
1735 sizeof(OPTION_CONFIG))) {
1736 ret = parse_config(optarg);
1738 printf("invalid config\n");
1739 print_usage(prgname);
1744 if (!strncmp(lgopts[option_index].name,
1746 sizeof(OPTION_NONUMA))) {
1747 printf("numa is disabled\n");
1751 if (!strncmp(lgopts[option_index].name,
1752 OPTION_ENBJMO, sizeof(OPTION_ENBJMO))) {
1753 struct option lenopts = {
1760 printf("jumbo frame is enabled\n");
1761 port_conf.rxmode.jumbo_frame = 1;
1764 * if no max-pkt-len set, then use the
1765 * default value ETHER_MAX_LEN
1767 if (0 == getopt_long(argc, argvopt, "",
1768 &lenopts, &option_index)) {
1769 ret = parse_max_pkt_len(optarg);
1771 (ret > MAX_JUMBO_PKT_LEN)) {
1772 printf("invalid packet "
1774 print_usage(prgname);
1777 port_conf.rxmode.max_rx_pkt_len = ret;
1779 printf("set jumbo frame max packet length "
1782 port_conf.rxmode.max_rx_pkt_len);
1785 if (!strncmp(lgopts[option_index].name,
1787 sizeof(OPTION_RULE_IPV4)))
1788 parm_config.rule_ipv4_name = optarg;
1790 if (!strncmp(lgopts[option_index].name,
1792 sizeof(OPTION_RULE_IPV6))) {
1793 parm_config.rule_ipv6_name = optarg;
1796 if (!strncmp(lgopts[option_index].name,
1797 OPTION_SCALAR, sizeof(OPTION_SCALAR)))
1798 parm_config.scalar = 1;
1804 print_usage(prgname);
1810 argv[optind-1] = prgname;
1813 optind = 0; /* reset getopt lib */
1818 print_ethaddr(const char *name, const struct ether_addr *eth_addr)
1820 char buf[ETHER_ADDR_FMT_SIZE];
1821 ether_format_addr(buf, ETHER_ADDR_FMT_SIZE, eth_addr);
1822 printf("%s%s", name, buf);
1826 init_mem(unsigned nb_mbuf)
1832 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
1833 if (rte_lcore_is_enabled(lcore_id) == 0)
1837 socketid = rte_lcore_to_socket_id(lcore_id);
1841 if (socketid >= NB_SOCKETS) {
1842 rte_exit(EXIT_FAILURE,
1843 "Socket %d of lcore %u is out of range %d\n",
1844 socketid, lcore_id, NB_SOCKETS);
1846 if (pktmbuf_pool[socketid] == NULL) {
1847 snprintf(s, sizeof(s), "mbuf_pool_%d", socketid);
1848 pktmbuf_pool[socketid] =
1849 rte_pktmbuf_pool_create(s, nb_mbuf,
1850 MEMPOOL_CACHE_SIZE, 0,
1851 RTE_MBUF_DEFAULT_BUF_SIZE,
1853 if (pktmbuf_pool[socketid] == NULL)
1854 rte_exit(EXIT_FAILURE,
1855 "Cannot init mbuf pool on socket %d\n",
1858 printf("Allocated mbuf pool on socket %d\n",
1865 /* Check the link status of all ports in up to 9s, and print them finally */
1867 check_all_ports_link_status(uint8_t port_num, uint32_t port_mask)
1869 #define CHECK_INTERVAL 100 /* 100ms */
1870 #define MAX_CHECK_TIME 90 /* 9s (90 * 100ms) in total */
1871 uint8_t portid, count, all_ports_up, print_flag = 0;
1872 struct rte_eth_link link;
1874 printf("\nChecking link status");
1876 for (count = 0; count <= MAX_CHECK_TIME; count++) {
1878 for (portid = 0; portid < port_num; portid++) {
1879 if ((port_mask & (1 << portid)) == 0)
1881 memset(&link, 0, sizeof(link));
1882 rte_eth_link_get_nowait(portid, &link);
1883 /* print link status if flag set */
1884 if (print_flag == 1) {
1885 if (link.link_status)
1886 printf("Port %d Link Up - speed %u "
1887 "Mbps - %s\n", (uint8_t)portid,
1888 (unsigned)link.link_speed,
1889 (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
1890 ("full-duplex") : ("half-duplex\n"));
1892 printf("Port %d Link Down\n",
1896 /* clear all_ports_up flag if any link down */
1897 if (link.link_status == 0) {
1902 /* after finally printing all link status, get out */
1903 if (print_flag == 1)
1906 if (all_ports_up == 0) {
1909 rte_delay_ms(CHECK_INTERVAL);
1912 /* set the print_flag if all ports up or timeout */
1913 if (all_ports_up == 1 || count == (MAX_CHECK_TIME - 1)) {
1921 main(int argc, char **argv)
1923 struct lcore_conf *qconf;
1924 struct rte_eth_dev_info dev_info;
1925 struct rte_eth_txconf *txconf;
1930 uint32_t n_tx_queue, nb_lcores;
1931 uint8_t portid, nb_rx_queue, queue, socketid;
1934 ret = rte_eal_init(argc, argv);
1936 rte_exit(EXIT_FAILURE, "Invalid EAL parameters\n");
1940 /* parse application arguments (after the EAL ones) */
1941 ret = parse_args(argc, argv);
1943 rte_exit(EXIT_FAILURE, "Invalid L3FWD parameters\n");
1945 if (check_lcore_params() < 0)
1946 rte_exit(EXIT_FAILURE, "check_lcore_params failed\n");
1948 ret = init_lcore_rx_queues();
1950 rte_exit(EXIT_FAILURE, "init_lcore_rx_queues failed\n");
1952 nb_ports = rte_eth_dev_count();
1953 if (nb_ports > RTE_MAX_ETHPORTS)
1954 nb_ports = RTE_MAX_ETHPORTS;
1956 if (check_port_config(nb_ports) < 0)
1957 rte_exit(EXIT_FAILURE, "check_port_config failed\n");
1959 /* Add ACL rules and route entries, build trie */
1960 if (app_acl_init() < 0)
1961 rte_exit(EXIT_FAILURE, "app_acl_init failed\n");
1963 nb_lcores = rte_lcore_count();
1965 /* initialize all ports */
1966 for (portid = 0; portid < nb_ports; portid++) {
1967 /* skip ports that are not enabled */
1968 if ((enabled_port_mask & (1 << portid)) == 0) {
1969 printf("\nSkipping disabled port %d\n", portid);
1974 printf("Initializing port %d ... ", portid);
1977 nb_rx_queue = get_port_n_rx_queues(portid);
1978 n_tx_queue = nb_lcores;
1979 if (n_tx_queue > MAX_TX_QUEUE_PER_PORT)
1980 n_tx_queue = MAX_TX_QUEUE_PER_PORT;
1981 printf("Creating queues: nb_rxq=%d nb_txq=%u... ",
1982 nb_rx_queue, (unsigned)n_tx_queue);
1983 ret = rte_eth_dev_configure(portid, nb_rx_queue,
1984 (uint16_t)n_tx_queue, &port_conf);
1986 rte_exit(EXIT_FAILURE,
1987 "Cannot configure device: err=%d, port=%d\n",
1990 rte_eth_macaddr_get(portid, &ports_eth_addr[portid]);
1991 print_ethaddr(" Address:", &ports_eth_addr[portid]);
1995 ret = init_mem(NB_MBUF);
1997 rte_exit(EXIT_FAILURE, "init_mem failed\n");
1999 /* init one TX queue per couple (lcore,port) */
2001 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
2002 if (rte_lcore_is_enabled(lcore_id) == 0)
2006 socketid = (uint8_t)
2007 rte_lcore_to_socket_id(lcore_id);
2011 printf("txq=%u,%d,%d ", lcore_id, queueid, socketid);
2014 rte_eth_dev_info_get(portid, &dev_info);
2015 txconf = &dev_info.default_txconf;
2016 if (port_conf.rxmode.jumbo_frame)
2017 txconf->txq_flags = 0;
2018 ret = rte_eth_tx_queue_setup(portid, queueid, nb_txd,
2021 rte_exit(EXIT_FAILURE,
2022 "rte_eth_tx_queue_setup: err=%d, "
2023 "port=%d\n", ret, portid);
2025 qconf = &lcore_conf[lcore_id];
2026 qconf->tx_queue_id[portid] = queueid;
2032 for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
2033 if (rte_lcore_is_enabled(lcore_id) == 0)
2035 qconf = &lcore_conf[lcore_id];
2036 printf("\nInitializing rx queues on lcore %u ... ", lcore_id);
2038 /* init RX queues */
2039 for (queue = 0; queue < qconf->n_rx_queue; ++queue) {
2040 portid = qconf->rx_queue_list[queue].port_id;
2041 queueid = qconf->rx_queue_list[queue].queue_id;
2044 socketid = (uint8_t)
2045 rte_lcore_to_socket_id(lcore_id);
2049 printf("rxq=%d,%d,%d ", portid, queueid, socketid);
2052 ret = rte_eth_rx_queue_setup(portid, queueid, nb_rxd,
2054 pktmbuf_pool[socketid]);
2056 rte_exit(EXIT_FAILURE,
2057 "rte_eth_rx_queue_setup: err=%d,"
2058 "port=%d\n", ret, portid);
2065 for (portid = 0; portid < nb_ports; portid++) {
2066 if ((enabled_port_mask & (1 << portid)) == 0)
2070 ret = rte_eth_dev_start(portid);
2072 rte_exit(EXIT_FAILURE,
2073 "rte_eth_dev_start: err=%d, port=%d\n",
2077 * If enabled, put device in promiscuous mode.
2078 * This allows IO forwarding mode to forward packets
2079 * to itself through 2 cross-connected ports of the
2083 rte_eth_promiscuous_enable(portid);
2086 check_all_ports_link_status((uint8_t)nb_ports, enabled_port_mask);
2088 /* launch per-lcore init on every lcore */
2089 rte_eal_mp_remote_launch(main_loop, NULL, CALL_MASTER);
2090 RTE_LCORE_FOREACH_SLAVE(lcore_id) {
2091 if (rte_eal_wait_lcore(lcore_id) < 0)