一.skeleton功能
基础的二层转发工具。将偶数个网口进行配对,从0接收到的包转发到1口中,从1接收到的包转发到0口中,以此类推。所以端口数需要是偶数个!,仅仅从一个网口抓取数据包转发到另外一个网口,这样做双向转发,相当于桥的功能。其他基础业务都不做。
该例程用到了内存缓冲池mbuf_pool以及mbuf进行接包转包。
二.编译及运行结果
cd examples/skeleton
make
cd build
sudo ./basicfwd
结果
EAL: Detected 1 lcore(s)
EAL: Detected 1 NUMA nodes
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support...
EAL: Invalid NUMA socket, default to 0
EAL: Invalid NUMA socket, default to 0
EAL: Probe PCI driver: net_e1000_em (8086:100f) device: 0000:02:06.0 (socket 0)
EAL: Error reading from file descriptor 10: Input/output error
EAL: Invalid NUMA socket, default to 0
EAL: Probe PCI driver: net_e1000_em (8086:100f) device: 0000:02:07.0 (socket 0)
EAL: Error reading from file descriptor 18: Input/output error
EAL: No legacy callbacks, legacy socket not created
EAL: Error enabling interrupts for fd 10 (Input/output error)
Port 0 MAC: 00 0c 29 9b cf 5b
EAL: Error enabling interrupts for fd 18 (Input/output error)
Port 1 MAC: 00 0c 29 9b cf 65
Core 0 forwarding packets. [Ctrl+C to quit]
三.源码分析
1.头文件引用及宏定义
#include <stdint.h>
#include <inttypes.h>
#include <rte_eal.h>
#include <rte_ethdev.h>
#include <rte_cycles.h>
#include <rte_lcore.h>
#include <rte_mbuf.h>
#define RX_RING_SIZE 1024 //接收环的大小
#define TX_RING_SIZE 1024 //发送环的大小
#define NUM_MBUFS 8191//每个网口可以挂最多NUM_MBUFS个包(rx+tx)
#define MBUF_CACHE_SIZE 250//与内存以及高速缓存起有关
#define BURST_SIZE 32 //调用一次函数,从物理层获取的最大包数量
//网口默认配置,RX接收的数据包大小默认为ETHER链路帧包的最大值(MTU)
//以太网端口使用rte_eth_dev_configure()函数和port_conf_default结构以默认设置进行配置 :
static const struct rte_eth_conf port_conf_default = {
.rxmode = {
.max_rx_pkt_len = RTE_ETHER_MAX_LEN,
},
};
2.端口初始化port_init
/* basicfwd.c: Basic DPDK skeleton forwarding example. */
/*
* Initializes a given port using global settings and with the RX buffers
* coming from the mbuf_pool passed as a parameter.
*/
//基本转发应用程序中使用的端口初始化的主要功能部分
//1.获取可用 eth 的个数
//2.配置网卡设备
//3.每个 port