OSDN Git Service

Use 5g rssi threshold by default
[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_5g_rssi_,
246                                        request_random_mac,
247                                        scan_ssids,
248                                        match_ssids,
249                                        freqs)) {
250     *out_success = false;
251     LOG(ERROR) << "Failed to start pno scan";
252     return Status::ok();
253   }
254   LOG(INFO) << "Pno scan started";
255   pno_scan_started_ = true;
256   *out_success = true;
257   return Status::ok();
258 }
259
260 Status ScannerImpl::stopPnoScan(bool* out_success) {
261   if (!CheckIsValid()) {
262     *out_success = false;
263     return Status::ok();
264   }
265
266   if (!pno_scan_started_) {
267     LOG(WARNING) << "No pno scan started";
268   }
269   if (!scan_utils_->StopScheduledScan(interface_index_)) {
270     *out_success = false;
271     return Status::ok();
272   }
273   pno_scan_started_ = false;
274   *out_success = true;
275   return Status::ok();
276 }
277
278 Status ScannerImpl::subscribeScanEvents(const sp<IScanEvent>& handler) {
279   if (!CheckIsValid()) {
280     return Status::ok();
281   }
282
283   if (scan_event_handler_ != nullptr) {
284     LOG(ERROR) << "Found existing scan events subscriber."
285                << " This subscription request will unsubscribe it";
286   }
287   scan_event_handler_ = handler;
288   return Status::ok();
289 }
290
291 Status ScannerImpl::unsubscribeScanEvents() {
292   scan_event_handler_ = nullptr;
293   return Status::ok();
294 }
295
296
297 Status ScannerImpl::subscribePnoScanEvents(const sp<IPnoScanEvent>& handler) {
298   if (!CheckIsValid()) {
299     return Status::ok();
300   }
301
302   if (pno_scan_event_handler_ != nullptr) {
303     LOG(ERROR) << "Found existing pno scan events subscriber."
304                << " This subscription request will unsubscribe it";
305   }
306   pno_scan_event_handler_ = handler;
307
308   return Status::ok();
309 }
310
311 Status ScannerImpl::unsubscribePnoScanEvents() {
312   pno_scan_event_handler_ = nullptr;
313   return Status::ok();
314 }
315
316 void ScannerImpl::OnScanResultsReady(
317     uint32_t interface_index,
318     bool aborted,
319     vector<vector<uint8_t>>& ssids,
320     vector<uint32_t>& frequencies) {
321   LOG(INFO) << "Received scan result notification from kernel.";
322   scan_started_ = false;
323   if (scan_event_handler_ != nullptr) {
324     // TODO: Pass other parameters back once we find framework needs them.
325     if (aborted) {
326       LOG(WARNING) << "Scan aborted";
327       scan_event_handler_->OnScanFailed();
328     } else {
329       scan_event_handler_->OnScanResultReady();
330     }
331   } else {
332     LOG(WARNING) << "No scan event handler found.";
333   }
334 }
335
336 void ScannerImpl::OnSchedScanResultsReady(uint32_t interface_index,
337                                           bool scan_stopped) {
338   if (pno_scan_event_handler_ != nullptr) {
339     if (scan_stopped) {
340       // If |pno_scan_started_| is false.
341       // This stop notification might result from our own request.
342       // See the document for NL80211_CMD_SCHED_SCAN_STOPPED in nl80211.h.
343       if (pno_scan_started_) {
344         pno_scan_event_handler_->OnPnoScanFailed();
345       }
346       pno_scan_started_ = false;
347     } else {
348       pno_scan_event_handler_->OnPnoNetworkFound();
349     }
350   }
351 }
352
353 }  // namespace wificond
354 }  // namespace android