blob: 17fbffed61f78c8932f5b474ca226b9b7a02d199 [file] [log] [blame]
mukesh agrawal8a3188d2011-12-01 20:56:44 +00001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
mukesh agrawalb54601c2011-06-07 17:39:22 -07002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "shill/wifi_service.h"
6
7#include <string>
Gaurav Shah10109f22011-11-11 20:16:22 -08008#include <utility>
mukesh agrawalb54601c2011-06-07 17:39:22 -07009
Chris Masone34af2182011-08-22 11:59:36 -070010#include <base/stringprintf.h>
11#include <base/string_number_conversions.h>
Paul Stewarta41e38d2011-11-11 07:47:29 -080012#include <base/string_split.h>
Chris Masone34af2182011-08-22 11:59:36 -070013#include <base/string_util.h>
Chris Masone3bd3c8c2011-06-13 08:20:26 -070014#include <chromeos/dbus/service_constants.h>
mukesh agrawal6e277772011-09-29 15:04:23 -070015#include <dbus/dbus.h>
mukesh agrawalb54601c2011-06-07 17:39:22 -070016
mukesh agrawale1d90e92012-02-15 17:36:08 -080017#include "shill/adaptor_interfaces.h"
mukesh agrawalb54601c2011-06-07 17:39:22 -070018#include "shill/control_interface.h"
19#include "shill/device.h"
mukesh agrawal1a056262011-10-05 14:36:54 -070020#include "shill/error.h"
Paul Stewart26b327e2011-10-19 11:38:09 -070021#include "shill/event_dispatcher.h"
mukesh agrawal1a056262011-10-05 14:36:54 -070022#include "shill/ieee80211.h"
Christopher Wileyb691efd2012-08-09 13:51:51 -070023#include "shill/logging.h"
Paul Stewart4357f4e2012-04-26 17:39:26 -070024#include "shill/manager.h"
Thieu Le48e6d6d2011-12-06 00:40:27 +000025#include "shill/metrics.h"
Paul Stewartecf4cd12012-04-17 11:08:39 -070026#include "shill/nss.h"
Thieu Lef7709452011-11-15 01:13:19 +000027#include "shill/property_accessor.h"
Paul Stewartd08f4432011-11-04 07:48:20 -070028#include "shill/store_interface.h"
mukesh agrawalb54601c2011-06-07 17:39:22 -070029#include "shill/wifi.h"
mukesh agrawal6e277772011-09-29 15:04:23 -070030#include "shill/wifi_endpoint.h"
31#include "shill/wpa_supplicant.h"
mukesh agrawalb54601c2011-06-07 17:39:22 -070032
mukesh agrawal261daca2011-12-02 18:56:56 +000033using std::set;
mukesh agrawalb54601c2011-06-07 17:39:22 -070034using std::string;
mukesh agrawal1a056262011-10-05 14:36:54 -070035using std::vector;
mukesh agrawalb54601c2011-06-07 17:39:22 -070036
37namespace shill {
mukesh agrawalb54601c2011-06-07 17:39:22 -070038
mukesh agrawalbf14e942012-03-02 14:36:34 -080039const char WiFiService::kAutoConnBusy[] = "busy";
40const char WiFiService::kAutoConnNoEndpoint[] = "no endpoints";
41
Paul Stewartd08f4432011-11-04 07:48:20 -070042const char WiFiService::kStorageHiddenSSID[] = "WiFi.HiddenSSID";
Paul Stewart2706aaf2011-12-14 16:44:04 -080043const char WiFiService::kStorageMode[] = "WiFi.Mode";
44const char WiFiService::kStoragePassphrase[] = "Passphrase";
45const char WiFiService::kStorageSecurity[] = "WiFi.Security";
46const char WiFiService::kStorageSSID[] = "SSID";
mukesh agrawale1d90e92012-02-15 17:36:08 -080047bool WiFiService::logged_signal_warning = false;
Paul Stewartd08f4432011-11-04 07:48:20 -070048
mukesh agrawalb54601c2011-06-07 17:39:22 -070049WiFiService::WiFiService(ControlInterface *control_interface,
50 EventDispatcher *dispatcher,
Thieu Le3426c8f2012-01-11 17:35:11 -080051 Metrics *metrics,
Chris Masone6791a432011-07-12 13:23:19 -070052 Manager *manager,
Chris Masone2b105542011-06-22 10:58:09 -070053 const WiFiRefPtr &device,
Paul Stewarta41e38d2011-11-11 07:47:29 -080054 const vector<uint8_t> &ssid,
55 const string &mode,
56 const string &security,
Paul Stewartced6a0b2011-11-08 15:32:04 -080057 bool hidden_ssid)
Thieu Le3426c8f2012-01-11 17:35:11 -080058 : Service(control_interface, dispatcher, metrics, manager,
59 Technology::kWifi),
Chris Masone75612302011-10-12 16:31:21 -070060 need_passphrase_(false),
mukesh agrawal6e277772011-09-29 15:04:23 -070061 security_(security),
Chris Masone092df3e2011-08-22 09:41:39 -070062 mode_(mode),
Paul Stewartced6a0b2011-11-08 15:32:04 -080063 hidden_ssid_(hidden_ssid),
Thieu Lee41a72d2012-02-06 20:46:51 +000064 frequency_(0),
Paul Stewart20088d82012-02-16 06:58:55 -080065 physical_mode_(0),
Paul Stewart23b393a2012-09-25 21:21:06 -070066 raw_signal_strength_(0),
mukesh agrawalb54601c2011-06-07 17:39:22 -070067 wifi_(device),
Paul Stewartecf4cd12012-04-17 11:08:39 -070068 ssid_(ssid),
69 nss_(NSS::GetInstance()) {
mukesh agrawalde29fa82011-09-16 16:16:36 -070070 PropertyStore *store = this->mutable_store();
Paul Stewartac4ac002011-08-26 12:04:26 -070071 store->RegisterConstString(flimflam::kModeProperty, &mode_);
mukesh agrawal292dc0f2012-01-26 18:02:46 -080072 HelpRegisterWriteOnlyDerivedString(flimflam::kPassphraseProperty,
73 &WiFiService::SetPassphrase,
74 &WiFiService::ClearPassphrase,
75 NULL);
Paul Stewartac4ac002011-08-26 12:04:26 -070076 store->RegisterBool(flimflam::kPassphraseRequiredProperty, &need_passphrase_);
77 store->RegisterConstString(flimflam::kSecurityProperty, &security_);
Chris Masone3bd3c8c2011-06-13 08:20:26 -070078
Paul Stewartac4ac002011-08-26 12:04:26 -070079 store->RegisterConstString(flimflam::kWifiAuthMode, &auth_mode_);
Paul Stewart0cab5682012-09-13 18:50:34 -070080 store->RegisterBool(flimflam::kWifiHiddenSsid, &hidden_ssid_);
Paul Stewartac4ac002011-08-26 12:04:26 -070081 store->RegisterConstUint16(flimflam::kWifiFrequency, &frequency_);
82 store->RegisterConstUint16(flimflam::kWifiPhyMode, &physical_mode_);
mukesh agrawal923f14f2012-06-04 16:46:08 -070083 store->RegisterConstString(flimflam::kWifiBSsid, &bssid_);
Paul Stewart72b2fdc2012-06-02 08:58:51 -070084 store->RegisterConstStringmap(kWifiVendorInformationProperty,
85 &vendor_information_);
mukesh agrawal32399322011-09-01 10:53:43 -070086
mukesh agrawald835b202011-10-07 15:26:47 -070087 hex_ssid_ = base::HexEncode(ssid_.data(), ssid_.size());
88 string ssid_string(
89 reinterpret_cast<const char *>(ssid_.data()), ssid_.size());
mukesh agrawal16bc1b82012-02-09 18:38:26 -080090 if (WiFi::SanitizeSSID(&ssid_string)) {
mukesh agrawald835b202011-10-07 15:26:47 -070091 // WifiHexSsid property should only be present if Name property
92 // has been munged.
93 store->RegisterConstString(flimflam::kWifiHexSsid, &hex_ssid_);
94 }
95 set_friendly_name(ssid_string);
Chris Masone9d779932011-08-25 16:33:41 -070096
mukesh agrawal6e277772011-09-29 15:04:23 -070097 // TODO(quiche): determine if it is okay to set EAP.KeyManagement for
98 // a service that is not 802.1x.
Gaurav Shah29d68882012-01-30 19:06:42 -080099 if (Is8021x()) {
Gaurav Shah10109f22011-11-11 20:16:22 -0800100 // Passphrases are not mandatory for 802.1X.
101 need_passphrase_ = false;
mukesh agrawal6e277772011-09-29 15:04:23 -0700102 } else if (security_ == flimflam::kSecurityPsk) {
103 SetEAPKeyManagement("WPA-PSK");
mukesh agrawal6e277772011-09-29 15:04:23 -0700104 } else if (security_ == flimflam::kSecurityRsn) {
105 SetEAPKeyManagement("WPA-PSK");
mukesh agrawal6e277772011-09-29 15:04:23 -0700106 } else if (security_ == flimflam::kSecurityWpa) {
107 SetEAPKeyManagement("WPA-PSK");
mukesh agrawal6e277772011-09-29 15:04:23 -0700108 } else if (security_ == flimflam::kSecurityWep) {
109 SetEAPKeyManagement("NONE");
mukesh agrawal6e277772011-09-29 15:04:23 -0700110 } else if (security_ == flimflam::kSecurityNone) {
111 SetEAPKeyManagement("NONE");
mukesh agrawal6e277772011-09-29 15:04:23 -0700112 } else {
Gaurav Shah10109f22011-11-11 20:16:22 -0800113 LOG(ERROR) << "Unsupported security method " << security_;
mukesh agrawal6e277772011-09-29 15:04:23 -0700114 }
115
Paul Stewartd08f4432011-11-04 07:48:20 -0700116 // Until we know better (at Profile load time), use the generic name.
117 storage_identifier_ = GetGenericStorageIdentifier();
mukesh agrawal29c13a12011-11-24 00:09:19 +0000118 UpdateConnectable();
Paul Stewartcb59fed2012-03-21 21:14:46 -0700119
120 IgnoreParameterForConfigure(flimflam::kModeProperty);
121 IgnoreParameterForConfigure(flimflam::kSSIDProperty);
122 IgnoreParameterForConfigure(flimflam::kSecurityProperty);
mukesh agrawalb54601c2011-06-07 17:39:22 -0700123}
124
Darin Petkov9cd7ca12012-07-03 11:06:40 +0200125WiFiService::~WiFiService() {}
mukesh agrawalb54601c2011-06-07 17:39:22 -0700126
mukesh agrawalbf14e942012-03-02 14:36:34 -0800127bool WiFiService::IsAutoConnectable(const char **reason) const {
128 if (!Service::IsAutoConnectable(reason)) {
129 return false;
130 }
131
132 // Only auto-connect to Services which have visible Endpoints.
133 // (Needed because hidden Services may remain registered with
134 // Manager even without visible Endpoints.)
135 if (!HasEndpoints()) {
136 *reason = kAutoConnNoEndpoint;
137 return false;
138 }
139
140 // Do not preempt an existing connection (whether pending, or
141 // connected, and whether to this service, or another).
142 if (!wifi_->IsIdle()) {
143 *reason = kAutoConnBusy;
144 return false;
145 }
146
147 return true;
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000148}
149
Darin Petkov4a66cc52012-06-15 10:08:29 +0200150void WiFiService::AddEndpoint(const WiFiEndpointConstRefPtr &endpoint) {
mukesh agrawal261daca2011-12-02 18:56:56 +0000151 DCHECK(endpoint->ssid() == ssid());
152 endpoints_.insert(endpoint);
mukesh agrawale1d90e92012-02-15 17:36:08 -0800153 UpdateFromEndpoints();
mukesh agrawal261daca2011-12-02 18:56:56 +0000154}
155
Darin Petkov4a66cc52012-06-15 10:08:29 +0200156void WiFiService::RemoveEndpoint(const WiFiEndpointConstRefPtr &endpoint) {
mukesh agrawal261daca2011-12-02 18:56:56 +0000157 set<WiFiEndpointConstRefPtr>::iterator i = endpoints_.find(endpoint);
158 DCHECK(i != endpoints_.end());
159 if (i == endpoints_.end()) {
160 LOG(WARNING) << "In " << __func__ << "(): "
161 << "ignorning non-existent endpoint "
162 << endpoint->bssid_string();
163 return;
164 }
165 endpoints_.erase(i);
mukesh agrawale1d90e92012-02-15 17:36:08 -0800166 if (current_endpoint_ == endpoint) {
167 current_endpoint_ = NULL;
168 }
169 UpdateFromEndpoints();
mukesh agrawal261daca2011-12-02 18:56:56 +0000170}
171
mukesh agrawale1d90e92012-02-15 17:36:08 -0800172void WiFiService::NotifyCurrentEndpoint(const WiFiEndpoint *endpoint) {
173 DCHECK(!endpoint || (endpoints_.find(endpoint) != endpoints_.end()));
174 current_endpoint_ = endpoint;
175 UpdateFromEndpoints();
Thieu Lee41a72d2012-02-06 20:46:51 +0000176}
177
mukesh agrawalb20776f2012-02-10 16:00:36 -0800178void WiFiService::NotifyEndpointUpdated(const WiFiEndpoint &endpoint) {
179 DCHECK(endpoints_.find(&endpoint) != endpoints_.end());
mukesh agrawale1d90e92012-02-15 17:36:08 -0800180 UpdateFromEndpoints();
mukesh agrawalb20776f2012-02-10 16:00:36 -0800181}
182
Chris Masone6515aab2011-10-12 16:19:09 -0700183string WiFiService::GetStorageIdentifier() const {
Paul Stewartd08f4432011-11-04 07:48:20 -0700184 return storage_identifier_;
Chris Masone34af2182011-08-22 11:59:36 -0700185}
mukesh agrawal445e72c2011-06-22 11:13:50 -0700186
mukesh agrawal1a056262011-10-05 14:36:54 -0700187void WiFiService::SetPassphrase(const string &passphrase, Error *error) {
188 if (security_ == flimflam::kSecurityWep) {
Thieu Lef4cbda92011-11-10 23:41:24 +0000189 ValidateWEPPassphrase(passphrase, error);
mukesh agrawal1a056262011-10-05 14:36:54 -0700190 } else if (security_ == flimflam::kSecurityPsk ||
191 security_ == flimflam::kSecurityWpa ||
192 security_ == flimflam::kSecurityRsn) {
Thieu Lef4cbda92011-11-10 23:41:24 +0000193 ValidateWPAPassphrase(passphrase, error);
194 } else {
195 error->Populate(Error::kNotSupported);
mukesh agrawal1a056262011-10-05 14:36:54 -0700196 }
Thieu Lef4cbda92011-11-10 23:41:24 +0000197
Paul Stewart2706aaf2011-12-14 16:44:04 -0800198 if (error->IsSuccess()) {
Thieu Lef4cbda92011-11-10 23:41:24 +0000199 passphrase_ = passphrase;
Paul Stewart2706aaf2011-12-14 16:44:04 -0800200 }
mukesh agrawal29c13a12011-11-24 00:09:19 +0000201
202 UpdateConnectable();
mukesh agrawal1a056262011-10-05 14:36:54 -0700203}
204
mukesh agrawal292dc0f2012-01-26 18:02:46 -0800205// ClearPassphrase is separate from SetPassphrase, because the default
206// value for |passphrase_| would not pass validation.
207void WiFiService::ClearPassphrase(Error */*error*/) {
208 passphrase_.clear();
209 UpdateConnectable();
210}
211
Paul Stewartd08f4432011-11-04 07:48:20 -0700212bool WiFiService::IsLoadableFrom(StoreInterface *storage) const {
213 return storage->ContainsGroup(GetGenericStorageIdentifier()) ||
214 storage->ContainsGroup(GetSpecificStorageIdentifier());
215}
216
Paul Stewarta41e38d2011-11-11 07:47:29 -0800217bool WiFiService::IsVisible() const {
Paul Stewarta41e38d2011-11-11 07:47:29 -0800218 // WiFi Services should be displayed only if they are in range (have
219 // endpoints that have shown up in a scan) or if the service is actively
220 // being connected.
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000221 return HasEndpoints() || IsConnected() || IsConnecting();
Paul Stewarta41e38d2011-11-11 07:47:29 -0800222}
223
Paul Stewartd08f4432011-11-04 07:48:20 -0700224bool WiFiService::Load(StoreInterface *storage) {
225 // First find out which storage identifier is available in priority order
226 // of specific, generic.
227 string id = GetSpecificStorageIdentifier();
228 if (!storage->ContainsGroup(id)) {
229 id = GetGenericStorageIdentifier();
230 if (!storage->ContainsGroup(id)) {
231 LOG(WARNING) << "Service is not available in the persistent store: "
232 << id;
233 return false;
234 }
235 }
236
237 // Set our storage identifier to match the storage name in the Profile.
238 storage_identifier_ = id;
239
240 // Load properties common to all Services.
241 if (!Service::Load(storage)) {
242 return false;
243 }
244
245 // Load properties specific to WiFi services.
246 storage->GetBool(id, kStorageHiddenSSID, &hidden_ssid_);
mukesh agrawal29c13a12011-11-24 00:09:19 +0000247
Paul Stewart2706aaf2011-12-14 16:44:04 -0800248 // NB: mode, security and ssid parameters are never read in from
249 // Load() as they are provided from the scan.
250
251 string passphrase;
252 if (storage->GetCryptedString(id, kStoragePassphrase, &passphrase)) {
253 Error error;
254 SetPassphrase(passphrase, &error);
255 if (!error.IsSuccess()) {
256 LOG(ERROR) << "Passphrase could not be set: "
257 << Error::GetName(error.type());
258 }
259 }
260
Paul Stewartd08f4432011-11-04 07:48:20 -0700261 return true;
262}
263
264bool WiFiService::Save(StoreInterface *storage) {
265 // Save properties common to all Services.
266 if (!Service::Save(storage)) {
267 return false;
268 }
269
270 // Save properties specific to WiFi services.
271 const string id = GetStorageIdentifier();
Paul Stewart2706aaf2011-12-14 16:44:04 -0800272 storage->SetBool(id, kStorageHiddenSSID, hidden_ssid_);
273 storage->SetString(id, kStorageMode, mode_);
274 storage->SetCryptedString(id, kStoragePassphrase, passphrase_);
275 storage->SetString(id, kStorageSecurity, security_);
276 storage->SetString(id, kStorageSSID, hex_ssid_);
mukesh agrawal29c13a12011-11-24 00:09:19 +0000277
Paul Stewartd08f4432011-11-04 07:48:20 -0700278 return true;
279}
280
Paul Stewart65512e12012-03-26 18:01:08 -0700281bool WiFiService::Unload() {
Paul Stewartd8ad3c42012-01-09 12:39:38 -0800282 Service::Unload();
283 hidden_ssid_ = false;
Wade Guthrie005bd342012-05-02 09:37:07 -0700284 Error unused_error;
285 ClearPassphrase(&unused_error);
Paul Stewart66c86002012-01-30 18:00:52 -0800286 if (security_ == flimflam::kSecurity8021x) {
287 // TODO(pstew): 802.1x/RSN networks (as opposed to 802.1x/WPA or
288 // 802.1x/WEP) have the ability to cache WPA PMK credentials.
289 // Make sure that these are cleared when credentials for networks
290 // of this type goes away.
291 //
292 // When wpa_supplicant gains the ability, do this credential
293 // clearing on a per-service basis. Also do this whenever the credentials
294 // for a service changes. crosbug.com/25670
295 wifi_->ClearCachedCredentials();
296 }
Paul Stewart65512e12012-03-26 18:01:08 -0700297 return !IsVisible();
Paul Stewartd8ad3c42012-01-09 12:39:38 -0800298}
299
Paul Stewart6ab23a92011-11-09 17:17:47 -0800300bool WiFiService::IsSecurityMatch(const string &security) const {
301 return GetSecurityClass(security) == GetSecurityClass(security_);
302}
303
Thieu Le48e6d6d2011-12-06 00:40:27 +0000304void WiFiService::InitializeCustomMetrics() const {
305 string histogram = metrics()->GetFullMetricName(
306 Metrics::kMetricTimeToJoinMilliseconds,
307 technology());
308 metrics()->AddServiceStateTransitionTimer(this,
309 histogram,
310 Service::kStateAssociating,
311 Service::kStateConfiguring);
312}
313
Thieu Leb84ba342012-03-02 15:15:19 -0800314void WiFiService::SendPostReadyStateMetrics(
315 int64 time_resume_to_ready_milliseconds) const {
Thieu Le48e6d6d2011-12-06 00:40:27 +0000316 metrics()->SendEnumToUMA(
317 metrics()->GetFullMetricName(Metrics::kMetricNetworkChannel,
318 technology()),
319 Metrics::WiFiFrequencyToChannel(frequency_),
320 Metrics::kMetricNetworkChannelMax);
Thieu Lead1ec2c2012-01-05 23:39:48 +0000321
322 DCHECK(physical_mode_ < Metrics::kWiFiNetworkPhyModeMax);
323 metrics()->SendEnumToUMA(
324 metrics()->GetFullMetricName(Metrics::kMetricNetworkPhyMode,
325 technology()),
326 static_cast<Metrics::WiFiNetworkPhyMode>(physical_mode_),
327 Metrics::kWiFiNetworkPhyModeMax);
328
329 Metrics::WiFiSecurity security_uma =
330 Metrics::WiFiSecurityStringToEnum(security_);
331 DCHECK(security_uma != Metrics::kWiFiSecurityUnknown);
332 metrics()->SendEnumToUMA(
333 metrics()->GetFullMetricName(Metrics::kMetricNetworkSecurity,
334 technology()),
335 security_uma,
336 Metrics::kMetricNetworkSecurityMax);
Thieu Leb84ba342012-03-02 15:15:19 -0800337
Paul Stewart23b393a2012-09-25 21:21:06 -0700338 // We invert the sign of the signal strength value, since UMA histograms
339 // cannot represent negative numbers (it stores them but cannot display
340 // them), and dBm values of interest start at 0 and go negative from there.
341 metrics()->SendToUMA(
342 metrics()->GetFullMetricName(Metrics::kMetricNetworkSignalStrength,
343 technology()),
344 -raw_signal_strength_,
345 Metrics::kMetricNetworkSignalStrengthMin,
346 Metrics::kMetricNetworkSignalStrengthMax,
347 Metrics::kMetricNetworkSignalStrengthNumBuckets);
348
Thieu Leb84ba342012-03-02 15:15:19 -0800349 if (time_resume_to_ready_milliseconds > 0) {
350 metrics()->SendToUMA(
351 metrics()->GetFullMetricName(
352 Metrics::kMetricTimeResumeToReadyMilliseconds, technology()),
353 time_resume_to_ready_milliseconds,
354 Metrics::kTimerHistogramMillisecondsMin,
355 Metrics::kTimerHistogramMillisecondsMax,
356 Metrics::kTimerHistogramNumBuckets);
357 }
Thieu Le48e6d6d2011-12-06 00:40:27 +0000358}
359
mukesh agrawal32399322011-09-01 10:53:43 -0700360// private methods
mukesh agrawal292dc0f2012-01-26 18:02:46 -0800361void WiFiService::HelpRegisterWriteOnlyDerivedString(
362 const string &name,
363 void(WiFiService::*set)(const string &, Error *),
364 void(WiFiService::*clear)(Error *),
365 const string *default_value) {
366 mutable_store()->RegisterDerivedString(
Thieu Lef7709452011-11-15 01:13:19 +0000367 name,
mukesh agrawal292dc0f2012-01-26 18:02:46 -0800368 StringAccessor(
369 new CustomWriteOnlyAccessor<WiFiService, string>(
370 this, set, clear, default_value)));
Thieu Lef7709452011-11-15 01:13:19 +0000371}
372
Wade Guthrie005bd342012-05-02 09:37:07 -0700373void WiFiService::Connect(Error *error) {
374 LOG(INFO) << "In " << __func__ << "(): Service " << friendly_name();
mukesh agrawal6e277772011-09-29 15:04:23 -0700375 std::map<string, DBus::Variant> params;
376 DBus::MessageIter writer;
377
Wade Guthrie005bd342012-05-02 09:37:07 -0700378 if (!connectable()) {
379 LOG(ERROR) << "Can't connect. Service " << friendly_name()
380 << " is not connectable";
Christopher Wiley1ce658d2012-10-10 10:02:03 -0700381 Error::PopulateAndLog(error,
382 Error::kOperationFailed,
383 Error::GetDefaultMessage(Error::kOperationFailed));
384 return;
385 }
386 if (IsConnecting() || IsConnected()) {
387 LOG(WARNING) << "Can't connect. Service " << friendly_name()
388 << " is already connecting or connected.";
389 Error::PopulateAndLog(error,
390 Error::kAlreadyConnected,
391 Error::GetDefaultMessage(Error::kAlreadyConnected));
Wade Guthrie005bd342012-05-02 09:37:07 -0700392 return;
393 }
394
mukesh agrawal6e277772011-09-29 15:04:23 -0700395 params[wpa_supplicant::kNetworkPropertyMode].writer().
396 append_uint32(WiFiEndpoint::ModeStringToUint(mode_));
397
Paul Stewarte2d7c502012-07-16 16:35:10 -0700398 if (mode_ == flimflam::kModeAdhoc && frequency_ != 0) {
399 // Frequency is required in order to successfully conntect to an IBSS
400 // with wpa_supplicant. If we have one from our endpoint, insert it
401 // here.
402 params[wpa_supplicant::kNetworkPropertyFrequency].writer().
403 append_int32(frequency_);
404 }
405
Gaurav Shah29d68882012-01-30 19:06:42 -0800406 if (Is8021x()) {
407 // Is EAP key management is not set, set to a default.
Gaurav Shah10109f22011-11-11 20:16:22 -0800408 if (GetEAPKeyManagement().empty())
409 SetEAPKeyManagement("WPA-EAP");
410 Populate8021xProperties(&params);
Paul Stewartbc6e7392012-05-24 07:07:48 -0700411 ClearEAPCertification();
mukesh agrawal6e277772011-09-29 15:04:23 -0700412 } else if (security_ == flimflam::kSecurityPsk) {
Gaurav Shahf8721ee2011-11-07 09:12:46 -0800413 const string psk_proto = StringPrintf("%s %s",
414 wpa_supplicant::kSecurityModeWPA,
415 wpa_supplicant::kSecurityModeRSN);
416 params[wpa_supplicant::kPropertySecurityProtocol].writer().
417 append_string(psk_proto.c_str());
418 params[wpa_supplicant::kPropertyPreSharedKey].writer().
419 append_string(passphrase_.c_str());
mukesh agrawal6e277772011-09-29 15:04:23 -0700420 } else if (security_ == flimflam::kSecurityRsn) {
mukesh agrawalf2fd7452011-10-03 16:38:47 -0700421 params[wpa_supplicant::kPropertySecurityProtocol].writer().
422 append_string(wpa_supplicant::kSecurityModeRSN);
423 params[wpa_supplicant::kPropertyPreSharedKey].writer().
424 append_string(passphrase_.c_str());
mukesh agrawal6e277772011-09-29 15:04:23 -0700425 } else if (security_ == flimflam::kSecurityWpa) {
426 params[wpa_supplicant::kPropertySecurityProtocol].writer().
427 append_string(wpa_supplicant::kSecurityModeWPA);
428 params[wpa_supplicant::kPropertyPreSharedKey].writer().
429 append_string(passphrase_.c_str());
430 } else if (security_ == flimflam::kSecurityWep) {
Thieu Lef4cbda92011-11-10 23:41:24 +0000431 params[wpa_supplicant::kPropertyAuthAlg].writer().
432 append_string(wpa_supplicant::kSecurityAuthAlg);
433 Error error;
434 int key_index;
435 std::vector<uint8> password_bytes;
436 ParseWEPPassphrase(passphrase_, &key_index, &password_bytes, &error);
437 writer = params[wpa_supplicant::kPropertyWEPKey +
438 base::IntToString(key_index)].writer();
439 writer << password_bytes;
440 params[wpa_supplicant::kPropertyWEPTxKeyIndex].writer().
441 append_uint32(key_index);
mukesh agrawal6e277772011-09-29 15:04:23 -0700442 } else if (security_ == flimflam::kSecurityNone) {
Gaurav Shahf8721ee2011-11-07 09:12:46 -0800443 // Nothing special to do here.
mukesh agrawal6e277772011-09-29 15:04:23 -0700444 } else {
Gaurav Shahf8721ee2011-11-07 09:12:46 -0800445 LOG(ERROR) << "Can't connect. Unsupported security method " << security_;
mukesh agrawal6e277772011-09-29 15:04:23 -0700446 }
447
Gaurav Shah10109f22011-11-11 20:16:22 -0800448 params[wpa_supplicant::kNetworkPropertyEapKeyManagement].writer().
mukesh agrawal6e277772011-09-29 15:04:23 -0700449 append_string(key_management().c_str());
Gaurav Shah7ad8e532011-11-11 17:14:49 -0800450
451 // See note in dbus_adaptor.cc on why we need to use a local.
mukesh agrawal6e277772011-09-29 15:04:23 -0700452 writer = params[wpa_supplicant::kNetworkPropertySSID].writer();
453 writer << ssid_;
454
455 wifi_->ConnectTo(this, params);
mukesh agrawalb54601c2011-06-07 17:39:22 -0700456}
457
Eric Shienbrood9a245532012-03-07 14:20:39 -0500458void WiFiService::Disconnect(Error *error) {
459 LOG(INFO) << __func__;
460 Service::Disconnect(error);
mukesh agrawal0ed0f2e2011-12-05 20:36:17 +0000461 wifi_->DisconnectFrom(this);
462}
463
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800464string WiFiService::GetDeviceRpcId(Error */*error*/) {
Chris Masone95207da2011-06-29 16:50:49 -0700465 return wifi_->GetRpcIdentifier();
466}
467
mukesh agrawal29c13a12011-11-24 00:09:19 +0000468void WiFiService::UpdateConnectable() {
Gaurav Shah10109f22011-11-11 20:16:22 -0800469 bool is_connectable = false;
mukesh agrawal29c13a12011-11-24 00:09:19 +0000470 if (security_ == flimflam::kSecurityNone) {
471 DCHECK(passphrase_.empty());
Paul Stewartd8ad3c42012-01-09 12:39:38 -0800472 need_passphrase_ = false;
Gaurav Shah10109f22011-11-11 20:16:22 -0800473 is_connectable = true;
Gaurav Shah29d68882012-01-30 19:06:42 -0800474 } else if (Is8021x()) {
475 is_connectable = Is8021xConnectable();
mukesh agrawal29c13a12011-11-24 00:09:19 +0000476 } else if (security_ == flimflam::kSecurityWep ||
477 security_ == flimflam::kSecurityWpa ||
478 security_ == flimflam::kSecurityPsk ||
479 security_ == flimflam::kSecurityRsn) {
Paul Stewartd8ad3c42012-01-09 12:39:38 -0800480 need_passphrase_ = passphrase_.empty();
Gaurav Shah10109f22011-11-11 20:16:22 -0800481 is_connectable = !need_passphrase_;
mukesh agrawal29c13a12011-11-24 00:09:19 +0000482 }
Gaurav Shah10109f22011-11-11 20:16:22 -0800483 set_connectable(is_connectable);
mukesh agrawal29c13a12011-11-24 00:09:19 +0000484}
485
mukesh agrawale1d90e92012-02-15 17:36:08 -0800486void WiFiService::UpdateFromEndpoints() {
487 const WiFiEndpoint *representative_endpoint = NULL;
488
489 if (current_endpoint_) {
mukesh agrawale1d90e92012-02-15 17:36:08 -0800490 representative_endpoint = current_endpoint_;
491 } else {
492 int16 best_signal = std::numeric_limits<int16>::min();
493 for (set<WiFiEndpointConstRefPtr>::iterator i = endpoints_.begin();
494 i != endpoints_.end(); ++i) {
495 if ((*i)->signal_strength() >= best_signal) {
496 best_signal = (*i)->signal_strength();
497 representative_endpoint = *i;
498 }
499 }
500 }
501
Paul Stewart72b2fdc2012-06-02 08:58:51 -0700502 uint16 frequency = 0;
503 int16 signal = std::numeric_limits<int16>::min();
mukesh agrawal923f14f2012-06-04 16:46:08 -0700504 string bssid;
Paul Stewart72b2fdc2012-06-02 08:58:51 -0700505 Stringmap vendor_information;
Paul Stewart23b393a2012-09-25 21:21:06 -0700506 // Represent "unknown raw signal strength" as 0.
507 raw_signal_strength_ = 0;
Paul Stewart72b2fdc2012-06-02 08:58:51 -0700508 if (representative_endpoint) {
mukesh agrawale1d90e92012-02-15 17:36:08 -0800509 frequency = representative_endpoint->frequency();
510 signal = representative_endpoint->signal_strength();
Paul Stewart23b393a2012-09-25 21:21:06 -0700511 raw_signal_strength_ = signal;
mukesh agrawal923f14f2012-06-04 16:46:08 -0700512 bssid = representative_endpoint->bssid_string();
Paul Stewart72b2fdc2012-06-02 08:58:51 -0700513 vendor_information = representative_endpoint->GetVendorInformation();
mukesh agrawale1d90e92012-02-15 17:36:08 -0800514 }
515
516 if (frequency_ != frequency) {
517 frequency_ = frequency;
518 adaptor()->EmitUint16Changed(flimflam::kWifiFrequency, frequency_);
519 }
mukesh agrawal923f14f2012-06-04 16:46:08 -0700520 if (bssid_ != bssid) {
521 bssid_ = bssid;
522 adaptor()->EmitStringChanged(flimflam::kWifiBSsid, bssid_);
523 }
Paul Stewart72b2fdc2012-06-02 08:58:51 -0700524 if (vendor_information_ != vendor_information) {
525 vendor_information_ = vendor_information;
526 adaptor()->EmitStringmapChanged(kWifiVendorInformationProperty,
527 vendor_information_);
528 }
mukesh agrawale1d90e92012-02-15 17:36:08 -0800529 SetStrength(SignalToStrength(signal));
530}
531
mukesh agrawal1a056262011-10-05 14:36:54 -0700532// static
Thieu Lef4cbda92011-11-10 23:41:24 +0000533void WiFiService::ValidateWEPPassphrase(const std::string &passphrase,
534 Error *error) {
535 ParseWEPPassphrase(passphrase, NULL, NULL, error);
mukesh agrawal1a056262011-10-05 14:36:54 -0700536}
537
538// static
Thieu Lef4cbda92011-11-10 23:41:24 +0000539void WiFiService::ValidateWPAPassphrase(const std::string &passphrase,
540 Error *error) {
mukesh agrawal1a056262011-10-05 14:36:54 -0700541 unsigned int length = passphrase.length();
542 vector<uint8> passphrase_bytes;
543
544 if (base::HexStringToBytes(passphrase, &passphrase_bytes)) {
545 if (length != IEEE_80211::kWPAHexLen &&
546 (length < IEEE_80211::kWPAAsciiMinLen ||
547 length > IEEE_80211::kWPAAsciiMaxLen)) {
548 error->Populate(Error::kInvalidPassphrase);
549 }
550 } else {
551 if (length < IEEE_80211::kWPAAsciiMinLen ||
552 length > IEEE_80211::kWPAAsciiMaxLen) {
553 error->Populate(Error::kInvalidPassphrase);
554 }
555 }
Thieu Lef4cbda92011-11-10 23:41:24 +0000556}
mukesh agrawal1a056262011-10-05 14:36:54 -0700557
Thieu Lef4cbda92011-11-10 23:41:24 +0000558// static
559void WiFiService::ParseWEPPassphrase(const string &passphrase,
560 int *key_index,
561 std::vector<uint8> *password_bytes,
562 Error *error) {
563 unsigned int length = passphrase.length();
564 int key_index_local;
565 std::string password_text;
566 bool is_hex = false;
567
568 switch (length) {
569 case IEEE_80211::kWEP40AsciiLen:
570 case IEEE_80211::kWEP104AsciiLen:
571 key_index_local = 0;
572 password_text = passphrase;
573 break;
574 case IEEE_80211::kWEP40AsciiLen + 2:
575 case IEEE_80211::kWEP104AsciiLen + 2:
576 if (CheckWEPKeyIndex(passphrase, error)) {
577 base::StringToInt(passphrase.substr(0,1), &key_index_local);
578 password_text = passphrase.substr(2);
579 }
580 break;
581 case IEEE_80211::kWEP40HexLen:
582 case IEEE_80211::kWEP104HexLen:
583 if (CheckWEPIsHex(passphrase, error)) {
584 key_index_local = 0;
585 password_text = passphrase;
586 is_hex = true;
587 }
588 break;
589 case IEEE_80211::kWEP40HexLen + 2:
590 case IEEE_80211::kWEP104HexLen + 2:
591 if(CheckWEPKeyIndex(passphrase, error) &&
592 CheckWEPIsHex(passphrase.substr(2), error)) {
593 base::StringToInt(passphrase.substr(0,1), &key_index_local);
594 password_text = passphrase.substr(2);
595 is_hex = true;
596 } else if (CheckWEPPrefix(passphrase, error) &&
597 CheckWEPIsHex(passphrase.substr(2), error)) {
598 key_index_local = 0;
599 password_text = passphrase.substr(2);
600 is_hex = true;
601 }
602 break;
603 case IEEE_80211::kWEP40HexLen + 4:
604 case IEEE_80211::kWEP104HexLen + 4:
605 if (CheckWEPKeyIndex(passphrase, error) &&
606 CheckWEPPrefix(passphrase.substr(2), error) &&
607 CheckWEPIsHex(passphrase.substr(4), error)) {
608 base::StringToInt(passphrase.substr(0,1), &key_index_local);
609 password_text = passphrase.substr(4);
610 is_hex = true;
611 }
612 break;
613 default:
614 error->Populate(Error::kInvalidPassphrase);
615 break;
616 }
617
mukesh agrawal1a056262011-10-05 14:36:54 -0700618 if (error->IsSuccess()) {
Thieu Lef4cbda92011-11-10 23:41:24 +0000619 if (key_index)
620 *key_index = key_index_local;
621 if (password_bytes) {
622 if (is_hex)
623 base::HexStringToBytes(password_text, password_bytes);
624 else
625 password_bytes->insert(password_bytes->end(),
626 password_text.begin(),
627 password_text.end());
628 }
mukesh agrawal1a056262011-10-05 14:36:54 -0700629 }
630}
631
632// static
633bool WiFiService::CheckWEPIsHex(const string &passphrase, Error *error) {
634 vector<uint8> passphrase_bytes;
635 if (base::HexStringToBytes(passphrase, &passphrase_bytes)) {
636 return true;
637 } else {
638 error->Populate(Error::kInvalidPassphrase);
639 return false;
640 }
641}
642
643// static
644bool WiFiService::CheckWEPKeyIndex(const string &passphrase, Error *error) {
645 if (StartsWithASCII(passphrase, "0:", false) ||
646 StartsWithASCII(passphrase, "1:", false) ||
647 StartsWithASCII(passphrase, "2:", false) ||
648 StartsWithASCII(passphrase, "3:", false)) {
649 return true;
650 } else {
651 error->Populate(Error::kInvalidPassphrase);
652 return false;
653 }
654}
655
656// static
657bool WiFiService::CheckWEPPrefix(const string &passphrase, Error *error) {
658 if (StartsWithASCII(passphrase, "0x", false)) {
659 return true;
660 } else {
661 error->Populate(Error::kInvalidPassphrase);
662 return false;
663 }
664}
665
Paul Stewart6ab23a92011-11-09 17:17:47 -0800666// static
Paul Stewart6ab23a92011-11-09 17:17:47 -0800667string WiFiService::GetSecurityClass(const string &security) {
668 if (security == flimflam::kSecurityRsn ||
669 security == flimflam::kSecurityWpa) {
670 return flimflam::kSecurityPsk;
Paul Stewartd08f4432011-11-04 07:48:20 -0700671 } else {
Paul Stewart6ab23a92011-11-09 17:17:47 -0800672 return security;
Paul Stewartd08f4432011-11-04 07:48:20 -0700673 }
674}
675
Paul Stewarta41e38d2011-11-11 07:47:29 -0800676// static
677bool WiFiService::ParseStorageIdentifier(const string &storage_name,
678 string *address,
679 string *mode,
680 string *security) {
681 vector<string> wifi_parts;
682 base::SplitString(storage_name, '_', &wifi_parts);
Paul Stewart0756db92012-01-27 08:34:47 -0800683 if ((wifi_parts.size() != 5 && wifi_parts.size() != 6) ||
684 wifi_parts[0] != flimflam::kTypeWifi) {
Paul Stewarta41e38d2011-11-11 07:47:29 -0800685 return false;
686 }
687 *address = wifi_parts[1];
688 *mode = wifi_parts[3];
Paul Stewart0756db92012-01-27 08:34:47 -0800689 if (wifi_parts.size() == 5) {
690 *security = wifi_parts[4];
691 } else {
692 // Account for security type "802_1x" which got split up above.
693 *security = wifi_parts[4] + "_" + wifi_parts[5];
694 }
Paul Stewarta41e38d2011-11-11 07:47:29 -0800695 return true;
696}
697
mukesh agrawale1d90e92012-02-15 17:36:08 -0800698// static
699uint8 WiFiService::SignalToStrength(int16 signal_dbm) {
700 int16 strength;
701 if (signal_dbm > 0) {
702 if (!logged_signal_warning) {
703 LOG(WARNING) << "Signal strength is suspiciously high. "
704 << "Assuming value " << signal_dbm << " is not in dBm.";
705 logged_signal_warning = true;
706 }
707 strength = signal_dbm;
708 } else {
709 strength = 120 + signal_dbm; // Call -20dBm "perfect".
710 }
711
mukesh agrawal8f3f7752012-02-17 19:42:09 -0800712 if (strength > kStrengthMax) {
713 strength = kStrengthMax;
714 } else if (strength < kStrengthMin) {
715 strength = kStrengthMin;
mukesh agrawale1d90e92012-02-15 17:36:08 -0800716 }
717 return strength;
718}
719
Paul Stewart6ab23a92011-11-09 17:17:47 -0800720string WiFiService::GetGenericStorageIdentifier() const {
721 return GetStorageIdentifierForSecurity(GetSecurityClass(security_));
722}
723
Paul Stewartd08f4432011-11-04 07:48:20 -0700724string WiFiService::GetSpecificStorageIdentifier() const {
725 return GetStorageIdentifierForSecurity(security_);
726}
727
728string WiFiService::GetStorageIdentifierForSecurity(
729 const string &security) const {
730 return StringToLowerASCII(base::StringPrintf("%s_%s_%s_%s_%s",
731 flimflam::kTypeWifi,
732 wifi_->address().c_str(),
733 hex_ssid_.c_str(),
734 mode_.c_str(),
735 security.c_str()));
736}
737
Gary Moraine4aaf5e2012-04-05 14:37:32 -0700738void WiFiService::set_eap(const EapCredentials &new_eap) {
739 EapCredentials modified_eap = new_eap;
740
741 // An empty key_management field is invalid. Prevent it, if possible.
742 if (modified_eap.key_management.empty()) {
743 modified_eap.key_management = eap().key_management;
744 }
745 Service::set_eap(modified_eap);
Gaurav Shah10109f22011-11-11 20:16:22 -0800746 UpdateConnectable();
747}
748
Paul Stewart4357f4e2012-04-26 17:39:26 -0700749void WiFiService::OnProfileConfigured() {
750 if (profile() || !hidden_ssid()) {
751 return;
752 }
753 // This situation occurs when a hidden WiFi service created via GetService
754 // has been persisted to a profile in Manager::ConfigureService(). Now
755 // that configuration is saved, we must join the service with its profile,
756 // which will make this SSID eligible for directed probes during scans.
757 manager()->RegisterService(this);
758}
759
Gaurav Shah29d68882012-01-30 19:06:42 -0800760bool WiFiService::Is8021x() const {
761 if (security_ == flimflam::kSecurity8021x)
762 return true;
763
764 // Dynamic WEP + 802.1x.
765 if (security_ == flimflam::kSecurityWep &&
766 GetEAPKeyManagement() == "IEEE8021X")
767 return true;
768 return false;
769}
770
Gaurav Shah10109f22011-11-11 20:16:22 -0800771void WiFiService::Populate8021xProperties(
772 std::map<string, DBus::Variant> *params) {
Paul Stewartecf4cd12012-04-17 11:08:39 -0700773 string ca_cert = eap().ca_cert;
774 if (!eap().ca_cert_nss.empty()) {
775 vector<char> id(ssid_.begin(), ssid_.end());
776 FilePath certfile = nss_->GetDERCertfile(eap().ca_cert_nss, id);
777 if (certfile.empty()) {
778 LOG(ERROR) << "Unable to extract certificate: " << eap().ca_cert_nss;
779 } else {
780 ca_cert = certfile.value();
781 }
782 }
783
784
Gaurav Shah10109f22011-11-11 20:16:22 -0800785 typedef std::pair<const char *, const char *> KeyVal;
Paul Stewart20550982012-04-16 12:16:11 -0700786 KeyVal init_propertyvals[] = {
Gaurav Shah10109f22011-11-11 20:16:22 -0800787 KeyVal(wpa_supplicant::kNetworkPropertyEapIdentity, eap().identity.c_str()),
788 KeyVal(wpa_supplicant::kNetworkPropertyEapEap, eap().eap.c_str()),
789 KeyVal(wpa_supplicant::kNetworkPropertyEapInnerEap,
790 eap().inner_eap.c_str()),
791 KeyVal(wpa_supplicant::kNetworkPropertyEapAnonymousIdentity,
792 eap().anonymous_identity.c_str()),
793 KeyVal(wpa_supplicant::kNetworkPropertyEapClientCert,
794 eap().client_cert.c_str()),
795 KeyVal(wpa_supplicant::kNetworkPropertyEapPrivateKey,
796 eap().private_key.c_str()),
797 KeyVal(wpa_supplicant::kNetworkPropertyEapPrivateKeyPassword,
798 eap().private_key_password.c_str()),
Paul Stewartecf4cd12012-04-17 11:08:39 -0700799 KeyVal(wpa_supplicant::kNetworkPropertyEapCaCert, ca_cert.c_str()),
Gaurav Shah10109f22011-11-11 20:16:22 -0800800 KeyVal(wpa_supplicant::kNetworkPropertyEapCaPassword,
801 eap().password.c_str()),
802 KeyVal(wpa_supplicant::kNetworkPropertyEapCertId, eap().cert_id.c_str()),
803 KeyVal(wpa_supplicant::kNetworkPropertyEapKeyId, eap().key_id.c_str()),
804 KeyVal(wpa_supplicant::kNetworkPropertyEapCaCertId,
805 eap().ca_cert_id.c_str()),
Paul Stewartbc6e7392012-05-24 07:07:48 -0700806 KeyVal(wpa_supplicant::kNetworkPropertyEapSubjectMatch,
807 eap().subject_match.c_str())
Gaurav Shah10109f22011-11-11 20:16:22 -0800808 };
809
Paul Stewart20550982012-04-16 12:16:11 -0700810 vector<KeyVal> propertyvals(init_propertyvals,
811 init_propertyvals + arraysize(init_propertyvals));
812 if (eap().use_system_cas) {
813 propertyvals.push_back(KeyVal(
814 wpa_supplicant::kNetworkPropertyCaPath, wpa_supplicant::kCaPath));
Paul Stewartecf4cd12012-04-17 11:08:39 -0700815 } else if (ca_cert.empty()) {
Paul Stewart20550982012-04-16 12:16:11 -0700816 LOG(WARNING) << __func__
817 << ": No certificate authorities are configured."
818 << " Server certificates will be accepted"
819 << " unconditionally.";
820 }
821
822 if (!eap().cert_id.empty() || !eap().key_id.empty() ||
823 !eap().ca_cert_id.empty()) {
824 propertyvals.push_back(KeyVal(
825 wpa_supplicant::kNetworkPropertyEapPin, eap().pin.c_str()));
826 propertyvals.push_back(KeyVal(
827 wpa_supplicant::kNetworkPropertyEngineId,
828 wpa_supplicant::kEnginePKCS11));
829 // We can't use the propertyvals vector for this since this argument
830 // is a uint32, not a string.
831 (*params)[wpa_supplicant::kNetworkPropertyEngine].writer().
832 append_uint32(wpa_supplicant::kDefaultEngine);
833 }
834
835 vector<KeyVal>::iterator it;
836 for (it = propertyvals.begin(); it != propertyvals.end(); ++it) {
837 if (strlen((*it).second) > 0) {
838 (*params)[(*it).first].writer().append_string((*it).second);
Gaurav Shah10109f22011-11-11 20:16:22 -0800839 }
840 }
841}
842
mukesh agrawalb54601c2011-06-07 17:39:22 -0700843} // namespace shill