blob: bfc5b49b43ad95e75907f5f3832aa4d3a45ad5f6 [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
Christopher Wileyabd3b502012-09-26 13:08:52 -0700489 if (selected_service_) {
490 Error error;
491 selected_service_->DisconnectWithFailure(Service::kFailureDHCP, &error);
492 }
Paul Stewarte6132022011-08-16 09:11:02 -0700493 DestroyConnection();
Paul Stewartc39f1132011-06-22 12:02:28 -0700494 }
Chris Masone8fe2c7e2011-06-09 15:51:19 -0700495}
496
Paul Stewarte6132022011-08-16 09:11:02 -0700497void Device::CreateConnection() {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700498 SLOG(Device, 2) << __func__;
Paul Stewarte6132022011-08-16 09:11:02 -0700499 if (!connection_.get()) {
Paul Stewartbf667612012-06-29 14:49:54 -0700500 connection_ = new Connection(
501 interface_index_,
502 link_name_,
503 technology_,
504 manager_->device_info(),
505 manager_->IsTechnologyShortDNSTimeoutEnabled(technology_));
Paul Stewarte6132022011-08-16 09:11:02 -0700506 }
507}
508
509void Device::DestroyConnection() {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700510 SLOG(Device, 2) << __func__;
Paul Stewart20088d82012-02-16 06:58:55 -0800511 StopPortalDetection();
Paul Stewart036dba02012-08-07 12:34:41 -0700512 StopLinkMonitor();
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800513 if (selected_service_.get()) {
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800514 selected_service_->SetConnection(NULL);
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800515 }
Paul Stewartc8f4bef2011-12-13 09:45:51 -0800516 connection_ = NULL;
Paul Stewarte6132022011-08-16 09:11:02 -0700517}
518
Paul Stewart03dba0b2011-08-22 16:32:45 -0700519void Device::SelectService(const ServiceRefPtr &service) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700520 SLOG(Device, 2) << __func__ << ": "
521 << (service.get() ?
522 StringPrintf("%s (%s)",
523 service->UniqueName().c_str(),
524 service->friendly_name().c_str()) :
525 "*reset*");
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000526
527 if (selected_service_.get() == service.get()) {
528 // No change to |selected_service_|. Return early to avoid
529 // changing its state.
530 return;
531 }
532
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800533 if (selected_service_.get()) {
534 if (selected_service_->state() != Service::kStateFailure) {
535 selected_service_->SetState(Service::kStateIdle);
536 }
Paul Stewart20b0a092012-05-22 20:39:57 -0700537 // Just in case the Device subclass has not already done so, make
538 // sure the previously selected service has its connection removed.
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800539 selected_service_->SetConnection(NULL);
Paul Stewartc8860612012-09-28 07:36:21 -0700540 StopLinkMonitor();
541 StopPortalDetection();
Paul Stewart03dba0b2011-08-22 16:32:45 -0700542 }
543 selected_service_ = service;
544}
545
546void Device::SetServiceState(Service::ConnectState state) {
547 if (selected_service_.get()) {
548 selected_service_->SetState(state);
549 }
550}
551
552void Device::SetServiceFailure(Service::ConnectFailure failure_state) {
553 if (selected_service_.get()) {
554 selected_service_->SetFailure(failure_state);
555 }
556}
557
Eric Shienbroodcc95c5d2012-03-30 15:25:49 -0400558void Device::SetServiceFailureSilent(Service::ConnectFailure failure_state) {
559 if (selected_service_.get()) {
560 selected_service_->SetFailureSilent(failure_state);
561 }
562}
563
Chris Masone34af2182011-08-22 11:59:36 -0700564string Device::SerializeIPConfigs(const string &suffix) {
565 return StringPrintf("%s:%s", suffix.c_str(), ipconfig_->type().c_str());
Chris Masone5dec5f42011-07-22 14:07:55 -0700566}
567
Paul Stewart2bf1d352011-12-06 15:02:55 -0800568bool Device::SetIPFlag(IPAddress::Family family, const string &flag,
569 const string &value) {
570 string ip_version;
571 if (family == IPAddress::kFamilyIPv4) {
572 ip_version = kIPFlagVersion4;
573 } else if (family == IPAddress::kFamilyIPv6) {
574 ip_version = kIPFlagVersion6;
575 } else {
576 NOTIMPLEMENTED();
577 }
578 FilePath flag_file(StringPrintf(kIPFlagTemplate, ip_version.c_str(),
579 link_name_.c_str(), flag.c_str()));
Ben Chanfad4a0b2012-04-18 15:49:59 -0700580 SLOG(Device, 2) << "Writing " << value << " to flag file "
581 << flag_file.value();
Paul Stewart2bf1d352011-12-06 15:02:55 -0800582 if (file_util::WriteFile(flag_file, value.c_str(), value.length()) != 1) {
583 LOG(ERROR) << StringPrintf("IP flag write failed: %s to %s",
584 value.c_str(), flag_file.value().c_str());
585 return false;
586 }
587 return true;
588}
589
Paul Stewart6ff27f52012-07-11 06:51:41 -0700590void Device::ResetByteCounters() {
591 manager_->device_info()->GetByteCounts(
592 interface_index_, &receive_byte_offset_, &transmit_byte_offset_);
593 manager_->UpdateDevice(this);
594}
595
Paul Stewartd215af62012-04-24 23:25:50 -0700596bool Device::RestartPortalDetection() {
597 StopPortalDetection();
598 return StartPortalDetection();
599}
600
Paul Stewartc681fa02012-03-02 19:40:04 -0800601bool Device::RequestPortalDetection() {
602 if (!selected_service_) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700603 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800604 << ": No selected service, so no need for portal check.";
605 return false;
606 }
607
608 if (!connection_.get()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700609 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800610 << ": No connection, so no need for portal check.";
611 return false;
612 }
613
614 if (selected_service_->state() != Service::kStatePortal) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700615 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800616 << ": Service is not in portal state. No need to start check.";
617 return false;
618 }
619
620 if (!connection_->is_default()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700621 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800622 << ": Service is not the default connection. Don't start check.";
623 return false;
624 }
625
626 if (portal_detector_.get() && portal_detector_->IsInProgress()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700627 SLOG(Device, 2) << FriendlyName()
628 << ": Portal detection is already running.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800629 return true;
630 }
631
632 return StartPortalDetection();
633}
634
Paul Stewart20088d82012-02-16 06:58:55 -0800635bool Device::StartPortalDetection() {
Paul Stewartd215af62012-04-24 23:25:50 -0700636 DCHECK(selected_service_.get());
637 if (selected_service_->IsPortalDetectionDisabled()) {
638 SLOG(Device, 2) << "Service " << selected_service_->friendly_name()
639 << ": Portal detection is disabled; "
640 << "marking service online.";
641 SetServiceConnectedState(Service::kStateOnline);
642 return false;
643 }
644
645 if (selected_service_->IsPortalDetectionAuto() &&
646 !manager_->IsPortalDetectionEnabled(technology())) {
Paul Stewart20088d82012-02-16 06:58:55 -0800647 // If portal detection is disabled for this technology, immediately set
648 // the service state to "Online".
Ben Chanfad4a0b2012-04-18 15:49:59 -0700649 SLOG(Device, 2) << "Device " << FriendlyName()
650 << ": Portal detection is disabled; "
651 << "marking service online.";
Paul Stewart20088d82012-02-16 06:58:55 -0800652 SetServiceConnectedState(Service::kStateOnline);
653 return false;
654 }
655
Paul Stewart20088d82012-02-16 06:58:55 -0800656 if (selected_service_->HasProxyConfig()) {
657 // Services with HTTP proxy configurations should not be checked by the
658 // connection manager, since we don't have the ability to evaluate
659 // arbitrary proxy configs and their possible credentials.
Ben Chanfad4a0b2012-04-18 15:49:59 -0700660 SLOG(Device, 2) << "Device " << FriendlyName()
661 << ": Service has proxy config; marking it online.";
Paul Stewart20088d82012-02-16 06:58:55 -0800662 SetServiceConnectedState(Service::kStateOnline);
663 return false;
664 }
665
666 portal_detector_.reset(new PortalDetector(connection_,
667 dispatcher_,
Eric Shienbrood3e20a232012-02-16 11:35:56 -0500668 portal_detector_callback_));
Paul Stewart20088d82012-02-16 06:58:55 -0800669 if (!portal_detector_->Start(manager_->GetPortalCheckURL())) {
670 LOG(ERROR) << "Device " << FriendlyName()
671 << ": Portal detection failed to start: likely bad URL: "
672 << manager_->GetPortalCheckURL();
673 SetServiceConnectedState(Service::kStateOnline);
674 return false;
675 }
676
Ben Chanfad4a0b2012-04-18 15:49:59 -0700677 SLOG(Device, 2) << "Device " << FriendlyName()
678 << ": Portal detection has started.";
Paul Stewart20088d82012-02-16 06:58:55 -0800679 return true;
680}
681
682void Device::StopPortalDetection() {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700683 SLOG(Device, 2) << "Device " << FriendlyName()
684 << ": Portal detection has stopped.";
Paul Stewart20088d82012-02-16 06:58:55 -0800685 portal_detector_.reset();
686}
687
Paul Stewart036dba02012-08-07 12:34:41 -0700688void Device::set_link_monitor(LinkMonitor *link_monitor) {
689 link_monitor_.reset(link_monitor);
690}
691
692bool Device::StartLinkMonitor() {
693 if (!manager_->IsTechnologyLinkMonitorEnabled(technology())) {
694 SLOG(Device, 2) << "Device " << FriendlyName()
695 << ": Link Monitoring is disabled.";
696 return false;
697 }
698
699 if (!link_monitor()) {
700 set_link_monitor(
701 new LinkMonitor(
702 connection_, dispatcher_, metrics(), manager_->device_info(),
703 Bind(&Device::OnLinkMonitorFailure, weak_ptr_factory_.GetWeakPtr())));
704 }
705
706 SLOG(Device, 2) << "Device " << FriendlyName()
707 << ": Link Monitor starting.";
708 return link_monitor_->Start();
709}
710
711void Device::StopLinkMonitor() {
712 SLOG(Device, 2) << "Device " << FriendlyName()
713 << ": Link Monitor stopping.";
714 link_monitor_.reset();
715}
716
717void Device::OnLinkMonitorFailure() {
718 LOG(ERROR) << "Device " << FriendlyName()
719 << ": Link Monitor indicates failure.";
720}
721
Paul Stewart20088d82012-02-16 06:58:55 -0800722void Device::SetServiceConnectedState(Service::ConnectState state) {
723 DCHECK(selected_service_.get());
724
725 if (!selected_service_.get()) {
726 LOG(ERROR) << FriendlyName() << ": "
727 << "Portal detection completed but no selected service exists!";
728 return;
729 }
730
731 if (!selected_service_->IsConnected()) {
732 LOG(ERROR) << FriendlyName() << ": "
733 << "Portal detection completed but selected service "
734 << selected_service_->UniqueName()
735 << " is in non-connected state.";
736 return;
737 }
738
Paul Stewartc681fa02012-03-02 19:40:04 -0800739 if (state == Service::kStatePortal && connection_->is_default() &&
740 manager_->GetPortalCheckInterval() != 0) {
741 CHECK(portal_detector_.get());
742 if (!portal_detector_->StartAfterDelay(
743 manager_->GetPortalCheckURL(),
744 manager_->GetPortalCheckInterval())) {
745 LOG(ERROR) << "Device " << FriendlyName()
746 << ": Portal detection failed to restart: likely bad URL: "
747 << manager_->GetPortalCheckURL();
748 SetServiceState(Service::kStateOnline);
749 portal_detector_.reset();
750 return;
751 }
Ben Chanfad4a0b2012-04-18 15:49:59 -0700752 SLOG(Device, 2) << "Device " << FriendlyName()
753 << ": Portal detection retrying.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800754 } else {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700755 SLOG(Device, 2) << "Device " << FriendlyName()
756 << ": Portal will not retry.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800757 portal_detector_.reset();
758 }
759
Paul Stewart20088d82012-02-16 06:58:55 -0800760 SetServiceState(state);
761}
762
763void Device::PortalDetectorCallback(const PortalDetector::Result &result) {
764 if (!result.final) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700765 SLOG(Device, 2) << "Device " << FriendlyName()
766 << ": Received non-final status: "
767 << PortalDetector::StatusToString(result.status);
Paul Stewart20088d82012-02-16 06:58:55 -0800768 return;
769 }
770
Ben Chanfad4a0b2012-04-18 15:49:59 -0700771 SLOG(Device, 2) << "Device " << FriendlyName()
772 << ": Received final status: "
773 << PortalDetector::StatusToString(result.status);
Paul Stewart20088d82012-02-16 06:58:55 -0800774
Thieu Le85e050b2012-03-13 15:04:38 -0700775 portal_attempts_to_online_ += result.num_attempts;
776
777 metrics()->SendEnumToUMA(
778 metrics()->GetFullMetricName(Metrics::kMetricPortalResult, technology()),
779 Metrics::PortalDetectionResultToEnum(result),
780 Metrics::kPortalResultMax);
781
Paul Stewart20088d82012-02-16 06:58:55 -0800782 if (result.status == PortalDetector::kStatusSuccess) {
783 SetServiceConnectedState(Service::kStateOnline);
Thieu Le85e050b2012-03-13 15:04:38 -0700784
785 metrics()->SendToUMA(
786 metrics()->GetFullMetricName(
787 Metrics::kMetricPortalAttemptsToOnline, technology()),
788 portal_attempts_to_online_,
789 Metrics::kMetricPortalAttemptsToOnlineMin,
790 Metrics::kMetricPortalAttemptsToOnlineMax,
791 Metrics::kMetricPortalAttemptsToOnlineNumBuckets);
Paul Stewart20088d82012-02-16 06:58:55 -0800792 } else {
793 SetServiceConnectedState(Service::kStatePortal);
Thieu Le85e050b2012-03-13 15:04:38 -0700794
795 metrics()->SendToUMA(
796 metrics()->GetFullMetricName(
797 Metrics::kMetricPortalAttempts, technology()),
798 result.num_attempts,
799 Metrics::kMetricPortalAttemptsMin,
800 Metrics::kMetricPortalAttemptsMax,
801 Metrics::kMetricPortalAttemptsNumBuckets);
Paul Stewart20088d82012-02-16 06:58:55 -0800802 }
803}
804
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800805vector<string> Device::AvailableIPConfigs(Error */*error*/) {
Jason Glasgow08afdff2012-04-03 10:22:26 -0400806 if (ipconfig_.get()) {
807 string id = ipconfig_->GetRpcIdentifier();
808 return vector<string>(1, id);
809 }
810 return vector<string>();
Chris Masone4e851612011-07-01 10:46:53 -0700811}
812
813string Device::GetRpcConnectionIdentifier() {
814 return adaptor_->GetRpcConnectionIdentifier();
815}
816
Paul Stewart036dba02012-08-07 12:34:41 -0700817uint64 Device::GetLinkMonitorResponseTime(Error *error) {
818 if (!link_monitor_.get()) {
819 // It is not strictly an error that the link monitor does not
820 // exist, but returning an error here allows the GetProperties
821 // call in our Adaptor to omit this parameter.
822 error->Populate(Error::kNotFound, "Device is not running LinkMonitor");
823 return 0;
824 }
825 return link_monitor_->GetResponseTimeMilliseconds();
826}
827
Paul Stewart6ff27f52012-07-11 06:51:41 -0700828uint64 Device::GetReceiveByteCount(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 rx_byte_count - receive_byte_offset_;
833}
834
835uint64 Device::GetTransmitByteCount(Error */*error*/) {
836 uint64 rx_byte_count = 0, tx_byte_count = 0;
837 manager_->device_info()->GetByteCounts(
838 interface_index_, &rx_byte_count, &tx_byte_count);
839 return tx_byte_count - transmit_byte_offset_;
840}
841
Eric Shienbrood7fce52c2012-04-13 19:11:02 -0400842bool Device::IsUnderlyingDeviceEnabled() const {
843 return false;
844}
845
Eric Shienbrood9a245532012-03-07 14:20:39 -0500846// callback
847void Device::OnEnabledStateChanged(const ResultCallback &callback,
848 const Error &error) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700849 SLOG(Device, 2) << __func__ << "(" << enabled_pending_ << ")";
Eric Shienbrood9a245532012-03-07 14:20:39 -0500850 if (error.IsSuccess()) {
851 enabled_ = enabled_pending_;
852 manager_->UpdateEnabledTechnologies();
853 adaptor_->EmitBoolChanged(flimflam::kPoweredProperty, enabled_);
854 adaptor_->UpdateEnabled();
855 }
Gary Morainbaeefdf2012-04-30 14:53:35 -0700856 enabled_pending_ = enabled_;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500857 if (!callback.is_null())
858 callback.Run(error);
859}
860
861void Device::SetEnabled(bool enable) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700862 SLOG(Device, 2) << __func__ << "(" << enable << ")";
Jason Glasgow4a490792012-04-10 15:02:05 -0400863 Error error;
864 SetEnabledInternal(enable, false, &error, ResultCallback());
Jason Glasgow7234ec32012-05-23 16:01:21 -0400865 LOG_IF(ERROR, error.IsFailure() && !error.IsOngoing())
Jason Glasgow4a490792012-04-10 15:02:05 -0400866 << "Enabled failed, but no way to report the failure.";
Eric Shienbrood9a245532012-03-07 14:20:39 -0500867}
868
869void Device::SetEnabledPersistent(bool enable,
870 Error *error,
871 const ResultCallback &callback) {
872 SetEnabledInternal(enable, true, error, callback);
873}
874
875void Device::SetEnabledInternal(bool enable,
876 bool persist,
877 Error *error,
878 const ResultCallback &callback) {
Jason Glasgow4a490792012-04-10 15:02:05 -0400879 DCHECK(error);
Ben Chanfad4a0b2012-04-18 15:49:59 -0700880 SLOG(Device, 2) << "Device " << link_name_ << " "
881 << (enable ? "starting" : "stopping");
Eric Shienbrood9a245532012-03-07 14:20:39 -0500882 if (enable == enabled_) {
Jason Glasgow4a490792012-04-10 15:02:05 -0400883 error->Reset();
Eric Shienbrood9a245532012-03-07 14:20:39 -0500884 return;
885 }
886
887 if (enabled_pending_ == enable) {
Jason Glasgow4a490792012-04-10 15:02:05 -0400888 Error::PopulateAndLog(error, Error::kInProgress,
889 "Enable operation already in progress");
Eric Shienbrood9a245532012-03-07 14:20:39 -0500890 return;
891 }
892
893 if (persist) {
894 enabled_persistent_ = enable;
Darin Petkove7c6ad32012-06-29 10:22:09 +0200895 manager_->UpdateDevice(this);
Eric Shienbrood9a245532012-03-07 14:20:39 -0500896 }
897
898 enabled_pending_ = enable;
899 EnabledStateChangedCallback enabled_callback =
900 Bind(&Device::OnEnabledStateChanged,
901 weak_ptr_factory_.GetWeakPtr(), callback);
902 if (enable) {
903 running_ = true;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500904 Start(error, enabled_callback);
905 } else {
906 running_ = false;
907 DestroyIPConfig(); // breaks a reference cycle
908 SelectService(NULL); // breaks a reference cycle
909 rtnl_handler_->SetInterfaceFlags(interface_index(), 0, IFF_UP);
Ben Chanfad4a0b2012-04-18 15:49:59 -0700910 SLOG(Device, 3) << "Device " << link_name_ << " ipconfig_ "
911 << (ipconfig_ ? "is set." : "is not set.");
912 SLOG(Device, 3) << "Device " << link_name_ << " connection_ "
913 << (connection_ ? "is set." : "is not set.");
914 SLOG(Device, 3) << "Device " << link_name_ << " selected_service_ "
915 << (selected_service_ ? "is set." : "is not set.");
Eric Shienbrood9a245532012-03-07 14:20:39 -0500916 Stop(error, enabled_callback);
917 }
918}
919
Paul Stewart75897df2011-04-27 09:05:53 -0700920} // namespace shill