mukesh agrawal | 8a3188d | 2011-12-01 20:56:44 +0000 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
Paul Stewart | b50f0b9 | 2011-05-16 16:31:42 -0700 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
Paul Stewart | 735eab5 | 2013-03-29 09:19:23 -0700 | [diff] [blame] | 5 | #ifndef SHILL_WIFI_H_ |
| 6 | #define SHILL_WIFI_H_ |
Paul Stewart | b50f0b9 | 2011-05-16 16:31:42 -0700 | [diff] [blame] | 7 | |
Gary Morain | 22601da | 2012-03-16 10:48:39 -0700 | [diff] [blame] | 8 | // A WiFi device represents a wireless network interface implemented as an IEEE |
| 9 | // 802.11 station. An Access Point (AP) (or, more correctly, a Basic Service |
| 10 | // Set(BSS)) is represented by a WiFiEndpoint. An AP provides a WiFiService, |
| 11 | // which is the same concept as Extended Service Set (ESS) in 802.11, |
| 12 | // identified by an SSID. A WiFiService includes zero or more WiFiEndpoints |
| 13 | // that provide that service. |
| 14 | // |
| 15 | // A WiFi device interacts with a real device through WPA Supplicant. |
| 16 | // Wifi::Start() creates a connection to WPA Supplicant, represented by |
| 17 | // |supplicant_interface_proxy_|. [1] |
| 18 | // |
| 19 | // A WiFi device becomes aware of WiFiEndpoints through BSSAdded signals from |
| 20 | // WPA Supplicant, which identifies them by a "path". The WiFi object maintains |
| 21 | // an EndpointMap in |endpoint_by_rpcid_|, in which the key is the "path" and |
| 22 | // the value is a pointer to a WiFiEndpoint object. When a WiFiEndpoint is |
| 23 | // added, it is associated with a WiFiService. |
| 24 | // |
Gary Morain | 22601da | 2012-03-16 10:48:39 -0700 | [diff] [blame] | 25 | // The WiFi device connects to a WiFiService, not a WiFiEndpoint, through WPA |
| 26 | // Supplicant. It is the job of WPA Supplicant to select a BSS (aka |
| 27 | // WiFiEndpoint) to connect to. The protocol for establishing a connection is |
| 28 | // as follows: |
| 29 | // |
| 30 | // 1. The WiFi device sends AddNetwork to WPA Supplicant, which returns a |
| 31 | // "network path" when done. |
| 32 | // |
| 33 | // 2. The WiFi device sends SelectNetwork, indicating the network path |
| 34 | // received in 1, to WPA Supplicant, which begins the process of associating |
| 35 | // with an AP in the ESS. At this point the WiFiService which is being |
| 36 | // connected is called the |pending_service_|. |
| 37 | // |
Paul Stewart | bc6e739 | 2012-05-24 07:07:48 -0700 | [diff] [blame] | 38 | // 3. During association to an EAP-TLS network, WPA Supplicant can send |
| 39 | // multiple "Certification" events, which provide information about the |
| 40 | // identity of the remote entity. |
| 41 | // |
| 42 | // 4. When association is complete, WPA Supplicant sends a PropertiesChanged |
| 43 | // signal to the WiFi device, indicating a change in the CurrentBSS. The |
| 44 | // WiFiService indicated by the new value of CurrentBSS is set as the |
| 45 | // |current_service_|, and |pending_service_| is (normally) cleared. |
Gary Morain | 22601da | 2012-03-16 10:48:39 -0700 | [diff] [blame] | 46 | // |
| 47 | // Some key things to notice are 1) WPA Supplicant does the work of selecting |
| 48 | // the AP (aka WiFiEndpoint) and it tells the WiFi device which AP it selected. |
| 49 | // 2) The process of connecting is asynchronous. There is a |current_service_| |
| 50 | // to which the WiFi device is presently using and a |pending_service_| to which |
| 51 | // the WiFi device has initiated a connection. |
| 52 | // |
| 53 | // A WiFi device is notified that an AP has gone away via the BSSRemoved signal. |
| 54 | // When the last WiFiEndpoint of a WiFiService is removed, the WiFiService |
| 55 | // itself is deleted. |
| 56 | // |
| 57 | // TODO(gmorain): Add explanation of hidden SSIDs. |
| 58 | // |
| 59 | // WPA Supplicant's PropertiesChanged signal communicates changes in the state |
| 60 | // of WPA Supplicant's current service. This state is stored in |
| 61 | // |supplicant_state_| and reflects WPA Supplicant's view of the state of the |
| 62 | // connection to an AP. Changes in this state sometimes cause state changes in |
| 63 | // the WiFiService to which a WiFi device is connected. For example, when WPA |
| 64 | // Supplicant signals the new state to be "completed", then the WiFiService |
| 65 | // state gets changed to "configuring". State change notifications are not |
| 66 | // reliable because WPA Supplicant may coalesce state changes in quick |
| 67 | // succession so that only the last of the changes is signaled. |
| 68 | // |
| 69 | // Notes: |
| 70 | // |
| 71 | // 1. Shill's definition of the interface is described in |
| 72 | // shill/dbus_bindings/supplicant-interface.xml, and the WPA Supplicant's |
| 73 | // description of the same interface is in |
| 74 | // third_party/wpa_supplicant/doc/dbus.doxygen. |
| 75 | |
mukesh agrawal | 5c05b29 | 2012-03-07 10:12:52 -0800 | [diff] [blame] | 76 | #include <time.h> |
| 77 | |
mukesh agrawal | ab87ea4 | 2011-05-18 11:44:49 -0700 | [diff] [blame] | 78 | #include <map> |
Wade Guthrie | 92d0636 | 2013-04-25 15:41:30 -0700 | [diff] [blame] | 79 | #include <set> |
Chris Masone | 46eaaf5 | 2011-05-24 13:08:30 -0700 | [diff] [blame] | 80 | #include <string> |
mukesh agrawal | ab87ea4 | 2011-05-18 11:44:49 -0700 | [diff] [blame] | 81 | #include <vector> |
Chris Masone | 46eaaf5 | 2011-05-24 13:08:30 -0700 | [diff] [blame] | 82 | |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 83 | #include <base/callback_forward.h> |
mukesh agrawal | b66c646 | 2012-05-07 11:45:25 -0700 | [diff] [blame] | 84 | #include <base/cancelable_callback.h> |
Wade Guthrie | 2edd58b | 2013-05-23 11:16:08 -0700 | [diff] [blame] | 85 | #include <base/file_path.h> |
Paul Stewart | 735eab5 | 2013-03-29 09:19:23 -0700 | [diff] [blame] | 86 | #include <base/memory/scoped_ptr.h> |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 87 | #include <base/memory/weak_ptr.h> |
mukesh agrawal | af57195 | 2011-07-14 14:31:12 -0700 | [diff] [blame] | 88 | #include <dbus-c++/dbus.h> |
Paul Stewart | 6ab23a9 | 2011-11-09 17:17:47 -0800 | [diff] [blame] | 89 | #include <gtest/gtest_prod.h> // for FRIEND_TEST |
mukesh agrawal | af57195 | 2011-07-14 14:31:12 -0700 | [diff] [blame] | 90 | |
Darin Petkov | 2b8e44e | 2012-06-25 15:13:26 +0200 | [diff] [blame] | 91 | #include "shill/dbus_manager.h" |
Paul Stewart | b50f0b9 | 2011-05-16 16:31:42 -0700 | [diff] [blame] | 92 | #include "shill/device.h" |
Paul Stewart | 26b327e | 2011-10-19 11:38:09 -0700 | [diff] [blame] | 93 | #include "shill/event_dispatcher.h" |
Gary Morain | ac1bdb4 | 2012-02-16 17:42:29 -0800 | [diff] [blame] | 94 | #include "shill/power_manager.h" |
Chris Masone | 2b10554 | 2011-06-22 10:58:09 -0700 | [diff] [blame] | 95 | #include "shill/refptr_types.h" |
Paul Stewart | 1369c2b | 2013-01-11 05:41:26 -0800 | [diff] [blame] | 96 | #include "shill/service.h" |
Paul Stewart | 196f50f | 2013-03-27 18:02:11 -0700 | [diff] [blame] | 97 | #include "shill/supplicant_event_delegate_interface.h" |
Paul Stewart | b50f0b9 | 2011-05-16 16:31:42 -0700 | [diff] [blame] | 98 | |
| 99 | namespace shill { |
| 100 | |
mukesh agrawal | 7a4e400 | 2011-09-06 11:26:05 -0700 | [diff] [blame] | 101 | class Error; |
Gaurav Shah | 6d2c72d | 2012-10-16 16:30:44 -0700 | [diff] [blame] | 102 | class GeolocationInfo; |
mukesh agrawal | 7a4e400 | 2011-09-06 11:26:05 -0700 | [diff] [blame] | 103 | class KeyValueStore; |
Wade Guthrie | bb9fca2 | 2013-04-10 17:21:42 -0700 | [diff] [blame] | 104 | class NetlinkManager; |
Wade Guthrie | 92d0636 | 2013-04-25 15:41:30 -0700 | [diff] [blame] | 105 | class NetlinkMessage; |
Wade Guthrie | 7347bf2 | 2013-04-30 11:21:51 -0700 | [diff] [blame] | 106 | class Nl80211Message; |
Darin Petkov | ab565bb | 2011-10-06 02:55:51 -0700 | [diff] [blame] | 107 | class ProxyFactory; |
Wade Guthrie | 5a4e2ef | 2013-04-30 12:51:39 -0700 | [diff] [blame] | 108 | class ScanSession; |
Paul Stewart | 735eab5 | 2013-03-29 09:19:23 -0700 | [diff] [blame] | 109 | class SupplicantEAPStateHandler; |
mukesh agrawal | af57195 | 2011-07-14 14:31:12 -0700 | [diff] [blame] | 110 | class SupplicantInterfaceProxyInterface; |
| 111 | class SupplicantProcessProxyInterface; |
Paul Stewart | 3c50401 | 2013-01-17 17:49:58 -0800 | [diff] [blame] | 112 | class WiFiProvider; |
mukesh agrawal | 445e72c | 2011-06-22 11:13:50 -0700 | [diff] [blame] | 113 | class WiFiService; |
mukesh agrawal | b54601c | 2011-06-07 17:39:22 -0700 | [diff] [blame] | 114 | |
mukesh agrawal | ab87ea4 | 2011-05-18 11:44:49 -0700 | [diff] [blame] | 115 | // WiFi class. Specialization of Device for WiFi. |
Paul Stewart | 196f50f | 2013-03-27 18:02:11 -0700 | [diff] [blame] | 116 | class WiFi : public Device, public SupplicantEventDelegateInterface { |
Paul Stewart | b50f0b9 | 2011-05-16 16:31:42 -0700 | [diff] [blame] | 117 | public: |
Paul Stewart | f1ce5d2 | 2011-05-19 13:10:20 -0700 | [diff] [blame] | 118 | WiFi(ControlInterface *control_interface, |
| 119 | EventDispatcher *dispatcher, |
Thieu Le | 3426c8f | 2012-01-11 17:35:11 -0800 | [diff] [blame] | 120 | Metrics *metrics, |
Paul Stewart | f1ce5d2 | 2011-05-19 13:10:20 -0700 | [diff] [blame] | 121 | Manager *manager, |
Chris Masone | 626719f | 2011-08-18 16:58:48 -0700 | [diff] [blame] | 122 | const std::string &link, |
| 123 | const std::string &address, |
Paul Stewart | f1ce5d2 | 2011-05-19 13:10:20 -0700 | [diff] [blame] | 124 | int interface_index); |
mukesh agrawal | ab87ea4 | 2011-05-18 11:44:49 -0700 | [diff] [blame] | 125 | virtual ~WiFi(); |
Darin Petkov | c086531 | 2011-09-16 15:31:20 -0700 | [diff] [blame] | 126 | |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 127 | virtual void Start(Error *error, const EnabledStateChangedCallback &callback); |
| 128 | virtual void Stop(Error *error, const EnabledStateChangedCallback &callback); |
Wade Guthrie | 68d4109 | 2013-04-02 12:56:02 -0700 | [diff] [blame] | 129 | virtual void Scan(ScanType scan_type, Error *error); |
mukesh agrawal | 2f9df4e | 2012-08-08 12:29:20 -0700 | [diff] [blame] | 130 | // Callback for system resume. If this WiFi device is idle, a scan |
| 131 | // is initiated. Additionally, the base class implementation is |
| 132 | // invoked unconditionally. |
Christopher Wiley | 5519e9e | 2013-01-08 16:55:56 -0800 | [diff] [blame] | 133 | virtual void OnAfterResume(); |
| 134 | // Callback for when a service is configured with an IP. |
| 135 | virtual void OnConnected(); |
mukesh agrawal | ab87ea4 | 2011-05-18 11:44:49 -0700 | [diff] [blame] | 136 | |
Paul Stewart | 196f50f | 2013-03-27 18:02:11 -0700 | [diff] [blame] | 137 | // Implementation of SupplicantEventDelegateInterface. These methods |
| 138 | // are called by SupplicantInterfaceProxy, in response to events from |
mukesh agrawal | ab87ea4 | 2011-05-18 11:44:49 -0700 | [diff] [blame] | 139 | // wpa_supplicant. |
Paul Stewart | 196f50f | 2013-03-27 18:02:11 -0700 | [diff] [blame] | 140 | virtual void BSSAdded( |
| 141 | const ::DBus::Path &BSS, |
mukesh agrawal | 7ec7131 | 2011-11-10 02:08:26 +0000 | [diff] [blame] | 142 | const std::map<std::string, ::DBus::Variant> &properties); |
Paul Stewart | 196f50f | 2013-03-27 18:02:11 -0700 | [diff] [blame] | 143 | virtual void BSSRemoved(const ::DBus::Path &BSS); |
| 144 | virtual void Certification( |
| 145 | const std::map<std::string, ::DBus::Variant> &properties); |
| 146 | virtual void EAPEvent( |
| 147 | const std::string &status, const std::string ¶meter); |
| 148 | virtual void PropertiesChanged( |
| 149 | const std::map<std::string, ::DBus::Variant> &properties); |
| 150 | virtual void ScanDone(); |
mukesh agrawal | ab87ea4 | 2011-05-18 11:44:49 -0700 | [diff] [blame] | 151 | |
mukesh agrawal | 1590839 | 2011-11-16 18:29:25 +0000 | [diff] [blame] | 152 | // Called by WiFiService. |
mukesh agrawal | 6e27777 | 2011-09-29 15:04:23 -0700 | [diff] [blame] | 153 | virtual void ConnectTo( |
| 154 | WiFiService *service, |
mukesh agrawal | 6489632 | 2011-12-01 01:13:10 +0000 | [diff] [blame] | 155 | std::map<std::string, ::DBus::Variant> service_params); |
Paul Stewart | 835934a | 2012-12-06 19:27:09 -0800 | [diff] [blame] | 156 | // If |service| is connected, initiate the process of disconnecting it. |
| 157 | // Otherwise, if it a pending or current service, discontinue the process |
| 158 | // of connecting and return |service| to the idle state. |
mukesh agrawal | 0ed0f2e | 2011-12-05 20:36:17 +0000 | [diff] [blame] | 159 | virtual void DisconnectFrom(WiFiService *service); |
mukesh agrawal | 8a3188d | 2011-12-01 20:56:44 +0000 | [diff] [blame] | 160 | virtual bool IsIdle() const; |
Paul Stewart | 835934a | 2012-12-06 19:27:09 -0800 | [diff] [blame] | 161 | // Clear any cached credentials wpa_supplicant may be holding for |
| 162 | // |service|. This has a side-effect of disconnecting the service |
| 163 | // if it is connected. |
| 164 | virtual void ClearCachedCredentials(const WiFiService *service); |
mukesh agrawal | b54601c | 2011-06-07 17:39:22 -0700 | [diff] [blame] | 165 | |
mukesh agrawal | b20776f | 2012-02-10 16:00:36 -0800 | [diff] [blame] | 166 | // Called by WiFiEndpoint. |
Paul Stewart | 3c50401 | 2013-01-17 17:49:58 -0800 | [diff] [blame] | 167 | virtual void NotifyEndpointChanged(const WiFiEndpointConstRefPtr &endpoint); |
mukesh agrawal | 7a4e400 | 2011-09-06 11:26:05 -0700 | [diff] [blame] | 168 | |
mukesh agrawal | 16bc1b8 | 2012-02-09 18:38:26 -0800 | [diff] [blame] | 169 | // Utility, used by WiFiService and WiFiEndpoint. |
| 170 | // Replace non-ASCII characters with '?'. Return true if one or more |
| 171 | // characters were changed. |
| 172 | static bool SanitizeSSID(std::string *ssid); |
| 173 | |
Darin Petkov | 50cb78a | 2013-02-06 16:17:49 +0100 | [diff] [blame] | 174 | // Formats |ssid| for logging purposes, to ease scrubbing. |
| 175 | static std::string LogSSID(const std::string &ssid); |
| 176 | |
Paul Stewart | 3c508e1 | 2012-08-09 11:40:06 -0700 | [diff] [blame] | 177 | // Called by Linkmonitor (overriden from Device superclass). |
| 178 | virtual void OnLinkMonitorFailure(); |
| 179 | |
Wade Guthrie | 8bc5088 | 2012-10-31 16:23:20 -0700 | [diff] [blame] | 180 | bool IsCurrentService(const WiFiServiceRefPtr service) { |
| 181 | return service.get() == current_service_.get(); |
| 182 | } |
| 183 | |
Arman Uguray | ed8e610 | 2012-11-29 14:47:20 -0800 | [diff] [blame] | 184 | // Overridden from Device superclass |
Gaurav Shah | 6d2c72d | 2012-10-16 16:30:44 -0700 | [diff] [blame] | 185 | virtual std::vector<GeolocationInfo> GetGeolocationObjects() const; |
| 186 | |
Arman Uguray | ed8e610 | 2012-11-29 14:47:20 -0800 | [diff] [blame] | 187 | // Overridden from Device superclass |
| 188 | virtual bool ShouldUseArpGateway() const; |
| 189 | |
Paul Stewart | 3c50401 | 2013-01-17 17:49:58 -0800 | [diff] [blame] | 190 | // Called by a WiFiService when it disassociates itself from this Device. |
| 191 | virtual void DisassociateFromService(const WiFiServiceRefPtr &service); |
| 192 | |
Albert Chaulk | 0e1cdea | 2013-02-27 15:32:55 -0800 | [diff] [blame] | 193 | // Called by a WiFiService when it unloads to destroy its lease file. |
| 194 | virtual void DestroyServiceLease(const WiFiService &service); |
| 195 | |
Paul Stewart | b50f0b9 | 2011-05-16 16:31:42 -0700 | [diff] [blame] | 196 | private: |
Paul Stewart | e369ece | 2012-05-22 09:11:03 -0700 | [diff] [blame] | 197 | friend class WiFiObjectTest; // access to supplicant_*_proxy_, link_up_ |
Paul Stewart | 1aff730 | 2012-08-04 20:04:47 -0700 | [diff] [blame] | 198 | friend class WiFiTimerTest; // kNumFastScanAttempts, kFastScanIntervalSeconds |
Darin Petkov | 4a66cc5 | 2012-06-15 10:08:29 +0200 | [diff] [blame] | 199 | FRIEND_TEST(WiFiMainTest, AppendBgscan); |
Christopher Wiley | c618448 | 2012-10-24 15:31:56 -0700 | [diff] [blame] | 200 | FRIEND_TEST(WiFiMainTest, DisconnectCurrentServiceWithErrors); |
Paul Stewart | e369ece | 2012-05-22 09:11:03 -0700 | [diff] [blame] | 201 | FRIEND_TEST(WiFiMainTest, FlushBSSOnResume); // kMaxBSSResumeAgeSeconds |
mukesh agrawal | 7ec7131 | 2011-11-10 02:08:26 +0000 | [diff] [blame] | 202 | FRIEND_TEST(WiFiMainTest, InitialSupplicantState); // kInterfaceStateUnknown |
Paul Stewart | 3c508e1 | 2012-08-09 11:40:06 -0700 | [diff] [blame] | 203 | FRIEND_TEST(WiFiMainTest, LinkMonitorFailure); // set_link_monitor() |
Thieu Le | e41a72d | 2012-02-06 20:46:51 +0000 | [diff] [blame] | 204 | FRIEND_TEST(WiFiMainTest, ScanResults); // EndpointMap |
mukesh agrawal | 165e614 | 2011-11-22 02:22:56 +0000 | [diff] [blame] | 205 | FRIEND_TEST(WiFiMainTest, ScanResultsWithUpdates); // EndpointMap |
mukesh agrawal | c4f368f | 2012-06-04 19:45:52 -0700 | [diff] [blame] | 206 | FRIEND_TEST(WiFiMainTest, Stop); // weak_ptr_factory_ |
Darin Petkov | 60ceaf3 | 2012-10-18 10:36:01 +0200 | [diff] [blame] | 207 | FRIEND_TEST(WiFiMainTest, VerifyPaths); |
Darin Petkov | 4a66cc5 | 2012-06-15 10:08:29 +0200 | [diff] [blame] | 208 | FRIEND_TEST(WiFiPropertyTest, BgscanMethodProperty); // bgscan_method_ |
Paul Stewart | 1aff730 | 2012-08-04 20:04:47 -0700 | [diff] [blame] | 209 | FRIEND_TEST(WiFiTimerTest, FastRescan); // kFastScanIntervalSeconds |
Paul Stewart | 6ab23a9 | 2011-11-09 17:17:47 -0800 | [diff] [blame] | 210 | |
mukesh agrawal | b54601c | 2011-06-07 17:39:22 -0700 | [diff] [blame] | 211 | typedef std::map<const std::string, WiFiEndpointRefPtr> EndpointMap; |
Paul Stewart | 835934a | 2012-12-06 19:27:09 -0800 | [diff] [blame] | 212 | typedef std::map<const WiFiService *, std::string> ReverseServiceMap; |
mukesh agrawal | b54601c | 2011-06-07 17:39:22 -0700 | [diff] [blame] | 213 | |
mukesh agrawal | 4d0401c | 2012-01-06 16:05:31 -0800 | [diff] [blame] | 214 | static const char *kDefaultBgscanMethod; |
| 215 | static const uint16 kDefaultBgscanShortIntervalSeconds; |
| 216 | static const int32 kDefaultBgscanSignalThresholdDbm; |
| 217 | static const uint16 kDefaultScanIntervalSeconds; |
Darin Petkov | 4a66cc5 | 2012-06-15 10:08:29 +0200 | [diff] [blame] | 218 | static const uint16 kBackgroundScanIntervalSeconds; |
mukesh agrawal | 5c05b29 | 2012-03-07 10:12:52 -0800 | [diff] [blame] | 219 | static const time_t kMaxBSSResumeAgeSeconds; |
mukesh agrawal | 7ec7131 | 2011-11-10 02:08:26 +0000 | [diff] [blame] | 220 | static const char kInterfaceStateUnknown[]; |
mukesh agrawal | f202817 | 2012-03-13 14:20:22 -0700 | [diff] [blame] | 221 | // Delay between scans when supplicant finds "No suitable network". |
| 222 | static const time_t kRescanIntervalSeconds; |
Paul Stewart | e369ece | 2012-05-22 09:11:03 -0700 | [diff] [blame] | 223 | // Number of times to quickly attempt a scan after startup / disconnect. |
| 224 | static const int kNumFastScanAttempts; |
| 225 | static const int kFastScanIntervalSeconds; |
Paul Stewart | 2b05e62 | 2012-07-13 20:38:44 -0700 | [diff] [blame] | 226 | static const int kPendingTimeoutSeconds; |
Paul Stewart | 4466392 | 2012-07-30 11:03:03 -0700 | [diff] [blame] | 227 | static const int kReconnectTimeoutSeconds; |
Wade Guthrie | 5a4e2ef | 2013-04-30 12:51:39 -0700 | [diff] [blame] | 228 | static const size_t kMinumumFrequenciesToScan; |
Wade Guthrie | 2edd58b | 2013-05-23 11:16:08 -0700 | [diff] [blame] | 229 | static const float kDefaultFractionPerScan; |
Wade Guthrie | 5a4e2ef | 2013-04-30 12:51:39 -0700 | [diff] [blame] | 230 | static const char kProgressiveScanFlagFile[]; |
Wade Guthrie | 2edd58b | 2013-05-23 11:16:08 -0700 | [diff] [blame] | 231 | // TODO(wdg): Remove after progressive scan field trial is over. |
| 232 | static const char kProgressiveScanFieldTrialFlagFile[]; |
mukesh agrawal | ab87ea4 | 2011-05-18 11:44:49 -0700 | [diff] [blame] | 233 | |
Wade Guthrie | 92d0636 | 2013-04-25 15:41:30 -0700 | [diff] [blame] | 234 | // Gets the list of frequencies supported by this device. |
Wade Guthrie | 2edd58b | 2013-05-23 11:16:08 -0700 | [diff] [blame] | 235 | // TODO(wdg): Remove after progressive scan field trial is over. |
| 236 | void ParseFieldTrialFile(const FilePath &field_trial_file_path); |
Wade Guthrie | 92d0636 | 2013-04-25 15:41:30 -0700 | [diff] [blame] | 237 | void ConfigureScanFrequencies(); |
Darin Petkov | 4a66cc5 | 2012-06-15 10:08:29 +0200 | [diff] [blame] | 238 | void AppendBgscan(WiFiService *service, |
| 239 | std::map<std::string, DBus::Variant> *service_params) const; |
| 240 | std::string GetBgscanMethod(const int &argument, Error *error); |
mukesh agrawal | 4d0401c | 2012-01-06 16:05:31 -0800 | [diff] [blame] | 241 | uint16 GetBgscanShortInterval(Error */* error */) { |
| 242 | return bgscan_short_interval_seconds_; |
| 243 | } |
| 244 | int32 GetBgscanSignalThreshold(Error */* error */) { |
| 245 | return bgscan_signal_threshold_dbm_; |
| 246 | } |
| 247 | uint16 GetScanInterval(Error */* error */) { return scan_interval_seconds_; } |
mukesh agrawal | bebf1b8 | 2013-04-23 15:06:33 -0700 | [diff] [blame] | 248 | bool SetBgscanMethod( |
Darin Petkov | 4a66cc5 | 2012-06-15 10:08:29 +0200 | [diff] [blame] | 249 | const int &argument, const std::string &method, Error *error); |
mukesh agrawal | bebf1b8 | 2013-04-23 15:06:33 -0700 | [diff] [blame] | 250 | bool SetBgscanShortInterval(const uint16 &seconds, Error *error); |
| 251 | bool SetBgscanSignalThreshold(const int32 &dbm, Error *error); |
| 252 | bool SetScanInterval(const uint16 &seconds, Error *error); |
Darin Petkov | 4a66cc5 | 2012-06-15 10:08:29 +0200 | [diff] [blame] | 253 | void ClearBgscanMethod(const int &argument, Error *error); |
mukesh agrawal | 4d0401c | 2012-01-06 16:05:31 -0800 | [diff] [blame] | 254 | |
mukesh agrawal | 1590839 | 2011-11-16 18:29:25 +0000 | [diff] [blame] | 255 | void CurrentBSSChanged(const ::DBus::Path &new_bss); |
Paul Stewart | 835934a | 2012-12-06 19:27:09 -0800 | [diff] [blame] | 256 | // Return the RPC identifier associated with the wpa_supplicant network |
| 257 | // entry created for |service|. If one does not exist, an empty string |
| 258 | // is returned, and |error| is populated. |
| 259 | std::string FindNetworkRpcidForService(const WiFiService *service, |
| 260 | Error *error); |
mukesh agrawal | 1590839 | 2011-11-16 18:29:25 +0000 | [diff] [blame] | 261 | void HandleDisconnect(); |
| 262 | void HandleRoam(const ::DBus::Path &new_bssid); |
mukesh agrawal | b4bc57d | 2011-12-07 01:07:47 +0000 | [diff] [blame] | 263 | void BSSAddedTask(const ::DBus::Path &BSS, |
| 264 | const std::map<std::string, ::DBus::Variant> &properties); |
| 265 | void BSSRemovedTask(const ::DBus::Path &BSS); |
Paul Stewart | bc6e739 | 2012-05-24 07:07:48 -0700 | [diff] [blame] | 266 | void CertificationTask( |
| 267 | const std::map<std::string, ::DBus::Variant> &properties); |
Paul Stewart | db0f917 | 2012-11-30 16:48:09 -0800 | [diff] [blame] | 268 | void EAPEventTask(const std::string &status, const std::string ¶meter); |
mukesh agrawal | 1590839 | 2011-11-16 18:29:25 +0000 | [diff] [blame] | 269 | void PropertiesChangedTask( |
| 270 | const std::map<std::string, ::DBus::Variant> &properties); |
mukesh agrawal | dc42bb3 | 2011-07-28 10:40:26 -0700 | [diff] [blame] | 271 | void ScanDoneTask(); |
mukesh agrawal | 3239932 | 2011-09-01 10:53:43 -0700 | [diff] [blame] | 272 | void ScanTask(); |
Paul Stewart | d2db2b1 | 2013-01-17 13:11:07 -0800 | [diff] [blame] | 273 | void SetScanPending(bool pending); |
mukesh agrawal | 7ec7131 | 2011-11-10 02:08:26 +0000 | [diff] [blame] | 274 | void StateChanged(const std::string &new_state); |
mukesh agrawal | cf24a24 | 2012-05-21 16:46:11 -0700 | [diff] [blame] | 275 | // Heuristic check if a connection failure was due to bad credentials. |
Paul Stewart | 1369c2b | 2013-01-11 05:41:26 -0800 | [diff] [blame] | 276 | // Returns true and puts type of failure in |failure| if a credential |
| 277 | // problem is detected. |
| 278 | bool SuspectCredentials(const WiFiService &service, |
| 279 | Service::ConnectFailure *failure) const; |
mukesh agrawal | 4d0401c | 2012-01-06 16:05:31 -0800 | [diff] [blame] | 280 | void HelpRegisterDerivedInt32( |
| 281 | PropertyStore *store, |
| 282 | const std::string &name, |
| 283 | int32(WiFi::*get)(Error *error), |
mukesh agrawal | bebf1b8 | 2013-04-23 15:06:33 -0700 | [diff] [blame] | 284 | bool(WiFi::*set)(const int32 &value, Error *error)); |
mukesh agrawal | 4d0401c | 2012-01-06 16:05:31 -0800 | [diff] [blame] | 285 | void HelpRegisterDerivedUint16( |
| 286 | PropertyStore *store, |
| 287 | const std::string &name, |
| 288 | uint16(WiFi::*get)(Error *error), |
mukesh agrawal | bebf1b8 | 2013-04-23 15:06:33 -0700 | [diff] [blame] | 289 | bool(WiFi::*set)(const uint16 &value, Error *error)); |
mukesh agrawal | 4d0401c | 2012-01-06 16:05:31 -0800 | [diff] [blame] | 290 | |
Paul Stewart | 835934a | 2012-12-06 19:27:09 -0800 | [diff] [blame] | 291 | // Disable a network entry in wpa_supplicant, and catch any exception |
| 292 | // that occurs. Returns false if an exception occurred, true otherwise. |
| 293 | bool DisableNetwork(const ::DBus::Path &network); |
| 294 | // Disable the wpa_supplicant network entry associated with |service|. |
| 295 | // Any cached credentials stored in wpa_supplicant related to this |
| 296 | // network entry will be preserved. This will have the side-effect of |
| 297 | // disconnecting this service if it is currently connected. Returns |
| 298 | // true if successful, otherwise returns false and populates |error| |
| 299 | // with the reason for failure. |
| 300 | virtual bool DisableNetworkForService( |
| 301 | const WiFiService *service, Error *error); |
Paul Stewart | 71f6ecd | 2012-09-13 14:52:18 -0700 | [diff] [blame] | 302 | // Remove a network entry from wpa_supplicant, and catch any exception |
| 303 | // that occurs. Returns false if an exception occurred, true otherwise. |
| 304 | bool RemoveNetwork(const ::DBus::Path &network); |
Paul Stewart | 835934a | 2012-12-06 19:27:09 -0800 | [diff] [blame] | 305 | // Remove the wpa_supplicant network entry associated with |service|. |
| 306 | // Any cached credentials stored in wpa_supplicant related to this |
| 307 | // network entry will be removed. This will have the side-effect of |
| 308 | // disconnecting this service if it is currently connected. Returns |
| 309 | // true if successful, otherwise returns false and populates |error| |
| 310 | // with the reason for failure. |
| 311 | virtual bool RemoveNetworkForService( |
| 312 | const WiFiService *service, Error *error); |
Wade Guthrie | 5a4e2ef | 2013-04-30 12:51:39 -0700 | [diff] [blame] | 313 | // Perform the next in a series of progressive scans. |
| 314 | void ProgressiveScanTask(); |
| 315 | // Recovers from failed progressive scan. |
| 316 | void OnFailedProgressiveScan(); |
Paul Stewart | e369ece | 2012-05-22 09:11:03 -0700 | [diff] [blame] | 317 | // Restart fast scanning after disconnection. |
| 318 | void RestartFastScanAttempts(); |
mukesh agrawal | b66c646 | 2012-05-07 11:45:25 -0700 | [diff] [blame] | 319 | // Schedules a scan attempt at time |scan_interval_seconds_| in the |
| 320 | // future. Cancels any currently pending scan timer. |
| 321 | void StartScanTimer(); |
| 322 | // Cancels any currently pending scan timer. |
| 323 | void StopScanTimer(); |
| 324 | // Initiates a scan, if idle. Reschedules the scan timer regardless. |
| 325 | void ScanTimerHandler(); |
Paul Stewart | 2b05e62 | 2012-07-13 20:38:44 -0700 | [diff] [blame] | 326 | // Starts a timer in order to limit the length of an attempt to |
| 327 | // connect to a pending network. |
| 328 | void StartPendingTimer(); |
| 329 | // Cancels any currently pending network timer. |
| 330 | void StopPendingTimer(); |
| 331 | // Aborts a pending network that is taking too long to connect. |
| 332 | void PendingTimeoutHandler(); |
Paul Stewart | 4466392 | 2012-07-30 11:03:03 -0700 | [diff] [blame] | 333 | // Starts a timer in order to limit the length of an attempt to |
| 334 | // reconnect to the current network. |
| 335 | void StartReconnectTimer(); |
| 336 | // Stops any pending reconnect timer. |
| 337 | void StopReconnectTimer(); |
| 338 | // Disconnects from the current service that is taking too long |
| 339 | // to reconnect on its own. |
| 340 | void ReconnectTimeoutHandler(); |
Paul Stewart | 2b05e62 | 2012-07-13 20:38:44 -0700 | [diff] [blame] | 341 | // Sets the current pending service. If the argument is non-NULL, |
| 342 | // the Pending timer is started and the associated service is set |
| 343 | // to "Associating", otherwise it is stopped. |
| 344 | void SetPendingService(const WiFiServiceRefPtr &service); |
Gary Morain | ac1bdb4 | 2012-02-16 17:42:29 -0800 | [diff] [blame] | 345 | |
Darin Petkov | 2b8e44e | 2012-06-25 15:13:26 +0200 | [diff] [blame] | 346 | void OnSupplicantAppear(const std::string &owner); |
| 347 | void OnSupplicantVanish(); |
Paul Stewart | 5581d07 | 2012-12-17 17:30:20 -0800 | [diff] [blame] | 348 | // Called by ScopeLogger when WiFi debug scope is enabled/disabled. |
| 349 | void OnWiFiDebugScopeChanged(bool enabled); |
Paul Stewart | a47c3c6 | 2012-12-18 12:14:29 -0800 | [diff] [blame] | 350 | // Enable or disable debugging for the current connection attempt. |
| 351 | void SetConnectionDebugging(bool enabled); |
Christopher Wiley | 5519e9e | 2013-01-08 16:55:56 -0800 | [diff] [blame] | 352 | // Enable high bitrates for the current network. High rates are disabled |
| 353 | // on the initial association and every reassociation afterward. |
| 354 | void EnableHighBitrates(); |
Darin Petkov | 2b8e44e | 2012-06-25 15:13:26 +0200 | [diff] [blame] | 355 | |
| 356 | void ConnectToSupplicant(); |
| 357 | |
| 358 | void Restart(); |
| 359 | |
Albert Chaulk | 0e1cdea | 2013-02-27 15:32:55 -0800 | [diff] [blame] | 360 | std::string GetServiceLeaseName(const WiFiService &service); |
| 361 | |
Wade Guthrie | 92d0636 | 2013-04-25 15:41:30 -0700 | [diff] [blame] | 362 | // Netlink message handler for NL80211_CMD_NEW_WIPHY messages; copies |
| 363 | // device's supported frequencies from that message into |
| 364 | // |all_scan_frequencies_|. |
Wade Guthrie | 7347bf2 | 2013-04-30 11:21:51 -0700 | [diff] [blame] | 365 | void OnNewWiphy(const Nl80211Message &nl80211_message); |
Wade Guthrie | 92d0636 | 2013-04-25 15:41:30 -0700 | [diff] [blame] | 366 | |
Paul Stewart | 3c50401 | 2013-01-17 17:49:58 -0800 | [diff] [blame] | 367 | // Pointer to the provider object that maintains WiFiService objects. |
| 368 | WiFiProvider *provider_; |
| 369 | |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 370 | base::WeakPtrFactory<WiFi> weak_ptr_factory_; |
| 371 | |
Darin Petkov | ab565bb | 2011-10-06 02:55:51 -0700 | [diff] [blame] | 372 | // Store cached copies of singletons for speed/ease of testing. |
| 373 | ProxyFactory *proxy_factory_; |
mukesh agrawal | 5c05b29 | 2012-03-07 10:12:52 -0800 | [diff] [blame] | 374 | Time *time_; |
Darin Petkov | ab565bb | 2011-10-06 02:55:51 -0700 | [diff] [blame] | 375 | |
Darin Petkov | 2b8e44e | 2012-06-25 15:13:26 +0200 | [diff] [blame] | 376 | DBusManager::CancelableAppearedCallback on_supplicant_appear_; |
| 377 | DBusManager::CancelableVanishedCallback on_supplicant_vanish_; |
| 378 | bool supplicant_present_; |
| 379 | |
mukesh agrawal | af57195 | 2011-07-14 14:31:12 -0700 | [diff] [blame] | 380 | scoped_ptr<SupplicantProcessProxyInterface> supplicant_process_proxy_; |
| 381 | scoped_ptr<SupplicantInterfaceProxyInterface> supplicant_interface_proxy_; |
mukesh agrawal | 1590839 | 2011-11-16 18:29:25 +0000 | [diff] [blame] | 382 | // The rpcid used as the key is wpa_supplicant's D-Bus path for the |
| 383 | // Endpoint (BSS, in supplicant parlance). |
| 384 | EndpointMap endpoint_by_rpcid_; |
mukesh agrawal | 1590839 | 2011-11-16 18:29:25 +0000 | [diff] [blame] | 385 | // Map from Services to the D-Bus path for the corresponding wpa_supplicant |
| 386 | // Network. |
| 387 | ReverseServiceMap rpcid_by_service_; |
mukesh agrawal | 1590839 | 2011-11-16 18:29:25 +0000 | [diff] [blame] | 388 | // The Service we are presently connected to. May be NULL is we're not |
| 389 | // not connected to any Service. |
| 390 | WiFiServiceRefPtr current_service_; |
| 391 | // The Service we're attempting to connect to. May be NULL if we're |
| 392 | // not attempting to connect to a new Service. If non-NULL, should |
| 393 | // be distinct from |current_service_|. (A service should not |
| 394 | // simultaneously be both pending, and current.) |
| 395 | WiFiServiceRefPtr pending_service_; |
| 396 | std::string supplicant_state_; |
| 397 | std::string supplicant_bss_; |
mukesh agrawal | 5c05b29 | 2012-03-07 10:12:52 -0800 | [diff] [blame] | 398 | // Indicates that we should flush supplicant's BSS cache after the |
| 399 | // next scan completes. |
| 400 | bool need_bss_flush_; |
| 401 | struct timeval resumed_at_; |
mukesh agrawal | b66c646 | 2012-05-07 11:45:25 -0700 | [diff] [blame] | 402 | // Executes when the (foreground) scan timer expires. Calls ScanTimerHandler. |
| 403 | base::CancelableClosure scan_timer_callback_; |
Paul Stewart | 2b05e62 | 2012-07-13 20:38:44 -0700 | [diff] [blame] | 404 | // Executes when a pending service connect timer expires. Calls |
| 405 | // PendingTimeoutHandler. |
| 406 | base::CancelableClosure pending_timeout_callback_; |
Paul Stewart | 4466392 | 2012-07-30 11:03:03 -0700 | [diff] [blame] | 407 | // Executes when a reconnecting service timer expires. Calls |
| 408 | // ReconnectTimeoutHandler. |
| 409 | base::CancelableClosure reconnect_timeout_callback_; |
Paul Stewart | e369ece | 2012-05-22 09:11:03 -0700 | [diff] [blame] | 410 | // Number of remaining fast scans to be done during startup and disconnect. |
| 411 | int fast_scans_remaining_; |
Christopher Wiley | 8f81e2a | 2012-10-17 16:51:32 -0700 | [diff] [blame] | 412 | // Indicates that the current BSS has reached the completed state according |
| 413 | // to supplicant. |
| 414 | bool has_already_completed_; |
Paul Stewart | a47c3c6 | 2012-12-18 12:14:29 -0800 | [diff] [blame] | 415 | // Indicates that we are debugging a problematic connection. |
| 416 | bool is_debugging_connection_; |
Paul Stewart | 735eab5 | 2013-03-29 09:19:23 -0700 | [diff] [blame] | 417 | // Tracks the process of an EAP negotiation. |
| 418 | scoped_ptr<SupplicantEAPStateHandler> eap_state_handler_; |
mukesh agrawal | ab87ea4 | 2011-05-18 11:44:49 -0700 | [diff] [blame] | 419 | |
Chris Masone | 853b81b | 2011-06-24 14:11:41 -0700 | [diff] [blame] | 420 | // Properties |
| 421 | std::string bgscan_method_; |
mukesh agrawal | 4d0401c | 2012-01-06 16:05:31 -0800 | [diff] [blame] | 422 | uint16 bgscan_short_interval_seconds_; |
| 423 | int32 bgscan_signal_threshold_dbm_; |
Chris Masone | 853b81b | 2011-06-24 14:11:41 -0700 | [diff] [blame] | 424 | bool scan_pending_; |
mukesh agrawal | 4d0401c | 2012-01-06 16:05:31 -0800 | [diff] [blame] | 425 | uint16 scan_interval_seconds_; |
Chris Masone | 853b81b | 2011-06-24 14:11:41 -0700 | [diff] [blame] | 426 | |
Wade Guthrie | 5a4e2ef | 2013-04-30 12:51:39 -0700 | [diff] [blame] | 427 | bool progressive_scan_enabled_; |
Wade Guthrie | bb9fca2 | 2013-04-10 17:21:42 -0700 | [diff] [blame] | 428 | NetlinkManager *netlink_manager_; |
Wade Guthrie | 92d0636 | 2013-04-25 15:41:30 -0700 | [diff] [blame] | 429 | std::set<uint16_t> all_scan_frequencies_; |
Wade Guthrie | 5a4e2ef | 2013-04-30 12:51:39 -0700 | [diff] [blame] | 430 | scoped_ptr<ScanSession> scan_session_; |
| 431 | size_t min_frequencies_to_scan_; |
| 432 | size_t max_frequencies_to_scan_; |
Wade Guthrie | 2edd58b | 2013-05-23 11:16:08 -0700 | [diff] [blame] | 433 | // Fraction of previously seen scan frequencies to include in each |
| 434 | // progressive scan batch (since the frequencies are sorted, the sum of the |
| 435 | // fraction_per_scan_ over the scans in a session (* 100) is the percentile |
| 436 | // of the frequencies that have been scanned). |
| 437 | float fraction_per_scan_; |
Wade Guthrie | bee87c2 | 2013-03-06 11:00:46 -0800 | [diff] [blame] | 438 | |
Paul Stewart | b50f0b9 | 2011-05-16 16:31:42 -0700 | [diff] [blame] | 439 | DISALLOW_COPY_AND_ASSIGN(WiFi); |
| 440 | }; |
| 441 | |
| 442 | } // namespace shill |
| 443 | |
Paul Stewart | 735eab5 | 2013-03-29 09:19:23 -0700 | [diff] [blame] | 444 | #endif // SHILL_WIFI_H_ |