Internet实现了全球范围内计算机网络的互连,不同主机之间必须遵循相同的网络协议才能彼此通信。TCP/IP协议作为一种网络互联协议,在Internet中得到了最广泛的支持以及应用。笔者此处就轻量级TCP/IP协议Lwip的移植作一个简单的介绍。

1. TCP/IP协议概述

TCP/IP协议是Internet上使用最广泛的通信协议,其实际上是一个协议簇,其中TCP协议和IP协议是其中两个最重要的协议。

TCP/IP协议采用4层层级结构:应用层、运输层、网络层、链路层。相应的层级除了能够向上一层提供服务,还需要使用下一层所提供的服务。

1.1. 链路层

数据链路层将网络层交下来的IP数据报组装成帧,在两个相邻结点间的链路上透明传送以帧为单位的数据,另一结点若收到无差错的帧,则从收到的帧中提取出IP数据报上交上一层,否则丢弃此包。这一层级帧格式通常采用Ethernet V2,有效的MAC帧长度为64~1518字节,通常由网络适配器实现这一层级。

1.2. 网络层

网络层把运输层产生的报文段或用户数据报封装成分组或包进行传送,由于网络层使用无连接的网际协议IP,因此,分组也称为IP数据报,并且是不可靠的。除了IP协议,网络层还需配套使用以下几个协议:地址解析协议ARP、逆地址解析协议RARP、因特网控制报文协议ICMP、因特网组管理协议IGMP。

1.3. 运输层

运输层向上面的应用层提供通信服务,具有复用和分用的功能。复用就是多个应用层进程可同时使用运输层的服务,分用则为运输层可以把收到的数据分别交付上面应用层中相应的进程。这一层级有两个不同的协议:传输控制协议TCP和用户数据报协议UDP。TCP提供面向连接的服务,数据传输单位为报文段,能够保证提供可靠的交付。其传输数据前必须先建立连接,结束传输后要释放连接,不提供广播或多播服务。UDP传输数据前不需要建立连接,数据传输单位为用户数据报,不保证提供可靠的交付。运输层接收到UDP报文后,不需要给出任何确认,可以实现广播或多播服务。

1.4. 应用层

应用层根据运输层提供的服务,实现不同主机中多个应用进程之间的通信和协同工作,由实际的应用规划应用进程在通信时所遵循的协议。在Internet中有很多标准的应用层协议如:域名系统DNS、文件传输协议FTP、超文本传输协议HTTP、远程终端协议TELNET、动态主机配置协议DHCP、简单网络管理协议SNMP等等。

2. Lwip概述

Lwip是瑞典计算机科学院(SICS)的Adam Dunkels开发的一个小型开源TCP/IP协议栈。作为轻量级TCP/IP协议,Lwip支持有操作系统以及无操作系统运行,其在保持TCP/IP协议主要功能的基础上,减少对RAM、ROM的占用,非常适合于嵌入式系统使用。

3. Lwip移植

对于一个可移植的开源协议栈,移植部分往往分成体系结构相关、操作系统相关、驱动接口相关这几个部分。此处以Lwip-1.4.1版本为例说明移植的相关代码文件。

3.1. 体系结构相关

3.1.1. cc.h

