Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| 17 | #ifndef WIFI_LEGACY_WIFI_HAL_H_ |
| 18 | #define WIFI_LEGACY_WIFI_HAL_H_ |
| 19 | |
| 20 | #include <functional> |
| 21 | #include <thread> |
Roshan Pius | 734fea0 | 2016-10-11 08:30:28 -0700 | [diff] [blame] | 22 | #include <vector> |
Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 23 | |
Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 24 | namespace android { |
| 25 | namespace hardware { |
| 26 | namespace wifi { |
| 27 | namespace V1_0 { |
| 28 | namespace implementation { |
Roshan Pius | 955542e | 2016-10-28 09:42:44 -0700 | [diff] [blame] | 29 | // This is in a separate namespace to prevent typename conflicts between |
| 30 | // the legacy HAL types and the HIDL interface types. |
| 31 | namespace legacy_hal { |
| 32 | // Wrap all the types defined inside the legacy HAL header files inside this |
| 33 | // namespace. |
| 34 | #include <hardware_legacy/wifi_hal.h> |
Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 35 | |
Roshan Pius | 0a47c18 | 2016-10-28 10:23:00 -0700 | [diff] [blame] | 36 | // APF capabilities supported by the iface. |
| 37 | struct PacketFilterCapabilities { |
| 38 | uint32_t version; |
| 39 | uint32_t max_len; |
| 40 | }; |
| 41 | |
Roshan Pius | 76ff302 | 2016-10-28 10:33:34 -0700 | [diff] [blame^] | 42 | // Full scan results contain IE info and are hence passed by reference, to |
| 43 | // preserve the variable length array member |ie_data|. Callee must not retain |
| 44 | // the pointer. |
| 45 | using on_gscan_full_result_callback = |
| 46 | std::function<void(wifi_request_id, const wifi_scan_result*, uint32_t)>; |
| 47 | // These scan results don't contain any IE info, so no need to pass by |
| 48 | // reference. |
| 49 | using on_gscan_results_callback = std::function<void( |
| 50 | wifi_request_id, const std::vector<wifi_cached_scan_results>&)>; |
| 51 | |
Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 52 | /** |
| 53 | * Class that encapsulates all legacy HAL interactions. |
| 54 | * This class manages the lifetime of the event loop thread used by legacy HAL. |
| 55 | */ |
| 56 | class WifiLegacyHal { |
| 57 | public: |
| 58 | WifiLegacyHal(); |
Roshan Pius | ab5c471 | 2016-10-06 14:37:15 -0700 | [diff] [blame] | 59 | // Names to use for the different types of iface. |
| 60 | std::string getApIfaceName(); |
| 61 | std::string getNanIfaceName(); |
| 62 | std::string getP2pIfaceName(); |
| 63 | std::string getStaIfaceName(); |
| 64 | |
Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 65 | // Initialize the legacy HAL and start the event looper thread. |
| 66 | wifi_error start(); |
| 67 | // Deinitialize the legacy HAL and stop the event looper thread. |
| 68 | wifi_error stop(const std::function<void()>& on_complete_callback); |
Roshan Pius | 4b26c83 | 2016-10-03 12:49:58 -0700 | [diff] [blame] | 69 | // Wrappers for all the functions in the legacy HAL function table. |
Roshan Pius | ab5c471 | 2016-10-06 14:37:15 -0700 | [diff] [blame] | 70 | std::pair<wifi_error, std::string> getDriverVersion(); |
| 71 | std::pair<wifi_error, std::string> getFirmwareVersion(); |
Roshan Pius | 3c86852 | 2016-10-27 12:43:49 -0700 | [diff] [blame] | 72 | std::pair<wifi_error, std::vector<uint8_t>> requestDriverMemoryDump(); |
| 73 | std::pair<wifi_error, std::vector<uint8_t>> requestFirmwareMemoryDump(); |
Roshan Pius | 0a47c18 | 2016-10-28 10:23:00 -0700 | [diff] [blame] | 74 | std::pair<wifi_error, uint32_t> getSupportedFeatureSet(); |
| 75 | // APF functions. |
| 76 | std::pair<wifi_error, PacketFilterCapabilities> getPacketFilterCapabilities(); |
| 77 | wifi_error setPacketFilter(const std::vector<uint8_t>& program); |
Roshan Pius | 76ff302 | 2016-10-28 10:33:34 -0700 | [diff] [blame^] | 78 | // Gscan functions. |
| 79 | std::pair<wifi_error, wifi_gscan_capabilities> getGscanCapabilities(); |
| 80 | // These API's provides a simplified interface over the legacy Gscan API's: |
| 81 | // a) All scan events from the legacy HAL API other than the |
| 82 | // |WIFI_SCAN_FAILED| are treated as notification of results. |
| 83 | // This method then retrieves the cached scan results from the legacy |
| 84 | // HAL API and triggers the externally provided |on_results_user_callback| |
| 85 | // on success. |
| 86 | // b) |WIFI_SCAN_FAILED| scan event or failure to retrieve cached scan results |
| 87 | // triggers the externally provided |on_failure_user_callback|. |
| 88 | // c) Full scan result event triggers the externally provided |
| 89 | // |on_full_result_user_callback|. |
| 90 | wifi_error startGscan( |
| 91 | wifi_request_id id, |
| 92 | const wifi_scan_cmd_params& params, |
| 93 | const std::function<void(wifi_request_id)>& on_failure_callback, |
| 94 | const on_gscan_results_callback& on_results_callback, |
| 95 | const on_gscan_full_result_callback& on_full_result_callback); |
| 96 | wifi_error stopGscan(wifi_request_id id); |
| 97 | std::pair<wifi_error, std::vector<uint32_t>> getValidFrequenciesForGscan( |
| 98 | wifi_band band); |
Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 99 | |
| 100 | private: |
Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 101 | // Retrieve the interface handle to be used for the "wlan" interface. |
| 102 | wifi_error retrieveWlanInterfaceHandle(); |
| 103 | // Run the legacy HAL event loop thread. |
| 104 | void runEventLoop(); |
Roshan Pius | 76ff302 | 2016-10-28 10:33:34 -0700 | [diff] [blame^] | 105 | // Retrieve the cached gscan results to pass the results back to the external |
| 106 | // callbacks. |
| 107 | std::pair<wifi_error, std::vector<wifi_cached_scan_results>> |
| 108 | getGscanCachedResults(); |
Roshan Pius | 511cc49 | 2016-10-28 09:54:26 -0700 | [diff] [blame] | 109 | void invalidate(); |
Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 110 | |
| 111 | // Event loop thread used by legacy HAL. |
| 112 | std::thread event_loop_thread_; |
| 113 | // Global function table of legacy HAL. |
| 114 | wifi_hal_fn global_func_table_; |
| 115 | // Opaque handle to be used for all global operations. |
| 116 | wifi_handle global_handle_; |
| 117 | // Opaque handle to be used for all wlan0 interface specific operations. |
| 118 | wifi_interface_handle wlan_interface_handle_; |
| 119 | // Flag to indicate if we have initiated the cleanup of legacy HAL. |
| 120 | bool awaiting_event_loop_termination_; |
| 121 | }; |
| 122 | |
Roshan Pius | 955542e | 2016-10-28 09:42:44 -0700 | [diff] [blame] | 123 | } // namespace legacy_hal |
Roshan Pius | aabe575 | 2016-09-29 09:03:59 -0700 | [diff] [blame] | 124 | } // namespace implementation |
| 125 | } // namespace V1_0 |
| 126 | } // namespace wifi |
| 127 | } // namespace hardware |
| 128 | } // namespace android |
| 129 | |
| 130 | #endif // WIFI_LEGACY_WIFI_HAL_H_ |