commit | 901ecf3f25ee468ede6c0a134452b8aacfafd1bb | [log] [tgz] |
---|---|---|
author | Tim Zimmermann <tim@linux4.de> | Sat Jun 15 19:57:38 2024 +0200 |
committer | Tim Zimmermann <tim@linux4.de> | Sat Jun 15 19:57:38 2024 +0200 |
tree | 9bbbb292ad37fb935142fb82e90deb108085cef3 | |
parent | 5bee35b49c3c3c2a026f69222f531dc2a66a4081 [diff] | |
parent | 255b3c3df04b8297a29036d7ac1241f12bb2c6aa [diff] |
Merge tag 'android-14.0.0_r50' into leaf-3.2 Android 14.0.0 Release 50 (AP2A.240605.024) * tag 'android-14.0.0_r50': (22 commits) Revert "Defaulting to libusb for all hosts, including Windows" Fix docs for "adb push --sync" to better match the implementation. (The relevant part of the implementation is at <https://android.googlesource.com/platform/packages/modules/adb/+/3dac5b70f053ca2988e9ac77eb64f55b9193acbb/client/file_sync_client.cpp#1051>.) Defaulting to libusb for all hosts, including Windows adbd: Mark as unregistered when failed Removing unused accessor & the immutable attribute Removing no-op adb_wifi_init() invocation. Fix return code of `adb shell` when device disconnects Refactor listener subsystem (smartsocket) Gracefully close smartsocket upon exit Don't include enable_server_sockets in adbd Followup to prior CL: removing libusb source link reference. Treating libusb init failure as non-fatal. Assorted fixes to accommodate libc++ upgrade Assign default bug component to targets in this directory. Fix Openscreen failing bind() on Mac OS Fix track-app documentation adb: Fix compiler error due to SetThreadDescription name collision Switching to libusb as the default for Linux host/servers. Removing unused initialization stub for wifi. Add transport_id to track-devices service ... Change-Id: I27e5015dc5aeec2971432ba9d707190a49c6c37a
If you are new to adb source code, you should start by reading OVERVIEW.TXT which describes the three components of adb pipeline.
This document is here to boost what can be achieved within a "window of naive interest". You will not find function or class documentation here but rather the "big picture" which should allow you to build a mental map to help navigate the code.
As outlined in the overview, this codebase generates three components (Client, Server (a.k.a Host), and Daemon (a.k.a adbd)). The central part is the Server which runs on the Host computer. On one side the Server exposes a "Smart Socket" to Clients such as adb or DDMLIB. On the other side, the Server continuously monitors for connecting Daemons (as USB devices or TCP emulator). Communication with a device is done with a Transport.
+----------+ +------------------------+ | ADB +----------+ | ADB SERVER | +----------+ | CLIENT | | | | (USB)| ADBD | +----------+ | | Transport+-------------+ (DEVICE) | | | | +----------+ +----------- | | | | ADB | v + | +----------+ | CLIENT +--------->SmartSocket | (USB)| ADBD | +----------+ ^ | (TCP/IP) Transport+-------------+ (DEVICE) | | | | +----------+ +----------+ | | | | DDMLIB | | | Transport+--+ +----------+ | CLIENT +----------+ | | | (TCP/IP)| ADBD | +----------+ +------------------------+ +----------|(EMULATOR)| +----------+
The Client and the Server are contained in the same executable and both run on the Host machine. Code sections specific to the Host is enclosed within ADB_HOST
guard. adbd runs on the Android Device. Daemon specific code is enclosed in !ADB_HOST
but also sometimes with-in __ANDROID__
guard.
A smart socket is a simple TCP socket with a smart protocol built on top of it. This is what Clients connect onto from the Host side. The Client must always initiate communication via a human readable request but the response format varies. The smart protocol is documented in SERVICES.TXT.
On the other side, the Server communicates with a device via a Transport. adb initially targeted devices connecting over USB, which is restricted to a fixed number of data streams. Therefore, adb multiplexes multiple byte streams over a single pipe via Transport. When devices connecting over other mechanisms (e.g. emulators over TCP) were introduced, the existing transport protocol was maintained.
At the heart of both the Server and Daemon is a main thread running an fdevent loop, which is a platform-independent abstraction over poll/epoll/WSAPoll monitoring file descriptors events. Requests and services are usually served from the main thread but some service requests result in new threads being spawned.
To allow for operations to run on the Main thread, fdevent features a RunQueue combined with an interrupt fd to force polling to return.
+------------+ +-------------------------^ | RUNQUEUE | | | +------------+ | POLLING (Main thread) | | Function<> | | | +------------+ | | | Function<> | ^-^-------^-------^------^^ +------------+ | | | | | ... | | | | | +------------+ | | | | | | | | | | |============| | | | | |Interrupt fd+------+ +----+ +----+ +----+ +------------+ fd Socket Pipe
The asocket, apacket, and amessage constructs exist only to wrap data while it transits on a Transport. An asocket handles a stream of apackets. An apacket consists in a amessage header featuring a command (A_SYNC
, A_OPEN
, A_CLSE
, A_WRTE
, A_OKAY
, ...) followed by a payload (find more documentation in protocol.txt. There is no A_READ
command because an asocket is unidirectional. To model a bi-directional stream, asocket have a peer which go in the opposite direction.
An asocket features a buffer where the elemental unit is an apacket. If traffic is inbound, the buffer stores the apacket until it is consumed. If the traffic is oubound, the buffer stores apackets until they are sent down the wire (with A_WRTE
commands).
+---------------------ASocket------------------------+ | | | +----------------APacket Queue------------------+ | | | | | | | APacket APacket APacket | | | | +--------+ +--------+ +--------+ | | | | |AMessage| |AMessage| |AMessage| | | | | +--------+ +--------+ +--------+ | | | | | | | | | | | | | | ..... | | | | | | | | | | | Data | | Data | | Data | | | | | | | | | | | | | | | | | | | | | | | | | +--------+ +--------+ +--------+ | | | | | | | +-----------------------------------------------+ | +---------------------------------------------------+
This system allows to multiplex data streams on an unique byte stream. Without entering too much into details, the amessage fields arg1 and arg2 are used alike in the TCP protocol where local and remote ports identify an unique stream. Note that unlike TCP which feature an "unacknowledged-send window", an apacket is sent only after the previous one has been confirmed to be received.
The two types of asocket (Remote and Local) differentiate between outbound and inbound traffic.
This pipeline is detailed in daemon/jdwp_service.cpp with ASCII drawings! The JDWP extension implemented by Dalvik/ART are documented in:
$ ./benchmark_device.py sink 100MiB: 10 runs: median 27.00 MiB/s, mean 26.39 MiB/s, stddev: 1.11 MiB/s source 100MiB: 10 runs: median 36.97 MiB/s, mean 37.05 MiB/s, stddev: 0.46 MiB/s push 100MiB: 10 runs: median 331.96 MiB/s, mean 329.81 MiB/s, stddev: 14.67 MiB/s pull 100MiB: 10 runs: median 34.55 MiB/s, mean 33.57 MiB/s, stddev: 2.54 MiB/s