2016-09-29 18:03:59 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <array>
|
|
|
|
|
|
|
|
#include <android-base/logging.h>
|
|
|
|
#include <cutils/properties.h>
|
|
|
|
|
2016-10-28 18:42:44 +02:00
|
|
|
#include "wifi_legacy_hal.h"
|
2016-12-12 17:53:34 +01:00
|
|
|
#include "wifi_legacy_hal_stubs.h"
|
2016-11-18 23:07:54 +01:00
|
|
|
|
2016-10-28 18:42:44 +02:00
|
|
|
namespace android {
|
|
|
|
namespace hardware {
|
|
|
|
namespace wifi {
|
|
|
|
namespace V1_0 {
|
|
|
|
namespace implementation {
|
|
|
|
namespace legacy_hal {
|
2016-10-28 19:33:34 +02:00
|
|
|
// Constants ported over from the legacy HAL calling code
|
|
|
|
// (com_android_server_wifi_WifiNative.cpp). This will all be thrown
|
|
|
|
// away when this shim layer is replaced by the real vendor
|
|
|
|
// implementation.
|
2016-10-28 18:54:26 +02:00
|
|
|
static constexpr uint32_t kMaxVersionStringLength = 256;
|
2016-10-28 19:33:34 +02:00
|
|
|
static constexpr uint32_t kMaxCachedGscanResults = 64;
|
|
|
|
static constexpr uint32_t kMaxGscanFrequenciesForBand = 64;
|
2016-10-28 19:38:21 +02:00
|
|
|
static constexpr uint32_t kLinkLayerStatsDataMpduSizeThreshold = 128;
|
2016-10-28 19:43:51 +02:00
|
|
|
static constexpr uint32_t kMaxWakeReasonStatsArraySize = 32;
|
|
|
|
static constexpr uint32_t kMaxRingBuffers = 10;
|
2016-10-28 18:54:26 +02:00
|
|
|
|
2016-09-29 18:03:59 +02:00
|
|
|
// Legacy HAL functions accept "C" style function pointers, so use global
|
|
|
|
// functions to pass to the legacy HAL function and store the corresponding
|
|
|
|
// std::function methods to be invoked.
|
|
|
|
// Callback to be invoked once |stop| is complete.
|
|
|
|
std::function<void(wifi_handle handle)> on_stop_complete_internal_callback;
|
|
|
|
void onStopComplete(wifi_handle handle) {
|
|
|
|
if (on_stop_complete_internal_callback) {
|
|
|
|
on_stop_complete_internal_callback(handle);
|
|
|
|
}
|
|
|
|
}
|
2016-10-03 23:09:57 +02:00
|
|
|
|
|
|
|
// Callback to be invoked for driver dump.
|
|
|
|
std::function<void(char*, int)> on_driver_memory_dump_internal_callback;
|
|
|
|
void onDriverMemoryDump(char* buffer, int buffer_size) {
|
|
|
|
if (on_driver_memory_dump_internal_callback) {
|
|
|
|
on_driver_memory_dump_internal_callback(buffer, buffer_size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Callback to be invoked for firmware dump.
|
|
|
|
std::function<void(char*, int)> on_firmware_memory_dump_internal_callback;
|
|
|
|
void onFirmwareMemoryDump(char* buffer, int buffer_size) {
|
|
|
|
if (on_firmware_memory_dump_internal_callback) {
|
|
|
|
on_firmware_memory_dump_internal_callback(buffer, buffer_size);
|
|
|
|
}
|
|
|
|
}
|
2016-10-28 19:33:34 +02:00
|
|
|
|
|
|
|
// Callback to be invoked for Gscan events.
|
|
|
|
std::function<void(wifi_request_id, wifi_scan_event)>
|
|
|
|
on_gscan_event_internal_callback;
|
|
|
|
void onGscanEvent(wifi_request_id id, wifi_scan_event event) {
|
|
|
|
if (on_gscan_event_internal_callback) {
|
|
|
|
on_gscan_event_internal_callback(id, event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Callback to be invoked for Gscan full results.
|
|
|
|
std::function<void(wifi_request_id, wifi_scan_result*, uint32_t)>
|
|
|
|
on_gscan_full_result_internal_callback;
|
|
|
|
void onGscanFullResult(wifi_request_id id,
|
|
|
|
wifi_scan_result* result,
|
|
|
|
uint32_t buckets_scanned) {
|
|
|
|
if (on_gscan_full_result_internal_callback) {
|
|
|
|
on_gscan_full_result_internal_callback(id, result, buckets_scanned);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-28 19:38:21 +02:00
|
|
|
// Callback to be invoked for link layer stats results.
|
|
|
|
std::function<void((wifi_request_id, wifi_iface_stat*, int, wifi_radio_stat*))>
|
|
|
|
on_link_layer_stats_result_internal_callback;
|
2016-12-06 19:04:05 +01:00
|
|
|
void onLinkLayerStatsResult(wifi_request_id id,
|
|
|
|
wifi_iface_stat* iface_stat,
|
|
|
|
int num_radios,
|
|
|
|
wifi_radio_stat* radio_stat) {
|
2016-10-28 19:38:21 +02:00
|
|
|
if (on_link_layer_stats_result_internal_callback) {
|
|
|
|
on_link_layer_stats_result_internal_callback(
|
|
|
|
id, iface_stat, num_radios, radio_stat);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-06 19:04:05 +01:00
|
|
|
// Callback to be invoked for rssi threshold breach.
|
|
|
|
std::function<void((wifi_request_id, uint8_t*, int8_t))>
|
|
|
|
on_rssi_threshold_breached_internal_callback;
|
|
|
|
void onRssiThresholdBreached(wifi_request_id id, uint8_t* bssid, int8_t rssi) {
|
|
|
|
if (on_rssi_threshold_breached_internal_callback) {
|
|
|
|
on_rssi_threshold_breached_internal_callback(id, bssid, rssi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-28 19:43:51 +02:00
|
|
|
// Callback to be invoked for ring buffer data indication.
|
|
|
|
std::function<void(char*, char*, int, wifi_ring_buffer_status*)>
|
|
|
|
on_ring_buffer_data_internal_callback;
|
|
|
|
void onRingBufferData(char* ring_name,
|
|
|
|
char* buffer,
|
|
|
|
int buffer_size,
|
|
|
|
wifi_ring_buffer_status* status) {
|
|
|
|
if (on_ring_buffer_data_internal_callback) {
|
|
|
|
on_ring_buffer_data_internal_callback(
|
|
|
|
ring_name, buffer, buffer_size, status);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-28 20:23:11 +02:00
|
|
|
// Callback to be invoked for rtt results results.
|
|
|
|
std::function<void(
|
|
|
|
wifi_request_id, unsigned num_results, wifi_rtt_result* rtt_results[])>
|
|
|
|
on_rtt_results_internal_callback;
|
|
|
|
void onRttResults(wifi_request_id id,
|
|
|
|
unsigned num_results,
|
|
|
|
wifi_rtt_result* rtt_results[]) {
|
|
|
|
if (on_rtt_results_internal_callback) {
|
|
|
|
on_rtt_results_internal_callback(id, num_results, rtt_results);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-28 20:27:40 +02:00
|
|
|
// Callbacks for the various NAN operations.
|
|
|
|
// NOTE: These have very little conversions to perform before invoking the user
|
|
|
|
// callbacks.
|
|
|
|
// So, handle all of them here directly to avoid adding an unnecessary layer.
|
|
|
|
std::function<void(transaction_id, const NanResponseMsg&)>
|
|
|
|
on_nan_notify_response_user_callback;
|
|
|
|
void onNanNotifyResponse(transaction_id id, NanResponseMsg* msg) {
|
|
|
|
if (on_nan_notify_response_user_callback && msg) {
|
|
|
|
on_nan_notify_response_user_callback(id, *msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::function<void(const NanPublishTerminatedInd&)>
|
|
|
|
on_nan_event_publish_terminated_user_callback;
|
|
|
|
void onNanEventPublishTerminated(NanPublishTerminatedInd* event) {
|
|
|
|
if (on_nan_event_publish_terminated_user_callback && event) {
|
|
|
|
on_nan_event_publish_terminated_user_callback(*event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::function<void(const NanMatchInd&)> on_nan_event_match_user_callback;
|
|
|
|
void onNanEventMatch(NanMatchInd* event) {
|
|
|
|
if (on_nan_event_match_user_callback && event) {
|
|
|
|
on_nan_event_match_user_callback(*event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::function<void(const NanMatchExpiredInd&)>
|
|
|
|
on_nan_event_match_expired_user_callback;
|
|
|
|
void onNanEventMatchExpired(NanMatchExpiredInd* event) {
|
|
|
|
if (on_nan_event_match_expired_user_callback && event) {
|
|
|
|
on_nan_event_match_expired_user_callback(*event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::function<void(const NanSubscribeTerminatedInd&)>
|
|
|
|
on_nan_event_subscribe_terminated_user_callback;
|
|
|
|
void onNanEventSubscribeTerminated(NanSubscribeTerminatedInd* event) {
|
|
|
|
if (on_nan_event_subscribe_terminated_user_callback && event) {
|
|
|
|
on_nan_event_subscribe_terminated_user_callback(*event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::function<void(const NanFollowupInd&)> on_nan_event_followup_user_callback;
|
|
|
|
void onNanEventFollowup(NanFollowupInd* event) {
|
|
|
|
if (on_nan_event_followup_user_callback && event) {
|
|
|
|
on_nan_event_followup_user_callback(*event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::function<void(const NanDiscEngEventInd&)>
|
|
|
|
on_nan_event_disc_eng_event_user_callback;
|
|
|
|
void onNanEventDiscEngEvent(NanDiscEngEventInd* event) {
|
|
|
|
if (on_nan_event_disc_eng_event_user_callback && event) {
|
|
|
|
on_nan_event_disc_eng_event_user_callback(*event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::function<void(const NanDisabledInd&)> on_nan_event_disabled_user_callback;
|
|
|
|
void onNanEventDisabled(NanDisabledInd* event) {
|
|
|
|
if (on_nan_event_disabled_user_callback && event) {
|
|
|
|
on_nan_event_disabled_user_callback(*event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::function<void(const NanTCAInd&)> on_nan_event_tca_user_callback;
|
|
|
|
void onNanEventTca(NanTCAInd* event) {
|
|
|
|
if (on_nan_event_tca_user_callback && event) {
|
|
|
|
on_nan_event_tca_user_callback(*event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::function<void(const NanBeaconSdfPayloadInd&)>
|
|
|
|
on_nan_event_beacon_sdf_payload_user_callback;
|
|
|
|
void onNanEventBeaconSdfPayload(NanBeaconSdfPayloadInd* event) {
|
|
|
|
if (on_nan_event_beacon_sdf_payload_user_callback && event) {
|
|
|
|
on_nan_event_beacon_sdf_payload_user_callback(*event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::function<void(const NanDataPathRequestInd&)>
|
|
|
|
on_nan_event_data_path_request_user_callback;
|
|
|
|
void onNanEventDataPathRequest(NanDataPathRequestInd* event) {
|
|
|
|
if (on_nan_event_data_path_request_user_callback && event) {
|
|
|
|
on_nan_event_data_path_request_user_callback(*event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
std::function<void(const NanDataPathConfirmInd&)>
|
|
|
|
on_nan_event_data_path_confirm_user_callback;
|
|
|
|
void onNanEventDataPathConfirm(NanDataPathConfirmInd* event) {
|
|
|
|
if (on_nan_event_data_path_confirm_user_callback && event) {
|
|
|
|
on_nan_event_data_path_confirm_user_callback(*event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::function<void(const NanDataPathEndInd&)>
|
|
|
|
on_nan_event_data_path_end_user_callback;
|
|
|
|
void onNanEventDataPathEnd(NanDataPathEndInd* event) {
|
|
|
|
if (on_nan_event_data_path_end_user_callback && event) {
|
|
|
|
on_nan_event_data_path_end_user_callback(*event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::function<void(const NanTransmitFollowupInd&)>
|
|
|
|
on_nan_event_transmit_follow_up_user_callback;
|
|
|
|
void onNanEventTransmitFollowUp(NanTransmitFollowupInd* event) {
|
|
|
|
if (on_nan_event_transmit_follow_up_user_callback && event) {
|
|
|
|
on_nan_event_transmit_follow_up_user_callback(*event);
|
|
|
|
}
|
|
|
|
}
|
2016-10-28 18:42:44 +02:00
|
|
|
// End of the free-standing "C" style callbacks.
|
2016-09-29 18:03:59 +02:00
|
|
|
|
|
|
|
WifiLegacyHal::WifiLegacyHal()
|
|
|
|
: global_handle_(nullptr),
|
|
|
|
wlan_interface_handle_(nullptr),
|
2016-12-09 19:26:17 +01:00
|
|
|
awaiting_event_loop_termination_(false),
|
|
|
|
is_started_(false) {}
|
2016-09-29 18:03:59 +02:00
|
|
|
|
2016-11-18 23:07:54 +01:00
|
|
|
wifi_error WifiLegacyHal::initialize() {
|
2016-12-09 19:26:17 +01:00
|
|
|
LOG(DEBUG) << "Initialize legacy HAL";
|
2016-10-28 18:42:44 +02:00
|
|
|
// TODO: Add back the HAL Tool if we need to. All we need from the HAL tool
|
|
|
|
// for now is this function call which we can directly call.
|
2016-12-12 17:53:34 +01:00
|
|
|
if (!initHalFuncTableWithStubs(&global_func_table_)) {
|
|
|
|
LOG(ERROR) << "Failed to initialize legacy hal function table with stubs";
|
|
|
|
return WIFI_ERROR_UNKNOWN;
|
|
|
|
}
|
2016-10-28 18:42:44 +02:00
|
|
|
wifi_error status = init_wifi_vendor_hal_func_table(&global_func_table_);
|
|
|
|
if (status != WIFI_SUCCESS) {
|
2016-10-03 22:33:23 +02:00
|
|
|
LOG(ERROR) << "Failed to initialize legacy hal function table";
|
|
|
|
return WIFI_ERROR_UNKNOWN;
|
|
|
|
}
|
2016-11-18 23:07:54 +01:00
|
|
|
return WIFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::start() {
|
|
|
|
// Ensure that we're starting in a good state.
|
|
|
|
CHECK(global_func_table_.wifi_initialize && !global_handle_ &&
|
|
|
|
!wlan_interface_handle_ && !awaiting_event_loop_termination_);
|
2016-12-09 19:26:17 +01:00
|
|
|
if (is_started_) {
|
|
|
|
LOG(DEBUG) << "Legacy HAL already started";
|
|
|
|
return WIFI_SUCCESS;
|
|
|
|
}
|
|
|
|
LOG(DEBUG) << "Starting legacy HAL";
|
2016-11-18 23:07:54 +01:00
|
|
|
if (!iface_tool_.SetWifiUpState(true)) {
|
2016-10-03 22:33:23 +02:00
|
|
|
LOG(ERROR) << "Failed to set WiFi interface up";
|
|
|
|
return WIFI_ERROR_UNKNOWN;
|
|
|
|
}
|
2016-11-18 23:07:54 +01:00
|
|
|
wifi_error status = global_func_table_.wifi_initialize(&global_handle_);
|
2016-09-29 18:03:59 +02:00
|
|
|
if (status != WIFI_SUCCESS || !global_handle_) {
|
|
|
|
LOG(ERROR) << "Failed to retrieve global handle";
|
|
|
|
return status;
|
|
|
|
}
|
2016-12-09 19:26:17 +01:00
|
|
|
std::thread(&WifiLegacyHal::runEventLoop, this).detach();
|
2016-09-29 18:03:59 +02:00
|
|
|
status = retrieveWlanInterfaceHandle();
|
|
|
|
if (status != WIFI_SUCCESS || !wlan_interface_handle_) {
|
|
|
|
LOG(ERROR) << "Failed to retrieve wlan interface handle";
|
|
|
|
return status;
|
|
|
|
}
|
2016-12-09 19:26:17 +01:00
|
|
|
LOG(DEBUG) << "Legacy HAL start complete";
|
|
|
|
is_started_ = true;
|
2016-09-29 18:03:59 +02:00
|
|
|
return WIFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::stop(
|
|
|
|
const std::function<void()>& on_stop_complete_user_callback) {
|
2016-12-09 19:26:17 +01:00
|
|
|
if (!is_started_) {
|
|
|
|
LOG(DEBUG) << "Legacy HAL already stopped";
|
|
|
|
on_stop_complete_user_callback();
|
|
|
|
return WIFI_SUCCESS;
|
|
|
|
}
|
|
|
|
LOG(DEBUG) << "Stopping legacy HAL";
|
2016-09-29 18:03:59 +02:00
|
|
|
on_stop_complete_internal_callback = [&](wifi_handle handle) {
|
|
|
|
CHECK_EQ(global_handle_, handle) << "Handle mismatch";
|
2016-10-28 18:54:26 +02:00
|
|
|
// Invalidate all the internal pointers now that the HAL is
|
|
|
|
// stopped.
|
|
|
|
invalidate();
|
2016-11-18 23:07:54 +01:00
|
|
|
iface_tool_.SetWifiUpState(false);
|
|
|
|
on_stop_complete_user_callback();
|
2016-09-29 18:03:59 +02:00
|
|
|
};
|
|
|
|
awaiting_event_loop_termination_ = true;
|
|
|
|
global_func_table_.wifi_cleanup(global_handle_, onStopComplete);
|
2016-12-09 19:26:17 +01:00
|
|
|
LOG(DEBUG) << "Legacy HAL stop complete";
|
|
|
|
is_started_ = false;
|
2016-09-29 18:03:59 +02:00
|
|
|
return WIFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2016-10-06 23:37:15 +02:00
|
|
|
std::string WifiLegacyHal::getApIfaceName() {
|
|
|
|
// Fake name. This interface does not exist in legacy HAL
|
|
|
|
// API's.
|
|
|
|
return "ap0";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string WifiLegacyHal::getNanIfaceName() {
|
|
|
|
// Fake name. This interface does not exist in legacy HAL
|
|
|
|
// API's.
|
|
|
|
return "nan0";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string WifiLegacyHal::getP2pIfaceName() {
|
|
|
|
std::array<char, PROPERTY_VALUE_MAX> buffer;
|
|
|
|
property_get("wifi.direct.interface", buffer.data(), "p2p0");
|
|
|
|
return buffer.data();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string WifiLegacyHal::getStaIfaceName() {
|
|
|
|
std::array<char, PROPERTY_VALUE_MAX> buffer;
|
|
|
|
property_get("wifi.interface", buffer.data(), "wlan0");
|
|
|
|
return buffer.data();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<wifi_error, std::string> WifiLegacyHal::getDriverVersion() {
|
2016-10-03 21:49:58 +02:00
|
|
|
std::array<char, kMaxVersionStringLength> buffer;
|
|
|
|
buffer.fill(0);
|
|
|
|
wifi_error status = global_func_table_.wifi_get_driver_version(
|
|
|
|
wlan_interface_handle_, buffer.data(), buffer.size());
|
2016-10-28 19:23:00 +02:00
|
|
|
return {status, buffer.data()};
|
2016-10-03 21:49:58 +02:00
|
|
|
}
|
|
|
|
|
2016-10-06 23:37:15 +02:00
|
|
|
std::pair<wifi_error, std::string> WifiLegacyHal::getFirmwareVersion() {
|
2016-10-03 21:49:58 +02:00
|
|
|
std::array<char, kMaxVersionStringLength> buffer;
|
|
|
|
buffer.fill(0);
|
|
|
|
wifi_error status = global_func_table_.wifi_get_firmware_version(
|
|
|
|
wlan_interface_handle_, buffer.data(), buffer.size());
|
2016-10-28 19:23:00 +02:00
|
|
|
return {status, buffer.data()};
|
2016-10-03 21:49:58 +02:00
|
|
|
}
|
|
|
|
|
2016-10-27 21:43:49 +02:00
|
|
|
std::pair<wifi_error, std::vector<uint8_t>>
|
2016-10-06 23:37:15 +02:00
|
|
|
WifiLegacyHal::requestDriverMemoryDump() {
|
2016-10-27 21:43:49 +02:00
|
|
|
std::vector<uint8_t> driver_dump;
|
2016-10-03 23:09:57 +02:00
|
|
|
on_driver_memory_dump_internal_callback = [&driver_dump](char* buffer,
|
|
|
|
int buffer_size) {
|
2016-10-27 21:43:49 +02:00
|
|
|
driver_dump.insert(driver_dump.end(),
|
|
|
|
reinterpret_cast<uint8_t*>(buffer),
|
|
|
|
reinterpret_cast<uint8_t*>(buffer) + buffer_size);
|
2016-10-03 23:09:57 +02:00
|
|
|
};
|
|
|
|
wifi_error status = global_func_table_.wifi_get_driver_memory_dump(
|
|
|
|
wlan_interface_handle_, {onDriverMemoryDump});
|
|
|
|
on_driver_memory_dump_internal_callback = nullptr;
|
2016-10-28 19:23:00 +02:00
|
|
|
return {status, std::move(driver_dump)};
|
2016-10-03 23:09:57 +02:00
|
|
|
}
|
|
|
|
|
2016-10-27 21:43:49 +02:00
|
|
|
std::pair<wifi_error, std::vector<uint8_t>>
|
2016-10-06 23:37:15 +02:00
|
|
|
WifiLegacyHal::requestFirmwareMemoryDump() {
|
2016-10-27 21:43:49 +02:00
|
|
|
std::vector<uint8_t> firmware_dump;
|
2016-10-03 23:09:57 +02:00
|
|
|
on_firmware_memory_dump_internal_callback = [&firmware_dump](
|
|
|
|
char* buffer, int buffer_size) {
|
2016-10-27 21:43:49 +02:00
|
|
|
firmware_dump.insert(firmware_dump.end(),
|
|
|
|
reinterpret_cast<uint8_t*>(buffer),
|
|
|
|
reinterpret_cast<uint8_t*>(buffer) + buffer_size);
|
2016-10-03 23:09:57 +02:00
|
|
|
};
|
|
|
|
wifi_error status = global_func_table_.wifi_get_firmware_memory_dump(
|
|
|
|
wlan_interface_handle_, {onFirmwareMemoryDump});
|
|
|
|
on_firmware_memory_dump_internal_callback = nullptr;
|
2016-10-28 19:23:00 +02:00
|
|
|
return {status, std::move(firmware_dump)};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<wifi_error, uint32_t> WifiLegacyHal::getSupportedFeatureSet() {
|
|
|
|
feature_set set;
|
|
|
|
static_assert(sizeof(set) == sizeof(uint32_t),
|
|
|
|
"Some features can not be represented in output");
|
|
|
|
wifi_error status = global_func_table_.wifi_get_supported_feature_set(
|
|
|
|
wlan_interface_handle_, &set);
|
|
|
|
return {status, static_cast<uint32_t>(set)};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<wifi_error, PacketFilterCapabilities>
|
|
|
|
WifiLegacyHal::getPacketFilterCapabilities() {
|
|
|
|
PacketFilterCapabilities caps;
|
|
|
|
wifi_error status = global_func_table_.wifi_get_packet_filter_capabilities(
|
|
|
|
wlan_interface_handle_, &caps.version, &caps.max_len);
|
|
|
|
return {status, caps};
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::setPacketFilter(const std::vector<uint8_t>& program) {
|
|
|
|
return global_func_table_.wifi_set_packet_filter(
|
|
|
|
wlan_interface_handle_, program.data(), program.size());
|
2016-10-03 23:09:57 +02:00
|
|
|
}
|
|
|
|
|
2016-10-28 19:33:34 +02:00
|
|
|
std::pair<wifi_error, wifi_gscan_capabilities>
|
|
|
|
WifiLegacyHal::getGscanCapabilities() {
|
|
|
|
wifi_gscan_capabilities caps;
|
|
|
|
wifi_error status = global_func_table_.wifi_get_gscan_capabilities(
|
|
|
|
wlan_interface_handle_, &caps);
|
|
|
|
return {status, caps};
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::startGscan(
|
|
|
|
wifi_request_id id,
|
|
|
|
const wifi_scan_cmd_params& params,
|
|
|
|
const std::function<void(wifi_request_id)>& on_failure_user_callback,
|
|
|
|
const on_gscan_results_callback& on_results_user_callback,
|
|
|
|
const on_gscan_full_result_callback& on_full_result_user_callback) {
|
|
|
|
// If there is already an ongoing background scan, reject new scan requests.
|
|
|
|
if (on_gscan_event_internal_callback ||
|
|
|
|
on_gscan_full_result_internal_callback) {
|
|
|
|
return WIFI_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This callback will be used to either trigger |on_results_user_callback| or
|
|
|
|
// |on_failure_user_callback|.
|
|
|
|
on_gscan_event_internal_callback =
|
|
|
|
[on_failure_user_callback, on_results_user_callback, this](
|
|
|
|
wifi_request_id id, wifi_scan_event event) {
|
|
|
|
switch (event) {
|
|
|
|
case WIFI_SCAN_RESULTS_AVAILABLE:
|
|
|
|
case WIFI_SCAN_THRESHOLD_NUM_SCANS:
|
|
|
|
case WIFI_SCAN_THRESHOLD_PERCENT: {
|
|
|
|
wifi_error status;
|
|
|
|
std::vector<wifi_cached_scan_results> cached_scan_results;
|
|
|
|
std::tie(status, cached_scan_results) = getGscanCachedResults();
|
|
|
|
if (status == WIFI_SUCCESS) {
|
|
|
|
on_results_user_callback(id, cached_scan_results);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Fall through if failed. Failure to retrieve cached scan results
|
|
|
|
// should trigger a background scan failure.
|
|
|
|
case WIFI_SCAN_FAILED:
|
|
|
|
on_failure_user_callback(id);
|
|
|
|
on_gscan_event_internal_callback = nullptr;
|
|
|
|
on_gscan_full_result_internal_callback = nullptr;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
LOG(FATAL) << "Unexpected gscan event received: " << event;
|
|
|
|
};
|
|
|
|
|
|
|
|
on_gscan_full_result_internal_callback = [on_full_result_user_callback](
|
|
|
|
wifi_request_id id, wifi_scan_result* result, uint32_t buckets_scanned) {
|
|
|
|
if (result) {
|
|
|
|
on_full_result_user_callback(id, result, buckets_scanned);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
wifi_scan_result_handler handler = {onGscanFullResult, onGscanEvent};
|
|
|
|
wifi_error status = global_func_table_.wifi_start_gscan(
|
|
|
|
id, wlan_interface_handle_, params, handler);
|
|
|
|
if (status != WIFI_SUCCESS) {
|
|
|
|
on_gscan_event_internal_callback = nullptr;
|
|
|
|
on_gscan_full_result_internal_callback = nullptr;
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::stopGscan(wifi_request_id id) {
|
|
|
|
// If there is no an ongoing background scan, reject stop requests.
|
|
|
|
// TODO(b/32337212): This needs to be handled by the HIDL object because we
|
|
|
|
// need to return the NOT_STARTED error code.
|
|
|
|
if (!on_gscan_event_internal_callback &&
|
|
|
|
!on_gscan_full_result_internal_callback) {
|
|
|
|
return WIFI_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
wifi_error status =
|
|
|
|
global_func_table_.wifi_stop_gscan(id, wlan_interface_handle_);
|
|
|
|
// If the request Id is wrong, don't stop the ongoing background scan. Any
|
|
|
|
// other error should be treated as the end of background scan.
|
|
|
|
if (status != WIFI_ERROR_INVALID_REQUEST_ID) {
|
|
|
|
on_gscan_event_internal_callback = nullptr;
|
|
|
|
on_gscan_full_result_internal_callback = nullptr;
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<wifi_error, std::vector<uint32_t>>
|
|
|
|
WifiLegacyHal::getValidFrequenciesForGscan(wifi_band band) {
|
|
|
|
static_assert(sizeof(uint32_t) >= sizeof(wifi_channel),
|
|
|
|
"Wifi Channel cannot be represented in output");
|
|
|
|
std::vector<uint32_t> freqs;
|
|
|
|
freqs.resize(kMaxGscanFrequenciesForBand);
|
|
|
|
int32_t num_freqs = 0;
|
|
|
|
wifi_error status = global_func_table_.wifi_get_valid_channels(
|
|
|
|
wlan_interface_handle_,
|
|
|
|
band,
|
|
|
|
freqs.size(),
|
|
|
|
reinterpret_cast<wifi_channel*>(freqs.data()),
|
|
|
|
&num_freqs);
|
|
|
|
CHECK(num_freqs >= 0 &&
|
|
|
|
static_cast<uint32_t>(num_freqs) <= kMaxGscanFrequenciesForBand);
|
|
|
|
freqs.resize(num_freqs);
|
|
|
|
return {status, std::move(freqs)};
|
|
|
|
}
|
|
|
|
|
2016-10-28 19:38:21 +02:00
|
|
|
wifi_error WifiLegacyHal::enableLinkLayerStats(bool debug) {
|
|
|
|
wifi_link_layer_params params;
|
|
|
|
params.mpdu_size_threshold = kLinkLayerStatsDataMpduSizeThreshold;
|
|
|
|
params.aggressive_statistics_gathering = debug;
|
|
|
|
return global_func_table_.wifi_set_link_stats(wlan_interface_handle_, params);
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::disableLinkLayerStats() {
|
|
|
|
// TODO: Do we care about these responses?
|
|
|
|
uint32_t clear_mask_rsp;
|
|
|
|
uint8_t stop_rsp;
|
|
|
|
return global_func_table_.wifi_clear_link_stats(
|
|
|
|
wlan_interface_handle_, 0xFFFFFFFF, &clear_mask_rsp, 1, &stop_rsp);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<wifi_error, LinkLayerStats> WifiLegacyHal::getLinkLayerStats() {
|
|
|
|
LinkLayerStats link_stats{};
|
|
|
|
LinkLayerStats* link_stats_ptr = &link_stats;
|
|
|
|
|
|
|
|
on_link_layer_stats_result_internal_callback = [&link_stats_ptr](
|
|
|
|
wifi_request_id /* id */,
|
|
|
|
wifi_iface_stat* iface_stats_ptr,
|
|
|
|
int num_radios,
|
|
|
|
wifi_radio_stat* radio_stats_ptr) {
|
|
|
|
if (iface_stats_ptr != nullptr) {
|
|
|
|
link_stats_ptr->iface = *iface_stats_ptr;
|
|
|
|
link_stats_ptr->iface.num_peers = 0;
|
|
|
|
} else {
|
|
|
|
LOG(ERROR) << "Invalid iface stats in link layer stats";
|
|
|
|
}
|
|
|
|
if (num_radios == 1 && radio_stats_ptr != nullptr) {
|
|
|
|
link_stats_ptr->radio = *radio_stats_ptr;
|
|
|
|
// Copy over the tx level array to the separate vector.
|
|
|
|
if (radio_stats_ptr->num_tx_levels > 0 &&
|
|
|
|
radio_stats_ptr->tx_time_per_levels != nullptr) {
|
|
|
|
link_stats_ptr->radio_tx_time_per_levels.assign(
|
|
|
|
radio_stats_ptr->tx_time_per_levels,
|
|
|
|
radio_stats_ptr->tx_time_per_levels +
|
|
|
|
radio_stats_ptr->num_tx_levels);
|
|
|
|
}
|
|
|
|
link_stats_ptr->radio.num_tx_levels = 0;
|
|
|
|
link_stats_ptr->radio.tx_time_per_levels = nullptr;
|
|
|
|
} else {
|
|
|
|
LOG(ERROR) << "Invalid radio stats in link layer stats";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
wifi_error status = global_func_table_.wifi_get_link_stats(
|
2016-12-06 19:04:05 +01:00
|
|
|
0, wlan_interface_handle_, {onLinkLayerStatsResult});
|
2016-10-28 19:38:21 +02:00
|
|
|
on_link_layer_stats_result_internal_callback = nullptr;
|
|
|
|
return {status, link_stats};
|
|
|
|
}
|
|
|
|
|
2016-12-06 19:04:05 +01:00
|
|
|
wifi_error WifiLegacyHal::startRssiMonitoring(
|
|
|
|
wifi_request_id id,
|
|
|
|
int8_t max_rssi,
|
|
|
|
int8_t min_rssi,
|
|
|
|
const on_rssi_threshold_breached_callback&
|
|
|
|
on_threshold_breached_user_callback) {
|
|
|
|
if (on_rssi_threshold_breached_internal_callback) {
|
|
|
|
return WIFI_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
on_rssi_threshold_breached_internal_callback =
|
|
|
|
[on_threshold_breached_user_callback](
|
|
|
|
wifi_request_id id, uint8_t* bssid_ptr, int8_t rssi) {
|
|
|
|
if (!bssid_ptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
std::array<uint8_t, 6> bssid_arr;
|
|
|
|
// |bssid_ptr| pointer is assumed to have 6 bytes for the mac address.
|
|
|
|
std::copy(bssid_ptr, bssid_ptr + 6, std::begin(bssid_arr));
|
|
|
|
on_threshold_breached_user_callback(id, bssid_arr, rssi);
|
|
|
|
};
|
2016-12-06 19:12:59 +01:00
|
|
|
wifi_error status =
|
|
|
|
global_func_table_.wifi_start_rssi_monitoring(id,
|
|
|
|
wlan_interface_handle_,
|
|
|
|
max_rssi,
|
|
|
|
min_rssi,
|
|
|
|
{onRssiThresholdBreached});
|
|
|
|
if (status != WIFI_SUCCESS) {
|
|
|
|
on_rssi_threshold_breached_internal_callback = nullptr;
|
|
|
|
}
|
|
|
|
return status;
|
2016-12-06 19:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::stopRssiMonitoring(wifi_request_id id) {
|
|
|
|
if (!on_rssi_threshold_breached_internal_callback) {
|
|
|
|
return WIFI_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
wifi_error status =
|
|
|
|
global_func_table_.wifi_stop_rssi_monitoring(id, wlan_interface_handle_);
|
|
|
|
// If the request Id is wrong, don't stop the ongoing rssi monitoring. Any
|
|
|
|
// other error should be treated as the end of background scan.
|
|
|
|
if (status != WIFI_ERROR_INVALID_REQUEST_ID) {
|
|
|
|
on_rssi_threshold_breached_internal_callback = nullptr;
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2016-10-28 19:43:51 +02:00
|
|
|
std::pair<wifi_error, uint32_t> WifiLegacyHal::getLoggerSupportedFeatureSet() {
|
|
|
|
uint32_t supported_features;
|
|
|
|
wifi_error status = global_func_table_.wifi_get_logger_supported_feature_set(
|
|
|
|
wlan_interface_handle_, &supported_features);
|
|
|
|
return {status, supported_features};
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::startPktFateMonitoring() {
|
|
|
|
return global_func_table_.wifi_start_pkt_fate_monitoring(
|
|
|
|
wlan_interface_handle_);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<wifi_error, std::vector<wifi_tx_report>>
|
|
|
|
WifiLegacyHal::getTxPktFates() {
|
|
|
|
std::vector<wifi_tx_report> tx_pkt_fates;
|
|
|
|
tx_pkt_fates.resize(MAX_FATE_LOG_LEN);
|
|
|
|
size_t num_fates = 0;
|
|
|
|
wifi_error status =
|
|
|
|
global_func_table_.wifi_get_tx_pkt_fates(wlan_interface_handle_,
|
|
|
|
tx_pkt_fates.data(),
|
|
|
|
tx_pkt_fates.size(),
|
|
|
|
&num_fates);
|
|
|
|
CHECK(num_fates <= MAX_FATE_LOG_LEN);
|
|
|
|
tx_pkt_fates.resize(num_fates);
|
|
|
|
return {status, std::move(tx_pkt_fates)};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<wifi_error, std::vector<wifi_rx_report>>
|
|
|
|
WifiLegacyHal::getRxPktFates() {
|
|
|
|
std::vector<wifi_rx_report> rx_pkt_fates;
|
|
|
|
rx_pkt_fates.resize(MAX_FATE_LOG_LEN);
|
|
|
|
size_t num_fates = 0;
|
|
|
|
wifi_error status =
|
|
|
|
global_func_table_.wifi_get_rx_pkt_fates(wlan_interface_handle_,
|
|
|
|
rx_pkt_fates.data(),
|
|
|
|
rx_pkt_fates.size(),
|
|
|
|
&num_fates);
|
|
|
|
CHECK(num_fates <= MAX_FATE_LOG_LEN);
|
|
|
|
rx_pkt_fates.resize(num_fates);
|
|
|
|
return {status, std::move(rx_pkt_fates)};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<wifi_error, WakeReasonStats> WifiLegacyHal::getWakeReasonStats() {
|
|
|
|
WakeReasonStats stats;
|
|
|
|
stats.cmd_event_wake_cnt.resize(kMaxWakeReasonStatsArraySize);
|
|
|
|
stats.driver_fw_local_wake_cnt.resize(kMaxWakeReasonStatsArraySize);
|
|
|
|
|
|
|
|
// This legacy struct needs separate memory to store the variable sized wake
|
|
|
|
// reason types.
|
|
|
|
stats.wake_reason_cnt.cmd_event_wake_cnt =
|
|
|
|
reinterpret_cast<int32_t*>(stats.cmd_event_wake_cnt.data());
|
|
|
|
stats.wake_reason_cnt.cmd_event_wake_cnt_sz = stats.cmd_event_wake_cnt.size();
|
|
|
|
stats.wake_reason_cnt.cmd_event_wake_cnt_used = 0;
|
|
|
|
stats.wake_reason_cnt.driver_fw_local_wake_cnt =
|
|
|
|
reinterpret_cast<int32_t*>(stats.driver_fw_local_wake_cnt.data());
|
|
|
|
stats.wake_reason_cnt.driver_fw_local_wake_cnt_sz =
|
|
|
|
stats.driver_fw_local_wake_cnt.size();
|
|
|
|
stats.wake_reason_cnt.driver_fw_local_wake_cnt_used = 0;
|
|
|
|
|
|
|
|
wifi_error status = global_func_table_.wifi_get_wake_reason_stats(
|
|
|
|
wlan_interface_handle_, &stats.wake_reason_cnt);
|
|
|
|
|
|
|
|
CHECK(stats.wake_reason_cnt.cmd_event_wake_cnt_used >= 0 &&
|
|
|
|
static_cast<uint32_t>(stats.wake_reason_cnt.cmd_event_wake_cnt_used) <=
|
|
|
|
kMaxWakeReasonStatsArraySize);
|
|
|
|
stats.cmd_event_wake_cnt.resize(
|
|
|
|
stats.wake_reason_cnt.cmd_event_wake_cnt_used);
|
|
|
|
stats.wake_reason_cnt.cmd_event_wake_cnt = nullptr;
|
|
|
|
|
|
|
|
CHECK(stats.wake_reason_cnt.driver_fw_local_wake_cnt_used >= 0 &&
|
|
|
|
static_cast<uint32_t>(
|
|
|
|
stats.wake_reason_cnt.driver_fw_local_wake_cnt_used) <=
|
|
|
|
kMaxWakeReasonStatsArraySize);
|
|
|
|
stats.driver_fw_local_wake_cnt.resize(
|
|
|
|
stats.wake_reason_cnt.driver_fw_local_wake_cnt_used);
|
|
|
|
stats.wake_reason_cnt.driver_fw_local_wake_cnt = nullptr;
|
|
|
|
|
|
|
|
return {status, stats};
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::registerRingBufferCallbackHandler(
|
|
|
|
const on_ring_buffer_data_callback& on_user_data_callback) {
|
|
|
|
if (on_ring_buffer_data_internal_callback) {
|
|
|
|
return WIFI_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
on_ring_buffer_data_internal_callback = [on_user_data_callback](
|
|
|
|
char* ring_name,
|
|
|
|
char* buffer,
|
|
|
|
int buffer_size,
|
|
|
|
wifi_ring_buffer_status* status) {
|
|
|
|
if (status && buffer) {
|
|
|
|
std::vector<uint8_t> buffer_vector(
|
|
|
|
reinterpret_cast<uint8_t*>(buffer),
|
|
|
|
reinterpret_cast<uint8_t*>(buffer) + buffer_size);
|
|
|
|
on_user_data_callback(ring_name, buffer_vector, *status);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
return global_func_table_.wifi_set_log_handler(
|
|
|
|
0, wlan_interface_handle_, {onRingBufferData});
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<wifi_error, std::vector<wifi_ring_buffer_status>>
|
|
|
|
WifiLegacyHal::getRingBuffersStatus() {
|
|
|
|
std::vector<wifi_ring_buffer_status> ring_buffers_status;
|
|
|
|
ring_buffers_status.resize(kMaxRingBuffers);
|
|
|
|
uint32_t num_rings = 0;
|
|
|
|
wifi_error status = global_func_table_.wifi_get_ring_buffers_status(
|
|
|
|
wlan_interface_handle_, &num_rings, ring_buffers_status.data());
|
|
|
|
CHECK(num_rings <= kMaxRingBuffers);
|
|
|
|
ring_buffers_status.resize(num_rings);
|
|
|
|
return {status, std::move(ring_buffers_status)};
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::startRingBufferLogging(const std::string& ring_name,
|
|
|
|
uint32_t verbose_level,
|
|
|
|
uint32_t max_interval_sec,
|
|
|
|
uint32_t min_data_size) {
|
|
|
|
std::vector<char> ring_name_internal(ring_name.begin(), ring_name.end());
|
|
|
|
return global_func_table_.wifi_start_logging(wlan_interface_handle_,
|
|
|
|
verbose_level,
|
|
|
|
0,
|
|
|
|
max_interval_sec,
|
|
|
|
min_data_size,
|
|
|
|
ring_name_internal.data());
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::getRingBufferData(const std::string& ring_name) {
|
|
|
|
std::vector<char> ring_name_internal(ring_name.begin(), ring_name.end());
|
|
|
|
return global_func_table_.wifi_get_ring_data(wlan_interface_handle_,
|
|
|
|
ring_name_internal.data());
|
|
|
|
}
|
|
|
|
|
2016-10-28 20:23:11 +02:00
|
|
|
wifi_error WifiLegacyHal::startRttRangeRequest(
|
|
|
|
wifi_request_id id,
|
|
|
|
const std::vector<wifi_rtt_config>& rtt_configs,
|
|
|
|
const on_rtt_results_callback& on_results_user_callback) {
|
|
|
|
if (on_rtt_results_internal_callback) {
|
|
|
|
return WIFI_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
on_rtt_results_internal_callback = [on_results_user_callback](
|
|
|
|
wifi_request_id id,
|
|
|
|
unsigned num_results,
|
|
|
|
wifi_rtt_result* rtt_results[]) {
|
|
|
|
if (num_results > 0 && !rtt_results) {
|
|
|
|
LOG(ERROR) << "Unexpected nullptr in RTT results";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
std::vector<const wifi_rtt_result*> rtt_results_vec;
|
|
|
|
std::copy_if(
|
|
|
|
rtt_results,
|
|
|
|
rtt_results + num_results,
|
|
|
|
back_inserter(rtt_results_vec),
|
|
|
|
[](wifi_rtt_result* rtt_result) { return rtt_result != nullptr; });
|
|
|
|
on_results_user_callback(id, rtt_results_vec);
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<wifi_rtt_config> rtt_configs_internal(rtt_configs);
|
2016-12-06 19:12:59 +01:00
|
|
|
wifi_error status =
|
|
|
|
global_func_table_.wifi_rtt_range_request(id,
|
|
|
|
wlan_interface_handle_,
|
|
|
|
rtt_configs.size(),
|
|
|
|
rtt_configs_internal.data(),
|
|
|
|
{onRttResults});
|
|
|
|
if (status != WIFI_SUCCESS) {
|
|
|
|
on_rtt_results_internal_callback = nullptr;
|
|
|
|
}
|
|
|
|
return status;
|
2016-10-28 20:23:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::cancelRttRangeRequest(
|
|
|
|
wifi_request_id id, const std::vector<std::array<uint8_t, 6>>& mac_addrs) {
|
|
|
|
if (!on_rtt_results_internal_callback) {
|
|
|
|
return WIFI_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
static_assert(sizeof(mac_addr) == sizeof(std::array<uint8_t, 6>),
|
|
|
|
"MAC address size mismatch");
|
|
|
|
// TODO: How do we handle partial cancels (i.e only a subset of enabled mac
|
|
|
|
// addressed are cancelled).
|
|
|
|
std::vector<std::array<uint8_t, 6>> mac_addrs_internal(mac_addrs);
|
|
|
|
wifi_error status = global_func_table_.wifi_rtt_range_cancel(
|
|
|
|
id,
|
|
|
|
wlan_interface_handle_,
|
|
|
|
mac_addrs.size(),
|
|
|
|
reinterpret_cast<mac_addr*>(mac_addrs_internal.data()));
|
|
|
|
// If the request Id is wrong, don't stop the ongoing range request. Any
|
|
|
|
// other error should be treated as the end of rtt ranging.
|
|
|
|
if (status != WIFI_ERROR_INVALID_REQUEST_ID) {
|
|
|
|
on_rtt_results_internal_callback = nullptr;
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<wifi_error, wifi_rtt_capabilities>
|
|
|
|
WifiLegacyHal::getRttCapabilities() {
|
|
|
|
wifi_rtt_capabilities rtt_caps;
|
|
|
|
wifi_error status = global_func_table_.wifi_get_rtt_capabilities(
|
|
|
|
wlan_interface_handle_, &rtt_caps);
|
|
|
|
return {status, rtt_caps};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<wifi_error, wifi_rtt_responder> WifiLegacyHal::getRttResponderInfo() {
|
|
|
|
wifi_rtt_responder rtt_responder;
|
|
|
|
wifi_error status = global_func_table_.wifi_rtt_get_responder_info(
|
|
|
|
wlan_interface_handle_, &rtt_responder);
|
|
|
|
return {status, rtt_responder};
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::enableRttResponder(
|
|
|
|
wifi_request_id id,
|
|
|
|
const wifi_channel_info& channel_hint,
|
|
|
|
uint32_t max_duration_secs,
|
|
|
|
const wifi_rtt_responder& info) {
|
|
|
|
wifi_rtt_responder info_internal(info);
|
|
|
|
return global_func_table_.wifi_enable_responder(id,
|
|
|
|
wlan_interface_handle_,
|
|
|
|
channel_hint,
|
|
|
|
max_duration_secs,
|
|
|
|
&info_internal);
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::disableRttResponder(wifi_request_id id) {
|
|
|
|
return global_func_table_.wifi_disable_responder(id, wlan_interface_handle_);
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::setRttLci(wifi_request_id id,
|
|
|
|
const wifi_lci_information& info) {
|
|
|
|
wifi_lci_information info_internal(info);
|
|
|
|
return global_func_table_.wifi_set_lci(
|
|
|
|
id, wlan_interface_handle_, &info_internal);
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::setRttLcr(wifi_request_id id,
|
|
|
|
const wifi_lcr_information& info) {
|
|
|
|
wifi_lcr_information info_internal(info);
|
|
|
|
return global_func_table_.wifi_set_lcr(
|
|
|
|
id, wlan_interface_handle_, &info_internal);
|
|
|
|
}
|
|
|
|
|
2016-10-28 20:27:40 +02:00
|
|
|
wifi_error WifiLegacyHal::nanRegisterCallbackHandlers(
|
|
|
|
const NanCallbackHandlers& user_callbacks) {
|
|
|
|
on_nan_notify_response_user_callback = user_callbacks.on_notify_response;
|
|
|
|
on_nan_event_publish_terminated_user_callback =
|
|
|
|
user_callbacks.on_event_publish_terminated;
|
|
|
|
on_nan_event_match_user_callback = user_callbacks.on_event_match;
|
|
|
|
on_nan_event_match_expired_user_callback =
|
|
|
|
user_callbacks.on_event_match_expired;
|
|
|
|
on_nan_event_subscribe_terminated_user_callback =
|
|
|
|
user_callbacks.on_event_subscribe_terminated;
|
|
|
|
on_nan_event_followup_user_callback = user_callbacks.on_event_followup;
|
|
|
|
on_nan_event_disc_eng_event_user_callback =
|
|
|
|
user_callbacks.on_event_disc_eng_event;
|
|
|
|
on_nan_event_disabled_user_callback = user_callbacks.on_event_disabled;
|
|
|
|
on_nan_event_tca_user_callback = user_callbacks.on_event_tca;
|
|
|
|
on_nan_event_beacon_sdf_payload_user_callback =
|
|
|
|
user_callbacks.on_event_beacon_sdf_payload;
|
|
|
|
on_nan_event_data_path_request_user_callback =
|
|
|
|
user_callbacks.on_event_data_path_request;
|
|
|
|
on_nan_event_data_path_confirm_user_callback =
|
|
|
|
user_callbacks.on_event_data_path_confirm;
|
|
|
|
on_nan_event_data_path_end_user_callback =
|
|
|
|
user_callbacks.on_event_data_path_end;
|
|
|
|
on_nan_event_transmit_follow_up_user_callback =
|
|
|
|
user_callbacks.on_event_transmit_follow_up;
|
|
|
|
|
|
|
|
return global_func_table_.wifi_nan_register_handler(
|
|
|
|
wlan_interface_handle_,
|
|
|
|
{onNanNotifyResponse,
|
|
|
|
onNanEventPublishTerminated,
|
|
|
|
onNanEventMatch,
|
|
|
|
onNanEventMatchExpired,
|
|
|
|
onNanEventSubscribeTerminated,
|
|
|
|
onNanEventFollowup,
|
|
|
|
onNanEventDiscEngEvent,
|
|
|
|
onNanEventDisabled,
|
|
|
|
onNanEventTca,
|
|
|
|
onNanEventBeaconSdfPayload,
|
|
|
|
onNanEventDataPathRequest,
|
|
|
|
onNanEventDataPathConfirm,
|
|
|
|
onNanEventDataPathEnd,
|
|
|
|
onNanEventTransmitFollowUp});
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::nanEnableRequest(transaction_id id,
|
|
|
|
const NanEnableRequest& msg) {
|
|
|
|
NanEnableRequest msg_internal(msg);
|
|
|
|
return global_func_table_.wifi_nan_enable_request(
|
|
|
|
id, wlan_interface_handle_, &msg_internal);
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::nanDisableRequest(transaction_id id) {
|
|
|
|
return global_func_table_.wifi_nan_disable_request(id,
|
|
|
|
wlan_interface_handle_);
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::nanPublishRequest(transaction_id id,
|
|
|
|
const NanPublishRequest& msg) {
|
|
|
|
NanPublishRequest msg_internal(msg);
|
|
|
|
return global_func_table_.wifi_nan_publish_request(
|
|
|
|
id, wlan_interface_handle_, &msg_internal);
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::nanPublishCancelRequest(
|
|
|
|
transaction_id id, const NanPublishCancelRequest& msg) {
|
|
|
|
NanPublishCancelRequest msg_internal(msg);
|
|
|
|
return global_func_table_.wifi_nan_publish_cancel_request(
|
|
|
|
id, wlan_interface_handle_, &msg_internal);
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::nanSubscribeRequest(transaction_id id,
|
|
|
|
const NanSubscribeRequest& msg) {
|
|
|
|
NanSubscribeRequest msg_internal(msg);
|
|
|
|
return global_func_table_.wifi_nan_subscribe_request(
|
|
|
|
id, wlan_interface_handle_, &msg_internal);
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::nanSubscribeCancelRequest(
|
|
|
|
transaction_id id, const NanSubscribeCancelRequest& msg) {
|
|
|
|
NanSubscribeCancelRequest msg_internal(msg);
|
|
|
|
return global_func_table_.wifi_nan_subscribe_cancel_request(
|
|
|
|
id, wlan_interface_handle_, &msg_internal);
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::nanTransmitFollowupRequest(
|
|
|
|
transaction_id id, const NanTransmitFollowupRequest& msg) {
|
|
|
|
NanTransmitFollowupRequest msg_internal(msg);
|
|
|
|
return global_func_table_.wifi_nan_transmit_followup_request(
|
|
|
|
id, wlan_interface_handle_, &msg_internal);
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::nanStatsRequest(transaction_id id,
|
|
|
|
const NanStatsRequest& msg) {
|
|
|
|
NanStatsRequest msg_internal(msg);
|
|
|
|
return global_func_table_.wifi_nan_stats_request(
|
|
|
|
id, wlan_interface_handle_, &msg_internal);
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::nanConfigRequest(transaction_id id,
|
|
|
|
const NanConfigRequest& msg) {
|
|
|
|
NanConfigRequest msg_internal(msg);
|
|
|
|
return global_func_table_.wifi_nan_config_request(
|
|
|
|
id, wlan_interface_handle_, &msg_internal);
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::nanTcaRequest(transaction_id id,
|
|
|
|
const NanTCARequest& msg) {
|
|
|
|
NanTCARequest msg_internal(msg);
|
|
|
|
return global_func_table_.wifi_nan_tca_request(
|
|
|
|
id, wlan_interface_handle_, &msg_internal);
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::nanBeaconSdfPayloadRequest(
|
|
|
|
transaction_id id, const NanBeaconSdfPayloadRequest& msg) {
|
|
|
|
NanBeaconSdfPayloadRequest msg_internal(msg);
|
|
|
|
return global_func_table_.wifi_nan_beacon_sdf_payload_request(
|
|
|
|
id, wlan_interface_handle_, &msg_internal);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<wifi_error, NanVersion> WifiLegacyHal::nanGetVersion() {
|
|
|
|
NanVersion version;
|
|
|
|
wifi_error status =
|
|
|
|
global_func_table_.wifi_nan_get_version(global_handle_, &version);
|
|
|
|
return {status, version};
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::nanGetCapabilities(transaction_id id) {
|
|
|
|
return global_func_table_.wifi_nan_get_capabilities(id,
|
|
|
|
wlan_interface_handle_);
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::nanDataInterfaceCreate(
|
|
|
|
transaction_id id, const std::string& iface_name) {
|
|
|
|
std::vector<char> iface_name_internal(iface_name.begin(), iface_name.end());
|
|
|
|
return global_func_table_.wifi_nan_data_interface_create(
|
|
|
|
id, wlan_interface_handle_, iface_name_internal.data());
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::nanDataInterfaceDelete(
|
|
|
|
transaction_id id, const std::string& iface_name) {
|
|
|
|
std::vector<char> iface_name_internal(iface_name.begin(), iface_name.end());
|
|
|
|
return global_func_table_.wifi_nan_data_interface_delete(
|
|
|
|
id, wlan_interface_handle_, iface_name_internal.data());
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::nanDataRequestInitiator(
|
|
|
|
transaction_id id, const NanDataPathInitiatorRequest& msg) {
|
|
|
|
NanDataPathInitiatorRequest msg_internal(msg);
|
|
|
|
return global_func_table_.wifi_nan_data_request_initiator(
|
|
|
|
id, wlan_interface_handle_, &msg_internal);
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::nanDataIndicationResponse(
|
|
|
|
transaction_id id, const NanDataPathIndicationResponse& msg) {
|
|
|
|
NanDataPathIndicationResponse msg_internal(msg);
|
|
|
|
return global_func_table_.wifi_nan_data_indication_response(
|
|
|
|
id, wlan_interface_handle_, &msg_internal);
|
|
|
|
}
|
|
|
|
|
|
|
|
wifi_error WifiLegacyHal::nanDataEnd(transaction_id id,
|
|
|
|
const NanDataPathEndRequest& msg) {
|
|
|
|
NanDataPathEndRequest msg_internal(msg);
|
|
|
|
return global_func_table_.wifi_nan_data_end(
|
|
|
|
id, wlan_interface_handle_, &msg_internal);
|
|
|
|
}
|
|
|
|
|
2016-09-29 18:03:59 +02:00
|
|
|
wifi_error WifiLegacyHal::retrieveWlanInterfaceHandle() {
|
2016-10-06 23:37:15 +02:00
|
|
|
const std::string& ifname_to_find = getStaIfaceName();
|
2016-09-29 18:03:59 +02:00
|
|
|
wifi_interface_handle* iface_handles = nullptr;
|
|
|
|
int num_iface_handles = 0;
|
|
|
|
wifi_error status = global_func_table_.wifi_get_ifaces(
|
|
|
|
global_handle_, &num_iface_handles, &iface_handles);
|
|
|
|
if (status != WIFI_SUCCESS) {
|
2016-10-28 18:54:26 +02:00
|
|
|
LOG(ERROR) << "Failed to enumerate interface handles";
|
2016-09-29 18:03:59 +02:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
for (int i = 0; i < num_iface_handles; ++i) {
|
|
|
|
std::array<char, IFNAMSIZ> current_ifname;
|
|
|
|
current_ifname.fill(0);
|
|
|
|
status = global_func_table_.wifi_get_iface_name(
|
|
|
|
iface_handles[i], current_ifname.data(), current_ifname.size());
|
|
|
|
if (status != WIFI_SUCCESS) {
|
2016-10-28 18:54:26 +02:00
|
|
|
LOG(WARNING) << "Failed to get interface handle name";
|
2016-09-29 18:03:59 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (ifname_to_find == current_ifname.data()) {
|
|
|
|
wlan_interface_handle_ = iface_handles[i];
|
|
|
|
return WIFI_SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return WIFI_ERROR_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WifiLegacyHal::runEventLoop() {
|
2016-12-09 19:26:17 +01:00
|
|
|
LOG(DEBUG) << "Starting legacy HAL event loop";
|
2016-09-29 18:03:59 +02:00
|
|
|
global_func_table_.wifi_event_loop(global_handle_);
|
|
|
|
if (!awaiting_event_loop_termination_) {
|
|
|
|
LOG(FATAL) << "Legacy HAL event loop terminated, but HAL was not stopping";
|
|
|
|
}
|
2016-12-09 19:26:17 +01:00
|
|
|
LOG(DEBUG) << "Legacy HAL event loop terminated";
|
2016-09-29 18:03:59 +02:00
|
|
|
awaiting_event_loop_termination_ = false;
|
|
|
|
}
|
|
|
|
|
2016-10-28 19:33:34 +02:00
|
|
|
std::pair<wifi_error, std::vector<wifi_cached_scan_results>>
|
|
|
|
WifiLegacyHal::getGscanCachedResults() {
|
|
|
|
std::vector<wifi_cached_scan_results> cached_scan_results;
|
|
|
|
cached_scan_results.resize(kMaxCachedGscanResults);
|
|
|
|
int32_t num_results = 0;
|
|
|
|
wifi_error status = global_func_table_.wifi_get_cached_gscan_results(
|
|
|
|
wlan_interface_handle_,
|
|
|
|
true /* always flush */,
|
|
|
|
cached_scan_results.size(),
|
|
|
|
cached_scan_results.data(),
|
|
|
|
&num_results);
|
|
|
|
CHECK(num_results >= 0 &&
|
|
|
|
static_cast<uint32_t>(num_results) <= kMaxCachedGscanResults);
|
|
|
|
cached_scan_results.resize(num_results);
|
|
|
|
// Check for invalid IE lengths in these cached scan results and correct it.
|
|
|
|
for (auto& cached_scan_result : cached_scan_results) {
|
|
|
|
int num_scan_results = cached_scan_result.num_results;
|
|
|
|
for (int i = 0; i < num_scan_results; i++) {
|
|
|
|
auto& scan_result = cached_scan_result.results[i];
|
|
|
|
if (scan_result.ie_length > 0) {
|
|
|
|
LOG(ERROR) << "Cached scan result has non-zero IE length "
|
|
|
|
<< scan_result.ie_length;
|
|
|
|
scan_result.ie_length = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return {status, std::move(cached_scan_results)};
|
|
|
|
}
|
|
|
|
|
2016-10-28 18:54:26 +02:00
|
|
|
void WifiLegacyHal::invalidate() {
|
|
|
|
global_handle_ = nullptr;
|
|
|
|
wlan_interface_handle_ = nullptr;
|
|
|
|
on_stop_complete_internal_callback = nullptr;
|
|
|
|
on_driver_memory_dump_internal_callback = nullptr;
|
|
|
|
on_firmware_memory_dump_internal_callback = nullptr;
|
2016-10-28 19:33:34 +02:00
|
|
|
on_gscan_event_internal_callback = nullptr;
|
|
|
|
on_gscan_full_result_internal_callback = nullptr;
|
2016-10-28 19:38:21 +02:00
|
|
|
on_link_layer_stats_result_internal_callback = nullptr;
|
2016-12-06 19:04:05 +01:00
|
|
|
on_rssi_threshold_breached_internal_callback = nullptr;
|
2016-10-28 19:43:51 +02:00
|
|
|
on_ring_buffer_data_internal_callback = nullptr;
|
2016-10-28 20:23:11 +02:00
|
|
|
on_rtt_results_internal_callback = nullptr;
|
2016-10-28 20:27:40 +02:00
|
|
|
on_nan_notify_response_user_callback = nullptr;
|
|
|
|
on_nan_event_publish_terminated_user_callback = nullptr;
|
|
|
|
on_nan_event_match_user_callback = nullptr;
|
|
|
|
on_nan_event_match_expired_user_callback = nullptr;
|
|
|
|
on_nan_event_subscribe_terminated_user_callback = nullptr;
|
|
|
|
on_nan_event_followup_user_callback = nullptr;
|
|
|
|
on_nan_event_disc_eng_event_user_callback = nullptr;
|
|
|
|
on_nan_event_disabled_user_callback = nullptr;
|
|
|
|
on_nan_event_tca_user_callback = nullptr;
|
|
|
|
on_nan_event_beacon_sdf_payload_user_callback = nullptr;
|
|
|
|
on_nan_event_data_path_request_user_callback = nullptr;
|
|
|
|
on_nan_event_data_path_confirm_user_callback = nullptr;
|
|
|
|
on_nan_event_data_path_end_user_callback = nullptr;
|
|
|
|
on_nan_event_transmit_follow_up_user_callback = nullptr;
|
2016-10-28 18:54:26 +02:00
|
|
|
}
|
2016-10-28 18:42:44 +02:00
|
|
|
|
|
|
|
} // namespace legacy_hal
|
2016-09-29 18:03:59 +02:00
|
|
|
} // namespace implementation
|
|
|
|
} // namespace V1_0
|
|
|
|
} // namespace wifi
|
|
|
|
} // namespace hardware
|
|
|
|
} // namespace android
|