blob: 0b99cb951383ad1b923ee0cd496b6042ec1b492f [file] [log] [blame]
Arman Uguray2717a102013-01-29 23:36:06 -08001// Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
Paul Stewart75897df2011-04-27 09:05:53 -07002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Ben Chan19f83972012-10-03 23:25:56 -07005#ifndef SHILL_SERVICE_H_
6#define SHILL_SERVICE_H_
Paul Stewart75897df2011-04-27 09:05:53 -07007
mukesh agrawal568b5c62012-02-28 14:44:47 -08008#include <time.h>
9
Darin Petkov385b9bc2012-12-03 15:25:05 +010010#include <deque>
Chris Masone8fe2c7e2011-06-09 15:51:19 -070011#include <map>
Ben Chancd477322014-10-17 14:19:30 -070012#include <memory>
Paul Stewartcb59fed2012-03-21 21:14:46 -070013#include <set>
Darin Petkov385b9bc2012-12-03 15:25:05 +010014#include <string>
Chris Masone8fe2c7e2011-06-09 15:51:19 -070015#include <vector>
Chris Masone9be4a9d2011-05-16 15:44:09 -070016
Christopher Wiley0801d192012-09-24 11:57:15 -070017#include <base/cancelable_callback.h>
Chris Masone9be4a9d2011-05-16 15:44:09 -070018#include <base/memory/ref_counted.h>
Christopher Wiley0801d192012-09-24 11:57:15 -070019#include <base/memory/weak_ptr.h>
Darin Petkovba40dd32011-07-11 20:06:39 -070020#include <gtest/gtest_prod.h> // for FRIEND_TEST
Paul Stewart75897df2011-04-27 09:05:53 -070021
Chris Masone3bd3c8c2011-06-13 08:20:26 -070022#include "shill/accessor_interface.h"
Alex Vakulenkoa41ab512014-07-23 14:24:23 -070023#include "shill/adaptor_interfaces.h"
Eric Shienbrood9a245532012-03-07 14:20:39 -050024#include "shill/callbacks.h"
Peter Qiu8d6b5972014-10-28 15:33:34 -070025#include "shill/net/shill_time.h"
Chris Masoneb925cc82011-06-22 15:39:57 -070026#include "shill/property_store.h"
Chris Masone7aa5f902011-07-11 11:13:35 -070027#include "shill/refptr_types.h"
Paul Stewart1062d9d2012-04-27 10:42:27 -070028#include "shill/static_ip_parameters.h"
Paul Stewart22aa71b2011-09-16 12:15:11 -070029#include "shill/technology.h"
Chris Masonec1e50412011-06-07 13:04:53 -070030
Thieu Leb84ba342012-03-02 15:15:19 -080031namespace chromeos_metrics {
32class Timer;
33}
34
Paul Stewart75897df2011-04-27 09:05:53 -070035namespace shill {
36
Chris Masone9be4a9d2011-05-16 15:44:09 -070037class ControlInterface;
Darin Petkov385b9bc2012-12-03 15:25:05 +010038class DiagnosticsReporter;
Paul Stewartc43cbbe2013-04-11 06:29:30 -070039class EapCredentials;
Paul Stewart75897df2011-04-27 09:05:53 -070040class Endpoint;
Chris Masone8fe2c7e2011-06-09 15:51:19 -070041class Error;
Chris Masone9be4a9d2011-05-16 15:44:09 -070042class EventDispatcher;
Paul Stewartbe5f5b32011-12-07 17:11:11 -080043class HTTPProxy;
mukesh agrawal7a4e4002011-09-06 11:26:05 -070044class KeyValueStore;
Chris Masone6791a432011-07-12 13:23:19 -070045class Manager;
Thieu Le48e6d6d2011-12-06 00:40:27 +000046class Metrics;
mukesh agrawalbebf1b82013-04-23 15:06:33 -070047class MockManager;
Chris Masone9be4a9d2011-05-16 15:44:09 -070048class ServiceAdaptorInterface;
mukesh agrawalcbfb34e2013-04-17 19:33:25 -070049class ServiceMockAdaptor;
Paul Stewart45170bc2014-06-02 15:49:34 -070050class ServicePropertyChangeNotifier;
Darin Petkov5eb05422012-05-11 15:45:25 +020051class Sockets;
Darin Petkovba40dd32011-07-11 20:06:39 -070052class StoreInterface;
Paul Stewart75897df2011-04-27 09:05:53 -070053
Chris Masone7aa5f902011-07-11 11:13:35 -070054// A Service is a uniquely named entity, which the system can
55// connect in order to begin sending and receiving network traffic.
56// All Services are bound to an Entry, which represents the persistable
57// state of the Service. If the Entry is populated at the time of Service
58// creation, that information is used to prime the Service. If not, the Entry
59// becomes populated over time.
Chris Masone27c4aa52011-07-02 13:10:14 -070060class Service : public base::RefCounted<Service> {
Paul Stewart75897df2011-04-27 09:05:53 -070061 public:
Darin Petkovba40dd32011-07-11 20:06:39 -070062 static const char kCheckPortalAuto[];
63 static const char kCheckPortalFalse[];
64 static const char kCheckPortalTrue[];
65
Darin Petkovaba89322013-03-11 14:48:22 +010066 static const char kErrorDetailsNone[];
67
Paul Stewart0756db92012-01-27 08:34:47 -080068 // TODO(pstew): Storage constants shouldn't need to be public
Paul Stewartee6b3d72013-07-12 16:07:51 -070069 // crbug.com/208736
Paul Stewart0756db92012-01-27 08:34:47 -080070 static const char kStorageAutoConnect[];
71 static const char kStorageCheckPortal[];
Peter Qiua89154b2014-05-23 15:45:42 -070072 static const char kStorageDNSAutoFallback[];
Paul Stewart0756db92012-01-27 08:34:47 -080073 static const char kStorageError[];
74 static const char kStorageFavorite[];
75 static const char kStorageGUID[];
mukesh agrawalcf24a242012-05-21 16:46:11 -070076 static const char kStorageHasEverConnected[];
Paul Stewart0756db92012-01-27 08:34:47 -080077 static const char kStorageName[];
78 static const char kStoragePriority[];
79 static const char kStorageProxyConfig[];
80 static const char kStorageSaveCredentials[];
81 static const char kStorageType[];
82 static const char kStorageUIData[];
Peter Qiu9d581932014-04-14 16:37:37 -070083 static const char kStorageConnectionId[];
Peter Qiud49760e2014-09-19 16:13:42 -070084 static const char kStorageLinkMonitorDisabled[];
Paul Stewart3fee7e32014-10-15 21:39:29 -070085 static const char kStorageManagedCredentials[];
Paul Stewart0756db92012-01-27 08:34:47 -080086
Ben Chan7fab8972014-08-10 17:14:46 -070087 static const uint8_t kStrengthMax;
88 static const uint8_t kStrengthMin;
mukesh agrawal8f3f7752012-02-17 19:42:09 -080089
Paul Stewart75897df2011-04-27 09:05:53 -070090 enum ConnectFailure {
Paul Stewart03dba0b2011-08-22 16:32:45 -070091 kFailureUnknown,
Paul Stewartf2d60912012-07-15 08:37:30 -070092 kFailureAAA,
Darin Petkov1c049c72013-03-21 13:15:45 +010093 kFailureActivation,
94 kFailureBadPassphrase,
Paul Stewartf2d60912012-07-15 08:37:30 -070095 kFailureBadWEPKey,
96 kFailureConnect,
Darin Petkov1c049c72013-03-21 13:15:45 +010097 kFailureDHCP,
Paul Stewartf2d60912012-07-15 08:37:30 -070098 kFailureDNSLookup,
Paul Stewartdb0f9172012-11-30 16:48:09 -080099 kFailureEAPAuthentication,
100 kFailureEAPLocalTLS,
101 kFailureEAPRemoteTLS,
Darin Petkov1c049c72013-03-21 13:15:45 +0100102 kFailureHTTPGet,
103 kFailureIPSecCertAuth,
104 kFailureIPSecPSKAuth,
105 kFailureInternal,
106 kFailureNeedEVDO,
107 kFailureNeedHomeNetwork,
108 kFailureOTASP,
109 kFailureOutOfRange,
110 kFailurePPPAuth,
111 kFailurePinMissing,
Thieu Le48e6d6d2011-12-06 00:40:27 +0000112 kFailureMax
Paul Stewart75897df2011-04-27 09:05:53 -0700113 };
Chris Masone9be4a9d2011-05-16 15:44:09 -0700114 enum ConnectState {
Paul Stewart03dba0b2011-08-22 16:32:45 -0700115 kStateUnknown,
116 kStateIdle,
117 kStateAssociating,
118 kStateConfiguring,
119 kStateConnected,
Thieu Le48e6d6d2011-12-06 00:40:27 +0000120 kStatePortal,
Gaurav Shahc6d6c722011-11-17 18:59:39 -0800121 kStateFailure,
122 kStateOnline
Chris Masone9be4a9d2011-05-16 15:44:09 -0700123 };
mukesh agrawal43970a22013-02-15 16:00:07 -0800124 enum CryptoAlgorithm {
125 kCryptoNone,
126 kCryptoRc4,
127 kCryptoAes
128 };
Paul Stewart7b5cee92014-06-25 02:03:34 -0700129
Rebecca Silberstein57776902014-09-15 21:43:02 -0700130 enum UpdateCredentialsReason{
131 kReasonCredentialsLoaded,
132 kReasonPropertyUpdate
133 };
134
Paul Stewartac4ac002011-08-26 12:04:26 -0700135 static const int kPriorityNone;
136
Chris Masone9be4a9d2011-05-16 15:44:09 -0700137 // A constructor for the Service object
138 Service(ControlInterface *control_interface,
139 EventDispatcher *dispatcher,
Thieu Le3426c8f2012-01-11 17:35:11 -0800140 Metrics *metrics,
mukesh agrawal7a4e4002011-09-06 11:26:05 -0700141 Manager *manager,
Gaurav Shah435de2c2011-11-17 19:01:07 -0800142 Technology::Identifier technology);
Darin Petkovba40dd32011-07-11 20:06:39 -0700143
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000144 // AutoConnect MAY choose to ignore the connection request in some
145 // cases. For example, if the corresponding Device only supports one
146 // concurrent connection, and another Service is already connected
147 // or connecting.
148 //
149 // AutoConnect MAY issue RPCs immediately. So AutoConnect MUST NOT
150 // be called from a D-Bus signal handler context.
151 virtual void AutoConnect();
mukesh agrawaldc7b8442012-09-27 13:48:14 -0700152 // Queue up a connection attempt. Derived classes SHOULD call the
153 // base class implementation before beginning a connect. The base
154 // class will log the connection attempt, and update base-class
155 // state.
156 virtual void Connect(Error *error, const char *reason);
Christopher Wileyabd3b502012-09-26 13:08:52 -0700157 // Disconnect this service. Override this method to add your service specific
158 // disconnect logic, but call the super class's Disconnect() first.
Samuel Tan0d061192014-07-07 15:45:15 -0700159 virtual void Disconnect(Error *error, const char *reason);
Christopher Wileyabd3b502012-09-26 13:08:52 -0700160 // Disconnects this service via Disconnect(). Marks the service as having
161 // failed with |failure|. Do not override this method.
Samuel Tan0d061192014-07-07 15:45:15 -0700162 virtual void DisconnectWithFailure(ConnectFailure failure,
163 Error *error,
164 const char *reason);
Christopher Wileyabd3b502012-09-26 13:08:52 -0700165 // Disconnects this service via Disconnect(). The service will not be eligible
166 // for auto-connect until a subsequent call to Connect, or Load. Do not
167 // override this method.
168 virtual void UserInitiatedDisconnect(Error *error);
Peter Qiudc4e0992014-05-01 10:02:52 -0700169 // Connect to this service via Connect(). This function indicates that the
170 // connection attempt is user-initiated.
171 virtual void UserInitiatedConnect(Error *error);
Chris Masonea82b7112011-05-25 15:16:29 -0700172
Eric Shienbrood5de44ab2011-12-05 10:46:27 -0500173 // The default implementation returns the error kInvalidArguments.
174 virtual void ActivateCellularModem(const std::string &carrier,
Eric Shienbrood9a245532012-03-07 14:20:39 -0500175 Error *error,
176 const ResultCallback &callback);
Ben Chan5d924542013-02-14 17:49:08 -0800177 // The default implementation returns the error kNotSupported.
178 virtual void CompleteCellularActivation(Error *error);
Darin Petkovc408e692011-08-17 13:47:15 -0700179
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800180 virtual bool IsActive(Error *error);
Paul Stewart03dba0b2011-08-22 16:32:45 -0700181
Paul Stewart7fb09382012-07-18 17:32:27 -0700182 // Returns whether services of this type should be auto-connect by default.
183 virtual bool IsAutoConnectByDefault() const { return false; }
184
Paul Stewart03dba0b2011-08-22 16:32:45 -0700185 virtual ConnectState state() const { return state_; }
186 // Updates the state of the Service and alerts the manager. Also
187 // clears |failure_| if the new state isn't a failure.
188 virtual void SetState(ConnectState state);
Darin Petkov58f0b6d2012-06-12 12:52:30 +0200189 std::string GetStateString() const;
Paul Stewart03dba0b2011-08-22 16:32:45 -0700190
Peter Qiu9b83c892014-08-09 23:06:02 -0700191 // Set portal detection failure phase and status (reason). This function
192 // is called when portal detection failed for the Service.
193 virtual void SetPortalDetectionFailure(const std::string &phase,
194 const std::string &status);
195
Paul Stewart22aa71b2011-09-16 12:15:11 -0700196 // State utility functions
Darin Petkovc8d91e52013-01-21 11:43:47 +0100197 static bool IsConnectedState(ConnectState state);
198 static bool IsConnectingState(ConnectState state);
199
200 virtual bool IsConnected() const;
201 virtual bool IsConnecting() const;
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000202 virtual bool IsFailed() const {
mukesh agrawal568b5c62012-02-28 14:44:47 -0800203 // We sometimes lie about the failure state, to keep Chrome happy
204 // (see comment in WiFi::HandleDisconnect). Hence, we check both
205 // state and |failed_time_|.
206 return state() == kStateFailure || failed_time_ > 0;
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000207 }
Paul Stewartdf3c0a82012-11-09 15:54:33 -0800208
Peter Qiu49438222014-03-14 14:21:09 -0700209 virtual bool IsInFailState() const {
210 return state() == kStateFailure;
211 }
212
Peter Qiu700de642014-07-14 16:31:30 -0700213 virtual bool IsOnline() const {
214 return state() == kStateOnline;
215 }
216
Paul Stewartdf3c0a82012-11-09 15:54:33 -0800217 // Returns true if the connection for |this| depends on service |b|.
218 virtual bool IsDependentOn(const ServiceRefPtr &b) const;
219
Paul Stewarta121c442012-06-09 14:12:58 -0700220 virtual bool IsPortalled() const {
221 return state() == kStatePortal;
222 }
Paul Stewart22aa71b2011-09-16 12:15:11 -0700223
Peter Qiua89154b2014-05-23 15:45:42 -0700224 // Return true if service is allowed to automatically switch to fallback
225 // DNS server.
226 virtual bool is_dns_auto_fallback_allowed() const {
227 return is_dns_auto_fallback_allowed_;
228 }
229
Peter Qiud49760e2014-09-19 16:13:42 -0700230 virtual bool link_monitor_disabled() const { return link_monitor_disabled_; }
231
Paul Stewart03dba0b2011-08-22 16:32:45 -0700232 virtual ConnectFailure failure() const { return failure_; }
Paul Stewartd7c09a52014-02-19 12:50:29 -0800233 // Sets the |previous_error_| property based on the current |failure_|, and
234 // sets a serial number for this failure.
235 virtual void SaveFailure();
mukesh agrawal568b5c62012-02-28 14:44:47 -0800236 // Records the failure mode and time. Sets the Service state to "Failure".
Paul Stewart03dba0b2011-08-22 16:32:45 -0700237 virtual void SetFailure(ConnectFailure failure);
mukesh agrawal568b5c62012-02-28 14:44:47 -0800238 // Records the failure mode and time. Sets the Service state to "Idle".
239 // Avoids showing a failure mole in the UI.
240 virtual void SetFailureSilent(ConnectFailure failure);
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700241
Darin Petkovba40dd32011-07-11 20:06:39 -0700242 // Returns a string that is guaranteed to uniquely identify this Service
243 // instance.
Darin Petkov457728b2013-01-09 09:49:08 +0100244 const std::string &unique_name() const { return unique_name_; }
Darin Petkovafa6fc42011-06-21 16:21:08 -0700245
Chris Masone6791a432011-07-12 13:23:19 -0700246 virtual std::string GetRpcIdentifier() const;
Chris Masone3c3f6a12011-07-01 10:01:41 -0700247
Darin Petkovba40dd32011-07-11 20:06:39 -0700248 // Returns the unique persistent storage identifier for the service.
Chris Masone6515aab2011-10-12 16:19:09 -0700249 virtual std::string GetStorageIdentifier() const = 0;
Darin Petkovba40dd32011-07-11 20:06:39 -0700250
Paul Stewarte7de2942013-04-25 17:07:31 -0700251 // Returns the identifier within |storage| from which configuration for
252 // this service can be loaded. Returns an empty string if no entry in
253 // |storage| can be used.
254 virtual std::string GetLoadableStorageIdentifier(
255 const StoreInterface &storage) const;
256
Paul Stewartbba6a5b2011-11-02 18:45:59 -0700257 // Returns whether the service configuration can be loaded from |storage|.
Paul Stewarte7de2942013-04-25 17:07:31 -0700258 virtual bool IsLoadableFrom(const StoreInterface &storage) const;
Paul Stewartbba6a5b2011-11-02 18:45:59 -0700259
Paul Stewart81426132012-05-16 10:05:10 -0700260 // Returns true if the service uses 802.1x for key management.
Paul Stewartbe9abfd2013-04-22 12:18:48 -0700261 virtual bool Is8021x() const { return false; }
Paul Stewart81426132012-05-16 10:05:10 -0700262
Darin Petkovba40dd32011-07-11 20:06:39 -0700263 // Loads the service from persistent |storage|. Returns true on success.
Chris Masone9d779932011-08-25 16:33:41 -0700264 virtual bool Load(StoreInterface *storage);
Darin Petkovba40dd32011-07-11 20:06:39 -0700265
Paul Stewarta41e38d2011-11-11 07:47:29 -0800266 // Indicate to service that it is no longer persisted to storage. It
Paul Stewart65512e12012-03-26 18:01:08 -0700267 // should purge any stored profile state (e.g., credentials). Returns
268 // true to indicate that this service should also be unregistered from
269 // the manager, false otherwise.
270 virtual bool Unload();
Paul Stewarta41e38d2011-11-11 07:47:29 -0800271
Albert Chaulk0e1cdea2013-02-27 15:32:55 -0800272 // Attempt to remove the service. On failure, no changes in state will occur.
273 virtual void Remove(Error *error);
274
Darin Petkovba40dd32011-07-11 20:06:39 -0700275 // Saves the service to persistent |storage|. Returns true on success.
Chris Masone9d779932011-08-25 16:33:41 -0700276 virtual bool Save(StoreInterface *storage);
Darin Petkovba40dd32011-07-11 20:06:39 -0700277
Thieu Led4e9e552012-02-16 16:26:07 -0800278 // Saves the service to the current profile.
Gary Moraind93615e2012-04-27 11:50:03 -0700279 virtual void SaveToCurrentProfile();
Thieu Led4e9e552012-02-16 16:26:07 -0800280
Paul Stewartcb59fed2012-03-21 21:14:46 -0700281 // Applies all the properties in |args| to this service object's mutable
282 // store, except for those in parameters_ignored_for_configure_.
283 // Returns an error in |error| if one or more parameter set attempts
284 // fails, but will only return the first error.
285 virtual void Configure(const KeyValueStore &args, Error *error);
286
Paul Stewart7a20aa42013-01-17 12:21:41 -0800287 // Iterate over all the properties in |args| and test for an identical
288 // value in this service object's store. Returns false if one or more
289 // keys in |args| do not exist or have different values, true otherwise.
290 virtual bool DoPropertiesMatch(const KeyValueStore &args) const;
291
Paul Stewartd215af62012-04-24 23:25:50 -0700292 // Returns whether portal detection is explicitly disabled on this service
293 // via a property set on it.
294 virtual bool IsPortalDetectionDisabled() const;
295
296 // Returns whether portal detection is set to follow the default setting
297 // of this service's technology via a property set on it.
298 virtual bool IsPortalDetectionAuto() const;
299
Paul Stewart10ccbb32012-04-26 15:59:30 -0700300 // Returns true if the service is persisted to a non-ephemeral profile.
301 virtual bool IsRemembered() const;
302
Paul Stewarta41e38d2011-11-11 07:47:29 -0800303 // Returns true if the service RPC identifier should be part of the
304 // manager's advertised services list, false otherwise.
305 virtual bool IsVisible() const { return true; }
306
Paul Stewart20088d82012-02-16 06:58:55 -0800307 // Returns true if there is a proxy configuration set on this service.
308 virtual bool HasProxyConfig() const { return !proxy_config_.empty(); }
309
Paul Stewarta47c3c62012-12-18 12:14:29 -0800310 // Returns whether this service has had recent connection issues.
311 virtual bool HasRecentConnectionIssues();
312
Paul Stewart2da34c02013-10-17 15:28:56 -0700313 // If the AutoConnect property has not already been marked as saved, set
314 // its value to true and mark it saved.
315 virtual void EnableAndRetainAutoConnect();
mukesh agrawal00917ce2011-11-22 23:56:55 +0000316
Darin Petkov5eb05422012-05-11 15:45:25 +0200317 // Set the connection for this service. If the connection is non-NULL, create
318 // an HTTP Proxy that will utilize this service's connection to serve
319 // requests.
320 virtual void SetConnection(const ConnectionRefPtr &connection);
321 virtual const ConnectionRefPtr &connection() const { return connection_; }
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800322
Peter Qiua89154b2014-05-23 15:45:42 -0700323 // Emit service's IP config change event to chrome.
324 virtual void NotifyIPConfigChanges();
325
Gaurav Shah10109f22011-11-11 20:16:22 -0800326 // Examines the EAP credentials for the service and returns true if a
327 // connection attempt can be made.
Paul Stewart9413bcc2013-04-04 16:12:43 -0700328 virtual bool Is8021xConnectable() const;
Gaurav Shah10109f22011-11-11 20:16:22 -0800329
Paul Stewartbc6e7392012-05-24 07:07:48 -0700330 // Add an EAP certification id |name| at position |depth| in the stack.
331 // Returns true if entry was added, false otherwise.
332 virtual bool AddEAPCertification(const std::string &name, size_t depth);
333 // Clear all EAP certification elements.
Paul Stewart9413bcc2013-04-04 16:12:43 -0700334 virtual void ClearEAPCertification();
Paul Stewartbc6e7392012-05-24 07:07:48 -0700335
Paul Stewart316acef2014-05-29 18:40:48 -0700336 // Returns true if this service contains a IP address in its static IP
337 // parameters, false otherwise.
338 virtual bool HasStaticIPAddress() const;
339
Thieu Le48e6d6d2011-12-06 00:40:27 +0000340 // The inherited class that needs to send metrics after the service has
Thieu Leb84ba342012-03-02 15:15:19 -0800341 // transitioned to the ready state should override this method.
342 // |time_resume_to_ready_milliseconds| holds the elapsed time from when
343 // the system was resumed until when the service transitioned to the
344 // connected state. This value is non-zero for the first service transition
345 // to the connected state after a resume.
346 virtual void SendPostReadyStateMetrics(
Ben Chan7fab8972014-08-10 17:14:46 -0700347 int64_t /*time_resume_to_ready_milliseconds*/) const {}
Thieu Le48e6d6d2011-12-06 00:40:27 +0000348
Darin Petkovafa6fc42011-06-21 16:21:08 -0700349 bool auto_connect() const { return auto_connect_; }
mukesh agrawalcbfb34e2013-04-17 19:33:25 -0700350 void SetAutoConnect(bool connect);
Paul Stewart75897df2011-04-27 09:05:53 -0700351
Gaurav Shah435de2c2011-11-17 19:01:07 -0800352 bool connectable() const { return connectable_; }
mukesh agrawalcbfb34e2013-04-17 19:33:25 -0700353 // Sets the connectable property of the service, and broadcast the
354 // new value. Does not update the manager.
355 // TODO(petkov): Remove this method in favor of SetConnectableFull.
Darin Petkovb2ba39f2012-06-06 10:33:43 +0200356 void SetConnectable(bool connectable);
mukesh agrawalcbfb34e2013-04-17 19:33:25 -0700357 // Sets the connectable property of the service, broadcasts the new
358 // value, and alerts the manager if necessary.
359 void SetConnectableFull(bool connectable);
Gaurav Shah435de2c2011-11-17 19:01:07 -0800360
Thieu Le67370f62012-02-14 23:01:42 +0000361 virtual bool explicitly_disconnected() const {
362 return explicitly_disconnected_;
363 }
364
Paul Stewart2da34c02013-10-17 15:28:56 -0700365 bool retain_auto_connect() const { return retain_auto_connect_; }
366 // Setter is deliberately omitted; use EnableAndRetainAutoConnect.
Paul Stewart22aa71b2011-09-16 12:15:11 -0700367
Darin Petkov7f060332012-03-14 11:46:47 +0100368 void set_friendly_name(const std::string &n) { friendly_name_ = n; }
Darin Petkov9c6e9812013-03-26 13:49:07 +0100369 const std::string &friendly_name() const { return friendly_name_; }
Ben Chan923a5022013-09-20 11:23:23 -0700370 // Sets the kNameProperty and broadcasts the change.
mukesh agrawalcbfb34e2013-04-17 19:33:25 -0700371 void SetFriendlyName(const std::string &friendly_name);
mukesh agrawal15908392011-11-16 18:29:25 +0000372
Paul Stewart4c561612012-03-21 12:49:01 -0700373 const std::string &guid() const { return guid_; }
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700374 bool SetGuid(const std::string &guid, Error *error);
Paul Stewart4c561612012-03-21 12:49:01 -0700375
mukesh agrawalcf24a242012-05-21 16:46:11 -0700376 bool has_ever_connected() const { return has_ever_connected_; }
Rebecca Silbersteine99f6642014-07-09 14:04:31 -0700377 // Sets the has_ever_connected_ property of the service
378 // and broadcasts the new value
379 void SetHasEverConnected(bool has_ever_connected);
mukesh agrawalcf24a242012-05-21 16:46:11 -0700380
Ben Chan7fab8972014-08-10 17:14:46 -0700381 int32_t priority() const { return priority_; }
382 bool SetPriority(const int32_t &priority, Error *error);
Paul Stewart22aa71b2011-09-16 12:15:11 -0700383
mukesh agrawal43970a22013-02-15 16:00:07 -0800384 size_t crypto_algorithm() const { return crypto_algorithm_; }
385 bool key_rotation() const { return key_rotation_; }
386 bool endpoint_auth() const { return endpoint_auth_; }
Paul Stewart22aa71b2011-09-16 12:15:11 -0700387
Ben Chan7fab8972014-08-10 17:14:46 -0700388 void SetStrength(uint8_t strength);
mukesh agrawale1d90e92012-02-15 17:36:08 -0800389
Ben Chan7fab8972014-08-10 17:14:46 -0700390 // uint8_t streams out as a char. Coerce to a larger type, so that
mukesh agrawale1d90e92012-02-15 17:36:08 -0800391 // it prints as a number.
Ben Chan7fab8972014-08-10 17:14:46 -0700392 uint16_t strength() const { return strength_; }
Paul Stewart22aa71b2011-09-16 12:15:11 -0700393
Gaurav Shah435de2c2011-11-17 19:01:07 -0800394 virtual Technology::Identifier technology() const { return technology_; }
Darin Petkov58f0b6d2012-06-12 12:52:30 +0200395 std::string GetTechnologyString() const;
Gaurav Shah435de2c2011-11-17 19:01:07 -0800396
Paul Stewart35eff132013-04-12 12:08:40 -0700397 virtual const EapCredentials *eap() const { return eap_.get(); }
Paul Stewartc43cbbe2013-04-11 06:29:30 -0700398 void SetEapCredentials(EapCredentials *eap);
Gaurav Shah10109f22011-11-11 20:16:22 -0800399
Darin Petkovcb715292012-04-25 13:04:37 +0200400 bool save_credentials() const { return save_credentials_; }
401 void set_save_credentials(bool save) { save_credentials_ = save; }
402
Darin Petkov51489002011-08-18 13:13:20 -0700403 const std::string &error() const { return error_; }
404 void set_error(const std::string &error) { error_ = error; }
405
Darin Petkovaba89322013-03-11 14:48:22 +0100406 const std::string &error_details() const { return error_details_; }
407 void SetErrorDetails(const std::string &details);
408
Gaurav Shahc6d6c722011-11-17 18:59:39 -0800409 static const char *ConnectFailureToString(const ConnectFailure &state);
410 static const char *ConnectStateToString(const ConnectState &state);
411
Paul Stewart39db5ca2013-03-18 14:15:17 -0700412 // Compare two services. Returns true if Service |a| should be displayed
413 // above |b|. If |compare_connectivity_state| is true, the connectivity
414 // state of the service (service->state()) is used as the most significant
415 // criteria for comparsion, otherwise the service state is ignored. Use
416 // |tech_order| to rank services if more decisive criteria do not yield a
417 // difference. |reason| is populated with the exact criteria used for the
418 // ultimate comparison.
Rebecca Silberstein6d4836b2014-07-16 14:28:28 -0700419 static bool Compare(Manager *manager,
420 ServiceRefPtr a,
Paul Stewart22aa71b2011-09-16 12:15:11 -0700421 ServiceRefPtr b,
Paul Stewart39db5ca2013-03-18 14:15:17 -0700422 bool compare_connectivity_state,
mukesh agrawalddc378f2012-02-17 18:26:20 -0800423 const std::vector<Technology::Identifier> &tech_order,
424 const char **reason);
Paul Stewart22aa71b2011-09-16 12:15:11 -0700425
Chris Masone34af2182011-08-22 11:59:36 -0700426 // These are defined in service.cc so that we don't have to include profile.h
Chris Masone9d779932011-08-25 16:33:41 -0700427 // TODO(cmasone): right now, these are here only so that we can get the
428 // profile name as a property. Can we store just the name, and then handle
429 // setting the profile for this service via |manager_|?
Chris Masone6791a432011-07-12 13:23:19 -0700430 const ProfileRefPtr &profile() const;
Philipp Neubeck79173602012-11-13 21:10:09 +0100431
432 // Sets the profile property of this service. Broadcasts the new value if it's
Ben Chancc225ef2014-09-30 13:26:51 -0700433 // not nullptr. If the new value is nullptr, the service will either be set to
Philipp Neubeck79173602012-11-13 21:10:09 +0100434 // another profile afterwards or it will not be visible and not monitored
435 // anymore.
436 void SetProfile(const ProfileRefPtr &p);
437
438 // This is called from tests and shouldn't be called otherwise. Use SetProfile
439 // instead.
Chris Masone6791a432011-07-12 13:23:19 -0700440 void set_profile(const ProfileRefPtr &p);
441
Paul Stewart4357f4e2012-04-26 17:39:26 -0700442 // Notification that occurs when a service now has profile data saved
443 // on its behalf. Some service types like WiFi can choose to register
444 // themselves at this point.
445 virtual void OnProfileConfigured() {}
446
Paul Stewartff14b022012-04-24 20:06:23 -0700447 // Notification that occurs when a single property has been changed via
448 // the RPC adaptor.
Paul Stewart81426132012-05-16 10:05:10 -0700449 virtual void OnPropertyChanged(const std::string &property);
Paul Stewartff14b022012-04-24 20:06:23 -0700450
Paul Stewartc43cbbe2013-04-11 06:29:30 -0700451 // Notification that occurs when an EAP credential property has been
452 // changed. Some service subclasses can choose to respond to this
453 // event.
Rebecca Silberstein57776902014-09-15 21:43:02 -0700454 virtual void OnEapCredentialsChanged(UpdateCredentialsReason reason) {}
Paul Stewartc43cbbe2013-04-11 06:29:30 -0700455
Christopher Wiley0801d192012-09-24 11:57:15 -0700456 // Called by the manager once after a resume.
457 virtual void OnAfterResume();
458
Prathmesh Prabhu64ad2382014-08-26 11:19:30 -0700459 // Called by the manager once when entering dark resume.
460 virtual void OnDarkResume();
461
Paul Stewart2eee6132014-05-09 13:33:26 -0700462 // Called by the manager to clear remembered state of being explicitly
463 // disconnected.
464 virtual void ClearExplicitlyDisconnected();
465
Paul Stewartc43cbbe2013-04-11 06:29:30 -0700466 EapCredentials *mutable_eap() { return eap_.get(); }
467
mukesh agrawalde29fa82011-09-16 16:16:36 -0700468 PropertyStore *mutable_store() { return &store_; }
469 const PropertyStore &store() const { return store_; }
Paul Stewartdef189e2012-08-02 20:12:09 -0700470 StaticIPParameters *mutable_static_ip_parameters() {
471 return &static_ip_parameters_;
472 }
Paul Stewart1062d9d2012-04-27 10:42:27 -0700473 const StaticIPParameters &static_ip_parameters() const {
474 return static_ip_parameters_;
475 }
Chris Masone27c4aa52011-07-02 13:10:14 -0700476
Paul Stewartc3dbff12013-07-17 10:32:48 -0700477 // Retrieves |key| from |id| in |storage| to |value|. If this key does
478 // not exist, assign |default_value| to |value|.
479 static void LoadString(StoreInterface *storage,
480 const std::string &id,
481 const std::string &key,
482 const std::string &default_value,
483 std::string *value);
484
Paul Stewartc43cbbe2013-04-11 06:29:30 -0700485 // Assigns |value| to |key| in |storage| if |value| is non-empty and |save| is
486 // true. Otherwise, removes |key| from |storage|. If |crypted| is true, the
487 // value is encrypted.
488 static void SaveString(StoreInterface *storage,
489 const std::string &id,
490 const std::string &key,
491 const std::string &value,
492 bool crypted,
493 bool save);
494
Paul Stewart967eaeb2013-04-25 19:53:07 -0700495 // Called via RPC to get a dict containing profile-to-entry_name mappings
496 // of all the profile entires which contain configuration applicable to
497 // this service.
498 std::map<std::string, std::string> GetLoadableProfileEntries();
499
Peter Qiu9d581932014-04-14 16:37:37 -0700500 void set_connection_id(int connection_id) { connection_id_ = connection_id; }
501 int connection_id() const { return connection_id_; }
502
mukesh agrawalb54601c2011-06-07 17:39:22 -0700503 protected:
Darin Petkov5eb05422012-05-11 15:45:25 +0200504 friend class base::RefCounted<Service>;
505
mukesh agrawal03c15ce2012-11-29 17:36:21 -0800506 static const char kAutoConnBusy[];
507
Darin Petkov5eb05422012-05-11 15:45:25 +0200508 virtual ~Service();
509
Chris Masone34af2182011-08-22 11:59:36 -0700510 // Returns true if a character is allowed to be in a service storage id.
511 static bool LegalChar(char a) { return isalnum(a) || a == '_'; }
512
Darin Petkov31332412012-01-28 01:50:02 +0100513 // Returns true if a character is disallowed to be in a service storage id.
514 static bool IllegalChar(char a) { return !LegalChar(a); }
515
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800516 virtual std::string CalculateState(Error *error);
Darin Petkov58f0b6d2012-06-12 12:52:30 +0200517 std::string CalculateTechnology(Error *error);
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700518
Paul Stewartcca85b12014-05-30 13:56:35 -0700519 bool GetVisibleProperty(Error *error);
520
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000521 // Returns whether this service is in a state conducive to auto-connect.
522 // This should include any tests used for computing connectable(),
523 // as well as other critera such as whether the device associated with
524 // this service is busy with another connection.
mukesh agrawalbf14e942012-03-02 14:36:34 -0800525 //
526 // If the service is not auto-connectable, |*reason| will be set to
527 // point to C-string explaining why the service is not auto-connectable.
528 virtual bool IsAutoConnectable(const char **reason) const;
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000529
mukesh agrawal292dc0f2012-01-26 18:02:46 -0800530 // HelpRegisterDerived*: Expose a property over RPC, with the name |name|.
531 //
532 // Reads of the property will be handled by invoking |get|.
533 // Writes to the property will be handled by invoking |set|.
534 // Clearing the property will be handled by PropertyStore.
mukesh agrawalffa3d042011-10-06 15:26:10 -0700535 void HelpRegisterDerivedBool(
536 const std::string &name,
Hristo Stefanoved2c28c2011-11-29 15:37:30 -0800537 bool(Service::*get)(Error *error),
Paul Stewart43d8dc02013-10-17 10:32:53 -0700538 bool(Service::*set)(const bool &value, Error *error),
539 void(Service::*clear)(Error *error));
mukesh agrawalcbfb34e2013-04-17 19:33:25 -0700540 void HelpRegisterDerivedInt32(
541 const std::string &name,
Ben Chan7fab8972014-08-10 17:14:46 -0700542 int32_t(Service::*get)(Error *error),
543 bool(Service::*set)(const int32_t &value, Error *error));
mukesh agrawalffa3d042011-10-06 15:26:10 -0700544 void HelpRegisterDerivedString(
545 const std::string &name,
Hristo Stefanoved2c28c2011-11-29 15:37:30 -0800546 std::string(Service::*get)(Error *error),
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700547 bool(Service::*set)(const std::string &value, Error *error));
548 void HelpRegisterConstDerivedUint16(
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800549 const std::string &name,
Ben Chan7fab8972014-08-10 17:14:46 -0700550 uint16_t(Service::*get)(Error *error) const);
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700551 void HelpRegisterConstDerivedRpcIdentifier(
Jason Glasgowacdc11f2012-03-30 14:12:22 -0400552 const std::string &name,
Paul Stewart1cf7eb82013-12-03 19:34:36 -0800553 std::string(Service::*get)(Error *) const);
Darin Petkov0c65bdd2012-12-05 13:42:41 +0100554 void HelpRegisterConstDerivedStrings(
Paul Stewart1cf7eb82013-12-03 19:34:36 -0800555 const std::string &name, Strings(Service::*get)(Error *error) const);
556 void HelpRegisterConstDerivedString(
557 const std::string &name, std::string(Service::*get)(Error *error) const);
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700558
Paul Stewart45170bc2014-06-02 15:49:34 -0700559 // HelpRegisterObservedDerived*: Expose an property over RPC, with the
560 // name |name|, for which property changes are automatically generated.
561 //
562 void HelpRegisterObservedDerivedBool(
563 const std::string &name,
564 bool(Service::*get)(Error *error),
565 bool(Service::*set)(const bool &value, Error *error),
566 void(Service::*clear)(Error *error));
Darin Petkovb72cf402011-11-22 14:51:39 +0100567 ServiceAdaptorInterface *adaptor() const { return adaptor_.get(); }
568
Paul Stewartd8ad3c42012-01-09 12:39:38 -0800569 void UnloadEapCredentials();
Darin Petkovba40dd32011-07-11 20:06:39 -0700570
Paul Stewartcb59fed2012-03-21 21:14:46 -0700571 // Ignore |parameter| when performing a Configure() operation.
572 void IgnoreParameterForConfigure(const std::string &parameter);
573
Paul Stewartf2d60912012-07-15 08:37:30 -0700574 // Update the service's string-based "Error" RPC property based on the
575 // failure_ enum.
576 void UpdateErrorProperty();
577
mukesh agrawalcbfb34e2013-04-17 19:33:25 -0700578 // RPC setter for the the "AutoConnect" property. Updates the |manager_|.
579 // (cf. SetAutoConnect, which does not update the manager.)
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700580 virtual bool SetAutoConnectFull(const bool &connect, Error *error);
Paul Stewartcf199de2012-08-16 07:50:41 -0700581
Paul Stewart43d8dc02013-10-17 10:32:53 -0700582 // RPC clear method for the "AutoConnect" property. Sets the AutoConnect
Paul Stewart2da34c02013-10-17 15:28:56 -0700583 // property back to its default value, and clears the retain_auto_connect_
584 // property to allow the AutoConnect property to be enabled automatically.
Paul Stewart43d8dc02013-10-17 10:32:53 -0700585 void ClearAutoConnect(Error *error);
586
Paul Stewartac4ac002011-08-26 12:04:26 -0700587 // Property accessors reserved for subclasses
588 EventDispatcher *dispatcher() const { return dispatcher_; }
589 const std::string &GetEAPKeyManagement() const;
mukesh agrawal43970a22013-02-15 16:00:07 -0800590 virtual void SetEAPKeyManagement(const std::string &key_management);
Paul Stewart65512e12012-03-26 18:01:08 -0700591 Manager *manager() const { return manager_; }
Thieu Le48e6d6d2011-12-06 00:40:27 +0000592 Metrics *metrics() const { return metrics_; }
mukesh agrawalb54601c2011-06-07 17:39:22 -0700593
Paul Stewart2da34c02013-10-17 15:28:56 -0700594 // Save the serivce's auto_connect value, without affecting its auto_connect
595 // property itself. (cf. EnableAndRetainAutoConnect)
596 void RetainAutoConnect();
597
mukesh agrawal43970a22013-02-15 16:00:07 -0800598 // Inform base class of the security properties for the service.
599 //
600 // NB: When adding a call to this function from a subclass, please check
601 // that the semantics of SecurityLevel() are appropriate for the subclass.
602 void SetSecurity(CryptoAlgorithm crypt, bool rotation, bool endpoint_auth);
Darin Petkov1d0080a2012-04-30 17:10:36 +0200603
Paul Stewartfa11e282013-12-02 22:04:25 -0800604 // Return whether this service is suspected or confirmed to be
605 // provided by a mobile device, which is likely to be using a
606 // metered backhaul for internet connectivity.
607 virtual std::string GetTethering(Error *error) const;
608
Paul Stewart45170bc2014-06-02 15:49:34 -0700609 // Emit property change notifications for all observed properties.
610 void NotifyPropertyChanges();
Paul Stewart7cc90682014-05-30 17:01:56 -0700611
Paul Stewart75897df2011-04-27 09:05:53 -0700612 private:
Thieu Le43ce4d42013-10-04 16:08:55 -0700613 friend class ActivePassiveOutOfCreditsDetectorTest;
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700614 friend class EthernetEapServiceTest;
Paul Stewartcf199de2012-08-16 07:50:41 -0700615 friend class EthernetServiceTest;
Thieu Le48e6d6d2011-12-06 00:40:27 +0000616 friend class MetricsTest;
Paul Stewart9dd253e2013-04-22 08:32:59 -0700617 friend class ManagerTest;
Paul Stewart0756db92012-01-27 08:34:47 -0800618 friend class ServiceAdaptorInterface;
Darin Petkov385b9bc2012-12-03 15:25:05 +0100619 friend class ServiceTest;
Thieu Le43ce4d42013-10-04 16:08:55 -0700620 friend class SubscriptionStateOutOfCreditsDetectorTest;
Darin Petkov457728b2013-01-09 09:49:08 +0100621 friend class VPNProviderTest;
Darin Petkov5eb05422012-05-11 15:45:25 +0200622 friend class VPNServiceTest;
mukesh agrawale1d90e92012-02-15 17:36:08 -0800623 friend class WiFiServiceTest;
Darin Petkov457728b2013-01-09 09:49:08 +0100624 friend class WiMaxProviderTest;
Darin Petkov6b9b2e12012-07-10 15:51:42 +0200625 friend class WiMaxServiceTest;
mukesh agrawalcbfb34e2013-04-17 19:33:25 -0700626 friend void TestCommonPropertyChanges(ServiceRefPtr, ServiceMockAdaptor *);
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700627 friend void TestCustomSetterNoopChange(ServiceRefPtr, MockManager *);
mukesh agrawalcbfb34e2013-04-17 19:33:25 -0700628 friend void TestNamePropertyChange(ServiceRefPtr, ServiceMockAdaptor *);
Christopher Wiley0801d192012-09-24 11:57:15 -0700629 FRIEND_TEST(AllMockServiceTest, AutoConnectWithFailures);
Darin Petkov457728b2013-01-09 09:49:08 +0100630 FRIEND_TEST(CellularCapabilityGSMTest, SetStorageIdentifier);
Ben Chan19f83972012-10-03 23:25:56 -0700631 FRIEND_TEST(CellularServiceTest, IsAutoConnectable);
mukesh agrawalcc0fded2012-05-09 13:40:58 -0700632 FRIEND_TEST(DeviceTest, IPConfigUpdatedFailureWithStatic);
Paul Stewart39db5ca2013-03-18 14:15:17 -0700633 FRIEND_TEST(ManagerTest, ConnectToBestServices);
mukesh agrawal03c15ce2012-11-29 17:36:21 -0800634 FRIEND_TEST(ServiceTest, AutoConnectLogging);
Darin Petkov58f0b6d2012-06-12 12:52:30 +0200635 FRIEND_TEST(ServiceTest, CalculateState);
636 FRIEND_TEST(ServiceTest, CalculateTechnology);
Paul Stewartbc6e7392012-05-24 07:07:48 -0700637 FRIEND_TEST(ServiceTest, Certification);
Paul Stewart22ce7652014-10-15 21:26:44 -0700638 FRIEND_TEST(ServiceTest, Compare);
Paul Stewartc43cbbe2013-04-11 06:29:30 -0700639 FRIEND_TEST(ServiceTest, ConfigureEapStringProperty);
Paul Stewartcb59fed2012-03-21 21:14:46 -0700640 FRIEND_TEST(ServiceTest, ConfigureIgnoredProperty);
Darin Petkovba40dd32011-07-11 20:06:39 -0700641 FRIEND_TEST(ServiceTest, Constructor);
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700642 FRIEND_TEST(ServiceTest, CustomSetterNoopChange);
Paul Stewart10241e32012-04-23 18:15:06 -0700643 FRIEND_TEST(ServiceTest, GetIPConfigRpcIdentifier);
Thieu Le284fe792012-01-31 17:53:19 -0800644 FRIEND_TEST(ServiceTest, GetProperties);
Paul Stewartfa11e282013-12-02 22:04:25 -0800645 FRIEND_TEST(ServiceTest, GetTethering);
mukesh agrawal76d13882012-01-12 15:23:11 -0800646 FRIEND_TEST(ServiceTest, IsAutoConnectable);
Paul Stewartdf3c0a82012-11-09 15:54:33 -0800647 FRIEND_TEST(ServiceTest, IsDependentOn);
Paul Stewartc3dbff12013-07-17 10:32:48 -0700648 FRIEND_TEST(ServiceTest, Load);
Peter Qiu9b83c892014-08-09 23:06:02 -0700649 FRIEND_TEST(ServiceTest, PortalDetectionFailure);
Paul Stewartd215af62012-04-24 23:25:50 -0700650 FRIEND_TEST(ServiceTest, RecheckPortal);
Darin Petkovba40dd32011-07-11 20:06:39 -0700651 FRIEND_TEST(ServiceTest, Save);
652 FRIEND_TEST(ServiceTest, SaveString);
653 FRIEND_TEST(ServiceTest, SaveStringCrypted);
654 FRIEND_TEST(ServiceTest, SaveStringDontSave);
655 FRIEND_TEST(ServiceTest, SaveStringEmpty);
mukesh agrawal43970a22013-02-15 16:00:07 -0800656 FRIEND_TEST(ServiceTest, SecurityLevel);
Paul Stewartd215af62012-04-24 23:25:50 -0700657 FRIEND_TEST(ServiceTest, SetCheckPortal);
mukesh agrawalcbfb34e2013-04-17 19:33:25 -0700658 FRIEND_TEST(ServiceTest, SetConnectableFull);
Arman Uguray2717a102013-01-29 23:36:06 -0800659 FRIEND_TEST(ServiceTest, SetFriendlyName);
660 FRIEND_TEST(ServiceTest, SetProperty);
mukesh agrawal568b5c62012-02-28 14:44:47 -0800661 FRIEND_TEST(ServiceTest, State);
Thieu Leaf471412013-06-27 14:12:37 -0700662 FRIEND_TEST(ServiceTest, StateResetAfterFailure);
mukesh agrawale37ad322013-10-08 16:33:56 -0700663 FRIEND_TEST(ServiceTest, UniqueAttributes);
Paul Stewartd8ad3c42012-01-09 12:39:38 -0800664 FRIEND_TEST(ServiceTest, Unload);
Peter Qiudc4e0992014-05-01 10:02:52 -0700665 FRIEND_TEST(ServiceTest, UserInitiatedConnectionResult);
Rebecca Silbersteine99f6642014-07-09 14:04:31 -0700666 FRIEND_TEST(WiFiServiceTest, SetPassphraseResetHasEverConnected);
Paul Stewartbca08f82013-07-09 16:32:37 -0700667 FRIEND_TEST(WiFiServiceTest, SuspectedCredentialFailure);
Rebecca Silbersteinb6df8b12014-07-10 16:07:08 -0700668 FRIEND_TEST(WiFiServiceTest, SetPassphraseRemovesCachedCredentials);
Rebecca Silberstein57776902014-09-15 21:43:02 -0700669 FRIEND_TEST(WiFiServiceTest, LoadPassphraseClearCredentials);
Christopher Wiley0801d192012-09-24 11:57:15 -0700670 FRIEND_TEST(WiFiTimerTest, ReconnectTimer);
Paul Stewart11c224b2013-10-22 19:04:40 -0700671 FRIEND_TEST(WiFiMainTest, EAPEvent); // For eap_.
Rebecca Silbersteinb6df8b12014-07-10 16:07:08 -0700672 FRIEND_TEST(WiMaxServiceTest, ChangeCredResetHasEverConnected);
673 FRIEND_TEST(EthernetEapServiceTest, OnEapCredentialsChanged);
Darin Petkovba40dd32011-07-11 20:06:39 -0700674
mukesh agrawalbf14e942012-03-02 14:36:34 -0800675 static const char kAutoConnConnected[];
676 static const char kAutoConnConnecting[];
677 static const char kAutoConnExplicitDisconnect[];
678 static const char kAutoConnNotConnectable[];
Darin Petkov4cbff5b2013-01-29 16:29:05 +0100679 static const char kAutoConnOffline[];
Ben Chan8e6b8ef2014-07-14 21:50:18 -0700680 static const char kAutoConnTechnologyNotConnectable[];
Christopher Wiley0801d192012-09-24 11:57:15 -0700681 static const char kAutoConnThrottled[];
mukesh agrawalbf14e942012-03-02 14:36:34 -0800682
Paul Stewartbc6e7392012-05-24 07:07:48 -0700683 static const size_t kEAPMaxCertificationElements;
684
Darin Petkov2f903b32012-04-18 12:56:43 +0200685 static const char kServiceSortAutoConnect[];
686 static const char kServiceSortConnectable[];
Paul Stewart2da34c02013-10-17 15:28:56 -0700687 static const char kServiceSortHasEverConnected[];
mukesh agrawalddc378f2012-02-17 18:26:20 -0800688 static const char kServiceSortIsConnected[];
Paul Stewartdf3c0a82012-11-09 15:54:33 -0800689 static const char kServiceSortDependency[];
mukesh agrawalddc378f2012-02-17 18:26:20 -0800690 static const char kServiceSortIsConnecting[];
691 static const char kServiceSortIsFailed[];
Paul Stewarta121c442012-06-09 14:12:58 -0700692 static const char kServiceSortIsPortalled[];
Darin Petkov2f903b32012-04-18 12:56:43 +0200693 static const char kServiceSortPriority[];
Rebecca Silberstein6d4836b2014-07-16 14:28:28 -0700694 static const char kServiceSortSecurity[];
695 static const char kServiceSortProfileOrder[];
696 static const char kServiceSortEtc[];
mukesh agrawale37ad322013-10-08 16:33:56 -0700697 static const char kServiceSortSerialNumber[];
Darin Petkov2f903b32012-04-18 12:56:43 +0200698 static const char kServiceSortTechnology[];
mukesh agrawalddc378f2012-02-17 18:26:20 -0800699
Ben Chan7fab8972014-08-10 17:14:46 -0700700 static const uint64_t kMaxAutoConnectCooldownTimeMilliseconds;
701 static const uint64_t kMinAutoConnectCooldownTimeMilliseconds;
702 static const uint64_t kAutoConnectCooldownBackoffFactor;
Christopher Wiley0801d192012-09-24 11:57:15 -0700703
Darin Petkov385b9bc2012-12-03 15:25:05 +0100704 static const int kDisconnectsMonitorSeconds;
705 static const int kMisconnectsMonitorSeconds;
706 static const int kReportDisconnectsThreshold;
707 static const int kReportMisconnectsThreshold;
708 static const int kMaxDisconnectEventHistory;
709
Thieu Le284fe792012-01-31 17:53:19 -0800710 bool GetAutoConnect(Error *error);
Thieu Le284fe792012-01-31 17:53:19 -0800711
Paul Stewartd215af62012-04-24 23:25:50 -0700712 std::string GetCheckPortal(Error *error);
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700713 bool SetCheckPortal(const std::string &check_portal, Error *error);
Paul Stewartd215af62012-04-24 23:25:50 -0700714
mukesh agrawalcbfb34e2013-04-17 19:33:25 -0700715 std::string GetGuid(Error *error);
716
Paul Stewart1cf7eb82013-12-03 19:34:36 -0800717 virtual std::string GetDeviceRpcId(Error *error) const = 0;
Chris Masone95207da2011-06-29 16:50:49 -0700718
Paul Stewart1cf7eb82013-12-03 19:34:36 -0800719 std::string GetIPConfigRpcIdentifier(Error *error) const;
Paul Stewart10241e32012-04-23 18:15:06 -0700720
mukesh agrawalcbfb34e2013-04-17 19:33:25 -0700721 std::string GetNameProperty(Error *error);
Darin Petkov9c6e9812013-03-26 13:49:07 +0100722 // The base implementation asserts that |name| matches the current Name
723 // property value.
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700724 virtual bool SetNameProperty(const std::string &name, Error *error);
mukesh agrawalcbfb34e2013-04-17 19:33:25 -0700725
Ben Chan7fab8972014-08-10 17:14:46 -0700726 int32_t GetPriority(Error *error);
Paul Stewart0c438332012-04-11 07:55:27 -0700727
Paul Stewart1b1a7f22012-01-06 16:24:06 -0800728 std::string GetProfileRpcId(Error *error);
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700729 bool SetProfileRpcId(const std::string &profile, Error *error);
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700730
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800731 // Returns TCP port of service's HTTP proxy in host order.
Ben Chan7fab8972014-08-10 17:14:46 -0700732 uint16_t GetHTTPProxyPort(Error *error) const;
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800733
Philipp Neubeck79173602012-11-13 21:10:09 +0100734 std::string GetProxyConfig(Error *error);
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700735 bool SetProxyConfig(const std::string &proxy_config, Error *error);
Philipp Neubeck79173602012-11-13 21:10:09 +0100736
Darin Petkov0c65bdd2012-12-05 13:42:41 +0100737 static Strings ExtractWallClockToStrings(
738 const std::deque<Timestamp> &timestamps);
Paul Stewart1cf7eb82013-12-03 19:34:36 -0800739 Strings GetDisconnectsProperty(Error *error) const;
740 Strings GetMisconnectsProperty(Error *error) const;
Darin Petkov0c65bdd2012-12-05 13:42:41 +0100741
Christopher Wiley0801d192012-09-24 11:57:15 -0700742 void ReEnableAutoConnectTask();
743 // Disables autoconnect and posts a task to re-enable it after a cooldown.
744 // Note that autoconnect could be disabled for other reasons as well.
745 void ThrottleFutureAutoConnects();
746
mukesh agrawalcf24a242012-05-21 16:46:11 -0700747 // Saves settings to profile, if we have one. Unlike
748 // SaveServiceToProfile, SaveToProfile never assigns this service
749 // into a profile.
750 void SaveToProfile();
751
Paul Stewart483e4722012-12-18 10:23:17 -0800752 // Start at the head of |events| and remove all entries that occurred
753 // more than |seconds_ago| prior to |now|. Also, the size of |events|
754 // is unconditionally trimmed below kMaxDisconnectEventHistory.
755 static void ExpireEventsBefore(
756 int seconds_ago, const Timestamp &now, std::deque<Timestamp> *events);
757
758 // Qualify the conditions under which the most recent disconnect occurred.
759 // Make note ot the fact that there was a problem connecting / staying
760 // connected if the disconnection did not occur as a clear result of user
761 // action.
Darin Petkov385b9bc2012-12-03 15:25:05 +0100762 void NoteDisconnectEvent();
763
Paul Stewart22aa71b2011-09-16 12:15:11 -0700764 // Utility function that returns true if a is different from b. When they
765 // are, "decision" is populated with the boolean value of "a > b".
766 static bool DecideBetween(int a, int b, bool *decision);
767
Peter Qiudc4e0992014-05-01 10:02:52 -0700768 // Report the result of user-initiated connection attempt to UMA stats.
769 // Currently only report stats for wifi service.
770 void ReportUserInitiatedConnectionResult(ConnectState state);
771
mukesh agrawal43970a22013-02-15 16:00:07 -0800772 // Linearize security parameters (crypto algorithm, key rotation, endpoint
773 // authentication) for comparison.
Ben Chan7fab8972014-08-10 17:14:46 -0700774 uint16_t SecurityLevel();
mukesh agrawal43970a22013-02-15 16:00:07 -0800775
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700776 // WeakPtrFactory comes first, so that other fields can use it.
777 base::WeakPtrFactory<Service> weak_ptr_factory_;
778
Paul Stewartac4ac002011-08-26 12:04:26 -0700779 ConnectState state_;
Darin Petkovc8d91e52013-01-21 11:43:47 +0100780 ConnectState previous_state_;
Paul Stewartac4ac002011-08-26 12:04:26 -0700781 ConnectFailure failure_;
782 bool auto_connect_;
Paul Stewart2da34c02013-10-17 15:28:56 -0700783
784 // Denotes whether the value of auto_connect_ property value should be
785 // retained, i.e. only be allowed to change via explicit property changes
786 // from the UI.
787 bool retain_auto_connect_;
788
Paul Stewartac4ac002011-08-26 12:04:26 -0700789 std::string check_portal_;
790 bool connectable_;
791 std::string error_;
Darin Petkovaba89322013-03-11 14:48:22 +0100792 std::string error_details_;
Paul Stewartd7c09a52014-02-19 12:50:29 -0800793 std::string previous_error_;
Ben Chan7fab8972014-08-10 17:14:46 -0700794 int32_t previous_error_serial_number_;
mukesh agrawaladb68482012-01-17 16:31:51 -0800795 bool explicitly_disconnected_;
Peter Qiudc4e0992014-05-01 10:02:52 -0700796 bool is_in_user_connect_;
Ben Chan7fab8972014-08-10 17:14:46 -0700797 int32_t priority_;
798 uint8_t crypto_algorithm_;
mukesh agrawal43970a22013-02-15 16:00:07 -0800799 bool key_rotation_;
800 bool endpoint_auth_;
Peter Qiu9b83c892014-08-09 23:06:02 -0700801 std::string portal_detection_failure_phase_;
802 std::string portal_detection_failure_status_;
mukesh agrawal43970a22013-02-15 16:00:07 -0800803
Ben Chan7fab8972014-08-10 17:14:46 -0700804 uint8_t strength_;
Paul Stewartac4ac002011-08-26 12:04:26 -0700805 std::string proxy_config_;
Paul Stewart987e71e2011-12-05 09:45:06 -0800806 std::string ui_data_;
Paul Stewart4c561612012-03-21 12:49:01 -0700807 std::string guid_;
Paul Stewartac4ac002011-08-26 12:04:26 -0700808 bool save_credentials_;
Ben Chancd477322014-10-17 14:19:30 -0700809 std::unique_ptr<EapCredentials> eap_;
Gaurav Shah435de2c2011-11-17 19:01:07 -0800810 Technology::Identifier technology_;
mukesh agrawal568b5c62012-02-28 14:44:47 -0800811 // The time of the most recent failure. Value is 0 if the service is
812 // not currently failed.
813 time_t failed_time_;
mukesh agrawalcf24a242012-05-21 16:46:11 -0700814 // Whether or not this service has ever reached kStateConnected.
815 bool has_ever_connected_;
Paul Stewartac4ac002011-08-26 12:04:26 -0700816
Darin Petkov0c65bdd2012-12-05 13:42:41 +0100817 std::deque<Timestamp> disconnects_; // Connection drops.
818 std::deque<Timestamp> misconnects_; // Failures to connect.
Darin Petkov385b9bc2012-12-03 15:25:05 +0100819
Christopher Wiley0801d192012-09-24 11:57:15 -0700820 base::CancelableClosure reenable_auto_connect_task_;
Ben Chan7fab8972014-08-10 17:14:46 -0700821 uint64_t auto_connect_cooldown_milliseconds_;
Christopher Wiley0801d192012-09-24 11:57:15 -0700822
Paul Stewartac4ac002011-08-26 12:04:26 -0700823 ProfileRefPtr profile_;
824 PropertyStore store_;
Paul Stewartcb59fed2012-03-21 21:14:46 -0700825 std::set<std::string> parameters_ignored_for_configure_;
Paul Stewartac4ac002011-08-26 12:04:26 -0700826
827 EventDispatcher *dispatcher_;
mukesh agrawale37ad322013-10-08 16:33:56 -0700828 unsigned int serial_number_;
mukesh agrawald835b202011-10-07 15:26:47 -0700829 std::string unique_name_; // MUST be unique amongst service instances
Darin Petkov457728b2013-01-09 09:49:08 +0100830
831 // Service's friendly name is presented through the UI. By default it's the
832 // same as |unique_name_| but normally Service subclasses override
833 // it. WARNING: Don't log the friendly name at the default logging level due
834 // to PII concerns.
835 std::string friendly_name_;
836
Paul Stewartc43cbbe2013-04-11 06:29:30 -0700837 // List of subject names reported by remote entity during TLS setup.
838 std::vector<std::string> remote_certification_;
839
Ben Chancd477322014-10-17 14:19:30 -0700840 std::unique_ptr<ServiceAdaptorInterface> adaptor_;
841 std::unique_ptr<ServicePropertyChangeNotifier> property_change_notifier_;
842 std::unique_ptr<HTTPProxy> http_proxy_;
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800843 ConnectionRefPtr connection_;
Paul Stewart1062d9d2012-04-27 10:42:27 -0700844 StaticIPParameters static_ip_parameters_;
Thieu Le3426c8f2012-01-11 17:35:11 -0800845 Metrics *metrics_;
Chris Masone6791a432011-07-12 13:23:19 -0700846 Manager *manager_;
Ben Chancd477322014-10-17 14:19:30 -0700847 std::unique_ptr<Sockets> sockets_;
Darin Petkov385b9bc2012-12-03 15:25:05 +0100848 Time *time_;
849 DiagnosticsReporter *diagnostics_reporter_;
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700850
mukesh agrawale37ad322013-10-08 16:33:56 -0700851 // The |serial_number_| for the next Service.
852 static unsigned int next_serial_number_;
853
Peter Qiu9d581932014-04-14 16:37:37 -0700854 // Network identifier indicating the network (gateway) the service is
855 // connected to.
856 int connection_id_;
Peter Qiua89154b2014-05-23 15:45:42 -0700857 // When set to true, this service will automatically fallback to Google's DNS
858 // servers if the portal detection failed due to DNS failure and Google's DNS
859 // servers are working.
860 bool is_dns_auto_fallback_allowed_;
Peter Qiud49760e2014-09-19 16:13:42 -0700861 // When set to true, will not start link monitor when the connection to this
862 // service is established.
863 bool link_monitor_disabled_;
Paul Stewart3fee7e32014-10-15 21:39:29 -0700864 // When set to true, the credentials for this service will be considered
865 // valid, and will not require an initial connection to rank it highly for
866 // auto-connect.
867 bool managed_credentials_;
Peter Qiu9d581932014-04-14 16:37:37 -0700868
mukesh agrawalb54601c2011-06-07 17:39:22 -0700869 DISALLOW_COPY_AND_ASSIGN(Service);
Paul Stewart75897df2011-04-27 09:05:53 -0700870};
871
872} // namespace shill
873
Ben Chan19f83972012-10-03 23:25:56 -0700874#endif // SHILL_SERVICE_H_