blob: fe5d0dea8f51988d62a0f78e21edcfedac3f4dee [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#ifndef SHILL_WIFI_SERVICE_
6#define SHILL_WIFI_SERVICE_
7
mukesh agrawal261daca2011-12-02 18:56:56 +00008#include <set>
mukesh agrawalb54601c2011-06-07 17:39:22 -07009#include <string>
10#include <vector>
11
Darin Petkov4a09b6b2011-07-19 12:52:06 -070012#include "shill/dbus_bindings/supplicant-interface.h"
Paul Stewart26b327e2011-10-19 11:38:09 -070013#include "shill/event_dispatcher.h"
Chris Masone2b105542011-06-22 10:58:09 -070014#include "shill/refptr_types.h"
mukesh agrawalb54601c2011-06-07 17:39:22 -070015#include "shill/service.h"
mukesh agrawalb54601c2011-06-07 17:39:22 -070016
17namespace shill {
18
Chris Masone6791a432011-07-12 13:23:19 -070019class ControlInterface;
20class EventDispatcher;
mukesh agrawal1a056262011-10-05 14:36:54 -070021class Error;
Chris Masone6791a432011-07-12 13:23:19 -070022class Manager;
Thieu Le3426c8f2012-01-11 17:35:11 -080023class Metrics;
Paul Stewartecf4cd12012-04-17 11:08:39 -070024class NSS;
Chris Masone6791a432011-07-12 13:23:19 -070025
mukesh agrawalb54601c2011-06-07 17:39:22 -070026class WiFiService : public Service {
27 public:
Paul Stewart0756db92012-01-27 08:34:47 -080028 // TODO(pstew): Storage constants shouldn't need to be public
29 // crosbug.com/25813
30 static const char kStorageHiddenSSID[];
31 static const char kStorageMode[];
32 static const char kStoragePassphrase[];
33 static const char kStorageSecurity[];
34 static const char kStorageSSID[];
35
mukesh agrawalb54601c2011-06-07 17:39:22 -070036 WiFiService(ControlInterface *control_interface,
37 EventDispatcher *dispatcher,
Thieu Le3426c8f2012-01-11 17:35:11 -080038 Metrics *metrics,
Chris Masone6791a432011-07-12 13:23:19 -070039 Manager *manager,
Chris Masone2b105542011-06-22 10:58:09 -070040 const WiFiRefPtr &device,
mukesh agrawal7ec71312011-11-10 02:08:26 +000041 const std::vector<uint8_t> &ssid,
Chris Masone092df3e2011-08-22 09:41:39 -070042 const std::string &mode,
Paul Stewartced6a0b2011-11-08 15:32:04 -080043 const std::string &security,
44 bool hidden_ssid);
mukesh agrawalb54601c2011-06-07 17:39:22 -070045 ~WiFiService();
Darin Petkov4d6d9412011-08-24 13:19:54 -070046
47 // Inherited from Service.
48 virtual void Connect(Error *error);
mukesh agrawal0ed0f2e2011-12-05 20:36:17 +000049 virtual void Disconnect(Error *error);
Paul Stewart81426132012-05-16 10:05:10 -070050 virtual bool Is8021x() const;
51
Darin Petkov4a66cc52012-06-15 10:08:29 +020052 void AddEndpoint(const WiFiEndpointConstRefPtr &endpoint);
53 void RemoveEndpoint(const WiFiEndpointConstRefPtr &endpoint);
54 int GetEndpointCount() const { return endpoints_.size(); }
mukesh agrawale1d90e92012-02-15 17:36:08 -080055
mukesh agrawalb20776f2012-02-10 16:00:36 -080056 // Called to update the identity of the currently connected endpoint.
mukesh agrawale1d90e92012-02-15 17:36:08 -080057 // To indicate that there is no currently connect endpoint, call with
58 // |endpoint| set to NULL.
59 void NotifyCurrentEndpoint(const WiFiEndpoint *endpoint);
mukesh agrawalb20776f2012-02-10 16:00:36 -080060 // Called to inform of changes in the properties of an endpoint.
61 // (Not necessarily the currently connected endpoint.)
62 void NotifyEndpointUpdated(const WiFiEndpoint &endpoint);
mukesh agrawal261daca2011-12-02 18:56:56 +000063
Chris Masone34af2182011-08-22 11:59:36 -070064 // wifi_<MAC>_<BSSID>_<mode_string>_<security_string>
Chris Masone6515aab2011-10-12 16:19:09 -070065 std::string GetStorageIdentifier() const;
Paul Stewarta41e38d2011-11-11 07:47:29 -080066 static bool ParseStorageIdentifier(const std::string &storage_name,
67 std::string *address,
68 std::string *mode,
69 std::string *security);
Chris Masone34af2182011-08-22 11:59:36 -070070
Thieu Le48e6d6d2011-12-06 00:40:27 +000071 const std::string &mode() const { return mode_; }
72 const std::string &key_management() const { return GetEAPKeyManagement(); }
73 const std::vector<uint8_t> &ssid() const { return ssid_; }
mukesh agrawalb54601c2011-06-07 17:39:22 -070074
mukesh agrawal1a056262011-10-05 14:36:54 -070075 void SetPassphrase(const std::string &passphrase, Error *error);
76
Paul Stewartd08f4432011-11-04 07:48:20 -070077 // Overrride Load and Save from parent Service class. We will call
78 // the parent method.
79 virtual bool IsLoadableFrom(StoreInterface *storage) const;
80 virtual bool Load(StoreInterface *storage);
81 virtual bool Save(StoreInterface *storage);
Paul Stewart65512e12012-03-26 18:01:08 -070082 virtual bool Unload();
Paul Stewartd08f4432011-11-04 07:48:20 -070083
mukesh agrawal8a3188d2011-12-01 20:56:44 +000084 virtual bool HasEndpoints() const { return !endpoints_.empty(); }
Paul Stewarta41e38d2011-11-11 07:47:29 -080085 virtual bool IsVisible() const;
Paul Stewart6ab23a92011-11-09 17:17:47 -080086 bool IsSecurityMatch(const std::string &security) const;
Paul Stewartced6a0b2011-11-08 15:32:04 -080087 bool hidden_ssid() const { return hidden_ssid_; }
88
Thieu Le48e6d6d2011-12-06 00:40:27 +000089 virtual void InitializeCustomMetrics() const;
Thieu Leb84ba342012-03-02 15:15:19 -080090 virtual void SendPostReadyStateMetrics(
91 int64 time_resume_to_ready_milliseconds) const;
Thieu Le48e6d6d2011-12-06 00:40:27 +000092
Gaurav Shah10109f22011-11-11 20:16:22 -080093 // Override from parent Service class to correctly update connectability
94 // when the EAP credentials change for 802.1x networks.
95 void set_eap(const EapCredentials& eap);
96
Paul Stewart4357f4e2012-04-26 17:39:26 -070097 // Override from parent Service class to register hidden services once they
98 // have been configured.
99 virtual void OnProfileConfigured();
100
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000101 protected:
mukesh agrawalbf14e942012-03-02 14:36:34 -0800102 virtual bool IsAutoConnectable(const char **reason) const;
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000103
mukesh agrawalb54601c2011-06-07 17:39:22 -0700104 private:
Paul Stewartd08f4432011-11-04 07:48:20 -0700105 friend class WiFiServiceSecurityTest;
mukesh agrawale1d90e92012-02-15 17:36:08 -0800106 friend class WiFiServiceUpdateFromEndpointsTest; // SignalToStrength
Thieu Lead1ec2c2012-01-05 23:39:48 +0000107 FRIEND_TEST(MetricsTest, WiFiServicePostReady);
Thieu Lee41a72d2012-02-06 20:46:51 +0000108 FRIEND_TEST(WiFiMainTest, CurrentBSSChangedUpdateServiceEndpoint);
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000109 FRIEND_TEST(WiFiServiceTest, AutoConnect);
mukesh agrawal8abd2f62012-01-30 14:56:14 -0800110 FRIEND_TEST(WiFiServiceTest, ClearWriteOnlyDerivedProperty); // passphrase_
Gaurav Shah10109f22011-11-11 20:16:22 -0800111 FRIEND_TEST(WiFiServiceTest, ConnectTask8021x);
Gaurav Shah29d68882012-01-30 19:06:42 -0800112 FRIEND_TEST(WiFiServiceTest, ConnectTaskDynamicWEP);
Gaurav Shahf8721ee2011-11-07 09:12:46 -0800113 FRIEND_TEST(WiFiServiceTest, ConnectTaskPSK);
Gaurav Shah29d68882012-01-30 19:06:42 -0800114 FRIEND_TEST(WiFiServiceTest, ConnectTaskRSN);
Thieu Lef4cbda92011-11-10 23:41:24 +0000115 FRIEND_TEST(WiFiServiceTest, ConnectTaskWEP);
Gaurav Shah29d68882012-01-30 19:06:42 -0800116 FRIEND_TEST(WiFiServiceTest, ConnectTaskWPA);
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000117 FRIEND_TEST(WiFiServiceTest, IsAutoConnectable);
Paul Stewartd08f4432011-11-04 07:48:20 -0700118 FRIEND_TEST(WiFiServiceTest, LoadHidden);
Paul Stewartd8ad3c42012-01-09 12:39:38 -0800119 FRIEND_TEST(WiFiServiceTest, LoadAndUnloadPassphrase);
Gaurav Shah10109f22011-11-11 20:16:22 -0800120 FRIEND_TEST(WiFiServiceTest, Populate8021x);
Paul Stewart20550982012-04-16 12:16:11 -0700121 FRIEND_TEST(WiFiServiceTest, Populate8021xNoSystemCAs);
122 FRIEND_TEST(WiFiServiceTest, Populate8021xUsingHardwareAuth);
Paul Stewartecf4cd12012-04-17 11:08:39 -0700123 FRIEND_TEST(WiFiServiceTest, Populate8021xNSS);
mukesh agrawale1d90e92012-02-15 17:36:08 -0800124 FRIEND_TEST(WiFiServiceTest, SignalToStrength); // SignalToStrength
Paul Stewartd08f4432011-11-04 07:48:20 -0700125
mukesh agrawalbf14e942012-03-02 14:36:34 -0800126 static const char kAutoConnBusy[];
127 static const char kAutoConnNoEndpoint[];
128
mukesh agrawal292dc0f2012-01-26 18:02:46 -0800129 // Override the base clase implementation, because we need to allow
130 // arguments that aren't base class methods.
131 void HelpRegisterWriteOnlyDerivedString(
Thieu Lef7709452011-11-15 01:13:19 +0000132 const std::string &name,
mukesh agrawal292dc0f2012-01-26 18:02:46 -0800133 void(WiFiService::*set)(const std::string &value, Error *error),
134 void(WiFiService::*clear)(Error *error),
135 const std::string *default_value);
Thieu Lef7709452011-11-15 01:13:19 +0000136
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800137 std::string GetDeviceRpcId(Error *error);
mukesh agrawal292dc0f2012-01-26 18:02:46 -0800138 void ClearPassphrase(Error *error);
mukesh agrawal29c13a12011-11-24 00:09:19 +0000139 void UpdateConnectable();
mukesh agrawale1d90e92012-02-15 17:36:08 -0800140 void UpdateFromEndpoints();
Chris Masone95207da2011-06-29 16:50:49 -0700141
Thieu Lef4cbda92011-11-10 23:41:24 +0000142 static void ValidateWEPPassphrase(const std::string &passphrase,
143 Error *error);
144 static void ValidateWPAPassphrase(const std::string &passphrase,
145 Error *error);
146 static void ParseWEPPassphrase(const std::string &passphrase,
147 int *key_index,
148 std::vector<uint8> *password_bytes,
149 Error *error);
mukesh agrawal1a056262011-10-05 14:36:54 -0700150 static bool CheckWEPIsHex(const std::string &passphrase, Error *error);
151 static bool CheckWEPKeyIndex(const std::string &passphrase, Error *error);
152 static bool CheckWEPPrefix(const std::string &passphrase, Error *error);
153
mukesh agrawal8f3f7752012-02-17 19:42:09 -0800154 // Maps a signal value, in dBm, to a "strength" value, from
155 // |Service::kStrengthMin| to |Service:kStrengthMax|.
mukesh agrawale1d90e92012-02-15 17:36:08 -0800156 static uint8 SignalToStrength(int16 signal_dbm);
157
Paul Stewart6ab23a92011-11-09 17:17:47 -0800158 // "wpa", "rsn" and "psk" are equivalent from a configuration perspective.
159 // This function maps them all into "psk".
160 static std::string GetSecurityClass(const std::string &security);
161
Paul Stewartd08f4432011-11-04 07:48:20 -0700162 // Profile data for a WPA/RSN service can be stored under a number of
163 // different names. These functions create different storage identifiers
164 // based on whether they are referred to by their generic "psk" name or
165 // if they use the (legacy) specific "wpa" or "rsn" names.
166 std::string GetGenericStorageIdentifier() const;
167 std::string GetSpecificStorageIdentifier() const;
168 std::string GetStorageIdentifierForSecurity(
169 const std::string &security) const;
170
Gaurav Shah10109f22011-11-11 20:16:22 -0800171 // Populate the |params| map with available 802.1x EAP properties.
172 void Populate8021xProperties(std::map<std::string, DBus::Variant> *params);
173
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700174 // Properties
175 std::string passphrase_;
176 bool need_passphrase_;
177 std::string security_;
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700178 // TODO(cmasone): see if the below can be pulled from the endpoint associated
179 // with this service instead.
Chris Masone092df3e2011-08-22 09:41:39 -0700180 const std::string mode_;
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700181 std::string auth_mode_;
182 bool hidden_ssid_;
183 uint16 frequency_;
Paul Stewart20088d82012-02-16 06:58:55 -0800184 // TODO(quiche): I noticed this is not hooked up to anything. In fact, it
185 // was undefined until now. crosbug.com/26490
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700186 uint16 physical_mode_;
mukesh agrawal32399322011-09-01 10:53:43 -0700187 std::string hex_ssid_;
Paul Stewartd08f4432011-11-04 07:48:20 -0700188 std::string storage_identifier_;
mukesh agrawal923f14f2012-06-04 16:46:08 -0700189 std::string bssid_;
Paul Stewart72b2fdc2012-06-02 08:58:51 -0700190 Stringmap vendor_information_;
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700191
mukesh agrawale1d90e92012-02-15 17:36:08 -0800192 // Track whether or not we've warned about large signal values.
193 // Used to avoid spamming the log.
194 static bool logged_signal_warning;
Chris Masone2b105542011-06-22 10:58:09 -0700195 WiFiRefPtr wifi_;
mukesh agrawal261daca2011-12-02 18:56:56 +0000196 std::set<WiFiEndpointConstRefPtr> endpoints_;
mukesh agrawale1d90e92012-02-15 17:36:08 -0800197 WiFiEndpointConstRefPtr current_endpoint_;
mukesh agrawalb54601c2011-06-07 17:39:22 -0700198 const std::vector<uint8_t> ssid_;
Paul Stewartecf4cd12012-04-17 11:08:39 -0700199 NSS *nss_;
mukesh agrawalb54601c2011-06-07 17:39:22 -0700200 DISALLOW_COPY_AND_ASSIGN(WiFiService);
201};
202
203} // namespace shill
204
205#endif // SHILL_WIFI_SERVICE_