It is no exaggeration to say that today's Internet is built on TCP/IP. Understanding the principles of the protocol stack is very helpful for debugging network IO performance and solving network problems. This article will take you to see how the kernel controls network data flow.
TCP Features We all know that the original intention of TCP protocol design is to ensure fast, orderly and error-free data transmission. So the characteristics are summarized as follows:
After understanding the characteristics of TCP, let's take a look at the actual process of data transmission. Data transmission Let’s first look at the picture: The figure above shows the process of data flow in hardware, and the figure below shows the process of data in the protocol stack: The whole process is divided into three major areas: user area, kernel area, and device. The device here is the network card. The process is as follows:
Data Reception Look directly at the hardware data flow diagram: First, the NIC writes the received data packet into its memory. Then it verifies it and sends it to the host's main memory. The buffer in the main memory is allocated by the driver, and the driver will tell the NIC the allocated buffer description. If there is not enough buffer to receive the NIC's data packet, the NIC will discard the data packet. Once the data packet is copied to the main memory, the NIC will inform the host OS through an interrupt. The driver then checks if it can handle the new packet. If it can, the driver will package the data packet into a structure that the OS recognizes (linux sk_buffer) and push it to the upper layer. After the link layer receives the frame and checks if it passes, it will deframe it according to the protocol and push it to the IP layer. After unpacking, the IP layer will decide whether to push the packet to the upper layer or forward it to other IPs based on the IP information contained in the packet. If it is determined that it needs to be pushed to the upper layer, the IP header will be unpacked and pushed to the TCP layer. After decoding the message, TCP will find the corresponding TCB according to its four-tuple, and then process the message through the TCP protocol. After receiving the message, it will add the message to the receiving message, and then send an ACK to the other end according to the TCP status. Of course, the above process will be affected by NAT and other Netfilters, which we will not discuss here and have not studied in depth. Of course, for the sake of performance, experts have also made a lot of efforts in various aspects, such as RDMA, DPDK and other major software and hardware technologies, and zero-copy, checksum offload, etc.; Summarize Modern hardware and software TCP/IP protocol stacks have no problem sending 1~2GiB/s over a single link (tested). If you want to explore better performance, you can try technologies such as RMDA, which optimize performance by bypassing the kernel to reduce copying, etc., but this may depend on the hardware. |
<<: 5G, edge computing and IoT are expected to reshape networks
>>: OSI seven-layer and TCP five-layer protocols, why TCP/IP protocol wins
Is your router often turned off? Anyway, I will n...
Reporters found that while measures to benefit th...
[51CTO.com original article] Entering 2017, the r...
With the transformation from "Made in China&...
[[433809]] This article is reprinted from the WeC...
[[435113]] Mobile edge computing, artificial inte...
I2C Transfer Definition of timing To explore the ...
On August 21, 2018, Huawei held a cloud managemen...
We have previously discussed the importance of AP...
[[425909]] This article is reprinted from the WeC...
October 11, 2023 – Akamai Technologies, Inc. (NAS...
There is only half a month left in 2023, and vari...
In 2020, the country's top leadership has cla...
[[391129]] On March 31, the "2021 Digital Tr...
01/ Let’s start with the developers’ worries When...