blob: 910abf9ec6e1b1aa11b250c4b85e4734b82bc804 [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.
454 StartPortalDetection();
Paul Stewart036dba02012-08-07 12:34:41 -0700455 StartLinkMonitor();
Paul Stewarte6132022011-08-16 09:11:02 -0700456 } else {
mukesh agrawalcc0fded2012-05-09 13:40:58 -0700457 // TODO(pstew): This logic gets yet more complex when multiple
458 // IPConfig types are run in parallel (e.g. DHCP and DHCP6)
459 if (selected_service_ &&
460 selected_service_->static_ip_parameters().ContainsAddress()) {
461 // Consider three cases:
462 //
463 // 1. We're here because DHCP failed while starting up. There
464 // are two subcases:
465 // a. DHCP has failed, and Static IP config has _not yet_
466 // completed. It's fine to do nothing, because we'll
467 // apply the static config shortly.
468 // b. DHCP has failed, and Static IP config has _already_
469 // completed. It's fine to do nothing, because we can
470 // continue to use the static config that's already
471 // been applied.
472 //
473 // 2. We're here because a previously valid DHCP configuration
474 // is no longer valid. There's still a static IP config,
475 // because the condition in the if clause evaluated to true.
476 // Furthermore, the static config includes an IP address for
477 // us to use.
478 //
479 // The current configuration may include some DHCP
480 // parameters, overriden by any static parameters
481 // provided. We continue to use this configuration, because
482 // the only configuration element that is leased to us (IP
483 // address) will be overriden by a static parameter.
484 return;
485 }
486
Paul Stewart03dba0b2011-08-22 16:32:45 -0700487 SetServiceState(Service::kStateDisconnected);
Paul Stewarte6132022011-08-16 09:11:02 -0700488 DestroyConnection();
Paul Stewartc39f1132011-06-22 12:02:28 -0700489 }
Chris Masone8fe2c7e2011-06-09 15:51:19 -0700490}
491
Paul Stewarte6132022011-08-16 09:11:02 -0700492void Device::CreateConnection() {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700493 SLOG(Device, 2) << __func__;
Paul Stewarte6132022011-08-16 09:11:02 -0700494 if (!connection_.get()) {
Paul Stewartbf667612012-06-29 14:49:54 -0700495 connection_ = new Connection(
496 interface_index_,
497 link_name_,
498 technology_,
499 manager_->device_info(),
500 manager_->IsTechnologyShortDNSTimeoutEnabled(technology_));
Paul Stewarte6132022011-08-16 09:11:02 -0700501 }
502}
503
504void Device::DestroyConnection() {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700505 SLOG(Device, 2) << __func__;
Paul Stewart20088d82012-02-16 06:58:55 -0800506 StopPortalDetection();
Paul Stewart036dba02012-08-07 12:34:41 -0700507 StopLinkMonitor();
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800508 if (selected_service_.get()) {
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800509 selected_service_->SetConnection(NULL);
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800510 }
Paul Stewartc8f4bef2011-12-13 09:45:51 -0800511 connection_ = NULL;
Paul Stewarte6132022011-08-16 09:11:02 -0700512}
513
Paul Stewart03dba0b2011-08-22 16:32:45 -0700514void Device::SelectService(const ServiceRefPtr &service) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700515 SLOG(Device, 2) << __func__ << ": "
516 << (service.get() ?
517 StringPrintf("%s (%s)",
518 service->UniqueName().c_str(),
519 service->friendly_name().c_str()) :
520 "*reset*");
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000521
522 if (selected_service_.get() == service.get()) {
523 // No change to |selected_service_|. Return early to avoid
524 // changing its state.
525 return;
526 }
527
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800528 if (selected_service_.get()) {
529 if (selected_service_->state() != Service::kStateFailure) {
530 selected_service_->SetState(Service::kStateIdle);
531 }
Paul Stewart20b0a092012-05-22 20:39:57 -0700532 // Just in case the Device subclass has not already done so, make
533 // sure the previously selected service has its connection removed.
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800534 selected_service_->SetConnection(NULL);
Paul Stewart03dba0b2011-08-22 16:32:45 -0700535 }
536 selected_service_ = service;
537}
538
539void Device::SetServiceState(Service::ConnectState state) {
540 if (selected_service_.get()) {
541 selected_service_->SetState(state);
542 }
543}
544
545void Device::SetServiceFailure(Service::ConnectFailure failure_state) {
546 if (selected_service_.get()) {
547 selected_service_->SetFailure(failure_state);
548 }
549}
550
Eric Shienbroodcc95c5d2012-03-30 15:25:49 -0400551void Device::SetServiceFailureSilent(Service::ConnectFailure failure_state) {
552 if (selected_service_.get()) {
553 selected_service_->SetFailureSilent(failure_state);
554 }
555}
556
Chris Masone34af2182011-08-22 11:59:36 -0700557string Device::SerializeIPConfigs(const string &suffix) {
558 return StringPrintf("%s:%s", suffix.c_str(), ipconfig_->type().c_str());
Chris Masone5dec5f42011-07-22 14:07:55 -0700559}
560
Paul Stewart2bf1d352011-12-06 15:02:55 -0800561bool Device::SetIPFlag(IPAddress::Family family, const string &flag,
562 const string &value) {
563 string ip_version;
564 if (family == IPAddress::kFamilyIPv4) {
565 ip_version = kIPFlagVersion4;
566 } else if (family == IPAddress::kFamilyIPv6) {
567 ip_version = kIPFlagVersion6;
568 } else {
569 NOTIMPLEMENTED();
570 }
571 FilePath flag_file(StringPrintf(kIPFlagTemplate, ip_version.c_str(),
572 link_name_.c_str(), flag.c_str()));
Ben Chanfad4a0b2012-04-18 15:49:59 -0700573 SLOG(Device, 2) << "Writing " << value << " to flag file "
574 << flag_file.value();
Paul Stewart2bf1d352011-12-06 15:02:55 -0800575 if (file_util::WriteFile(flag_file, value.c_str(), value.length()) != 1) {
576 LOG(ERROR) << StringPrintf("IP flag write failed: %s to %s",
577 value.c_str(), flag_file.value().c_str());
578 return false;
579 }
580 return true;
581}
582
Paul Stewart6ff27f52012-07-11 06:51:41 -0700583void Device::ResetByteCounters() {
584 manager_->device_info()->GetByteCounts(
585 interface_index_, &receive_byte_offset_, &transmit_byte_offset_);
586 manager_->UpdateDevice(this);
587}
588
Paul Stewartd215af62012-04-24 23:25:50 -0700589bool Device::RestartPortalDetection() {
590 StopPortalDetection();
591 return StartPortalDetection();
592}
593
Paul Stewartc681fa02012-03-02 19:40:04 -0800594bool Device::RequestPortalDetection() {
595 if (!selected_service_) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700596 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800597 << ": No selected service, so no need for portal check.";
598 return false;
599 }
600
601 if (!connection_.get()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700602 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800603 << ": No connection, so no need for portal check.";
604 return false;
605 }
606
607 if (selected_service_->state() != Service::kStatePortal) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700608 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800609 << ": Service is not in portal state. No need to start check.";
610 return false;
611 }
612
613 if (!connection_->is_default()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700614 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800615 << ": Service is not the default connection. Don't start check.";
616 return false;
617 }
618
619 if (portal_detector_.get() && portal_detector_->IsInProgress()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700620 SLOG(Device, 2) << FriendlyName()
621 << ": Portal detection is already running.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800622 return true;
623 }
624
625 return StartPortalDetection();
626}
627
Paul Stewart20088d82012-02-16 06:58:55 -0800628bool Device::StartPortalDetection() {
Paul Stewartd215af62012-04-24 23:25:50 -0700629 DCHECK(selected_service_.get());
630 if (selected_service_->IsPortalDetectionDisabled()) {
631 SLOG(Device, 2) << "Service " << selected_service_->friendly_name()
632 << ": Portal detection is disabled; "
633 << "marking service online.";
634 SetServiceConnectedState(Service::kStateOnline);
635 return false;
636 }
637
638 if (selected_service_->IsPortalDetectionAuto() &&
639 !manager_->IsPortalDetectionEnabled(technology())) {
Paul Stewart20088d82012-02-16 06:58:55 -0800640 // If portal detection is disabled for this technology, immediately set
641 // the service state to "Online".
Ben Chanfad4a0b2012-04-18 15:49:59 -0700642 SLOG(Device, 2) << "Device " << FriendlyName()
643 << ": Portal detection is disabled; "
644 << "marking service online.";
Paul Stewart20088d82012-02-16 06:58:55 -0800645 SetServiceConnectedState(Service::kStateOnline);
646 return false;
647 }
648
Paul Stewart20088d82012-02-16 06:58:55 -0800649 if (selected_service_->HasProxyConfig()) {
650 // Services with HTTP proxy configurations should not be checked by the
651 // connection manager, since we don't have the ability to evaluate
652 // arbitrary proxy configs and their possible credentials.
Ben Chanfad4a0b2012-04-18 15:49:59 -0700653 SLOG(Device, 2) << "Device " << FriendlyName()
654 << ": Service has proxy config; marking it online.";
Paul Stewart20088d82012-02-16 06:58:55 -0800655 SetServiceConnectedState(Service::kStateOnline);
656 return false;
657 }
658
659 portal_detector_.reset(new PortalDetector(connection_,
660 dispatcher_,
Eric Shienbrood3e20a232012-02-16 11:35:56 -0500661 portal_detector_callback_));
Paul Stewart20088d82012-02-16 06:58:55 -0800662 if (!portal_detector_->Start(manager_->GetPortalCheckURL())) {
663 LOG(ERROR) << "Device " << FriendlyName()
664 << ": Portal detection failed to start: likely bad URL: "
665 << manager_->GetPortalCheckURL();
666 SetServiceConnectedState(Service::kStateOnline);
667 return false;
668 }
669
Ben Chanfad4a0b2012-04-18 15:49:59 -0700670 SLOG(Device, 2) << "Device " << FriendlyName()
671 << ": Portal detection has started.";
Paul Stewart20088d82012-02-16 06:58:55 -0800672 return true;
673}
674
675void Device::StopPortalDetection() {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700676 SLOG(Device, 2) << "Device " << FriendlyName()
677 << ": Portal detection has stopped.";
Paul Stewart20088d82012-02-16 06:58:55 -0800678 portal_detector_.reset();
679}
680
Paul Stewart036dba02012-08-07 12:34:41 -0700681void Device::set_link_monitor(LinkMonitor *link_monitor) {
682 link_monitor_.reset(link_monitor);
683}
684
685bool Device::StartLinkMonitor() {
686 if (!manager_->IsTechnologyLinkMonitorEnabled(technology())) {
687 SLOG(Device, 2) << "Device " << FriendlyName()
688 << ": Link Monitoring is disabled.";
689 return false;
690 }
691
692 if (!link_monitor()) {
693 set_link_monitor(
694 new LinkMonitor(
695 connection_, dispatcher_, metrics(), manager_->device_info(),
696 Bind(&Device::OnLinkMonitorFailure, weak_ptr_factory_.GetWeakPtr())));
697 }
698
699 SLOG(Device, 2) << "Device " << FriendlyName()
700 << ": Link Monitor starting.";
701 return link_monitor_->Start();
702}
703
704void Device::StopLinkMonitor() {
705 SLOG(Device, 2) << "Device " << FriendlyName()
706 << ": Link Monitor stopping.";
707 link_monitor_.reset();
708}
709
710void Device::OnLinkMonitorFailure() {
711 LOG(ERROR) << "Device " << FriendlyName()
712 << ": Link Monitor indicates failure.";
713}
714
Paul Stewart20088d82012-02-16 06:58:55 -0800715void Device::SetServiceConnectedState(Service::ConnectState state) {
716 DCHECK(selected_service_.get());
717
718 if (!selected_service_.get()) {
719 LOG(ERROR) << FriendlyName() << ": "
720 << "Portal detection completed but no selected service exists!";
721 return;
722 }
723
724 if (!selected_service_->IsConnected()) {
725 LOG(ERROR) << FriendlyName() << ": "
726 << "Portal detection completed but selected service "
727 << selected_service_->UniqueName()
728 << " is in non-connected state.";
729 return;
730 }
731
Paul Stewartc681fa02012-03-02 19:40:04 -0800732 if (state == Service::kStatePortal && connection_->is_default() &&
733 manager_->GetPortalCheckInterval() != 0) {
734 CHECK(portal_detector_.get());
735 if (!portal_detector_->StartAfterDelay(
736 manager_->GetPortalCheckURL(),
737 manager_->GetPortalCheckInterval())) {
738 LOG(ERROR) << "Device " << FriendlyName()
739 << ": Portal detection failed to restart: likely bad URL: "
740 << manager_->GetPortalCheckURL();
741 SetServiceState(Service::kStateOnline);
742 portal_detector_.reset();
743 return;
744 }
Ben Chanfad4a0b2012-04-18 15:49:59 -0700745 SLOG(Device, 2) << "Device " << FriendlyName()
746 << ": Portal detection retrying.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800747 } else {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700748 SLOG(Device, 2) << "Device " << FriendlyName()
749 << ": Portal will not retry.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800750 portal_detector_.reset();
751 }
752
Paul Stewart20088d82012-02-16 06:58:55 -0800753 SetServiceState(state);
754}
755
756void Device::PortalDetectorCallback(const PortalDetector::Result &result) {
757 if (!result.final) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700758 SLOG(Device, 2) << "Device " << FriendlyName()
759 << ": Received non-final status: "
760 << PortalDetector::StatusToString(result.status);
Paul Stewart20088d82012-02-16 06:58:55 -0800761 return;
762 }
763
Ben Chanfad4a0b2012-04-18 15:49:59 -0700764 SLOG(Device, 2) << "Device " << FriendlyName()
765 << ": Received final status: "
766 << PortalDetector::StatusToString(result.status);
Paul Stewart20088d82012-02-16 06:58:55 -0800767
Thieu Le85e050b2012-03-13 15:04:38 -0700768 portal_attempts_to_online_ += result.num_attempts;
769
770 metrics()->SendEnumToUMA(
771 metrics()->GetFullMetricName(Metrics::kMetricPortalResult, technology()),
772 Metrics::PortalDetectionResultToEnum(result),
773 Metrics::kPortalResultMax);
774
Paul Stewart20088d82012-02-16 06:58:55 -0800775 if (result.status == PortalDetector::kStatusSuccess) {
776 SetServiceConnectedState(Service::kStateOnline);
Thieu Le85e050b2012-03-13 15:04:38 -0700777
778 metrics()->SendToUMA(
779 metrics()->GetFullMetricName(
780 Metrics::kMetricPortalAttemptsToOnline, technology()),
781 portal_attempts_to_online_,
782 Metrics::kMetricPortalAttemptsToOnlineMin,
783 Metrics::kMetricPortalAttemptsToOnlineMax,
784 Metrics::kMetricPortalAttemptsToOnlineNumBuckets);
Paul Stewart20088d82012-02-16 06:58:55 -0800785 } else {
786 SetServiceConnectedState(Service::kStatePortal);
Thieu Le85e050b2012-03-13 15:04:38 -0700787
788 metrics()->SendToUMA(
789 metrics()->GetFullMetricName(
790 Metrics::kMetricPortalAttempts, technology()),
791 result.num_attempts,
792 Metrics::kMetricPortalAttemptsMin,
793 Metrics::kMetricPortalAttemptsMax,
794 Metrics::kMetricPortalAttemptsNumBuckets);
Paul Stewart20088d82012-02-16 06:58:55 -0800795 }
796}
797
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800798vector<string> Device::AvailableIPConfigs(Error */*error*/) {
Jason Glasgow08afdff2012-04-03 10:22:26 -0400799 if (ipconfig_.get()) {
800 string id = ipconfig_->GetRpcIdentifier();
801 return vector<string>(1, id);
802 }
803 return vector<string>();
Chris Masone4e851612011-07-01 10:46:53 -0700804}
805
806string Device::GetRpcConnectionIdentifier() {
807 return adaptor_->GetRpcConnectionIdentifier();
808}
809
Paul Stewart036dba02012-08-07 12:34:41 -0700810uint64 Device::GetLinkMonitorResponseTime(Error *error) {
811 if (!link_monitor_.get()) {
812 // It is not strictly an error that the link monitor does not
813 // exist, but returning an error here allows the GetProperties
814 // call in our Adaptor to omit this parameter.
815 error->Populate(Error::kNotFound, "Device is not running LinkMonitor");
816 return 0;
817 }
818 return link_monitor_->GetResponseTimeMilliseconds();
819}
820
Paul Stewart6ff27f52012-07-11 06:51:41 -0700821uint64 Device::GetReceiveByteCount(Error */*error*/) {
822 uint64 rx_byte_count = 0, tx_byte_count = 0;
823 manager_->device_info()->GetByteCounts(
824 interface_index_, &rx_byte_count, &tx_byte_count);
825 return rx_byte_count - receive_byte_offset_;
826}
827
828uint64 Device::GetTransmitByteCount(Error */*error*/) {
829 uint64 rx_byte_count = 0, tx_byte_count = 0;
830 manager_->device_info()->GetByteCounts(
831 interface_index_, &rx_byte_count, &tx_byte_count);
832 return tx_byte_count - transmit_byte_offset_;
833}
834
Eric Shienbrood7fce52c2012-04-13 19:11:02 -0400835bool Device::IsUnderlyingDeviceEnabled() const {
836 return false;
837}
838
Eric Shienbrood9a245532012-03-07 14:20:39 -0500839// callback
840void Device::OnEnabledStateChanged(const ResultCallback &callback,
841 const Error &error) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700842 SLOG(Device, 2) << __func__ << "(" << enabled_pending_ << ")";
Eric Shienbrood9a245532012-03-07 14:20:39 -0500843 if (error.IsSuccess()) {
844 enabled_ = enabled_pending_;
845 manager_->UpdateEnabledTechnologies();
846 adaptor_->EmitBoolChanged(flimflam::kPoweredProperty, enabled_);
847 adaptor_->UpdateEnabled();
848 }
Gary Morainbaeefdf2012-04-30 14:53:35 -0700849 enabled_pending_ = enabled_;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500850 if (!callback.is_null())
851 callback.Run(error);
852}
853
854void Device::SetEnabled(bool enable) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700855 SLOG(Device, 2) << __func__ << "(" << enable << ")";
Jason Glasgow4a490792012-04-10 15:02:05 -0400856 Error error;
857 SetEnabledInternal(enable, false, &error, ResultCallback());
Jason Glasgow7234ec32012-05-23 16:01:21 -0400858 LOG_IF(ERROR, error.IsFailure() && !error.IsOngoing())
Jason Glasgow4a490792012-04-10 15:02:05 -0400859 << "Enabled failed, but no way to report the failure.";
Eric Shienbrood9a245532012-03-07 14:20:39 -0500860}
861
862void Device::SetEnabledPersistent(bool enable,
863 Error *error,
864 const ResultCallback &callback) {
865 SetEnabledInternal(enable, true, error, callback);
866}
867
868void Device::SetEnabledInternal(bool enable,
869 bool persist,
870 Error *error,
871 const ResultCallback &callback) {
Jason Glasgow4a490792012-04-10 15:02:05 -0400872 DCHECK(error);
Ben Chanfad4a0b2012-04-18 15:49:59 -0700873 SLOG(Device, 2) << "Device " << link_name_ << " "
874 << (enable ? "starting" : "stopping");
Eric Shienbrood9a245532012-03-07 14:20:39 -0500875 if (enable == enabled_) {
Jason Glasgow4a490792012-04-10 15:02:05 -0400876 error->Reset();
Eric Shienbrood9a245532012-03-07 14:20:39 -0500877 return;
878 }
879
880 if (enabled_pending_ == enable) {
Jason Glasgow4a490792012-04-10 15:02:05 -0400881 Error::PopulateAndLog(error, Error::kInProgress,
882 "Enable operation already in progress");
Eric Shienbrood9a245532012-03-07 14:20:39 -0500883 return;
884 }
885
886 if (persist) {
887 enabled_persistent_ = enable;
Darin Petkove7c6ad32012-06-29 10:22:09 +0200888 manager_->UpdateDevice(this);
Eric Shienbrood9a245532012-03-07 14:20:39 -0500889 }
890
891 enabled_pending_ = enable;
892 EnabledStateChangedCallback enabled_callback =
893 Bind(&Device::OnEnabledStateChanged,
894 weak_ptr_factory_.GetWeakPtr(), callback);
895 if (enable) {
896 running_ = true;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500897 Start(error, enabled_callback);
898 } else {
899 running_ = false;
900 DestroyIPConfig(); // breaks a reference cycle
901 SelectService(NULL); // breaks a reference cycle
902 rtnl_handler_->SetInterfaceFlags(interface_index(), 0, IFF_UP);
Ben Chanfad4a0b2012-04-18 15:49:59 -0700903 SLOG(Device, 3) << "Device " << link_name_ << " ipconfig_ "
904 << (ipconfig_ ? "is set." : "is not set.");
905 SLOG(Device, 3) << "Device " << link_name_ << " connection_ "
906 << (connection_ ? "is set." : "is not set.");
907 SLOG(Device, 3) << "Device " << link_name_ << " selected_service_ "
908 << (selected_service_ ? "is set." : "is not set.");
Eric Shienbrood9a245532012-03-07 14:20:39 -0500909 Stop(error, enabled_callback);
910 }
911}
912
Paul Stewart75897df2011-04-27 09:05:53 -0700913} // namespace shill