blob: 73c0ffddb260077d53c4600fb0f98ee3559f3f5b [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"
Gaurav Shah6d2c72d2012-10-16 16:30:44 -070028#include "shill/geolocation_info.h"
Paul Stewartf65320c2011-10-13 14:34:52 -070029#include "shill/http_proxy.h"
Paul Stewart036dba02012-08-07 12:34:41 -070030#include "shill/link_monitor.h"
Christopher Wileyb691efd2012-08-09 13:51:51 -070031#include "shill/logging.h"
Chris Masone8fe2c7e2011-06-09 15:51:19 -070032#include "shill/manager.h"
Thieu Le85e050b2012-03-13 15:04:38 -070033#include "shill/metrics.h"
Chris Masone95207da2011-06-29 16:50:49 -070034#include "shill/property_accessor.h"
Chris Masone2b105542011-06-22 10:58:09 -070035#include "shill/refptr_types.h"
Paul Stewartc39f1132011-06-22 12:02:28 -070036#include "shill/rtnl_handler.h"
Chris Masone2b105542011-06-22 10:58:09 -070037#include "shill/service.h"
Chris Masone5dec5f42011-07-22 14:07:55 -070038#include "shill/store_interface.h"
Gaurav Shah435de2c2011-11-17 19:01:07 -080039#include "shill/technology.h"
Paul Stewart75897df2011-04-27 09:05:53 -070040
Eric Shienbrood3e20a232012-02-16 11:35:56 -050041using base::Bind;
Chris Masone5dec5f42011-07-22 14:07:55 -070042using base::StringPrintf;
Chris Masone8fe2c7e2011-06-09 15:51:19 -070043using std::string;
44using std::vector;
45
Paul Stewart75897df2011-04-27 09:05:53 -070046namespace shill {
Chris Masone5dec5f42011-07-22 14:07:55 -070047
48// static
Paul Stewart2bf1d352011-12-06 15:02:55 -080049const char Device::kIPFlagTemplate[] = "/proc/sys/net/%s/conf/%s/%s";
50// static
51const char Device::kIPFlagVersion4[] = "ipv4";
52// static
53const char Device::kIPFlagVersion6[] = "ipv6";
54// static
55const char Device::kIPFlagDisableIPv6[] = "disable_ipv6";
56// static
57const char Device::kIPFlagUseTempAddr[] = "use_tempaddr";
58// static
59const char Device::kIPFlagUseTempAddrUsedAndDefault[] = "2";
Paul Stewartc8f4bef2011-12-13 09:45:51 -080060// static
61const char Device::kIPFlagReversePathFilter[] = "rp_filter";
62// static
63const char Device::kIPFlagReversePathFilterEnabled[] = "1";
64// static
65const char Device::kIPFlagReversePathFilterLooseMode[] = "2";
Paul Stewart2bf1d352011-12-06 15:02:55 -080066// static
Chris Masone5dec5f42011-07-22 14:07:55 -070067const char Device::kStoragePowered[] = "Powered";
Chris Masone5dec5f42011-07-22 14:07:55 -070068// static
69const char Device::kStorageIPConfigs[] = "IPConfigs";
Paul Stewart6ff27f52012-07-11 06:51:41 -070070// static
71const char Device::kStorageReceiveByteCount[] = "ReceiveByteCount";
72// static
73const char Device::kStorageTransmitByteCount[] = "TransmitByteCount";
Chris Masone5dec5f42011-07-22 14:07:55 -070074
Paul Stewart75897df2011-04-27 09:05:53 -070075Device::Device(ControlInterface *control_interface,
Paul Stewartb50f0b92011-05-16 16:31:42 -070076 EventDispatcher *dispatcher,
Thieu Le3426c8f2012-01-11 17:35:11 -080077 Metrics *metrics,
Paul Stewartf1ce5d22011-05-19 13:10:20 -070078 Manager *manager,
Darin Petkovafa6fc42011-06-21 16:21:08 -070079 const string &link_name,
Chris Masone626719f2011-08-18 16:58:48 -070080 const string &address,
Gaurav Shah435de2c2011-11-17 19:01:07 -080081 int interface_index,
82 Technology::Identifier technology)
Eric Shienbrood9a245532012-03-07 14:20:39 -050083 : enabled_(false),
84 enabled_persistent_(true),
85 enabled_pending_(enabled_),
Chris Masoneb925cc82011-06-22 15:39:57 -070086 reconnect_(true),
Chris Masone626719f2011-08-18 16:58:48 -070087 hardware_address_(address),
mukesh agrawalf60e4062011-05-27 13:13:41 -070088 interface_index_(interface_index),
89 running_(false),
Darin Petkovafa6fc42011-06-21 16:21:08 -070090 link_name_(link_name),
Chris Masone19e30402011-07-19 15:48:47 -070091 unique_id_(link_name),
Darin Petkovd9661952011-08-03 16:25:42 -070092 control_interface_(control_interface),
93 dispatcher_(dispatcher),
Thieu Le3426c8f2012-01-11 17:35:11 -080094 metrics_(metrics),
Chris Masone7df0c672011-07-15 10:24:54 -070095 manager_(manager),
Eric Shienbrood9a245532012-03-07 14:20:39 -050096 weak_ptr_factory_(this),
Darin Petkov77cb6812011-08-15 16:19:41 -070097 adaptor_(control_interface->CreateDeviceAdaptor(this)),
Eric Shienbrood9a245532012-03-07 14:20:39 -050098 portal_detector_callback_(Bind(&Device::PortalDetectorCallback,
99 weak_ptr_factory_.GetWeakPtr())),
Gaurav Shah435de2c2011-11-17 19:01:07 -0800100 technology_(technology),
Thieu Le85e050b2012-03-13 15:04:38 -0700101 portal_attempts_to_online_(0),
Paul Stewart6ff27f52012-07-11 06:51:41 -0700102 receive_byte_offset_(0),
103 transmit_byte_offset_(0),
mukesh agrawal5c4dd0b2011-09-14 13:53:14 -0700104 dhcp_provider_(DHCPProvider::GetInstance()),
105 rtnl_handler_(RTNLHandler::GetInstance()) {
Chris Masone27c4aa52011-07-02 13:10:14 -0700106 store_.RegisterConstString(flimflam::kAddressProperty, &hardware_address_);
Chris Masone4d42df82011-07-02 17:09:39 -0700107
108 // flimflam::kBgscanMethodProperty: Registered in WiFi
109 // flimflam::kBgscanShortIntervalProperty: Registered in WiFi
110 // flimflam::kBgscanSignalThresholdProperty: Registered in WiFi
111
112 // flimflam::kCellularAllowRoamingProperty: Registered in Cellular
113 // flimflam::kCarrierProperty: Registered in Cellular
114 // flimflam::kEsnProperty: Registered in Cellular
Darin Petkov3335b372011-08-22 11:05:32 -0700115 // flimflam::kHomeProviderProperty: Registered in Cellular
Chris Masone4d42df82011-07-02 17:09:39 -0700116 // flimflam::kImeiProperty: Registered in Cellular
Ben Chana5e27082012-07-31 14:30:28 -0700117 // flimflam::kIccidProperty: Registered in Cellular
Chris Masone4d42df82011-07-02 17:09:39 -0700118 // flimflam::kImsiProperty: Registered in Cellular
119 // flimflam::kManufacturerProperty: Registered in Cellular
120 // flimflam::kMdnProperty: Registered in Cellular
121 // flimflam::kMeidProperty: Registered in Cellular
122 // flimflam::kMinProperty: Registered in Cellular
123 // flimflam::kModelIDProperty: Registered in Cellular
124 // flimflam::kFirmwareRevisionProperty: Registered in Cellular
125 // flimflam::kHardwareRevisionProperty: Registered in Cellular
126 // flimflam::kPRLVersionProperty: Registered in Cellular
127 // flimflam::kSIMLockStatusProperty: Registered in Cellular
128 // flimflam::kFoundNetworksProperty: Registered in Cellular
Darin Petkove9d12e02011-07-27 15:09:37 -0700129 // flimflam::kDBusConnectionProperty: Registered in Cellular
130 // flimflam::kDBusObjectProperty: Register in Cellular
Chris Masone4d42df82011-07-02 17:09:39 -0700131
Jason Glasgowe8334fd2012-03-30 16:02:37 -0400132 store_.RegisterConstString(flimflam::kInterfaceProperty, &link_name_);
Jason Glasgow08afdff2012-04-03 10:22:26 -0400133 HelpRegisterConstDerivedRpcIdentifiers(flimflam::kIPConfigsProperty,
134 &Device::AvailableIPConfigs);
Chris Masone27c4aa52011-07-02 13:10:14 -0700135 store_.RegisterConstString(flimflam::kNameProperty, &link_name_);
Eric Shienbrood9a245532012-03-07 14:20:39 -0500136 store_.RegisterConstBool(flimflam::kPoweredProperty, &enabled_);
Jason Glasgowb5790052012-01-27 01:03:52 -0500137 HelpRegisterDerivedString(flimflam::kTypeProperty,
138 &Device::GetTechnologyString,
139 NULL);
Paul Stewart036dba02012-08-07 12:34:41 -0700140 HelpRegisterConstDerivedUint64(shill::kLinkMonitorResponseTimeProperty,
141 &Device::GetLinkMonitorResponseTime);
Jason Glasgowb5790052012-01-27 01:03:52 -0500142
Chris Masoneb925cc82011-06-22 15:39:57 -0700143 // TODO(cmasone): Chrome doesn't use this...does anyone?
Chris Masone27c4aa52011-07-02 13:10:14 -0700144 // store_.RegisterConstBool(flimflam::kReconnectProperty, &reconnect_);
Chris Masoneb925cc82011-06-22 15:39:57 -0700145
Chris Masone4e851612011-07-01 10:46:53 -0700146 // TODO(cmasone): Figure out what shill concept maps to flimflam's "Network".
Chris Masoneb925cc82011-06-22 15:39:57 -0700147 // known_properties_.push_back(flimflam::kNetworksProperty);
148
Chris Masone4d42df82011-07-02 17:09:39 -0700149 // flimflam::kScanningProperty: Registered in WiFi, Cellular
150 // flimflam::kScanIntervalProperty: Registered in WiFi, Cellular
Paul Stewart6ff27f52012-07-11 06:51:41 -0700151
152 if (manager_ && manager_->device_info()) { // Unit tests may not have these.
153 manager_->device_info()->GetByteCounts(
154 interface_index_, &receive_byte_offset_, &transmit_byte_offset_);
155 HelpRegisterConstDerivedUint64(shill::kReceiveByteCountProperty,
156 &Device::GetReceiveByteCount);
157 HelpRegisterConstDerivedUint64(shill::kTransmitByteCountProperty,
158 &Device::GetTransmitByteCount);
159 }
160
Darin Petkova0a0efe2012-06-27 12:50:01 +0200161 LOG(INFO) << "Device created: " << link_name_
162 << " index " << interface_index_;
Paul Stewart75897df2011-04-27 09:05:53 -0700163}
164
165Device::~Device() {
Darin Petkova0a0efe2012-06-27 12:50:01 +0200166 LOG(INFO) << "Device destructed: " << link_name_
167 << " index " << interface_index_;
Paul Stewart75897df2011-04-27 09:05:53 -0700168}
169
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700170void Device::LinkEvent(unsigned flags, unsigned change) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700171 SLOG(Device, 2) << "Device " << link_name_
172 << std::showbase << std::hex
173 << " flags " << flags << " changed " << change
174 << std::dec << std::noshowbase;
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700175}
176
Darin Petkovc0865312011-09-16 15:31:20 -0700177void Device::Scan(Error *error) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700178 SLOG(Device, 2) << "Device " << link_name_ << " scan requested.";
Paul Stewartbe005172011-11-02 18:10:29 -0700179 Error::PopulateAndLog(error, Error::kNotSupported,
180 "Device doesn't support scan.");
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700181}
182
Eric Shienbrood9a245532012-03-07 14:20:39 -0500183void Device::RegisterOnNetwork(const std::string &/*network_id*/, Error *error,
184 const ResultCallback &/*callback*/) {
185 Error::PopulateAndLog(error, Error::kNotSupported,
Paul Stewartbe005172011-11-02 18:10:29 -0700186 "Device doesn't support network registration.");
Darin Petkov9ae310f2011-08-30 15:41:13 -0700187}
188
Darin Petkovc64fe5e2012-01-11 12:46:13 +0100189void Device::RequirePIN(
Eric Shienbrood9a245532012-03-07 14:20:39 -0500190 const string &/*pin*/, bool /*require*/,
191 Error *error, const ResultCallback &/*callback*/) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700192 SLOG(Device, 2) << __func__;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500193 Error::PopulateAndLog(error, Error::kNotSupported,
194 "Device doesn't support RequirePIN.");
Darin Petkove42e1012011-08-31 12:35:04 -0700195}
196
Eric Shienbrood9a245532012-03-07 14:20:39 -0500197void Device::EnterPIN(const string &/*pin*/,
198 Error *error, const ResultCallback &/*callback*/) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700199 SLOG(Device, 2) << __func__;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500200 Error::PopulateAndLog(error, Error::kNotSupported,
201 "Device doesn't support EnterPIN.");
Darin Petkove42e1012011-08-31 12:35:04 -0700202}
203
mukesh agrawal1830fa12011-09-26 14:31:40 -0700204void Device::UnblockPIN(const string &/*unblock_code*/,
205 const string &/*pin*/,
Eric Shienbrood9a245532012-03-07 14:20:39 -0500206 Error *error, const ResultCallback &/*callback*/) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700207 SLOG(Device, 2) << __func__;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500208 Error::PopulateAndLog(error, Error::kNotSupported,
209 "Device doesn't support UnblockPIN.");
Darin Petkove42e1012011-08-31 12:35:04 -0700210}
211
mukesh agrawal1830fa12011-09-26 14:31:40 -0700212void Device::ChangePIN(const string &/*old_pin*/,
213 const string &/*new_pin*/,
Eric Shienbrood9a245532012-03-07 14:20:39 -0500214 Error *error, const ResultCallback &/*callback*/) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700215 SLOG(Device, 2) << __func__;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500216 Error::PopulateAndLog(error, Error::kNotSupported,
217 "Device doesn't support ChangePIN.");
Darin Petkove42e1012011-08-31 12:35:04 -0700218}
219
Darin Petkovc37a9c42012-09-06 15:28:22 +0200220void Device::SetCarrier(const string &/*carrier*/,
221 Error *error, const ResultCallback &/*callback*/) {
222 SLOG(Device, 2) << __func__;
223 Error::PopulateAndLog(error, Error::kNotSupported,
224 "Device doesn't support SetCarrier.");
225}
226
Paul Stewart2bf1d352011-12-06 15:02:55 -0800227void Device::DisableIPv6() {
228 SetIPFlag(IPAddress::kFamilyIPv6, kIPFlagDisableIPv6, "1");
229}
230
231void Device::EnableIPv6() {
232 SetIPFlag(IPAddress::kFamilyIPv6, kIPFlagDisableIPv6, "0");
233}
234
235void Device::EnableIPv6Privacy() {
236 SetIPFlag(IPAddress::kFamilyIPv6, kIPFlagUseTempAddr,
237 kIPFlagUseTempAddrUsedAndDefault);
238}
239
Paul Stewartc8f4bef2011-12-13 09:45:51 -0800240void Device::DisableReversePathFilter() {
241 // TODO(pstew): Current kernel doesn't offer reverse-path filtering flag
242 // for IPv6. crosbug.com/24228
243 SetIPFlag(IPAddress::kFamilyIPv4, kIPFlagReversePathFilter,
244 kIPFlagReversePathFilterLooseMode);
245}
246
247void Device::EnableReversePathFilter() {
248 SetIPFlag(IPAddress::kFamilyIPv4, kIPFlagReversePathFilter,
249 kIPFlagReversePathFilterEnabled);
250}
251
Gaurav Shah435de2c2011-11-17 19:01:07 -0800252bool Device::IsConnected() const {
253 if (selected_service_)
254 return selected_service_->IsConnected();
255 return false;
256}
257
Paul Stewartd215af62012-04-24 23:25:50 -0700258bool Device::IsConnectedToService(const ServiceRefPtr &service) const {
259 return service == selected_service_ && IsConnected();
260}
261
Chris Masone27c4aa52011-07-02 13:10:14 -0700262string Device::GetRpcIdentifier() {
263 return adaptor_->GetRpcIdentifier();
Chris Masone8fe2c7e2011-06-09 15:51:19 -0700264}
265
Chris Masone5dec5f42011-07-22 14:07:55 -0700266string Device::GetStorageIdentifier() {
267 string id = GetRpcIdentifier();
268 ControlInterface::RpcIdToStorageId(&id);
Chris Masone626719f2011-08-18 16:58:48 -0700269 size_t needle = id.find('_');
Chris Masone34af2182011-08-22 11:59:36 -0700270 DLOG_IF(ERROR, needle == string::npos) << "No _ in storage id?!?!";
Chris Masone626719f2011-08-18 16:58:48 -0700271 id.replace(id.begin() + needle + 1, id.end(), hardware_address_);
Chris Masone5dec5f42011-07-22 14:07:55 -0700272 return id;
273}
274
Gaurav Shah6d2c72d2012-10-16 16:30:44 -0700275vector<GeolocationInfo> Device::GetGeolocationObjects() const {
276 return vector<GeolocationInfo>();
277};
278
Jason Glasgowb5790052012-01-27 01:03:52 -0500279string Device::GetTechnologyString(Error */*error*/) {
280 return Technology::NameFromIdentifier(technology());
281}
282
Chris Masone19e30402011-07-19 15:48:47 -0700283const string& Device::FriendlyName() const {
Chris Masone7df0c672011-07-15 10:24:54 -0700284 return link_name_;
Darin Petkovafa6fc42011-06-21 16:21:08 -0700285}
286
Chris Masone19e30402011-07-19 15:48:47 -0700287const string& Device::UniqueName() const {
288 return unique_id_;
289}
290
Chris Masone5dec5f42011-07-22 14:07:55 -0700291bool Device::Load(StoreInterface *storage) {
292 const string id = GetStorageIdentifier();
293 if (!storage->ContainsGroup(id)) {
294 LOG(WARNING) << "Device is not available in the persistent store: " << id;
295 return false;
296 }
Eric Shienbrood9a245532012-03-07 14:20:39 -0500297 enabled_persistent_ = true;
298 storage->GetBool(id, kStoragePowered, &enabled_persistent_);
Paul Stewart6ff27f52012-07-11 06:51:41 -0700299 uint64 rx_byte_count = 0, tx_byte_count = 0;
300
301 manager_->device_info()->GetByteCounts(
302 interface_index_, &rx_byte_count, &tx_byte_count);
303 // If there is a byte-count present in the profile, the return value
304 // of Device::Get*ByteCount() should be the this stored value plus
305 // whatever additional bytes we receive since time-of-load. We
306 // accomplish this by the subtractions below, which can validly
307 // roll over "negative" in the subtractions below and in Get*ByteCount.
308 uint64 profile_byte_count;
309 if (storage->GetUint64(id, kStorageReceiveByteCount, &profile_byte_count)) {
310 receive_byte_offset_ = rx_byte_count - profile_byte_count;
311 }
312 if (storage->GetUint64(id, kStorageTransmitByteCount, &profile_byte_count)) {
313 transmit_byte_offset_ = tx_byte_count - profile_byte_count;
314 }
315
Chris Masone5dec5f42011-07-22 14:07:55 -0700316 return true;
317}
318
319bool Device::Save(StoreInterface *storage) {
320 const string id = GetStorageIdentifier();
Eric Shienbrood9a245532012-03-07 14:20:39 -0500321 storage->SetBool(id, kStoragePowered, enabled_persistent_);
Chris Masone34af2182011-08-22 11:59:36 -0700322 if (ipconfig_.get()) {
323 // The _0 is an index into the list of IPConfigs that this device might
324 // have. We only have one IPConfig right now, and I hope to never have
325 // to support more, as sleffler indicates that associating IPConfigs
326 // with devices is wrong and due to be changed in flimflam anyhow.
327 string suffix = hardware_address_ + "_0";
328 ipconfig_->Save(storage, suffix);
329 storage->SetString(id, kStorageIPConfigs, SerializeIPConfigs(suffix));
330 }
Paul Stewart6ff27f52012-07-11 06:51:41 -0700331 storage->SetUint64(id, kStorageReceiveByteCount, GetReceiveByteCount(NULL));
332 storage->SetUint64(id, kStorageTransmitByteCount, GetTransmitByteCount(NULL));
Chris Masone5dec5f42011-07-22 14:07:55 -0700333 return true;
334}
335
mukesh agrawal784566d2012-08-08 18:32:58 -0700336void Device::OnBeforeSuspend() {
337 // Nothing to be done in the general case.
338}
339
340void Device::OnAfterResume() {
341 if (ipconfig_) {
342 SLOG(Device, 3) << "Renewing IP address on resume.";
343 ipconfig_->RenewIP();
344 }
345}
346
Darin Petkov2b8e44e2012-06-25 15:13:26 +0200347void Device::DropConnection() {
348 SLOG(Device, 2) << __func__;
349 DestroyIPConfig();
350 SelectService(NULL);
351}
352
Darin Petkovafa6fc42011-06-21 16:21:08 -0700353void Device::DestroyIPConfig() {
Paul Stewart2bf1d352011-12-06 15:02:55 -0800354 DisableIPv6();
Darin Petkovafa6fc42011-06-21 16:21:08 -0700355 if (ipconfig_.get()) {
356 ipconfig_->ReleaseIP();
357 ipconfig_ = NULL;
358 }
Paul Stewarte6132022011-08-16 09:11:02 -0700359 DestroyConnection();
Darin Petkovafa6fc42011-06-21 16:21:08 -0700360}
361
Arman Ugurayed8e6102012-11-29 14:47:20 -0800362bool Device::ShouldUseArpGateway() const {
363 return false;
364}
365
Paul Stewart2bf1d352011-12-06 15:02:55 -0800366bool Device::AcquireIPConfig() {
Paul Stewartd408fdf2012-05-07 17:15:57 -0700367 return AcquireIPConfigWithLeaseName(string());
368}
369
370bool Device::AcquireIPConfigWithLeaseName(const string &lease_name) {
Darin Petkovafa6fc42011-06-21 16:21:08 -0700371 DestroyIPConfig();
Paul Stewart2bf1d352011-12-06 15:02:55 -0800372 EnableIPv6();
Arman Ugurayed8e6102012-11-29 14:47:20 -0800373 bool arp_gateway = manager_->GetArpGateway() && ShouldUseArpGateway();
Paul Stewartd408fdf2012-05-07 17:15:57 -0700374 ipconfig_ = dhcp_provider_->CreateConfig(link_name_,
375 manager_->GetHostName(),
376 lease_name,
Arman Ugurayed8e6102012-11-29 14:47:20 -0800377 arp_gateway);
Eric Shienbrood9a245532012-03-07 14:20:39 -0500378 ipconfig_->RegisterUpdateCallback(Bind(&Device::OnIPConfigUpdated,
379 weak_ptr_factory_.GetWeakPtr()));
Paul Stewart1062d9d2012-04-27 10:42:27 -0700380 dispatcher_->PostTask(Bind(&Device::ConfigureStaticIPTask,
381 weak_ptr_factory_.GetWeakPtr()));
Darin Petkovafa6fc42011-06-21 16:21:08 -0700382 return ipconfig_->RequestIP();
383}
384
Jason Glasgowb5790052012-01-27 01:03:52 -0500385void Device::HelpRegisterDerivedString(
386 const string &name,
387 string(Device::*get)(Error *error),
388 void(Device::*set)(const string &value, Error *error)) {
389 store_.RegisterDerivedString(
390 name,
391 StringAccessor(new CustomAccessor<Device, string>(this, get, set)));
392}
393
mukesh agrawalffa3d042011-10-06 15:26:10 -0700394void Device::HelpRegisterDerivedStrings(
395 const string &name,
Eric Shienbrood9a245532012-03-07 14:20:39 -0500396 Strings(Device::*get)(Error *error),
397 void(Device::*set)(const Strings &value, Error *error)) {
Chris Masone27c4aa52011-07-02 13:10:14 -0700398 store_.RegisterDerivedStrings(
399 name,
400 StringsAccessor(new CustomAccessor<Device, Strings>(this, get, set)));
Chris Masone4e851612011-07-01 10:46:53 -0700401}
402
Jason Glasgow08afdff2012-04-03 10:22:26 -0400403void Device::HelpRegisterConstDerivedRpcIdentifiers(
404 const string &name,
405 RpcIdentifiers(Device::*get)(Error *)) {
406 store_.RegisterDerivedRpcIdentifiers(
407 name,
408 RpcIdentifiersAccessor(
409 new CustomAccessor<Device, RpcIdentifiers>(this, get, NULL)));
410}
411
Paul Stewart6ff27f52012-07-11 06:51:41 -0700412void Device::HelpRegisterConstDerivedUint64(
413 const string &name,
414 uint64(Device::*get)(Error *)) {
415 store_.RegisterDerivedUint64(
416 name,
417 Uint64Accessor(
418 new CustomAccessor<Device, uint64>(this, get, NULL)));
419}
420
Paul Stewart1062d9d2012-04-27 10:42:27 -0700421void Device::ConfigureStaticIPTask() {
422 SLOG(Device, 2) << __func__ << " selected_service " << selected_service_.get()
423 << " ipconfig " << ipconfig_.get();
424
425 if (!selected_service_ || !ipconfig_) {
426 return;
427 }
428
429 const StaticIPParameters &static_ip_parameters =
430 selected_service_->static_ip_parameters();
431 if (static_ip_parameters.ContainsAddress()) {
432 SLOG(Device, 2) << __func__ << " " << " configuring static IP parameters.";
433 // If the parameters contain an IP address, apply them now and bring
434 // the interface up. When DHCP information arrives, it will supplement
435 // the static information.
436 OnIPConfigUpdated(ipconfig_, true);
437 } else {
438 SLOG(Device, 2) << __func__ << " " << " no static IP address.";
439 }
440}
441
Darin Petkov79d74c92012-03-07 17:20:32 +0100442void Device::OnIPConfigUpdated(const IPConfigRefPtr &ipconfig, bool success) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700443 SLOG(Device, 2) << __func__ << " " << " success: " << success;
Paul Stewartc39f1132011-06-22 12:02:28 -0700444 if (success) {
Paul Stewarte6132022011-08-16 09:11:02 -0700445 CreateConnection();
Paul Stewart1062d9d2012-04-27 10:42:27 -0700446 if (selected_service_) {
447 ipconfig->ApplyStaticIPParameters(
Paul Stewartdef189e2012-08-02 20:12:09 -0700448 selected_service_->mutable_static_ip_parameters());
Paul Stewart1062d9d2012-04-27 10:42:27 -0700449 }
Paul Stewarte6132022011-08-16 09:11:02 -0700450 connection_->UpdateFromIPConfig(ipconfig);
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800451 // SetConnection must occur after the UpdateFromIPConfig so the
452 // service can use the values derived from the connection.
Paul Stewart1062d9d2012-04-27 10:42:27 -0700453 if (selected_service_) {
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800454 selected_service_->SetConnection(connection_);
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800455 }
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800456 // The service state change needs to happen last, so that at the
457 // time we report the state change to the manager, the service
458 // has its connection.
459 SetServiceState(Service::kStateConnected);
Thieu Le85e050b2012-03-13 15:04:38 -0700460 portal_attempts_to_online_ = 0;
Paul Stewart20088d82012-02-16 06:58:55 -0800461 // Subtle: Start portal detection after transitioning the service
462 // to the Connected state because this call may immediately transition
463 // to the Online state.
Thieu Led1760922012-09-11 14:15:35 -0700464 if (selected_service_) {
465 StartPortalDetection();
466 }
Paul Stewart036dba02012-08-07 12:34:41 -0700467 StartLinkMonitor();
Paul Stewarte6132022011-08-16 09:11:02 -0700468 } else {
mukesh agrawalcc0fded2012-05-09 13:40:58 -0700469 // TODO(pstew): This logic gets yet more complex when multiple
470 // IPConfig types are run in parallel (e.g. DHCP and DHCP6)
471 if (selected_service_ &&
472 selected_service_->static_ip_parameters().ContainsAddress()) {
473 // Consider three cases:
474 //
475 // 1. We're here because DHCP failed while starting up. There
476 // are two subcases:
477 // a. DHCP has failed, and Static IP config has _not yet_
478 // completed. It's fine to do nothing, because we'll
479 // apply the static config shortly.
480 // b. DHCP has failed, and Static IP config has _already_
481 // completed. It's fine to do nothing, because we can
482 // continue to use the static config that's already
483 // been applied.
484 //
485 // 2. We're here because a previously valid DHCP configuration
486 // is no longer valid. There's still a static IP config,
487 // because the condition in the if clause evaluated to true.
488 // Furthermore, the static config includes an IP address for
489 // us to use.
490 //
491 // The current configuration may include some DHCP
492 // parameters, overriden by any static parameters
493 // provided. We continue to use this configuration, because
494 // the only configuration element that is leased to us (IP
495 // address) will be overriden by a static parameter.
496 return;
497 }
498
Christopher Wileyabd3b502012-09-26 13:08:52 -0700499 if (selected_service_) {
500 Error error;
501 selected_service_->DisconnectWithFailure(Service::kFailureDHCP, &error);
502 }
Paul Stewarte6132022011-08-16 09:11:02 -0700503 DestroyConnection();
Paul Stewartc39f1132011-06-22 12:02:28 -0700504 }
Chris Masone8fe2c7e2011-06-09 15:51:19 -0700505}
506
Paul Stewarte6132022011-08-16 09:11:02 -0700507void Device::CreateConnection() {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700508 SLOG(Device, 2) << __func__;
Paul Stewarte6132022011-08-16 09:11:02 -0700509 if (!connection_.get()) {
Paul Stewartbf667612012-06-29 14:49:54 -0700510 connection_ = new Connection(
511 interface_index_,
512 link_name_,
513 technology_,
514 manager_->device_info(),
515 manager_->IsTechnologyShortDNSTimeoutEnabled(technology_));
Paul Stewarte6132022011-08-16 09:11:02 -0700516 }
517}
518
519void Device::DestroyConnection() {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700520 SLOG(Device, 2) << __func__;
Paul Stewart20088d82012-02-16 06:58:55 -0800521 StopPortalDetection();
Paul Stewart036dba02012-08-07 12:34:41 -0700522 StopLinkMonitor();
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800523 if (selected_service_.get()) {
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800524 selected_service_->SetConnection(NULL);
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800525 }
Paul Stewartc8f4bef2011-12-13 09:45:51 -0800526 connection_ = NULL;
Paul Stewarte6132022011-08-16 09:11:02 -0700527}
528
Paul Stewart03dba0b2011-08-22 16:32:45 -0700529void Device::SelectService(const ServiceRefPtr &service) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700530 SLOG(Device, 2) << __func__ << ": "
531 << (service.get() ?
532 StringPrintf("%s (%s)",
533 service->UniqueName().c_str(),
534 service->friendly_name().c_str()) :
535 "*reset*");
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000536
537 if (selected_service_.get() == service.get()) {
538 // No change to |selected_service_|. Return early to avoid
539 // changing its state.
540 return;
541 }
542
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800543 if (selected_service_.get()) {
544 if (selected_service_->state() != Service::kStateFailure) {
545 selected_service_->SetState(Service::kStateIdle);
546 }
Paul Stewart20b0a092012-05-22 20:39:57 -0700547 // Just in case the Device subclass has not already done so, make
548 // sure the previously selected service has its connection removed.
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800549 selected_service_->SetConnection(NULL);
Paul Stewartc8860612012-09-28 07:36:21 -0700550 StopLinkMonitor();
551 StopPortalDetection();
Paul Stewart03dba0b2011-08-22 16:32:45 -0700552 }
553 selected_service_ = service;
554}
555
556void Device::SetServiceState(Service::ConnectState state) {
557 if (selected_service_.get()) {
558 selected_service_->SetState(state);
559 }
560}
561
562void Device::SetServiceFailure(Service::ConnectFailure failure_state) {
563 if (selected_service_.get()) {
564 selected_service_->SetFailure(failure_state);
565 }
566}
567
Eric Shienbroodcc95c5d2012-03-30 15:25:49 -0400568void Device::SetServiceFailureSilent(Service::ConnectFailure failure_state) {
569 if (selected_service_.get()) {
570 selected_service_->SetFailureSilent(failure_state);
571 }
572}
573
Chris Masone34af2182011-08-22 11:59:36 -0700574string Device::SerializeIPConfigs(const string &suffix) {
575 return StringPrintf("%s:%s", suffix.c_str(), ipconfig_->type().c_str());
Chris Masone5dec5f42011-07-22 14:07:55 -0700576}
577
Paul Stewart2bf1d352011-12-06 15:02:55 -0800578bool Device::SetIPFlag(IPAddress::Family family, const string &flag,
579 const string &value) {
580 string ip_version;
581 if (family == IPAddress::kFamilyIPv4) {
582 ip_version = kIPFlagVersion4;
583 } else if (family == IPAddress::kFamilyIPv6) {
584 ip_version = kIPFlagVersion6;
585 } else {
586 NOTIMPLEMENTED();
587 }
588 FilePath flag_file(StringPrintf(kIPFlagTemplate, ip_version.c_str(),
589 link_name_.c_str(), flag.c_str()));
Ben Chanfad4a0b2012-04-18 15:49:59 -0700590 SLOG(Device, 2) << "Writing " << value << " to flag file "
591 << flag_file.value();
Paul Stewart2bf1d352011-12-06 15:02:55 -0800592 if (file_util::WriteFile(flag_file, value.c_str(), value.length()) != 1) {
593 LOG(ERROR) << StringPrintf("IP flag write failed: %s to %s",
594 value.c_str(), flag_file.value().c_str());
595 return false;
596 }
597 return true;
598}
599
Paul Stewart6ff27f52012-07-11 06:51:41 -0700600void Device::ResetByteCounters() {
601 manager_->device_info()->GetByteCounts(
602 interface_index_, &receive_byte_offset_, &transmit_byte_offset_);
603 manager_->UpdateDevice(this);
604}
605
Paul Stewartd215af62012-04-24 23:25:50 -0700606bool Device::RestartPortalDetection() {
607 StopPortalDetection();
608 return StartPortalDetection();
609}
610
Paul Stewartc681fa02012-03-02 19:40:04 -0800611bool Device::RequestPortalDetection() {
612 if (!selected_service_) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700613 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800614 << ": No selected service, so no need for portal check.";
615 return false;
616 }
617
618 if (!connection_.get()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700619 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800620 << ": No connection, so no need for portal check.";
621 return false;
622 }
623
624 if (selected_service_->state() != Service::kStatePortal) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700625 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800626 << ": Service is not in portal state. No need to start check.";
627 return false;
628 }
629
630 if (!connection_->is_default()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700631 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800632 << ": Service is not the default connection. Don't start check.";
633 return false;
634 }
635
636 if (portal_detector_.get() && portal_detector_->IsInProgress()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700637 SLOG(Device, 2) << FriendlyName()
638 << ": Portal detection is already running.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800639 return true;
640 }
641
642 return StartPortalDetection();
643}
644
Paul Stewart20088d82012-02-16 06:58:55 -0800645bool Device::StartPortalDetection() {
Paul Stewartd215af62012-04-24 23:25:50 -0700646 DCHECK(selected_service_.get());
647 if (selected_service_->IsPortalDetectionDisabled()) {
648 SLOG(Device, 2) << "Service " << selected_service_->friendly_name()
649 << ": Portal detection is disabled; "
650 << "marking service online.";
651 SetServiceConnectedState(Service::kStateOnline);
652 return false;
653 }
654
655 if (selected_service_->IsPortalDetectionAuto() &&
656 !manager_->IsPortalDetectionEnabled(technology())) {
Paul Stewart20088d82012-02-16 06:58:55 -0800657 // If portal detection is disabled for this technology, immediately set
658 // the service state to "Online".
Ben Chanfad4a0b2012-04-18 15:49:59 -0700659 SLOG(Device, 2) << "Device " << FriendlyName()
660 << ": Portal detection is disabled; "
661 << "marking service online.";
Paul Stewart20088d82012-02-16 06:58:55 -0800662 SetServiceConnectedState(Service::kStateOnline);
663 return false;
664 }
665
Paul Stewart20088d82012-02-16 06:58:55 -0800666 if (selected_service_->HasProxyConfig()) {
667 // Services with HTTP proxy configurations should not be checked by the
668 // connection manager, since we don't have the ability to evaluate
669 // arbitrary proxy configs and their possible credentials.
Ben Chanfad4a0b2012-04-18 15:49:59 -0700670 SLOG(Device, 2) << "Device " << FriendlyName()
671 << ": Service has proxy config; marking it online.";
Paul Stewart20088d82012-02-16 06:58:55 -0800672 SetServiceConnectedState(Service::kStateOnline);
673 return false;
674 }
675
676 portal_detector_.reset(new PortalDetector(connection_,
677 dispatcher_,
Eric Shienbrood3e20a232012-02-16 11:35:56 -0500678 portal_detector_callback_));
Paul Stewart20088d82012-02-16 06:58:55 -0800679 if (!portal_detector_->Start(manager_->GetPortalCheckURL())) {
680 LOG(ERROR) << "Device " << FriendlyName()
681 << ": Portal detection failed to start: likely bad URL: "
682 << manager_->GetPortalCheckURL();
683 SetServiceConnectedState(Service::kStateOnline);
684 return false;
685 }
686
Ben Chanfad4a0b2012-04-18 15:49:59 -0700687 SLOG(Device, 2) << "Device " << FriendlyName()
688 << ": Portal detection has started.";
Paul Stewart20088d82012-02-16 06:58:55 -0800689 return true;
690}
691
692void Device::StopPortalDetection() {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700693 SLOG(Device, 2) << "Device " << FriendlyName()
694 << ": Portal detection has stopped.";
Paul Stewart20088d82012-02-16 06:58:55 -0800695 portal_detector_.reset();
696}
697
Paul Stewart036dba02012-08-07 12:34:41 -0700698void Device::set_link_monitor(LinkMonitor *link_monitor) {
699 link_monitor_.reset(link_monitor);
700}
701
702bool Device::StartLinkMonitor() {
703 if (!manager_->IsTechnologyLinkMonitorEnabled(technology())) {
704 SLOG(Device, 2) << "Device " << FriendlyName()
705 << ": Link Monitoring is disabled.";
706 return false;
707 }
708
709 if (!link_monitor()) {
710 set_link_monitor(
711 new LinkMonitor(
712 connection_, dispatcher_, metrics(), manager_->device_info(),
713 Bind(&Device::OnLinkMonitorFailure, weak_ptr_factory_.GetWeakPtr())));
714 }
715
716 SLOG(Device, 2) << "Device " << FriendlyName()
717 << ": Link Monitor starting.";
718 return link_monitor_->Start();
719}
720
721void Device::StopLinkMonitor() {
722 SLOG(Device, 2) << "Device " << FriendlyName()
723 << ": Link Monitor stopping.";
724 link_monitor_.reset();
725}
726
727void Device::OnLinkMonitorFailure() {
728 LOG(ERROR) << "Device " << FriendlyName()
729 << ": Link Monitor indicates failure.";
730}
731
Paul Stewart20088d82012-02-16 06:58:55 -0800732void Device::SetServiceConnectedState(Service::ConnectState state) {
733 DCHECK(selected_service_.get());
734
735 if (!selected_service_.get()) {
736 LOG(ERROR) << FriendlyName() << ": "
737 << "Portal detection completed but no selected service exists!";
738 return;
739 }
740
741 if (!selected_service_->IsConnected()) {
742 LOG(ERROR) << FriendlyName() << ": "
743 << "Portal detection completed but selected service "
744 << selected_service_->UniqueName()
745 << " is in non-connected state.";
746 return;
747 }
748
Paul Stewartc681fa02012-03-02 19:40:04 -0800749 if (state == Service::kStatePortal && connection_->is_default() &&
750 manager_->GetPortalCheckInterval() != 0) {
751 CHECK(portal_detector_.get());
752 if (!portal_detector_->StartAfterDelay(
753 manager_->GetPortalCheckURL(),
754 manager_->GetPortalCheckInterval())) {
755 LOG(ERROR) << "Device " << FriendlyName()
756 << ": Portal detection failed to restart: likely bad URL: "
757 << manager_->GetPortalCheckURL();
758 SetServiceState(Service::kStateOnline);
759 portal_detector_.reset();
760 return;
761 }
Ben Chanfad4a0b2012-04-18 15:49:59 -0700762 SLOG(Device, 2) << "Device " << FriendlyName()
763 << ": Portal detection retrying.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800764 } else {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700765 SLOG(Device, 2) << "Device " << FriendlyName()
766 << ": Portal will not retry.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800767 portal_detector_.reset();
768 }
769
Paul Stewart20088d82012-02-16 06:58:55 -0800770 SetServiceState(state);
771}
772
773void Device::PortalDetectorCallback(const PortalDetector::Result &result) {
774 if (!result.final) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700775 SLOG(Device, 2) << "Device " << FriendlyName()
776 << ": Received non-final status: "
777 << PortalDetector::StatusToString(result.status);
Paul Stewart20088d82012-02-16 06:58:55 -0800778 return;
779 }
780
Ben Chanfad4a0b2012-04-18 15:49:59 -0700781 SLOG(Device, 2) << "Device " << FriendlyName()
782 << ": Received final status: "
783 << PortalDetector::StatusToString(result.status);
Paul Stewart20088d82012-02-16 06:58:55 -0800784
Thieu Le85e050b2012-03-13 15:04:38 -0700785 portal_attempts_to_online_ += result.num_attempts;
786
787 metrics()->SendEnumToUMA(
788 metrics()->GetFullMetricName(Metrics::kMetricPortalResult, technology()),
789 Metrics::PortalDetectionResultToEnum(result),
790 Metrics::kPortalResultMax);
791
Paul Stewart20088d82012-02-16 06:58:55 -0800792 if (result.status == PortalDetector::kStatusSuccess) {
793 SetServiceConnectedState(Service::kStateOnline);
Thieu Le85e050b2012-03-13 15:04:38 -0700794
795 metrics()->SendToUMA(
796 metrics()->GetFullMetricName(
797 Metrics::kMetricPortalAttemptsToOnline, technology()),
798 portal_attempts_to_online_,
799 Metrics::kMetricPortalAttemptsToOnlineMin,
800 Metrics::kMetricPortalAttemptsToOnlineMax,
801 Metrics::kMetricPortalAttemptsToOnlineNumBuckets);
Paul Stewart20088d82012-02-16 06:58:55 -0800802 } else {
803 SetServiceConnectedState(Service::kStatePortal);
Thieu Le85e050b2012-03-13 15:04:38 -0700804
805 metrics()->SendToUMA(
806 metrics()->GetFullMetricName(
807 Metrics::kMetricPortalAttempts, technology()),
808 result.num_attempts,
809 Metrics::kMetricPortalAttemptsMin,
810 Metrics::kMetricPortalAttemptsMax,
811 Metrics::kMetricPortalAttemptsNumBuckets);
Paul Stewart20088d82012-02-16 06:58:55 -0800812 }
813}
814
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800815vector<string> Device::AvailableIPConfigs(Error */*error*/) {
Jason Glasgow08afdff2012-04-03 10:22:26 -0400816 if (ipconfig_.get()) {
817 string id = ipconfig_->GetRpcIdentifier();
818 return vector<string>(1, id);
819 }
820 return vector<string>();
Chris Masone4e851612011-07-01 10:46:53 -0700821}
822
823string Device::GetRpcConnectionIdentifier() {
824 return adaptor_->GetRpcConnectionIdentifier();
825}
826
Paul Stewart036dba02012-08-07 12:34:41 -0700827uint64 Device::GetLinkMonitorResponseTime(Error *error) {
828 if (!link_monitor_.get()) {
829 // It is not strictly an error that the link monitor does not
830 // exist, but returning an error here allows the GetProperties
831 // call in our Adaptor to omit this parameter.
832 error->Populate(Error::kNotFound, "Device is not running LinkMonitor");
833 return 0;
834 }
835 return link_monitor_->GetResponseTimeMilliseconds();
836}
837
Paul Stewart6ff27f52012-07-11 06:51:41 -0700838uint64 Device::GetReceiveByteCount(Error */*error*/) {
839 uint64 rx_byte_count = 0, tx_byte_count = 0;
840 manager_->device_info()->GetByteCounts(
841 interface_index_, &rx_byte_count, &tx_byte_count);
842 return rx_byte_count - receive_byte_offset_;
843}
844
845uint64 Device::GetTransmitByteCount(Error */*error*/) {
846 uint64 rx_byte_count = 0, tx_byte_count = 0;
847 manager_->device_info()->GetByteCounts(
848 interface_index_, &rx_byte_count, &tx_byte_count);
849 return tx_byte_count - transmit_byte_offset_;
850}
851
Eric Shienbrood7fce52c2012-04-13 19:11:02 -0400852bool Device::IsUnderlyingDeviceEnabled() const {
853 return false;
854}
855
Eric Shienbrood9a245532012-03-07 14:20:39 -0500856// callback
857void Device::OnEnabledStateChanged(const ResultCallback &callback,
858 const Error &error) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700859 SLOG(Device, 2) << __func__ << "(" << enabled_pending_ << ")";
Eric Shienbrood9a245532012-03-07 14:20:39 -0500860 if (error.IsSuccess()) {
861 enabled_ = enabled_pending_;
862 manager_->UpdateEnabledTechnologies();
863 adaptor_->EmitBoolChanged(flimflam::kPoweredProperty, enabled_);
864 adaptor_->UpdateEnabled();
865 }
Gary Morainbaeefdf2012-04-30 14:53:35 -0700866 enabled_pending_ = enabled_;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500867 if (!callback.is_null())
868 callback.Run(error);
869}
870
871void Device::SetEnabled(bool enable) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700872 SLOG(Device, 2) << __func__ << "(" << enable << ")";
Jason Glasgow4a490792012-04-10 15:02:05 -0400873 Error error;
874 SetEnabledInternal(enable, false, &error, ResultCallback());
Jason Glasgow7234ec32012-05-23 16:01:21 -0400875 LOG_IF(ERROR, error.IsFailure() && !error.IsOngoing())
Jason Glasgow4a490792012-04-10 15:02:05 -0400876 << "Enabled failed, but no way to report the failure.";
Eric Shienbrood9a245532012-03-07 14:20:39 -0500877}
878
879void Device::SetEnabledPersistent(bool enable,
880 Error *error,
881 const ResultCallback &callback) {
882 SetEnabledInternal(enable, true, error, callback);
883}
884
885void Device::SetEnabledInternal(bool enable,
886 bool persist,
887 Error *error,
888 const ResultCallback &callback) {
Jason Glasgow4a490792012-04-10 15:02:05 -0400889 DCHECK(error);
Ben Chanfad4a0b2012-04-18 15:49:59 -0700890 SLOG(Device, 2) << "Device " << link_name_ << " "
891 << (enable ? "starting" : "stopping");
Eric Shienbrood9a245532012-03-07 14:20:39 -0500892 if (enable == enabled_) {
Jason Glasgow4a490792012-04-10 15:02:05 -0400893 error->Reset();
Eric Shienbrood9a245532012-03-07 14:20:39 -0500894 return;
895 }
896
897 if (enabled_pending_ == enable) {
Jason Glasgow4a490792012-04-10 15:02:05 -0400898 Error::PopulateAndLog(error, Error::kInProgress,
899 "Enable operation already in progress");
Eric Shienbrood9a245532012-03-07 14:20:39 -0500900 return;
901 }
902
903 if (persist) {
904 enabled_persistent_ = enable;
Darin Petkove7c6ad32012-06-29 10:22:09 +0200905 manager_->UpdateDevice(this);
Eric Shienbrood9a245532012-03-07 14:20:39 -0500906 }
907
908 enabled_pending_ = enable;
909 EnabledStateChangedCallback enabled_callback =
910 Bind(&Device::OnEnabledStateChanged,
911 weak_ptr_factory_.GetWeakPtr(), callback);
912 if (enable) {
913 running_ = true;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500914 Start(error, enabled_callback);
915 } else {
916 running_ = false;
917 DestroyIPConfig(); // breaks a reference cycle
918 SelectService(NULL); // breaks a reference cycle
919 rtnl_handler_->SetInterfaceFlags(interface_index(), 0, IFF_UP);
Ben Chanfad4a0b2012-04-18 15:49:59 -0700920 SLOG(Device, 3) << "Device " << link_name_ << " ipconfig_ "
921 << (ipconfig_ ? "is set." : "is not set.");
922 SLOG(Device, 3) << "Device " << link_name_ << " connection_ "
923 << (connection_ ? "is set." : "is not set.");
924 SLOG(Device, 3) << "Device " << link_name_ << " selected_service_ "
925 << (selected_service_ ? "is set." : "is not set.");
Eric Shienbrood9a245532012-03-07 14:20:39 -0500926 Stop(error, enabled_callback);
927 }
928}
929
Paul Stewart75897df2011-04-27 09:05:53 -0700930} // namespace shill