LwIP

Summary

lwIP (lightweight IP) is a widely used open-source TCP/IP stack designed for embedded systems. lwIP was originally developed by Adam Dunkels at the Swedish Institute of Computer Science and is now developed and maintained by a worldwide network of developers.

Original author(s)Adam Dunkels
Developer(s)lwIP developers group
Stable release
2.2.0[1] / 25 September 2023; 6 months ago (2023-09-25)
Repository
  • git.savannah.nongnu.org/cgit/lwip.git Edit this at Wikidata
Written inC
Operating systemmultiple
Platformembedded systems
TypeIP stack
LicenseModified BSD license
Websitewww.nongnu.org/lwip/

lwIP is used by many manufacturers of embedded systems, including Intel/Altera, Analog Devices,[2] Xilinx,[3] TI, ST and Freescale.

lwIP network stack edit

The focus of the lwIP network stack implementation is to reduce resource usage while still having a full-scale TCP stack.[4] This makes lwIP suitable for use in embedded systems with tens of kilobytes of free RAM and room for around 40 kilobytes of code ROM.

lwIP protocol implementations edit

Aside from the TCP/IP stack, lwIP has several other important parts, such as a network interface, an operating system emulation layer, buffers and a memory management section. The operating system emulation layer and the network interface allow the network stack to be transplanted into an operating system, as it provides a common interface between lwIP code and the operating system kernel.[4]

The network stack of lwIP includes an IP (Internet Protocol) implementation at the Internet layer that can handle packet forwarding over multiple network interfaces.[4] Both IPv4 and IPv6 are supported dual stack since lwIP v2.0.0 .[5] For network maintenance and debugging, lwIP implements ICMP (Internet Control Message Protocol).[4] IGMP (Internet Group Management Protocol) is supported for multicast traffic management. While ICMPv6 (including MLD) is implemented to support the use of IPv6.[citation needed]

lwIP includes an implementation of IPv4 ARP (Address Resolution Protocol) and IPv6 Neighbor Discovery Protocol to support Ethernet at the data link layer. lwIP may also be operated on top of a PPP (Point-to-Point Protocol) implementation at the data link layer.[citation needed]

At the transport layer lwIP implements TCP (Transmission Control Protocol) with congestion control, RTT estimation and fast recovery/fast retransmit.[4] UDP (User Datagram Protocol) is implemented with experimental UDP-Lite extensions.[citation needed]

APIs and sockets edit

lwIP provides a specialized no-copy application programming interface (API) for enhanced network stack performance. The Berkeley socket API is optional.[4] Raw sockets, or raw pcbs (protocol control blocks), are provided depending on the API used.[6]

Application layer support edit

At the application layer the lwIP network stack may be supported through the implementation of the following protocols. The DNS (Domain Name System), an SNMP (Simple Network Management Protocol) agent, in v1, v2 or v3, with private MIB (management information base) support and MIB compiler.

Operating systems that implement the lwIP TCP/IP stack may provide a range of supporting clients and servers at the application layer. Such as an IPv4 DHCP (Dynamic Host Configuration Protocol) client or IPv4 link-local addresses (AutoIP). Specialized raw API applications include: an HTTP server, a SNTP client, a SMTP client, a NetBIOS nameserver, a mDNS responder, a MQTT client and a TFTP server.[citation needed]

OS implementations edit

lwIP is used as network stack in ReactOS and Genode[7] and can be used in Minix and GNU Hurd to implement network servers.

See also edit

References edit

  1. ^ "lwIP 2.2.0 released". Retrieved 2023-10-11.
  2. ^ "Building Complex VDK/LwIP Applications Using Blackfin Processors ", Kaushal Sanghai, Analog Devices Inc. September 2008
  3. ^ Siva Velusamy, LightWeight IP (lwIP) Application Examples, Xilinx Inc. June 2009
  4. ^ a b c d e f Wu, Yanwen, ed. (2010). Software engineering and knowledge engineering : theory and practice. Berlin: Springer. p. 639. ISBN 978-3-642-03717-7.
  5. ^ "LwIP: Upgrading".
  6. ^ lwIP functions documentation
  7. ^ "Release notes for the Genode OS Framework 9.11".

External links edit

  • Adam Dunkels' initial Lwip paper
  • lwIP development
  • lwIP documentation wiki
  • lwIP functions documentation
  • lwIP former homepage (obsolete)
  • LwIP Usage Guide by Microchip (pdf)