在cc.h中需实现cpu以及编译器相关的定义,Lwip为了可移植,使用了自身的数据类型,需根据使用的cpu以及编译器进行定义。网络字节序使用大端格式,并且其数据结构需严格按照字节对齐,此处定义cpu的字节序以及编译器字节对齐宏等。

  1. #ifndef __ARCH_CC_H__
  2. #define __ARCH_CC_H__
  3. #include <stdio.h> /* printf, fflush, FILE */
  4. #include <stdlib.h> /* abort */
  5. #define LWIP_PROVIDE_ERRNO
  6. /* Define platform endianness (might already bedefined) */
  7. #define BYTE_ORDER LITTLE_ENDIAN
  8. /* Define generic types used in lwIP */
  9. typedef unsigned char u8_t;
  10. typedef signed char s8_t;
  11. typedef unsigned short u16_t;
  12. typedef signed short s16_t;
  13. typedef unsigned long u32_t;
  14. typedef signed long s32_t;
  15. typedef u32_t mem_ptr_t;
  16. typedef u32_t sys_prot_t;
  17. /* Define (sn)printf formatters for these lwIP types*/
  18. #define U16_F "hu"
  19. #define S16_F "hd"
  20. #define X16_F "hx"
  21. #define U32_F "lu"
  22. #define S32_F "ld"
  23. #define X32_F "lx"
  24. /* Compiler hints for packing structures */
  25. #define PACK_STRUCT_BEGIN
  26. #define PACK_STRUCT_STRUCT __attribute__((__packed__))
  27. #define PACK_STRUCT_END
  28. #define PACK_STRUCT_FIELD(x) x
  29. /* Plaform specific diagnostic output */
  30. #define LWIP_PLATFORM_DIAG(x) do { printf x; } while(0)
  31. #define LWIP_PLATFORM_ASSERT(x) do {
  32. printf("Assertion \"%s\" failed at line%d in %s\n", \
  33. x, __LINE__, __FILE__); fflush(NULL); abort(); }while(0)
  34. #endif /* __ARCH_CC_H__ */
3.1.2. perf.h

perf.h用于实现系统统计和测量相关头文件,在平时可以不用。

  1. #ifndef __PERF_H__
  2. #define __PERF_H__
  3. #define PERF_START /* null definition */
  4. #define PERF_STOP(x) /* null definition */
  5. #endif /* __PERF_H__ */

3.2. 操作系统相关

3.2.1. sys_arch.h/sys_arch.c

在sys_arch.h/sys_arch.c中需实现操作系统相关的接口,主要是提供信号量、邮箱、临界区保护的接口实现,为了支持Lwip的完整功能,还需实现多线程接口,除此之外,Lwip还需使用系统时钟来确定一些模块(如ARP、TCP等)的超时处理。所有需在sys_arch.h/sys_arch.c中实现的接口函数均在sys.h中给出了原型,此处不使用操作系统,只需实现Lwip的系统时钟即可。

  1. extern volatile uint32_t SystemTick;
  2. uint32_t sys_now(void)
  3. {
  4. returnSystemTick;
  5. }

3.3. 驱动接口相关

3.3.1. ethernetif.c

