blob: 8237c9c4a354ab8d704637b64c2c52300a7ceb0e [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 Stewart03dba0b2011-08-22 16:32:45 -0700537 }
538 selected_service_ = service;
539}
540
541void Device::SetServiceState(Service::ConnectState state) {
542 if (selected_service_.get()) {
543 selected_service_->SetState(state);
544 }
545}
546
547void Device::SetServiceFailure(Service::ConnectFailure failure_state) {
548 if (selected_service_.get()) {
549 selected_service_->SetFailure(failure_state);
550 }
551}
552
Eric Shienbroodcc95c5d2012-03-30 15:25:49 -0400553void Device::SetServiceFailureSilent(Service::ConnectFailure failure_state) {
554 if (selected_service_.get()) {
555 selected_service_->SetFailureSilent(failure_state);
556 }
557}
558
Chris Masone34af2182011-08-22 11:59:36 -0700559string Device::SerializeIPConfigs(const string &suffix) {
560 return StringPrintf("%s:%s", suffix.c_str(), ipconfig_->type().c_str());
Chris Masone5dec5f42011-07-22 14:07:55 -0700561}
562
Paul Stewart2bf1d352011-12-06 15:02:55 -0800563bool Device::SetIPFlag(IPAddress::Family family, const string &flag,
564 const string &value) {
565 string ip_version;
566 if (family == IPAddress::kFamilyIPv4) {
567 ip_version = kIPFlagVersion4;
568 } else if (family == IPAddress::kFamilyIPv6) {
569 ip_version = kIPFlagVersion6;
570 } else {
571 NOTIMPLEMENTED();
572 }
573 FilePath flag_file(StringPrintf(kIPFlagTemplate, ip_version.c_str(),
574 link_name_.c_str(), flag.c_str()));
Ben Chanfad4a0b2012-04-18 15:49:59 -0700575 SLOG(Device, 2) << "Writing " << value << " to flag file "
576 << flag_file.value();
Paul Stewart2bf1d352011-12-06 15:02:55 -0800577 if (file_util::WriteFile(flag_file, value.c_str(), value.length()) != 1) {
578 LOG(ERROR) << StringPrintf("IP flag write failed: %s to %s",
579 value.c_str(), flag_file.value().c_str());
580 return false;
581 }
582 return true;
583}
584
Paul Stewart6ff27f52012-07-11 06:51:41 -0700585void Device::ResetByteCounters() {
586 manager_->device_info()->GetByteCounts(
587 interface_index_, &receive_byte_offset_, &transmit_byte_offset_);
588 manager_->UpdateDevice(this);
589}
590
Paul Stewartd215af62012-04-24 23:25:50 -0700591bool Device::RestartPortalDetection() {
592 StopPortalDetection();
593 return StartPortalDetection();
594}
595
Paul Stewartc681fa02012-03-02 19:40:04 -0800596bool Device::RequestPortalDetection() {
597 if (!selected_service_) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700598 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800599 << ": No selected service, so no need for portal check.";
600 return false;
601 }
602
603 if (!connection_.get()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700604 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800605 << ": No connection, so no need for portal check.";
606 return false;
607 }
608
609 if (selected_service_->state() != Service::kStatePortal) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700610 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800611 << ": Service is not in portal state. No need to start check.";
612 return false;
613 }
614
615 if (!connection_->is_default()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700616 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800617 << ": Service is not the default connection. Don't start check.";
618 return false;
619 }
620
621 if (portal_detector_.get() && portal_detector_->IsInProgress()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700622 SLOG(Device, 2) << FriendlyName()
623 << ": Portal detection is already running.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800624 return true;
625 }
626
627 return StartPortalDetection();
628}
629
Paul Stewart20088d82012-02-16 06:58:55 -0800630bool Device::StartPortalDetection() {
Paul Stewartd215af62012-04-24 23:25:50 -0700631 DCHECK(selected_service_.get());
632 if (selected_service_->IsPortalDetectionDisabled()) {
633 SLOG(Device, 2) << "Service " << selected_service_->friendly_name()
634 << ": Portal detection is disabled; "
635 << "marking service online.";
636 SetServiceConnectedState(Service::kStateOnline);
637 return false;
638 }
639
640 if (selected_service_->IsPortalDetectionAuto() &&
641 !manager_->IsPortalDetectionEnabled(technology())) {
Paul Stewart20088d82012-02-16 06:58:55 -0800642 // If portal detection is disabled for this technology, immediately set
643 // the service state to "Online".
Ben Chanfad4a0b2012-04-18 15:49:59 -0700644 SLOG(Device, 2) << "Device " << FriendlyName()
645 << ": Portal detection is disabled; "
646 << "marking service online.";
Paul Stewart20088d82012-02-16 06:58:55 -0800647 SetServiceConnectedState(Service::kStateOnline);
648 return false;
649 }
650
Paul Stewart20088d82012-02-16 06:58:55 -0800651 if (selected_service_->HasProxyConfig()) {
652 // Services with HTTP proxy configurations should not be checked by the
653 // connection manager, since we don't have the ability to evaluate
654 // arbitrary proxy configs and their possible credentials.
Ben Chanfad4a0b2012-04-18 15:49:59 -0700655 SLOG(Device, 2) << "Device " << FriendlyName()
656 << ": Service has proxy config; marking it online.";
Paul Stewart20088d82012-02-16 06:58:55 -0800657 SetServiceConnectedState(Service::kStateOnline);
658 return false;
659 }
660
661 portal_detector_.reset(new PortalDetector(connection_,
662 dispatcher_,
Eric Shienbrood3e20a232012-02-16 11:35:56 -0500663 portal_detector_callback_));
Paul Stewart20088d82012-02-16 06:58:55 -0800664 if (!portal_detector_->Start(manager_->GetPortalCheckURL())) {
665 LOG(ERROR) << "Device " << FriendlyName()
666 << ": Portal detection failed to start: likely bad URL: "
667 << manager_->GetPortalCheckURL();
668 SetServiceConnectedState(Service::kStateOnline);
669 return false;
670 }
671
Ben Chanfad4a0b2012-04-18 15:49:59 -0700672 SLOG(Device, 2) << "Device " << FriendlyName()
673 << ": Portal detection has started.";
Paul Stewart20088d82012-02-16 06:58:55 -0800674 return true;
675}
676
677void Device::StopPortalDetection() {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700678 SLOG(Device, 2) << "Device " << FriendlyName()
679 << ": Portal detection has stopped.";
Paul Stewart20088d82012-02-16 06:58:55 -0800680 portal_detector_.reset();
681}
682
Paul Stewart036dba02012-08-07 12:34:41 -0700683void Device::set_link_monitor(LinkMonitor *link_monitor) {
684 link_monitor_.reset(link_monitor);
685}
686
687bool Device::StartLinkMonitor() {
688 if (!manager_->IsTechnologyLinkMonitorEnabled(technology())) {
689 SLOG(Device, 2) << "Device " << FriendlyName()
690 << ": Link Monitoring is disabled.";
691 return false;
692 }
693
694 if (!link_monitor()) {
695 set_link_monitor(
696 new LinkMonitor(
697 connection_, dispatcher_, metrics(), manager_->device_info(),
698 Bind(&Device::OnLinkMonitorFailure, weak_ptr_factory_.GetWeakPtr())));
699 }
700
701 SLOG(Device, 2) << "Device " << FriendlyName()
702 << ": Link Monitor starting.";
703 return link_monitor_->Start();
704}
705
706void Device::StopLinkMonitor() {
707 SLOG(Device, 2) << "Device " << FriendlyName()
708 << ": Link Monitor stopping.";
709 link_monitor_.reset();
710}
711
712void Device::OnLinkMonitorFailure() {
713 LOG(ERROR) << "Device " << FriendlyName()
714 << ": Link Monitor indicates failure.";
715}
716
Paul Stewart20088d82012-02-16 06:58:55 -0800717void Device::SetServiceConnectedState(Service::ConnectState state) {
718 DCHECK(selected_service_.get());
719
720 if (!selected_service_.get()) {
721 LOG(ERROR) << FriendlyName() << ": "
722 << "Portal detection completed but no selected service exists!";
723 return;
724 }
725
726 if (!selected_service_->IsConnected()) {
727 LOG(ERROR) << FriendlyName() << ": "
728 << "Portal detection completed but selected service "
729 << selected_service_->UniqueName()
730 << " is in non-connected state.";
731 return;
732 }
733
Paul Stewartc681fa02012-03-02 19:40:04 -0800734 if (state == Service::kStatePortal && connection_->is_default() &&
735 manager_->GetPortalCheckInterval() != 0) {
736 CHECK(portal_detector_.get());
737 if (!portal_detector_->StartAfterDelay(
738 manager_->GetPortalCheckURL(),
739 manager_->GetPortalCheckInterval())) {
740 LOG(ERROR) << "Device " << FriendlyName()
741 << ": Portal detection failed to restart: likely bad URL: "
742 << manager_->GetPortalCheckURL();
743 SetServiceState(Service::kStateOnline);
744 portal_detector_.reset();
745 return;
746 }
Ben Chanfad4a0b2012-04-18 15:49:59 -0700747 SLOG(Device, 2) << "Device " << FriendlyName()
748 << ": Portal detection retrying.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800749 } else {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700750 SLOG(Device, 2) << "Device " << FriendlyName()
751 << ": Portal will not retry.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800752 portal_detector_.reset();
753 }
754
Paul Stewart20088d82012-02-16 06:58:55 -0800755 SetServiceState(state);
756}
757
758void Device::PortalDetectorCallback(const PortalDetector::Result &result) {
759 if (!result.final) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700760 SLOG(Device, 2) << "Device " << FriendlyName()
761 << ": Received non-final status: "
762 << PortalDetector::StatusToString(result.status);
Paul Stewart20088d82012-02-16 06:58:55 -0800763 return;
764 }
765
Ben Chanfad4a0b2012-04-18 15:49:59 -0700766 SLOG(Device, 2) << "Device " << FriendlyName()
767 << ": Received final status: "
768 << PortalDetector::StatusToString(result.status);
Paul Stewart20088d82012-02-16 06:58:55 -0800769
Thieu Le85e050b2012-03-13 15:04:38 -0700770 portal_attempts_to_online_ += result.num_attempts;
771
772 metrics()->SendEnumToUMA(
773 metrics()->GetFullMetricName(Metrics::kMetricPortalResult, technology()),
774 Metrics::PortalDetectionResultToEnum(result),
775 Metrics::kPortalResultMax);
776
Paul Stewart20088d82012-02-16 06:58:55 -0800777 if (result.status == PortalDetector::kStatusSuccess) {
778 SetServiceConnectedState(Service::kStateOnline);
Thieu Le85e050b2012-03-13 15:04:38 -0700779
780 metrics()->SendToUMA(
781 metrics()->GetFullMetricName(
782 Metrics::kMetricPortalAttemptsToOnline, technology()),
783 portal_attempts_to_online_,
784 Metrics::kMetricPortalAttemptsToOnlineMin,
785 Metrics::kMetricPortalAttemptsToOnlineMax,
786 Metrics::kMetricPortalAttemptsToOnlineNumBuckets);
Paul Stewart20088d82012-02-16 06:58:55 -0800787 } else {
788 SetServiceConnectedState(Service::kStatePortal);
Thieu Le85e050b2012-03-13 15:04:38 -0700789
790 metrics()->SendToUMA(
791 metrics()->GetFullMetricName(
792 Metrics::kMetricPortalAttempts, technology()),
793 result.num_attempts,
794 Metrics::kMetricPortalAttemptsMin,
795 Metrics::kMetricPortalAttemptsMax,
796 Metrics::kMetricPortalAttemptsNumBuckets);
Paul Stewart20088d82012-02-16 06:58:55 -0800797 }
798}
799
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800800vector<string> Device::AvailableIPConfigs(Error */*error*/) {
Jason Glasgow08afdff2012-04-03 10:22:26 -0400801 if (ipconfig_.get()) {
802 string id = ipconfig_->GetRpcIdentifier();
803 return vector<string>(1, id);
804 }
805 return vector<string>();
Chris Masone4e851612011-07-01 10:46:53 -0700806}
807
808string Device::GetRpcConnectionIdentifier() {
809 return adaptor_->GetRpcConnectionIdentifier();
810}
811
Paul Stewart036dba02012-08-07 12:34:41 -0700812uint64 Device::GetLinkMonitorResponseTime(Error *error) {
813 if (!link_monitor_.get()) {
814 // It is not strictly an error that the link monitor does not
815 // exist, but returning an error here allows the GetProperties
816 // call in our Adaptor to omit this parameter.
817 error->Populate(Error::kNotFound, "Device is not running LinkMonitor");
818 return 0;
819 }
820 return link_monitor_->GetResponseTimeMilliseconds();
821}
822
Paul Stewart6ff27f52012-07-11 06:51:41 -0700823uint64 Device::GetReceiveByteCount(Error */*error*/) {
824 uint64 rx_byte_count = 0, tx_byte_count = 0;
825 manager_->device_info()->GetByteCounts(
826 interface_index_, &rx_byte_count, &tx_byte_count);
827 return rx_byte_count - receive_byte_offset_;
828}
829
830uint64 Device::GetTransmitByteCount(Error */*error*/) {
831 uint64 rx_byte_count = 0, tx_byte_count = 0;
832 manager_->device_info()->GetByteCounts(
833 interface_index_, &rx_byte_count, &tx_byte_count);
834 return tx_byte_count - transmit_byte_offset_;
835}
836
Eric Shienbrood7fce52c2012-04-13 19:11:02 -0400837bool Device::IsUnderlyingDeviceEnabled() const {
838 return false;
839}
840
Eric Shienbrood9a245532012-03-07 14:20:39 -0500841// callback
842void Device::OnEnabledStateChanged(const ResultCallback &callback,
843 const Error &error) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700844 SLOG(Device, 2) << __func__ << "(" << enabled_pending_ << ")";
Eric Shienbrood9a245532012-03-07 14:20:39 -0500845 if (error.IsSuccess()) {
846 enabled_ = enabled_pending_;
847 manager_->UpdateEnabledTechnologies();
848 adaptor_->EmitBoolChanged(flimflam::kPoweredProperty, enabled_);
849 adaptor_->UpdateEnabled();
850 }
Gary Morainbaeefdf2012-04-30 14:53:35 -0700851 enabled_pending_ = enabled_;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500852 if (!callback.is_null())
853 callback.Run(error);
854}
855
856void Device::SetEnabled(bool enable) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700857 SLOG(Device, 2) << __func__ << "(" << enable << ")";
Jason Glasgow4a490792012-04-10 15:02:05 -0400858 Error error;
859 SetEnabledInternal(enable, false, &error, ResultCallback());
Jason Glasgow7234ec32012-05-23 16:01:21 -0400860 LOG_IF(ERROR, error.IsFailure() && !error.IsOngoing())
Jason Glasgow4a490792012-04-10 15:02:05 -0400861 << "Enabled failed, but no way to report the failure.";
Eric Shienbrood9a245532012-03-07 14:20:39 -0500862}
863
864void Device::SetEnabledPersistent(bool enable,
865 Error *error,
866 const ResultCallback &callback) {
867 SetEnabledInternal(enable, true, error, callback);
868}
869
870void Device::SetEnabledInternal(bool enable,
871 bool persist,
872 Error *error,
873 const ResultCallback &callback) {
Jason Glasgow4a490792012-04-10 15:02:05 -0400874 DCHECK(error);
Ben Chanfad4a0b2012-04-18 15:49:59 -0700875 SLOG(Device, 2) << "Device " << link_name_ << " "
876 << (enable ? "starting" : "stopping");
Eric Shienbrood9a245532012-03-07 14:20:39 -0500877 if (enable == enabled_) {
Jason Glasgow4a490792012-04-10 15:02:05 -0400878 error->Reset();
Eric Shienbrood9a245532012-03-07 14:20:39 -0500879 return;
880 }
881
882 if (enabled_pending_ == enable) {
Jason Glasgow4a490792012-04-10 15:02:05 -0400883 Error::PopulateAndLog(error, Error::kInProgress,
884 "Enable operation already in progress");
Eric Shienbrood9a245532012-03-07 14:20:39 -0500885 return;
886 }
887
888 if (persist) {
889 enabled_persistent_ = enable;
Darin Petkove7c6ad32012-06-29 10:22:09 +0200890 manager_->UpdateDevice(this);
Eric Shienbrood9a245532012-03-07 14:20:39 -0500891 }
892
893 enabled_pending_ = enable;
894 EnabledStateChangedCallback enabled_callback =
895 Bind(&Device::OnEnabledStateChanged,
896 weak_ptr_factory_.GetWeakPtr(), callback);
897 if (enable) {
898 running_ = true;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500899 Start(error, enabled_callback);
900 } else {
901 running_ = false;
902 DestroyIPConfig(); // breaks a reference cycle
903 SelectService(NULL); // breaks a reference cycle
904 rtnl_handler_->SetInterfaceFlags(interface_index(), 0, IFF_UP);
Ben Chanfad4a0b2012-04-18 15:49:59 -0700905 SLOG(Device, 3) << "Device " << link_name_ << " ipconfig_ "
906 << (ipconfig_ ? "is set." : "is not set.");
907 SLOG(Device, 3) << "Device " << link_name_ << " connection_ "
908 << (connection_ ? "is set." : "is not set.");
909 SLOG(Device, 3) << "Device " << link_name_ << " selected_service_ "
910 << (selected_service_ ? "is set." : "is not set.");
Eric Shienbrood9a245532012-03-07 14:20:39 -0500911 Stop(error, enabled_callback);
912 }
913}
914
Paul Stewart75897df2011-04-27 09:05:53 -0700915} // namespace shill