blob: 16d1c3c7ac97da6d1ffc1ee8a9371048e2c50c59 [file] [log] [blame]
mukesh agrawal8a3188d2011-12-01 20:56:44 +00001// Copyright (c) 2012 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
Chris Masone9be4a9d2011-05-16 15:44:09 -070010#include <string>
Chris Masone8fe2c7e2011-06-09 15:51:19 -070011#include <map>
Paul Stewartcb59fed2012-03-21 21:14:46 -070012#include <set>
Chris Masone8fe2c7e2011-06-09 15:51:19 -070013#include <vector>
Chris Masone9be4a9d2011-05-16 15:44:09 -070014
Christopher Wiley0801d192012-09-24 11:57:15 -070015#include <base/cancelable_callback.h>
Chris Masone9be4a9d2011-05-16 15:44:09 -070016#include <base/memory/ref_counted.h>
Paul Stewartba41b992011-05-26 07:02:46 -070017#include <base/memory/scoped_ptr.h>
Christopher Wiley0801d192012-09-24 11:57:15 -070018#include <base/memory/weak_ptr.h>
Darin Petkovba40dd32011-07-11 20:06:39 -070019#include <gtest/gtest_prod.h> // for FRIEND_TEST
Paul Stewart75897df2011-04-27 09:05:53 -070020
Eric Shienbrood9a245532012-03-07 14:20:39 -050021#include "shill/adaptor_interfaces.h"
Chris Masone3bd3c8c2011-06-13 08:20:26 -070022#include "shill/accessor_interface.h"
Eric Shienbrood9a245532012-03-07 14:20:39 -050023#include "shill/callbacks.h"
Chris Masoneb925cc82011-06-22 15:39:57 -070024#include "shill/property_store.h"
Chris Masone7aa5f902011-07-11 11:13:35 -070025#include "shill/refptr_types.h"
Paul Stewart1062d9d2012-04-27 10:42:27 -070026#include "shill/static_ip_parameters.h"
Paul Stewart22aa71b2011-09-16 12:15:11 -070027#include "shill/technology.h"
Chris Masonec1e50412011-06-07 13:04:53 -070028
Thieu Leb84ba342012-03-02 15:15:19 -080029namespace chromeos_metrics {
30class Timer;
31}
32
Paul Stewart75897df2011-04-27 09:05:53 -070033namespace shill {
34
Chris Masone9be4a9d2011-05-16 15:44:09 -070035class ControlInterface;
Paul Stewart75897df2011-04-27 09:05:53 -070036class Endpoint;
Chris Masone8fe2c7e2011-06-09 15:51:19 -070037class Error;
Chris Masone9be4a9d2011-05-16 15:44:09 -070038class EventDispatcher;
Paul Stewartbe5f5b32011-12-07 17:11:11 -080039class HTTPProxy;
mukesh agrawal7a4e4002011-09-06 11:26:05 -070040class KeyValueStore;
Chris Masone6791a432011-07-12 13:23:19 -070041class Manager;
Thieu Le48e6d6d2011-12-06 00:40:27 +000042class Metrics;
Chris Masone9be4a9d2011-05-16 15:44:09 -070043class ServiceAdaptorInterface;
Darin Petkov5eb05422012-05-11 15:45:25 +020044class Sockets;
Darin Petkovba40dd32011-07-11 20:06:39 -070045class StoreInterface;
Paul Stewart75897df2011-04-27 09:05:53 -070046
Chris Masone7aa5f902011-07-11 11:13:35 -070047// A Service is a uniquely named entity, which the system can
48// connect in order to begin sending and receiving network traffic.
49// All Services are bound to an Entry, which represents the persistable
50// state of the Service. If the Entry is populated at the time of Service
51// creation, that information is used to prime the Service. If not, the Entry
52// becomes populated over time.
Chris Masone27c4aa52011-07-02 13:10:14 -070053class Service : public base::RefCounted<Service> {
Paul Stewart75897df2011-04-27 09:05:53 -070054 public:
Darin Petkovba40dd32011-07-11 20:06:39 -070055 static const char kCheckPortalAuto[];
56 static const char kCheckPortalFalse[];
57 static const char kCheckPortalTrue[];
58
Paul Stewart0756db92012-01-27 08:34:47 -080059 // TODO(pstew): Storage constants shouldn't need to be public
60 // crosbug.com/25813
61 static const char kStorageAutoConnect[];
62 static const char kStorageCheckPortal[];
63 static const char kStorageEapAnonymousIdentity[];
64 static const char kStorageEapCACert[];
65 static const char kStorageEapCACertID[];
Paul Stewartecf4cd12012-04-17 11:08:39 -070066 static const char kStorageEapCACertNSS[];
Paul Stewart0756db92012-01-27 08:34:47 -080067 static const char kStorageEapCertID[];
68 static const char kStorageEapClientCert[];
69 static const char kStorageEapEap[];
70 static const char kStorageEapIdentity[];
71 static const char kStorageEapInnerEap[];
72 static const char kStorageEapKeyID[];
73 static const char kStorageEapKeyManagement[];
74 static const char kStorageEapPIN[];
75 static const char kStorageEapPassword[];
76 static const char kStorageEapPrivateKey[];
77 static const char kStorageEapPrivateKeyPassword[];
78 static const char kStorageEapUseSystemCAs[];
79 static const char kStorageError[];
80 static const char kStorageFavorite[];
81 static const char kStorageGUID[];
mukesh agrawalcf24a242012-05-21 16:46:11 -070082 static const char kStorageHasEverConnected[];
Paul Stewart0756db92012-01-27 08:34:47 -080083 static const char kStorageName[];
84 static const char kStoragePriority[];
85 static const char kStorageProxyConfig[];
86 static const char kStorageSaveCredentials[];
87 static const char kStorageType[];
88 static const char kStorageUIData[];
89
mukesh agrawal8f3f7752012-02-17 19:42:09 -080090 static const uint8 kStrengthMax;
91 static const uint8 kStrengthMin;
92
Paul Stewart75897df2011-04-27 09:05:53 -070093 enum ConnectFailure {
Paul Stewart03dba0b2011-08-22 16:32:45 -070094 kFailureUnknown,
Paul Stewartf2d60912012-07-15 08:37:30 -070095 kFailureActivation,
Paul Stewart03dba0b2011-08-22 16:32:45 -070096 kFailureOutOfRange,
97 kFailurePinMissing,
Paul Stewartf2d60912012-07-15 08:37:30 -070098 kFailureDHCP,
99 kFailureBadPassphrase,
Paul Stewart03dba0b2011-08-22 16:32:45 -0700100 kFailureNeedEVDO,
101 kFailureNeedHomeNetwork,
Paul Stewartf2d60912012-07-15 08:37:30 -0700102 kFailureOTASP,
103 kFailureAAA,
104 kFailureBadWEPKey,
105 kFailureConnect,
106 kFailureDNSLookup,
107 kFailureHTTPGet,
108 kFailurePPPAuth,
Thieu Le48e6d6d2011-12-06 00:40:27 +0000109 kFailureMax
Paul Stewart75897df2011-04-27 09:05:53 -0700110 };
Chris Masone9be4a9d2011-05-16 15:44:09 -0700111 enum ConnectState {
Paul Stewart03dba0b2011-08-22 16:32:45 -0700112 kStateUnknown,
113 kStateIdle,
114 kStateAssociating,
115 kStateConfiguring,
116 kStateConnected,
117 kStateDisconnected,
Thieu Le48e6d6d2011-12-06 00:40:27 +0000118 kStatePortal,
Gaurav Shahc6d6c722011-11-17 18:59:39 -0800119 kStateFailure,
120 kStateOnline
Chris Masone9be4a9d2011-05-16 15:44:09 -0700121 };
Chris Masoneb2e326b2011-07-12 13:28:51 -0700122 struct EapCredentials {
Paul Stewart20550982012-04-16 12:16:11 -0700123 EapCredentials() : use_system_cas(true) {}
Paul Stewartbc6e7392012-05-24 07:07:48 -0700124 // Who we identify ourselves as to the EAP authenticator.
Chris Masoneb2e326b2011-07-12 13:28:51 -0700125 std::string identity;
Paul Stewartbc6e7392012-05-24 07:07:48 -0700126 // The outer or only EAP authetnication type.
Chris Masoneb2e326b2011-07-12 13:28:51 -0700127 std::string eap;
Paul Stewartbc6e7392012-05-24 07:07:48 -0700128 // The inner EAP authentication type.
Chris Masoneb2e326b2011-07-12 13:28:51 -0700129 std::string inner_eap;
Paul Stewartbc6e7392012-05-24 07:07:48 -0700130 // When there is an inner EAP type, use this identity for the outer.
Chris Masoneb2e326b2011-07-12 13:28:51 -0700131 std::string anonymous_identity;
Paul Stewartbc6e7392012-05-24 07:07:48 -0700132 // Filename of the client certificate.
Chris Masoneb2e326b2011-07-12 13:28:51 -0700133 std::string client_cert;
Paul Stewartbc6e7392012-05-24 07:07:48 -0700134 // Locator for the client certificate within the security token.
Chris Masoneb2e326b2011-07-12 13:28:51 -0700135 std::string cert_id;
Paul Stewartbc6e7392012-05-24 07:07:48 -0700136 // Filename of the client private key.
Chris Masoneb2e326b2011-07-12 13:28:51 -0700137 std::string private_key;
Paul Stewartbc6e7392012-05-24 07:07:48 -0700138 // Password for decrypting the client private key file.
Chris Masoneb2e326b2011-07-12 13:28:51 -0700139 std::string private_key_password;
Paul Stewartbc6e7392012-05-24 07:07:48 -0700140 // Locator for the client private key within the security token.
Chris Masoneb2e326b2011-07-12 13:28:51 -0700141 std::string key_id;
Paul Stewartbc6e7392012-05-24 07:07:48 -0700142 // Filename of the certificate authority (CA) certificate.
Chris Masoneb2e326b2011-07-12 13:28:51 -0700143 std::string ca_cert;
Paul Stewartbc6e7392012-05-24 07:07:48 -0700144 // Locator for the CA certificate within the security token.
Chris Masoneb2e326b2011-07-12 13:28:51 -0700145 std::string ca_cert_id;
Paul Stewartbc6e7392012-05-24 07:07:48 -0700146 // Locator for the CA certificate within the user NSS database.
Paul Stewartecf4cd12012-04-17 11:08:39 -0700147 std::string ca_cert_nss;
Paul Stewartbc6e7392012-05-24 07:07:48 -0700148 // If true, use the system-wide CA database to authenticate the remote.
Chris Masoneb2e326b2011-07-12 13:28:51 -0700149 bool use_system_cas;
Paul Stewartbc6e7392012-05-24 07:07:48 -0700150 // PIN code for accessing the security token.
Chris Masoneb2e326b2011-07-12 13:28:51 -0700151 std::string pin;
Paul Stewartbc6e7392012-05-24 07:07:48 -0700152 // Password to use for EAP methods which require one.
Chris Masoneb2e326b2011-07-12 13:28:51 -0700153 std::string password;
Paul Stewartbc6e7392012-05-24 07:07:48 -0700154 // Key management algorithm to use after EAP succeeds.
Chris Masoneb2e326b2011-07-12 13:28:51 -0700155 std::string key_management;
Paul Stewartbc6e7392012-05-24 07:07:48 -0700156 // If non-empty, string to match remote subject against before connecting.
157 std::string subject_match;
158 // List of subject names reported by remote entity during TLS setup.
159 std::vector<std::string> remote_certification;
Chris Masoneb2e326b2011-07-12 13:28:51 -0700160 };
Chris Masone9be4a9d2011-05-16 15:44:09 -0700161
Paul Stewartac4ac002011-08-26 12:04:26 -0700162 static const int kPriorityNone;
163
Chris Masone9be4a9d2011-05-16 15:44:09 -0700164 // A constructor for the Service object
165 Service(ControlInterface *control_interface,
166 EventDispatcher *dispatcher,
Thieu Le3426c8f2012-01-11 17:35:11 -0800167 Metrics *metrics,
mukesh agrawal7a4e4002011-09-06 11:26:05 -0700168 Manager *manager,
Gaurav Shah435de2c2011-11-17 19:01:07 -0800169 Technology::Identifier technology);
Darin Petkovba40dd32011-07-11 20:06:39 -0700170
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000171 // AutoConnect MAY choose to ignore the connection request in some
172 // cases. For example, if the corresponding Device only supports one
173 // concurrent connection, and another Service is already connected
174 // or connecting.
175 //
176 // AutoConnect MAY issue RPCs immediately. So AutoConnect MUST NOT
177 // be called from a D-Bus signal handler context.
178 virtual void AutoConnect();
179 // Queue up a connection attempt.
mukesh agrawaladb68482012-01-17 16:31:51 -0800180 virtual void Connect(Error *error);
Christopher Wileyabd3b502012-09-26 13:08:52 -0700181 // Disconnect this service. Override this method to add your service specific
182 // disconnect logic, but call the super class's Disconnect() first.
mukesh agrawaladb68482012-01-17 16:31:51 -0800183 virtual void Disconnect(Error *error);
Christopher Wileyabd3b502012-09-26 13:08:52 -0700184 // Disconnects this service via Disconnect(). Marks the service as having
185 // failed with |failure|. Do not override this method.
186 virtual void DisconnectWithFailure(ConnectFailure failure, Error *error);
187 // Disconnects this service via Disconnect(). The service will not be eligible
188 // for auto-connect until a subsequent call to Connect, or Load. Do not
189 // override this method.
190 virtual void UserInitiatedDisconnect(Error *error);
Chris Masonea82b7112011-05-25 15:16:29 -0700191
Eric Shienbrood5de44ab2011-12-05 10:46:27 -0500192 // The default implementation returns the error kInvalidArguments.
193 virtual void ActivateCellularModem(const std::string &carrier,
Eric Shienbrood9a245532012-03-07 14:20:39 -0500194 Error *error,
195 const ResultCallback &callback);
Darin Petkovc408e692011-08-17 13:47:15 -0700196
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800197 virtual bool IsActive(Error *error);
Paul Stewart03dba0b2011-08-22 16:32:45 -0700198
Paul Stewart7fb09382012-07-18 17:32:27 -0700199 // Returns whether services of this type should be auto-connect by default.
200 virtual bool IsAutoConnectByDefault() const { return false; }
201
Paul Stewart03dba0b2011-08-22 16:32:45 -0700202 virtual ConnectState state() const { return state_; }
203 // Updates the state of the Service and alerts the manager. Also
204 // clears |failure_| if the new state isn't a failure.
205 virtual void SetState(ConnectState state);
Darin Petkov58f0b6d2012-06-12 12:52:30 +0200206 std::string GetStateString() const;
Paul Stewart03dba0b2011-08-22 16:32:45 -0700207
Paul Stewart22aa71b2011-09-16 12:15:11 -0700208 // State utility functions
Paul Stewart20088d82012-02-16 06:58:55 -0800209 virtual bool IsConnected() const {
210 return state() == kStateConnected || state() == kStatePortal ||
211 state() == kStateOnline;
212 }
Gaurav Shah435de2c2011-11-17 19:01:07 -0800213 virtual bool IsConnecting() const {
Paul Stewart22aa71b2011-09-16 12:15:11 -0700214 return state() == kStateAssociating || state() == kStateConfiguring;
215 }
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000216 virtual bool IsFailed() const {
mukesh agrawal568b5c62012-02-28 14:44:47 -0800217 // We sometimes lie about the failure state, to keep Chrome happy
218 // (see comment in WiFi::HandleDisconnect). Hence, we check both
219 // state and |failed_time_|.
220 return state() == kStateFailure || failed_time_ > 0;
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000221 }
Paul Stewarta121c442012-06-09 14:12:58 -0700222 virtual bool IsPortalled() const {
223 return state() == kStatePortal;
224 }
Paul Stewart22aa71b2011-09-16 12:15:11 -0700225
Paul Stewart03dba0b2011-08-22 16:32:45 -0700226 virtual ConnectFailure failure() const { return failure_; }
mukesh agrawal568b5c62012-02-28 14:44:47 -0800227 // Records the failure mode and time. Sets the Service state to "Failure".
Paul Stewart03dba0b2011-08-22 16:32:45 -0700228 virtual void SetFailure(ConnectFailure failure);
mukesh agrawal568b5c62012-02-28 14:44:47 -0800229 // Records the failure mode and time. Sets the Service state to "Idle".
230 // Avoids showing a failure mole in the UI.
231 virtual void SetFailureSilent(ConnectFailure failure);
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700232
Darin Petkovba40dd32011-07-11 20:06:39 -0700233 // Returns a string that is guaranteed to uniquely identify this Service
234 // instance.
mukesh agrawald835b202011-10-07 15:26:47 -0700235 const std::string &UniqueName() const { return unique_name_; }
Darin Petkovafa6fc42011-06-21 16:21:08 -0700236
Chris Masone6791a432011-07-12 13:23:19 -0700237 virtual std::string GetRpcIdentifier() const;
Chris Masone3c3f6a12011-07-01 10:01:41 -0700238
Darin Petkovba40dd32011-07-11 20:06:39 -0700239 // Returns the unique persistent storage identifier for the service.
Chris Masone6515aab2011-10-12 16:19:09 -0700240 virtual std::string GetStorageIdentifier() const = 0;
Darin Petkovba40dd32011-07-11 20:06:39 -0700241
Paul Stewartbba6a5b2011-11-02 18:45:59 -0700242 // Returns whether the service configuration can be loaded from |storage|.
243 virtual bool IsLoadableFrom(StoreInterface *storage) const;
244
Paul Stewart81426132012-05-16 10:05:10 -0700245 // Returns true if the service uses 802.1x for key management.
246 virtual bool Is8021x() const { return false; };
247
Darin Petkovba40dd32011-07-11 20:06:39 -0700248 // Loads the service from persistent |storage|. Returns true on success.
Chris Masone9d779932011-08-25 16:33:41 -0700249 virtual bool Load(StoreInterface *storage);
Darin Petkovba40dd32011-07-11 20:06:39 -0700250
Paul Stewarta41e38d2011-11-11 07:47:29 -0800251 // Indicate to service that it is no longer persisted to storage. It
Paul Stewart65512e12012-03-26 18:01:08 -0700252 // should purge any stored profile state (e.g., credentials). Returns
253 // true to indicate that this service should also be unregistered from
254 // the manager, false otherwise.
255 virtual bool Unload();
Paul Stewarta41e38d2011-11-11 07:47:29 -0800256
Darin Petkovba40dd32011-07-11 20:06:39 -0700257 // Saves the service to persistent |storage|. Returns true on success.
Chris Masone9d779932011-08-25 16:33:41 -0700258 virtual bool Save(StoreInterface *storage);
Darin Petkovba40dd32011-07-11 20:06:39 -0700259
Thieu Led4e9e552012-02-16 16:26:07 -0800260 // Saves the service to the current profile.
Gary Moraind93615e2012-04-27 11:50:03 -0700261 virtual void SaveToCurrentProfile();
Thieu Led4e9e552012-02-16 16:26:07 -0800262
Paul Stewartcb59fed2012-03-21 21:14:46 -0700263 // Applies all the properties in |args| to this service object's mutable
264 // store, except for those in parameters_ignored_for_configure_.
265 // Returns an error in |error| if one or more parameter set attempts
266 // fails, but will only return the first error.
267 virtual void Configure(const KeyValueStore &args, Error *error);
268
Paul Stewartd215af62012-04-24 23:25:50 -0700269 // Returns whether portal detection is explicitly disabled on this service
270 // via a property set on it.
271 virtual bool IsPortalDetectionDisabled() const;
272
273 // Returns whether portal detection is set to follow the default setting
274 // of this service's technology via a property set on it.
275 virtual bool IsPortalDetectionAuto() const;
276
Paul Stewart10ccbb32012-04-26 15:59:30 -0700277 // Returns true if the service is persisted to a non-ephemeral profile.
278 virtual bool IsRemembered() const;
279
Paul Stewarta41e38d2011-11-11 07:47:29 -0800280 // Returns true if the service RPC identifier should be part of the
281 // manager's advertised services list, false otherwise.
282 virtual bool IsVisible() const { return true; }
283
Paul Stewart20088d82012-02-16 06:58:55 -0800284 // Returns true if there is a proxy configuration set on this service.
285 virtual bool HasProxyConfig() const { return !proxy_config_.empty(); }
286
mukesh agrawal00917ce2011-11-22 23:56:55 +0000287 virtual void MakeFavorite();
288
Darin Petkov5eb05422012-05-11 15:45:25 +0200289 // Set the connection for this service. If the connection is non-NULL, create
290 // an HTTP Proxy that will utilize this service's connection to serve
291 // requests.
292 virtual void SetConnection(const ConnectionRefPtr &connection);
293 virtual const ConnectionRefPtr &connection() const { return connection_; }
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800294
Gaurav Shah10109f22011-11-11 20:16:22 -0800295 // Examines the EAP credentials for the service and returns true if a
296 // connection attempt can be made.
297 bool Is8021xConnectable() const;
298
Paul Stewartbc6e7392012-05-24 07:07:48 -0700299 // Add an EAP certification id |name| at position |depth| in the stack.
300 // Returns true if entry was added, false otherwise.
301 virtual bool AddEAPCertification(const std::string &name, size_t depth);
302 // Clear all EAP certification elements.
303 void ClearEAPCertification();
304
Thieu Le48e6d6d2011-12-06 00:40:27 +0000305 // The inherited class should register any custom metrics in this method.
306 virtual void InitializeCustomMetrics() const {}
307
308 // The inherited class that needs to send metrics after the service has
Thieu Leb84ba342012-03-02 15:15:19 -0800309 // transitioned to the ready state should override this method.
310 // |time_resume_to_ready_milliseconds| holds the elapsed time from when
311 // the system was resumed until when the service transitioned to the
312 // connected state. This value is non-zero for the first service transition
313 // to the connected state after a resume.
314 virtual void SendPostReadyStateMetrics(
315 int64 /*time_resume_to_ready_milliseconds*/) const {}
Thieu Le48e6d6d2011-12-06 00:40:27 +0000316
Darin Petkovafa6fc42011-06-21 16:21:08 -0700317 bool auto_connect() const { return auto_connect_; }
318 void set_auto_connect(bool connect) { auto_connect_ = connect; }
Paul Stewart75897df2011-04-27 09:05:53 -0700319
Gaurav Shah435de2c2011-11-17 19:01:07 -0800320 bool connectable() const { return connectable_; }
Darin Petkovb2ba39f2012-06-06 10:33:43 +0200321 // TODO(petkov): Remove this method in favor of SetConnectable.
mukesh agrawal29c13a12011-11-24 00:09:19 +0000322 void set_connectable(bool connectable);
Darin Petkovb2ba39f2012-06-06 10:33:43 +0200323 // Sets the connectable property of the service. Broadcasts the new value and
324 // alerts the manager if necessary.
325 void SetConnectable(bool connectable);
Gaurav Shah435de2c2011-11-17 19:01:07 -0800326
Thieu Le67370f62012-02-14 23:01:42 +0000327 virtual bool explicitly_disconnected() const {
328 return explicitly_disconnected_;
329 }
330
Paul Stewart22aa71b2011-09-16 12:15:11 -0700331 bool favorite() const { return favorite_; }
mukesh agrawal00917ce2011-11-22 23:56:55 +0000332 // Setter is deliberately omitted; use MakeFavorite.
Paul Stewart22aa71b2011-09-16 12:15:11 -0700333
mukesh agrawal15908392011-11-16 18:29:25 +0000334 const std::string &friendly_name() const { return friendly_name_; }
Darin Petkov7f060332012-03-14 11:46:47 +0100335 void set_friendly_name(const std::string &n) { friendly_name_ = n; }
mukesh agrawal15908392011-11-16 18:29:25 +0000336
Paul Stewart4c561612012-03-21 12:49:01 -0700337 const std::string &guid() const { return guid_; }
338 void set_guid(const std::string &guid) { guid_ = guid; }
339
mukesh agrawalcf24a242012-05-21 16:46:11 -0700340 bool has_ever_connected() const { return has_ever_connected_; }
341
Paul Stewart22aa71b2011-09-16 12:15:11 -0700342 int32 priority() const { return priority_; }
343 void set_priority(int32 priority) { priority_ = priority; }
344
Paul Stewart1ca3e852011-11-04 07:50:49 -0700345 int32 security_level() const { return security_level_; }
346 void set_security_level(int32 security) { security_level_ = security; }
Paul Stewart22aa71b2011-09-16 12:15:11 -0700347
Darin Petkovd78ee7e2012-01-12 11:21:10 +0100348 void SetStrength(uint8 strength);
mukesh agrawale1d90e92012-02-15 17:36:08 -0800349
350 // uint8 streams out as a char. Coerce to a larger type, so that
351 // it prints as a number.
352 uint16 strength() const { return strength_; }
Paul Stewart22aa71b2011-09-16 12:15:11 -0700353
Gaurav Shah435de2c2011-11-17 19:01:07 -0800354 virtual Technology::Identifier technology() const { return technology_; }
Darin Petkov58f0b6d2012-06-12 12:52:30 +0200355 std::string GetTechnologyString() const;
Gaurav Shah435de2c2011-11-17 19:01:07 -0800356
Gaurav Shah10109f22011-11-11 20:16:22 -0800357 const EapCredentials &eap() const { return eap_; }
358 virtual void set_eap(const EapCredentials &eap);
359
Darin Petkovcb715292012-04-25 13:04:37 +0200360 bool save_credentials() const { return save_credentials_; }
361 void set_save_credentials(bool save) { save_credentials_ = save; }
362
Darin Petkov51489002011-08-18 13:13:20 -0700363 const std::string &error() const { return error_; }
364 void set_error(const std::string &error) { error_ = error; }
365
Gaurav Shahc6d6c722011-11-17 18:59:39 -0800366 static const char *ConnectFailureToString(const ConnectFailure &state);
367 static const char *ConnectStateToString(const ConnectState &state);
368
Paul Stewart22aa71b2011-09-16 12:15:11 -0700369 // Compare two services. Returns true if Service a should be displayed
370 // above Service b
371 static bool Compare(ServiceRefPtr a,
372 ServiceRefPtr b,
mukesh agrawalddc378f2012-02-17 18:26:20 -0800373 const std::vector<Technology::Identifier> &tech_order,
374 const char **reason);
Paul Stewart22aa71b2011-09-16 12:15:11 -0700375
Chris Masone34af2182011-08-22 11:59:36 -0700376 // These are defined in service.cc so that we don't have to include profile.h
Chris Masone9d779932011-08-25 16:33:41 -0700377 // TODO(cmasone): right now, these are here only so that we can get the
378 // profile name as a property. Can we store just the name, and then handle
379 // setting the profile for this service via |manager_|?
Chris Masone6791a432011-07-12 13:23:19 -0700380 const ProfileRefPtr &profile() const;
381 void set_profile(const ProfileRefPtr &p);
382
Paul Stewart4357f4e2012-04-26 17:39:26 -0700383 // Notification that occurs when a service now has profile data saved
384 // on its behalf. Some service types like WiFi can choose to register
385 // themselves at this point.
386 virtual void OnProfileConfigured() {}
387
Paul Stewartff14b022012-04-24 20:06:23 -0700388 // Notification that occurs when a single property has been changed via
389 // the RPC adaptor.
Paul Stewart81426132012-05-16 10:05:10 -0700390 virtual void OnPropertyChanged(const std::string &property);
Paul Stewartff14b022012-04-24 20:06:23 -0700391
Christopher Wiley0801d192012-09-24 11:57:15 -0700392 // Called by the manager once after a resume.
393 virtual void OnAfterResume();
394
mukesh agrawalde29fa82011-09-16 16:16:36 -0700395 PropertyStore *mutable_store() { return &store_; }
396 const PropertyStore &store() const { return store_; }
Paul Stewartdef189e2012-08-02 20:12:09 -0700397 StaticIPParameters *mutable_static_ip_parameters() {
398 return &static_ip_parameters_;
399 }
Paul Stewart1062d9d2012-04-27 10:42:27 -0700400 const StaticIPParameters &static_ip_parameters() const {
401 return static_ip_parameters_;
402 }
Chris Masone27c4aa52011-07-02 13:10:14 -0700403
mukesh agrawalb54601c2011-06-07 17:39:22 -0700404 protected:
Darin Petkov5eb05422012-05-11 15:45:25 +0200405 friend class base::RefCounted<Service>;
406
407 virtual ~Service();
408
Chris Masone34af2182011-08-22 11:59:36 -0700409 // Returns true if a character is allowed to be in a service storage id.
410 static bool LegalChar(char a) { return isalnum(a) || a == '_'; }
411
Darin Petkov31332412012-01-28 01:50:02 +0100412 // Returns true if a character is disallowed to be in a service storage id.
413 static bool IllegalChar(char a) { return !LegalChar(a); }
414
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800415 virtual std::string CalculateState(Error *error);
Darin Petkov58f0b6d2012-06-12 12:52:30 +0200416 std::string CalculateTechnology(Error *error);
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700417
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000418 // Returns whether this service is in a state conducive to auto-connect.
419 // This should include any tests used for computing connectable(),
420 // as well as other critera such as whether the device associated with
421 // this service is busy with another connection.
mukesh agrawalbf14e942012-03-02 14:36:34 -0800422 //
423 // If the service is not auto-connectable, |*reason| will be set to
424 // point to C-string explaining why the service is not auto-connectable.
425 virtual bool IsAutoConnectable(const char **reason) const;
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000426
mukesh agrawal292dc0f2012-01-26 18:02:46 -0800427 // HelpRegisterDerived*: Expose a property over RPC, with the name |name|.
428 //
429 // Reads of the property will be handled by invoking |get|.
430 // Writes to the property will be handled by invoking |set|.
431 // Clearing the property will be handled by PropertyStore.
mukesh agrawalffa3d042011-10-06 15:26:10 -0700432 void HelpRegisterDerivedBool(
433 const std::string &name,
Hristo Stefanoved2c28c2011-11-29 15:37:30 -0800434 bool(Service::*get)(Error *error),
435 void(Service::*set)(const bool &value, Error *error));
mukesh agrawalffa3d042011-10-06 15:26:10 -0700436 void HelpRegisterDerivedString(
437 const std::string &name,
Hristo Stefanoved2c28c2011-11-29 15:37:30 -0800438 std::string(Service::*get)(Error *error),
439 void(Service::*set)(const std::string &value, Error *error));
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800440 void HelpRegisterDerivedUint16(
441 const std::string &name,
442 uint16(Service::*get)(Error *error),
443 void(Service::*set)(const uint16 &value, Error *error));
Jason Glasgowacdc11f2012-03-30 14:12:22 -0400444 void HelpRegisterDerivedRpcIdentifier(
445 const std::string &name,
446 std::string(Service::*get)(Error *),
447 void(Service::*set)(const RpcIdentifier&, Error *));
mukesh agrawal292dc0f2012-01-26 18:02:46 -0800448 // Expose a property over RPC, with the name |name|.
449 //
450 // Reads of the property will be handled by invoking |get|.
451 // Writes to the property will be handled by invoking |set|.
452 //
453 // Clearing the property will be handled by invoking |clear|, or
454 // calling |set| with |default_value| (whichever is non-NULL). It
455 // is an error to call this method with both |clear| and
456 // |default_value| non-NULL.
457 void HelpRegisterWriteOnlyDerivedString(
458 const std::string &name,
459 void(Service::*set)(const std::string &value, Error *error),
460 void(Service::*clear)(Error *error),
461 const std::string *default_value);
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700462
Darin Petkovb72cf402011-11-22 14:51:39 +0100463 ServiceAdaptorInterface *adaptor() const { return adaptor_.get(); }
464
Darin Petkovba40dd32011-07-11 20:06:39 -0700465 // Assigns |value| to |key| in |storage| if |value| is non-empty and |save| is
466 // true. Otherwise, removes |key| from |storage|. If |crypted| is true, the
467 // value is encrypted.
468 void SaveString(StoreInterface *storage,
Chris Masone34af2182011-08-22 11:59:36 -0700469 const std::string &id,
Darin Petkovba40dd32011-07-11 20:06:39 -0700470 const std::string &key,
471 const std::string &value,
472 bool crypted,
473 bool save);
474
Chris Masone34af2182011-08-22 11:59:36 -0700475 void LoadEapCredentials(StoreInterface *storage, const std::string &id);
476 void SaveEapCredentials(StoreInterface *storage, const std::string &id);
Paul Stewartd8ad3c42012-01-09 12:39:38 -0800477 void UnloadEapCredentials();
Darin Petkovba40dd32011-07-11 20:06:39 -0700478
Paul Stewartcb59fed2012-03-21 21:14:46 -0700479 // Ignore |parameter| when performing a Configure() operation.
480 void IgnoreParameterForConfigure(const std::string &parameter);
481
Paul Stewartf2d60912012-07-15 08:37:30 -0700482 // Update the service's string-based "Error" RPC property based on the
483 // failure_ enum.
484 void UpdateErrorProperty();
485
Paul Stewartcf199de2012-08-16 07:50:41 -0700486 // RPC setter for the the "AutoConnect" property.
487 virtual void SetAutoConnect(const bool &connect, Error *error);
488
Paul Stewartac4ac002011-08-26 12:04:26 -0700489 // Property accessors reserved for subclasses
490 EventDispatcher *dispatcher() const { return dispatcher_; }
491 const std::string &GetEAPKeyManagement() const;
492 void SetEAPKeyManagement(const std::string &key_management);
Paul Stewart9f32d192012-01-30 20:37:50 -0800493 void SetEAPPassword(const std::string &password, Error *error);
494 void SetEAPPrivateKeyPassword(const std::string &password, Error *error);
Paul Stewart65512e12012-03-26 18:01:08 -0700495 Manager *manager() const { return manager_; }
Thieu Le48e6d6d2011-12-06 00:40:27 +0000496 Metrics *metrics() const { return metrics_; }
mukesh agrawalb54601c2011-06-07 17:39:22 -0700497
Darin Petkov1d0080a2012-04-30 17:10:36 +0200498 void set_favorite(bool favorite) { favorite_ = favorite; }
499
Paul Stewart75897df2011-04-27 09:05:53 -0700500 private:
Paul Stewartcf199de2012-08-16 07:50:41 -0700501 friend class EthernetServiceTest;
Thieu Le48e6d6d2011-12-06 00:40:27 +0000502 friend class MetricsTest;
Paul Stewart0756db92012-01-27 08:34:47 -0800503 friend class ServiceAdaptorInterface;
Darin Petkov5eb05422012-05-11 15:45:25 +0200504 friend class VPNServiceTest;
mukesh agrawale1d90e92012-02-15 17:36:08 -0800505 friend class WiFiServiceTest;
Darin Petkov6b9b2e12012-07-10 15:51:42 +0200506 friend class WiMaxServiceTest;
Christopher Wiley0801d192012-09-24 11:57:15 -0700507 FRIEND_TEST(AllMockServiceTest, AutoConnectWithFailures);
Ben Chan19f83972012-10-03 23:25:56 -0700508 FRIEND_TEST(CellularServiceTest, IsAutoConnectable);
mukesh agrawalcc0fded2012-05-09 13:40:58 -0700509 FRIEND_TEST(DeviceTest, IPConfigUpdatedFailureWithStatic);
Darin Petkov58f0b6d2012-06-12 12:52:30 +0200510 FRIEND_TEST(ServiceTest, CalculateState);
511 FRIEND_TEST(ServiceTest, CalculateTechnology);
Paul Stewartbc6e7392012-05-24 07:07:48 -0700512 FRIEND_TEST(ServiceTest, Certification);
Paul Stewartcb59fed2012-03-21 21:14:46 -0700513 FRIEND_TEST(ServiceTest, ConfigureIgnoredProperty);
514 FRIEND_TEST(ServiceTest, ConfigureStringProperty);
Darin Petkovba40dd32011-07-11 20:06:39 -0700515 FRIEND_TEST(ServiceTest, Constructor);
Paul Stewart10241e32012-04-23 18:15:06 -0700516 FRIEND_TEST(ServiceTest, GetIPConfigRpcIdentifier);
Thieu Le284fe792012-01-31 17:53:19 -0800517 FRIEND_TEST(ServiceTest, GetProperties);
mukesh agrawal76d13882012-01-12 15:23:11 -0800518 FRIEND_TEST(ServiceTest, IsAutoConnectable);
Paul Stewartd215af62012-04-24 23:25:50 -0700519 FRIEND_TEST(ServiceTest, RecheckPortal);
Darin Petkovba40dd32011-07-11 20:06:39 -0700520 FRIEND_TEST(ServiceTest, Save);
521 FRIEND_TEST(ServiceTest, SaveString);
522 FRIEND_TEST(ServiceTest, SaveStringCrypted);
523 FRIEND_TEST(ServiceTest, SaveStringDontSave);
524 FRIEND_TEST(ServiceTest, SaveStringEmpty);
mukesh agrawal6bb9e7c2012-01-30 14:57:54 -0800525 FRIEND_TEST(ServiceTest, SetProperty);
Paul Stewartd215af62012-04-24 23:25:50 -0700526 FRIEND_TEST(ServiceTest, SetCheckPortal);
Darin Petkovb2ba39f2012-06-06 10:33:43 +0200527 FRIEND_TEST(ServiceTest, SetConnectable);
mukesh agrawal568b5c62012-02-28 14:44:47 -0800528 FRIEND_TEST(ServiceTest, State);
Paul Stewartd8ad3c42012-01-09 12:39:38 -0800529 FRIEND_TEST(ServiceTest, Unload);
mukesh agrawalcf24a242012-05-21 16:46:11 -0700530 FRIEND_TEST(WiFiMainTest, SuspectCredentialsWPAPreviouslyConnected);
Christopher Wiley0801d192012-09-24 11:57:15 -0700531 FRIEND_TEST(WiFiTimerTest, ReconnectTimer);
Darin Petkovba40dd32011-07-11 20:06:39 -0700532
mukesh agrawalbf14e942012-03-02 14:36:34 -0800533 static const char kAutoConnConnected[];
534 static const char kAutoConnConnecting[];
535 static const char kAutoConnExplicitDisconnect[];
536 static const char kAutoConnNotConnectable[];
Christopher Wiley0801d192012-09-24 11:57:15 -0700537 static const char kAutoConnThrottled[];
mukesh agrawalbf14e942012-03-02 14:36:34 -0800538
Paul Stewartbc6e7392012-05-24 07:07:48 -0700539 static const size_t kEAPMaxCertificationElements;
540
Darin Petkov2f903b32012-04-18 12:56:43 +0200541 static const char kServiceSortAutoConnect[];
542 static const char kServiceSortConnectable[];
543 static const char kServiceSortFavorite[];
mukesh agrawalddc378f2012-02-17 18:26:20 -0800544 static const char kServiceSortIsConnected[];
545 static const char kServiceSortIsConnecting[];
546 static const char kServiceSortIsFailed[];
Paul Stewarta121c442012-06-09 14:12:58 -0700547 static const char kServiceSortIsPortalled[];
Darin Petkov2f903b32012-04-18 12:56:43 +0200548 static const char kServiceSortPriority[];
mukesh agrawalddc378f2012-02-17 18:26:20 -0800549 static const char kServiceSortSecurityEtc[];
Darin Petkov2f903b32012-04-18 12:56:43 +0200550 static const char kServiceSortTechnology[];
mukesh agrawalddc378f2012-02-17 18:26:20 -0800551 static const char kServiceSortUniqueName[];
552
Christopher Wiley0801d192012-09-24 11:57:15 -0700553 static const uint64 kMaxAutoConnectCooldownTimeMilliseconds;
554 static const uint64 kMinAutoConnectCooldownTimeMilliseconds;
555 static const uint64 kAutoConnectCooldownBackoffFactor;
556
Thieu Le284fe792012-01-31 17:53:19 -0800557 bool GetAutoConnect(Error *error);
Thieu Le284fe792012-01-31 17:53:19 -0800558
Paul Stewartd215af62012-04-24 23:25:50 -0700559 std::string GetCheckPortal(Error *error);
560 void SetCheckPortal(const std::string &check_portal, Error *error);
561
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800562 virtual std::string GetDeviceRpcId(Error *error) = 0;
Chris Masone95207da2011-06-29 16:50:49 -0700563
Paul Stewart10241e32012-04-23 18:15:06 -0700564 std::string GetIPConfigRpcIdentifier(Error *error);
565
Paul Stewart0c438332012-04-11 07:55:27 -0700566 std::string GetNameProperty(Error *error);
567 void AssertTrivialSetNameProperty(const std::string &name, Error *error);
568
Paul Stewart1b1a7f22012-01-06 16:24:06 -0800569 std::string GetProfileRpcId(Error *error);
570 void SetProfileRpcId(const std::string &profile, Error *error);
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700571
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800572 // Returns TCP port of service's HTTP proxy in host order.
573 uint16 GetHTTPProxyPort(Error *error);
574
Christopher Wiley0801d192012-09-24 11:57:15 -0700575 void ReEnableAutoConnectTask();
576 // Disables autoconnect and posts a task to re-enable it after a cooldown.
577 // Note that autoconnect could be disabled for other reasons as well.
578 void ThrottleFutureAutoConnects();
579
mukesh agrawalcf24a242012-05-21 16:46:11 -0700580 // Saves settings to profile, if we have one. Unlike
581 // SaveServiceToProfile, SaveToProfile never assigns this service
582 // into a profile.
583 void SaveToProfile();
584
Paul Stewart22aa71b2011-09-16 12:15:11 -0700585 // Utility function that returns true if a is different from b. When they
586 // are, "decision" is populated with the boolean value of "a > b".
587 static bool DecideBetween(int a, int b, bool *decision);
588
Paul Stewartac4ac002011-08-26 12:04:26 -0700589 ConnectState state_;
590 ConnectFailure failure_;
591 bool auto_connect_;
592 std::string check_portal_;
593 bool connectable_;
594 std::string error_;
mukesh agrawaladb68482012-01-17 16:31:51 -0800595 bool explicitly_disconnected_;
Paul Stewartac4ac002011-08-26 12:04:26 -0700596 bool favorite_;
597 int32 priority_;
Paul Stewart1ca3e852011-11-04 07:50:49 -0700598 int32 security_level_;
Darin Petkovd78ee7e2012-01-12 11:21:10 +0100599 uint8 strength_;
Paul Stewartac4ac002011-08-26 12:04:26 -0700600 std::string proxy_config_;
Paul Stewart987e71e2011-12-05 09:45:06 -0800601 std::string ui_data_;
Paul Stewart4c561612012-03-21 12:49:01 -0700602 std::string guid_;
Paul Stewartac4ac002011-08-26 12:04:26 -0700603 bool save_credentials_;
604 EapCredentials eap_; // Only saved if |save_credentials_| is true.
Gaurav Shah435de2c2011-11-17 19:01:07 -0800605 Technology::Identifier technology_;
mukesh agrawal568b5c62012-02-28 14:44:47 -0800606 // The time of the most recent failure. Value is 0 if the service is
607 // not currently failed.
608 time_t failed_time_;
mukesh agrawalcf24a242012-05-21 16:46:11 -0700609 // Whether or not this service has ever reached kStateConnected.
610 bool has_ever_connected_;
Paul Stewartac4ac002011-08-26 12:04:26 -0700611
Christopher Wiley0801d192012-09-24 11:57:15 -0700612 base::CancelableClosure reenable_auto_connect_task_;
613 uint64 auto_connect_cooldown_milliseconds_ ;
614
Paul Stewartac4ac002011-08-26 12:04:26 -0700615 ProfileRefPtr profile_;
616 PropertyStore store_;
Paul Stewartcb59fed2012-03-21 21:14:46 -0700617 std::set<std::string> parameters_ignored_for_configure_;
Paul Stewartac4ac002011-08-26 12:04:26 -0700618
619 EventDispatcher *dispatcher_;
mukesh agrawal51a7e932011-07-27 16:18:26 -0700620 static unsigned int serial_number_;
mukesh agrawald835b202011-10-07 15:26:47 -0700621 std::string unique_name_; // MUST be unique amongst service instances
622 std::string friendly_name_; // MAY be same as |unique_name_|
Paul Stewartba41b992011-05-26 07:02:46 -0700623 scoped_ptr<ServiceAdaptorInterface> adaptor_;
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800624 scoped_ptr<HTTPProxy> http_proxy_;
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800625 ConnectionRefPtr connection_;
Paul Stewart1062d9d2012-04-27 10:42:27 -0700626 StaticIPParameters static_ip_parameters_;
Thieu Le3426c8f2012-01-11 17:35:11 -0800627 Metrics *metrics_;
Chris Masone6791a432011-07-12 13:23:19 -0700628 Manager *manager_;
Darin Petkov5eb05422012-05-11 15:45:25 +0200629 scoped_ptr<Sockets> sockets_;
Christopher Wiley0801d192012-09-24 11:57:15 -0700630 base::WeakPtrFactory<Service> weak_ptr_factory_;
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700631
mukesh agrawalb54601c2011-06-07 17:39:22 -0700632 DISALLOW_COPY_AND_ASSIGN(Service);
Paul Stewart75897df2011-04-27 09:05:53 -0700633};
634
635} // namespace shill
636
Ben Chan19f83972012-10-03 23:25:56 -0700637#endif // SHILL_SERVICE_H_