Lwip最底层需要实现读写网卡,其中在源码包中ethernetif.c,已经给出了底层驱动接口模板的实现,因此只需要在模板中加入网卡驱动接口函数即可,主要是网卡初始化、网卡接收、网卡发送这三个函数。笔者使用的是DM9000A,驱动的实现在前面章节有详细的介绍,此处不再细述。

  1. /* Define those to better describe your networkinterface. */
  2. #define IFNAME0 'e'
  3. #define IFNAME1 'n'
  4. struct ethernetif {
  5. structeth_addr *ethaddr;
  6. /* Addwhatever per-interface state that is needed here. */
  7. };
  8. struct netif DM9000_netif;
  9. static void low_level_init(struct netif *netif)
  10. {
  11. /* set MAC hardware address length */
  12. netif->hwaddr_len = ETHARP_HWADDR_LEN;
  13. /* set MAC hardware address */
  14. netif->hwaddr[0] = default_enetaddr[0];
  15. netif->hwaddr[1] = default_enetaddr[1];
  16. netif->hwaddr[2] = default_enetaddr[2];
  17. netif->hwaddr[3] = default_enetaddr[3];
  18. netif->hwaddr[4] = default_enetaddr[4];
  19. netif->hwaddr[5] = default_enetaddr[5];
  20. /* maximum transfer unit */
  21. netif->mtu = 1500;
  22. /* device capabilities */
  23. /* don't set NETIF_FLAG_ETHARP if this device is notan ethernet one */
  24. netif->flags = NETIF_FLAG_BROADCAST |NETIF_FLAG_ETHARP | NETIF_FLAG_LINK_UP;
  25. /* Do whatever else is needed to initialize interface.*/
  26. DM9000_Init();
  27. }
  28. static err_t low_level_output(struct netif *netif,struct pbuf *p)
  29. {
  30. struct pbuf*q;
  31. uint16_tBuffer[1514/2];
  32. uint8_t*pBuffer;
  33. #if ETH_PAD_SIZE
  34. pbuf_header(p,-ETH_PAD_SIZE); /* drop the padding word */
  35. #endif
  36. pBuffer =(uint8_t *)Buffer;
  37. for(q = p; q!= NULL; q = q->next) {
  38. memcpy(pBuffer, q->payload, q->len);
  39. pBuffer +=q->len;
  40. }
  41. // signal thatpacket should be sent();
  42. DM9000_SendPacket(Buffer, p->tot_len);
  43. #if ETH_PAD_SIZE
  44. pbuf_header(p,ETH_PAD_SIZE); /* reclaim the padding word */
  45. #endif
  46. LINK_STATS_INC(link.xmit);
  47. return ERR_OK;
  48. }
  49. static struct pbuf * low_level_input(struct netif*netif)
  50. {
  51. struct pbuf*p, *q;
  52. uint16_tBuffer[1514/2];
  53. uint8_t*pBuffer;
  54. int16_t len;
  55. /* Obtain thesize of the packet and put it into the "len" variable. */
  56. len =DM90000_ReceivePacket(Buffer);
  57. if (len <=0) {
  58. return NULL;
  59. }
  60. #if ETH_PAD_SIZE
  61. len +=ETH_PAD_SIZE; /* allow room for Ethernet padding */
  62. #endif
  63. /* We allocatea pbuf chain of pbufs from the pool. */
  64. p =pbuf_alloc(PBUF_RAW, len, PBUF_POOL);
  65. if (p != NULL){
  66. #if ETH_PAD_SIZE
  67. pbuf_header(p, -ETH_PAD_SIZE); /* drop the padding word */
  68. #endif
  69. pBuffer =(uint8_t *)Buffer;
  70. for(q = p; q!= NULL; q = q->next) {
  71. memcpy(q->payload, pBuffer, q->len);
  72. pBuffer+= q->len;
  73. }
  74. #if ETH_PAD_SIZE
  75. pbuf_header(p, ETH_PAD_SIZE); /* reclaim the padding word */
  76. #endif
  77. LINK_STATS_INC(link.recv);
  78. } else {
  79. LINK_STATS_INC(link.memerr);
  80. LINK_STATS_INC(link.drop);
  81. }
  82. return p;
  83. }
  84. void ethernetif_input(struct netif *netif)
  85. {
  86. struct eth_hdr*ethhdr;
  87. struct pbuf*p;
  88. /* movereceived packet into a new pbuf */
  89. p =low_level_input(netif);
  90. /* no packetcould be read, silently ignore this */
  91. if (p == NULL)return;
  92. /* points topacket payload, which starts with an Ethernet header */
  93. ethhdr =p->payload;
  94. switch(htons(ethhdr->type)) {
  95. /* IP or ARPpacket? */
  96. caseETHTYPE_IP:
  97. caseETHTYPE_ARP:
  98. #if PPPOE_SUPPORT
  99. /* PPPoEpacket? */
  100. caseETHTYPE_PPPOEDISC:
  101. caseETHTYPE_PPPOE:
  102. #endif /* PPPOE_SUPPORT */
  103. if(netif->input(p, netif)!=ERR_OK) {
  104. LWIP_DEBUGF(NETIF_DEBUG, ("ethernetif_input: IPinput error\n"));
  105. pbuf_free(p);
  106. p = NULL;
  107. }
  108. break;
  109. default:
  110. pbuf_free(p);
  111. p = NULL;
  112. break;
  113. }
  114. }
  115. err_t ethernetif_init(struct netif *netif)
  116. {
  117. structethernetif *ethernetif;
  118. LWIP_ASSERT("netif != NULL", (netif != NULL));
  119. ethernetif =mem_malloc(sizeof(struct ethernetif));
  120. if (ethernetif== NULL) {
  121. LWIP_DEBUGF(NETIF_DEBUG, ("ethernetif_init: out ofmemory\n"));
  122. returnERR_MEM;
  123. }
  124. #if LWIP_NETIF_HOSTNAME
  125. /* Initializeinterface hostname */
  126. netif->hostname = "lwip";
  127. #endif /* LWIP_NETIF_HOSTNAME */
  128. netif->state= ethernetif;
  129. netif->name[0] = IFNAME0;
  130. netif->name[1] = IFNAME1;
  131. netif->output = etharp_output;
  132. netif->linkoutput = low_level_output;
  133. ethernetif->ethaddr = (struct eth_addr *)&(netif->hwaddr[0]);
  134. /* initializethe hardware */
  135. low_level_init(netif);
  136. return ERR_OK;
  137. }
  138. void ethernetif_config(void)
  139. {
  140. struct ip_addripaddr;
  141. struct ip_addrnetmask;
  142. struct ip_addrgw;
  143. /* IP addressdefault setting */
  144. IP4_ADDR(&ipaddr, 192, 168, 0, 20);
  145. IP4_ADDR(&netmask,255, 255 , 255, 0);
  146. IP4_ADDR(&gw, 192, 168, 0, 1);
  147. /* add thenetwork interface */
  148. netif_add(&DM9000_netif, &ipaddr, &netmask, &gw, NULL,
  149. &ethernetif_init, &ethernet_input);
  150. /* Registers the default network interface */
  151. netif_set_default(&DM9000_netif);
  152. netif_set_up(&DM9000_netif);
  153. }

