In Android inter-process communication (IPC), Binder is more efficient than traditional sockets, pipes, and shared memory mainly due to its "one copy" mechanism. Compared with the traditional two copies (user state โ kernel state โ user state), Binder reduces one data copy through memory mapping (mmap) technology, thereby improving IPC transmission efficiency. So, how does Binder achieve "one copy"? This article will combine flowchart + code analysis to help you thoroughly understand this key technology! ๐ 1. Binder communication data copy processUsually, inter-process communication needs to go through a transmission link from sending process to kernel to receiving process. Let's first look at the common two-copy method, and then see how Binder optimizes it to "one copy". (1) Traditional IPC "double copy"In traditional IPC methods such as sockets or pipes, data needs to be copied twice: 1๏ธโฃ Sending process โ kernel buffer (first copy) 2๏ธโฃ Kernel buffer โ target process (second copy) ๐ Data transfer flow chart (two copies) picture Disadvantages: Data needs to be copied twice, which will generate additional CPU and memory overhead Question: How to reduce one copy and improve IPC transmission efficiency? (2) Binderโs โone copyโ optimizationThe Binder sending process (Client) sends data to the receiving process (Server), and the data is only copied once, avoiding the double copying of traditional IPC (user state โ kernel state โ user state). ๐Step 1: Send process mmap shared memory The sending process (Client) creates a Binder Buffer in its own user space through mmap(). This memory is managed by the Binder driver. ๐Step 2: The sending process initiates a request to the Binder driver ๐ The sending process (Client) submits data to the Binder driver: Data is written to mmap shared memory Binder driver resolves the target process The Binder driver searches for the mmap shared area of โโthe Server ๐Step 3: Binder driver copies data to the target process's mmap shared area ๐ Key Points: The Binder driver searches for the mmap shared memory of the Server process Binder directly copies the data to the shared Buffer of the Server process The server process directly reads the shared buffer ๐ Diagram: picture ๐ก Optimization points: Only copy once (Client โ Server mmap), avoiding the need for two copies in traditional IPC The server process does not need additional copying and can directly read data from the mmap shared memory ๐Step 4: Server reads data ๐ The server process directly reads the mmap shared buffer without the need for additional copying: 2. Key technology of one-time copy: Binder BufferThe key to Binder's "one copy" is the Binder Buffer mechanism. ๐ Core technical points: โ mmap maps shared memory: Binder allocates a shared buffer (Binder Buffer) in user space in advance through mmap, so that data can be copied directly between processes. โ Physical page sharing: The Binder driver manages physical pages in the kernel and maps this buffer to the address space of different processes to achieve cross-process access. โ User-mode data copying: Data is copied directly from the sending process to the mapping buffer of the receiving process without passing through the kernel buffer. mmap shared buffer diagram picture Function: This mmap shared memory allows multiple processes to share the same physical memory page, avoiding unnecessary data copying Key point: Data does not enter the kernel buffer, but is copied directly from the sending process to the receiving process 3. Core implementation of one copy (code analysis)The implementation of Binder Buffer mainly involves mmap shared memory mapping + copy_from_user() data copying. ๐ (1) Sending process: Applying for Binder Buffer A shared buffer is allocated through mmap(), which is managed by the Binder driver. ๐ (2) When sending data: the data is directly copied to the mapped memory of the target process The binder_write_read structure is used to point to the shared buffer, and the kernel directly operates this address for data transmission ๐ (3) The kernel copies data to the target process (one-time copy implementation) copy_from_user() copies data directly to the mapped area of โโthe target process 4. Summary: Why is Binder more efficient than traditional IPC?โ Binder shares memory through mmap to avoid double copying and improve IPC speed โ Binder uses physical page mapping to share data directly in user space โ Compared with traditional IPC (Socket, pipeline), Binder is more efficient when transmitting large blocks of data This article is reprinted from the WeChat public account "Happy Programmer". You can follow it through the QR code below. To reprint this article, please contact the Happy Programmer public account. |
<<: Still confused about Android Binder? This article will help you understand it in seconds!
>>: How much does brand promotion cost? How should companies promote their brands?
As a newbie in the operation circle, I still donโ...
With the development of the advertising and marke...
This should be one of the most watched non-human ...
[[123978]] In material design, images (whether pa...
Labs Guide With the continuous development of sci...
In order to better penetrate into various industr...
[[144435]] The path to advancement for technical ...
Regarding the channels of second-tier e-commerce,...
Now more and more companies choose to do SEO prom...
Good creative advertising can be quickly accepted...
Yu Jiawen became famous . I have no interest in d...
The article is a sharing of operational experienc...
Apple held its 2019 spring conference again, and ...
1. ASO optimization : internal and external integ...
Training course content: You are the boss, you co...