blob: a5ce04bbc526291831834d4582f5b84ece81ddee [file] [log] [blame]
mukesh agrawal8a3188d2011-12-01 20:56:44 +00001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Paul Stewartb50f0b92011-05-16 16:31:42 -07002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Paul Stewart735eab52013-03-29 09:19:23 -07005#ifndef SHILL_WIFI_H_
6#define SHILL_WIFI_H_
Paul Stewartb50f0b92011-05-16 16:31:42 -07007
Gary Morain22601da2012-03-16 10:48:39 -07008// 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 Morain22601da2012-03-16 10:48:39 -070025// 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 Stewartbc6e7392012-05-24 07:07:48 -070038// 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 Morain22601da2012-03-16 10:48:39 -070046//
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 agrawal5c05b292012-03-07 10:12:52 -080076#include <time.h>
77
mukesh agrawalab87ea42011-05-18 11:44:49 -070078#include <map>
Wade Guthrie92d06362013-04-25 15:41:30 -070079#include <set>
Chris Masone46eaaf52011-05-24 13:08:30 -070080#include <string>
mukesh agrawalab87ea42011-05-18 11:44:49 -070081#include <vector>
Chris Masone46eaaf52011-05-24 13:08:30 -070082
Eric Shienbrood9a245532012-03-07 14:20:39 -050083#include <base/callback_forward.h>
mukesh agrawalb66c6462012-05-07 11:45:25 -070084#include <base/cancelable_callback.h>
Paul Stewart735eab52013-03-29 09:19:23 -070085#include <base/memory/scoped_ptr.h>
Eric Shienbrood9a245532012-03-07 14:20:39 -050086#include <base/memory/weak_ptr.h>
mukesh agrawalaf571952011-07-14 14:31:12 -070087#include <dbus-c++/dbus.h>
Paul Stewart6ab23a92011-11-09 17:17:47 -080088#include <gtest/gtest_prod.h> // for FRIEND_TEST
mukesh agrawalaf571952011-07-14 14:31:12 -070089
Darin Petkov2b8e44e2012-06-25 15:13:26 +020090#include "shill/dbus_manager.h"
Paul Stewartb50f0b92011-05-16 16:31:42 -070091#include "shill/device.h"
Paul Stewart26b327e2011-10-19 11:38:09 -070092#include "shill/event_dispatcher.h"
Gary Morainac1bdb42012-02-16 17:42:29 -080093#include "shill/power_manager.h"
Chris Masone2b105542011-06-22 10:58:09 -070094#include "shill/refptr_types.h"
Paul Stewart1369c2b2013-01-11 05:41:26 -080095#include "shill/service.h"
Paul Stewart196f50f2013-03-27 18:02:11 -070096#include "shill/supplicant_event_delegate_interface.h"
Paul Stewartb50f0b92011-05-16 16:31:42 -070097
98namespace shill {
99
mukesh agrawal7a4e4002011-09-06 11:26:05 -0700100class Error;
Gaurav Shah6d2c72d2012-10-16 16:30:44 -0700101class GeolocationInfo;
mukesh agrawal7a4e4002011-09-06 11:26:05 -0700102class KeyValueStore;
Wade Guthriebb9fca22013-04-10 17:21:42 -0700103class NetlinkManager;
Wade Guthrie92d06362013-04-25 15:41:30 -0700104class NetlinkMessage;
Wade Guthrie7347bf22013-04-30 11:21:51 -0700105class Nl80211Message;
Darin Petkovab565bb2011-10-06 02:55:51 -0700106class ProxyFactory;
Wade Guthrie5a4e2ef2013-04-30 12:51:39 -0700107class ScanSession;
Paul Stewart735eab52013-03-29 09:19:23 -0700108class SupplicantEAPStateHandler;
mukesh agrawalaf571952011-07-14 14:31:12 -0700109class SupplicantInterfaceProxyInterface;
110class SupplicantProcessProxyInterface;
Paul Stewart3c504012013-01-17 17:49:58 -0800111class WiFiProvider;
mukesh agrawal445e72c2011-06-22 11:13:50 -0700112class WiFiService;
mukesh agrawalb54601c2011-06-07 17:39:22 -0700113
mukesh agrawalab87ea42011-05-18 11:44:49 -0700114// WiFi class. Specialization of Device for WiFi.
Paul Stewart196f50f2013-03-27 18:02:11 -0700115class WiFi : public Device, public SupplicantEventDelegateInterface {
Paul Stewartb50f0b92011-05-16 16:31:42 -0700116 public:
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700117 WiFi(ControlInterface *control_interface,
118 EventDispatcher *dispatcher,
Thieu Le3426c8f2012-01-11 17:35:11 -0800119 Metrics *metrics,
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700120 Manager *manager,
Chris Masone626719f2011-08-18 16:58:48 -0700121 const std::string &link,
122 const std::string &address,
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700123 int interface_index);
mukesh agrawalab87ea42011-05-18 11:44:49 -0700124 virtual ~WiFi();
Darin Petkovc0865312011-09-16 15:31:20 -0700125
Eric Shienbrood9a245532012-03-07 14:20:39 -0500126 virtual void Start(Error *error, const EnabledStateChangedCallback &callback);
127 virtual void Stop(Error *error, const EnabledStateChangedCallback &callback);
Wade Guthrie68d41092013-04-02 12:56:02 -0700128 virtual void Scan(ScanType scan_type, Error *error);
mukesh agrawal2f9df4e2012-08-08 12:29:20 -0700129 // Callback for system resume. If this WiFi device is idle, a scan
130 // is initiated. Additionally, the base class implementation is
131 // invoked unconditionally.
Christopher Wiley5519e9e2013-01-08 16:55:56 -0800132 virtual void OnAfterResume();
133 // Callback for when a service is configured with an IP.
134 virtual void OnConnected();
mukesh agrawalab87ea42011-05-18 11:44:49 -0700135
Paul Stewart196f50f2013-03-27 18:02:11 -0700136 // Implementation of SupplicantEventDelegateInterface. These methods
137 // are called by SupplicantInterfaceProxy, in response to events from
mukesh agrawalab87ea42011-05-18 11:44:49 -0700138 // wpa_supplicant.
Paul Stewart196f50f2013-03-27 18:02:11 -0700139 virtual void BSSAdded(
140 const ::DBus::Path &BSS,
mukesh agrawal7ec71312011-11-10 02:08:26 +0000141 const std::map<std::string, ::DBus::Variant> &properties);
Paul Stewart196f50f2013-03-27 18:02:11 -0700142 virtual void BSSRemoved(const ::DBus::Path &BSS);
143 virtual void Certification(
144 const std::map<std::string, ::DBus::Variant> &properties);
145 virtual void EAPEvent(
146 const std::string &status, const std::string &parameter);
147 virtual void PropertiesChanged(
148 const std::map<std::string, ::DBus::Variant> &properties);
149 virtual void ScanDone();
mukesh agrawalab87ea42011-05-18 11:44:49 -0700150
mukesh agrawal15908392011-11-16 18:29:25 +0000151 // Called by WiFiService.
mukesh agrawal6e277772011-09-29 15:04:23 -0700152 virtual void ConnectTo(
153 WiFiService *service,
mukesh agrawal64896322011-12-01 01:13:10 +0000154 std::map<std::string, ::DBus::Variant> service_params);
Paul Stewart835934a2012-12-06 19:27:09 -0800155 // If |service| is connected, initiate the process of disconnecting it.
156 // Otherwise, if it a pending or current service, discontinue the process
157 // of connecting and return |service| to the idle state.
mukesh agrawal0ed0f2e2011-12-05 20:36:17 +0000158 virtual void DisconnectFrom(WiFiService *service);
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000159 virtual bool IsIdle() const;
Paul Stewart835934a2012-12-06 19:27:09 -0800160 // Clear any cached credentials wpa_supplicant may be holding for
161 // |service|. This has a side-effect of disconnecting the service
162 // if it is connected.
163 virtual void ClearCachedCredentials(const WiFiService *service);
mukesh agrawalb54601c2011-06-07 17:39:22 -0700164
mukesh agrawalb20776f2012-02-10 16:00:36 -0800165 // Called by WiFiEndpoint.
Paul Stewart3c504012013-01-17 17:49:58 -0800166 virtual void NotifyEndpointChanged(const WiFiEndpointConstRefPtr &endpoint);
mukesh agrawal7a4e4002011-09-06 11:26:05 -0700167
mukesh agrawal16bc1b82012-02-09 18:38:26 -0800168 // Utility, used by WiFiService and WiFiEndpoint.
169 // Replace non-ASCII characters with '?'. Return true if one or more
170 // characters were changed.
171 static bool SanitizeSSID(std::string *ssid);
172
Darin Petkov50cb78a2013-02-06 16:17:49 +0100173 // Formats |ssid| for logging purposes, to ease scrubbing.
174 static std::string LogSSID(const std::string &ssid);
175
Paul Stewart3c508e12012-08-09 11:40:06 -0700176 // Called by Linkmonitor (overriden from Device superclass).
177 virtual void OnLinkMonitorFailure();
178
Wade Guthrie8bc50882012-10-31 16:23:20 -0700179 bool IsCurrentService(const WiFiServiceRefPtr service) {
180 return service.get() == current_service_.get();
181 }
182
Arman Ugurayed8e6102012-11-29 14:47:20 -0800183 // Overridden from Device superclass
Gaurav Shah6d2c72d2012-10-16 16:30:44 -0700184 virtual std::vector<GeolocationInfo> GetGeolocationObjects() const;
185
Arman Ugurayed8e6102012-11-29 14:47:20 -0800186 // Overridden from Device superclass
187 virtual bool ShouldUseArpGateway() const;
188
Paul Stewart3c504012013-01-17 17:49:58 -0800189 // Called by a WiFiService when it disassociates itself from this Device.
190 virtual void DisassociateFromService(const WiFiServiceRefPtr &service);
191
Albert Chaulk0e1cdea2013-02-27 15:32:55 -0800192 // Called by a WiFiService when it unloads to destroy its lease file.
193 virtual void DestroyServiceLease(const WiFiService &service);
194
Paul Stewartb50f0b92011-05-16 16:31:42 -0700195 private:
Paul Stewarte369ece2012-05-22 09:11:03 -0700196 friend class WiFiObjectTest; // access to supplicant_*_proxy_, link_up_
Paul Stewart1aff7302012-08-04 20:04:47 -0700197 friend class WiFiTimerTest; // kNumFastScanAttempts, kFastScanIntervalSeconds
Darin Petkov4a66cc52012-06-15 10:08:29 +0200198 FRIEND_TEST(WiFiMainTest, AppendBgscan);
Christopher Wileyc6184482012-10-24 15:31:56 -0700199 FRIEND_TEST(WiFiMainTest, DisconnectCurrentServiceWithErrors);
Paul Stewarte369ece2012-05-22 09:11:03 -0700200 FRIEND_TEST(WiFiMainTest, FlushBSSOnResume); // kMaxBSSResumeAgeSeconds
mukesh agrawal7ec71312011-11-10 02:08:26 +0000201 FRIEND_TEST(WiFiMainTest, InitialSupplicantState); // kInterfaceStateUnknown
Paul Stewart3c508e12012-08-09 11:40:06 -0700202 FRIEND_TEST(WiFiMainTest, LinkMonitorFailure); // set_link_monitor()
Thieu Lee41a72d2012-02-06 20:46:51 +0000203 FRIEND_TEST(WiFiMainTest, ScanResults); // EndpointMap
mukesh agrawal165e6142011-11-22 02:22:56 +0000204 FRIEND_TEST(WiFiMainTest, ScanResultsWithUpdates); // EndpointMap
mukesh agrawalc4f368f2012-06-04 19:45:52 -0700205 FRIEND_TEST(WiFiMainTest, Stop); // weak_ptr_factory_
Darin Petkov60ceaf32012-10-18 10:36:01 +0200206 FRIEND_TEST(WiFiMainTest, VerifyPaths);
Darin Petkov4a66cc52012-06-15 10:08:29 +0200207 FRIEND_TEST(WiFiPropertyTest, BgscanMethodProperty); // bgscan_method_
Paul Stewart1aff7302012-08-04 20:04:47 -0700208 FRIEND_TEST(WiFiTimerTest, FastRescan); // kFastScanIntervalSeconds
Paul Stewart6ab23a92011-11-09 17:17:47 -0800209
mukesh agrawalb54601c2011-06-07 17:39:22 -0700210 typedef std::map<const std::string, WiFiEndpointRefPtr> EndpointMap;
Paul Stewart835934a2012-12-06 19:27:09 -0800211 typedef std::map<const WiFiService *, std::string> ReverseServiceMap;
mukesh agrawalb54601c2011-06-07 17:39:22 -0700212
mukesh agrawal4d0401c2012-01-06 16:05:31 -0800213 static const char *kDefaultBgscanMethod;
214 static const uint16 kDefaultBgscanShortIntervalSeconds;
215 static const int32 kDefaultBgscanSignalThresholdDbm;
216 static const uint16 kDefaultScanIntervalSeconds;
Darin Petkov4a66cc52012-06-15 10:08:29 +0200217 static const uint16 kBackgroundScanIntervalSeconds;
mukesh agrawal5c05b292012-03-07 10:12:52 -0800218 static const time_t kMaxBSSResumeAgeSeconds;
mukesh agrawal7ec71312011-11-10 02:08:26 +0000219 static const char kInterfaceStateUnknown[];
mukesh agrawalf2028172012-03-13 14:20:22 -0700220 // Delay between scans when supplicant finds "No suitable network".
221 static const time_t kRescanIntervalSeconds;
Paul Stewarte369ece2012-05-22 09:11:03 -0700222 // Number of times to quickly attempt a scan after startup / disconnect.
223 static const int kNumFastScanAttempts;
224 static const int kFastScanIntervalSeconds;
Paul Stewart2b05e622012-07-13 20:38:44 -0700225 static const int kPendingTimeoutSeconds;
Paul Stewart44663922012-07-30 11:03:03 -0700226 static const int kReconnectTimeoutSeconds;
Wade Guthrie5a4e2ef2013-04-30 12:51:39 -0700227 static const size_t kMinumumFrequenciesToScan;
228 static const char kProgressiveScanFlagFile[];
mukesh agrawalab87ea42011-05-18 11:44:49 -0700229
Wade Guthrie92d06362013-04-25 15:41:30 -0700230 // Gets the list of frequencies supported by this device.
231 void ConfigureScanFrequencies();
Darin Petkov4a66cc52012-06-15 10:08:29 +0200232 void AppendBgscan(WiFiService *service,
233 std::map<std::string, DBus::Variant> *service_params) const;
234 std::string GetBgscanMethod(const int &argument, Error *error);
mukesh agrawal4d0401c2012-01-06 16:05:31 -0800235 uint16 GetBgscanShortInterval(Error */* error */) {
236 return bgscan_short_interval_seconds_;
237 }
238 int32 GetBgscanSignalThreshold(Error */* error */) {
239 return bgscan_signal_threshold_dbm_;
240 }
241 uint16 GetScanInterval(Error */* error */) { return scan_interval_seconds_; }
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700242 bool SetBgscanMethod(
Darin Petkov4a66cc52012-06-15 10:08:29 +0200243 const int &argument, const std::string &method, Error *error);
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700244 bool SetBgscanShortInterval(const uint16 &seconds, Error *error);
245 bool SetBgscanSignalThreshold(const int32 &dbm, Error *error);
246 bool SetScanInterval(const uint16 &seconds, Error *error);
Darin Petkov4a66cc52012-06-15 10:08:29 +0200247 void ClearBgscanMethod(const int &argument, Error *error);
mukesh agrawal4d0401c2012-01-06 16:05:31 -0800248
mukesh agrawal15908392011-11-16 18:29:25 +0000249 void CurrentBSSChanged(const ::DBus::Path &new_bss);
Paul Stewart835934a2012-12-06 19:27:09 -0800250 // Return the RPC identifier associated with the wpa_supplicant network
251 // entry created for |service|. If one does not exist, an empty string
252 // is returned, and |error| is populated.
253 std::string FindNetworkRpcidForService(const WiFiService *service,
254 Error *error);
mukesh agrawal15908392011-11-16 18:29:25 +0000255 void HandleDisconnect();
256 void HandleRoam(const ::DBus::Path &new_bssid);
mukesh agrawalb4bc57d2011-12-07 01:07:47 +0000257 void BSSAddedTask(const ::DBus::Path &BSS,
258 const std::map<std::string, ::DBus::Variant> &properties);
259 void BSSRemovedTask(const ::DBus::Path &BSS);
Paul Stewartbc6e7392012-05-24 07:07:48 -0700260 void CertificationTask(
261 const std::map<std::string, ::DBus::Variant> &properties);
Paul Stewartdb0f9172012-11-30 16:48:09 -0800262 void EAPEventTask(const std::string &status, const std::string &parameter);
mukesh agrawal15908392011-11-16 18:29:25 +0000263 void PropertiesChangedTask(
264 const std::map<std::string, ::DBus::Variant> &properties);
mukesh agrawaldc42bb32011-07-28 10:40:26 -0700265 void ScanDoneTask();
mukesh agrawal32399322011-09-01 10:53:43 -0700266 void ScanTask();
Paul Stewartd2db2b12013-01-17 13:11:07 -0800267 void SetScanPending(bool pending);
mukesh agrawal7ec71312011-11-10 02:08:26 +0000268 void StateChanged(const std::string &new_state);
mukesh agrawalcf24a242012-05-21 16:46:11 -0700269 // Heuristic check if a connection failure was due to bad credentials.
Paul Stewart1369c2b2013-01-11 05:41:26 -0800270 // Returns true and puts type of failure in |failure| if a credential
271 // problem is detected.
272 bool SuspectCredentials(const WiFiService &service,
273 Service::ConnectFailure *failure) const;
mukesh agrawal4d0401c2012-01-06 16:05:31 -0800274 void HelpRegisterDerivedInt32(
275 PropertyStore *store,
276 const std::string &name,
277 int32(WiFi::*get)(Error *error),
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700278 bool(WiFi::*set)(const int32 &value, Error *error));
mukesh agrawal4d0401c2012-01-06 16:05:31 -0800279 void HelpRegisterDerivedUint16(
280 PropertyStore *store,
281 const std::string &name,
282 uint16(WiFi::*get)(Error *error),
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700283 bool(WiFi::*set)(const uint16 &value, Error *error));
mukesh agrawal4d0401c2012-01-06 16:05:31 -0800284
Paul Stewart835934a2012-12-06 19:27:09 -0800285 // Disable a network entry in wpa_supplicant, and catch any exception
286 // that occurs. Returns false if an exception occurred, true otherwise.
287 bool DisableNetwork(const ::DBus::Path &network);
288 // Disable the wpa_supplicant network entry associated with |service|.
289 // Any cached credentials stored in wpa_supplicant related to this
290 // network entry will be preserved. This will have the side-effect of
291 // disconnecting this service if it is currently connected. Returns
292 // true if successful, otherwise returns false and populates |error|
293 // with the reason for failure.
294 virtual bool DisableNetworkForService(
295 const WiFiService *service, Error *error);
Paul Stewart71f6ecd2012-09-13 14:52:18 -0700296 // Remove a network entry from wpa_supplicant, and catch any exception
297 // that occurs. Returns false if an exception occurred, true otherwise.
298 bool RemoveNetwork(const ::DBus::Path &network);
Paul Stewart835934a2012-12-06 19:27:09 -0800299 // Remove the wpa_supplicant network entry associated with |service|.
300 // Any cached credentials stored in wpa_supplicant related to this
301 // network entry will be removed. This will have the side-effect of
302 // disconnecting this service if it is currently connected. Returns
303 // true if successful, otherwise returns false and populates |error|
304 // with the reason for failure.
305 virtual bool RemoveNetworkForService(
306 const WiFiService *service, Error *error);
Wade Guthrie5a4e2ef2013-04-30 12:51:39 -0700307 // Perform the next in a series of progressive scans.
308 void ProgressiveScanTask();
309 // Recovers from failed progressive scan.
310 void OnFailedProgressiveScan();
Paul Stewarte369ece2012-05-22 09:11:03 -0700311 // Restart fast scanning after disconnection.
312 void RestartFastScanAttempts();
mukesh agrawalb66c6462012-05-07 11:45:25 -0700313 // Schedules a scan attempt at time |scan_interval_seconds_| in the
314 // future. Cancels any currently pending scan timer.
315 void StartScanTimer();
316 // Cancels any currently pending scan timer.
317 void StopScanTimer();
318 // Initiates a scan, if idle. Reschedules the scan timer regardless.
319 void ScanTimerHandler();
Paul Stewart2b05e622012-07-13 20:38:44 -0700320 // Starts a timer in order to limit the length of an attempt to
321 // connect to a pending network.
322 void StartPendingTimer();
323 // Cancels any currently pending network timer.
324 void StopPendingTimer();
325 // Aborts a pending network that is taking too long to connect.
326 void PendingTimeoutHandler();
Paul Stewart44663922012-07-30 11:03:03 -0700327 // Starts a timer in order to limit the length of an attempt to
328 // reconnect to the current network.
329 void StartReconnectTimer();
330 // Stops any pending reconnect timer.
331 void StopReconnectTimer();
332 // Disconnects from the current service that is taking too long
333 // to reconnect on its own.
334 void ReconnectTimeoutHandler();
Paul Stewart2b05e622012-07-13 20:38:44 -0700335 // Sets the current pending service. If the argument is non-NULL,
336 // the Pending timer is started and the associated service is set
337 // to "Associating", otherwise it is stopped.
338 void SetPendingService(const WiFiServiceRefPtr &service);
Gary Morainac1bdb42012-02-16 17:42:29 -0800339
Darin Petkov2b8e44e2012-06-25 15:13:26 +0200340 void OnSupplicantAppear(const std::string &owner);
341 void OnSupplicantVanish();
Paul Stewart5581d072012-12-17 17:30:20 -0800342 // Called by ScopeLogger when WiFi debug scope is enabled/disabled.
343 void OnWiFiDebugScopeChanged(bool enabled);
Paul Stewarta47c3c62012-12-18 12:14:29 -0800344 // Enable or disable debugging for the current connection attempt.
345 void SetConnectionDebugging(bool enabled);
Christopher Wiley5519e9e2013-01-08 16:55:56 -0800346 // Enable high bitrates for the current network. High rates are disabled
347 // on the initial association and every reassociation afterward.
348 void EnableHighBitrates();
Darin Petkov2b8e44e2012-06-25 15:13:26 +0200349
350 void ConnectToSupplicant();
351
352 void Restart();
353
Albert Chaulk0e1cdea2013-02-27 15:32:55 -0800354 std::string GetServiceLeaseName(const WiFiService &service);
355
Wade Guthrie92d06362013-04-25 15:41:30 -0700356 // Netlink message handler for NL80211_CMD_NEW_WIPHY messages; copies
357 // device's supported frequencies from that message into
358 // |all_scan_frequencies_|.
Wade Guthrie7347bf22013-04-30 11:21:51 -0700359 void OnNewWiphy(const Nl80211Message &nl80211_message);
Wade Guthrie92d06362013-04-25 15:41:30 -0700360
Paul Stewart3c504012013-01-17 17:49:58 -0800361 // Pointer to the provider object that maintains WiFiService objects.
362 WiFiProvider *provider_;
363
Eric Shienbrood9a245532012-03-07 14:20:39 -0500364 base::WeakPtrFactory<WiFi> weak_ptr_factory_;
365
Darin Petkovab565bb2011-10-06 02:55:51 -0700366 // Store cached copies of singletons for speed/ease of testing.
367 ProxyFactory *proxy_factory_;
mukesh agrawal5c05b292012-03-07 10:12:52 -0800368 Time *time_;
Darin Petkovab565bb2011-10-06 02:55:51 -0700369
Darin Petkov2b8e44e2012-06-25 15:13:26 +0200370 DBusManager::CancelableAppearedCallback on_supplicant_appear_;
371 DBusManager::CancelableVanishedCallback on_supplicant_vanish_;
372 bool supplicant_present_;
373
mukesh agrawalaf571952011-07-14 14:31:12 -0700374 scoped_ptr<SupplicantProcessProxyInterface> supplicant_process_proxy_;
375 scoped_ptr<SupplicantInterfaceProxyInterface> supplicant_interface_proxy_;
mukesh agrawal15908392011-11-16 18:29:25 +0000376 // The rpcid used as the key is wpa_supplicant's D-Bus path for the
377 // Endpoint (BSS, in supplicant parlance).
378 EndpointMap endpoint_by_rpcid_;
mukesh agrawal15908392011-11-16 18:29:25 +0000379 // Map from Services to the D-Bus path for the corresponding wpa_supplicant
380 // Network.
381 ReverseServiceMap rpcid_by_service_;
mukesh agrawal15908392011-11-16 18:29:25 +0000382 // The Service we are presently connected to. May be NULL is we're not
383 // not connected to any Service.
384 WiFiServiceRefPtr current_service_;
385 // The Service we're attempting to connect to. May be NULL if we're
386 // not attempting to connect to a new Service. If non-NULL, should
387 // be distinct from |current_service_|. (A service should not
388 // simultaneously be both pending, and current.)
389 WiFiServiceRefPtr pending_service_;
390 std::string supplicant_state_;
391 std::string supplicant_bss_;
mukesh agrawal5c05b292012-03-07 10:12:52 -0800392 // Indicates that we should flush supplicant's BSS cache after the
393 // next scan completes.
394 bool need_bss_flush_;
395 struct timeval resumed_at_;
mukesh agrawalb66c6462012-05-07 11:45:25 -0700396 // Executes when the (foreground) scan timer expires. Calls ScanTimerHandler.
397 base::CancelableClosure scan_timer_callback_;
Paul Stewart2b05e622012-07-13 20:38:44 -0700398 // Executes when a pending service connect timer expires. Calls
399 // PendingTimeoutHandler.
400 base::CancelableClosure pending_timeout_callback_;
Paul Stewart44663922012-07-30 11:03:03 -0700401 // Executes when a reconnecting service timer expires. Calls
402 // ReconnectTimeoutHandler.
403 base::CancelableClosure reconnect_timeout_callback_;
Paul Stewarte369ece2012-05-22 09:11:03 -0700404 // Number of remaining fast scans to be done during startup and disconnect.
405 int fast_scans_remaining_;
Christopher Wiley8f81e2a2012-10-17 16:51:32 -0700406 // Indicates that the current BSS has reached the completed state according
407 // to supplicant.
408 bool has_already_completed_;
Paul Stewarta47c3c62012-12-18 12:14:29 -0800409 // Indicates that we are debugging a problematic connection.
410 bool is_debugging_connection_;
Paul Stewart735eab52013-03-29 09:19:23 -0700411 // Tracks the process of an EAP negotiation.
412 scoped_ptr<SupplicantEAPStateHandler> eap_state_handler_;
mukesh agrawalab87ea42011-05-18 11:44:49 -0700413
Chris Masone853b81b2011-06-24 14:11:41 -0700414 // Properties
415 std::string bgscan_method_;
mukesh agrawal4d0401c2012-01-06 16:05:31 -0800416 uint16 bgscan_short_interval_seconds_;
417 int32 bgscan_signal_threshold_dbm_;
Chris Masone853b81b2011-06-24 14:11:41 -0700418 bool scan_pending_;
mukesh agrawal4d0401c2012-01-06 16:05:31 -0800419 uint16 scan_interval_seconds_;
Chris Masone853b81b2011-06-24 14:11:41 -0700420
Wade Guthrie5a4e2ef2013-04-30 12:51:39 -0700421 bool progressive_scan_enabled_;
Wade Guthriebb9fca22013-04-10 17:21:42 -0700422 NetlinkManager *netlink_manager_;
Wade Guthrie92d06362013-04-25 15:41:30 -0700423 std::set<uint16_t> all_scan_frequencies_;
Wade Guthrie5a4e2ef2013-04-30 12:51:39 -0700424 scoped_ptr<ScanSession> scan_session_;
425 size_t min_frequencies_to_scan_;
426 size_t max_frequencies_to_scan_;
Wade Guthriebee87c22013-03-06 11:00:46 -0800427
Paul Stewartb50f0b92011-05-16 16:31:42 -0700428 DISALLOW_COPY_AND_ASSIGN(WiFi);
429};
430
431} // namespace shill
432
Paul Stewart735eab52013-03-29 09:19:23 -0700433#endif // SHILL_WIFI_H_