3.4. Lwip配置

Lwip是可裁剪、可配置的TCP/IP协议栈,可根据具体的应用进行模块裁剪、资源分配等。Lwip所有的可配置项在源码中opt.h中默认给出配置,在lwipopts.h中进行具体应用特定的配置,可只针对所关心的选项进行配置,其它非关键选项可以直接由opt.h中默认配置。

  1. #ifndef __LWIPOPTS_H__
  2. #define __LWIPOPTS_H__
  3. /**
  4. * NO_SYS==1:Provides VERY minimal functionality. Otherwise,
  5. * use lwIPfacilities.
  6. */
  7. #define NO_SYS 1
  8. /**
  9. *NO_SYS_NO_TIMERS==1: Drop support for sys_timeout when NO_SYS==1
  10. * Mainly forcompatibility to old versions.
  11. */
  12. #define NO_SYS_NO_TIMERS 0
  13. /**
  14. *MEM_ALIGNMENT: should be set to the alignment of the CPU
  15. */
  16. #define MEM_ALIGNMENT 4
  17. /**
  18. * MEM_SIZE: thesize of the heap memory. If the application will send
  19. * a lot of datathat needs to be copied, this should be set high.
  20. */
  21. #define MEM_SIZE (32*1024)
  22. /**
  23. * 在以太网帧头填充两字节,上层去掉帧头后使得IP数据报以字对齐,armv6架构以上
  24. * CPU支持非对齐访问,但效率低下,对于32位CPU,填充2字节
  25. */
  26. #define ETH_PAD_SIZE 2
  27. /**
  28. * LWIP_ARP==1:Enable ARP functionality.
  29. */
  30. #define LWIP_ARP 1
  31. /**
  32. * LWIP_DHCP==1:Enable DHCP module.
  33. */
  34. #define LWIP_DHCP 0
  35. /**
  36. * LWIP_ICMP==1:Enable ICMP module inside the IP stack.
  37. * Be careful,disable that make your product non-compliant to RFC1122
  38. */
  39. #define LWIP_ICMP 1
  40. /**
  41. * LWIP_TCP==1:Turn on TCP.
  42. */
  43. #define LWIP_TCP 1
  44. /**
  45. * TCP_MSS: TCPMaximum segment size. (default is 536, a conservative default,
  46. * you mightwant to increase this.)
  47. * For thereceive side, this MSS is advertised to the remote side
  48. * when openinga connection. For the transmit size, this MSS sets
  49. * an upperlimit on the MSS advertised by the remote host.
  50. */
  51. #define TCP_MSS (1500 - 40)
  52. /**
  53. * LWIP_UDP==1:Turn on UDP.
  54. */
  55. #define LWIP_UDP 1
  56. /**
  57. * LWIP_SNMP==1:Turn on SNMP module. UDP must be available for SNMP
  58. * transport.
  59. */
  60. #define LWIP_SNMP 0
  61. /**
  62. * LWIP_IGMP==1:Turn on IGMP module.
  63. */
  64. #define LWIP_IGMP 0
  65. /**
  66. * LWIP_DNS==1:Turn on DNS module. UDP must be available for DNS
  67. * transport.
  68. */
  69. #define LWIP_DNS 0
  70. /**
  71. *LWIP_HAVE_LOOPIF==1: Support loop interface (127.0.0.1) and loopif.c
  72. */
  73. #define LWIP_HAVE_LOOPIF 0
  74. /**
  75. *LWIP_HAVE_SLIPIF==1: Support slip interface and slipif.c
  76. */
  77. #define LWIP_HAVE_SLIPIF 0
  78. /**
  79. *PPP_SUPPORT==1: Enable PPP.
  80. */
  81. #define PPP_SUPPORT 0
  82. /**
  83. *LWIP_STATS==1: Enable statistics collection in lwip_stats.
  84. */
  85. #define LWIP_STATS 0
  86. /**
  87. * LWIP_RAW==1:Enable application layer to hook into the IP layer itself.
  88. */
  89. #define LWIP_RAW 1
  90. /**
  91. *LWIP_SOCKET==1: Enable Socket API (require to use sockets.c)
  92. */
  93. #define LWIP_SOCKET 0
  94. /**
  95. *LWIP_NETCONN==1: Enable Netconn API (require to use api_lib.c)
  96. */
  97. #define LWIP_NETCONN 0
  98. /**
  99. * #define LWIP_DEBUG: Enable LWIP Debug
  100. */
  101. //#define LWIP_DEBUG
  102. #define ETHARP_DEBUG LWIP_DBG_ON
  103. #define IP_DEBUG LWIP_DBG_ON
  104. #define TCP_OUTPUT_DEBUG LWIP_DBG_ON
  105. #define TCP_DEBUG LWIP_DBG_ON
  106. #endif /* __LWIPOPTS_H__ */

