OSDN Git Service

Merge "wificond: Use Vendor HAL for mode change"
[android-x86/system-connectivity-wificond.git] / scanning / scanner_impl.cpp
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 #include "wificond/scanning/scanner_impl.h"
18
19 #include <string>
20 #include <vector>
21
22 #include <android-base/logging.h>
23
24 #include "wificond/client_interface_impl.h"
25 #include "wificond/scanning/scan_utils.h"
26
27 using android::binder::Status;
28 using android::net::wifi::IPnoScanEvent;
29 using android::net::wifi::IScanEvent;
30 using android::sp;
31 using com::android::server::wifi::wificond::NativeScanResult;
32 using com::android::server::wifi::wificond::PnoSettings;
33 using com::android::server::wifi::wificond::SingleScanSettings;
34
35 using std::string;
36 using std::vector;
37
38 using namespace std::placeholders;
39
40 namespace android {
41 namespace wificond {
42
43 ScannerImpl::ScannerImpl(uint32_t wiphy_index,
44                          uint32_t interface_index,
45                          const ScanCapabilities& scan_capabilities,
46                          const WiphyFeatures& wiphy_features,
47                          ClientInterfaceImpl* client_interface,
48                          NetlinkUtils* netlink_utils,
49                          ScanUtils* scan_utils)
50     : valid_(true),
51       scan_started_(false),
52       pno_scan_started_(false),
53       wiphy_index_(wiphy_index),
54       interface_index_(interface_index),
55       scan_capabilities_(scan_capabilities),
56       wiphy_features_(wiphy_features),
57       client_interface_(client_interface),
58       netlink_utils_(netlink_utils),
59       scan_utils_(scan_utils),
60       scan_event_handler_(nullptr) {
61   // Subscribe one-shot scan result notification from kernel.
62   LOG(INFO) << "subscribe scan result for interface with index: "
63             << (int)interface_index_;
64   scan_utils_->SubscribeScanResultNotification(
65       interface_index_,
66       std::bind(&ScannerImpl::OnScanResultsReady,
67                 this,
68                 _1, _2, _3, _4));
69   // Subscribe scheduled scan result notification from kernel.
70   scan_utils_->SubscribeSchedScanResultNotification(
71       interface_index_,
72       std::bind(&ScannerImpl::OnSchedScanResultsReady,
73                 this,
74                 _1, _2));
75 }
76
77 ScannerImpl::~ScannerImpl() {
78 }
79
80 void ScannerImpl::Invalidate() {
81   LOG(INFO) << "Unsubscribe scan result for interface with index: "
82             << (int)interface_index_;
83   scan_utils_->UnsubscribeScanResultNotification(interface_index_);
84   scan_utils_->UnsubscribeSchedScanResultNotification(interface_index_);
85 }
86
87 bool ScannerImpl::CheckIsValid() {
88   if (!valid_) {
89     LOG(DEBUG) << "Calling on a invalid scanner object."
90                << "Underlying client interface object was destroyed.";
91   }
92   return valid_;
93 }
94
95 Status ScannerImpl::getAvailable2gChannels(
96     std::unique_ptr<vector<int32_t>>* out_frequencies) {
97   if (!CheckIsValid()) {
98     return Status::ok();
99   }
100   BandInfo band_info;
101   if (!netlink_utils_->GetWiphyInfo(wiphy_index_,
102                                &band_info,
103                                &scan_capabilities_,
104                                &wiphy_features_)) {
105     LOG(ERROR) << "Failed to get wiphy info from kernel";
106     out_frequencies->reset(nullptr);
107     return Status::ok();
108   }
109
110   out_frequencies->reset(new vector<int32_t>(band_info.band_2g.begin(),
111                                              band_info.band_2g.end()));
112   return Status::ok();
113 }
114
115 Status ScannerImpl::getAvailable5gNonDFSChannels(
116     std::unique_ptr<vector<int32_t>>* out_frequencies) {
117   if (!CheckIsValid()) {
118     return Status::ok();
119   }
120   BandInfo band_info;
121   if (!netlink_utils_->GetWiphyInfo(wiphy_index_,
122                                &band_info,
123                                &scan_capabilities_,
124                                &wiphy_features_)) {
125     LOG(ERROR) << "Failed to get wiphy info from kernel";
126     out_frequencies->reset(nullptr);
127     return Status::ok();
128   }
129
130   out_frequencies->reset(new vector<int32_t>(band_info.band_5g.begin(),
131                                              band_info.band_5g.end()));
132   return Status::ok();
133 }
134
135 Status ScannerImpl::getAvailableDFSChannels(
136     std::unique_ptr<vector<int32_t>>* out_frequencies) {
137   if (!CheckIsValid()) {
138     return Status::ok();
139   }
140   BandInfo band_info;
141   if (!netlink_utils_->GetWiphyInfo(wiphy_index_,
142                                &band_info,
143                                &scan_capabilities_,
144                                &wiphy_features_)) {
145     LOG(ERROR) << "Failed to get wiphy info from kernel";
146     out_frequencies->reset(nullptr);
147     return Status::ok();
148   }
149
150   out_frequencies->reset(new vector<int32_t>(band_info.band_dfs.begin(),
151                                              band_info.band_dfs.end()));
152   return Status::ok();
153 }
154
155 Status ScannerImpl::getScanResults(vector<NativeScanResult>* out_scan_results) {
156   if (!CheckIsValid()) {
157     return Status::ok();
158   }
159   if (!scan_utils_->GetScanResult(interface_index_, out_scan_results)) {
160     LOG(ERROR) << "Failed to get scan results via NL80211";
161   }
162   return Status::ok();
163 }
164
165 Status ScannerImpl::scan(const SingleScanSettings& scan_settings,
166                          bool* out_success) {
167   if (!CheckIsValid()) {
168     *out_success = false;
169     return Status::ok();
170   }
171
172   if (scan_started_) {
173     LOG(WARNING) << "Scan already started";
174   }
175   // Only request MAC address randomization when station is not associated.
176   bool request_random_mac =  wiphy_features_.supports_random_mac_oneshot_scan &&
177       !client_interface_->IsAssociated();
178
179   // Initialize it with an empty ssid for a wild card scan.
180   vector<vector<uint8_t>> ssids = {{}};
181   for (auto& network : scan_settings.hidden_networks_) {
182     if (ssids.size() + 1 > scan_capabilities_.max_num_scan_ssids) {
183       LOG(WARNING) << "Skip scan ssid for single scan: "
184                    << string(network.ssid_.begin(), network.ssid_.end());
185       continue;
186     }
187     ssids.push_back(network.ssid_);
188   }
189
190   vector<uint32_t> freqs;
191   for (auto& channel : scan_settings.channel_settings_) {
192     freqs.push_back(channel.frequency_);
193   }
194
195   if (!scan_utils_->Scan(interface_index_, request_random_mac, ssids, freqs)) {
196     *out_success = false;
197     return Status::ok();
198   }
199   scan_started_ = true;
200   *out_success = true;
201   return Status::ok();
202 }
203
204 Status ScannerImpl::startPnoScan(const PnoSettings& pno_settings,
205                                  bool* out_success) {
206   if (!CheckIsValid()) {
207     *out_success = false;
208     return Status::ok();
209   }
210   if (pno_scan_started_) {
211     LOG(WARNING) << "Pno scan already started";
212   }
213   // An empty ssid for a wild card scan.
214   vector<vector<uint8_t>> scan_ssids = {{}};
215   vector<vector<uint8_t>> match_ssids;
216   // Empty frequency list: scan all frequencies.
217   vector<uint32_t> freqs;
218
219   for (auto& network : pno_settings.pno_networks_) {
220     // Add hidden network ssid.
221     if (network.is_hidden_) {
222       if (scan_ssids.size() + 1 > scan_capabilities_.max_num_sched_scan_ssids) {
223         LOG(WARNING) << "Skip scan ssid for pno scan: "
224                      << string(network.ssid_.begin(), network.ssid_.end());
225         continue;
226       }
227       scan_ssids.push_back(network.ssid_);
228     }
229
230     if (match_ssids.size() + 1 > scan_capabilities_.max_match_sets) {
231       LOG(WARNING) << "Skip match ssid for pno scan: "
232                    << string(network.ssid_.begin(), network.ssid_.end());
233       continue;
234     }
235     match_ssids.push_back(network.ssid_);
236   }
237
238   // Only request MAC address randomization when station is not associated.
239   bool request_random_mac = wiphy_features_.supports_random_mac_sched_scan &&
240       !client_interface_->IsAssociated();
241
242   if (!scan_utils_->StartScheduledScan(interface_index_,
243                                        pno_settings.interval_ms_,
244                                        // TODO: honor both rssi thresholds.
245                                        pno_settings.min_2g_rssi_,
246                                        request_random_mac,
247                                        scan_ssids,
248                                        match_ssids,
249                                        freqs)) {
250     *out_success = false;
251     LOG(ERROR) << "Failed to start scheduled scan";
252     return Status::ok();
253   }
254   pno_scan_started_ = true;
255   *out_success = true;
256   return Status::ok();
257 }
258
259 Status ScannerImpl::stopPnoScan(bool* out_success) {
260   if (!CheckIsValid()) {
261     *out_success = false;
262     return Status::ok();
263   }
264
265   if (!pno_scan_started_) {
266     LOG(WARNING) << "No pno scan started";
267   }
268   if (!scan_utils_->StopScheduledScan(interface_index_)) {
269     *out_success = false;
270     return Status::ok();
271   }
272   pno_scan_started_ = false;
273   *out_success = true;
274   return Status::ok();
275 }
276
277 Status ScannerImpl::subscribeScanEvents(const sp<IScanEvent>& handler) {
278   if (!CheckIsValid()) {
279     return Status::ok();
280   }
281
282   if (scan_event_handler_ != nullptr) {
283     LOG(ERROR) << "Found existing scan events subscriber."
284                << " This subscription request will unsubscribe it";
285   }
286   scan_event_handler_ = handler;
287   return Status::ok();
288 }
289
290 Status ScannerImpl::unsubscribeScanEvents() {
291   scan_event_handler_ = nullptr;
292   return Status::ok();
293 }
294
295
296 Status ScannerImpl::subscribePnoScanEvents(const sp<IPnoScanEvent>& handler) {
297   if (!CheckIsValid()) {
298     return Status::ok();
299   }
300
301   if (pno_scan_event_handler_ != nullptr) {
302     LOG(ERROR) << "Found existing pno scan events subscriber."
303                << " This subscription request will unsubscribe it";
304   }
305   pno_scan_event_handler_ = handler;
306
307   return Status::ok();
308 }
309
310 Status ScannerImpl::unsubscribePnoScanEvents() {
311   pno_scan_event_handler_ = nullptr;
312   return Status::ok();
313 }
314
315 void ScannerImpl::OnScanResultsReady(
316     uint32_t interface_index,
317     bool aborted,
318     vector<vector<uint8_t>>& ssids,
319     vector<uint32_t>& frequencies) {
320   LOG(INFO) << "Received scan result notification from kernel.";
321   scan_started_ = false;
322   if (scan_event_handler_ != nullptr) {
323     // TODO: Pass other parameters back once we find framework needs them.
324     if (aborted) {
325       LOG(WARNING) << "Scan aborted";
326       scan_event_handler_->OnScanFailed();
327     } else {
328       scan_event_handler_->OnScanResultReady();
329     }
330   } else {
331     LOG(WARNING) << "No scan event handler found.";
332   }
333 }
334
335 void ScannerImpl::OnSchedScanResultsReady(uint32_t interface_index,
336                                           bool scan_stopped) {
337   if (pno_scan_event_handler_ != nullptr) {
338     if (scan_stopped) {
339       // If |pno_scan_started_| is false.
340       // This stop notification might result from our own request.
341       // See the document for NL80211_CMD_SCHED_SCAN_STOPPED in nl80211.h.
342       if (pno_scan_started_) {
343         pno_scan_event_handler_->OnPnoScanFailed();
344       }
345       pno_scan_started_ = false;
346     } else {
347       pno_scan_event_handler_->OnPnoNetworkFound();
348     }
349   }
350 }
351
352 }  // namespace wificond
353 }  // namespace android