first public release
[dpdk.git] / app / test-pmd / macfwd.c
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2012 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  * 
7  *   Redistribution and use in source and binary forms, with or without 
8  *   modification, are permitted provided that the following conditions 
9  *   are met:
10  * 
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 
16  *       distribution.
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.
20  * 
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.
32  * 
33  *  version: DPDK.L.1.2.3-3
34  */
35
36 #include <stdarg.h>
37 #include <string.h>
38 #include <stdio.h>
39 #include <errno.h>
40 #include <stdint.h>
41 #include <unistd.h>
42 #include <inttypes.h>
43
44 #include <sys/queue.h>
45 #include <sys/stat.h>
46
47 #include <rte_common.h>
48 #include <rte_byteorder.h>
49 #include <rte_log.h>
50 #include <rte_debug.h>
51 #include <rte_cycles.h>
52 #include <rte_memory.h>
53 #include <rte_memcpy.h>
54 #include <rte_memzone.h>
55 #include <rte_launch.h>
56 #include <rte_tailq.h>
57 #include <rte_eal.h>
58 #include <rte_per_lcore.h>
59 #include <rte_lcore.h>
60 #include <rte_atomic.h>
61 #include <rte_branch_prediction.h>
62 #include <rte_ring.h>
63 #include <rte_memory.h>
64 #include <rte_mempool.h>
65 #include <rte_mbuf.h>
66 #include <rte_interrupts.h>
67 #include <rte_pci.h>
68 #include <rte_ether.h>
69 #include <rte_ethdev.h>
70 #include <rte_ip.h>
71 #include <rte_string_fns.h>
72
73 #include "testpmd.h"
74
75 /*
76  * Forwarding of packets in MAC mode.
77  * Change the source and the destination Ethernet addressed of packets
78  * before forwarding them.
79  */
80 static void
81 pkt_burst_mac_forward(struct fwd_stream *fs)
82 {
83         struct rte_mbuf  *pkts_burst[MAX_PKT_BURST];
84         struct rte_port  *txp;
85         struct rte_mbuf  *mb;
86         struct ether_hdr *eth_hdr;
87         uint16_t nb_rx;
88         uint16_t nb_tx;
89         uint16_t i;
90 #ifdef RTE_TEST_PMD_RECORD_CORE_CYCLES
91         uint64_t start_tsc;
92         uint64_t end_tsc;
93         uint64_t core_cycles;
94 #endif
95
96 #ifdef RTE_TEST_PMD_RECORD_CORE_CYCLES
97         start_tsc = rte_rdtsc();
98 #endif
99
100         /*
101          * Receive a burst of packets and forward them.
102          */
103         nb_rx = rte_eth_rx_burst(fs->rx_port, fs->rx_queue, pkts_burst,
104                                  nb_pkt_per_burst);
105         if (unlikely(nb_rx == 0))
106                 return;
107
108 #ifdef RTE_TEST_PMD_RECORD_BURST_STATS
109         fs->rx_burst_stats.pkt_burst_spread[nb_rx]++;
110 #endif
111         fs->rx_packets += nb_rx;
112         txp = &ports[fs->tx_port];
113         for (i = 0; i < nb_rx; i++) {
114                 mb = pkts_burst[i];
115                 eth_hdr = (struct ether_hdr *) mb->pkt.data;
116                 ether_addr_copy(&peer_eth_addrs[fs->peer_addr],
117                                 &eth_hdr->d_addr);
118                 ether_addr_copy(&ports[fs->tx_port].eth_addr,
119                                 &eth_hdr->s_addr);
120                 mb->ol_flags = txp->tx_ol_flags;
121                 mb->pkt.l2_len = sizeof(struct ether_hdr);
122                 mb->pkt.l3_len = sizeof(struct ipv4_hdr);
123                 mb->pkt.vlan_tci = txp->tx_vlan_id;
124         }
125         nb_tx = rte_eth_tx_burst(fs->tx_port, fs->tx_queue, pkts_burst, nb_rx);
126         fs->tx_packets += nb_tx;
127 #ifdef RTE_TEST_PMD_RECORD_BURST_STATS
128         fs->tx_burst_stats.pkt_burst_spread[nb_tx]++;
129 #endif
130         if (unlikely(nb_tx < nb_rx)) {
131                 fs->fwd_dropped += (nb_rx - nb_tx);
132                 do {
133                         rte_pktmbuf_free(pkts_burst[nb_tx]);
134                 } while (++nb_tx < nb_rx);
135         }
136 #ifdef RTE_TEST_PMD_RECORD_CORE_CYCLES
137         end_tsc = rte_rdtsc();
138         core_cycles = (end_tsc - start_tsc);
139         fs->core_cycles = (uint64_t) (fs->core_cycles + core_cycles);
140 #endif
141 }
142
143 struct fwd_engine mac_fwd_engine = {
144         .fwd_mode_name  = "mac",
145         .port_fwd_begin = NULL,
146         .port_fwd_end   = NULL,
147         .packet_fwd     = pkt_burst_mac_forward,
148 };