4. 应用编程

Lwip提供三种应用编程接口(API):底层的基于回调函数API(raw API)、高层的连续API(sequential API)、BSD API。

raw API把应用程序通过回调函数的方式驻留在TCP/IP代码中,具有最快的代码执行效率以及最少的硬件资源需求,但这样的应用程序不便于理解以及维护。

sequential API提供了一种通用的应用编程方法,与BSD标准的socket API非常类似,应用程序的执行是基于” open-read-write-close”模式。TCP/IP协议通信过程本质是事件驱动的,因此这种编程方式要求TCP/IP代码与应用程序在不同的线程运行。

BSD API进一步封装了sequential API,兼容于目前存在的socketAPI应用程序,非常便于与其它平台(unix、windows等)socket API应用程序相互之间的移植。但相对效率比较低,占用资源多。

Lwip在使用前必须先初始化整个协议栈,配置网卡参数后并启动。由于此处未采用操作系统,通过在中断中获取包接收事件,在主循环中处理该事件,把包上传给上层,同时也在主循环中处理Lwip的超时事件。此处以HTTP服务器为例说明Lwip raw API的编程。

  1. volatile uint32_t SystemTick;
  2. static void Timer4_Callback(void)
  3. {
  4. SystemTick++;// 1ms计数
  5. }
  6. void main(void)
  7. {
  8. Uart_Init();
  9. printf("CPU: S3C2416@%dMHz\n",get_ARMCLK()/1000000);
  10. printf(" Fclk = %dMHz, Hclk = %dMHz, Pclk =%dMHz\n",
  11. get_FCLK()/1000000,get_HCLK()/1000000, get_PCLK()/1000000);
  12. // Initilaizethe LwIP stack
  13. lwip_init();
  14. // ip address192, 168, 0, 20
  15. ethernetif_config();
  16. Timer4_Init(1000,Timer4_Callback); // 1ms/tick
  17. Timer4_Start();
  18. // Httpwebserver Init
  19. httpd_init();
  20. while (1) {
  21. if(DM9000_GetReceiveStatus()) {
  22. ethernetif_input(&DM9000_netif);
  23. }
  24. // Handletimeouts
  25. sys_check_timeouts();
  26. }
  27. }

22_Lwip的移植 - 图1

图4-1 ping测试

22_Lwip的移植 - 图2

图4-2 HTTP服务器测试

5. 附录

S3C2416_MDK_Lwip.rar,包含Lwip完整移植工程。

http://pan.baidu.com/s/1qWkpN2W