blob: 545ff58af3444dfff38bcdaaeaf474b92a97047c [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
Paul Stewartee6b3d72013-07-12 16:07:51 -0700255 // for IPv6. crbug.com/207193
Paul Stewartc8f4bef2011-12-13 09:45:51 -0800256 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
Paul Stewartf6f96482013-07-12 12:49:15 -0700519 OnIPConfigFailure();
Paul Stewarte6132022011-08-16 09:11:02 -0700520 DestroyConnection();
Paul Stewartc39f1132011-06-22 12:02:28 -0700521 }
Chris Masone8fe2c7e2011-06-09 15:51:19 -0700522}
523
Paul Stewartf6f96482013-07-12 12:49:15 -0700524void Device::OnIPConfigFailure() {
525 if (selected_service_) {
526 Error error;
527 selected_service_->DisconnectWithFailure(Service::kFailureDHCP, &error);
528 }
529}
530
Christopher Wiley5519e9e2013-01-08 16:55:56 -0800531void Device::OnConnected() {}
532
Paul Stewart8596f9f2013-03-14 07:58:26 -0700533void Device::OnConnectionUpdated() {
534 if (selected_service_) {
535 manager_->UpdateService(selected_service_);
536 }
537}
538
Paul Stewarte6132022011-08-16 09:11:02 -0700539void Device::CreateConnection() {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700540 SLOG(Device, 2) << __func__;
Paul Stewarte6132022011-08-16 09:11:02 -0700541 if (!connection_.get()) {
mukesh agrawal23ac6b72013-01-31 18:52:37 -0800542 connection_ = new Connection(interface_index_,
543 link_name_,
544 technology_,
545 manager_->device_info());
Paul Stewarte6132022011-08-16 09:11:02 -0700546 }
547}
548
549void Device::DestroyConnection() {
mukesh agrawal6813e762013-07-10 19:05:08 -0700550 SLOG(Device, 2) << __func__ << " on " << link_name_;
Paul Stewart20088d82012-02-16 06:58:55 -0800551 StopPortalDetection();
Paul Stewart036dba02012-08-07 12:34:41 -0700552 StopLinkMonitor();
Ben Chanb061f892013-02-27 17:46:55 -0800553 StopTrafficMonitor();
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800554 if (selected_service_.get()) {
mukesh agrawal6813e762013-07-10 19:05:08 -0700555 SLOG(Device, 3) << "Clearing connection of service "
556 << selected_service_->unique_name();
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800557 selected_service_->SetConnection(NULL);
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800558 }
Paul Stewartc8f4bef2011-12-13 09:45:51 -0800559 connection_ = NULL;
Arman Ugurayf84a4242013-04-09 20:01:07 -0700560 health_checker_.reset();
Paul Stewarte6132022011-08-16 09:11:02 -0700561}
562
Paul Stewart03dba0b2011-08-22 16:32:45 -0700563void Device::SelectService(const ServiceRefPtr &service) {
Darin Petkov457728b2013-01-09 09:49:08 +0100564 SLOG(Device, 2) << __func__ << ": service "
mukesh agrawal6813e762013-07-10 19:05:08 -0700565 << (service ? service->unique_name() : "*reset*")
566 << " on " << link_name_;
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000567
568 if (selected_service_.get() == service.get()) {
569 // No change to |selected_service_|. Return early to avoid
570 // changing its state.
571 return;
572 }
573
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800574 if (selected_service_.get()) {
575 if (selected_service_->state() != Service::kStateFailure) {
576 selected_service_->SetState(Service::kStateIdle);
577 }
Paul Stewart20b0a092012-05-22 20:39:57 -0700578 // Just in case the Device subclass has not already done so, make
579 // sure the previously selected service has its connection removed.
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800580 selected_service_->SetConnection(NULL);
Paul Stewartc8860612012-09-28 07:36:21 -0700581 StopLinkMonitor();
Ben Chanb061f892013-02-27 17:46:55 -0800582 StopTrafficMonitor();
Paul Stewartc8860612012-09-28 07:36:21 -0700583 StopPortalDetection();
Paul Stewart03dba0b2011-08-22 16:32:45 -0700584 }
585 selected_service_ = service;
586}
587
588void Device::SetServiceState(Service::ConnectState state) {
589 if (selected_service_.get()) {
590 selected_service_->SetState(state);
591 }
592}
593
594void Device::SetServiceFailure(Service::ConnectFailure failure_state) {
595 if (selected_service_.get()) {
596 selected_service_->SetFailure(failure_state);
597 }
598}
599
Eric Shienbroodcc95c5d2012-03-30 15:25:49 -0400600void Device::SetServiceFailureSilent(Service::ConnectFailure failure_state) {
601 if (selected_service_.get()) {
602 selected_service_->SetFailureSilent(failure_state);
603 }
604}
605
Chris Masone34af2182011-08-22 11:59:36 -0700606string Device::SerializeIPConfigs(const string &suffix) {
607 return StringPrintf("%s:%s", suffix.c_str(), ipconfig_->type().c_str());
Chris Masone5dec5f42011-07-22 14:07:55 -0700608}
609
Paul Stewart2bf1d352011-12-06 15:02:55 -0800610bool Device::SetIPFlag(IPAddress::Family family, const string &flag,
611 const string &value) {
612 string ip_version;
613 if (family == IPAddress::kFamilyIPv4) {
614 ip_version = kIPFlagVersion4;
615 } else if (family == IPAddress::kFamilyIPv6) {
616 ip_version = kIPFlagVersion6;
617 } else {
618 NOTIMPLEMENTED();
619 }
620 FilePath flag_file(StringPrintf(kIPFlagTemplate, ip_version.c_str(),
621 link_name_.c_str(), flag.c_str()));
Ben Chanfad4a0b2012-04-18 15:49:59 -0700622 SLOG(Device, 2) << "Writing " << value << " to flag file "
623 << flag_file.value();
Paul Stewart2bf1d352011-12-06 15:02:55 -0800624 if (file_util::WriteFile(flag_file, value.c_str(), value.length()) != 1) {
625 LOG(ERROR) << StringPrintf("IP flag write failed: %s to %s",
626 value.c_str(), flag_file.value().c_str());
627 return false;
628 }
629 return true;
630}
631
Paul Stewart6ff27f52012-07-11 06:51:41 -0700632void Device::ResetByteCounters() {
633 manager_->device_info()->GetByteCounts(
634 interface_index_, &receive_byte_offset_, &transmit_byte_offset_);
635 manager_->UpdateDevice(this);
636}
637
Prathmesh Prabhuba99b592013-04-17 15:13:14 -0700638void Device::SetupConnectionHealthChecker() {
639 DCHECK(connection_);
640 if (!health_checker_.get()) {
641 health_checker_.reset(new ConnectionHealthChecker(
642 connection_,
643 dispatcher_,
644 manager_->health_checker_remote_ips(),
645 Bind(&Device::OnConnectionHealthCheckerResult,
646 weak_ptr_factory_.GetWeakPtr())));
647 } else {
648 health_checker_->SetConnection(connection_);
649 }
650 // Add URL in either case because a connection reset could have dropped past
651 // DNS queries.
652 health_checker_->AddRemoteURL(manager_->GetPortalCheckURL());
653}
654
Arman Ugurayf84a4242013-04-09 20:01:07 -0700655void Device::RequestConnectionHealthCheck() {
656 if (!health_checker_.get()) {
657 SLOG(Device, 2) << "No health checker exists, cannot request "
658 << "health check.";
659 return;
660 }
661 if (health_checker_->health_check_in_progress()) {
662 SLOG(Device, 2) << "Health check already in progress.";
663 return;
664 }
665 health_checker_->Start();
666}
667
668void Device::OnConnectionHealthCheckerResult(
669 ConnectionHealthChecker::Result result) {
Prathmesh Prabhu5489b7a2013-04-10 13:33:59 -0700670 SLOG(Device, 2)
671 << FriendlyName()
672 << ": ConnectionHealthChecker result: "
673 << ConnectionHealthChecker::ResultToString(result);
Arman Ugurayf84a4242013-04-09 20:01:07 -0700674}
675
Paul Stewartd215af62012-04-24 23:25:50 -0700676bool Device::RestartPortalDetection() {
677 StopPortalDetection();
678 return StartPortalDetection();
679}
680
Paul Stewartc681fa02012-03-02 19:40:04 -0800681bool Device::RequestPortalDetection() {
682 if (!selected_service_) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700683 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800684 << ": No selected service, so no need for portal check.";
685 return false;
686 }
687
688 if (!connection_.get()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700689 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800690 << ": No connection, so no need for portal check.";
691 return false;
692 }
693
694 if (selected_service_->state() != Service::kStatePortal) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700695 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800696 << ": Service is not in portal state. No need to start check.";
697 return false;
698 }
699
700 if (!connection_->is_default()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700701 SLOG(Device, 2) << FriendlyName()
Paul Stewartc681fa02012-03-02 19:40:04 -0800702 << ": Service is not the default connection. Don't start check.";
703 return false;
704 }
705
706 if (portal_detector_.get() && portal_detector_->IsInProgress()) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700707 SLOG(Device, 2) << FriendlyName()
708 << ": Portal detection is already running.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800709 return true;
710 }
711
712 return StartPortalDetection();
713}
714
Paul Stewart20088d82012-02-16 06:58:55 -0800715bool Device::StartPortalDetection() {
Darin Petkov457728b2013-01-09 09:49:08 +0100716 DCHECK(selected_service_);
Paul Stewartd215af62012-04-24 23:25:50 -0700717 if (selected_service_->IsPortalDetectionDisabled()) {
Darin Petkov457728b2013-01-09 09:49:08 +0100718 SLOG(Device, 2) << "Service " << selected_service_->unique_name()
Paul Stewartd215af62012-04-24 23:25:50 -0700719 << ": Portal detection is disabled; "
720 << "marking service online.";
721 SetServiceConnectedState(Service::kStateOnline);
722 return false;
723 }
724
725 if (selected_service_->IsPortalDetectionAuto() &&
726 !manager_->IsPortalDetectionEnabled(technology())) {
Paul Stewart20088d82012-02-16 06:58:55 -0800727 // If portal detection is disabled for this technology, immediately set
728 // the service state to "Online".
Ben Chanfad4a0b2012-04-18 15:49:59 -0700729 SLOG(Device, 2) << "Device " << FriendlyName()
730 << ": Portal detection is disabled; "
731 << "marking service online.";
Paul Stewart20088d82012-02-16 06:58:55 -0800732 SetServiceConnectedState(Service::kStateOnline);
733 return false;
734 }
735
Paul Stewart20088d82012-02-16 06:58:55 -0800736 if (selected_service_->HasProxyConfig()) {
737 // Services with HTTP proxy configurations should not be checked by the
738 // connection manager, since we don't have the ability to evaluate
739 // arbitrary proxy configs and their possible credentials.
Ben Chanfad4a0b2012-04-18 15:49:59 -0700740 SLOG(Device, 2) << "Device " << FriendlyName()
741 << ": Service has proxy config; marking it online.";
Paul Stewart20088d82012-02-16 06:58:55 -0800742 SetServiceConnectedState(Service::kStateOnline);
743 return false;
744 }
745
746 portal_detector_.reset(new PortalDetector(connection_,
747 dispatcher_,
Eric Shienbrood3e20a232012-02-16 11:35:56 -0500748 portal_detector_callback_));
Paul Stewart20088d82012-02-16 06:58:55 -0800749 if (!portal_detector_->Start(manager_->GetPortalCheckURL())) {
750 LOG(ERROR) << "Device " << FriendlyName()
751 << ": Portal detection failed to start: likely bad URL: "
752 << manager_->GetPortalCheckURL();
753 SetServiceConnectedState(Service::kStateOnline);
754 return false;
755 }
756
Ben Chanfad4a0b2012-04-18 15:49:59 -0700757 SLOG(Device, 2) << "Device " << FriendlyName()
758 << ": Portal detection has started.";
Paul Stewart20088d82012-02-16 06:58:55 -0800759 return true;
760}
761
762void Device::StopPortalDetection() {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700763 SLOG(Device, 2) << "Device " << FriendlyName()
764 << ": Portal detection has stopped.";
Paul Stewart20088d82012-02-16 06:58:55 -0800765 portal_detector_.reset();
766}
767
Paul Stewart036dba02012-08-07 12:34:41 -0700768void Device::set_link_monitor(LinkMonitor *link_monitor) {
769 link_monitor_.reset(link_monitor);
770}
771
772bool Device::StartLinkMonitor() {
773 if (!manager_->IsTechnologyLinkMonitorEnabled(technology())) {
774 SLOG(Device, 2) << "Device " << FriendlyName()
775 << ": Link Monitoring is disabled.";
776 return false;
777 }
778
779 if (!link_monitor()) {
780 set_link_monitor(
781 new LinkMonitor(
782 connection_, dispatcher_, metrics(), manager_->device_info(),
783 Bind(&Device::OnLinkMonitorFailure, weak_ptr_factory_.GetWeakPtr())));
784 }
785
786 SLOG(Device, 2) << "Device " << FriendlyName()
787 << ": Link Monitor starting.";
788 return link_monitor_->Start();
789}
790
791void Device::StopLinkMonitor() {
792 SLOG(Device, 2) << "Device " << FriendlyName()
793 << ": Link Monitor stopping.";
794 link_monitor_.reset();
795}
796
797void Device::OnLinkMonitorFailure() {
798 LOG(ERROR) << "Device " << FriendlyName()
799 << ": Link Monitor indicates failure.";
800}
801
Ben Chanb061f892013-02-27 17:46:55 -0800802void Device::set_traffic_monitor(TrafficMonitor *traffic_monitor) {
803 traffic_monitor_.reset(traffic_monitor);
804}
805
806bool Device::StartTrafficMonitor() {
Thieu Le03026662013-04-04 10:45:11 -0700807 SLOG(Device, 2) << __func__;
Ben Chanb061f892013-02-27 17:46:55 -0800808 if (!traffic_monitor_enabled_) {
809 SLOG(Device, 2) << "Device " << FriendlyName()
810 << ": Traffic Monitoring is disabled.";
811 return false;
812 }
813
814 if (!traffic_monitor_.get()) {
815 traffic_monitor_.reset(new TrafficMonitor(this, dispatcher_));
Thieu Le03026662013-04-04 10:45:11 -0700816 traffic_monitor_->set_tcp_out_traffic_not_routed_callback(
817 Bind(&Device::OnNoNetworkRouting, weak_ptr_factory_.GetWeakPtr()));
Ben Chanb061f892013-02-27 17:46:55 -0800818 }
819
820 SLOG(Device, 2) << "Device " << FriendlyName()
821 << ": Traffic Monitor starting.";
822 traffic_monitor_->Start();
823 return true;
824}
825
826void Device::StopTrafficMonitor() {
Thieu Le03026662013-04-04 10:45:11 -0700827 SLOG(Device, 2) << __func__;
Ben Chanb061f892013-02-27 17:46:55 -0800828 SLOG(Device, 2) << "Device " << FriendlyName()
829 << ": Traffic Monitor stopping.";
830 traffic_monitor_.reset();
831}
832
Thieu Le03026662013-04-04 10:45:11 -0700833void Device::OnNoNetworkRouting() {
Ben Chanb061f892013-02-27 17:46:55 -0800834 SLOG(Device, 2) << "Device " << FriendlyName()
Arman Ugurayf84a4242013-04-09 20:01:07 -0700835 << ": Traffic Monitor detects network congestion.";
Ben Chanb061f892013-02-27 17:46:55 -0800836}
837
Paul Stewart20088d82012-02-16 06:58:55 -0800838void Device::SetServiceConnectedState(Service::ConnectState state) {
839 DCHECK(selected_service_.get());
840
841 if (!selected_service_.get()) {
842 LOG(ERROR) << FriendlyName() << ": "
843 << "Portal detection completed but no selected service exists!";
844 return;
845 }
846
847 if (!selected_service_->IsConnected()) {
848 LOG(ERROR) << FriendlyName() << ": "
849 << "Portal detection completed but selected service "
Darin Petkov457728b2013-01-09 09:49:08 +0100850 << selected_service_->unique_name()
Paul Stewart20088d82012-02-16 06:58:55 -0800851 << " is in non-connected state.";
852 return;
853 }
854
Paul Stewartc681fa02012-03-02 19:40:04 -0800855 if (state == Service::kStatePortal && connection_->is_default() &&
856 manager_->GetPortalCheckInterval() != 0) {
857 CHECK(portal_detector_.get());
858 if (!portal_detector_->StartAfterDelay(
859 manager_->GetPortalCheckURL(),
860 manager_->GetPortalCheckInterval())) {
861 LOG(ERROR) << "Device " << FriendlyName()
862 << ": Portal detection failed to restart: likely bad URL: "
863 << manager_->GetPortalCheckURL();
864 SetServiceState(Service::kStateOnline);
865 portal_detector_.reset();
866 return;
867 }
Ben Chanfad4a0b2012-04-18 15:49:59 -0700868 SLOG(Device, 2) << "Device " << FriendlyName()
869 << ": Portal detection retrying.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800870 } else {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700871 SLOG(Device, 2) << "Device " << FriendlyName()
872 << ": Portal will not retry.";
Paul Stewartc681fa02012-03-02 19:40:04 -0800873 portal_detector_.reset();
874 }
875
Paul Stewart20088d82012-02-16 06:58:55 -0800876 SetServiceState(state);
877}
878
879void Device::PortalDetectorCallback(const PortalDetector::Result &result) {
880 if (!result.final) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700881 SLOG(Device, 2) << "Device " << FriendlyName()
882 << ": Received non-final status: "
883 << PortalDetector::StatusToString(result.status);
Paul Stewart20088d82012-02-16 06:58:55 -0800884 return;
885 }
886
Ben Chanfad4a0b2012-04-18 15:49:59 -0700887 SLOG(Device, 2) << "Device " << FriendlyName()
888 << ": Received final status: "
889 << PortalDetector::StatusToString(result.status);
Paul Stewart20088d82012-02-16 06:58:55 -0800890
Thieu Le85e050b2012-03-13 15:04:38 -0700891 portal_attempts_to_online_ += result.num_attempts;
892
893 metrics()->SendEnumToUMA(
894 metrics()->GetFullMetricName(Metrics::kMetricPortalResult, technology()),
895 Metrics::PortalDetectionResultToEnum(result),
896 Metrics::kPortalResultMax);
897
Paul Stewart20088d82012-02-16 06:58:55 -0800898 if (result.status == PortalDetector::kStatusSuccess) {
899 SetServiceConnectedState(Service::kStateOnline);
Thieu Le85e050b2012-03-13 15:04:38 -0700900
901 metrics()->SendToUMA(
902 metrics()->GetFullMetricName(
903 Metrics::kMetricPortalAttemptsToOnline, technology()),
904 portal_attempts_to_online_,
905 Metrics::kMetricPortalAttemptsToOnlineMin,
906 Metrics::kMetricPortalAttemptsToOnlineMax,
907 Metrics::kMetricPortalAttemptsToOnlineNumBuckets);
Paul Stewart20088d82012-02-16 06:58:55 -0800908 } else {
909 SetServiceConnectedState(Service::kStatePortal);
Thieu Le85e050b2012-03-13 15:04:38 -0700910
911 metrics()->SendToUMA(
912 metrics()->GetFullMetricName(
913 Metrics::kMetricPortalAttempts, technology()),
914 result.num_attempts,
915 Metrics::kMetricPortalAttemptsMin,
916 Metrics::kMetricPortalAttemptsMax,
917 Metrics::kMetricPortalAttemptsNumBuckets);
Paul Stewart20088d82012-02-16 06:58:55 -0800918 }
919}
920
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800921vector<string> Device::AvailableIPConfigs(Error */*error*/) {
Jason Glasgow08afdff2012-04-03 10:22:26 -0400922 if (ipconfig_.get()) {
923 string id = ipconfig_->GetRpcIdentifier();
924 return vector<string>(1, id);
925 }
926 return vector<string>();
Chris Masone4e851612011-07-01 10:46:53 -0700927}
928
929string Device::GetRpcConnectionIdentifier() {
930 return adaptor_->GetRpcConnectionIdentifier();
931}
932
Paul Stewart036dba02012-08-07 12:34:41 -0700933uint64 Device::GetLinkMonitorResponseTime(Error *error) {
934 if (!link_monitor_.get()) {
935 // It is not strictly an error that the link monitor does not
936 // exist, but returning an error here allows the GetProperties
937 // call in our Adaptor to omit this parameter.
938 error->Populate(Error::kNotFound, "Device is not running LinkMonitor");
939 return 0;
940 }
941 return link_monitor_->GetResponseTimeMilliseconds();
942}
943
Ben Chanb061f892013-02-27 17:46:55 -0800944uint64 Device::GetReceiveByteCount() {
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 rx_byte_count - receive_byte_offset_;
949}
950
Ben Chanb061f892013-02-27 17:46:55 -0800951uint64 Device::GetTransmitByteCount() {
Paul Stewart6ff27f52012-07-11 06:51:41 -0700952 uint64 rx_byte_count = 0, tx_byte_count = 0;
953 manager_->device_info()->GetByteCounts(
954 interface_index_, &rx_byte_count, &tx_byte_count);
955 return tx_byte_count - transmit_byte_offset_;
956}
957
Ben Chanb061f892013-02-27 17:46:55 -0800958uint64 Device::GetReceiveByteCountProperty(Error */*error*/) {
959 return GetReceiveByteCount();
960}
961
962uint64 Device::GetTransmitByteCountProperty(Error */*error*/) {
963 return GetTransmitByteCount();
964}
965
Eric Shienbrood7fce52c2012-04-13 19:11:02 -0400966bool Device::IsUnderlyingDeviceEnabled() const {
967 return false;
968}
969
Eric Shienbrood9a245532012-03-07 14:20:39 -0500970// callback
971void Device::OnEnabledStateChanged(const ResultCallback &callback,
972 const Error &error) {
mukesh agrawal46c27cc2013-07-10 16:39:10 -0700973 SLOG(Device, 2) << __func__
974 << " (target: " << enabled_pending_ << ","
975 << " success: " << error.IsSuccess() << ")"
976 << " on " << link_name_;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500977 if (error.IsSuccess()) {
978 enabled_ = enabled_pending_;
979 manager_->UpdateEnabledTechnologies();
980 adaptor_->EmitBoolChanged(flimflam::kPoweredProperty, enabled_);
981 adaptor_->UpdateEnabled();
982 }
Gary Morainbaeefdf2012-04-30 14:53:35 -0700983 enabled_pending_ = enabled_;
Eric Shienbrood9a245532012-03-07 14:20:39 -0500984 if (!callback.is_null())
985 callback.Run(error);
986}
987
988void Device::SetEnabled(bool enable) {
Ben Chanfad4a0b2012-04-18 15:49:59 -0700989 SLOG(Device, 2) << __func__ << "(" << enable << ")";
Jason Glasgow4a490792012-04-10 15:02:05 -0400990 Error error;
991 SetEnabledInternal(enable, false, &error, ResultCallback());
Jason Glasgow7234ec32012-05-23 16:01:21 -0400992 LOG_IF(ERROR, error.IsFailure() && !error.IsOngoing())
Jason Glasgow4a490792012-04-10 15:02:05 -0400993 << "Enabled failed, but no way to report the failure.";
Eric Shienbrood9a245532012-03-07 14:20:39 -0500994}
995
996void Device::SetEnabledPersistent(bool enable,
997 Error *error,
998 const ResultCallback &callback) {
999 SetEnabledInternal(enable, true, error, callback);
1000}
1001
1002void Device::SetEnabledInternal(bool enable,
1003 bool persist,
1004 Error *error,
1005 const ResultCallback &callback) {
Jason Glasgow4a490792012-04-10 15:02:05 -04001006 DCHECK(error);
Ben Chanfad4a0b2012-04-18 15:49:59 -07001007 SLOG(Device, 2) << "Device " << link_name_ << " "
1008 << (enable ? "starting" : "stopping");
Eric Shienbrood9a245532012-03-07 14:20:39 -05001009 if (enable == enabled_) {
Jason Glasgow4a490792012-04-10 15:02:05 -04001010 error->Reset();
Eric Shienbrood9a245532012-03-07 14:20:39 -05001011 return;
1012 }
1013
1014 if (enabled_pending_ == enable) {
Jason Glasgow4a490792012-04-10 15:02:05 -04001015 Error::PopulateAndLog(error, Error::kInProgress,
1016 "Enable operation already in progress");
Eric Shienbrood9a245532012-03-07 14:20:39 -05001017 return;
1018 }
1019
1020 if (persist) {
1021 enabled_persistent_ = enable;
Darin Petkove7c6ad32012-06-29 10:22:09 +02001022 manager_->UpdateDevice(this);
Eric Shienbrood9a245532012-03-07 14:20:39 -05001023 }
1024
1025 enabled_pending_ = enable;
1026 EnabledStateChangedCallback enabled_callback =
1027 Bind(&Device::OnEnabledStateChanged,
1028 weak_ptr_factory_.GetWeakPtr(), callback);
1029 if (enable) {
1030 running_ = true;
Eric Shienbrood9a245532012-03-07 14:20:39 -05001031 Start(error, enabled_callback);
1032 } else {
1033 running_ = false;
1034 DestroyIPConfig(); // breaks a reference cycle
1035 SelectService(NULL); // breaks a reference cycle
1036 rtnl_handler_->SetInterfaceFlags(interface_index(), 0, IFF_UP);
Ben Chanfad4a0b2012-04-18 15:49:59 -07001037 SLOG(Device, 3) << "Device " << link_name_ << " ipconfig_ "
1038 << (ipconfig_ ? "is set." : "is not set.");
1039 SLOG(Device, 3) << "Device " << link_name_ << " connection_ "
1040 << (connection_ ? "is set." : "is not set.");
1041 SLOG(Device, 3) << "Device " << link_name_ << " selected_service_ "
1042 << (selected_service_ ? "is set." : "is not set.");
Eric Shienbrood9a245532012-03-07 14:20:39 -05001043 Stop(error, enabled_callback);
1044 }
1045}
1046
Paul Stewart75897df2011-04-27 09:05:53 -07001047} // namespace shill