search
HomeSystem TutorialLINUXBriefly describe the process of sending and receiving network data packets in Linux system
Briefly describe the process of sending and receiving network data packets in Linux systemFeb 12, 2024 pm 09:54 PM
linuxlinux tutoriallinux systemlinux commandshell scriptNIC driveroverflowembeddedlinuxGetting started with linuxlinux learning

Linux server receives network data packets, what processing needs to be done, and how does it pass the data to the application process step by step? When an application process sends a data packet, how does Linux send the data packet out? Today we will talk about this topic.

Before it is ready to receive network data packets, Linux needs to do a lot of preparation work, such as: initialization of the network subsystem, registration of the protocol stack, initialization of the network card driver, starting the network card, etc. Only after these are ready, Only then can you actually start receiving network packets.

Network Protocol Stack


Before introducing Linux to send and receive network data packets, let us first understand the Linux network protocol stack.

The International Organization for Standardization has formulated the Open System Interconnection Reference Model, which is the OSI network model. The model mainly has 7 layers, namely application layer, presentation layer, session layer, transport layer, Network layer, data link layer and physical layer.

Because the OSI model is too complex, it is only a conceptual and theoretical model with too many layers, which increases the complexity of network work, so it has not been applied on a large scale.
The most common one we use is the TCP/IP network model. The Linux system implements the network protocol stack according to this network model.

The TCP/IP network model has 4 layers, namely application layer, transport layer, network layer and network interface layer. The functions of each layer are as follows:

1, Application layer Corresponds to the upper layer of the OSI reference model, providing users with various services required, such as: FTP, Telnet, DNS, SMTP, etc.

2, Transport layer Corresponds to the transport layer of the OSI reference model, which provides end-to-end communication functions for application layer entities, ensuring the sequential transmission of data packets and the integrity of data. This layer defines two main protocols: Transmission Control Protocol (TCP) and User Datagram Protocol (UDP).

3, Network layer Corresponds to the network layer of the OSI reference model and mainly solves host-to-host communication problems. It contains protocols designed for the logical transmission of data packets throughout the network. It focuses on reassigning an IP address to the host to complete the addressing of the host. It is also responsible for routing data packets in various networks. There are three main protocols in this layer: Internet Protocol (IP), Internet Group Management Protocol (IGMP), and Internet Control Message Protocol (ICMP).

4, Network interface layer Corresponds to the physical layer and data link layer in the OSI reference model. It is responsible for monitoring the exchange of data between the host and the network. In fact, TCP/IP itself does not define the protocol of this layer. Instead, each network participating in the interconnection uses its own physical layer and data link layer protocols, and then connects to the network access layer of TCP/IP. Address Resolution Protocol (ARP) works at this layer, the data link layer of the OSI reference model.
Briefly describe the process of sending and receiving network data packets in Linux system

Receive network data packet


Briefly describe the process of sending and receiving network data packets in Linux system

After the network data packet reaches the network card, it is stored in the receiving queue of the network card in FIFO order. The network card writes the network packet to the specified memory address (Ring Buffer) through DMA technology.

Ring Buffer is created and initialized when the network card driver starts, and stores the descriptor of the sk_buff buffer (physical address and size, etc.).

When the network packet arrives, get the pointed sk_buff descriptor from the Ring Buffer and write the data to the address through DMA. After the data in sk_buff is handed over to the upper protocol stack for processing, the description in the Ring Buffer is updated to the newly allocated sk_buff.

Then the network card initiates a hardware interrupt to the CPU. When the CPU receives the hardware interrupt request, it finds the registered interrupt processing function according to the interrupt registry.

The hardware interrupt handling function will do the following things:

1. Shield the interruption of the network card

The purpose is to prevent the CPU from being frequently interrupted and unable to handle other tasks. Masking interrupts tells the network card that it already knows that there is data in the memory. Next time it receives a data packet, it can just write to the memory directly without notifying the CPU.

2. Initiate a soft interrupt and restore the interrupt just blocked

After the ksoftirqd thread in the kernel receives the soft interrupt, it will call the corresponding soft interrupt processing function to poll and process the data, that is: obtain a data frame from the Ring Buffer, represented by sk_buff, and hand it over as a network packet The network protocol stack is processed layer by layer from bottom to top.

The network protocol stack processes network packets as follows:

1. Network interface layer

First, the network interface layer checks the legality and correctness of the message. If it is illegal or the message verification is incorrect, discard it. Otherwise, find out the type of upper layer protocol (IPv4 or IPv6) and remove the frame header and frame tail. , and then handed over to the upper layer, the network layer, for processing.

2. Network layer

The network layer takes out the IP header and determines the next direction of the network packet, whether it is forwarded or handed over to the upper layer. After confirming that the network packet is to be sent to the local machine, the type of the upper layer protocol (such as TCP or UDP) is taken out, the IP header is removed, and then handed over to the transport layer for processing.

3. Transport layer

After the transport layer takes out the TCP header or UDP header, it finds the corresponding Socket based on the four-tuple [source IP, source port, destination IP, destination port], and copies the data to the Socket's receive buffer.

4. Application layer

Finally, the application layer program calls the Socket interface to copy the data in the kernel's Socket receiving buffer to the application layer buffer.

