blob: e579a05e476dd7a3adb6a82b7e1887680ef25c95 [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
Chris Masone2b105542011-06-22 10:58:09 -07005#include "shill/device.h"
6
mukesh agrawal5c4dd0b2011-09-14 13:53:14 -07007#include <netinet/in.h>
8#include <linux/if.h> // Needs definitions from netinet/in.h
Paul Stewart75897df2011-04-27 09:05:53 -07009#include <stdio.h>
mukesh agrawal5c4dd0b2011-09-14 13:53:14 -070010#include <time.h>
Chris Masoneee929b72011-05-10 10:02:18 -070011
Paul Stewart75897df2011-04-27 09:05:53 -070012#include <string>
Chris Masone8fe2c7e2011-06-09 15:51:19 -070013#include <vector>
Paul Stewart75897df2011-04-27 09:05:53 -070014
Eric Shienbrood3e20a232012-02-16 11:35:56 -050015#include <base/bind.h>
Paul Stewart2bf1d352011-12-06 15:02:55 -080016#include <base/file_util.h>
Chris Masone487b8bf2011-05-13 16:27:57 -070017#include <base/memory/ref_counted.h>
Chris Masone5dec5f42011-07-22 14:07:55 -070018#include <base/stringprintf.h>
Chris Masone3bd3c8c2011-06-13 08:20:26 -070019#include <chromeos/dbus/service_constants.h>
Chris Masoneee929b72011-05-10 10:02:18 -070020
Paul Stewarte6132022011-08-16 09:11:02 -070021#include "shill/connection.h"
Paul Stewart75897df2011-04-27 09:05:53 -070022#include "shill/control_interface.h"
Chris Masoned7732e42011-05-20 11:08:56 -070023#include "shill/device_dbus_adaptor.h"
Chris Masone2b105542011-06-22 10:58:09 -070024#include "shill/dhcp_config.h"
Darin Petkovafa6fc42011-06-21 16:21:08 -070025#include "shill/dhcp_provider.h"
Chris Masone8fe2c7e2011-06-09 15:51:19 -070026#include "shill/error.h"
Paul Stewart26b327e2011-10-19 11:38:09 -070027#include "shill/event_dispatcher.h"
Paul Stewartf65320c2011-10-13 14:34:52 -070028#include "shill/http_proxy.h"
Paul Stewart036dba02012-08-07 12:34:41 -070029#include "shill/link_monitor.h"
Christopher Wileyb691efd2012-08-09 13:51:51 -070030#include "shill/logging.h"
Chris Masone8fe2c7e2011-06-09 15:51:19 -070031#include "shill/manager.h"
Thieu Le85e050b2012-03-13 15:04:38 -070032#include "shill/metrics.h"
Chris Masone95207da2011-06-29 16:50:49 -070033#include "shill/property_accessor.h"
Chris Masone2b105542011-06-22 10:58:09 -070034#include "shill/refptr_types.h"
Paul Stewartc39f1132011-06-22 12:02:28 -070035#include "shill/rtnl_handler.h"
Chris Masone2b105542011-06-22 10:58:09 -070036#include "shill/service.h"
Chris Masone5dec5f42011-07-22 14:07:55 -070037#include "shill/store_interface.h"
Gaurav Shah435de2c2011-11-17 19:01:07 -080038#include "shill/technology.h"
Paul Stewart75897df2011-04-27 09:05:53 -070039
Eric Shienbrood3e20a232012-02-16 11:35:56 -050040using base::Bind;
Chris Masone5dec5f42011-07-22 14:07:55 -070041using base::StringPrintf;
Chris Masone8fe2c7e2011-06-09 15:51:19 -070042using std::string;
43using std::vector;
44
Paul Stewart75897df2011-04-27 09:05:53 -070045namespace shill {
Chris Masone5dec5f42011-07-22 14:07:55 -070046
47// static
Paul Stewart2bf1d352011-12-06 15:02:55 -080048const char Device::kIPFlagTemplate[] = "/proc/sys/net/%s/conf/%s/%s";
49// static
50const char Device::kIPFlagVersion4[] = "ipv4";
51// static
52const char Device::kIPFlagVersion6[] = "ipv6";
53// static
54const char Device::kIPFlagDisableIPv6[] = "disable_ipv6";
55// static
56const char Device::kIPFlagUseTempAddr[] = "use_tempaddr";
57// static
58const char Device::kIPFlagUseTempAddrUsedAndDefault[] = "2";
Paul Stewartc8f4bef2011-12-13 09:45:51 -080059// static
60const char Device::kIPFlagReversePathFilter[] = "rp_filter";
61// static
62const char Device::kIPFlagReversePathFilterEnabled[] = "1";
63// static
64const char Device::kIPFlagReversePathFilterLooseMode[] = "2";
Paul Stewart2bf1d352011-12-06 15:02:55 -080065// static
Chris Masone5dec5f42011-07-22 14:07:55 -070066const char Device::kStoragePowered[] = "Powered";
Chris Masone5dec5f42011-07-22 14:07:55 -070067// static
68const char Device::kStorageIPConfigs[] = "IPConfigs";
Paul Stewart6ff27f52012-07-11 06:51:41 -070069// static
70const char Device::kStorageReceiveByteCount[] = "ReceiveByteCount";
71// static
72const char Device::kStorageTransmitByteCount[] = "TransmitByteCount";
Chris Masone5dec5f42011-07-22 14:07:55 -070073
Paul Stewart75897df2011-04-27 09:05:53 -070074Device::Device(ControlInterface *control_interface,
Paul Stewartb50f0b92011-05-16 16:31:42 -070075 EventDispatcher *dispatcher,
Thieu Le3426c8f2012-01-11 17:35:11 -080076 Metrics *metrics,
Paul Stewartf1ce5d22011-05-19 13:10:20 -070077 Manager *manager,
Darin Petkovafa6fc42011-06-21 16:21:08 -070078 const string &link_name,
Chris Masone626719f2011-08-18 16:58:48 -070079 const string &address,
Gaurav Shah435de2c2011-11-17 19:01:07 -080080 int interface_index,
81 Technology::Identifier technology)
Eric Shienbrood9a245532012-03-07 14:20:39 -050082 : enabled_(false),
83 enabled_persistent_(true),
84 enabled_pending_(enabled_),
Chris Masoneb925cc82011-06-22 15:39:57 -070085 reconnect_(true),
Chris Masone626719f2011-08-18 16:58:48 -070086 hardware_address_(address),
mukesh agrawalf60e4062011-05-27 13:13:41 -070087 interface_index_(interface_index),
88 running_(false),
Darin Petkovafa6fc42011-06-21 16:21:08 -070089 link_name_(link_name),
Chris Masone19e30402011-07-19 15:48:47 -070090 unique_id_(link_name),
Darin Petkovd9661952011-08-03 16:25:42 -070091 control_interface_(control_interface),
92 dispatcher_(dispatcher),
Thieu Le3426c8f2012-01-11 17:35:11 -080093 metrics_(metrics),
Chris Masone7df0c672011-07-15 10:24:54 -070094 manager_(manager),
Eric Shienbrood9a245532012-03-07 14:20:39 -050095 weak_ptr_factory_(this),
Darin Petkov77cb6812011-08-15 16:19:41 -070096 adaptor_(control_interface->CreateDeviceAdaptor(this)),
Eric Shienbrood9a245532012-03-07 14:20:39 -050097 portal_detector_callback_(Bind(&Device::PortalDetectorCallback,
98 weak_ptr_factory_.GetWeakPtr())),
Gaurav Shah435de2c2011-11-17 19:01:07 -080099 technology_(technology),
Thieu Le85e050b2012-03-13 15:04:38 -0700100 portal_attempts_to_online_(0),
Paul Stewart6ff27f52012-07-11 06:51:41 -0700101 receive_byte_offset_(0),
102 transmit_byte_offset_(0),
mukesh agrawal5c4dd0b2011-09-14 13:53:14 -0700103 dhcp_provider_(DHCPProvider::GetInstance()),
104 rtnl_handler_(RTNLHandler::GetInstance()) {
Chris Masone27c4aa52011-07-02 13:10:14 -0700105 store_.RegisterConstString(flimflam::kAddressProperty, &hardware_address_);
Chris Masone4d42df82011-07-02 17:09:39 -0700106
107 // flimflam::kBgscanMethodProperty: Registered in WiFi
108 // flimflam::kBgscanShortIntervalProperty: Registered in WiFi
109 // flimflam::kBgscanSignalThresholdProperty: Registered in WiFi
110
111 // flimflam::kCellularAllowRoamingProperty: Registered in Cellular
112 // flimflam::kCarrierProperty: Registered in Cellular
113 // flimflam::kEsnProperty: Registered in Cellular
Darin Petkov3335b372011-08-22 11:05:32 -0700114 // flimflam::kHomeProviderProperty: Registered in Cellular
Chris Masone4d42df82011-07-02 17:09:39 -0700115 // flimflam::kImeiProperty: Registered in Cellular
Ben Chana5e27082012-07-31 14:30:28 -0700116 // flimflam::kIccidProperty: Registered in Cellular
Chris Masone4d42df82011-07-02 17:09:39 -0700117 // flimflam::kImsiProperty: Registered in Cellular
118 // flimflam::kManufacturerProperty: Registered in Cellular
119 // flimflam::kMdnProperty: Registered in Cellular
120 // flimflam::kMeidProperty: Registered in Cellular
121 // flimflam::kMinProperty: Registered in Cellular
122 // flimflam::kModelIDProperty: Registered in Cellular
123 // flimflam::kFirmwareRevisionProperty: Registered in Cellular
124 // flimflam::kHardwareRevisionProperty: Registered in Cellular
125 // flimflam::kPRLVersionProperty: Registered in Cellular
126 // flimflam::kSIMLockStatusProperty: Registered in Cellular
127 // flimflam::kFoundNetworksProperty: Registered in Cellular
Darin Petkove9d12e02011-07-27 15:09:37 -0700128 // flimflam::kDBusConnectionProperty: Registered in Cellular
129 // flimflam::kDBusObjectProperty: Register in Cellular
Chris Masone4d42df82011-07-02 17:09:39 -0700130
Jason Glasgowe8334fd2012-03-30 16:02:37 -0400131 store_.RegisterConstString(flimflam::kInterfaceProperty, &link_name_);
Jason Glasgow08afdff2012-04-03 10:22:26 -0400132 HelpRegisterConstDerivedRpcIdentifiers(flimflam::kIPConfigsProperty,
133 &Device::AvailableIPConfigs);
Chris Masone27c4aa52011-07-02 13:10:14 -0700134 store_.RegisterConstString(flimflam::kNameProperty, &link_name_);
Eric Shienbrood9a245532012-03-07 14:20:39 -0500135 store_.RegisterConstBool(flimflam::kPoweredProperty, &enabled_);
Jason Glasgowb5790052012-01-27 01:03:52 -0500136 HelpRegisterDerivedString(flimflam::kTypeProperty,
137 &Device::GetTechnologyString,
138 NULL);
Paul Stewart036dba02012-08-07 12:34:41 -0700139 HelpRegisterConstDerivedUint64(shill::kLinkMonitorResponseTimeProperty,
140 &Device::GetLinkMonitorResponseTime);
Jason Glasgowb5790052012-01-27 01:03:52 -0500141
Chris Masoneb925cc82011-06-22 15:39:57 -0700142 // TODO(cmasone): Chrome doesn't use this...does anyone?
Chris Masone27c4aa52011-07-02 13:10:14 -0700143 // store_.RegisterConstBool(flimflam::kReconnectProperty, &reconnect_);
Chris Masoneb925cc82011-06-22 15:39:57 -0700144
Chris Masone4e851612011-07-01 10:46:53 -0700145 // TODO(cmasone): Figure out what shill concept maps to flimflam's "Network".
Chris Masoneb925cc82011-06-22 15:39:57 -0700146 // known_properties_.push_back(flimflam::kNetworksProperty);
147
Chris Masone4d42df82011-07-02 17:09:39 -0700148 // flimflam::kScanningProperty: Registered in WiFi, Cellular
149 // flimflam::kScanIntervalProperty: Registered in WiFi, Cellular
Paul Stewart6ff27f52012-07-11 06:51:41 -0700150
151 if (manager_ && manager_->device_info()) { // Unit tests may not have these.
152 manager_->device_info()->GetByteCounts(
153 interface_index_, &receive_byte_offset_, &transmit_byte_offset_);
154 HelpRegisterConstDerivedUint64(shill::kReceiveByteCountProperty,
155 &Device::GetReceiveByteCount);
156 HelpRegisterConstDerivedUint64(shill::kTransmitByteCountProperty,
157 &Device::GetTransmitByteCount);
158 }
159
Darin Petkova0a0efe2012-06-27 12:50:01 +0200160 LOG(INFO) << "Device created: " << link_name_
161 << " index " << interface_index_;
Paul Stewart75897df2011-04-27 09:05:53 -0700162}
163
164Device::~Device() {
Darin Petkova0a0efe2012-06-27 12:50:01 +0200165 LOG(INFO) << "Device destructed: " << link_name_
166 << " index " << interface_index_;
Paul Stewart75897df2011-04-27 09:05:53 -0700167}
168
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700169void Device::LinkEvent(unsigned flags, unsigned change) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700170 SLOG(Device, 2) << "Device " << link_name_
171 << std::showbase << std::hex
172 << " flags " << flags << " changed " << change
173 << std::dec << std::noshowbase;
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700174}
175
Darin Petkovc0865312011-09-16 15:31:20 -0700176void Device::Scan(Error *error) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700177 SLOG(Device, 2) << "Device " << link_name_ << " scan requested.";
Paul Stewartbe005172011-11-02 18:10:29 -0700178 Error::PopulateAndLog(error, Error::kNotSupported,
179 "Device doesn't support scan.");
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700180}
181
Eric Shienbrood9a245532012-03-07 14:20:39 -0500182void Device::RegisterOnNetwork(const std::string &/*network_id*/, Error *error,
183 const ResultCallback &/*callback*/) {
184 Error::PopulateAndLog(error, Error::kNotSupported,
Paul Stewartbe005172011-11-02 18:10:29 -0700185 "Device doesn't support network registration.");
Darin Petkov9ae310f2011-08-30 15:41:13 -0700186}
187
Darin Petkovc64fe5e2012-01-11 12:46:13 +0100188void Device::RequirePIN(
Eric Shienbrood9a245532012-03-07 14:20:39 -0500189 const string &/*pin*/, bool /*require*/,
190 Error *error, const ResultCallback &/*callback*/) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700191 SLOG(Device, 2) << __func__;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500192 Error::PopulateAndLog(error, Error::kNotSupported,
193 "Device doesn't support RequirePIN.");
Darin Petkove42e1012011-08-31 12:35:04 -0700194}
195
Eric Shienbrood9a245532012-03-07 14:20:39 -0500196void Device::EnterPIN(const string &/*pin*/,
197 Error *error, const ResultCallback &/*callback*/) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700198 SLOG(Device, 2) << __func__;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500199 Error::PopulateAndLog(error, Error::kNotSupported,
200 "Device doesn't support EnterPIN.");
Darin Petkove42e1012011-08-31 12:35:04 -0700201}
202
mukesh agrawal1830fa12011-09-26 14:31:40 -0700203void Device::UnblockPIN(const string &/*unblock_code*/,
204 const string &/*pin*/,
Eric Shienbrood9a245532012-03-07 14:20:39 -0500205 Error *error, const ResultCallback &/*callback*/) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700206 SLOG(Device, 2) << __func__;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500207 Error::PopulateAndLog(error, Error::kNotSupported,
208 "Device doesn't support UnblockPIN.");
Darin Petkove42e1012011-08-31 12:35:04 -0700209}
210
mukesh agrawal1830fa12011-09-26 14:31:40 -0700211void Device::ChangePIN(const string &/*old_pin*/,
212 const string &/*new_pin*/,
Eric Shienbrood9a245532012-03-07 14:20:39 -0500213 Error *error, const ResultCallback &/*callback*/) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700214 SLOG(Device, 2) << __func__;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500215 Error::PopulateAndLog(error, Error::kNotSupported,
216 "Device doesn't support ChangePIN.");
Darin Petkove42e1012011-08-31 12:35:04 -0700217}
218
Darin Petkovc37a9c42012-09-06 15:28:22 +0200219void Device::SetCarrier(const string &/*carrier*/,
220 Error *error, const ResultCallback &/*callback*/) {
221 SLOG(Device, 2) << __func__;
222 Error::PopulateAndLog(error, Error::kNotSupported,
223 "Device doesn't support SetCarrier.");
224}
225
Paul Stewart2bf1d352011-12-06 15:02:55 -0800226void Device::DisableIPv6() {
227 SetIPFlag(IPAddress::kFamilyIPv6, kIPFlagDisableIPv6, "1");
228}
229
230void Device::EnableIPv6() {
231 SetIPFlag(IPAddress::kFamilyIPv6, kIPFlagDisableIPv6, "0");
232}
233
234void Device::EnableIPv6Privacy() {
235 SetIPFlag(IPAddress::kFamilyIPv6, kIPFlagUseTempAddr,
236 kIPFlagUseTempAddrUsedAndDefault);
237}
238
Paul Stewartc8f4bef2011-12-13 09:45:51 -0800239void Device::DisableReversePathFilter() {
240 // TODO(pstew): Current kernel doesn't offer reverse-path filtering flag
241 // for IPv6. crosbug.com/24228
242 SetIPFlag(IPAddress::kFamilyIPv4, kIPFlagReversePathFilter,
243 kIPFlagReversePathFilterLooseMode);
244}
245
246void Device::EnableReversePathFilter() {
247 SetIPFlag(IPAddress::kFamilyIPv4, kIPFlagReversePathFilter,
248 kIPFlagReversePathFilterEnabled);
249}
250
Gaurav Shah435de2c2011-11-17 19:01:07 -0800251bool Device::IsConnected() const {
252 if (selected_service_)
253 return selected_service_->IsConnected();
254 return false;
255}
256
Paul Stewartd215af62012-04-24 23:25:50 -0700257bool Device::IsConnectedToService(const ServiceRefPtr &service) const {
258 return service == selected_service_ && IsConnected();
259}
260
Chris Masone27c4aa52011-07-02 13:10:14 -0700261string Device::GetRpcIdentifier() {
262 return adaptor_->GetRpcIdentifier();
Chris Masone8fe2c7e2011-06-09 15:51:19 -0700263}
264
Chris Masone5dec5f42011-07-22 14:07:55 -0700265string Device::GetStorageIdentifier() {
266 string id = GetRpcIdentifier();
267 ControlInterface::RpcIdToStorageId(&id);
Chris Masone626719f2011-08-18 16:58:48 -0700268 size_t needle = id.find('_');
Chris Masone34af2182011-08-22 11:59:36 -0700269 DLOG_IF(ERROR, needle == string::npos) << "No _ in storage id?!?!";
Chris Masone626719f2011-08-18 16:58:48 -0700270 id.replace(id.begin() + needle + 1, id.end(), hardware_address_);
Chris Masone5dec5f42011-07-22 14:07:55 -0700271 return id;
272}
273
Jason Glasgowb5790052012-01-27 01:03:52 -0500274string Device::GetTechnologyString(Error */*error*/) {
275 return Technology::NameFromIdentifier(technology());
276}
277
Chris Masone19e30402011-07-19 15:48:47 -0700278const string& Device::FriendlyName() const {
Chris Masone7df0c672011-07-15 10:24:54 -0700279 return link_name_;
Darin Petkovafa6fc42011-06-21 16:21:08 -0700280}
281
Chris Masone19e30402011-07-19 15:48:47 -0700282const string& Device::UniqueName() const {
283 return unique_id_;
284}
285
Chris Masone5dec5f42011-07-22 14:07:55 -0700286bool Device::Load(StoreInterface *storage) {
287 const string id = GetStorageIdentifier();
288 if (!storage->ContainsGroup(id)) {
289 LOG(WARNING) << "Device is not available in the persistent store: " << id;
290 return false;
291 }
Eric Shienbrood9a245532012-03-07 14:20:39 -0500292 enabled_persistent_ = true;
293 storage->GetBool(id, kStoragePowered, &enabled_persistent_);
Paul Stewart6ff27f52012-07-11 06:51:41 -0700294 uint64 rx_byte_count = 0, tx_byte_count = 0;
295
296 manager_->device_info()->GetByteCounts(
297 interface_index_, &rx_byte_count, &tx_byte_count);
298 // If there is a byte-count present in the profile, the return value
299 // of Device::Get*ByteCount() should be the this stored value plus
300 // whatever additional bytes we receive since time-of-load. We
301 // accomplish this by the subtractions below, which can validly
302 // roll over "negative" in the subtractions below and in Get*ByteCount.
303 uint64 profile_byte_count;
304 if (storage->GetUint64(id, kStorageReceiveByteCount, &profile_byte_count)) {
305 receive_byte_offset_ = rx_byte_count - profile_byte_count;
306 }
307 if (storage->GetUint64(id, kStorageTransmitByteCount, &profile_byte_count)) {
308 transmit_byte_offset_ = tx_byte_count - profile_byte_count;
309 }
310
Chris Masone5dec5f42011-07-22 14:07:55 -0700311 return true;
312}
313
314bool Device::Save(StoreInterface *storage) {
315 const string id = GetStorageIdentifier();
Eric Shienbrood9a245532012-03-07 14:20:39 -0500316 storage->SetBool(id, kStoragePowered, enabled_persistent_);
Chris Masone34af2182011-08-22 11:59:36 -0700317 if (ipconfig_.get()) {
318 // The _0 is an index into the list of IPConfigs that this device might
319 // have. We only have one IPConfig right now, and I hope to never have
320 // to support more, as sleffler indicates that associating IPConfigs
321 // with devices is wrong and due to be changed in flimflam anyhow.
322 string suffix = hardware_address_ + "_0";
323 ipconfig_->Save(storage, suffix);
324 storage->SetString(id, kStorageIPConfigs, SerializeIPConfigs(suffix));
325 }
Paul Stewart6ff27f52012-07-11 06:51:41 -0700326 storage->SetUint64(id, kStorageReceiveByteCount, GetReceiveByteCount(NULL));
327 storage->SetUint64(id, kStorageTransmitByteCount, GetTransmitByteCount(NULL));
Chris Masone5dec5f42011-07-22 14:07:55 -0700328 return true;
329}
330
mukesh agrawal784566d2012-08-08 18:32:58 -0700331void Device::OnBeforeSuspend() {
332 // Nothing to be done in the general case.
333}
334
335void Device::OnAfterResume() {
336 if (ipconfig_) {
337 SLOG(Device, 3) << "Renewing IP address on resume.";
338 ipconfig_->RenewIP();
339 }
340}
341
Darin Petkov2b8e44e2012-06-25 15:13:26 +0200342void Device::DropConnection() {
343 SLOG(Device, 2) << __func__;
344 DestroyIPConfig();
345 SelectService(NULL);
346}
347
Darin Petkovafa6fc42011-06-21 16:21:08 -0700348void Device::DestroyIPConfig() {
Paul Stewart2bf1d352011-12-06 15:02:55 -0800349 DisableIPv6();
Darin Petkovafa6fc42011-06-21 16:21:08 -0700350 if (ipconfig_.get()) {
351 ipconfig_->ReleaseIP();
352 ipconfig_ = NULL;
353 }
Paul Stewarte6132022011-08-16 09:11:02 -0700354 DestroyConnection();
Darin Petkovafa6fc42011-06-21 16:21:08 -0700355}
356
Paul Stewart2bf1d352011-12-06 15:02:55 -0800357bool Device::AcquireIPConfig() {
Paul Stewartd408fdf2012-05-07 17:15:57 -0700358 return AcquireIPConfigWithLeaseName(string());
359}
360
361bool Device::AcquireIPConfigWithLeaseName(const string &lease_name) {
Darin Petkovafa6fc42011-06-21 16:21:08 -0700362 DestroyIPConfig();
Paul Stewart2bf1d352011-12-06 15:02:55 -0800363 EnableIPv6();
Paul Stewartd408fdf2012-05-07 17:15:57 -0700364 ipconfig_ = dhcp_provider_->CreateConfig(link_name_,
365 manager_->GetHostName(),
366 lease_name,
367 manager_->GetArpGateway());
Eric Shienbrood9a245532012-03-07 14:20:39 -0500368 ipconfig_->RegisterUpdateCallback(Bind(&Device::OnIPConfigUpdated,
369 weak_ptr_factory_.GetWeakPtr()));
Paul Stewart1062d9d2012-04-27 10:42:27 -0700370 dispatcher_->PostTask(Bind(&Device::ConfigureStaticIPTask,
371 weak_ptr_factory_.GetWeakPtr()));
Darin Petkovafa6fc42011-06-21 16:21:08 -0700372 return ipconfig_->RequestIP();
373}
374
Jason Glasgowb5790052012-01-27 01:03:52 -0500375void Device::HelpRegisterDerivedString(
376 const string &name,
377 string(Device::*get)(Error *error),
378 void(Device::*set)(const string &value, Error *error)) {
379 store_.RegisterDerivedString(
380 name,
381 StringAccessor(new CustomAccessor<Device, string>(this, get, set)));
382}
383
mukesh agrawalffa3d042011-10-06 15:26:10 -0700384void Device::HelpRegisterDerivedStrings(
385 const string &name,
Eric Shienbrood9a245532012-03-07 14:20:39 -0500386 Strings(Device::*get)(Error *error),
387 void(Device::*set)(const Strings &value, Error *error)) {
Chris Masone27c4aa52011-07-02 13:10:14 -0700388 store_.RegisterDerivedStrings(
389 name,
390 StringsAccessor(new CustomAccessor<Device, Strings>(this, get, set)));
Chris Masone4e851612011-07-01 10:46:53 -0700391}
392
Jason Glasgow08afdff2012-04-03 10:22:26 -0400393void Device::HelpRegisterConstDerivedRpcIdentifiers(
394 const string &name,
395 RpcIdentifiers(Device::*get)(Error *)) {
396 store_.RegisterDerivedRpcIdentifiers(
397 name,
398 RpcIdentifiersAccessor(
399 new CustomAccessor<Device, RpcIdentifiers>(this, get, NULL)));
400}
401
Paul Stewart6ff27f52012-07-11 06:51:41 -0700402void Device::HelpRegisterConstDerivedUint64(
403 const string &name,
404 uint64(Device::*get)(Error *)) {
405 store_.RegisterDerivedUint64(
406 name,
407 Uint64Accessor(
408 new CustomAccessor<Device, uint64>(this, get, NULL)));
409}
410
Paul Stewart1062d9d2012-04-27 10:42:27 -0700411void Device::ConfigureStaticIPTask() {
412 SLOG(Device, 2) << __func__ << " selected_service " << selected_service_.get()
413 << " ipconfig " << ipconfig_.get();
414
415 if (!selected_service_ || !ipconfig_) {
416 return;
417 }
418
419 const StaticIPParameters &static_ip_parameters =
420 selected_service_->static_ip_parameters();
421 if (static_ip_parameters.ContainsAddress()) {
422 SLOG(Device, 2) << __func__ << " " << " configuring static IP parameters.";
423 // If the parameters contain an IP address, apply them now and bring
424 // the interface up. When DHCP information arrives, it will supplement
425 // the static information.
426 OnIPConfigUpdated(ipconfig_, true);
427 } else {
428 SLOG(Device, 2) << __func__ << " " << " no static IP address.";
429 }
430}
431
Darin Petkov79d74c92012-03-07 17:20:32 +0100432void Device::OnIPConfigUpdated(const IPConfigRefPtr &ipconfig, bool success) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700433 SLOG(Device, 2) << __func__ << " " << " success: " << success;
Paul Stewartc39f1132011-06-22 12:02:28 -0700434 if (success) {
Paul Stewarte6132022011-08-16 09:11:02 -0700435 CreateConnection();
Paul Stewart1062d9d2012-04-27 10:42:27 -0700436 if (selected_service_) {
437 ipconfig->ApplyStaticIPParameters(
Paul Stewartdef189e2012-08-02 20:12:09 -0700438 selected_service_->mutable_static_ip_parameters());
Paul Stewart1062d9d2012-04-27 10:42:27 -0700439 }
Paul Stewarte6132022011-08-16 09:11:02 -0700440 connection_->UpdateFromIPConfig(ipconfig);
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800441 // SetConnection must occur after the UpdateFromIPConfig so the
442 // service can use the values derived from the connection.
Paul Stewart1062d9d2012-04-27 10:42:27 -0700443 if (selected_service_) {
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800444 selected_service_->SetConnection(connection_);
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800445 }
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800446 // The service state change needs to happen last, so that at the
447 // time we report the state change to the manager, the service
448 // has its connection.
449 SetServiceState(Service::kStateConnected);
Thieu Le85e050b2012-03-13 15:04:38 -0700450 portal_attempts_to_online_ = 0;
Paul Stewart20088d82012-02-16 06:58:55 -0800451 // Subtle: Start portal detection after transitioning the service
452 // to the Connected state because this call may immediately transition
453 // to the Online state.
Thieu Led1760922012-09-11 14:15:35 -0700454 if (selected_service_) {
455 StartPortalDetection();
456 }
Paul Stewart036dba02012-08-07 12:34:41 -0700457 StartLinkMonitor();
Paul Stewarte6132022011-08-16 09:11:02 -0700458 } else {
mukesh agrawalcc0fded2012-05-09 13:40:58 -0700459 // TODO(pstew): This logic gets yet more complex when multiple
460 // IPConfig types are run in parallel (e.g. DHCP and DHCP6)
461 if (selected_service_ &&
462 selected_service_->static_ip_parameters().ContainsAddress()) {
463 // Consider three cases:
464 //
465 // 1. We're here because DHCP failed while starting up. There
466 // are two subcases:
467 // a. DHCP has failed, and Static IP config has _not yet_
468 // completed. It's fine to do nothing, because we'll
469 // apply the static config shortly.
470 // b. DHCP has failed, and Static IP config has _already_
471 // completed. It's fine to do nothing, because we can
472 // continue to use the static config that's already
473 // been applied.
474 //
475 // 2. We're here because a previously valid DHCP configuration
476 // is no longer valid. There's still a static IP config,
477 // because the condition in the if clause evaluated to true.
478 // Furthermore, the static config includes an IP address for
479 // us to use.
480 //
481 // The current configuration may include some DHCP
482 // parameters, overriden by any static parameters
483 // provided. We continue to use this configuration, because
484 // the only configuration element that is leased to us (IP
485 // address) will be overriden by a static parameter.
486 return;
487 }
488
Paul Stewart03dba0b2011-08-22 16:32:45 -0700489 SetServiceState(Service::kStateDisconnected);
Paul Stewarte6132022011-08-16 09:11:02 -0700490 DestroyConnection();
Paul Stewartc39f1132011-06-22 12:02:28 -0700491 }
Chris Masone8fe2c7e2011-06-09 15:51:19 -0700492}
493
Paul Stewarte6132022011-08-16 09:11:02 -0700494void Device::CreateConnection() {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700495 SLOG(Device, 2) << __func__;
Paul Stewarte6132022011-08-16 09:11:02 -0700496 if (!connection_.get()) {
Paul Stewartbf667612012-06-29 14:49:54 -0700497 connection_ = new Connection(
498 interface_index_,
499 link_name_,
500 technology_,
501 manager_->device_info(),
502 manager_->IsTechnologyShortDNSTimeoutEnabled(technology_));
Paul Stewarte6132022011-08-16 09:11:02 -0700503 }
504}
505
506void Device::DestroyConnection() {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700507 SLOG(Device, 2) << __func__;
Paul Stewart20088d82012-02-16 06:58:55 -0800508 StopPortalDetection();
Paul Stewart036dba02012-08-07 12:34:41 -0700509 StopLinkMonitor();
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800510 if (selected_service_.get()) {
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800511 selected_service_->SetConnection(NULL);
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800512 }
Paul Stewartc8f4bef2011-12-13 09:45:51 -0800513 connection_ = NULL;
Paul Stewarte6132022011-08-16 09:11:02 -0700514}
515
Paul Stewart03dba0b2011-08-22 16:32:45 -0700516void Device::SelectService(const ServiceRefPtr &service) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700517 SLOG(Device, 2) << __func__ << ": "
518 << (service.get() ?
519 StringPrintf("%s (%s)",
520 service->UniqueName().c_str(),
521 service->friendly_name().c_str()) :
522 "*reset*");
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000523
524 if (selected_service_.get() == service.get()) {
525 // No change to |selected_service_|. Return early to avoid
526 // changing its state.
527 return;
528 }
529
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800530 if (selected_service_.get()) {
531 if (selected_service_->state() != Service::kStateFailure) {
532 selected_service_->SetState(Service::kStateIdle);
533 }
Paul Stewart20b0a092012-05-22 20:39:57 -0700534 // Just in case the Device subclass has not already done so, make
535 // sure the previously selected service has its connection removed.
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800536 selected_service_->SetConnection(NULL);
Paul Stewartc8860612012-09-28 07:36:21 -0700537 StopLinkMonitor();
538 StopPortalDetection();
Paul Stewart03dba0b2011-08-22 16:32:45 -0700539 }
540 selected_service_ = service;
541}
542
543void Device::SetServiceState(Service::ConnectState state) {
544 if (selected_service_.get()) {
545 selected_service_->SetState(state);
546 }
547}
548
549void Device::SetServiceFailure(Service::ConnectFailure failure_state) {
550 if (selected_service_.get()) {
551 selected_service_->SetFailure(failure_state);
552 }
553}
554
Eric Shienbroodcc95c5d2012-03-30 15:25:49 -0400555void Device::SetServiceFailureSilent(Service::ConnectFailure failure_state) {
556 if (selected_service_.get()) {
557 selected_service_->SetFailureSilent(failure_state);
558 }
559}
560
Chris Masone34af2182011-08-22 11:59:36 -0700561string Device::SerializeIPConfigs(const string &suffix) {
562 return StringPrintf("%s:%s", suffix.c_str(), ipconfig_->type().c_str());
Chris Masone5dec5f42011-07-22 14:07:55 -0700563}
564
Paul Stewart2bf1d352011-12-06 15:02:55 -0800565bool Device::SetIPFlag(IPAddress::Family family, const string &flag,
566 const string &value) {
567 string ip_version;
568 if (family == IPAddress::kFamilyIPv4) {
569 ip_version = kIPFlagVersion4;
570 } else if (family == IPAddress::kFamilyIPv6) {
571 ip_version = kIPFlagVersion6;
572 } else {
573 NOTIMPLEMENTED();
574 }
575 FilePath flag_file(StringPrintf(kIPFlagTemplate, ip_version.c_str(),
576 link_name_.c_str(), flag.c_str()));
Ben Chanfad4a0b2012-04-18 15:49:59 -0700577 SLOG(Device, 2) << "Writing " << value << " to flag file "
578 << flag_file.value();
Paul Stewart2bf1d352011-12-06 15:02:55 -0800579 if (file_util::WriteFile(flag_file, value.c_str(), value.length()) != 1) {
580 LOG(ERROR) << StringPrintf("IP flag write failed: %s to %s",
581 value.c_str(), flag_file.value().c_str());
582 return false;
583 }
584 return true;
585}
586
Paul Stewart6ff27f52012-07-11 06:51:41 -0700587void Device::ResetByteCounters() {
588 manager_->device_info()->GetByteCounts(
589 interface_index_, &receive_byte_offset_, &transmit_byte_offset_);
590 manager_->UpdateDevice(this);
591}
592
Paul Stewartd215af62012-04-24 23:25:50 -0700593bool Device::RestartPortalDetection() {
594 StopPortalDetection();
595 return StartPortalDetection();
596}
597
Paul Stewartc681fa02012-03-02 19:40:04 -0800598bool Device::RequestPortalDetection() {
599 if (!selected_service_) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700600 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800601 << ": No selected service, so no need for portal check.";
602 return false;
603 }
604
605 if (!connection_.get()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700606 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800607 << ": No connection, so no need for portal check.";
608 return false;
609 }
610
611 if (selected_service_->state() != Service::kStatePortal) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700612 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800613 << ": Service is not in portal state. No need to start check.";
614 return false;
615 }
616
617 if (!connection_->is_default()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700618 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800619 << ": Service is not the default connection. Don't start check.";
620 return false;
621 }
622
623 if (portal_detector_.get() && portal_detector_->IsInProgress()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700624 SLOG(Device, 2) << FriendlyName()
625 << ": Portal detection is already running.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800626 return true;
627 }
628
629 return StartPortalDetection();
630}
631
Paul Stewart20088d82012-02-16 06:58:55 -0800632bool Device::StartPortalDetection() {
Paul Stewartd215af62012-04-24 23:25:50 -0700633 DCHECK(selected_service_.get());
634 if (selected_service_->IsPortalDetectionDisabled()) {
635 SLOG(Device, 2) << "Service " << selected_service_->friendly_name()
636 << ": Portal detection is disabled; "
637 << "marking service online.";
638 SetServiceConnectedState(Service::kStateOnline);
639 return false;
640 }
641
642 if (selected_service_->IsPortalDetectionAuto() &&
643 !manager_->IsPortalDetectionEnabled(technology())) {
Paul Stewart20088d82012-02-16 06:58:55 -0800644 // If portal detection is disabled for this technology, immediately set
645 // the service state to "Online".
Ben Chanfad4a0b2012-04-18 15:49:59 -0700646 SLOG(Device, 2) << "Device " << FriendlyName()
647 << ": Portal detection is disabled; "
648 << "marking service online.";
Paul Stewart20088d82012-02-16 06:58:55 -0800649 SetServiceConnectedState(Service::kStateOnline);
650 return false;
651 }
652
Paul Stewart20088d82012-02-16 06:58:55 -0800653 if (selected_service_->HasProxyConfig()) {
654 // Services with HTTP proxy configurations should not be checked by the
655 // connection manager, since we don't have the ability to evaluate
656 // arbitrary proxy configs and their possible credentials.
Ben Chanfad4a0b2012-04-18 15:49:59 -0700657 SLOG(Device, 2) << "Device " << FriendlyName()
658 << ": Service has proxy config; marking it online.";
Paul Stewart20088d82012-02-16 06:58:55 -0800659 SetServiceConnectedState(Service::kStateOnline);
660 return false;
661 }
662
663 portal_detector_.reset(new PortalDetector(connection_,
664 dispatcher_,
Eric Shienbrood3e20a232012-02-16 11:35:56 -0500665 portal_detector_callback_));
Paul Stewart20088d82012-02-16 06:58:55 -0800666 if (!portal_detector_->Start(manager_->GetPortalCheckURL())) {
667 LOG(ERROR) << "Device " << FriendlyName()
668 << ": Portal detection failed to start: likely bad URL: "
669 << manager_->GetPortalCheckURL();
670 SetServiceConnectedState(Service::kStateOnline);
671 return false;
672 }
673
Ben Chanfad4a0b2012-04-18 15:49:59 -0700674 SLOG(Device, 2) << "Device " << FriendlyName()
675 << ": Portal detection has started.";
Paul Stewart20088d82012-02-16 06:58:55 -0800676 return true;
677}
678
679void Device::StopPortalDetection() {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700680 SLOG(Device, 2) << "Device " << FriendlyName()
681 << ": Portal detection has stopped.";
Paul Stewart20088d82012-02-16 06:58:55 -0800682 portal_detector_.reset();
683}
684
Paul Stewart036dba02012-08-07 12:34:41 -0700685void Device::set_link_monitor(LinkMonitor *link_monitor) {
686 link_monitor_.reset(link_monitor);
687}
688
689bool Device::StartLinkMonitor() {
690 if (!manager_->IsTechnologyLinkMonitorEnabled(technology())) {
691 SLOG(Device, 2) << "Device " << FriendlyName()
692 << ": Link Monitoring is disabled.";
693 return false;
694 }
695
696 if (!link_monitor()) {
697 set_link_monitor(
698 new LinkMonitor(
699 connection_, dispatcher_, metrics(), manager_->device_info(),
700 Bind(&Device::OnLinkMonitorFailure, weak_ptr_factory_.GetWeakPtr())));
701 }
702
703 SLOG(Device, 2) << "Device " << FriendlyName()
704 << ": Link Monitor starting.";
705 return link_monitor_->Start();
706}
707
708void Device::StopLinkMonitor() {
709 SLOG(Device, 2) << "Device " << FriendlyName()
710 << ": Link Monitor stopping.";
711 link_monitor_.reset();
712}
713
714void Device::OnLinkMonitorFailure() {
715 LOG(ERROR) << "Device " << FriendlyName()
716 << ": Link Monitor indicates failure.";
717}
718
Paul Stewart20088d82012-02-16 06:58:55 -0800719void Device::SetServiceConnectedState(Service::ConnectState state) {
720 DCHECK(selected_service_.get());
721
722 if (!selected_service_.get()) {
723 LOG(ERROR) << FriendlyName() << ": "
724 << "Portal detection completed but no selected service exists!";
725 return;
726 }
727
728 if (!selected_service_->IsConnected()) {
729 LOG(ERROR) << FriendlyName() << ": "
730 << "Portal detection completed but selected service "
731 << selected_service_->UniqueName()
732 << " is in non-connected state.";
733 return;
734 }
735
Paul Stewartc681fa02012-03-02 19:40:04 -0800736 if (state == Service::kStatePortal && connection_->is_default() &&
737 manager_->GetPortalCheckInterval() != 0) {
738 CHECK(portal_detector_.get());
739 if (!portal_detector_->StartAfterDelay(
740 manager_->GetPortalCheckURL(),
741 manager_->GetPortalCheckInterval())) {
742 LOG(ERROR) << "Device " << FriendlyName()
743 << ": Portal detection failed to restart: likely bad URL: "
744 << manager_->GetPortalCheckURL();
745 SetServiceState(Service::kStateOnline);
746 portal_detector_.reset();
747 return;
748 }
Ben Chanfad4a0b2012-04-18 15:49:59 -0700749 SLOG(Device, 2) << "Device " << FriendlyName()
750 << ": Portal detection retrying.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800751 } else {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700752 SLOG(Device, 2) << "Device " << FriendlyName()
753 << ": Portal will not retry.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800754 portal_detector_.reset();
755 }
756
Paul Stewart20088d82012-02-16 06:58:55 -0800757 SetServiceState(state);
758}
759
760void Device::PortalDetectorCallback(const PortalDetector::Result &result) {
761 if (!result.final) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700762 SLOG(Device, 2) << "Device " << FriendlyName()
763 << ": Received non-final status: "
764 << PortalDetector::StatusToString(result.status);
Paul Stewart20088d82012-02-16 06:58:55 -0800765 return;
766 }
767
Ben Chanfad4a0b2012-04-18 15:49:59 -0700768 SLOG(Device, 2) << "Device " << FriendlyName()
769 << ": Received final status: "
770 << PortalDetector::StatusToString(result.status);
Paul Stewart20088d82012-02-16 06:58:55 -0800771
Thieu Le85e050b2012-03-13 15:04:38 -0700772 portal_attempts_to_online_ += result.num_attempts;
773
774 metrics()->SendEnumToUMA(
775 metrics()->GetFullMetricName(Metrics::kMetricPortalResult, technology()),
776 Metrics::PortalDetectionResultToEnum(result),
777 Metrics::kPortalResultMax);
778
Paul Stewart20088d82012-02-16 06:58:55 -0800779 if (result.status == PortalDetector::kStatusSuccess) {
780 SetServiceConnectedState(Service::kStateOnline);
Thieu Le85e050b2012-03-13 15:04:38 -0700781
782 metrics()->SendToUMA(
783 metrics()->GetFullMetricName(
784 Metrics::kMetricPortalAttemptsToOnline, technology()),
785 portal_attempts_to_online_,
786 Metrics::kMetricPortalAttemptsToOnlineMin,
787 Metrics::kMetricPortalAttemptsToOnlineMax,
788 Metrics::kMetricPortalAttemptsToOnlineNumBuckets);
Paul Stewart20088d82012-02-16 06:58:55 -0800789 } else {
790 SetServiceConnectedState(Service::kStatePortal);
Thieu Le85e050b2012-03-13 15:04:38 -0700791
792 metrics()->SendToUMA(
793 metrics()->GetFullMetricName(
794 Metrics::kMetricPortalAttempts, technology()),
795 result.num_attempts,
796 Metrics::kMetricPortalAttemptsMin,
797 Metrics::kMetricPortalAttemptsMax,
798 Metrics::kMetricPortalAttemptsNumBuckets);
Paul Stewart20088d82012-02-16 06:58:55 -0800799 }
800}
801
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800802vector<string> Device::AvailableIPConfigs(Error */*error*/) {
Jason Glasgow08afdff2012-04-03 10:22:26 -0400803 if (ipconfig_.get()) {
804 string id = ipconfig_->GetRpcIdentifier();
805 return vector<string>(1, id);
806 }
807 return vector<string>();
Chris Masone4e851612011-07-01 10:46:53 -0700808}
809
810string Device::GetRpcConnectionIdentifier() {
811 return adaptor_->GetRpcConnectionIdentifier();
812}
813
Paul Stewart036dba02012-08-07 12:34:41 -0700814uint64 Device::GetLinkMonitorResponseTime(Error *error) {
815 if (!link_monitor_.get()) {
816 // It is not strictly an error that the link monitor does not
817 // exist, but returning an error here allows the GetProperties
818 // call in our Adaptor to omit this parameter.
819 error->Populate(Error::kNotFound, "Device is not running LinkMonitor");
820 return 0;
821 }
822 return link_monitor_->GetResponseTimeMilliseconds();
823}
824
Paul Stewart6ff27f52012-07-11 06:51:41 -0700825uint64 Device::GetReceiveByteCount(Error */*error*/) {
826 uint64 rx_byte_count = 0, tx_byte_count = 0;
827 manager_->device_info()->GetByteCounts(
828 interface_index_, &rx_byte_count, &tx_byte_count);
829 return rx_byte_count - receive_byte_offset_;
830}
831
832uint64 Device::GetTransmitByteCount(Error */*error*/) {
833 uint64 rx_byte_count = 0, tx_byte_count = 0;
834 manager_->device_info()->GetByteCounts(
835 interface_index_, &rx_byte_count, &tx_byte_count);
836 return tx_byte_count - transmit_byte_offset_;
837}
838
Eric Shienbrood7fce52c2012-04-13 19:11:02 -0400839bool Device::IsUnderlyingDeviceEnabled() const {
840 return false;
841}
842
Eric Shienbrood9a245532012-03-07 14:20:39 -0500843// callback
844void Device::OnEnabledStateChanged(const ResultCallback &callback,
845 const Error &error) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700846 SLOG(Device, 2) << __func__ << "(" << enabled_pending_ << ")";
Eric Shienbrood9a245532012-03-07 14:20:39 -0500847 if (error.IsSuccess()) {
848 enabled_ = enabled_pending_;
849 manager_->UpdateEnabledTechnologies();
850 adaptor_->EmitBoolChanged(flimflam::kPoweredProperty, enabled_);
851 adaptor_->UpdateEnabled();
852 }
Gary Morainbaeefdf2012-04-30 14:53:35 -0700853 enabled_pending_ = enabled_;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500854 if (!callback.is_null())
855 callback.Run(error);
856}
857
858void Device::SetEnabled(bool enable) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700859 SLOG(Device, 2) << __func__ << "(" << enable << ")";
Jason Glasgow4a490792012-04-10 15:02:05 -0400860 Error error;
861 SetEnabledInternal(enable, false, &error, ResultCallback());
Jason Glasgow7234ec32012-05-23 16:01:21 -0400862 LOG_IF(ERROR, error.IsFailure() && !error.IsOngoing())
Jason Glasgow4a490792012-04-10 15:02:05 -0400863 << "Enabled failed, but no way to report the failure.";
Eric Shienbrood9a245532012-03-07 14:20:39 -0500864}
865
866void Device::SetEnabledPersistent(bool enable,
867 Error *error,
868 const ResultCallback &callback) {
869 SetEnabledInternal(enable, true, error, callback);
870}
871
872void Device::SetEnabledInternal(bool enable,
873 bool persist,
874 Error *error,
875 const ResultCallback &callback) {
Jason Glasgow4a490792012-04-10 15:02:05 -0400876 DCHECK(error);
Ben Chanfad4a0b2012-04-18 15:49:59 -0700877 SLOG(Device, 2) << "Device " << link_name_ << " "
878 << (enable ? "starting" : "stopping");
Eric Shienbrood9a245532012-03-07 14:20:39 -0500879 if (enable == enabled_) {
Jason Glasgow4a490792012-04-10 15:02:05 -0400880 error->Reset();
Eric Shienbrood9a245532012-03-07 14:20:39 -0500881 return;
882 }
883
884 if (enabled_pending_ == enable) {
Jason Glasgow4a490792012-04-10 15:02:05 -0400885 Error::PopulateAndLog(error, Error::kInProgress,
886 "Enable operation already in progress");
Eric Shienbrood9a245532012-03-07 14:20:39 -0500887 return;
888 }
889
890 if (persist) {
891 enabled_persistent_ = enable;
Darin Petkove7c6ad32012-06-29 10:22:09 +0200892 manager_->UpdateDevice(this);
Eric Shienbrood9a245532012-03-07 14:20:39 -0500893 }
894
895 enabled_pending_ = enable;
896 EnabledStateChangedCallback enabled_callback =
897 Bind(&Device::OnEnabledStateChanged,
898 weak_ptr_factory_.GetWeakPtr(), callback);
899 if (enable) {
900 running_ = true;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500901 Start(error, enabled_callback);
902 } else {
903 running_ = false;
904 DestroyIPConfig(); // breaks a reference cycle
905 SelectService(NULL); // breaks a reference cycle
906 rtnl_handler_->SetInterfaceFlags(interface_index(), 0, IFF_UP);
Ben Chanfad4a0b2012-04-18 15:49:59 -0700907 SLOG(Device, 3) << "Device " << link_name_ << " ipconfig_ "
908 << (ipconfig_ ? "is set." : "is not set.");
909 SLOG(Device, 3) << "Device " << link_name_ << " connection_ "
910 << (connection_ ? "is set." : "is not set.");
911 SLOG(Device, 3) << "Device " << link_name_ << " selected_service_ "
912 << (selected_service_ ? "is set." : "is not set.");
Eric Shienbrood9a245532012-03-07 14:20:39 -0500913 Stop(error, enabled_callback);
914 }
915}
916
Paul Stewart75897df2011-04-27 09:05:53 -0700917} // namespace shill