Arman Uguray | 2717a10 | 2013-01-29 23:36:06 -0800 | [diff] [blame] | 1 | // Copyright (c) 2013 The Chromium OS Authors. All rights reserved. |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -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 | |
Ben Chan | 19f8397 | 2012-10-03 23:25:56 -0700 | [diff] [blame] | 5 | #ifndef SHILL_SERVICE_H_ |
| 6 | #define SHILL_SERVICE_H_ |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 7 | |
mukesh agrawal | 568b5c6 | 2012-02-28 14:44:47 -0800 | [diff] [blame] | 8 | #include <time.h> |
| 9 | |
Darin Petkov | 385b9bc | 2012-12-03 15:25:05 +0100 | [diff] [blame] | 10 | #include <deque> |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 11 | #include <map> |
Paul Stewart | cb59fed | 2012-03-21 21:14:46 -0700 | [diff] [blame] | 12 | #include <set> |
Darin Petkov | 385b9bc | 2012-12-03 15:25:05 +0100 | [diff] [blame] | 13 | #include <string> |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 14 | #include <vector> |
Chris Masone | 9be4a9d | 2011-05-16 15:44:09 -0700 | [diff] [blame] | 15 | |
Christopher Wiley | 0801d19 | 2012-09-24 11:57:15 -0700 | [diff] [blame] | 16 | #include <base/cancelable_callback.h> |
Chris Masone | 9be4a9d | 2011-05-16 15:44:09 -0700 | [diff] [blame] | 17 | #include <base/memory/ref_counted.h> |
Paul Stewart | ba41b99 | 2011-05-26 07:02:46 -0700 | [diff] [blame] | 18 | #include <base/memory/scoped_ptr.h> |
Christopher Wiley | 0801d19 | 2012-09-24 11:57:15 -0700 | [diff] [blame] | 19 | #include <base/memory/weak_ptr.h> |
Darin Petkov | ba40dd3 | 2011-07-11 20:06:39 -0700 | [diff] [blame] | 20 | #include <gtest/gtest_prod.h> // for FRIEND_TEST |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 21 | |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 22 | #include "shill/adaptor_interfaces.h" |
Chris Masone | 3bd3c8c | 2011-06-13 08:20:26 -0700 | [diff] [blame] | 23 | #include "shill/accessor_interface.h" |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 24 | #include "shill/callbacks.h" |
Chris Masone | b925cc8 | 2011-06-22 15:39:57 -0700 | [diff] [blame] | 25 | #include "shill/property_store.h" |
Chris Masone | 7aa5f90 | 2011-07-11 11:13:35 -0700 | [diff] [blame] | 26 | #include "shill/refptr_types.h" |
Darin Petkov | 0c65bdd | 2012-12-05 13:42:41 +0100 | [diff] [blame] | 27 | #include "shill/shill_time.h" |
Paul Stewart | 1062d9d | 2012-04-27 10:42:27 -0700 | [diff] [blame] | 28 | #include "shill/static_ip_parameters.h" |
Paul Stewart | 22aa71b | 2011-09-16 12:15:11 -0700 | [diff] [blame] | 29 | #include "shill/technology.h" |
Chris Masone | c1e5041 | 2011-06-07 13:04:53 -0700 | [diff] [blame] | 30 | |
Thieu Le | b84ba34 | 2012-03-02 15:15:19 -0800 | [diff] [blame] | 31 | namespace chromeos_metrics { |
| 32 | class Timer; |
| 33 | } |
| 34 | |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 35 | namespace shill { |
| 36 | |
Chris Masone | 9be4a9d | 2011-05-16 15:44:09 -0700 | [diff] [blame] | 37 | class ControlInterface; |
Darin Petkov | 385b9bc | 2012-12-03 15:25:05 +0100 | [diff] [blame] | 38 | class DiagnosticsReporter; |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 39 | class Endpoint; |
Chris Masone | 8fe2c7e | 2011-06-09 15:51:19 -0700 | [diff] [blame] | 40 | class Error; |
Chris Masone | 9be4a9d | 2011-05-16 15:44:09 -0700 | [diff] [blame] | 41 | class EventDispatcher; |
Paul Stewart | be5f5b3 | 2011-12-07 17:11:11 -0800 | [diff] [blame] | 42 | class HTTPProxy; |
mukesh agrawal | 7a4e400 | 2011-09-06 11:26:05 -0700 | [diff] [blame] | 43 | class KeyValueStore; |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 44 | class Manager; |
Thieu Le | 48e6d6d | 2011-12-06 00:40:27 +0000 | [diff] [blame] | 45 | class Metrics; |
Chris Masone | 9be4a9d | 2011-05-16 15:44:09 -0700 | [diff] [blame] | 46 | class ServiceAdaptorInterface; |
Darin Petkov | 5eb0542 | 2012-05-11 15:45:25 +0200 | [diff] [blame] | 47 | class Sockets; |
Darin Petkov | ba40dd3 | 2011-07-11 20:06:39 -0700 | [diff] [blame] | 48 | class StoreInterface; |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 49 | |
Chris Masone | 7aa5f90 | 2011-07-11 11:13:35 -0700 | [diff] [blame] | 50 | // A Service is a uniquely named entity, which the system can |
| 51 | // connect in order to begin sending and receiving network traffic. |
| 52 | // All Services are bound to an Entry, which represents the persistable |
| 53 | // state of the Service. If the Entry is populated at the time of Service |
| 54 | // creation, that information is used to prime the Service. If not, the Entry |
| 55 | // becomes populated over time. |
Chris Masone | 27c4aa5 | 2011-07-02 13:10:14 -0700 | [diff] [blame] | 56 | class Service : public base::RefCounted<Service> { |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 57 | public: |
Darin Petkov | ba40dd3 | 2011-07-11 20:06:39 -0700 | [diff] [blame] | 58 | static const char kCheckPortalAuto[]; |
| 59 | static const char kCheckPortalFalse[]; |
| 60 | static const char kCheckPortalTrue[]; |
| 61 | |
Darin Petkov | aba8932 | 2013-03-11 14:48:22 +0100 | [diff] [blame] | 62 | static const char kErrorDetailsNone[]; |
| 63 | |
Paul Stewart | 0756db9 | 2012-01-27 08:34:47 -0800 | [diff] [blame] | 64 | // TODO(pstew): Storage constants shouldn't need to be public |
| 65 | // crosbug.com/25813 |
| 66 | static const char kStorageAutoConnect[]; |
| 67 | static const char kStorageCheckPortal[]; |
| 68 | static const char kStorageEapAnonymousIdentity[]; |
| 69 | static const char kStorageEapCACert[]; |
| 70 | static const char kStorageEapCACertID[]; |
Paul Stewart | ecf4cd1 | 2012-04-17 11:08:39 -0700 | [diff] [blame] | 71 | static const char kStorageEapCACertNSS[]; |
Paul Stewart | 5baebb7 | 2013-03-14 11:43:29 -0700 | [diff] [blame] | 72 | static const char kStorageEapCACertPEM[]; |
Paul Stewart | 0756db9 | 2012-01-27 08:34:47 -0800 | [diff] [blame] | 73 | static const char kStorageEapCertID[]; |
| 74 | static const char kStorageEapClientCert[]; |
| 75 | static const char kStorageEapEap[]; |
| 76 | static const char kStorageEapIdentity[]; |
| 77 | static const char kStorageEapInnerEap[]; |
| 78 | static const char kStorageEapKeyID[]; |
| 79 | static const char kStorageEapKeyManagement[]; |
| 80 | static const char kStorageEapPIN[]; |
| 81 | static const char kStorageEapPassword[]; |
| 82 | static const char kStorageEapPrivateKey[]; |
| 83 | static const char kStorageEapPrivateKeyPassword[]; |
| 84 | static const char kStorageEapUseSystemCAs[]; |
| 85 | static const char kStorageError[]; |
| 86 | static const char kStorageFavorite[]; |
| 87 | static const char kStorageGUID[]; |
mukesh agrawal | cf24a24 | 2012-05-21 16:46:11 -0700 | [diff] [blame] | 88 | static const char kStorageHasEverConnected[]; |
Paul Stewart | 0756db9 | 2012-01-27 08:34:47 -0800 | [diff] [blame] | 89 | static const char kStorageName[]; |
| 90 | static const char kStoragePriority[]; |
| 91 | static const char kStorageProxyConfig[]; |
| 92 | static const char kStorageSaveCredentials[]; |
| 93 | static const char kStorageType[]; |
| 94 | static const char kStorageUIData[]; |
| 95 | |
mukesh agrawal | 8f3f775 | 2012-02-17 19:42:09 -0800 | [diff] [blame] | 96 | static const uint8 kStrengthMax; |
| 97 | static const uint8 kStrengthMin; |
| 98 | |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 99 | enum ConnectFailure { |
Paul Stewart | 03dba0b | 2011-08-22 16:32:45 -0700 | [diff] [blame] | 100 | kFailureUnknown, |
Paul Stewart | f2d6091 | 2012-07-15 08:37:30 -0700 | [diff] [blame] | 101 | kFailureAAA, |
Darin Petkov | 1c049c7 | 2013-03-21 13:15:45 +0100 | [diff] [blame] | 102 | kFailureActivation, |
| 103 | kFailureBadPassphrase, |
Paul Stewart | f2d6091 | 2012-07-15 08:37:30 -0700 | [diff] [blame] | 104 | kFailureBadWEPKey, |
| 105 | kFailureConnect, |
Darin Petkov | 1c049c7 | 2013-03-21 13:15:45 +0100 | [diff] [blame] | 106 | kFailureDHCP, |
Paul Stewart | f2d6091 | 2012-07-15 08:37:30 -0700 | [diff] [blame] | 107 | kFailureDNSLookup, |
Paul Stewart | db0f917 | 2012-11-30 16:48:09 -0800 | [diff] [blame] | 108 | kFailureEAPAuthentication, |
| 109 | kFailureEAPLocalTLS, |
| 110 | kFailureEAPRemoteTLS, |
Darin Petkov | 1c049c7 | 2013-03-21 13:15:45 +0100 | [diff] [blame] | 111 | kFailureHTTPGet, |
| 112 | kFailureIPSecCertAuth, |
| 113 | kFailureIPSecPSKAuth, |
| 114 | kFailureInternal, |
| 115 | kFailureNeedEVDO, |
| 116 | kFailureNeedHomeNetwork, |
| 117 | kFailureOTASP, |
| 118 | kFailureOutOfRange, |
| 119 | kFailurePPPAuth, |
| 120 | kFailurePinMissing, |
Thieu Le | 48e6d6d | 2011-12-06 00:40:27 +0000 | [diff] [blame] | 121 | kFailureMax |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 122 | }; |
Chris Masone | 9be4a9d | 2011-05-16 15:44:09 -0700 | [diff] [blame] | 123 | enum ConnectState { |
Paul Stewart | 03dba0b | 2011-08-22 16:32:45 -0700 | [diff] [blame] | 124 | kStateUnknown, |
| 125 | kStateIdle, |
| 126 | kStateAssociating, |
| 127 | kStateConfiguring, |
| 128 | kStateConnected, |
| 129 | kStateDisconnected, |
Thieu Le | 48e6d6d | 2011-12-06 00:40:27 +0000 | [diff] [blame] | 130 | kStatePortal, |
Gaurav Shah | c6d6c72 | 2011-11-17 18:59:39 -0800 | [diff] [blame] | 131 | kStateFailure, |
| 132 | kStateOnline |
Chris Masone | 9be4a9d | 2011-05-16 15:44:09 -0700 | [diff] [blame] | 133 | }; |
mukesh agrawal | 43970a2 | 2013-02-15 16:00:07 -0800 | [diff] [blame] | 134 | enum CryptoAlgorithm { |
| 135 | kCryptoNone, |
| 136 | kCryptoRc4, |
| 137 | kCryptoAes |
| 138 | }; |
Dave Parker | 074bad6 | 2013-03-27 13:17:27 -0700 | [diff] [blame^] | 139 | struct EapCredentials { |
| 140 | EapCredentials() : use_system_cas(true) {} |
| 141 | // Who we identify ourselves as to the EAP authenticator. |
| 142 | std::string identity; |
| 143 | // The outer or only EAP authetnication type. |
| 144 | std::string eap; |
| 145 | // The inner EAP authentication type. |
| 146 | std::string inner_eap; |
| 147 | // When there is an inner EAP type, use this identity for the outer. |
| 148 | std::string anonymous_identity; |
| 149 | // Filename of the client certificate. |
| 150 | std::string client_cert; |
| 151 | // Locator for the client certificate within the security token. |
| 152 | std::string cert_id; |
| 153 | // Filename of the client private key. |
| 154 | std::string private_key; |
| 155 | // Password for decrypting the client private key file. |
| 156 | std::string private_key_password; |
| 157 | // Locator for the client private key within the security token. |
| 158 | std::string key_id; |
| 159 | // Filename of the certificate authority (CA) certificate. |
| 160 | std::string ca_cert; |
| 161 | // Locator for the CA certificate within the security token. |
| 162 | std::string ca_cert_id; |
| 163 | // Locator for the CA certificate within the user NSS database. |
| 164 | std::string ca_cert_nss; |
| 165 | // Raw PEM contents of the CA certificate. |
| 166 | std::string ca_cert_pem; |
| 167 | // If true, use the system-wide CA database to authenticate the remote. |
| 168 | bool use_system_cas; |
| 169 | // PIN code for accessing the security token. |
| 170 | std::string pin; |
| 171 | // Password to use for EAP methods which require one. |
| 172 | std::string password; |
| 173 | // Key management algorithm to use after EAP succeeds. |
| 174 | std::string key_management; |
| 175 | // If non-empty, string to match remote subject against before connecting. |
| 176 | std::string subject_match; |
| 177 | // List of subject names reported by remote entity during TLS setup. |
| 178 | std::vector<std::string> remote_certification; |
| 179 | }; |
Chris Masone | 9be4a9d | 2011-05-16 15:44:09 -0700 | [diff] [blame] | 180 | |
Paul Stewart | ac4ac00 | 2011-08-26 12:04:26 -0700 | [diff] [blame] | 181 | static const int kPriorityNone; |
| 182 | |
Chris Masone | 9be4a9d | 2011-05-16 15:44:09 -0700 | [diff] [blame] | 183 | // A constructor for the Service object |
| 184 | Service(ControlInterface *control_interface, |
| 185 | EventDispatcher *dispatcher, |
Thieu Le | 3426c8f | 2012-01-11 17:35:11 -0800 | [diff] [blame] | 186 | Metrics *metrics, |
mukesh agrawal | 7a4e400 | 2011-09-06 11:26:05 -0700 | [diff] [blame] | 187 | Manager *manager, |
Gaurav Shah | 435de2c | 2011-11-17 19:01:07 -0800 | [diff] [blame] | 188 | Technology::Identifier technology); |
Darin Petkov | ba40dd3 | 2011-07-11 20:06:39 -0700 | [diff] [blame] | 189 | |
mukesh agrawal | 8a3188d | 2011-12-01 20:56:44 +0000 | [diff] [blame] | 190 | // AutoConnect MAY choose to ignore the connection request in some |
| 191 | // cases. For example, if the corresponding Device only supports one |
| 192 | // concurrent connection, and another Service is already connected |
| 193 | // or connecting. |
| 194 | // |
| 195 | // AutoConnect MAY issue RPCs immediately. So AutoConnect MUST NOT |
| 196 | // be called from a D-Bus signal handler context. |
| 197 | virtual void AutoConnect(); |
| 198 | // Queue up a connection attempt. |
mukesh agrawal | adb6848 | 2012-01-17 16:31:51 -0800 | [diff] [blame] | 199 | virtual void Connect(Error *error); |
Christopher Wiley | abd3b50 | 2012-09-26 13:08:52 -0700 | [diff] [blame] | 200 | // Disconnect this service. Override this method to add your service specific |
| 201 | // disconnect logic, but call the super class's Disconnect() first. |
mukesh agrawal | adb6848 | 2012-01-17 16:31:51 -0800 | [diff] [blame] | 202 | virtual void Disconnect(Error *error); |
Christopher Wiley | abd3b50 | 2012-09-26 13:08:52 -0700 | [diff] [blame] | 203 | // Disconnects this service via Disconnect(). Marks the service as having |
| 204 | // failed with |failure|. Do not override this method. |
| 205 | virtual void DisconnectWithFailure(ConnectFailure failure, Error *error); |
| 206 | // Disconnects this service via Disconnect(). The service will not be eligible |
| 207 | // for auto-connect until a subsequent call to Connect, or Load. Do not |
| 208 | // override this method. |
| 209 | virtual void UserInitiatedDisconnect(Error *error); |
Chris Masone | a82b711 | 2011-05-25 15:16:29 -0700 | [diff] [blame] | 210 | |
Eric Shienbrood | 5de44ab | 2011-12-05 10:46:27 -0500 | [diff] [blame] | 211 | // The default implementation returns the error kInvalidArguments. |
| 212 | virtual void ActivateCellularModem(const std::string &carrier, |
Eric Shienbrood | 9a24553 | 2012-03-07 14:20:39 -0500 | [diff] [blame] | 213 | Error *error, |
| 214 | const ResultCallback &callback); |
Ben Chan | 5d92454 | 2013-02-14 17:49:08 -0800 | [diff] [blame] | 215 | // The default implementation returns the error kNotSupported. |
| 216 | virtual void CompleteCellularActivation(Error *error); |
Darin Petkov | c408e69 | 2011-08-17 13:47:15 -0700 | [diff] [blame] | 217 | |
Gaurav Shah | 1b7a616 | 2011-11-09 11:41:01 -0800 | [diff] [blame] | 218 | virtual bool IsActive(Error *error); |
Paul Stewart | 03dba0b | 2011-08-22 16:32:45 -0700 | [diff] [blame] | 219 | |
Paul Stewart | 7fb0938 | 2012-07-18 17:32:27 -0700 | [diff] [blame] | 220 | // Returns whether services of this type should be auto-connect by default. |
| 221 | virtual bool IsAutoConnectByDefault() const { return false; } |
| 222 | |
Paul Stewart | 03dba0b | 2011-08-22 16:32:45 -0700 | [diff] [blame] | 223 | virtual ConnectState state() const { return state_; } |
| 224 | // Updates the state of the Service and alerts the manager. Also |
| 225 | // clears |failure_| if the new state isn't a failure. |
| 226 | virtual void SetState(ConnectState state); |
Darin Petkov | 58f0b6d | 2012-06-12 12:52:30 +0200 | [diff] [blame] | 227 | std::string GetStateString() const; |
Paul Stewart | 03dba0b | 2011-08-22 16:32:45 -0700 | [diff] [blame] | 228 | |
Paul Stewart | 22aa71b | 2011-09-16 12:15:11 -0700 | [diff] [blame] | 229 | // State utility functions |
Darin Petkov | c8d91e5 | 2013-01-21 11:43:47 +0100 | [diff] [blame] | 230 | static bool IsConnectedState(ConnectState state); |
| 231 | static bool IsConnectingState(ConnectState state); |
| 232 | |
| 233 | virtual bool IsConnected() const; |
| 234 | virtual bool IsConnecting() const; |
mukesh agrawal | 8a3188d | 2011-12-01 20:56:44 +0000 | [diff] [blame] | 235 | virtual bool IsFailed() const { |
mukesh agrawal | 568b5c6 | 2012-02-28 14:44:47 -0800 | [diff] [blame] | 236 | // We sometimes lie about the failure state, to keep Chrome happy |
| 237 | // (see comment in WiFi::HandleDisconnect). Hence, we check both |
| 238 | // state and |failed_time_|. |
| 239 | return state() == kStateFailure || failed_time_ > 0; |
mukesh agrawal | 8a3188d | 2011-12-01 20:56:44 +0000 | [diff] [blame] | 240 | } |
Paul Stewart | df3c0a8 | 2012-11-09 15:54:33 -0800 | [diff] [blame] | 241 | |
| 242 | // Returns true if the connection for |this| depends on service |b|. |
| 243 | virtual bool IsDependentOn(const ServiceRefPtr &b) const; |
| 244 | |
Paul Stewart | a121c44 | 2012-06-09 14:12:58 -0700 | [diff] [blame] | 245 | virtual bool IsPortalled() const { |
| 246 | return state() == kStatePortal; |
| 247 | } |
Paul Stewart | 22aa71b | 2011-09-16 12:15:11 -0700 | [diff] [blame] | 248 | |
Paul Stewart | 03dba0b | 2011-08-22 16:32:45 -0700 | [diff] [blame] | 249 | virtual ConnectFailure failure() const { return failure_; } |
mukesh agrawal | 568b5c6 | 2012-02-28 14:44:47 -0800 | [diff] [blame] | 250 | // Records the failure mode and time. Sets the Service state to "Failure". |
Paul Stewart | 03dba0b | 2011-08-22 16:32:45 -0700 | [diff] [blame] | 251 | virtual void SetFailure(ConnectFailure failure); |
mukesh agrawal | 568b5c6 | 2012-02-28 14:44:47 -0800 | [diff] [blame] | 252 | // Records the failure mode and time. Sets the Service state to "Idle". |
| 253 | // Avoids showing a failure mole in the UI. |
| 254 | virtual void SetFailureSilent(ConnectFailure failure); |
Chris Masone | 3bd3c8c | 2011-06-13 08:20:26 -0700 | [diff] [blame] | 255 | |
Darin Petkov | ba40dd3 | 2011-07-11 20:06:39 -0700 | [diff] [blame] | 256 | // Returns a string that is guaranteed to uniquely identify this Service |
| 257 | // instance. |
Darin Petkov | 457728b | 2013-01-09 09:49:08 +0100 | [diff] [blame] | 258 | const std::string &unique_name() const { return unique_name_; } |
Darin Petkov | afa6fc4 | 2011-06-21 16:21:08 -0700 | [diff] [blame] | 259 | |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 260 | virtual std::string GetRpcIdentifier() const; |
Chris Masone | 3c3f6a1 | 2011-07-01 10:01:41 -0700 | [diff] [blame] | 261 | |
Darin Petkov | ba40dd3 | 2011-07-11 20:06:39 -0700 | [diff] [blame] | 262 | // Returns the unique persistent storage identifier for the service. |
Chris Masone | 6515aab | 2011-10-12 16:19:09 -0700 | [diff] [blame] | 263 | virtual std::string GetStorageIdentifier() const = 0; |
Darin Petkov | ba40dd3 | 2011-07-11 20:06:39 -0700 | [diff] [blame] | 264 | |
Paul Stewart | bba6a5b | 2011-11-02 18:45:59 -0700 | [diff] [blame] | 265 | // Returns whether the service configuration can be loaded from |storage|. |
| 266 | virtual bool IsLoadableFrom(StoreInterface *storage) const; |
| 267 | |
Paul Stewart | 8142613 | 2012-05-16 10:05:10 -0700 | [diff] [blame] | 268 | // Returns true if the service uses 802.1x for key management. |
| 269 | virtual bool Is8021x() const { return false; }; |
| 270 | |
Darin Petkov | ba40dd3 | 2011-07-11 20:06:39 -0700 | [diff] [blame] | 271 | // Loads the service from persistent |storage|. Returns true on success. |
Chris Masone | 9d77993 | 2011-08-25 16:33:41 -0700 | [diff] [blame] | 272 | virtual bool Load(StoreInterface *storage); |
Darin Petkov | ba40dd3 | 2011-07-11 20:06:39 -0700 | [diff] [blame] | 273 | |
Paul Stewart | a41e38d | 2011-11-11 07:47:29 -0800 | [diff] [blame] | 274 | // Indicate to service that it is no longer persisted to storage. It |
Paul Stewart | 65512e1 | 2012-03-26 18:01:08 -0700 | [diff] [blame] | 275 | // should purge any stored profile state (e.g., credentials). Returns |
| 276 | // true to indicate that this service should also be unregistered from |
| 277 | // the manager, false otherwise. |
| 278 | virtual bool Unload(); |
Paul Stewart | a41e38d | 2011-11-11 07:47:29 -0800 | [diff] [blame] | 279 | |
Albert Chaulk | 0e1cdea | 2013-02-27 15:32:55 -0800 | [diff] [blame] | 280 | // Attempt to remove the service. On failure, no changes in state will occur. |
| 281 | virtual void Remove(Error *error); |
| 282 | |
Darin Petkov | ba40dd3 | 2011-07-11 20:06:39 -0700 | [diff] [blame] | 283 | // Saves the service to persistent |storage|. Returns true on success. |
Chris Masone | 9d77993 | 2011-08-25 16:33:41 -0700 | [diff] [blame] | 284 | virtual bool Save(StoreInterface *storage); |
Darin Petkov | ba40dd3 | 2011-07-11 20:06:39 -0700 | [diff] [blame] | 285 | |
Thieu Le | d4e9e55 | 2012-02-16 16:26:07 -0800 | [diff] [blame] | 286 | // Saves the service to the current profile. |
Gary Morain | d93615e | 2012-04-27 11:50:03 -0700 | [diff] [blame] | 287 | virtual void SaveToCurrentProfile(); |
Thieu Le | d4e9e55 | 2012-02-16 16:26:07 -0800 | [diff] [blame] | 288 | |
Paul Stewart | cb59fed | 2012-03-21 21:14:46 -0700 | [diff] [blame] | 289 | // Applies all the properties in |args| to this service object's mutable |
| 290 | // store, except for those in parameters_ignored_for_configure_. |
| 291 | // Returns an error in |error| if one or more parameter set attempts |
| 292 | // fails, but will only return the first error. |
| 293 | virtual void Configure(const KeyValueStore &args, Error *error); |
| 294 | |
Paul Stewart | 7a20aa4 | 2013-01-17 12:21:41 -0800 | [diff] [blame] | 295 | // Iterate over all the properties in |args| and test for an identical |
| 296 | // value in this service object's store. Returns false if one or more |
| 297 | // keys in |args| do not exist or have different values, true otherwise. |
| 298 | virtual bool DoPropertiesMatch(const KeyValueStore &args) const; |
| 299 | |
Paul Stewart | d215af6 | 2012-04-24 23:25:50 -0700 | [diff] [blame] | 300 | // Returns whether portal detection is explicitly disabled on this service |
| 301 | // via a property set on it. |
| 302 | virtual bool IsPortalDetectionDisabled() const; |
| 303 | |
| 304 | // Returns whether portal detection is set to follow the default setting |
| 305 | // of this service's technology via a property set on it. |
| 306 | virtual bool IsPortalDetectionAuto() const; |
| 307 | |
Paul Stewart | 10ccbb3 | 2012-04-26 15:59:30 -0700 | [diff] [blame] | 308 | // Returns true if the service is persisted to a non-ephemeral profile. |
| 309 | virtual bool IsRemembered() const; |
| 310 | |
Paul Stewart | a41e38d | 2011-11-11 07:47:29 -0800 | [diff] [blame] | 311 | // Returns true if the service RPC identifier should be part of the |
| 312 | // manager's advertised services list, false otherwise. |
| 313 | virtual bool IsVisible() const { return true; } |
| 314 | |
Paul Stewart | 20088d8 | 2012-02-16 06:58:55 -0800 | [diff] [blame] | 315 | // Returns true if there is a proxy configuration set on this service. |
| 316 | virtual bool HasProxyConfig() const { return !proxy_config_.empty(); } |
| 317 | |
Paul Stewart | a47c3c6 | 2012-12-18 12:14:29 -0800 | [diff] [blame] | 318 | // Returns whether this service has had recent connection issues. |
| 319 | virtual bool HasRecentConnectionIssues(); |
| 320 | |
mukesh agrawal | 00917ce | 2011-11-22 23:56:55 +0000 | [diff] [blame] | 321 | virtual void MakeFavorite(); |
| 322 | |
Darin Petkov | 5eb0542 | 2012-05-11 15:45:25 +0200 | [diff] [blame] | 323 | // Set the connection for this service. If the connection is non-NULL, create |
| 324 | // an HTTP Proxy that will utilize this service's connection to serve |
| 325 | // requests. |
| 326 | virtual void SetConnection(const ConnectionRefPtr &connection); |
| 327 | virtual const ConnectionRefPtr &connection() const { return connection_; } |
Paul Stewart | be5f5b3 | 2011-12-07 17:11:11 -0800 | [diff] [blame] | 328 | |
Gaurav Shah | 10109f2 | 2011-11-11 20:16:22 -0800 | [diff] [blame] | 329 | // Examines the EAP credentials for the service and returns true if a |
| 330 | // connection attempt can be made. |
| 331 | bool Is8021xConnectable() const; |
| 332 | |
Paul Stewart | bc6e739 | 2012-05-24 07:07:48 -0700 | [diff] [blame] | 333 | // Add an EAP certification id |name| at position |depth| in the stack. |
| 334 | // Returns true if entry was added, false otherwise. |
| 335 | virtual bool AddEAPCertification(const std::string &name, size_t depth); |
| 336 | // Clear all EAP certification elements. |
| 337 | void ClearEAPCertification(); |
| 338 | |
Thieu Le | 48e6d6d | 2011-12-06 00:40:27 +0000 | [diff] [blame] | 339 | // The inherited class should register any custom metrics in this method. |
| 340 | virtual void InitializeCustomMetrics() const {} |
| 341 | |
| 342 | // The inherited class that needs to send metrics after the service has |
Thieu Le | b84ba34 | 2012-03-02 15:15:19 -0800 | [diff] [blame] | 343 | // transitioned to the ready state should override this method. |
| 344 | // |time_resume_to_ready_milliseconds| holds the elapsed time from when |
| 345 | // the system was resumed until when the service transitioned to the |
| 346 | // connected state. This value is non-zero for the first service transition |
| 347 | // to the connected state after a resume. |
| 348 | virtual void SendPostReadyStateMetrics( |
| 349 | int64 /*time_resume_to_ready_milliseconds*/) const {} |
Thieu Le | 48e6d6d | 2011-12-06 00:40:27 +0000 | [diff] [blame] | 350 | |
Darin Petkov | afa6fc4 | 2011-06-21 16:21:08 -0700 | [diff] [blame] | 351 | bool auto_connect() const { return auto_connect_; } |
| 352 | void set_auto_connect(bool connect) { auto_connect_ = connect; } |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 353 | |
Gaurav Shah | 435de2c | 2011-11-17 19:01:07 -0800 | [diff] [blame] | 354 | bool connectable() const { return connectable_; } |
Darin Petkov | b2ba39f | 2012-06-06 10:33:43 +0200 | [diff] [blame] | 355 | // TODO(petkov): Remove this method in favor of SetConnectable. |
mukesh agrawal | 29c13a1 | 2011-11-24 00:09:19 +0000 | [diff] [blame] | 356 | void set_connectable(bool connectable); |
Darin Petkov | b2ba39f | 2012-06-06 10:33:43 +0200 | [diff] [blame] | 357 | // Sets the connectable property of the service. Broadcasts the new value and |
| 358 | // alerts the manager if necessary. |
| 359 | void SetConnectable(bool connectable); |
Gaurav Shah | 435de2c | 2011-11-17 19:01:07 -0800 | [diff] [blame] | 360 | |
Thieu Le | 67370f6 | 2012-02-14 23:01:42 +0000 | [diff] [blame] | 361 | virtual bool explicitly_disconnected() const { |
| 362 | return explicitly_disconnected_; |
| 363 | } |
| 364 | |
Paul Stewart | 22aa71b | 2011-09-16 12:15:11 -0700 | [diff] [blame] | 365 | bool favorite() const { return favorite_; } |
mukesh agrawal | 00917ce | 2011-11-22 23:56:55 +0000 | [diff] [blame] | 366 | // Setter is deliberately omitted; use MakeFavorite. |
Paul Stewart | 22aa71b | 2011-09-16 12:15:11 -0700 | [diff] [blame] | 367 | |
Arman Uguray | 2717a10 | 2013-01-29 23:36:06 -0800 | [diff] [blame] | 368 | // Sets the flimflam::kNameProperty |
| 369 | void SetFriendlyName(const std::string &friendly_name); |
Darin Petkov | 7f06033 | 2012-03-14 11:46:47 +0100 | [diff] [blame] | 370 | void set_friendly_name(const std::string &n) { friendly_name_ = n; } |
mukesh agrawal | 1590839 | 2011-11-16 18:29:25 +0000 | [diff] [blame] | 371 | |
Paul Stewart | 4c56161 | 2012-03-21 12:49:01 -0700 | [diff] [blame] | 372 | const std::string &guid() const { return guid_; } |
| 373 | void set_guid(const std::string &guid) { guid_ = guid; } |
| 374 | |
mukesh agrawal | cf24a24 | 2012-05-21 16:46:11 -0700 | [diff] [blame] | 375 | bool has_ever_connected() const { return has_ever_connected_; } |
| 376 | |
Paul Stewart | 22aa71b | 2011-09-16 12:15:11 -0700 | [diff] [blame] | 377 | int32 priority() const { return priority_; } |
| 378 | void set_priority(int32 priority) { priority_ = priority; } |
| 379 | |
mukesh agrawal | 43970a2 | 2013-02-15 16:00:07 -0800 | [diff] [blame] | 380 | size_t crypto_algorithm() const { return crypto_algorithm_; } |
| 381 | bool key_rotation() const { return key_rotation_; } |
| 382 | bool endpoint_auth() const { return endpoint_auth_; } |
Paul Stewart | 22aa71b | 2011-09-16 12:15:11 -0700 | [diff] [blame] | 383 | |
Darin Petkov | d78ee7e | 2012-01-12 11:21:10 +0100 | [diff] [blame] | 384 | void SetStrength(uint8 strength); |
mukesh agrawal | e1d90e9 | 2012-02-15 17:36:08 -0800 | [diff] [blame] | 385 | |
| 386 | // uint8 streams out as a char. Coerce to a larger type, so that |
| 387 | // it prints as a number. |
| 388 | uint16 strength() const { return strength_; } |
Paul Stewart | 22aa71b | 2011-09-16 12:15:11 -0700 | [diff] [blame] | 389 | |
Gaurav Shah | 435de2c | 2011-11-17 19:01:07 -0800 | [diff] [blame] | 390 | virtual Technology::Identifier technology() const { return technology_; } |
Darin Petkov | 58f0b6d | 2012-06-12 12:52:30 +0200 | [diff] [blame] | 391 | std::string GetTechnologyString() const; |
Gaurav Shah | 435de2c | 2011-11-17 19:01:07 -0800 | [diff] [blame] | 392 | |
Gaurav Shah | 10109f2 | 2011-11-11 20:16:22 -0800 | [diff] [blame] | 393 | const EapCredentials &eap() const { return eap_; } |
| 394 | virtual void set_eap(const EapCredentials &eap); |
| 395 | |
Darin Petkov | cb71529 | 2012-04-25 13:04:37 +0200 | [diff] [blame] | 396 | bool save_credentials() const { return save_credentials_; } |
| 397 | void set_save_credentials(bool save) { save_credentials_ = save; } |
| 398 | |
Darin Petkov | 5148900 | 2011-08-18 13:13:20 -0700 | [diff] [blame] | 399 | const std::string &error() const { return error_; } |
| 400 | void set_error(const std::string &error) { error_ = error; } |
| 401 | |
Darin Petkov | aba8932 | 2013-03-11 14:48:22 +0100 | [diff] [blame] | 402 | const std::string &error_details() const { return error_details_; } |
| 403 | void SetErrorDetails(const std::string &details); |
| 404 | |
Gaurav Shah | c6d6c72 | 2011-11-17 18:59:39 -0800 | [diff] [blame] | 405 | static const char *ConnectFailureToString(const ConnectFailure &state); |
| 406 | static const char *ConnectStateToString(const ConnectState &state); |
| 407 | |
Paul Stewart | 39db5ca | 2013-03-18 14:15:17 -0700 | [diff] [blame] | 408 | // Compare two services. Returns true if Service |a| should be displayed |
| 409 | // above |b|. If |compare_connectivity_state| is true, the connectivity |
| 410 | // state of the service (service->state()) is used as the most significant |
| 411 | // criteria for comparsion, otherwise the service state is ignored. Use |
| 412 | // |tech_order| to rank services if more decisive criteria do not yield a |
| 413 | // difference. |reason| is populated with the exact criteria used for the |
| 414 | // ultimate comparison. |
Paul Stewart | 22aa71b | 2011-09-16 12:15:11 -0700 | [diff] [blame] | 415 | static bool Compare(ServiceRefPtr a, |
| 416 | ServiceRefPtr b, |
Paul Stewart | 39db5ca | 2013-03-18 14:15:17 -0700 | [diff] [blame] | 417 | bool compare_connectivity_state, |
mukesh agrawal | ddc378f | 2012-02-17 18:26:20 -0800 | [diff] [blame] | 418 | const std::vector<Technology::Identifier> &tech_order, |
| 419 | const char **reason); |
Paul Stewart | 22aa71b | 2011-09-16 12:15:11 -0700 | [diff] [blame] | 420 | |
Chris Masone | 34af218 | 2011-08-22 11:59:36 -0700 | [diff] [blame] | 421 | // These are defined in service.cc so that we don't have to include profile.h |
Chris Masone | 9d77993 | 2011-08-25 16:33:41 -0700 | [diff] [blame] | 422 | // TODO(cmasone): right now, these are here only so that we can get the |
| 423 | // profile name as a property. Can we store just the name, and then handle |
| 424 | // setting the profile for this service via |manager_|? |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 425 | const ProfileRefPtr &profile() const; |
Philipp Neubeck | 7917360 | 2012-11-13 21:10:09 +0100 | [diff] [blame] | 426 | |
| 427 | // Sets the profile property of this service. Broadcasts the new value if it's |
| 428 | // not NULL. If the new value is NULL, the service will either be set to |
| 429 | // another profile afterwards or it will not be visible and not monitored |
| 430 | // anymore. |
| 431 | void SetProfile(const ProfileRefPtr &p); |
| 432 | |
| 433 | // This is called from tests and shouldn't be called otherwise. Use SetProfile |
| 434 | // instead. |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 435 | void set_profile(const ProfileRefPtr &p); |
| 436 | |
Paul Stewart | 4357f4e | 2012-04-26 17:39:26 -0700 | [diff] [blame] | 437 | // Notification that occurs when a service now has profile data saved |
| 438 | // on its behalf. Some service types like WiFi can choose to register |
| 439 | // themselves at this point. |
| 440 | virtual void OnProfileConfigured() {} |
| 441 | |
Paul Stewart | ff14b02 | 2012-04-24 20:06:23 -0700 | [diff] [blame] | 442 | // Notification that occurs when a single property has been changed via |
| 443 | // the RPC adaptor. |
Paul Stewart | 8142613 | 2012-05-16 10:05:10 -0700 | [diff] [blame] | 444 | virtual void OnPropertyChanged(const std::string &property); |
Paul Stewart | ff14b02 | 2012-04-24 20:06:23 -0700 | [diff] [blame] | 445 | |
Christopher Wiley | 0801d19 | 2012-09-24 11:57:15 -0700 | [diff] [blame] | 446 | // Called by the manager once after a resume. |
| 447 | virtual void OnAfterResume(); |
| 448 | |
mukesh agrawal | de29fa8 | 2011-09-16 16:16:36 -0700 | [diff] [blame] | 449 | PropertyStore *mutable_store() { return &store_; } |
| 450 | const PropertyStore &store() const { return store_; } |
Paul Stewart | def189e | 2012-08-02 20:12:09 -0700 | [diff] [blame] | 451 | StaticIPParameters *mutable_static_ip_parameters() { |
| 452 | return &static_ip_parameters_; |
| 453 | } |
Paul Stewart | 1062d9d | 2012-04-27 10:42:27 -0700 | [diff] [blame] | 454 | const StaticIPParameters &static_ip_parameters() const { |
| 455 | return static_ip_parameters_; |
| 456 | } |
Chris Masone | 27c4aa5 | 2011-07-02 13:10:14 -0700 | [diff] [blame] | 457 | |
mukesh agrawal | b54601c | 2011-06-07 17:39:22 -0700 | [diff] [blame] | 458 | protected: |
Darin Petkov | 5eb0542 | 2012-05-11 15:45:25 +0200 | [diff] [blame] | 459 | friend class base::RefCounted<Service>; |
| 460 | |
mukesh agrawal | 03c15ce | 2012-11-29 17:36:21 -0800 | [diff] [blame] | 461 | static const char kAutoConnBusy[]; |
| 462 | |
Darin Petkov | 5eb0542 | 2012-05-11 15:45:25 +0200 | [diff] [blame] | 463 | virtual ~Service(); |
| 464 | |
Darin Petkov | 457728b | 2013-01-09 09:49:08 +0100 | [diff] [blame] | 465 | const std::string &friendly_name() const { return friendly_name_; } |
| 466 | |
Chris Masone | 34af218 | 2011-08-22 11:59:36 -0700 | [diff] [blame] | 467 | // Returns true if a character is allowed to be in a service storage id. |
| 468 | static bool LegalChar(char a) { return isalnum(a) || a == '_'; } |
| 469 | |
Darin Petkov | 3133241 | 2012-01-28 01:50:02 +0100 | [diff] [blame] | 470 | // Returns true if a character is disallowed to be in a service storage id. |
| 471 | static bool IllegalChar(char a) { return !LegalChar(a); } |
| 472 | |
Gaurav Shah | 1b7a616 | 2011-11-09 11:41:01 -0800 | [diff] [blame] | 473 | virtual std::string CalculateState(Error *error); |
Darin Petkov | 58f0b6d | 2012-06-12 12:52:30 +0200 | [diff] [blame] | 474 | std::string CalculateTechnology(Error *error); |
Chris Masone | 3bd3c8c | 2011-06-13 08:20:26 -0700 | [diff] [blame] | 475 | |
mukesh agrawal | 8a3188d | 2011-12-01 20:56:44 +0000 | [diff] [blame] | 476 | // Returns whether this service is in a state conducive to auto-connect. |
| 477 | // This should include any tests used for computing connectable(), |
| 478 | // as well as other critera such as whether the device associated with |
| 479 | // this service is busy with another connection. |
mukesh agrawal | bf14e94 | 2012-03-02 14:36:34 -0800 | [diff] [blame] | 480 | // |
| 481 | // If the service is not auto-connectable, |*reason| will be set to |
| 482 | // point to C-string explaining why the service is not auto-connectable. |
| 483 | virtual bool IsAutoConnectable(const char **reason) const; |
mukesh agrawal | 8a3188d | 2011-12-01 20:56:44 +0000 | [diff] [blame] | 484 | |
mukesh agrawal | 292dc0f | 2012-01-26 18:02:46 -0800 | [diff] [blame] | 485 | // HelpRegisterDerived*: Expose a property over RPC, with the name |name|. |
| 486 | // |
| 487 | // Reads of the property will be handled by invoking |get|. |
| 488 | // Writes to the property will be handled by invoking |set|. |
| 489 | // Clearing the property will be handled by PropertyStore. |
mukesh agrawal | ffa3d04 | 2011-10-06 15:26:10 -0700 | [diff] [blame] | 490 | void HelpRegisterDerivedBool( |
| 491 | const std::string &name, |
Hristo Stefanov | ed2c28c | 2011-11-29 15:37:30 -0800 | [diff] [blame] | 492 | bool(Service::*get)(Error *error), |
| 493 | void(Service::*set)(const bool &value, Error *error)); |
mukesh agrawal | ffa3d04 | 2011-10-06 15:26:10 -0700 | [diff] [blame] | 494 | void HelpRegisterDerivedString( |
| 495 | const std::string &name, |
Hristo Stefanov | ed2c28c | 2011-11-29 15:37:30 -0800 | [diff] [blame] | 496 | std::string(Service::*get)(Error *error), |
| 497 | void(Service::*set)(const std::string &value, Error *error)); |
Paul Stewart | be5f5b3 | 2011-12-07 17:11:11 -0800 | [diff] [blame] | 498 | void HelpRegisterDerivedUint16( |
| 499 | const std::string &name, |
| 500 | uint16(Service::*get)(Error *error), |
| 501 | void(Service::*set)(const uint16 &value, Error *error)); |
Jason Glasgow | acdc11f | 2012-03-30 14:12:22 -0400 | [diff] [blame] | 502 | void HelpRegisterDerivedRpcIdentifier( |
| 503 | const std::string &name, |
| 504 | std::string(Service::*get)(Error *), |
| 505 | void(Service::*set)(const RpcIdentifier&, Error *)); |
Darin Petkov | 0c65bdd | 2012-12-05 13:42:41 +0100 | [diff] [blame] | 506 | void HelpRegisterConstDerivedStrings( |
| 507 | const std::string &name, Strings(Service::*get)(Error *error)); |
mukesh agrawal | 292dc0f | 2012-01-26 18:02:46 -0800 | [diff] [blame] | 508 | // Expose a property over RPC, with the name |name|. |
| 509 | // |
| 510 | // Reads of the property will be handled by invoking |get|. |
| 511 | // Writes to the property will be handled by invoking |set|. |
| 512 | // |
| 513 | // Clearing the property will be handled by invoking |clear|, or |
| 514 | // calling |set| with |default_value| (whichever is non-NULL). It |
| 515 | // is an error to call this method with both |clear| and |
| 516 | // |default_value| non-NULL. |
| 517 | void HelpRegisterWriteOnlyDerivedString( |
| 518 | const std::string &name, |
| 519 | void(Service::*set)(const std::string &value, Error *error), |
| 520 | void(Service::*clear)(Error *error), |
| 521 | const std::string *default_value); |
Chris Masone | 3bd3c8c | 2011-06-13 08:20:26 -0700 | [diff] [blame] | 522 | |
Darin Petkov | b72cf40 | 2011-11-22 14:51:39 +0100 | [diff] [blame] | 523 | ServiceAdaptorInterface *adaptor() const { return adaptor_.get(); } |
| 524 | |
Darin Petkov | ba40dd3 | 2011-07-11 20:06:39 -0700 | [diff] [blame] | 525 | // Assigns |value| to |key| in |storage| if |value| is non-empty and |save| is |
| 526 | // true. Otherwise, removes |key| from |storage|. If |crypted| is true, the |
| 527 | // value is encrypted. |
| 528 | void SaveString(StoreInterface *storage, |
Chris Masone | 34af218 | 2011-08-22 11:59:36 -0700 | [diff] [blame] | 529 | const std::string &id, |
Darin Petkov | ba40dd3 | 2011-07-11 20:06:39 -0700 | [diff] [blame] | 530 | const std::string &key, |
| 531 | const std::string &value, |
| 532 | bool crypted, |
| 533 | bool save); |
| 534 | |
Chris Masone | 34af218 | 2011-08-22 11:59:36 -0700 | [diff] [blame] | 535 | void LoadEapCredentials(StoreInterface *storage, const std::string &id); |
| 536 | void SaveEapCredentials(StoreInterface *storage, const std::string &id); |
Paul Stewart | d8ad3c4 | 2012-01-09 12:39:38 -0800 | [diff] [blame] | 537 | void UnloadEapCredentials(); |
Darin Petkov | ba40dd3 | 2011-07-11 20:06:39 -0700 | [diff] [blame] | 538 | |
Paul Stewart | cb59fed | 2012-03-21 21:14:46 -0700 | [diff] [blame] | 539 | // Ignore |parameter| when performing a Configure() operation. |
| 540 | void IgnoreParameterForConfigure(const std::string ¶meter); |
| 541 | |
Paul Stewart | f2d6091 | 2012-07-15 08:37:30 -0700 | [diff] [blame] | 542 | // Update the service's string-based "Error" RPC property based on the |
| 543 | // failure_ enum. |
| 544 | void UpdateErrorProperty(); |
| 545 | |
Paul Stewart | cf199de | 2012-08-16 07:50:41 -0700 | [diff] [blame] | 546 | // RPC setter for the the "AutoConnect" property. |
| 547 | virtual void SetAutoConnect(const bool &connect, Error *error); |
| 548 | |
Paul Stewart | ac4ac00 | 2011-08-26 12:04:26 -0700 | [diff] [blame] | 549 | // Property accessors reserved for subclasses |
| 550 | EventDispatcher *dispatcher() const { return dispatcher_; } |
| 551 | const std::string &GetEAPKeyManagement() const; |
mukesh agrawal | 43970a2 | 2013-02-15 16:00:07 -0800 | [diff] [blame] | 552 | virtual void SetEAPKeyManagement(const std::string &key_management); |
Paul Stewart | 9f32d19 | 2012-01-30 20:37:50 -0800 | [diff] [blame] | 553 | void SetEAPPassword(const std::string &password, Error *error); |
| 554 | void SetEAPPrivateKeyPassword(const std::string &password, Error *error); |
Paul Stewart | 65512e1 | 2012-03-26 18:01:08 -0700 | [diff] [blame] | 555 | Manager *manager() const { return manager_; } |
Thieu Le | 48e6d6d | 2011-12-06 00:40:27 +0000 | [diff] [blame] | 556 | Metrics *metrics() const { return metrics_; } |
mukesh agrawal | b54601c | 2011-06-07 17:39:22 -0700 | [diff] [blame] | 557 | |
Darin Petkov | 1d0080a | 2012-04-30 17:10:36 +0200 | [diff] [blame] | 558 | void set_favorite(bool favorite) { favorite_ = favorite; } |
mukesh agrawal | 43970a2 | 2013-02-15 16:00:07 -0800 | [diff] [blame] | 559 | // Inform base class of the security properties for the service. |
| 560 | // |
| 561 | // NB: When adding a call to this function from a subclass, please check |
| 562 | // that the semantics of SecurityLevel() are appropriate for the subclass. |
| 563 | void SetSecurity(CryptoAlgorithm crypt, bool rotation, bool endpoint_auth); |
Darin Petkov | 1d0080a | 2012-04-30 17:10:36 +0200 | [diff] [blame] | 564 | |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 565 | private: |
Paul Stewart | cf199de | 2012-08-16 07:50:41 -0700 | [diff] [blame] | 566 | friend class EthernetServiceTest; |
Thieu Le | 48e6d6d | 2011-12-06 00:40:27 +0000 | [diff] [blame] | 567 | friend class MetricsTest; |
Paul Stewart | 0756db9 | 2012-01-27 08:34:47 -0800 | [diff] [blame] | 568 | friend class ServiceAdaptorInterface; |
Darin Petkov | 385b9bc | 2012-12-03 15:25:05 +0100 | [diff] [blame] | 569 | friend class ServiceTest; |
Darin Petkov | 457728b | 2013-01-09 09:49:08 +0100 | [diff] [blame] | 570 | friend class VPNProviderTest; |
Darin Petkov | 5eb0542 | 2012-05-11 15:45:25 +0200 | [diff] [blame] | 571 | friend class VPNServiceTest; |
mukesh agrawal | e1d90e9 | 2012-02-15 17:36:08 -0800 | [diff] [blame] | 572 | friend class WiFiServiceTest; |
Darin Petkov | 457728b | 2013-01-09 09:49:08 +0100 | [diff] [blame] | 573 | friend class WiMaxProviderTest; |
Darin Petkov | 6b9b2e1 | 2012-07-10 15:51:42 +0200 | [diff] [blame] | 574 | friend class WiMaxServiceTest; |
Christopher Wiley | 0801d19 | 2012-09-24 11:57:15 -0700 | [diff] [blame] | 575 | FRIEND_TEST(AllMockServiceTest, AutoConnectWithFailures); |
Darin Petkov | 457728b | 2013-01-09 09:49:08 +0100 | [diff] [blame] | 576 | FRIEND_TEST(CellularCapabilityGSMTest, SetStorageIdentifier); |
Liam McLoughlin | 0fec81c | 2013-02-28 10:31:47 -0500 | [diff] [blame] | 577 | FRIEND_TEST(CellularCapabilityUniversalMainTest, UpdateStorageIdentifier); |
Ben Chan | 19f8397 | 2012-10-03 23:25:56 -0700 | [diff] [blame] | 578 | FRIEND_TEST(CellularServiceTest, IsAutoConnectable); |
mukesh agrawal | cc0fded | 2012-05-09 13:40:58 -0700 | [diff] [blame] | 579 | FRIEND_TEST(DeviceTest, IPConfigUpdatedFailureWithStatic); |
Paul Stewart | 39db5ca | 2013-03-18 14:15:17 -0700 | [diff] [blame] | 580 | FRIEND_TEST(ManagerTest, ConnectToBestServices); |
mukesh agrawal | 43970a2 | 2013-02-15 16:00:07 -0800 | [diff] [blame] | 581 | // TODO(quiche): The SortServices test should probably move into |
| 582 | // service_unittest.cc. Then the following line should be removed. |
| 583 | // (crosbug.com/23370) |
| 584 | FRIEND_TEST(ManagerTest, SortServices); |
mukesh agrawal | 03c15ce | 2012-11-29 17:36:21 -0800 | [diff] [blame] | 585 | FRIEND_TEST(ServiceTest, AutoConnectLogging); |
Darin Petkov | 58f0b6d | 2012-06-12 12:52:30 +0200 | [diff] [blame] | 586 | FRIEND_TEST(ServiceTest, CalculateState); |
| 587 | FRIEND_TEST(ServiceTest, CalculateTechnology); |
Paul Stewart | bc6e739 | 2012-05-24 07:07:48 -0700 | [diff] [blame] | 588 | FRIEND_TEST(ServiceTest, Certification); |
Paul Stewart | cb59fed | 2012-03-21 21:14:46 -0700 | [diff] [blame] | 589 | FRIEND_TEST(ServiceTest, ConfigureIgnoredProperty); |
| 590 | FRIEND_TEST(ServiceTest, ConfigureStringProperty); |
Darin Petkov | ba40dd3 | 2011-07-11 20:06:39 -0700 | [diff] [blame] | 591 | FRIEND_TEST(ServiceTest, Constructor); |
Paul Stewart | 10241e3 | 2012-04-23 18:15:06 -0700 | [diff] [blame] | 592 | FRIEND_TEST(ServiceTest, GetIPConfigRpcIdentifier); |
Thieu Le | 284fe79 | 2012-01-31 17:53:19 -0800 | [diff] [blame] | 593 | FRIEND_TEST(ServiceTest, GetProperties); |
mukesh agrawal | 76d1388 | 2012-01-12 15:23:11 -0800 | [diff] [blame] | 594 | FRIEND_TEST(ServiceTest, IsAutoConnectable); |
Paul Stewart | df3c0a8 | 2012-11-09 15:54:33 -0800 | [diff] [blame] | 595 | FRIEND_TEST(ServiceTest, IsDependentOn); |
Paul Stewart | d215af6 | 2012-04-24 23:25:50 -0700 | [diff] [blame] | 596 | FRIEND_TEST(ServiceTest, RecheckPortal); |
Darin Petkov | ba40dd3 | 2011-07-11 20:06:39 -0700 | [diff] [blame] | 597 | FRIEND_TEST(ServiceTest, Save); |
| 598 | FRIEND_TEST(ServiceTest, SaveString); |
| 599 | FRIEND_TEST(ServiceTest, SaveStringCrypted); |
| 600 | FRIEND_TEST(ServiceTest, SaveStringDontSave); |
| 601 | FRIEND_TEST(ServiceTest, SaveStringEmpty); |
mukesh agrawal | 43970a2 | 2013-02-15 16:00:07 -0800 | [diff] [blame] | 602 | FRIEND_TEST(ServiceTest, SecurityLevel); |
Paul Stewart | d215af6 | 2012-04-24 23:25:50 -0700 | [diff] [blame] | 603 | FRIEND_TEST(ServiceTest, SetCheckPortal); |
Darin Petkov | b2ba39f | 2012-06-06 10:33:43 +0200 | [diff] [blame] | 604 | FRIEND_TEST(ServiceTest, SetConnectable); |
Arman Uguray | 2717a10 | 2013-01-29 23:36:06 -0800 | [diff] [blame] | 605 | FRIEND_TEST(ServiceTest, SetFriendlyName); |
| 606 | FRIEND_TEST(ServiceTest, SetProperty); |
mukesh agrawal | 568b5c6 | 2012-02-28 14:44:47 -0800 | [diff] [blame] | 607 | FRIEND_TEST(ServiceTest, State); |
Paul Stewart | d8ad3c4 | 2012-01-09 12:39:38 -0800 | [diff] [blame] | 608 | FRIEND_TEST(ServiceTest, Unload); |
Paul Stewart | 1369c2b | 2013-01-11 05:41:26 -0800 | [diff] [blame] | 609 | FRIEND_TEST(WiFiMainTest, SuspectCredentialsEAPInProgress); |
mukesh agrawal | cf24a24 | 2012-05-21 16:46:11 -0700 | [diff] [blame] | 610 | FRIEND_TEST(WiFiMainTest, SuspectCredentialsWPAPreviouslyConnected); |
Christopher Wiley | 0801d19 | 2012-09-24 11:57:15 -0700 | [diff] [blame] | 611 | FRIEND_TEST(WiFiTimerTest, ReconnectTimer); |
Darin Petkov | ba40dd3 | 2011-07-11 20:06:39 -0700 | [diff] [blame] | 612 | |
mukesh agrawal | bf14e94 | 2012-03-02 14:36:34 -0800 | [diff] [blame] | 613 | static const char kAutoConnConnected[]; |
| 614 | static const char kAutoConnConnecting[]; |
| 615 | static const char kAutoConnExplicitDisconnect[]; |
| 616 | static const char kAutoConnNotConnectable[]; |
Darin Petkov | 4cbff5b | 2013-01-29 16:29:05 +0100 | [diff] [blame] | 617 | static const char kAutoConnOffline[]; |
Christopher Wiley | 0801d19 | 2012-09-24 11:57:15 -0700 | [diff] [blame] | 618 | static const char kAutoConnThrottled[]; |
mukesh agrawal | bf14e94 | 2012-03-02 14:36:34 -0800 | [diff] [blame] | 619 | |
Paul Stewart | bc6e739 | 2012-05-24 07:07:48 -0700 | [diff] [blame] | 620 | static const size_t kEAPMaxCertificationElements; |
| 621 | |
Darin Petkov | 2f903b3 | 2012-04-18 12:56:43 +0200 | [diff] [blame] | 622 | static const char kServiceSortAutoConnect[]; |
| 623 | static const char kServiceSortConnectable[]; |
| 624 | static const char kServiceSortFavorite[]; |
mukesh agrawal | ddc378f | 2012-02-17 18:26:20 -0800 | [diff] [blame] | 625 | static const char kServiceSortIsConnected[]; |
Paul Stewart | df3c0a8 | 2012-11-09 15:54:33 -0800 | [diff] [blame] | 626 | static const char kServiceSortDependency[]; |
mukesh agrawal | ddc378f | 2012-02-17 18:26:20 -0800 | [diff] [blame] | 627 | static const char kServiceSortIsConnecting[]; |
| 628 | static const char kServiceSortIsFailed[]; |
Paul Stewart | a121c44 | 2012-06-09 14:12:58 -0700 | [diff] [blame] | 629 | static const char kServiceSortIsPortalled[]; |
Darin Petkov | 2f903b3 | 2012-04-18 12:56:43 +0200 | [diff] [blame] | 630 | static const char kServiceSortPriority[]; |
mukesh agrawal | ddc378f | 2012-02-17 18:26:20 -0800 | [diff] [blame] | 631 | static const char kServiceSortSecurityEtc[]; |
Darin Petkov | 2f903b3 | 2012-04-18 12:56:43 +0200 | [diff] [blame] | 632 | static const char kServiceSortTechnology[]; |
mukesh agrawal | ddc378f | 2012-02-17 18:26:20 -0800 | [diff] [blame] | 633 | static const char kServiceSortUniqueName[]; |
| 634 | |
Christopher Wiley | 0801d19 | 2012-09-24 11:57:15 -0700 | [diff] [blame] | 635 | static const uint64 kMaxAutoConnectCooldownTimeMilliseconds; |
| 636 | static const uint64 kMinAutoConnectCooldownTimeMilliseconds; |
| 637 | static const uint64 kAutoConnectCooldownBackoffFactor; |
| 638 | |
Darin Petkov | 385b9bc | 2012-12-03 15:25:05 +0100 | [diff] [blame] | 639 | static const int kDisconnectsMonitorSeconds; |
| 640 | static const int kMisconnectsMonitorSeconds; |
| 641 | static const int kReportDisconnectsThreshold; |
| 642 | static const int kReportMisconnectsThreshold; |
| 643 | static const int kMaxDisconnectEventHistory; |
| 644 | |
Thieu Le | 284fe79 | 2012-01-31 17:53:19 -0800 | [diff] [blame] | 645 | bool GetAutoConnect(Error *error); |
Thieu Le | 284fe79 | 2012-01-31 17:53:19 -0800 | [diff] [blame] | 646 | |
Paul Stewart | d215af6 | 2012-04-24 23:25:50 -0700 | [diff] [blame] | 647 | std::string GetCheckPortal(Error *error); |
| 648 | void SetCheckPortal(const std::string &check_portal, Error *error); |
| 649 | |
Gaurav Shah | 1b7a616 | 2011-11-09 11:41:01 -0800 | [diff] [blame] | 650 | virtual std::string GetDeviceRpcId(Error *error) = 0; |
Chris Masone | 95207da | 2011-06-29 16:50:49 -0700 | [diff] [blame] | 651 | |
Paul Stewart | 10241e3 | 2012-04-23 18:15:06 -0700 | [diff] [blame] | 652 | std::string GetIPConfigRpcIdentifier(Error *error); |
| 653 | |
Paul Stewart | 0c43833 | 2012-04-11 07:55:27 -0700 | [diff] [blame] | 654 | std::string GetNameProperty(Error *error); |
| 655 | void AssertTrivialSetNameProperty(const std::string &name, Error *error); |
| 656 | |
Paul Stewart | 1b1a7f2 | 2012-01-06 16:24:06 -0800 | [diff] [blame] | 657 | std::string GetProfileRpcId(Error *error); |
| 658 | void SetProfileRpcId(const std::string &profile, Error *error); |
Chris Masone | 3bd3c8c | 2011-06-13 08:20:26 -0700 | [diff] [blame] | 659 | |
Paul Stewart | be5f5b3 | 2011-12-07 17:11:11 -0800 | [diff] [blame] | 660 | // Returns TCP port of service's HTTP proxy in host order. |
| 661 | uint16 GetHTTPProxyPort(Error *error); |
| 662 | |
Philipp Neubeck | 7917360 | 2012-11-13 21:10:09 +0100 | [diff] [blame] | 663 | std::string GetProxyConfig(Error *error); |
| 664 | void SetProxyConfig(const std::string &proxy_config, Error *error); |
| 665 | |
Darin Petkov | 0c65bdd | 2012-12-05 13:42:41 +0100 | [diff] [blame] | 666 | static Strings ExtractWallClockToStrings( |
| 667 | const std::deque<Timestamp> ×tamps); |
| 668 | Strings GetDisconnectsProperty(Error *error); |
| 669 | Strings GetMisconnectsProperty(Error *error); |
| 670 | |
Christopher Wiley | 0801d19 | 2012-09-24 11:57:15 -0700 | [diff] [blame] | 671 | void ReEnableAutoConnectTask(); |
| 672 | // Disables autoconnect and posts a task to re-enable it after a cooldown. |
| 673 | // Note that autoconnect could be disabled for other reasons as well. |
| 674 | void ThrottleFutureAutoConnects(); |
| 675 | |
mukesh agrawal | cf24a24 | 2012-05-21 16:46:11 -0700 | [diff] [blame] | 676 | // Saves settings to profile, if we have one. Unlike |
| 677 | // SaveServiceToProfile, SaveToProfile never assigns this service |
| 678 | // into a profile. |
| 679 | void SaveToProfile(); |
| 680 | |
Paul Stewart | 483e472 | 2012-12-18 10:23:17 -0800 | [diff] [blame] | 681 | // Start at the head of |events| and remove all entries that occurred |
| 682 | // more than |seconds_ago| prior to |now|. Also, the size of |events| |
| 683 | // is unconditionally trimmed below kMaxDisconnectEventHistory. |
| 684 | static void ExpireEventsBefore( |
| 685 | int seconds_ago, const Timestamp &now, std::deque<Timestamp> *events); |
| 686 | |
| 687 | // Qualify the conditions under which the most recent disconnect occurred. |
| 688 | // Make note ot the fact that there was a problem connecting / staying |
| 689 | // connected if the disconnection did not occur as a clear result of user |
| 690 | // action. |
Darin Petkov | 385b9bc | 2012-12-03 15:25:05 +0100 | [diff] [blame] | 691 | void NoteDisconnectEvent(); |
| 692 | |
Paul Stewart | 22aa71b | 2011-09-16 12:15:11 -0700 | [diff] [blame] | 693 | // Utility function that returns true if a is different from b. When they |
| 694 | // are, "decision" is populated with the boolean value of "a > b". |
| 695 | static bool DecideBetween(int a, int b, bool *decision); |
| 696 | |
mukesh agrawal | 43970a2 | 2013-02-15 16:00:07 -0800 | [diff] [blame] | 697 | // Linearize security parameters (crypto algorithm, key rotation, endpoint |
| 698 | // authentication) for comparison. |
| 699 | uint16 SecurityLevel(); |
| 700 | |
Paul Stewart | ac4ac00 | 2011-08-26 12:04:26 -0700 | [diff] [blame] | 701 | ConnectState state_; |
Darin Petkov | c8d91e5 | 2013-01-21 11:43:47 +0100 | [diff] [blame] | 702 | ConnectState previous_state_; |
Paul Stewart | ac4ac00 | 2011-08-26 12:04:26 -0700 | [diff] [blame] | 703 | ConnectFailure failure_; |
| 704 | bool auto_connect_; |
| 705 | std::string check_portal_; |
| 706 | bool connectable_; |
| 707 | std::string error_; |
Darin Petkov | aba8932 | 2013-03-11 14:48:22 +0100 | [diff] [blame] | 708 | std::string error_details_; |
mukesh agrawal | adb6848 | 2012-01-17 16:31:51 -0800 | [diff] [blame] | 709 | bool explicitly_disconnected_; |
Paul Stewart | ac4ac00 | 2011-08-26 12:04:26 -0700 | [diff] [blame] | 710 | bool favorite_; |
| 711 | int32 priority_; |
mukesh agrawal | 43970a2 | 2013-02-15 16:00:07 -0800 | [diff] [blame] | 712 | uint8 crypto_algorithm_; |
| 713 | bool key_rotation_; |
| 714 | bool endpoint_auth_; |
| 715 | |
Darin Petkov | d78ee7e | 2012-01-12 11:21:10 +0100 | [diff] [blame] | 716 | uint8 strength_; |
Paul Stewart | ac4ac00 | 2011-08-26 12:04:26 -0700 | [diff] [blame] | 717 | std::string proxy_config_; |
Paul Stewart | 987e71e | 2011-12-05 09:45:06 -0800 | [diff] [blame] | 718 | std::string ui_data_; |
Paul Stewart | 4c56161 | 2012-03-21 12:49:01 -0700 | [diff] [blame] | 719 | std::string guid_; |
Paul Stewart | ac4ac00 | 2011-08-26 12:04:26 -0700 | [diff] [blame] | 720 | bool save_credentials_; |
| 721 | EapCredentials eap_; // Only saved if |save_credentials_| is true. |
Gaurav Shah | 435de2c | 2011-11-17 19:01:07 -0800 | [diff] [blame] | 722 | Technology::Identifier technology_; |
mukesh agrawal | 568b5c6 | 2012-02-28 14:44:47 -0800 | [diff] [blame] | 723 | // The time of the most recent failure. Value is 0 if the service is |
| 724 | // not currently failed. |
| 725 | time_t failed_time_; |
mukesh agrawal | cf24a24 | 2012-05-21 16:46:11 -0700 | [diff] [blame] | 726 | // Whether or not this service has ever reached kStateConnected. |
| 727 | bool has_ever_connected_; |
Paul Stewart | ac4ac00 | 2011-08-26 12:04:26 -0700 | [diff] [blame] | 728 | |
Darin Petkov | 0c65bdd | 2012-12-05 13:42:41 +0100 | [diff] [blame] | 729 | std::deque<Timestamp> disconnects_; // Connection drops. |
| 730 | std::deque<Timestamp> misconnects_; // Failures to connect. |
Darin Petkov | 385b9bc | 2012-12-03 15:25:05 +0100 | [diff] [blame] | 731 | |
Christopher Wiley | 0801d19 | 2012-09-24 11:57:15 -0700 | [diff] [blame] | 732 | base::CancelableClosure reenable_auto_connect_task_; |
| 733 | uint64 auto_connect_cooldown_milliseconds_ ; |
| 734 | |
Paul Stewart | ac4ac00 | 2011-08-26 12:04:26 -0700 | [diff] [blame] | 735 | ProfileRefPtr profile_; |
| 736 | PropertyStore store_; |
Paul Stewart | cb59fed | 2012-03-21 21:14:46 -0700 | [diff] [blame] | 737 | std::set<std::string> parameters_ignored_for_configure_; |
Paul Stewart | ac4ac00 | 2011-08-26 12:04:26 -0700 | [diff] [blame] | 738 | |
| 739 | EventDispatcher *dispatcher_; |
mukesh agrawal | 51a7e93 | 2011-07-27 16:18:26 -0700 | [diff] [blame] | 740 | static unsigned int serial_number_; |
mukesh agrawal | d835b20 | 2011-10-07 15:26:47 -0700 | [diff] [blame] | 741 | std::string unique_name_; // MUST be unique amongst service instances |
Darin Petkov | 457728b | 2013-01-09 09:49:08 +0100 | [diff] [blame] | 742 | |
| 743 | // Service's friendly name is presented through the UI. By default it's the |
| 744 | // same as |unique_name_| but normally Service subclasses override |
| 745 | // it. WARNING: Don't log the friendly name at the default logging level due |
| 746 | // to PII concerns. |
| 747 | std::string friendly_name_; |
| 748 | |
Paul Stewart | ba41b99 | 2011-05-26 07:02:46 -0700 | [diff] [blame] | 749 | scoped_ptr<ServiceAdaptorInterface> adaptor_; |
Paul Stewart | be5f5b3 | 2011-12-07 17:11:11 -0800 | [diff] [blame] | 750 | scoped_ptr<HTTPProxy> http_proxy_; |
Paul Stewart | c1dec4d | 2011-12-08 15:25:28 -0800 | [diff] [blame] | 751 | ConnectionRefPtr connection_; |
Paul Stewart | 1062d9d | 2012-04-27 10:42:27 -0700 | [diff] [blame] | 752 | StaticIPParameters static_ip_parameters_; |
Thieu Le | 3426c8f | 2012-01-11 17:35:11 -0800 | [diff] [blame] | 753 | Metrics *metrics_; |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 754 | Manager *manager_; |
Darin Petkov | 5eb0542 | 2012-05-11 15:45:25 +0200 | [diff] [blame] | 755 | scoped_ptr<Sockets> sockets_; |
Christopher Wiley | 0801d19 | 2012-09-24 11:57:15 -0700 | [diff] [blame] | 756 | base::WeakPtrFactory<Service> weak_ptr_factory_; |
Darin Petkov | 385b9bc | 2012-12-03 15:25:05 +0100 | [diff] [blame] | 757 | Time *time_; |
| 758 | DiagnosticsReporter *diagnostics_reporter_; |
Chris Masone | 3bd3c8c | 2011-06-13 08:20:26 -0700 | [diff] [blame] | 759 | |
mukesh agrawal | b54601c | 2011-06-07 17:39:22 -0700 | [diff] [blame] | 760 | DISALLOW_COPY_AND_ASSIGN(Service); |
Paul Stewart | 75897df | 2011-04-27 09:05:53 -0700 | [diff] [blame] | 761 | }; |
| 762 | |
| 763 | } // namespace shill |
| 764 | |
Ben Chan | 19f8397 | 2012-10-03 23:25:56 -0700 | [diff] [blame] | 765 | #endif // SHILL_SERVICE_H_ |