At this point, the receiving process of a network packet is over.

Send network packet


After we understand the receiving process of network packets, it is easy to understand the sending process of network packets. The sending direction of network packets is exactly opposite to the receiving direction.

First, the application calls the Socket interface to send network packets. This is a system call that will fall from user mode into the socket layer of kernel mode.

The socket layer will apply for a kernel-mode sk_buff memory, copy the data to be sent by the user to the sk_buff memory, and add it to the Socket sending buffer to wait for processing by the network protocol stack.

Since network data packets are raw data when transmitted from the application to the kernel, the protocol stack must add communication conventions to the raw data to ensure that the data can be correctly recognized when it reaches the server. The network protocol stack takes out the data packet from the Socket sending buffer, and then processes it layer by layer from top to bottom according to the layers of the TCP/IP stack (transport layer, network layer, network interface layer). Each layer converts the protocol header Information is continuously inserted into data packets.

The protocol stack's processing flow for sending data packets is as follows:

1. Transport layer

At the transport layer, the TCP header will be added to the server and a new copy of sk_buff will be copied. This is because sk_buff will be released when it reaches the network card and the transmission is completed, and the TCP protocol supports retransmission. To ensure Network packets are transmitted reliably. This sk_buff cannot be deleted before receiving the ACK from the other party.

2. Network layer

At the network layer, it mainly does the following work: selecting routes (confirming the IP of the next hop), filling in IP headers, netfilter filtering, and fragmenting data packets that exceed the MTU size. After processing these tasks, it will be handed over to the network interface layer for processing.

3. Network interface layer

The network interface layer will perform physical address addressing to find the MAC address of the next hop, fill in the frame header and frame trailer, and put it in the sending queue. Then trigger a soft interrupt to tell the network card driver: There are new network packets in the queue that need to be sent. When the driver receives the notification, it will read the network frame from the send packet queue through DMA, and write the data into the FIFO send queue of the network card through DMA.

4. Network card equipment

The network card device takes out the data packet from the FIFO transmission queue and sends it to the network; when the transmission is completed, the network card device will trigger a hard interrupt to release memory, mainly to release sk_buff memory and clean up RingBuffer memory. Finally, when the ACK response of this TCP message is received, the transport layer will release the original sk_buff.

At this point, the process of sending a network packet is over.

The above is the detailed content of Briefly describe the process of sending and receiving network data packets in Linux system. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:良许Linux教程网. If there is any infringement, please contact admin@php.cn delete
什么是linux设备节点什么是linux设备节点Apr 18, 2022 pm 08:10 PM

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

Linux中open和fopen的区别有哪些Linux中open和fopen的区别有哪些Apr 29, 2022 pm 06:57 PM

区别:1、open是UNIX系统调用函数,而fopen是ANSIC标准中的C语言库函数;2、open的移植性没fopen好;3、fopen只能操纵普通正规文件,而open可以操作普通文件、网络套接字等;4、open无缓冲,fopen有缓冲。

linux中什么叫端口映射linux中什么叫端口映射May 09, 2022 pm 01:49 PM

端口映射又称端口转发,是指将外部主机的IP地址的端口映射到Intranet中的一台计算机,当用户访问外网IP的这个端口时,服务器自动将请求映射到对应局域网内部的机器上;可以通过使用动态或固定的公共网络IP路由ADSL宽带路由器来实现。

linux中eof是什么linux中eof是什么May 07, 2022 pm 04:26 PM

在linux中,eof是自定义终止符,是“END Of File”的缩写;因为是自定义的终止符,所以eof就不是固定的,可以随意的设置别名,linux中按“ctrl+d”就代表eof,eof一般会配合cat命令用于多行文本输出,指文件末尾。

linux怎么判断pcre是否安装linux怎么判断pcre是否安装May 09, 2022 pm 04:14 PM

在linux中,可以利用“rpm -qa pcre”命令判断pcre是否安装;rpm命令专门用于管理各项套件,使用该命令后,若结果中出现pcre的版本信息,则表示pcre已经安装,若没有出现版本信息,则表示没有安装pcre。

linux怎么查询mac地址linux怎么查询mac地址Apr 24, 2022 pm 08:01 PM

linux查询mac地址的方法:1、打开系统,在桌面中点击鼠标右键,选择“打开终端”;2、在终端中,执行“ifconfig”命令,查看输出结果,在输出信息第四行中紧跟“ether”单词后的字符串就是mac地址。

linux中rpc是什么意思linux中rpc是什么意思May 07, 2022 pm 04:48 PM

在linux中,rpc是远程过程调用的意思,是Reomote Procedure Call的缩写,特指一种隐藏了过程调用时实际通信细节的IPC方法;linux中通过RPC可以充分利用非共享内存的多处理器环境,提高系统资源的利用率。

什么是linux交叉编译什么是linux交叉编译Apr 29, 2022 pm 06:47 PM

在linux中,交叉编译是指在一个平台上生成另一个平台上的可执行代码,即编译源代码的平台和执行源代码编译后程序的平台是两个不同的平台。使用交叉编译的原因:1、目标系统没有能力在其上进行本地编译;2、有能力进行源代码编译的平台与目标平台不同。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment