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.
42 #include <sys/queue.h>
45 #include <rte_common.h>
46 #include <rte_byteorder.h>
48 #include <rte_debug.h>
49 #include <rte_cycles.h>
50 #include <rte_memory.h>
51 #include <rte_memcpy.h>
52 #include <rte_memzone.h>
53 #include <rte_launch.h>
54 #include <rte_tailq.h>
56 #include <rte_per_lcore.h>
57 #include <rte_lcore.h>
58 #include <rte_atomic.h>
59 #include <rte_branch_prediction.h>
61 #include <rte_memory.h>
62 #include <rte_mempool.h>
64 #include <rte_interrupts.h>
66 #include <rte_ether.h>
67 #include <rte_ethdev.h>
68 #include <rte_string_fns.h>
75 print_ether_addr(const char *what, struct ether_addr *eth_addr)
77 char buf[ETHER_ADDR_FMT_SIZE];
78 ether_format_addr(buf, ETHER_ADDR_FMT_SIZE, eth_addr);
79 printf("%s%s", what, buf);
83 * Received a burst of packets.
86 pkt_burst_receive(struct fwd_stream *fs)
88 struct rte_mbuf *pkts_burst[MAX_PKT_BURST];
90 struct ether_hdr *eth_hdr;
94 uint16_t i, packet_type;
95 uint64_t is_encapsulation;
97 #ifdef RTE_TEST_PMD_RECORD_CORE_CYCLES
100 uint64_t core_cycles;
103 #ifdef RTE_TEST_PMD_RECORD_CORE_CYCLES
104 start_tsc = rte_rdtsc();
108 * Receive a burst of packets.
110 nb_rx = rte_eth_rx_burst(fs->rx_port, fs->rx_queue, pkts_burst,
112 if (unlikely(nb_rx == 0))
115 #ifdef RTE_TEST_PMD_RECORD_BURST_STATS
116 fs->rx_burst_stats.pkt_burst_spread[nb_rx]++;
118 fs->rx_packets += nb_rx;
121 * Dump each received packet if verbose_level > 0.
123 if (verbose_level > 0)
124 printf("port %u/queue %u: received %u packets\n",
125 (unsigned) fs->rx_port,
126 (unsigned) fs->rx_queue,
128 for (i = 0; i < nb_rx; i++) {
130 if (verbose_level == 0) {
131 rte_pktmbuf_free(mb);
134 eth_hdr = rte_pktmbuf_mtod(mb, struct ether_hdr *);
135 eth_type = RTE_BE_TO_CPU_16(eth_hdr->ether_type);
136 ol_flags = mb->ol_flags;
137 packet_type = mb->packet_type;
139 is_encapsulation = ol_flags & (PKT_RX_TUNNEL_IPV4_HDR |
140 PKT_RX_TUNNEL_IPV6_HDR);
142 print_ether_addr(" src=", ð_hdr->s_addr);
143 print_ether_addr(" - dst=", ð_hdr->d_addr);
144 printf(" - type=0x%04x - length=%u - nb_segs=%d",
145 eth_type, (unsigned) mb->pkt_len,
147 if (ol_flags & PKT_RX_RSS_HASH) {
148 printf(" - RSS hash=0x%x", (unsigned) mb->hash.rss);
149 printf(" - RSS queue=0x%x",(unsigned) fs->rx_queue);
150 } else if (ol_flags & PKT_RX_FDIR) {
151 printf(" - FDIR matched ");
152 if (ol_flags & PKT_RX_FDIR_ID)
155 else if (ol_flags & PKT_RX_FDIR_FLX)
156 printf("flex bytes=0x%08x %08x",
157 mb->hash.fdir.hi, mb->hash.fdir.lo);
159 printf("hash=0x%x ID=0x%x ",
160 mb->hash.fdir.hash, mb->hash.fdir.id);
162 if (ol_flags & PKT_RX_VLAN_PKT)
163 printf(" - VLAN tci=0x%x", mb->vlan_tci);
164 if (is_encapsulation) {
165 struct ipv4_hdr *ipv4_hdr;
166 struct ipv6_hdr *ipv6_hdr;
167 struct udp_hdr *udp_hdr;
172 struct vxlan_hdr *vxlan_hdr;
174 l2_len = sizeof(struct ether_hdr);
176 /* Do not support ipv4 option field */
177 if (ol_flags & PKT_RX_TUNNEL_IPV4_HDR) {
178 l3_len = sizeof(struct ipv4_hdr);
179 ipv4_hdr = (struct ipv4_hdr *) (rte_pktmbuf_mtod(mb,
180 unsigned char *) + l2_len);
181 l4_proto = ipv4_hdr->next_proto_id;
183 l3_len = sizeof(struct ipv6_hdr);
184 ipv6_hdr = (struct ipv6_hdr *) (rte_pktmbuf_mtod(mb,
185 unsigned char *) + l2_len);
186 l4_proto = ipv6_hdr->proto;
188 if (l4_proto == IPPROTO_UDP) {
189 udp_hdr = (struct udp_hdr *) (rte_pktmbuf_mtod(mb,
190 unsigned char *) + l2_len + l3_len);
191 l4_len = sizeof(struct udp_hdr);
192 vxlan_hdr = (struct vxlan_hdr *) (rte_pktmbuf_mtod(mb,
193 unsigned char *) + l2_len + l3_len
196 printf(" - VXLAN packet: packet type =%d, "
197 "Destination UDP port =%d, VNI = %d",
198 packet_type, RTE_BE_TO_CPU_16(udp_hdr->dst_port),
199 rte_be_to_cpu_32(vxlan_hdr->vx_vni) >> 8);
202 printf(" - Receive queue=0x%x", (unsigned) fs->rx_queue);
208 for (rxf = 0; rxf < sizeof(mb->ol_flags) * 8; rxf++) {
209 if ((ol_flags & (1ULL << rxf)) == 0)
211 name = rte_get_rx_ol_flag_name(1ULL << rxf);
214 printf(" %s\n", name);
217 rte_pktmbuf_free(mb);
220 #ifdef RTE_TEST_PMD_RECORD_CORE_CYCLES
221 end_tsc = rte_rdtsc();
222 core_cycles = (end_tsc - start_tsc);
223 fs->core_cycles = (uint64_t) (fs->core_cycles + core_cycles);
227 struct fwd_engine rx_only_engine = {
228 .fwd_mode_name = "rxonly",
229 .port_fwd_begin = NULL,
230 .port_fwd_end = NULL,
231 .packet_fwd = pkt_burst_receive,