• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

tests/23-Mar-2024-2,0961,505

Android.mkD23-Mar-20244.8 KiB170139

OWNERSD23-Mar-202438 32

THREADING.READMED23-Mar-20241.9 KiB3632

android.hardware.wifi@1.0-service-lazy.rcD23-Mar-2024258 98

android.hardware.wifi@1.0-service.rcD23-Mar-2024338 98

hidl_callback_util.hD23-Mar-20243.8 KiB12583

hidl_return_util.hD23-Mar-20244.6 KiB12179

hidl_struct_util.cppD23-Mar-2024111.1 KiB2,7022,498

hidl_struct_util.hD23-Mar-20248.5 KiB197158

hidl_sync_util.cppD23-Mar-20241.1 KiB4019

hidl_sync_util.hD23-Mar-20241.2 KiB3817

ringbuffer.cppD23-Mar-20241.5 KiB5532

ringbuffer.hD23-Mar-20241.4 KiB5425

service.cppD23-Mar-20242.6 KiB7448

wifi.cppD23-Mar-20248.1 KiB221178

wifi.hD23-Mar-20243.5 KiB10163

wifi_ap_iface.cppD23-Mar-20244.2 KiB11987

wifi_ap_iface.hD23-Mar-20242.7 KiB8148

wifi_chip.cppD23-Mar-202460.7 KiB1,5461,318

wifi_chip.hD23-Mar-202413.2 KiB282224

wifi_feature_flags.cppD23-Mar-20246 KiB16986

wifi_feature_flags.hD23-Mar-20241.6 KiB5729

wifi_iface_util.cppD23-Mar-20243.8 KiB11989

wifi_iface_util.hD23-Mar-20242.5 KiB7638

wifi_legacy_hal.cppD23-Mar-202460.7 KiB1,4561,249

wifi_legacy_hal.hD23-Mar-202419 KiB405281

wifi_legacy_hal_stubs.cppD23-Mar-20246.7 KiB149127

wifi_legacy_hal_stubs.hD23-Mar-20241.1 KiB3717

wifi_mode_controller.cppD23-Mar-20242.5 KiB9265

wifi_mode_controller.hD23-Mar-20241.9 KiB6429

wifi_nan_iface.cppD23-Mar-202437.4 KiB888785

wifi_nan_iface.hD23-Mar-20247.4 KiB169131

wifi_p2p_iface.cppD23-Mar-20242.1 KiB6739

wifi_p2p_iface.hD23-Mar-20241.9 KiB6734

wifi_rtt_controller.cppD23-Mar-202411.1 KiB278233

wifi_rtt_controller.hD23-Mar-20244.5 KiB10774

wifi_sta_iface.cppD23-Mar-202427.1 KiB648563

wifi_sta_iface.hD23-Mar-20248.1 KiB180147

wifi_status_util.cppD23-Mar-20243.7 KiB10775

wifi_status_util.hD23-Mar-20241.5 KiB4623

THREADING.README

1Vendor HAL Threading Model
2==========================
3The vendor HAL service has two threads:
41. HIDL thread: This is the main thread which processes all the incoming HIDL
5RPC's.
62. Legacy HAL event loop thread: This is the thread forked off for processing
7the legacy HAL event loop (wifi_event_loop()). This thread is used to process
8any asynchronous netlink events posted by the driver. Any asynchronous
9callbacks passed to the legacy HAL API's are invoked on this thread.
10
11Synchronization Concerns
12========================
13wifi_legacy_hal.cpp has a bunch of global "C" style functions to handle the
14legacy callbacks. Each of these "C" style function invokes a corresponding
15"std::function" version of the callback which does the actual processing.
16The variables holding these "std::function" callbacks are reset from the HIDL
17thread when they are no longer used. For example: stopGscan() will reset the
18corresponding "on_gscan_*" callback variables which were set when startGscan()
19was invoked. This is not thread safe since these callback variables are
20accesed from the legacy hal event loop thread as well.
21
22Synchronization Solution
23========================
24Adding a global lock seems to be the most trivial solution to the problem.
25a) All of the asynchronous "C" style callbacks will acquire the global lock
26before invoking the corresponding "std::function" callback variables.
27b) All of the HIDL methods will also acquire the global lock before processing
28(in hidl_return_util::validateAndCall()).
29
30Note: It's important that we only acquire the global lock for asynchronous
31callbacks, because there is no guarantee (or documentation to clarify) that the
32synchronous callbacks are invoked on the same invocation thread. If that is not
33the case in some implementation, we will end up deadlocking the system since the
34HIDL thread would have acquired the global lock which is needed by the
35synchronous callback executed on the legacy hal event loop thread.
36