blob: 549880398f165b8177fb1bad885ed3d3ac1f977e [file] [log] [blame]
Roshan Piusaabe5752016-09-29 09:03:59 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Roshan Piuse73a5062016-12-12 08:53:34 -080017#ifndef WIFI_LEGACY_HAL_H_
18#define WIFI_LEGACY_HAL_H_
Roshan Piusaabe5752016-09-29 09:03:59 -070019
20#include <functional>
21#include <thread>
Roshan Pius734fea02016-10-11 08:30:28 -070022#include <vector>
Roshan Pius155344b2017-08-11 15:47:42 -070023#include <condition_variable>
Roshan Piusaabe5752016-09-29 09:03:59 -070024
Roshan Pius97334112016-11-18 14:07:54 -080025#include <wifi_system/interface_tool.h>
26
Roshan Piusaabe5752016-09-29 09:03:59 -070027namespace android {
28namespace hardware {
29namespace wifi {
Roshan Piusdbd83ef2017-06-20 12:05:40 -070030namespace V1_1 {
Roshan Piusaabe5752016-09-29 09:03:59 -070031namespace implementation {
Roshan Pius955542e2016-10-28 09:42:44 -070032// This is in a separate namespace to prevent typename conflicts between
33// the legacy HAL types and the HIDL interface types.
34namespace legacy_hal {
35// Wrap all the types defined inside the legacy HAL header files inside this
36// namespace.
37#include <hardware_legacy/wifi_hal.h>
Roshan Piusaabe5752016-09-29 09:03:59 -070038
Roshan Pius0a47c182016-10-28 10:23:00 -070039// APF capabilities supported by the iface.
40struct PacketFilterCapabilities {
41 uint32_t version;
42 uint32_t max_len;
43};
44
Roshan Pius7cece412016-10-28 10:38:21 -070045// WARNING: We don't care about the variable sized members of either
46// |wifi_iface_stat|, |wifi_radio_stat| structures. So, using the pragma
47// to escape the compiler warnings regarding this.
48#pragma GCC diagnostic push
49#pragma GCC diagnostic ignored "-Wgnu-variable-sized-type-not-at-end"
50// The |wifi_radio_stat.tx_time_per_levels| stats is provided as a pointer in
51// |wifi_radio_stat| structure in the legacy HAL API. Separate that out
52// into a separate return element to avoid passing pointers around.
Roshan Piuse42ace22017-03-13 10:44:20 -070053struct LinkLayerRadioStats {
54 wifi_radio_stat stats;
55 std::vector<uint32_t> tx_time_per_levels;
56};
57
Roshan Pius7cece412016-10-28 10:38:21 -070058struct LinkLayerStats {
59 wifi_iface_stat iface;
Roshan Piuse42ace22017-03-13 10:44:20 -070060 std::vector<LinkLayerRadioStats> radios;
Roshan Pius7cece412016-10-28 10:38:21 -070061};
62#pragma GCC diagnostic pop
63
Roshan Pius8714a3e2016-10-28 10:43:51 -070064// The |WLAN_DRIVER_WAKE_REASON_CNT.cmd_event_wake_cnt| and
65// |WLAN_DRIVER_WAKE_REASON_CNT.driver_fw_local_wake_cnt| stats is provided
66// as a pointer in |WLAN_DRIVER_WAKE_REASON_CNT| structure in the legacy HAL
67// API. Separate that out into a separate return elements to avoid passing
68// pointers around.
69struct WakeReasonStats {
70 WLAN_DRIVER_WAKE_REASON_CNT wake_reason_cnt;
71 std::vector<uint32_t> cmd_event_wake_cnt;
72 std::vector<uint32_t> driver_fw_local_wake_cnt;
73};
74
Roshan Pius23012092016-10-28 11:27:40 -070075// NAN response and event callbacks struct.
76struct NanCallbackHandlers {
77 // NotifyResponse invoked to notify the status of the Request.
78 std::function<void(transaction_id, const NanResponseMsg&)> on_notify_response;
79 // Various event callbacks.
80 std::function<void(const NanPublishTerminatedInd&)>
81 on_event_publish_terminated;
82 std::function<void(const NanMatchInd&)> on_event_match;
83 std::function<void(const NanMatchExpiredInd&)> on_event_match_expired;
84 std::function<void(const NanSubscribeTerminatedInd&)>
85 on_event_subscribe_terminated;
86 std::function<void(const NanFollowupInd&)> on_event_followup;
87 std::function<void(const NanDiscEngEventInd&)> on_event_disc_eng_event;
88 std::function<void(const NanDisabledInd&)> on_event_disabled;
89 std::function<void(const NanTCAInd&)> on_event_tca;
90 std::function<void(const NanBeaconSdfPayloadInd&)>
91 on_event_beacon_sdf_payload;
92 std::function<void(const NanDataPathRequestInd&)> on_event_data_path_request;
93 std::function<void(const NanDataPathConfirmInd&)> on_event_data_path_confirm;
94 std::function<void(const NanDataPathEndInd&)> on_event_data_path_end;
95 std::function<void(const NanTransmitFollowupInd&)>
96 on_event_transmit_follow_up;
Etan Cohenc190f932017-02-17 13:06:55 -080097 std::function<void(const NanRangeRequestInd&)>
98 on_event_range_request;
99 std::function<void(const NanRangeReportInd&)>
100 on_event_range_report;
Roshan Pius23012092016-10-28 11:27:40 -0700101};
102
Roshan Pius76ff3022016-10-28 10:33:34 -0700103// Full scan results contain IE info and are hence passed by reference, to
104// preserve the variable length array member |ie_data|. Callee must not retain
105// the pointer.
106using on_gscan_full_result_callback =
107 std::function<void(wifi_request_id, const wifi_scan_result*, uint32_t)>;
108// These scan results don't contain any IE info, so no need to pass by
109// reference.
110using on_gscan_results_callback = std::function<void(
111 wifi_request_id, const std::vector<wifi_cached_scan_results>&)>;
112
Roshan Piusd4767542016-12-06 10:04:05 -0800113// Invoked when the rssi value breaches the thresholds set.
114using on_rssi_threshold_breached_callback =
115 std::function<void(wifi_request_id, std::array<uint8_t, 6>, int8_t)>;
116
Roshan Piusd8e915a2016-10-28 11:23:11 -0700117// Callback for RTT range request results.
118// Rtt results contain IE info and are hence passed by reference, to
119// preserve the |LCI| and |LCR| pointers. Callee must not retain
120// the pointer.
121using on_rtt_results_callback = std::function<void(
122 wifi_request_id, const std::vector<const wifi_rtt_result*>&)>;
123
Roshan Pius8714a3e2016-10-28 10:43:51 -0700124// Callback for ring buffer data.
125using on_ring_buffer_data_callback =
126 std::function<void(const std::string&,
127 const std::vector<uint8_t>&,
128 const wifi_ring_buffer_status&)>;
129
Roshan Pius203cb032016-12-14 17:41:20 -0800130// Callback for alerts.
131using on_error_alert_callback =
132 std::function<void(int32_t, const std::vector<uint8_t>&)>;
Roshan Piusaabe5752016-09-29 09:03:59 -0700133/**
134 * Class that encapsulates all legacy HAL interactions.
135 * This class manages the lifetime of the event loop thread used by legacy HAL.
Roshan Pius742bb972017-02-02 09:54:27 -0800136 *
137 * Note: aThere will only be a single instance of this class created in the Wifi
138 * object and will be valid for the lifetime of the process.
Roshan Piusaabe5752016-09-29 09:03:59 -0700139 */
140class WifiLegacyHal {
141 public:
142 WifiLegacyHal();
Roshan Piusab5c4712016-10-06 14:37:15 -0700143 // Names to use for the different types of iface.
144 std::string getApIfaceName();
145 std::string getNanIfaceName();
146 std::string getP2pIfaceName();
147 std::string getStaIfaceName();
148
Roshan Pius97334112016-11-18 14:07:54 -0800149 // Initialize the legacy HAL function table.
150 wifi_error initialize();
151 // Start the legacy HAL and the event looper thread.
Roshan Piusaabe5752016-09-29 09:03:59 -0700152 wifi_error start();
Roshan Pius155344b2017-08-11 15:47:42 -0700153 // Deinitialize the legacy HAL and wait for the event loop thread to exit
154 // using a predefined timeout.
155 wifi_error stop(std::unique_lock<std::recursive_mutex>* lock,
156 const std::function<void()>& on_complete_callback);
Roshan Pius4b26c832016-10-03 12:49:58 -0700157 // Wrappers for all the functions in the legacy HAL function table.
Roshan Piusab5c4712016-10-06 14:37:15 -0700158 std::pair<wifi_error, std::string> getDriverVersion();
159 std::pair<wifi_error, std::string> getFirmwareVersion();
Roshan Pius3c868522016-10-27 12:43:49 -0700160 std::pair<wifi_error, std::vector<uint8_t>> requestDriverMemoryDump();
161 std::pair<wifi_error, std::vector<uint8_t>> requestFirmwareMemoryDump();
Roshan Pius0a47c182016-10-28 10:23:00 -0700162 std::pair<wifi_error, uint32_t> getSupportedFeatureSet();
163 // APF functions.
164 std::pair<wifi_error, PacketFilterCapabilities> getPacketFilterCapabilities();
165 wifi_error setPacketFilter(const std::vector<uint8_t>& program);
Roshan Pius76ff3022016-10-28 10:33:34 -0700166 // Gscan functions.
167 std::pair<wifi_error, wifi_gscan_capabilities> getGscanCapabilities();
168 // These API's provides a simplified interface over the legacy Gscan API's:
169 // a) All scan events from the legacy HAL API other than the
170 // |WIFI_SCAN_FAILED| are treated as notification of results.
171 // This method then retrieves the cached scan results from the legacy
172 // HAL API and triggers the externally provided |on_results_user_callback|
173 // on success.
174 // b) |WIFI_SCAN_FAILED| scan event or failure to retrieve cached scan results
175 // triggers the externally provided |on_failure_user_callback|.
176 // c) Full scan result event triggers the externally provided
177 // |on_full_result_user_callback|.
178 wifi_error startGscan(
179 wifi_request_id id,
180 const wifi_scan_cmd_params& params,
181 const std::function<void(wifi_request_id)>& on_failure_callback,
182 const on_gscan_results_callback& on_results_callback,
183 const on_gscan_full_result_callback& on_full_result_callback);
184 wifi_error stopGscan(wifi_request_id id);
Roshan Pius7f4574d2017-02-22 09:48:03 -0800185 std::pair<wifi_error, std::vector<uint32_t>> getValidFrequenciesForBand(
Roshan Pius76ff3022016-10-28 10:33:34 -0700186 wifi_band band);
Roshan Pius08d1df42017-04-19 23:11:07 -0700187 wifi_error setDfsFlag(bool dfs_on);
Roshan Pius7cece412016-10-28 10:38:21 -0700188 // Link layer stats functions.
189 wifi_error enableLinkLayerStats(bool debug);
190 wifi_error disableLinkLayerStats();
191 std::pair<wifi_error, LinkLayerStats> getLinkLayerStats();
Roshan Piusd4767542016-12-06 10:04:05 -0800192 // RSSI monitor functions.
193 wifi_error startRssiMonitoring(wifi_request_id id,
194 int8_t max_rssi,
195 int8_t min_rssi,
196 const on_rssi_threshold_breached_callback&
197 on_threshold_breached_callback);
198 wifi_error stopRssiMonitoring(wifi_request_id id);
Roshan Pius26801cb2016-12-13 14:25:45 -0800199 std::pair<wifi_error, wifi_roaming_capabilities> getRoamingCapabilities();
Roshan Pius26801cb2016-12-13 14:25:45 -0800200 wifi_error configureRoaming(const wifi_roaming_config& config);
Roshan Piusaf727c02017-01-11 15:37:25 -0800201 wifi_error enableFirmwareRoaming(fw_roaming_state_t state);
202 wifi_error configureNdOffload(bool enable);
Roshan Pius9a9869a2017-01-11 16:42:16 -0800203 wifi_error startSendingOffloadedPacket(
204 uint32_t cmd_id,
205 const std::vector<uint8_t>& ip_packet_data,
206 const std::array<uint8_t, 6>& src_address,
207 const std::array<uint8_t, 6>& dst_address,
208 uint32_t period_in_ms);
209 wifi_error stopSendingOffloadedPacket(uint32_t cmd_id);
Roshan Pius795bb812017-02-01 13:09:08 -0800210 wifi_error setScanningMacOui(const std::array<uint8_t, 3>& oui);
Roshan Pius735ff432017-07-25 08:48:08 -0700211 wifi_error selectTxPowerScenario(wifi_power_scenario scenario);
212 wifi_error resetTxPowerScenario();
Roshan Pius8714a3e2016-10-28 10:43:51 -0700213 // Logger/debug functions.
214 std::pair<wifi_error, uint32_t> getLoggerSupportedFeatureSet();
215 wifi_error startPktFateMonitoring();
216 std::pair<wifi_error, std::vector<wifi_tx_report>> getTxPktFates();
217 std::pair<wifi_error, std::vector<wifi_rx_report>> getRxPktFates();
218 std::pair<wifi_error, WakeReasonStats> getWakeReasonStats();
219 wifi_error registerRingBufferCallbackHandler(
220 const on_ring_buffer_data_callback& on_data_callback);
Roshan Piusadc87cb2016-12-14 18:02:56 -0800221 wifi_error deregisterRingBufferCallbackHandler();
Roshan Pius8714a3e2016-10-28 10:43:51 -0700222 std::pair<wifi_error, std::vector<wifi_ring_buffer_status>>
223 getRingBuffersStatus();
224 wifi_error startRingBufferLogging(const std::string& ring_name,
225 uint32_t verbose_level,
226 uint32_t max_interval_sec,
227 uint32_t min_data_size);
228 wifi_error getRingBufferData(const std::string& ring_name);
Roshan Pius203cb032016-12-14 17:41:20 -0800229 wifi_error registerErrorAlertCallbackHandler(
230 const on_error_alert_callback& on_alert_callback);
231 wifi_error deregisterErrorAlertCallbackHandler();
Roshan Piusd8e915a2016-10-28 11:23:11 -0700232 // RTT functions.
233 wifi_error startRttRangeRequest(
234 wifi_request_id id,
235 const std::vector<wifi_rtt_config>& rtt_configs,
236 const on_rtt_results_callback& on_results_callback);
237 wifi_error cancelRttRangeRequest(
238 wifi_request_id id, const std::vector<std::array<uint8_t, 6>>& mac_addrs);
239 std::pair<wifi_error, wifi_rtt_capabilities> getRttCapabilities();
240 std::pair<wifi_error, wifi_rtt_responder> getRttResponderInfo();
241 wifi_error enableRttResponder(wifi_request_id id,
242 const wifi_channel_info& channel_hint,
243 uint32_t max_duration_secs,
244 const wifi_rtt_responder& info);
245 wifi_error disableRttResponder(wifi_request_id id);
246 wifi_error setRttLci(wifi_request_id id, const wifi_lci_information& info);
247 wifi_error setRttLcr(wifi_request_id id, const wifi_lcr_information& info);
Roshan Pius23012092016-10-28 11:27:40 -0700248 // NAN functions.
249 wifi_error nanRegisterCallbackHandlers(const NanCallbackHandlers& callbacks);
250 wifi_error nanEnableRequest(transaction_id id, const NanEnableRequest& msg);
251 wifi_error nanDisableRequest(transaction_id id);
252 wifi_error nanPublishRequest(transaction_id id, const NanPublishRequest& msg);
253 wifi_error nanPublishCancelRequest(transaction_id id,
254 const NanPublishCancelRequest& msg);
255 wifi_error nanSubscribeRequest(transaction_id id,
256 const NanSubscribeRequest& msg);
257 wifi_error nanSubscribeCancelRequest(transaction_id id,
258 const NanSubscribeCancelRequest& msg);
259 wifi_error nanTransmitFollowupRequest(transaction_id id,
260 const NanTransmitFollowupRequest& msg);
261 wifi_error nanStatsRequest(transaction_id id, const NanStatsRequest& msg);
262 wifi_error nanConfigRequest(transaction_id id, const NanConfigRequest& msg);
263 wifi_error nanTcaRequest(transaction_id id, const NanTCARequest& msg);
264 wifi_error nanBeaconSdfPayloadRequest(transaction_id id,
265 const NanBeaconSdfPayloadRequest& msg);
266 std::pair<wifi_error, NanVersion> nanGetVersion();
267 wifi_error nanGetCapabilities(transaction_id id);
268 wifi_error nanDataInterfaceCreate(transaction_id id,
269 const std::string& iface_name);
270 wifi_error nanDataInterfaceDelete(transaction_id id,
271 const std::string& iface_name);
272 wifi_error nanDataRequestInitiator(transaction_id id,
273 const NanDataPathInitiatorRequest& msg);
274 wifi_error nanDataIndicationResponse(
275 transaction_id id, const NanDataPathIndicationResponse& msg);
Etan Cohenc9836f92017-06-30 13:55:21 -0700276 wifi_error nanDataEnd(transaction_id id, uint32_t ndpInstanceId);
Roshan Pius32fc12e2017-01-25 17:44:42 -0800277 // AP functions.
278 wifi_error setCountryCode(std::array<int8_t, 2> code);
Roshan Piusaabe5752016-09-29 09:03:59 -0700279
280 private:
Roshan Piusaabe5752016-09-29 09:03:59 -0700281 // Retrieve the interface handle to be used for the "wlan" interface.
282 wifi_error retrieveWlanInterfaceHandle();
283 // Run the legacy HAL event loop thread.
284 void runEventLoop();
Roshan Pius76ff3022016-10-28 10:33:34 -0700285 // Retrieve the cached gscan results to pass the results back to the external
286 // callbacks.
287 std::pair<wifi_error, std::vector<wifi_cached_scan_results>>
288 getGscanCachedResults();
Roshan Pius511cc492016-10-28 09:54:26 -0700289 void invalidate();
Roshan Piusaabe5752016-09-29 09:03:59 -0700290
Roshan Piusaabe5752016-09-29 09:03:59 -0700291 // Global function table of legacy HAL.
292 wifi_hal_fn global_func_table_;
293 // Opaque handle to be used for all global operations.
294 wifi_handle global_handle_;
295 // Opaque handle to be used for all wlan0 interface specific operations.
296 wifi_interface_handle wlan_interface_handle_;
297 // Flag to indicate if we have initiated the cleanup of legacy HAL.
Roshan Piusd32a43f2017-03-14 08:30:45 -0700298 std::atomic<bool> awaiting_event_loop_termination_;
Roshan Pius155344b2017-08-11 15:47:42 -0700299 std::condition_variable_any stop_wait_cv_;
Roshan Pius11f93032016-12-09 10:26:17 -0800300 // Flag to indicate if the legacy HAL has been started.
301 bool is_started_;
Roshan Pius97334112016-11-18 14:07:54 -0800302 wifi_system::InterfaceTool iface_tool_;
Roshan Piusaabe5752016-09-29 09:03:59 -0700303};
304
Roshan Pius955542e2016-10-28 09:42:44 -0700305} // namespace legacy_hal
Roshan Piusaabe5752016-09-29 09:03:59 -0700306} // namespace implementation
Roshan Piusdbd83ef2017-06-20 12:05:40 -0700307} // namespace V1_1
Roshan Piusaabe5752016-09-29 09:03:59 -0700308} // namespace wifi
309} // namespace hardware
310} // namespace android
311
Roshan Piuse73a5062016-12-12 08:53:34 -0800312#endif // WIFI_LEGACY_HAL_H_