blob: 04c5bc113809a0bd2d8610a854762ca6d433e1fc [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
Arman Ugurayf84a4242013-04-09 20:01:07 -070021#include "shill/async_connection.h"
Paul Stewarte6132022011-08-16 09:11:02 -070022#include "shill/connection.h"
Arman Ugurayf84a4242013-04-09 20:01:07 -070023#include "shill/connection_health_checker.h"
Paul Stewart75897df2011-04-27 09:05:53 -070024#include "shill/control_interface.h"
Chris Masoned7732e42011-05-20 11:08:56 -070025#include "shill/device_dbus_adaptor.h"
Chris Masone2b105542011-06-22 10:58:09 -070026#include "shill/dhcp_config.h"
Darin Petkovafa6fc42011-06-21 16:21:08 -070027#include "shill/dhcp_provider.h"
Arman Ugurayf84a4242013-04-09 20:01:07 -070028#include "shill/dns_client.h"
Chris Masone8fe2c7e2011-06-09 15:51:19 -070029#include "shill/error.h"
Paul Stewart26b327e2011-10-19 11:38:09 -070030#include "shill/event_dispatcher.h"
Gaurav Shah6d2c72d2012-10-16 16:30:44 -070031#include "shill/geolocation_info.h"
Paul Stewartf65320c2011-10-13 14:34:52 -070032#include "shill/http_proxy.h"
Arman Ugurayf84a4242013-04-09 20:01:07 -070033#include "shill/ip_address.h"
Paul Stewart036dba02012-08-07 12:34:41 -070034#include "shill/link_monitor.h"
Christopher Wileyb691efd2012-08-09 13:51:51 -070035#include "shill/logging.h"
Chris Masone8fe2c7e2011-06-09 15:51:19 -070036#include "shill/manager.h"
Thieu Le85e050b2012-03-13 15:04:38 -070037#include "shill/metrics.h"
Chris Masone95207da2011-06-29 16:50:49 -070038#include "shill/property_accessor.h"
Chris Masone2b105542011-06-22 10:58:09 -070039#include "shill/refptr_types.h"
Paul Stewartc39f1132011-06-22 12:02:28 -070040#include "shill/rtnl_handler.h"
Chris Masone2b105542011-06-22 10:58:09 -070041#include "shill/service.h"
Arman Ugurayf84a4242013-04-09 20:01:07 -070042#include "shill/socket_info_reader.h"
Chris Masone5dec5f42011-07-22 14:07:55 -070043#include "shill/store_interface.h"
Gaurav Shah435de2c2011-11-17 19:01:07 -080044#include "shill/technology.h"
Ben Chanb061f892013-02-27 17:46:55 -080045#include "shill/traffic_monitor.h"
Paul Stewart75897df2011-04-27 09:05:53 -070046
Eric Shienbrood3e20a232012-02-16 11:35:56 -050047using base::Bind;
Albert Chaulk0e1cdea2013-02-27 15:32:55 -080048using base::FilePath;
Chris Masone5dec5f42011-07-22 14:07:55 -070049using base::StringPrintf;
Chris Masone8fe2c7e2011-06-09 15:51:19 -070050using std::string;
51using std::vector;
52
Paul Stewart75897df2011-04-27 09:05:53 -070053namespace shill {
Chris Masone5dec5f42011-07-22 14:07:55 -070054
55// static
Paul Stewart2bf1d352011-12-06 15:02:55 -080056const char Device::kIPFlagTemplate[] = "/proc/sys/net/%s/conf/%s/%s";
57// static
58const char Device::kIPFlagVersion4[] = "ipv4";
59// static
60const char Device::kIPFlagVersion6[] = "ipv6";
61// static
62const char Device::kIPFlagDisableIPv6[] = "disable_ipv6";
63// static
64const char Device::kIPFlagUseTempAddr[] = "use_tempaddr";
65// static
66const char Device::kIPFlagUseTempAddrUsedAndDefault[] = "2";
Paul Stewartc8f4bef2011-12-13 09:45:51 -080067// static
68const char Device::kIPFlagReversePathFilter[] = "rp_filter";
69// static
70const char Device::kIPFlagReversePathFilterEnabled[] = "1";
71// static
72const char Device::kIPFlagReversePathFilterLooseMode[] = "2";
Paul Stewart2bf1d352011-12-06 15:02:55 -080073// static
Paul Stewart41a071e2013-04-26 07:56:04 -070074const char Device::kStorageIPConfigs[] = "IPConfigs";
75// static
Prathmesh Prabhuba99b592013-04-17 15:13:14 -070076const char Device::kStoragePowered[] = "Powered";
77// static
Paul Stewart6ff27f52012-07-11 06:51:41 -070078const char Device::kStorageReceiveByteCount[] = "ReceiveByteCount";
79// static
80const char Device::kStorageTransmitByteCount[] = "TransmitByteCount";
Chris Masone5dec5f42011-07-22 14:07:55 -070081
Paul Stewart75897df2011-04-27 09:05:53 -070082Device::Device(ControlInterface *control_interface,
Paul Stewartb50f0b92011-05-16 16:31:42 -070083 EventDispatcher *dispatcher,
Thieu Le3426c8f2012-01-11 17:35:11 -080084 Metrics *metrics,
Paul Stewartf1ce5d22011-05-19 13:10:20 -070085 Manager *manager,
Darin Petkovafa6fc42011-06-21 16:21:08 -070086 const string &link_name,
Chris Masone626719f2011-08-18 16:58:48 -070087 const string &address,
Gaurav Shah435de2c2011-11-17 19:01:07 -080088 int interface_index,
89 Technology::Identifier technology)
Eric Shienbrood9a245532012-03-07 14:20:39 -050090 : enabled_(false),
91 enabled_persistent_(true),
92 enabled_pending_(enabled_),
Chris Masoneb925cc82011-06-22 15:39:57 -070093 reconnect_(true),
Chris Masone626719f2011-08-18 16:58:48 -070094 hardware_address_(address),
mukesh agrawalf60e4062011-05-27 13:13:41 -070095 interface_index_(interface_index),
96 running_(false),
Darin Petkovafa6fc42011-06-21 16:21:08 -070097 link_name_(link_name),
Chris Masone19e30402011-07-19 15:48:47 -070098 unique_id_(link_name),
Darin Petkovd9661952011-08-03 16:25:42 -070099 control_interface_(control_interface),
100 dispatcher_(dispatcher),
Thieu Le3426c8f2012-01-11 17:35:11 -0800101 metrics_(metrics),
Chris Masone7df0c672011-07-15 10:24:54 -0700102 manager_(manager),
Eric Shienbrood9a245532012-03-07 14:20:39 -0500103 weak_ptr_factory_(this),
Darin Petkov77cb6812011-08-15 16:19:41 -0700104 adaptor_(control_interface->CreateDeviceAdaptor(this)),
Ben Chanb061f892013-02-27 17:46:55 -0800105 traffic_monitor_enabled_(false),
Eric Shienbrood9a245532012-03-07 14:20:39 -0500106 portal_detector_callback_(Bind(&Device::PortalDetectorCallback,
107 weak_ptr_factory_.GetWeakPtr())),
Gaurav Shah435de2c2011-11-17 19:01:07 -0800108 technology_(technology),
Thieu Le85e050b2012-03-13 15:04:38 -0700109 portal_attempts_to_online_(0),
Paul Stewart6ff27f52012-07-11 06:51:41 -0700110 receive_byte_offset_(0),
111 transmit_byte_offset_(0),
mukesh agrawal5c4dd0b2011-09-14 13:53:14 -0700112 dhcp_provider_(DHCPProvider::GetInstance()),
113 rtnl_handler_(RTNLHandler::GetInstance()) {
Chris Masone27c4aa52011-07-02 13:10:14 -0700114 store_.RegisterConstString(flimflam::kAddressProperty, &hardware_address_);
Chris Masone4d42df82011-07-02 17:09:39 -0700115
116 // flimflam::kBgscanMethodProperty: Registered in WiFi
117 // flimflam::kBgscanShortIntervalProperty: Registered in WiFi
118 // flimflam::kBgscanSignalThresholdProperty: Registered in WiFi
119
120 // flimflam::kCellularAllowRoamingProperty: Registered in Cellular
121 // flimflam::kCarrierProperty: Registered in Cellular
122 // flimflam::kEsnProperty: Registered in Cellular
Darin Petkov3335b372011-08-22 11:05:32 -0700123 // flimflam::kHomeProviderProperty: Registered in Cellular
Chris Masone4d42df82011-07-02 17:09:39 -0700124 // flimflam::kImeiProperty: Registered in Cellular
Ben Chana5e27082012-07-31 14:30:28 -0700125 // flimflam::kIccidProperty: Registered in Cellular
Chris Masone4d42df82011-07-02 17:09:39 -0700126 // flimflam::kImsiProperty: Registered in Cellular
127 // flimflam::kManufacturerProperty: Registered in Cellular
128 // flimflam::kMdnProperty: Registered in Cellular
129 // flimflam::kMeidProperty: Registered in Cellular
130 // flimflam::kMinProperty: Registered in Cellular
131 // flimflam::kModelIDProperty: Registered in Cellular
132 // flimflam::kFirmwareRevisionProperty: Registered in Cellular
133 // flimflam::kHardwareRevisionProperty: Registered in Cellular
134 // flimflam::kPRLVersionProperty: Registered in Cellular
135 // flimflam::kSIMLockStatusProperty: Registered in Cellular
136 // flimflam::kFoundNetworksProperty: Registered in Cellular
Darin Petkove9d12e02011-07-27 15:09:37 -0700137 // flimflam::kDBusConnectionProperty: Registered in Cellular
138 // flimflam::kDBusObjectProperty: Register in Cellular
Chris Masone4d42df82011-07-02 17:09:39 -0700139
Jason Glasgowe8334fd2012-03-30 16:02:37 -0400140 store_.RegisterConstString(flimflam::kInterfaceProperty, &link_name_);
Jason Glasgow08afdff2012-04-03 10:22:26 -0400141 HelpRegisterConstDerivedRpcIdentifiers(flimflam::kIPConfigsProperty,
142 &Device::AvailableIPConfigs);
Chris Masone27c4aa52011-07-02 13:10:14 -0700143 store_.RegisterConstString(flimflam::kNameProperty, &link_name_);
Eric Shienbrood9a245532012-03-07 14:20:39 -0500144 store_.RegisterConstBool(flimflam::kPoweredProperty, &enabled_);
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700145 HelpRegisterConstDerivedString(flimflam::kTypeProperty,
146 &Device::GetTechnologyString);
Paul Stewart036dba02012-08-07 12:34:41 -0700147 HelpRegisterConstDerivedUint64(shill::kLinkMonitorResponseTimeProperty,
148 &Device::GetLinkMonitorResponseTime);
Jason Glasgowb5790052012-01-27 01:03:52 -0500149
Chris Masoneb925cc82011-06-22 15:39:57 -0700150 // TODO(cmasone): Chrome doesn't use this...does anyone?
Chris Masone27c4aa52011-07-02 13:10:14 -0700151 // store_.RegisterConstBool(flimflam::kReconnectProperty, &reconnect_);
Chris Masoneb925cc82011-06-22 15:39:57 -0700152
Chris Masone4e851612011-07-01 10:46:53 -0700153 // TODO(cmasone): Figure out what shill concept maps to flimflam's "Network".
Chris Masoneb925cc82011-06-22 15:39:57 -0700154 // known_properties_.push_back(flimflam::kNetworksProperty);
155
Chris Masone4d42df82011-07-02 17:09:39 -0700156 // flimflam::kScanningProperty: Registered in WiFi, Cellular
157 // flimflam::kScanIntervalProperty: Registered in WiFi, Cellular
Paul Stewart6ff27f52012-07-11 06:51:41 -0700158
159 if (manager_ && manager_->device_info()) { // Unit tests may not have these.
160 manager_->device_info()->GetByteCounts(
161 interface_index_, &receive_byte_offset_, &transmit_byte_offset_);
162 HelpRegisterConstDerivedUint64(shill::kReceiveByteCountProperty,
Ben Chanb061f892013-02-27 17:46:55 -0800163 &Device::GetReceiveByteCountProperty);
Paul Stewart6ff27f52012-07-11 06:51:41 -0700164 HelpRegisterConstDerivedUint64(shill::kTransmitByteCountProperty,
Ben Chanb061f892013-02-27 17:46:55 -0800165 &Device::GetTransmitByteCountProperty);
Paul Stewart6ff27f52012-07-11 06:51:41 -0700166 }
167
Darin Petkova0a0efe2012-06-27 12:50:01 +0200168 LOG(INFO) << "Device created: " << link_name_
169 << " index " << interface_index_;
Paul Stewart75897df2011-04-27 09:05:53 -0700170}
171
172Device::~Device() {
Darin Petkova0a0efe2012-06-27 12:50:01 +0200173 LOG(INFO) << "Device destructed: " << link_name_
174 << " index " << interface_index_;
Paul Stewart75897df2011-04-27 09:05:53 -0700175}
176
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700177void Device::LinkEvent(unsigned flags, unsigned change) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700178 SLOG(Device, 2) << "Device " << link_name_
179 << std::showbase << std::hex
180 << " flags " << flags << " changed " << change
181 << std::dec << std::noshowbase;
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700182}
183
Wade Guthrie68d41092013-04-02 12:56:02 -0700184void Device::Scan(ScanType scan_type, Error *error) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700185 SLOG(Device, 2) << "Device " << link_name_ << " scan requested.";
Paul Stewartbe005172011-11-02 18:10:29 -0700186 Error::PopulateAndLog(error, Error::kNotSupported,
187 "Device doesn't support scan.");
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700188}
189
Eric Shienbrood9a245532012-03-07 14:20:39 -0500190void Device::RegisterOnNetwork(const std::string &/*network_id*/, Error *error,
191 const ResultCallback &/*callback*/) {
192 Error::PopulateAndLog(error, Error::kNotSupported,
Paul Stewartbe005172011-11-02 18:10:29 -0700193 "Device doesn't support network registration.");
Darin Petkov9ae310f2011-08-30 15:41:13 -0700194}
195
Darin Petkovc64fe5e2012-01-11 12:46:13 +0100196void Device::RequirePIN(
Eric Shienbrood9a245532012-03-07 14:20:39 -0500197 const string &/*pin*/, bool /*require*/,
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 RequirePIN.");
Darin Petkove42e1012011-08-31 12:35:04 -0700202}
203
Eric Shienbrood9a245532012-03-07 14:20:39 -0500204void Device::EnterPIN(const string &/*pin*/,
205 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 EnterPIN.");
Darin Petkove42e1012011-08-31 12:35:04 -0700209}
210
mukesh agrawal1830fa12011-09-26 14:31:40 -0700211void Device::UnblockPIN(const string &/*unblock_code*/,
212 const string &/*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 UnblockPIN.");
Darin Petkove42e1012011-08-31 12:35:04 -0700217}
218
mukesh agrawal1830fa12011-09-26 14:31:40 -0700219void Device::ChangePIN(const string &/*old_pin*/,
220 const string &/*new_pin*/,
Eric Shienbrood9a245532012-03-07 14:20:39 -0500221 Error *error, const ResultCallback &/*callback*/) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700222 SLOG(Device, 2) << __func__;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500223 Error::PopulateAndLog(error, Error::kNotSupported,
224 "Device doesn't support ChangePIN.");
Darin Petkove42e1012011-08-31 12:35:04 -0700225}
226
Ben Chanad663e12013-01-08 01:58:47 -0800227void Device::Reset(Error *error, const ResultCallback &/*callback*/) {
228 SLOG(Device, 2) << __func__;
229 Error::PopulateAndLog(error, Error::kNotSupported,
230 "Device doesn't support Reset.");
231}
232
Darin Petkovc37a9c42012-09-06 15:28:22 +0200233void Device::SetCarrier(const string &/*carrier*/,
234 Error *error, const ResultCallback &/*callback*/) {
235 SLOG(Device, 2) << __func__;
236 Error::PopulateAndLog(error, Error::kNotSupported,
237 "Device doesn't support SetCarrier.");
238}
239
Paul Stewart2bf1d352011-12-06 15:02:55 -0800240void Device::DisableIPv6() {
241 SetIPFlag(IPAddress::kFamilyIPv6, kIPFlagDisableIPv6, "1");
242}
243
244void Device::EnableIPv6() {
245 SetIPFlag(IPAddress::kFamilyIPv6, kIPFlagDisableIPv6, "0");
246}
247
248void Device::EnableIPv6Privacy() {
249 SetIPFlag(IPAddress::kFamilyIPv6, kIPFlagUseTempAddr,
250 kIPFlagUseTempAddrUsedAndDefault);
251}
252
Paul Stewartc8f4bef2011-12-13 09:45:51 -0800253void Device::DisableReversePathFilter() {
254 // TODO(pstew): Current kernel doesn't offer reverse-path filtering flag
255 // for IPv6. crosbug.com/24228
256 SetIPFlag(IPAddress::kFamilyIPv4, kIPFlagReversePathFilter,
257 kIPFlagReversePathFilterLooseMode);
258}
259
260void Device::EnableReversePathFilter() {
261 SetIPFlag(IPAddress::kFamilyIPv4, kIPFlagReversePathFilter,
262 kIPFlagReversePathFilterEnabled);
263}
264
Gaurav Shah435de2c2011-11-17 19:01:07 -0800265bool Device::IsConnected() const {
266 if (selected_service_)
267 return selected_service_->IsConnected();
268 return false;
269}
270
Paul Stewartd215af62012-04-24 23:25:50 -0700271bool Device::IsConnectedToService(const ServiceRefPtr &service) const {
272 return service == selected_service_ && IsConnected();
273}
274
mukesh agrawalf6b32092013-04-10 15:49:55 -0700275string Device::GetRpcIdentifier() const {
Chris Masone27c4aa52011-07-02 13:10:14 -0700276 return adaptor_->GetRpcIdentifier();
Chris Masone8fe2c7e2011-06-09 15:51:19 -0700277}
278
Chris Masone5dec5f42011-07-22 14:07:55 -0700279string Device::GetStorageIdentifier() {
280 string id = GetRpcIdentifier();
281 ControlInterface::RpcIdToStorageId(&id);
Chris Masone626719f2011-08-18 16:58:48 -0700282 size_t needle = id.find('_');
Chris Masone34af2182011-08-22 11:59:36 -0700283 DLOG_IF(ERROR, needle == string::npos) << "No _ in storage id?!?!";
Chris Masone626719f2011-08-18 16:58:48 -0700284 id.replace(id.begin() + needle + 1, id.end(), hardware_address_);
Chris Masone5dec5f42011-07-22 14:07:55 -0700285 return id;
286}
287
Gaurav Shah6d2c72d2012-10-16 16:30:44 -0700288vector<GeolocationInfo> Device::GetGeolocationObjects() const {
289 return vector<GeolocationInfo>();
290};
291
Jason Glasgowb5790052012-01-27 01:03:52 -0500292string Device::GetTechnologyString(Error */*error*/) {
293 return Technology::NameFromIdentifier(technology());
294}
295
Chris Masone19e30402011-07-19 15:48:47 -0700296const string& Device::FriendlyName() const {
Chris Masone7df0c672011-07-15 10:24:54 -0700297 return link_name_;
Darin Petkovafa6fc42011-06-21 16:21:08 -0700298}
299
Chris Masone19e30402011-07-19 15:48:47 -0700300const string& Device::UniqueName() const {
301 return unique_id_;
302}
303
Chris Masone5dec5f42011-07-22 14:07:55 -0700304bool Device::Load(StoreInterface *storage) {
305 const string id = GetStorageIdentifier();
306 if (!storage->ContainsGroup(id)) {
307 LOG(WARNING) << "Device is not available in the persistent store: " << id;
308 return false;
309 }
Eric Shienbrood9a245532012-03-07 14:20:39 -0500310 enabled_persistent_ = true;
311 storage->GetBool(id, kStoragePowered, &enabled_persistent_);
Paul Stewart6ff27f52012-07-11 06:51:41 -0700312 uint64 rx_byte_count = 0, tx_byte_count = 0;
313
314 manager_->device_info()->GetByteCounts(
315 interface_index_, &rx_byte_count, &tx_byte_count);
316 // If there is a byte-count present in the profile, the return value
317 // of Device::Get*ByteCount() should be the this stored value plus
318 // whatever additional bytes we receive since time-of-load. We
319 // accomplish this by the subtractions below, which can validly
320 // roll over "negative" in the subtractions below and in Get*ByteCount.
321 uint64 profile_byte_count;
322 if (storage->GetUint64(id, kStorageReceiveByteCount, &profile_byte_count)) {
323 receive_byte_offset_ = rx_byte_count - profile_byte_count;
324 }
325 if (storage->GetUint64(id, kStorageTransmitByteCount, &profile_byte_count)) {
326 transmit_byte_offset_ = tx_byte_count - profile_byte_count;
327 }
328
Chris Masone5dec5f42011-07-22 14:07:55 -0700329 return true;
330}
331
332bool Device::Save(StoreInterface *storage) {
333 const string id = GetStorageIdentifier();
Eric Shienbrood9a245532012-03-07 14:20:39 -0500334 storage->SetBool(id, kStoragePowered, enabled_persistent_);
Chris Masone34af2182011-08-22 11:59:36 -0700335 if (ipconfig_.get()) {
336 // The _0 is an index into the list of IPConfigs that this device might
337 // have. We only have one IPConfig right now, and I hope to never have
338 // to support more, as sleffler indicates that associating IPConfigs
339 // with devices is wrong and due to be changed in flimflam anyhow.
340 string suffix = hardware_address_ + "_0";
341 ipconfig_->Save(storage, suffix);
342 storage->SetString(id, kStorageIPConfigs, SerializeIPConfigs(suffix));
343 }
Ben Chanb061f892013-02-27 17:46:55 -0800344 storage->SetUint64(id, kStorageReceiveByteCount, GetReceiveByteCount());
345 storage->SetUint64(id, kStorageTransmitByteCount, GetTransmitByteCount());
Chris Masone5dec5f42011-07-22 14:07:55 -0700346 return true;
347}
348
mukesh agrawal784566d2012-08-08 18:32:58 -0700349void Device::OnBeforeSuspend() {
350 // Nothing to be done in the general case.
351}
352
353void Device::OnAfterResume() {
354 if (ipconfig_) {
355 SLOG(Device, 3) << "Renewing IP address on resume.";
356 ipconfig_->RenewIP();
357 }
358}
359
Darin Petkov2b8e44e2012-06-25 15:13:26 +0200360void Device::DropConnection() {
361 SLOG(Device, 2) << __func__;
362 DestroyIPConfig();
363 SelectService(NULL);
364}
365
Darin Petkovafa6fc42011-06-21 16:21:08 -0700366void Device::DestroyIPConfig() {
Paul Stewart2bf1d352011-12-06 15:02:55 -0800367 DisableIPv6();
Darin Petkovafa6fc42011-06-21 16:21:08 -0700368 if (ipconfig_.get()) {
Paul Stewart217c61d2013-06-13 15:12:02 -0700369 ipconfig_->ReleaseIP(IPConfig::kReleaseReasonDisconnect);
Darin Petkovafa6fc42011-06-21 16:21:08 -0700370 ipconfig_ = NULL;
371 }
Paul Stewarte6132022011-08-16 09:11:02 -0700372 DestroyConnection();
Darin Petkovafa6fc42011-06-21 16:21:08 -0700373}
374
Arman Ugurayed8e6102012-11-29 14:47:20 -0800375bool Device::ShouldUseArpGateway() const {
376 return false;
377}
378
Paul Stewart2bf1d352011-12-06 15:02:55 -0800379bool Device::AcquireIPConfig() {
Paul Stewartd408fdf2012-05-07 17:15:57 -0700380 return AcquireIPConfigWithLeaseName(string());
381}
382
383bool Device::AcquireIPConfigWithLeaseName(const string &lease_name) {
Darin Petkovafa6fc42011-06-21 16:21:08 -0700384 DestroyIPConfig();
Paul Stewart2bf1d352011-12-06 15:02:55 -0800385 EnableIPv6();
Arman Ugurayed8e6102012-11-29 14:47:20 -0800386 bool arp_gateway = manager_->GetArpGateway() && ShouldUseArpGateway();
Paul Stewartd408fdf2012-05-07 17:15:57 -0700387 ipconfig_ = dhcp_provider_->CreateConfig(link_name_,
388 manager_->GetHostName(),
389 lease_name,
Arman Ugurayed8e6102012-11-29 14:47:20 -0800390 arp_gateway);
Eric Shienbrood9a245532012-03-07 14:20:39 -0500391 ipconfig_->RegisterUpdateCallback(Bind(&Device::OnIPConfigUpdated,
392 weak_ptr_factory_.GetWeakPtr()));
Paul Stewart1062d9d2012-04-27 10:42:27 -0700393 dispatcher_->PostTask(Bind(&Device::ConfigureStaticIPTask,
394 weak_ptr_factory_.GetWeakPtr()));
Darin Petkovafa6fc42011-06-21 16:21:08 -0700395 return ipconfig_->RequestIP();
396}
397
Albert Chaulk0e1cdea2013-02-27 15:32:55 -0800398void Device::DestroyIPConfigLease(const string &name) {
399 dhcp_provider_->DestroyLease(name);
400}
401
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700402void Device::HelpRegisterConstDerivedString(
Jason Glasgowb5790052012-01-27 01:03:52 -0500403 const string &name,
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700404 string(Device::*get)(Error *error)) {
Jason Glasgowb5790052012-01-27 01:03:52 -0500405 store_.RegisterDerivedString(
406 name,
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700407 StringAccessor(new CustomAccessor<Device, string>(this, get, NULL)));
Chris Masone4e851612011-07-01 10:46:53 -0700408}
409
Jason Glasgow08afdff2012-04-03 10:22:26 -0400410void Device::HelpRegisterConstDerivedRpcIdentifiers(
411 const string &name,
412 RpcIdentifiers(Device::*get)(Error *)) {
413 store_.RegisterDerivedRpcIdentifiers(
414 name,
415 RpcIdentifiersAccessor(
416 new CustomAccessor<Device, RpcIdentifiers>(this, get, NULL)));
417}
418
Paul Stewart6ff27f52012-07-11 06:51:41 -0700419void Device::HelpRegisterConstDerivedUint64(
420 const string &name,
421 uint64(Device::*get)(Error *)) {
422 store_.RegisterDerivedUint64(
423 name,
424 Uint64Accessor(
425 new CustomAccessor<Device, uint64>(this, get, NULL)));
426}
427
Paul Stewart1062d9d2012-04-27 10:42:27 -0700428void Device::ConfigureStaticIPTask() {
429 SLOG(Device, 2) << __func__ << " selected_service " << selected_service_.get()
430 << " ipconfig " << ipconfig_.get();
431
432 if (!selected_service_ || !ipconfig_) {
433 return;
434 }
435
436 const StaticIPParameters &static_ip_parameters =
437 selected_service_->static_ip_parameters();
438 if (static_ip_parameters.ContainsAddress()) {
439 SLOG(Device, 2) << __func__ << " " << " configuring static IP parameters.";
440 // If the parameters contain an IP address, apply them now and bring
441 // the interface up. When DHCP information arrives, it will supplement
442 // the static information.
443 OnIPConfigUpdated(ipconfig_, true);
444 } else {
445 SLOG(Device, 2) << __func__ << " " << " no static IP address.";
446 }
447}
448
Darin Petkov79d74c92012-03-07 17:20:32 +0100449void Device::OnIPConfigUpdated(const IPConfigRefPtr &ipconfig, bool success) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700450 SLOG(Device, 2) << __func__ << " " << " success: " << success;
Paul Stewartc39f1132011-06-22 12:02:28 -0700451 if (success) {
Paul Stewarte6132022011-08-16 09:11:02 -0700452 CreateConnection();
Paul Stewart1062d9d2012-04-27 10:42:27 -0700453 if (selected_service_) {
454 ipconfig->ApplyStaticIPParameters(
Paul Stewartdef189e2012-08-02 20:12:09 -0700455 selected_service_->mutable_static_ip_parameters());
Paul Stewart217c61d2013-06-13 15:12:02 -0700456 if (selected_service_->static_ip_parameters().ContainsAddress()) {
457 // If we are using a statically configured IP address instead
458 // of a leased IP address, release any acquired lease so it may
459 // be used by others. This allows us to merge other non-leased
460 // parameters (like DNS) when they're available from a DHCP server
461 // and not overridden by static parameters, but at the same time
462 // we avoid taking up a dynamic IP address the DHCP server could
463 // assign to someone else who might actually use it.
464 ipconfig->ReleaseIP(IPConfig::kReleaseReasonStaticIP);
465 }
Paul Stewart1062d9d2012-04-27 10:42:27 -0700466 }
Paul Stewarte6132022011-08-16 09:11:02 -0700467 connection_->UpdateFromIPConfig(ipconfig);
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800468 // SetConnection must occur after the UpdateFromIPConfig so the
469 // service can use the values derived from the connection.
Paul Stewart1062d9d2012-04-27 10:42:27 -0700470 if (selected_service_) {
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800471 selected_service_->SetConnection(connection_);
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800472 }
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800473 // The service state change needs to happen last, so that at the
474 // time we report the state change to the manager, the service
475 // has its connection.
476 SetServiceState(Service::kStateConnected);
Christopher Wiley5519e9e2013-01-08 16:55:56 -0800477 OnConnected();
Thieu Le85e050b2012-03-13 15:04:38 -0700478 portal_attempts_to_online_ = 0;
Paul Stewart20088d82012-02-16 06:58:55 -0800479 // Subtle: Start portal detection after transitioning the service
480 // to the Connected state because this call may immediately transition
481 // to the Online state.
Thieu Led1760922012-09-11 14:15:35 -0700482 if (selected_service_) {
483 StartPortalDetection();
484 }
Paul Stewart036dba02012-08-07 12:34:41 -0700485 StartLinkMonitor();
Ben Chanb061f892013-02-27 17:46:55 -0800486 StartTrafficMonitor();
Prathmesh Prabhuba99b592013-04-17 15:13:14 -0700487 SetupConnectionHealthChecker();
Paul Stewarte6132022011-08-16 09:11:02 -0700488 } else {
mukesh agrawalcc0fded2012-05-09 13:40:58 -0700489 // TODO(pstew): This logic gets yet more complex when multiple
490 // IPConfig types are run in parallel (e.g. DHCP and DHCP6)
491 if (selected_service_ &&
492 selected_service_->static_ip_parameters().ContainsAddress()) {
493 // Consider three cases:
494 //
495 // 1. We're here because DHCP failed while starting up. There
496 // are two subcases:
497 // a. DHCP has failed, and Static IP config has _not yet_
498 // completed. It's fine to do nothing, because we'll
499 // apply the static config shortly.
500 // b. DHCP has failed, and Static IP config has _already_
501 // completed. It's fine to do nothing, because we can
502 // continue to use the static config that's already
503 // been applied.
504 //
505 // 2. We're here because a previously valid DHCP configuration
506 // is no longer valid. There's still a static IP config,
507 // because the condition in the if clause evaluated to true.
508 // Furthermore, the static config includes an IP address for
509 // us to use.
510 //
511 // The current configuration may include some DHCP
512 // parameters, overriden by any static parameters
513 // provided. We continue to use this configuration, because
514 // the only configuration element that is leased to us (IP
515 // address) will be overriden by a static parameter.
516 return;
517 }
518
Christopher Wileyabd3b502012-09-26 13:08:52 -0700519 if (selected_service_) {
520 Error error;
521 selected_service_->DisconnectWithFailure(Service::kFailureDHCP, &error);
522 }
Paul Stewarte6132022011-08-16 09:11:02 -0700523 DestroyConnection();
Paul Stewartc39f1132011-06-22 12:02:28 -0700524 }
Chris Masone8fe2c7e2011-06-09 15:51:19 -0700525}
526
Christopher Wiley5519e9e2013-01-08 16:55:56 -0800527void Device::OnConnected() {}
528
Paul Stewart8596f9f2013-03-14 07:58:26 -0700529void Device::OnConnectionUpdated() {
530 if (selected_service_) {
531 manager_->UpdateService(selected_service_);
532 }
533}
534
Paul Stewarte6132022011-08-16 09:11:02 -0700535void Device::CreateConnection() {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700536 SLOG(Device, 2) << __func__;
Paul Stewarte6132022011-08-16 09:11:02 -0700537 if (!connection_.get()) {
mukesh agrawal23ac6b72013-01-31 18:52:37 -0800538 connection_ = new Connection(interface_index_,
539 link_name_,
540 technology_,
541 manager_->device_info());
Paul Stewarte6132022011-08-16 09:11:02 -0700542 }
543}
544
545void Device::DestroyConnection() {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700546 SLOG(Device, 2) << __func__;
Paul Stewart20088d82012-02-16 06:58:55 -0800547 StopPortalDetection();
Paul Stewart036dba02012-08-07 12:34:41 -0700548 StopLinkMonitor();
Ben Chanb061f892013-02-27 17:46:55 -0800549 StopTrafficMonitor();
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800550 if (selected_service_.get()) {
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800551 selected_service_->SetConnection(NULL);
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800552 }
Paul Stewartc8f4bef2011-12-13 09:45:51 -0800553 connection_ = NULL;
Arman Ugurayf84a4242013-04-09 20:01:07 -0700554 health_checker_.reset();
Paul Stewarte6132022011-08-16 09:11:02 -0700555}
556
Paul Stewart03dba0b2011-08-22 16:32:45 -0700557void Device::SelectService(const ServiceRefPtr &service) {
Darin Petkov457728b2013-01-09 09:49:08 +0100558 SLOG(Device, 2) << __func__ << ": service "
559 << (service ? service->unique_name() : "*reset*");
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000560
561 if (selected_service_.get() == service.get()) {
562 // No change to |selected_service_|. Return early to avoid
563 // changing its state.
564 return;
565 }
566
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800567 if (selected_service_.get()) {
568 if (selected_service_->state() != Service::kStateFailure) {
569 selected_service_->SetState(Service::kStateIdle);
570 }
Paul Stewart20b0a092012-05-22 20:39:57 -0700571 // Just in case the Device subclass has not already done so, make
572 // sure the previously selected service has its connection removed.
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800573 selected_service_->SetConnection(NULL);
Paul Stewartc8860612012-09-28 07:36:21 -0700574 StopLinkMonitor();
Ben Chanb061f892013-02-27 17:46:55 -0800575 StopTrafficMonitor();
Paul Stewartc8860612012-09-28 07:36:21 -0700576 StopPortalDetection();
Paul Stewart03dba0b2011-08-22 16:32:45 -0700577 }
578 selected_service_ = service;
579}
580
581void Device::SetServiceState(Service::ConnectState state) {
582 if (selected_service_.get()) {
583 selected_service_->SetState(state);
584 }
585}
586
587void Device::SetServiceFailure(Service::ConnectFailure failure_state) {
588 if (selected_service_.get()) {
589 selected_service_->SetFailure(failure_state);
590 }
591}
592
Eric Shienbroodcc95c5d2012-03-30 15:25:49 -0400593void Device::SetServiceFailureSilent(Service::ConnectFailure failure_state) {
594 if (selected_service_.get()) {
595 selected_service_->SetFailureSilent(failure_state);
596 }
597}
598
Chris Masone34af2182011-08-22 11:59:36 -0700599string Device::SerializeIPConfigs(const string &suffix) {
600 return StringPrintf("%s:%s", suffix.c_str(), ipconfig_->type().c_str());
Chris Masone5dec5f42011-07-22 14:07:55 -0700601}
602
Paul Stewart2bf1d352011-12-06 15:02:55 -0800603bool Device::SetIPFlag(IPAddress::Family family, const string &flag,
604 const string &value) {
605 string ip_version;
606 if (family == IPAddress::kFamilyIPv4) {
607 ip_version = kIPFlagVersion4;
608 } else if (family == IPAddress::kFamilyIPv6) {
609 ip_version = kIPFlagVersion6;
610 } else {
611 NOTIMPLEMENTED();
612 }
613 FilePath flag_file(StringPrintf(kIPFlagTemplate, ip_version.c_str(),
614 link_name_.c_str(), flag.c_str()));
Ben Chanfad4a0b2012-04-18 15:49:59 -0700615 SLOG(Device, 2) << "Writing " << value << " to flag file "
616 << flag_file.value();
Paul Stewart2bf1d352011-12-06 15:02:55 -0800617 if (file_util::WriteFile(flag_file, value.c_str(), value.length()) != 1) {
618 LOG(ERROR) << StringPrintf("IP flag write failed: %s to %s",
619 value.c_str(), flag_file.value().c_str());
620 return false;
621 }
622 return true;
623}
624
Paul Stewart6ff27f52012-07-11 06:51:41 -0700625void Device::ResetByteCounters() {
626 manager_->device_info()->GetByteCounts(
627 interface_index_, &receive_byte_offset_, &transmit_byte_offset_);
628 manager_->UpdateDevice(this);
629}
630
Prathmesh Prabhuba99b592013-04-17 15:13:14 -0700631void Device::SetupConnectionHealthChecker() {
632 DCHECK(connection_);
633 if (!health_checker_.get()) {
634 health_checker_.reset(new ConnectionHealthChecker(
635 connection_,
636 dispatcher_,
637 manager_->health_checker_remote_ips(),
638 Bind(&Device::OnConnectionHealthCheckerResult,
639 weak_ptr_factory_.GetWeakPtr())));
640 } else {
641 health_checker_->SetConnection(connection_);
642 }
643 // Add URL in either case because a connection reset could have dropped past
644 // DNS queries.
645 health_checker_->AddRemoteURL(manager_->GetPortalCheckURL());
646}
647
Arman Ugurayf84a4242013-04-09 20:01:07 -0700648void Device::RequestConnectionHealthCheck() {
649 if (!health_checker_.get()) {
650 SLOG(Device, 2) << "No health checker exists, cannot request "
651 << "health check.";
652 return;
653 }
654 if (health_checker_->health_check_in_progress()) {
655 SLOG(Device, 2) << "Health check already in progress.";
656 return;
657 }
658 health_checker_->Start();
659}
660
661void Device::OnConnectionHealthCheckerResult(
662 ConnectionHealthChecker::Result result) {
Prathmesh Prabhu5489b7a2013-04-10 13:33:59 -0700663 SLOG(Device, 2)
664 << FriendlyName()
665 << ": ConnectionHealthChecker result: "
666 << ConnectionHealthChecker::ResultToString(result);
Arman Ugurayf84a4242013-04-09 20:01:07 -0700667}
668
Paul Stewartd215af62012-04-24 23:25:50 -0700669bool Device::RestartPortalDetection() {
670 StopPortalDetection();
671 return StartPortalDetection();
672}
673
Paul Stewartc681fa02012-03-02 19:40:04 -0800674bool Device::RequestPortalDetection() {
675 if (!selected_service_) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700676 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800677 << ": No selected service, so no need for portal check.";
678 return false;
679 }
680
681 if (!connection_.get()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700682 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800683 << ": No connection, so no need for portal check.";
684 return false;
685 }
686
687 if (selected_service_->state() != Service::kStatePortal) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700688 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800689 << ": Service is not in portal state. No need to start check.";
690 return false;
691 }
692
693 if (!connection_->is_default()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700694 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800695 << ": Service is not the default connection. Don't start check.";
696 return false;
697 }
698
699 if (portal_detector_.get() && portal_detector_->IsInProgress()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700700 SLOG(Device, 2) << FriendlyName()
701 << ": Portal detection is already running.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800702 return true;
703 }
704
705 return StartPortalDetection();
706}
707
Paul Stewart20088d82012-02-16 06:58:55 -0800708bool Device::StartPortalDetection() {
Darin Petkov457728b2013-01-09 09:49:08 +0100709 DCHECK(selected_service_);
Paul Stewartd215af62012-04-24 23:25:50 -0700710 if (selected_service_->IsPortalDetectionDisabled()) {
Darin Petkov457728b2013-01-09 09:49:08 +0100711 SLOG(Device, 2) << "Service " << selected_service_->unique_name()
Paul Stewartd215af62012-04-24 23:25:50 -0700712 << ": Portal detection is disabled; "
713 << "marking service online.";
714 SetServiceConnectedState(Service::kStateOnline);
715 return false;
716 }
717
718 if (selected_service_->IsPortalDetectionAuto() &&
719 !manager_->IsPortalDetectionEnabled(technology())) {
Paul Stewart20088d82012-02-16 06:58:55 -0800720 // If portal detection is disabled for this technology, immediately set
721 // the service state to "Online".
Ben Chanfad4a0b2012-04-18 15:49:59 -0700722 SLOG(Device, 2) << "Device " << FriendlyName()
723 << ": Portal detection is disabled; "
724 << "marking service online.";
Paul Stewart20088d82012-02-16 06:58:55 -0800725 SetServiceConnectedState(Service::kStateOnline);
726 return false;
727 }
728
Paul Stewart20088d82012-02-16 06:58:55 -0800729 if (selected_service_->HasProxyConfig()) {
730 // Services with HTTP proxy configurations should not be checked by the
731 // connection manager, since we don't have the ability to evaluate
732 // arbitrary proxy configs and their possible credentials.
Ben Chanfad4a0b2012-04-18 15:49:59 -0700733 SLOG(Device, 2) << "Device " << FriendlyName()
734 << ": Service has proxy config; marking it online.";
Paul Stewart20088d82012-02-16 06:58:55 -0800735 SetServiceConnectedState(Service::kStateOnline);
736 return false;
737 }
738
739 portal_detector_.reset(new PortalDetector(connection_,
740 dispatcher_,
Eric Shienbrood3e20a232012-02-16 11:35:56 -0500741 portal_detector_callback_));
Paul Stewart20088d82012-02-16 06:58:55 -0800742 if (!portal_detector_->Start(manager_->GetPortalCheckURL())) {
743 LOG(ERROR) << "Device " << FriendlyName()
744 << ": Portal detection failed to start: likely bad URL: "
745 << manager_->GetPortalCheckURL();
746 SetServiceConnectedState(Service::kStateOnline);
747 return false;
748 }
749
Ben Chanfad4a0b2012-04-18 15:49:59 -0700750 SLOG(Device, 2) << "Device " << FriendlyName()
751 << ": Portal detection has started.";
Paul Stewart20088d82012-02-16 06:58:55 -0800752 return true;
753}
754
755void Device::StopPortalDetection() {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700756 SLOG(Device, 2) << "Device " << FriendlyName()
757 << ": Portal detection has stopped.";
Paul Stewart20088d82012-02-16 06:58:55 -0800758 portal_detector_.reset();
759}
760
Paul Stewart036dba02012-08-07 12:34:41 -0700761void Device::set_link_monitor(LinkMonitor *link_monitor) {
762 link_monitor_.reset(link_monitor);
763}
764
765bool Device::StartLinkMonitor() {
766 if (!manager_->IsTechnologyLinkMonitorEnabled(technology())) {
767 SLOG(Device, 2) << "Device " << FriendlyName()
768 << ": Link Monitoring is disabled.";
769 return false;
770 }
771
772 if (!link_monitor()) {
773 set_link_monitor(
774 new LinkMonitor(
775 connection_, dispatcher_, metrics(), manager_->device_info(),
776 Bind(&Device::OnLinkMonitorFailure, weak_ptr_factory_.GetWeakPtr())));
777 }
778
779 SLOG(Device, 2) << "Device " << FriendlyName()
780 << ": Link Monitor starting.";
781 return link_monitor_->Start();
782}
783
784void Device::StopLinkMonitor() {
785 SLOG(Device, 2) << "Device " << FriendlyName()
786 << ": Link Monitor stopping.";
787 link_monitor_.reset();
788}
789
790void Device::OnLinkMonitorFailure() {
791 LOG(ERROR) << "Device " << FriendlyName()
792 << ": Link Monitor indicates failure.";
793}
794
Ben Chanb061f892013-02-27 17:46:55 -0800795void Device::set_traffic_monitor(TrafficMonitor *traffic_monitor) {
796 traffic_monitor_.reset(traffic_monitor);
797}
798
799bool Device::StartTrafficMonitor() {
Thieu Le03026662013-04-04 10:45:11 -0700800 SLOG(Device, 2) << __func__;
Ben Chanb061f892013-02-27 17:46:55 -0800801 if (!traffic_monitor_enabled_) {
802 SLOG(Device, 2) << "Device " << FriendlyName()
803 << ": Traffic Monitoring is disabled.";
804 return false;
805 }
806
807 if (!traffic_monitor_.get()) {
808 traffic_monitor_.reset(new TrafficMonitor(this, dispatcher_));
Thieu Le03026662013-04-04 10:45:11 -0700809 traffic_monitor_->set_tcp_out_traffic_not_routed_callback(
810 Bind(&Device::OnNoNetworkRouting, weak_ptr_factory_.GetWeakPtr()));
Ben Chanb061f892013-02-27 17:46:55 -0800811 }
812
813 SLOG(Device, 2) << "Device " << FriendlyName()
814 << ": Traffic Monitor starting.";
815 traffic_monitor_->Start();
816 return true;
817}
818
819void Device::StopTrafficMonitor() {
Thieu Le03026662013-04-04 10:45:11 -0700820 SLOG(Device, 2) << __func__;
Ben Chanb061f892013-02-27 17:46:55 -0800821 SLOG(Device, 2) << "Device " << FriendlyName()
822 << ": Traffic Monitor stopping.";
823 traffic_monitor_.reset();
824}
825
Thieu Le03026662013-04-04 10:45:11 -0700826void Device::OnNoNetworkRouting() {
Ben Chanb061f892013-02-27 17:46:55 -0800827 SLOG(Device, 2) << "Device " << FriendlyName()
Arman Ugurayf84a4242013-04-09 20:01:07 -0700828 << ": Traffic Monitor detects network congestion.";
Ben Chanb061f892013-02-27 17:46:55 -0800829}
830
Paul Stewart20088d82012-02-16 06:58:55 -0800831void Device::SetServiceConnectedState(Service::ConnectState state) {
832 DCHECK(selected_service_.get());
833
834 if (!selected_service_.get()) {
835 LOG(ERROR) << FriendlyName() << ": "
836 << "Portal detection completed but no selected service exists!";
837 return;
838 }
839
840 if (!selected_service_->IsConnected()) {
841 LOG(ERROR) << FriendlyName() << ": "
842 << "Portal detection completed but selected service "
Darin Petkov457728b2013-01-09 09:49:08 +0100843 << selected_service_->unique_name()
Paul Stewart20088d82012-02-16 06:58:55 -0800844 << " is in non-connected state.";
845 return;
846 }
847
Paul Stewartc681fa02012-03-02 19:40:04 -0800848 if (state == Service::kStatePortal && connection_->is_default() &&
849 manager_->GetPortalCheckInterval() != 0) {
850 CHECK(portal_detector_.get());
851 if (!portal_detector_->StartAfterDelay(
852 manager_->GetPortalCheckURL(),
853 manager_->GetPortalCheckInterval())) {
854 LOG(ERROR) << "Device " << FriendlyName()
855 << ": Portal detection failed to restart: likely bad URL: "
856 << manager_->GetPortalCheckURL();
857 SetServiceState(Service::kStateOnline);
858 portal_detector_.reset();
859 return;
860 }
Ben Chanfad4a0b2012-04-18 15:49:59 -0700861 SLOG(Device, 2) << "Device " << FriendlyName()
862 << ": Portal detection retrying.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800863 } else {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700864 SLOG(Device, 2) << "Device " << FriendlyName()
865 << ": Portal will not retry.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800866 portal_detector_.reset();
867 }
868
Paul Stewart20088d82012-02-16 06:58:55 -0800869 SetServiceState(state);
870}
871
872void Device::PortalDetectorCallback(const PortalDetector::Result &result) {
873 if (!result.final) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700874 SLOG(Device, 2) << "Device " << FriendlyName()
875 << ": Received non-final status: "
876 << PortalDetector::StatusToString(result.status);
Paul Stewart20088d82012-02-16 06:58:55 -0800877 return;
878 }
879
Ben Chanfad4a0b2012-04-18 15:49:59 -0700880 SLOG(Device, 2) << "Device " << FriendlyName()
881 << ": Received final status: "
882 << PortalDetector::StatusToString(result.status);
Paul Stewart20088d82012-02-16 06:58:55 -0800883
Thieu Le85e050b2012-03-13 15:04:38 -0700884 portal_attempts_to_online_ += result.num_attempts;
885
886 metrics()->SendEnumToUMA(
887 metrics()->GetFullMetricName(Metrics::kMetricPortalResult, technology()),
888 Metrics::PortalDetectionResultToEnum(result),
889 Metrics::kPortalResultMax);
890
Paul Stewart20088d82012-02-16 06:58:55 -0800891 if (result.status == PortalDetector::kStatusSuccess) {
892 SetServiceConnectedState(Service::kStateOnline);
Thieu Le85e050b2012-03-13 15:04:38 -0700893
894 metrics()->SendToUMA(
895 metrics()->GetFullMetricName(
896 Metrics::kMetricPortalAttemptsToOnline, technology()),
897 portal_attempts_to_online_,
898 Metrics::kMetricPortalAttemptsToOnlineMin,
899 Metrics::kMetricPortalAttemptsToOnlineMax,
900 Metrics::kMetricPortalAttemptsToOnlineNumBuckets);
Paul Stewart20088d82012-02-16 06:58:55 -0800901 } else {
902 SetServiceConnectedState(Service::kStatePortal);
Thieu Le85e050b2012-03-13 15:04:38 -0700903
904 metrics()->SendToUMA(
905 metrics()->GetFullMetricName(
906 Metrics::kMetricPortalAttempts, technology()),
907 result.num_attempts,
908 Metrics::kMetricPortalAttemptsMin,
909 Metrics::kMetricPortalAttemptsMax,
910 Metrics::kMetricPortalAttemptsNumBuckets);
Paul Stewart20088d82012-02-16 06:58:55 -0800911 }
912}
913
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800914vector<string> Device::AvailableIPConfigs(Error */*error*/) {
Jason Glasgow08afdff2012-04-03 10:22:26 -0400915 if (ipconfig_.get()) {
916 string id = ipconfig_->GetRpcIdentifier();
917 return vector<string>(1, id);
918 }
919 return vector<string>();
Chris Masone4e851612011-07-01 10:46:53 -0700920}
921
922string Device::GetRpcConnectionIdentifier() {
923 return adaptor_->GetRpcConnectionIdentifier();
924}
925
Paul Stewart036dba02012-08-07 12:34:41 -0700926uint64 Device::GetLinkMonitorResponseTime(Error *error) {
927 if (!link_monitor_.get()) {
928 // It is not strictly an error that the link monitor does not
929 // exist, but returning an error here allows the GetProperties
930 // call in our Adaptor to omit this parameter.
931 error->Populate(Error::kNotFound, "Device is not running LinkMonitor");
932 return 0;
933 }
934 return link_monitor_->GetResponseTimeMilliseconds();
935}
936
Ben Chanb061f892013-02-27 17:46:55 -0800937uint64 Device::GetReceiveByteCount() {
Paul Stewart6ff27f52012-07-11 06:51:41 -0700938 uint64 rx_byte_count = 0, tx_byte_count = 0;
939 manager_->device_info()->GetByteCounts(
940 interface_index_, &rx_byte_count, &tx_byte_count);
941 return rx_byte_count - receive_byte_offset_;
942}
943
Ben Chanb061f892013-02-27 17:46:55 -0800944uint64 Device::GetTransmitByteCount() {
Paul Stewart6ff27f52012-07-11 06:51:41 -0700945 uint64 rx_byte_count = 0, tx_byte_count = 0;
946 manager_->device_info()->GetByteCounts(
947 interface_index_, &rx_byte_count, &tx_byte_count);
948 return tx_byte_count - transmit_byte_offset_;
949}
950
Ben Chanb061f892013-02-27 17:46:55 -0800951uint64 Device::GetReceiveByteCountProperty(Error */*error*/) {
952 return GetReceiveByteCount();
953}
954
955uint64 Device::GetTransmitByteCountProperty(Error */*error*/) {
956 return GetTransmitByteCount();
957}
958
Eric Shienbrood7fce52c2012-04-13 19:11:02 -0400959bool Device::IsUnderlyingDeviceEnabled() const {
960 return false;
961}
962
Eric Shienbrood9a245532012-03-07 14:20:39 -0500963// callback
964void Device::OnEnabledStateChanged(const ResultCallback &callback,
965 const Error &error) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700966 SLOG(Device, 2) << __func__ << "(" << enabled_pending_ << ")";
Eric Shienbrood9a245532012-03-07 14:20:39 -0500967 if (error.IsSuccess()) {
968 enabled_ = enabled_pending_;
969 manager_->UpdateEnabledTechnologies();
970 adaptor_->EmitBoolChanged(flimflam::kPoweredProperty, enabled_);
971 adaptor_->UpdateEnabled();
972 }
Gary Morainbaeefdf2012-04-30 14:53:35 -0700973 enabled_pending_ = enabled_;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500974 if (!callback.is_null())
975 callback.Run(error);
976}
977
978void Device::SetEnabled(bool enable) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700979 SLOG(Device, 2) << __func__ << "(" << enable << ")";
Jason Glasgow4a490792012-04-10 15:02:05 -0400980 Error error;
981 SetEnabledInternal(enable, false, &error, ResultCallback());
Jason Glasgow7234ec32012-05-23 16:01:21 -0400982 LOG_IF(ERROR, error.IsFailure() && !error.IsOngoing())
Jason Glasgow4a490792012-04-10 15:02:05 -0400983 << "Enabled failed, but no way to report the failure.";
Eric Shienbrood9a245532012-03-07 14:20:39 -0500984}
985
986void Device::SetEnabledPersistent(bool enable,
987 Error *error,
988 const ResultCallback &callback) {
989 SetEnabledInternal(enable, true, error, callback);
990}
991
992void Device::SetEnabledInternal(bool enable,
993 bool persist,
994 Error *error,
995 const ResultCallback &callback) {
Jason Glasgow4a490792012-04-10 15:02:05 -0400996 DCHECK(error);
Ben Chanfad4a0b2012-04-18 15:49:59 -0700997 SLOG(Device, 2) << "Device " << link_name_ << " "
998 << (enable ? "starting" : "stopping");
Eric Shienbrood9a245532012-03-07 14:20:39 -0500999 if (enable == enabled_) {
Jason Glasgow4a490792012-04-10 15:02:05 -04001000 error->Reset();
Eric Shienbrood9a245532012-03-07 14:20:39 -05001001 return;
1002 }
1003
1004 if (enabled_pending_ == enable) {
Jason Glasgow4a490792012-04-10 15:02:05 -04001005 Error::PopulateAndLog(error, Error::kInProgress,
1006 "Enable operation already in progress");
Eric Shienbrood9a245532012-03-07 14:20:39 -05001007 return;
1008 }
1009
1010 if (persist) {
1011 enabled_persistent_ = enable;
Darin Petkove7c6ad32012-06-29 10:22:09 +02001012 manager_->UpdateDevice(this);
Eric Shienbrood9a245532012-03-07 14:20:39 -05001013 }
1014
1015 enabled_pending_ = enable;
1016 EnabledStateChangedCallback enabled_callback =
1017 Bind(&Device::OnEnabledStateChanged,
1018 weak_ptr_factory_.GetWeakPtr(), callback);
1019 if (enable) {
1020 running_ = true;
Eric Shienbrood9a245532012-03-07 14:20:39 -05001021 Start(error, enabled_callback);
1022 } else {
1023 running_ = false;
1024 DestroyIPConfig(); // breaks a reference cycle
1025 SelectService(NULL); // breaks a reference cycle
1026 rtnl_handler_->SetInterfaceFlags(interface_index(), 0, IFF_UP);
Ben Chanfad4a0b2012-04-18 15:49:59 -07001027 SLOG(Device, 3) << "Device " << link_name_ << " ipconfig_ "
1028 << (ipconfig_ ? "is set." : "is not set.");
1029 SLOG(Device, 3) << "Device " << link_name_ << " connection_ "
1030 << (connection_ ? "is set." : "is not set.");
1031 SLOG(Device, 3) << "Device " << link_name_ << " selected_service_ "
1032 << (selected_service_ ? "is set." : "is not set.");
Eric Shienbrood9a245532012-03-07 14:20:39 -05001033 Stop(error, enabled_callback);
1034 }
1035}
1036
Paul Stewart75897df2011-04-27 09:05:53 -07001037} // namespace shill