lwip 之二 网络接口 netif(ethernetif.c、netif.c) -凯发k8官方网
目前,网络上多数文章所使用的lwip版本为1.4.1。最新版本为2.0.3。从1.4.1到2.0.3(貌似从2.0.0开始),lwip的源码有了一定的变化,甚至于源码的文件结构也不一样,内部的一些实现源文件也被更新和替换了。
lwip使用netif来描述一个硬件网络接口,但是由于网络接口是直接与硬件打交道的,硬件不同则处理可能不同,必须由用户提供最底层接口。lwip的网络驱动有一定的模型,/src/netif/ethernetif.c文件即为底层接口的驱动的模版,用户为自己的网络设备实现驱动时应参照此模块。该文件中的函数通常为与硬件打交道的函数,当有数据接收的时候被调用,以使接收到的数据进入tcpip协议栈。
简单来说,netif是lwip抽象出来的各网络接口,协议栈可以使用多个不同的接口,而ethernetif则提供了netif访问硬件的各接口,每个不同的接口有不同的ethernetif。
在lwip中,是通过结构体netif来描述一个硬件网络接口的,在单网卡中,这个结构体只有一个;多网卡中可有何网卡数目相同的netif结构体,它们构成一个数据链。该部分的定义在文件netif.c/h中,具体如下:
/** generic data structure used for all lwip network interfaces.* the following fields should be filled in by the initialization* function for the device driver: hwaddr_len, hwaddr[], mtu, flags */ struct netif {/** pointer to next in linked list */struct netif *next;#if lwip_ipv4/** ip address configuration in network byte order */ip_addr_t ip_addr; /* ip 地址 */ip_addr_t netmask; /* 子网掩码 */ip_addr_t gw; /* 网关 */ #endif /* lwip_ipv4 */ #if lwip_ipv6/** array of ipv6 addresses for this netif. */ip_addr_t ip6_addr[lwip_ipv6_num_addresses];/** the state of each ipv6 address (tentative, preferred, etc).* @see ip6_addr.h */u8_t ip6_addr_state[lwip_ipv6_num_addresses]; #endif /* lwip_ipv6 *//** this function is called by the network device driver* to pass a packet up the tcp/ip stack. */netif_input_fn input; /* 函数指针,从网卡中接收一包数据 */ #if lwip_ipv4/** this function is called by the ip module when it wants* to send a packet on the interface. this function typically* first resolves the hardware address, then sends the packet.* for ethernet physical layer, this is usually etharp_output() */netif_output_fn output; /* ip层调用此函数向网卡发送一包数据 */ #endif /* lwip_ipv4 *//** this function is called by ethernet_output() when it wants* to send a packet on the interface. this function outputs* the pbuf as-is on the link medium. */netif_linkoutput_fn linkoutput; /* arp模块调用这个函数向网卡发送一包数据 */ #if lwip_ipv6/** this function is called by the ipv6 module when it wants* to send a packet on the interface. this function typically* first resolves the hardware address, then sends the packet.* for ethernet physical layer, this is usually ethip6_output() */netif_output_ip6_fn output_ip6; #endif /* lwip_ipv6 */ #if lwip_netif_status_callback/** this function is called when the netif state is set to up or down*/netif_status_callback_fn status_callback; #endif /* lwip_netif_status_callback */ #if lwip_netif_link_callback/** this function is called when the netif link is set to up or down*/netif_status_callback_fn link_callback; #endif /* lwip_netif_link_callback */ #if lwip_netif_remove_callback/** this function is called when the netif has been removed */netif_status_callback_fn remove_callback; #endif /* lwip_netif_remove_callback *//** this field can be set by the device driver and could point* to state information for the device. */void *state; /* 这个成员变量注意以下,主要是将 网卡的某些私有数据传递给上层,用户可以自由发挥,也可以不用。下面会有详细说明。*/ #ifdef netif_get_client_datavoid* client_data[lwip_netif_client_data_index_max lwip_num_netif_client_data]; #endif #if lwip_ipv6_autoconfig/** is this netif enabled for ipv6 autoconfiguration */u8_t ip6_autoconfig_enabled; #endif /* lwip_ipv6_autoconfig */ #if lwip_ipv6_send_router_solicit/** number of router solicitation messages that remain to be sent. */u8_t rs_count; #endif /* lwip_ipv6_send_router_solicit */ #if lwip_netif_hostname/* the hostname for this netif, null is a valid value */const char* hostname; #endif /* lwip_netif_hostname */ #if lwip_checksum_ctrl_per_netifu16_t chksum_flags; #endif /* lwip_checksum_ctrl_per_netif*//** maximum transfer unit (in bytes) */u16_t mtu; /* 网络一次可以传送的最大字节数,对于以太网一般设为 1500 *//** number of bytes used in hwaddr */u8_t hwaddr_len; /* 硬件地址长度,对于以太网就是 mac 地址长度,为 6 各字节 *//** link level hardware address of this interface */u8_t hwaddr[netif_max_hwaddr_len];/** flags (@see @ref netif_flags) */u8_t flags; /* 网卡状态信息标志位,是很重要的控制字段,它包括网卡功能使能、广播使能、 arp 使能等等重要控制位。*//** descriptive abbreviation */char name[2]; /* 字段用于保存每一个网络网络接口的名字。用两个字符的名字来标识网络接口使用的设备驱动的种类,名字由设备驱动来设置并且应该反映通过网络接口表示的硬件的种类。比如蓝牙设备( bluetooth)的网络接口名字可以是 bt,而 ieee 802.11b wlan 设备的名字就可以是 wl,当然设置什么名字用户是可以自由发挥的,这并不影响用户对网络接口的使用。当然,如果两个网络接口具有相同的网络名字,我们就用 num 字段来区分相同类别的不同网络接口。 *//** number of this interface */u8_t num; /* 用来标示使用同种驱动类型的不同网络接口 */ #if mib2_stats/** link type (from "snmp_iftype" enum from snmp_mib2.h) */u8_t link_type;/** (estimate) link speed */u32_t link_speed;/** timestamp at last change made (up/down) */u32_t ts;/** counters */struct stats_mib2_netif_ctrs mib2_counters; #endif /* mib2_stats */ #if lwip_ipv4 && lwip_igmp/** this function could be called to add or delete an entry in the multicastfilter table of the ethernet mac.*/netif_igmp_mac_filter_fn igmp_mac_filter; #endif /* lwip_ipv4 && lwip_igmp */ #if lwip_ipv6 && lwip_ipv6_mld/** this function could be called to add or delete an entry in the ipv6 multicastfilter table of the ethernet mac. */netif_mld_mac_filter_fn mld_mac_filter; #endif /* lwip_ipv6 && lwip_ipv6_mld */ #if lwip_netif_hwaddrhintu8_t *addr_hint; #endif /* lwip_netif_hwaddrhint */ #if enable_loopback/* list of packets to be queued for ourselves. */struct pbuf *loop_first;struct pbuf *loop_last; #if lwip_loopback_max_pbufsu16_t loop_cnt_current; #endif /* lwip_loopback_max_pbufs */ #endif /* enable_loopback */ }; lwip使用链表(单向链表)来管理多个网络接口。在netif.c中有如下全局变量struct netif *netif_list;和struct netif *netif_default;,其中前者就是网络接口链表指针,后者表示默认情况下(有多网口时)使用哪个网络接口。
netif.c中第一部分就是添加一个会换接口(即127.0.0.1)。具体函数为void netif_init(void)。该函数在lwip初始化时被调用(tcpip_init -> lwip_init -> netif_init)。
要使用lwip必须调用tcpip_init完成对lwip的初始化。
向网络接口链表中添加新接口必须通过以下函数
struct netif * netif_add(struct netif *netif, #if lwip_ipv4const ip4_addr_t *ipaddr, const ip4_addr_t *netmask, const ip4_addr_t *gw, #endif /* lwip_ipv4 */void *state, netif_init_fn init, netif_input_fn input);下面简单具体分析以下添加新接口:
网络接口链表的操作非常简单,新添加的接口在链表最前面!
从网络接口链表中删除指定的接口必须通过以下函数void netif_remove(struct netif *netif);删除也非常简单,遍历链表找到指定的接口,删除!
那么具体该如何使用呢?其实使用还是非常简单的。首先我们需要针对我们的网络接口顶一个netif结构体变量struct netif xnetif;,接下来就是初始化。通过上面的结构不难发现,其中有非常多的函数指针,后续对于网络接口的操作,基本全是通过各个函数指针来实现的!通常,我们会在lwip初始化中,用以下函数添加自己的网络接口:
/* 通过该函数,将网络接口添加到链表中 */netif_add(&xnetif, &ipaddr, &netmask, &gw, null, ðernetif_init, &tcpip_input);/* registers the default network interface.*/netif_set_default(&xnetif);if (ethstatus == (eth_init_flag | eth_link_flag)){/* set ethernet link flag */xnetif.flags |= netif_flag_link_up;/* when the netif is fully configured this function must be called.*/netif_set_up(&xnetif);}else{/* when the netif link is down this function must be called.*/netif_set_down(&xnetif);}上面说过,每个netif接口都需要一个底层接口文件提供访问硬件的支持。在lwip提供的模板ethernetif.c文件中,上来就是一个如下的结构体:
struct ethernetif {struct eth_addr *ethaddr;/* add whatever per-interface state that is needed here. */ }; 该结构用来描述底层硬件设备,该结构体唯一不可或缺的是mac地址,它是lwip用于相应arp查询的核心数据。其他如果没有特殊需要,可以不添加其他成员数据。主要用于将底层硬件设备的一些私有数据通过netif ->state传递给上层(在ethernetif_init函数中赋值netif->state = ethernetif;)。一般用不到改结构。因为在netif结构中,基本包含了所有需要的信息。
ethernetif.c文件中提供的函数主要有以下这么几个:
- static void low_level_init(struct netif *netif);
- static struct pbuf * low_level_input(struct netif *netif);
- static err_t low_level_output(struct netif *netif, struct pbuf *p);
- void ethernetif_input( void * pvparameters )- low_level_output;
- err_t ethernetif_init(struct netif *netif);
其中对外的接口只有ethernetif_init函数。
ethernetif_init
该函数完成对于网络接口的初始化工作。它是在对lwip初始化函数中通过netif_add( &emac_if, &xipaddr, &xnetmast, &xgateway, null, ethernetif_init, tcpip_input );来被调用的。具体见以下注释:
err_t ethernetif_init(struct netif *netif) {lwip_assert("netif != null", (netif != null));#if lwip_netif_hostnamenetif->hostname = "lwip"; /* initialize interface hostname */#endif /* lwip_netif_hostname */netif->name[0] = ifname0;netif->name[1] = ifname1;#if lwip_ipv4#if lwip_arp || lwip_ethernet#if lwip_arpnetif->output = etharp_output; /* 数据发送函数,其最终还是会调用 netif->linkoutput */#else/* the user should write ist own code in low_level_output_arp_off function */netif->output = low_level_output_arp_off;#endif /* lwip_arp */#endif /* lwip_arp || lwip_ethernet */#endif /* lwip_ipv4 */#if lwip_ipv6 //0netif->output_ip6 = ethip6_output;#endif /* lwip_ipv6 */netif->linkoutput = low_level_output; /* 这个才是最底层发送函数(将数据交给硬件发送)*//* initialize the hardware */low_level_init(netif);// etharp_init();// sys_timeout(arp_tmr_interval, arp_timer, null);return err_ok; }low_level_init
该函数主要是对网卡进行一系列的初始化工作,例如:初始化mac地址、建立接收数据的任务等。
low_level_input
该函数负责从网卡中接收数据。正常从lwip的缓冲池中申请一个 pbuf结构,存放数据。
ethernetif_input
该函数即为网卡数据接收任务。lwip中是通过一个task(ethernetif_input)轮询检查dma控制器的状态以判断是否有数据接收到。接收的数据传输流程如下:
硬件接口取数 -> low_level_input -> tcpip_input(通过函数指针s_pxnetif->input)
low_level_output
output过程是由应用程序以主动方式触发的。在tcp/ip协议栈中,要发送的发送的数据最终被传递给了ip_output_if函数。查看代码可知,该函数中直接调用了netif->output函数,在上面的ethernetif_init函数中有对这个变量【函数指针】赋值,它就是etharp_output。
要发送的数据的额传输流程如下:
ip_output_if -> etharp_output(通过函数指针netif->output)-> ethernet_output -> low_level_output(通过函数指针netif->linkoutput) -> 硬件设备
总结
以上是凯发k8官方网为你收集整理的lwip 之二 网络接口 netif(ethernetif.c、netif.c)的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇:
- 下一篇: lwip 之三 操作系统隔离接口 sys