blob: a98ed9db1c51bef911acf39fecbf751a3f11998f [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;
Chris Masone6791a432011-07-12 13:23:19 -070024
mukesh agrawalb54601c2011-06-07 17:39:22 -070025class WiFiService : public Service {
26 public:
Paul Stewart0756db92012-01-27 08:34:47 -080027 // TODO(pstew): Storage constants shouldn't need to be public
28 // crosbug.com/25813
29 static const char kStorageHiddenSSID[];
30 static const char kStorageMode[];
31 static const char kStoragePassphrase[];
32 static const char kStorageSecurity[];
33 static const char kStorageSSID[];
34
mukesh agrawalb54601c2011-06-07 17:39:22 -070035 WiFiService(ControlInterface *control_interface,
36 EventDispatcher *dispatcher,
Thieu Le3426c8f2012-01-11 17:35:11 -080037 Metrics *metrics,
Chris Masone6791a432011-07-12 13:23:19 -070038 Manager *manager,
Chris Masone2b105542011-06-22 10:58:09 -070039 const WiFiRefPtr &device,
mukesh agrawal7ec71312011-11-10 02:08:26 +000040 const std::vector<uint8_t> &ssid,
Chris Masone092df3e2011-08-22 09:41:39 -070041 const std::string &mode,
Paul Stewartced6a0b2011-11-08 15:32:04 -080042 const std::string &security,
43 bool hidden_ssid);
mukesh agrawalb54601c2011-06-07 17:39:22 -070044 ~WiFiService();
Darin Petkov4d6d9412011-08-24 13:19:54 -070045
46 // Inherited from Service.
mukesh agrawal8a3188d2011-12-01 20:56:44 +000047 virtual void AutoConnect();
Darin Petkov4d6d9412011-08-24 13:19:54 -070048 virtual void Connect(Error *error);
mukesh agrawal0ed0f2e2011-12-05 20:36:17 +000049 virtual void Disconnect(Error *error);
Chris Masone34af2182011-08-22 11:59:36 -070050
Paul Stewart22aa71b2011-09-16 12:15:11 -070051 virtual bool TechnologyIs(const Technology::Identifier type) const;
mukesh agrawal8a3188d2011-12-01 20:56:44 +000052 virtual bool IsConnecting() const;
Paul Stewart22aa71b2011-09-16 12:15:11 -070053
mukesh agrawale1d90e92012-02-15 17:36:08 -080054 virtual void AddEndpoint(const WiFiEndpointConstRefPtr endpoint);
55 virtual void RemoveEndpoint(const WiFiEndpointConstRefPtr endpoint);
mukesh agrawal4eb4d782011-12-05 17:34:37 +000056 bool NumEndpoints() const { return endpoints_.size(); }
mukesh agrawale1d90e92012-02-15 17:36:08 -080057
mukesh agrawalb20776f2012-02-10 16:00:36 -080058 // Called to update the identity of the currently connected endpoint.
mukesh agrawale1d90e92012-02-15 17:36:08 -080059 // To indicate that there is no currently connect endpoint, call with
60 // |endpoint| set to NULL.
61 void NotifyCurrentEndpoint(const WiFiEndpoint *endpoint);
mukesh agrawalb20776f2012-02-10 16:00:36 -080062 // Called to inform of changes in the properties of an endpoint.
63 // (Not necessarily the currently connected endpoint.)
64 void NotifyEndpointUpdated(const WiFiEndpoint &endpoint);
mukesh agrawal261daca2011-12-02 18:56:56 +000065
Chris Masone34af2182011-08-22 11:59:36 -070066 // wifi_<MAC>_<BSSID>_<mode_string>_<security_string>
Chris Masone6515aab2011-10-12 16:19:09 -070067 std::string GetStorageIdentifier() const;
Paul Stewarta41e38d2011-11-11 07:47:29 -080068 static bool ParseStorageIdentifier(const std::string &storage_name,
69 std::string *address,
70 std::string *mode,
71 std::string *security);
Chris Masone34af2182011-08-22 11:59:36 -070072
Thieu Le48e6d6d2011-12-06 00:40:27 +000073 const std::string &mode() const { return mode_; }
74 const std::string &key_management() const { return GetEAPKeyManagement(); }
75 const std::vector<uint8_t> &ssid() const { return ssid_; }
mukesh agrawalb54601c2011-06-07 17:39:22 -070076
mukesh agrawal1a056262011-10-05 14:36:54 -070077 void SetPassphrase(const std::string &passphrase, Error *error);
78
Paul Stewartd08f4432011-11-04 07:48:20 -070079 // Overrride Load and Save from parent Service class. We will call
80 // the parent method.
81 virtual bool IsLoadableFrom(StoreInterface *storage) const;
82 virtual bool Load(StoreInterface *storage);
83 virtual bool Save(StoreInterface *storage);
Paul Stewart65512e12012-03-26 18:01:08 -070084 virtual bool Unload();
Paul Stewartd08f4432011-11-04 07:48:20 -070085
mukesh agrawal8a3188d2011-12-01 20:56:44 +000086 virtual bool HasEndpoints() const { return !endpoints_.empty(); }
Paul Stewarta41e38d2011-11-11 07:47:29 -080087 virtual bool IsVisible() const;
Paul Stewart6ab23a92011-11-09 17:17:47 -080088 bool IsSecurityMatch(const std::string &security) const;
Paul Stewartced6a0b2011-11-08 15:32:04 -080089 bool hidden_ssid() const { return hidden_ssid_; }
90
Thieu Le48e6d6d2011-12-06 00:40:27 +000091 virtual void InitializeCustomMetrics() const;
Thieu Leb84ba342012-03-02 15:15:19 -080092 virtual void SendPostReadyStateMetrics(
93 int64 time_resume_to_ready_milliseconds) const;
Thieu Le48e6d6d2011-12-06 00:40:27 +000094
Gaurav Shah10109f22011-11-11 20:16:22 -080095 // Override from parent Service class to correctly update connectability
96 // when the EAP credentials change for 802.1x networks.
97 void set_eap(const EapCredentials& eap);
98
mukesh agrawal8a3188d2011-12-01 20:56:44 +000099 protected:
mukesh agrawalbf14e942012-03-02 14:36:34 -0800100 virtual bool IsAutoConnectable(const char **reason) const;
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000101
mukesh agrawalb54601c2011-06-07 17:39:22 -0700102 private:
Paul Stewartd08f4432011-11-04 07:48:20 -0700103 friend class WiFiServiceSecurityTest;
mukesh agrawale1d90e92012-02-15 17:36:08 -0800104 friend class WiFiServiceUpdateFromEndpointsTest; // SignalToStrength
Thieu Lead1ec2c2012-01-05 23:39:48 +0000105 FRIEND_TEST(MetricsTest, WiFiServicePostReady);
Thieu Lee41a72d2012-02-06 20:46:51 +0000106 FRIEND_TEST(WiFiMainTest, CurrentBSSChangedUpdateServiceEndpoint);
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000107 FRIEND_TEST(WiFiServiceTest, AutoConnect);
mukesh agrawal8abd2f62012-01-30 14:56:14 -0800108 FRIEND_TEST(WiFiServiceTest, ClearWriteOnlyDerivedProperty); // passphrase_
Gaurav Shah10109f22011-11-11 20:16:22 -0800109 FRIEND_TEST(WiFiServiceTest, ConnectTask8021x);
Gaurav Shah29d68882012-01-30 19:06:42 -0800110 FRIEND_TEST(WiFiServiceTest, ConnectTaskDynamicWEP);
Gaurav Shahf8721ee2011-11-07 09:12:46 -0800111 FRIEND_TEST(WiFiServiceTest, ConnectTaskPSK);
Gaurav Shah29d68882012-01-30 19:06:42 -0800112 FRIEND_TEST(WiFiServiceTest, ConnectTaskRSN);
Thieu Lef4cbda92011-11-10 23:41:24 +0000113 FRIEND_TEST(WiFiServiceTest, ConnectTaskWEP);
Gaurav Shah29d68882012-01-30 19:06:42 -0800114 FRIEND_TEST(WiFiServiceTest, ConnectTaskWPA);
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000115 FRIEND_TEST(WiFiServiceTest, IsAutoConnectable);
Paul Stewartd08f4432011-11-04 07:48:20 -0700116 FRIEND_TEST(WiFiServiceTest, LoadHidden);
Paul Stewartd8ad3c42012-01-09 12:39:38 -0800117 FRIEND_TEST(WiFiServiceTest, LoadAndUnloadPassphrase);
Gaurav Shah10109f22011-11-11 20:16:22 -0800118 FRIEND_TEST(WiFiServiceTest, Populate8021x);
mukesh agrawale1d90e92012-02-15 17:36:08 -0800119 FRIEND_TEST(WiFiServiceTest, SignalToStrength); // SignalToStrength
Paul Stewartd08f4432011-11-04 07:48:20 -0700120
mukesh agrawalbf14e942012-03-02 14:36:34 -0800121 static const char kAutoConnBusy[];
122 static const char kAutoConnNoEndpoint[];
123
mukesh agrawal292dc0f2012-01-26 18:02:46 -0800124 // Override the base clase implementation, because we need to allow
125 // arguments that aren't base class methods.
126 void HelpRegisterWriteOnlyDerivedString(
Thieu Lef7709452011-11-15 01:13:19 +0000127 const std::string &name,
mukesh agrawal292dc0f2012-01-26 18:02:46 -0800128 void(WiFiService::*set)(const std::string &value, Error *error),
129 void(WiFiService::*clear)(Error *error),
130 const std::string *default_value);
Thieu Lef7709452011-11-15 01:13:19 +0000131
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800132 std::string GetDeviceRpcId(Error *error);
mukesh agrawal292dc0f2012-01-26 18:02:46 -0800133 void ClearPassphrase(Error *error);
mukesh agrawal29c13a12011-11-24 00:09:19 +0000134 void UpdateConnectable();
mukesh agrawale1d90e92012-02-15 17:36:08 -0800135 void UpdateFromEndpoints();
Chris Masone95207da2011-06-29 16:50:49 -0700136
Thieu Lef4cbda92011-11-10 23:41:24 +0000137 static void ValidateWEPPassphrase(const std::string &passphrase,
138 Error *error);
139 static void ValidateWPAPassphrase(const std::string &passphrase,
140 Error *error);
141 static void ParseWEPPassphrase(const std::string &passphrase,
142 int *key_index,
143 std::vector<uint8> *password_bytes,
144 Error *error);
mukesh agrawal1a056262011-10-05 14:36:54 -0700145 static bool CheckWEPIsHex(const std::string &passphrase, Error *error);
146 static bool CheckWEPKeyIndex(const std::string &passphrase, Error *error);
147 static bool CheckWEPPrefix(const std::string &passphrase, Error *error);
148
mukesh agrawal8f3f7752012-02-17 19:42:09 -0800149 // Maps a signal value, in dBm, to a "strength" value, from
150 // |Service::kStrengthMin| to |Service:kStrengthMax|.
mukesh agrawale1d90e92012-02-15 17:36:08 -0800151 static uint8 SignalToStrength(int16 signal_dbm);
152
Paul Stewart6ab23a92011-11-09 17:17:47 -0800153 // "wpa", "rsn" and "psk" are equivalent from a configuration perspective.
154 // This function maps them all into "psk".
155 static std::string GetSecurityClass(const std::string &security);
156
Paul Stewartd08f4432011-11-04 07:48:20 -0700157 // Profile data for a WPA/RSN service can be stored under a number of
158 // different names. These functions create different storage identifiers
159 // based on whether they are referred to by their generic "psk" name or
160 // if they use the (legacy) specific "wpa" or "rsn" names.
161 std::string GetGenericStorageIdentifier() const;
162 std::string GetSpecificStorageIdentifier() const;
163 std::string GetStorageIdentifierForSecurity(
164 const std::string &security) const;
165
Gaurav Shah29d68882012-01-30 19:06:42 -0800166 // Returns true if the wireless service uses 802.1x for key management.
167 bool Is8021x() const;
168
Gaurav Shah10109f22011-11-11 20:16:22 -0800169 // Populate the |params| map with available 802.1x EAP properties.
170 void Populate8021xProperties(std::map<std::string, DBus::Variant> *params);
171
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700172 // Properties
173 std::string passphrase_;
174 bool need_passphrase_;
175 std::string security_;
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700176 // TODO(cmasone): see if the below can be pulled from the endpoint associated
177 // with this service instead.
Chris Masone092df3e2011-08-22 09:41:39 -0700178 const std::string mode_;
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700179 std::string auth_mode_;
180 bool hidden_ssid_;
181 uint16 frequency_;
Paul Stewart20088d82012-02-16 06:58:55 -0800182 // TODO(quiche): I noticed this is not hooked up to anything. In fact, it
183 // was undefined until now. crosbug.com/26490
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700184 uint16 physical_mode_;
mukesh agrawal32399322011-09-01 10:53:43 -0700185 std::string hex_ssid_;
Paul Stewartd08f4432011-11-04 07:48:20 -0700186 std::string storage_identifier_;
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700187
mukesh agrawale1d90e92012-02-15 17:36:08 -0800188 // Track whether or not we've warned about large signal values.
189 // Used to avoid spamming the log.
190 static bool logged_signal_warning;
Chris Masone2b105542011-06-22 10:58:09 -0700191 WiFiRefPtr wifi_;
mukesh agrawal261daca2011-12-02 18:56:56 +0000192 std::set<WiFiEndpointConstRefPtr> endpoints_;
mukesh agrawale1d90e92012-02-15 17:36:08 -0800193 WiFiEndpointConstRefPtr current_endpoint_;
mukesh agrawalb54601c2011-06-07 17:39:22 -0700194 const std::vector<uint8_t> ssid_;
mukesh agrawalb54601c2011-06-07 17:39:22 -0700195 DISALLOW_COPY_AND_ASSIGN(WiFiService);
196};
197
198} // namespace shill
199
200#endif // SHILL_WIFI_SERVICE_