blob: 12300a905f73a1c257902403c04f39c58b6998c4 [file] [log] [blame]
Paul Stewart75897df2011-04-27 09:05:53 -07001// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2// 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
Chris Masoneee929b72011-05-10 10:02:18 -070015#include <base/logging.h>
Chris Masone487b8bf2011-05-13 16:27:57 -070016#include <base/memory/ref_counted.h>
Chris Masone5dec5f42011-07-22 14:07:55 -070017#include <base/stringprintf.h>
Chris Masone3bd3c8c2011-06-13 08:20:26 -070018#include <chromeos/dbus/service_constants.h>
Chris Masoneee929b72011-05-10 10:02:18 -070019
Paul Stewarte6132022011-08-16 09:11:02 -070020#include "shill/connection.h"
Paul Stewart75897df2011-04-27 09:05:53 -070021#include "shill/control_interface.h"
Chris Masoned7732e42011-05-20 11:08:56 -070022#include "shill/device_dbus_adaptor.h"
Chris Masone2b105542011-06-22 10:58:09 -070023#include "shill/dhcp_config.h"
Darin Petkovafa6fc42011-06-21 16:21:08 -070024#include "shill/dhcp_provider.h"
Chris Masone8fe2c7e2011-06-09 15:51:19 -070025#include "shill/error.h"
26#include "shill/manager.h"
Chris Masone95207da2011-06-29 16:50:49 -070027#include "shill/property_accessor.h"
Chris Masone2b105542011-06-22 10:58:09 -070028#include "shill/refptr_types.h"
Paul Stewartc39f1132011-06-22 12:02:28 -070029#include "shill/rtnl_handler.h"
Chris Masone2b105542011-06-22 10:58:09 -070030#include "shill/service.h"
Chris Masone0e1d1042011-05-09 18:07:03 -070031#include "shill/shill_event.h"
Chris Masone5dec5f42011-07-22 14:07:55 -070032#include "shill/store_interface.h"
Paul Stewart75897df2011-04-27 09:05:53 -070033
Chris Masone5dec5f42011-07-22 14:07:55 -070034using base::StringPrintf;
Chris Masone8fe2c7e2011-06-09 15:51:19 -070035using std::string;
36using std::vector;
37
Paul Stewart75897df2011-04-27 09:05:53 -070038namespace shill {
Chris Masone5dec5f42011-07-22 14:07:55 -070039
40// static
41const char Device::kStoragePowered[] = "Powered";
42
43// static
44const char Device::kStorageIPConfigs[] = "IPConfigs";
45
Paul Stewart75897df2011-04-27 09:05:53 -070046Device::Device(ControlInterface *control_interface,
Paul Stewartb50f0b92011-05-16 16:31:42 -070047 EventDispatcher *dispatcher,
Paul Stewartf1ce5d22011-05-19 13:10:20 -070048 Manager *manager,
Darin Petkovafa6fc42011-06-21 16:21:08 -070049 const string &link_name,
Chris Masone626719f2011-08-18 16:58:48 -070050 const string &address,
Paul Stewartb50f0b92011-05-16 16:31:42 -070051 int interface_index)
Chris Masone853b81b2011-06-24 14:11:41 -070052 : powered_(true),
Chris Masoneb925cc82011-06-22 15:39:57 -070053 reconnect_(true),
Chris Masone626719f2011-08-18 16:58:48 -070054 hardware_address_(address),
mukesh agrawalf60e4062011-05-27 13:13:41 -070055 interface_index_(interface_index),
56 running_(false),
Darin Petkovafa6fc42011-06-21 16:21:08 -070057 link_name_(link_name),
Chris Masone19e30402011-07-19 15:48:47 -070058 unique_id_(link_name),
Darin Petkovd9661952011-08-03 16:25:42 -070059 control_interface_(control_interface),
60 dispatcher_(dispatcher),
Chris Masone7df0c672011-07-15 10:24:54 -070061 manager_(manager),
Darin Petkov77cb6812011-08-15 16:19:41 -070062 adaptor_(control_interface->CreateDeviceAdaptor(this)),
mukesh agrawal5c4dd0b2011-09-14 13:53:14 -070063 dhcp_provider_(DHCPProvider::GetInstance()),
64 rtnl_handler_(RTNLHandler::GetInstance()) {
Chris Masone27c4aa52011-07-02 13:10:14 -070065 store_.RegisterConstString(flimflam::kAddressProperty, &hardware_address_);
Chris Masone4d42df82011-07-02 17:09:39 -070066
67 // flimflam::kBgscanMethodProperty: Registered in WiFi
68 // flimflam::kBgscanShortIntervalProperty: Registered in WiFi
69 // flimflam::kBgscanSignalThresholdProperty: Registered in WiFi
70
71 // flimflam::kCellularAllowRoamingProperty: Registered in Cellular
72 // flimflam::kCarrierProperty: Registered in Cellular
73 // flimflam::kEsnProperty: Registered in Cellular
Darin Petkov3335b372011-08-22 11:05:32 -070074 // flimflam::kHomeProviderProperty: Registered in Cellular
Chris Masone4d42df82011-07-02 17:09:39 -070075 // flimflam::kImeiProperty: Registered in Cellular
76 // flimflam::kImsiProperty: Registered in Cellular
77 // flimflam::kManufacturerProperty: Registered in Cellular
78 // flimflam::kMdnProperty: Registered in Cellular
79 // flimflam::kMeidProperty: Registered in Cellular
80 // flimflam::kMinProperty: Registered in Cellular
81 // flimflam::kModelIDProperty: Registered in Cellular
82 // flimflam::kFirmwareRevisionProperty: Registered in Cellular
83 // flimflam::kHardwareRevisionProperty: Registered in Cellular
84 // flimflam::kPRLVersionProperty: Registered in Cellular
85 // flimflam::kSIMLockStatusProperty: Registered in Cellular
86 // flimflam::kFoundNetworksProperty: Registered in Cellular
Darin Petkove9d12e02011-07-27 15:09:37 -070087 // flimflam::kDBusConnectionProperty: Registered in Cellular
88 // flimflam::kDBusObjectProperty: Register in Cellular
Chris Masone4d42df82011-07-02 17:09:39 -070089
Chris Masoneb925cc82011-06-22 15:39:57 -070090 // TODO(cmasone): Chrome doesn't use this...does anyone?
Chris Masone27c4aa52011-07-02 13:10:14 -070091 // store_.RegisterConstString(flimflam::kInterfaceProperty, &link_name_);
92 HelpRegisterDerivedStrings(flimflam::kIPConfigsProperty,
93 &Device::AvailableIPConfigs,
94 NULL);
95 store_.RegisterConstString(flimflam::kNameProperty, &link_name_);
96 store_.RegisterBool(flimflam::kPoweredProperty, &powered_);
Chris Masoneb925cc82011-06-22 15:39:57 -070097 // TODO(cmasone): Chrome doesn't use this...does anyone?
Chris Masone27c4aa52011-07-02 13:10:14 -070098 // store_.RegisterConstBool(flimflam::kReconnectProperty, &reconnect_);
Chris Masoneb925cc82011-06-22 15:39:57 -070099
Chris Masone4e851612011-07-01 10:46:53 -0700100 // TODO(cmasone): Figure out what shill concept maps to flimflam's "Network".
Chris Masoneb925cc82011-06-22 15:39:57 -0700101 // known_properties_.push_back(flimflam::kNetworksProperty);
102
Chris Masone4d42df82011-07-02 17:09:39 -0700103 // flimflam::kScanningProperty: Registered in WiFi, Cellular
104 // flimflam::kScanIntervalProperty: Registered in WiFi, Cellular
105
106 // TODO(pstew): Initialize Interface monitor, so we can detect new interfaces
Paul Stewartb50f0b92011-05-16 16:31:42 -0700107 VLOG(2) << "Device " << link_name_ << " index " << interface_index;
Paul Stewart75897df2011-04-27 09:05:53 -0700108}
109
110Device::~Device() {
Paul Stewartb50f0b92011-05-16 16:31:42 -0700111 VLOG(2) << "Device " << link_name_ << " destroyed.";
Paul Stewart75897df2011-04-27 09:05:53 -0700112}
113
114void Device::Start() {
115 running_ = true;
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700116 VLOG(2) << "Device " << link_name_ << " starting.";
Chris Masone413a3192011-05-09 17:10:05 -0700117 adaptor_->UpdateEnabled();
Paul Stewart75897df2011-04-27 09:05:53 -0700118}
119
120void Device::Stop() {
mukesh agrawal5c4dd0b2011-09-14 13:53:14 -0700121 VLOG(2) << "Device " << link_name_ << " stopping.";
Paul Stewart75897df2011-04-27 09:05:53 -0700122 running_ = false;
mukesh agrawal5c4dd0b2011-09-14 13:53:14 -0700123 DestroyIPConfig(); // breaks a reference cycle
124 SelectService(NULL); // breaks a reference cycle
Chris Masone413a3192011-05-09 17:10:05 -0700125 adaptor_->UpdateEnabled();
mukesh agrawal5c4dd0b2011-09-14 13:53:14 -0700126 rtnl_handler_->SetInterfaceFlags(interface_index(), 0, IFF_UP);
127
128 VLOG(3) << "Device " << link_name_ << " has " << services_.size()
129 << " remaining services.";
130 VLOG(3) << "Device " << link_name_ << " ipconfig_ "
131 << (ipconfig_.get() ? "is set." : "is not set.");
132 VLOG(3) << "Device " << link_name_ << " connection_ "
133 << (connection_.get() ? "is set." : "is not set.");
134 VLOG(3) << "Device " << link_name_ << " selected_service_ "
135 << (selected_service_.get() ? "is set." : "is not set.");
Paul Stewart75897df2011-04-27 09:05:53 -0700136}
137
mukesh agrawal1830fa12011-09-26 14:31:40 -0700138bool Device::TechnologyIs(const Technology::Identifier /*type*/) const {
Darin Petkovafa6fc42011-06-21 16:21:08 -0700139 return false;
140}
141
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700142void Device::LinkEvent(unsigned flags, unsigned change) {
mukesh agrawal47009f82011-08-25 14:07:35 -0700143 VLOG(2) << "Device " << link_name_
144 << std::showbase << std::hex
145 << " flags " << flags << " changed " << change
146 << std::dec << std::noshowbase;
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700147}
148
Darin Petkovc0865312011-09-16 15:31:20 -0700149void Device::Scan(Error *error) {
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700150 VLOG(2) << "Device " << link_name_ << " scan requested.";
Darin Petkovc0865312011-09-16 15:31:20 -0700151 const string kMessage = "Device doesn't support scan.";
152 LOG(ERROR) << kMessage;
153 CHECK(error);
154 error->Populate(Error::kNotSupported, kMessage);
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700155}
156
mukesh agrawal1830fa12011-09-26 14:31:40 -0700157void Device::RegisterOnNetwork(const std::string &/*network_id*/,
158 Error *error) {
Darin Petkov9ae310f2011-08-30 15:41:13 -0700159 const string kMessage = "Device doesn't support network registration.";
160 LOG(ERROR) << kMessage;
161 CHECK(error);
162 error->Populate(Error::kNotSupported, kMessage);
163}
164
mukesh agrawal1830fa12011-09-26 14:31:40 -0700165void Device::RequirePIN(const string &/*pin*/, bool /*require*/, Error *error) {
Darin Petkove42e1012011-08-31 12:35:04 -0700166 const string kMessage = "Device doesn't support RequirePIN.";
167 LOG(ERROR) << kMessage;
168 CHECK(error);
169 error->Populate(Error::kNotSupported, kMessage);
170}
171
mukesh agrawal1830fa12011-09-26 14:31:40 -0700172void Device::EnterPIN(const string &/*pin*/, Error *error) {
Darin Petkove42e1012011-08-31 12:35:04 -0700173 const string kMessage = "Device doesn't support EnterPIN.";
174 LOG(ERROR) << kMessage;
175 CHECK(error);
176 error->Populate(Error::kNotSupported, kMessage);
177}
178
mukesh agrawal1830fa12011-09-26 14:31:40 -0700179void Device::UnblockPIN(const string &/*unblock_code*/,
180 const string &/*pin*/,
Darin Petkove42e1012011-08-31 12:35:04 -0700181 Error *error) {
182 const string kMessage = "Device doesn't support UnblockPIN.";
183 LOG(ERROR) << kMessage;
184 CHECK(error);
185 error->Populate(Error::kNotSupported, kMessage);
186}
187
mukesh agrawal1830fa12011-09-26 14:31:40 -0700188void Device::ChangePIN(const string &/*old_pin*/,
189 const string &/*new_pin*/,
Darin Petkove42e1012011-08-31 12:35:04 -0700190 Error *error) {
191 const string kMessage = "Device doesn't support ChangePIN.";
192 LOG(ERROR) << kMessage;
193 CHECK(error);
194 error->Populate(Error::kNotSupported, kMessage);
195}
196
Chris Masone27c4aa52011-07-02 13:10:14 -0700197string Device::GetRpcIdentifier() {
198 return adaptor_->GetRpcIdentifier();
Chris Masone8fe2c7e2011-06-09 15:51:19 -0700199}
200
Chris Masone5dec5f42011-07-22 14:07:55 -0700201string Device::GetStorageIdentifier() {
202 string id = GetRpcIdentifier();
203 ControlInterface::RpcIdToStorageId(&id);
Chris Masone626719f2011-08-18 16:58:48 -0700204 size_t needle = id.find('_');
Chris Masone34af2182011-08-22 11:59:36 -0700205 DLOG_IF(ERROR, needle == string::npos) << "No _ in storage id?!?!";
Chris Masone626719f2011-08-18 16:58:48 -0700206 id.replace(id.begin() + needle + 1, id.end(), hardware_address_);
Chris Masone5dec5f42011-07-22 14:07:55 -0700207 return id;
208}
209
Chris Masone19e30402011-07-19 15:48:47 -0700210const string& Device::FriendlyName() const {
Chris Masone7df0c672011-07-15 10:24:54 -0700211 return link_name_;
Darin Petkovafa6fc42011-06-21 16:21:08 -0700212}
213
Chris Masone19e30402011-07-19 15:48:47 -0700214const string& Device::UniqueName() const {
215 return unique_id_;
216}
217
Chris Masone5dec5f42011-07-22 14:07:55 -0700218bool Device::Load(StoreInterface *storage) {
219 const string id = GetStorageIdentifier();
220 if (!storage->ContainsGroup(id)) {
221 LOG(WARNING) << "Device is not available in the persistent store: " << id;
222 return false;
223 }
224 storage->GetBool(id, kStoragePowered, &powered_);
225 // TODO(cmasone): What does it mean to load an IPConfig identifier??
226 return true;
227}
228
229bool Device::Save(StoreInterface *storage) {
230 const string id = GetStorageIdentifier();
231 storage->SetBool(id, kStoragePowered, powered_);
Chris Masone34af2182011-08-22 11:59:36 -0700232 if (ipconfig_.get()) {
233 // The _0 is an index into the list of IPConfigs that this device might
234 // have. We only have one IPConfig right now, and I hope to never have
235 // to support more, as sleffler indicates that associating IPConfigs
236 // with devices is wrong and due to be changed in flimflam anyhow.
237 string suffix = hardware_address_ + "_0";
238 ipconfig_->Save(storage, suffix);
239 storage->SetString(id, kStorageIPConfigs, SerializeIPConfigs(suffix));
240 }
Chris Masone5dec5f42011-07-22 14:07:55 -0700241 return true;
242}
243
Darin Petkovafa6fc42011-06-21 16:21:08 -0700244void Device::DestroyIPConfig() {
245 if (ipconfig_.get()) {
246 ipconfig_->ReleaseIP();
247 ipconfig_ = NULL;
248 }
Paul Stewarte6132022011-08-16 09:11:02 -0700249 DestroyConnection();
Darin Petkovafa6fc42011-06-21 16:21:08 -0700250}
251
252bool Device::AcquireDHCPConfig() {
253 DestroyIPConfig();
Darin Petkov77cb6812011-08-15 16:19:41 -0700254 ipconfig_ = dhcp_provider_->CreateConfig(link_name_);
Darin Petkovafa6fc42011-06-21 16:21:08 -0700255 ipconfig_->RegisterUpdateCallback(
256 NewCallback(this, &Device::IPConfigUpdatedCallback));
257 return ipconfig_->RequestIP();
258}
259
Chris Masone27c4aa52011-07-02 13:10:14 -0700260void Device::HelpRegisterDerivedStrings(const string &name,
Chris Masone889666b2011-07-03 12:58:50 -0700261 Strings(Device::*get)(void),
262 bool(Device::*set)(const Strings&)) {
Chris Masone27c4aa52011-07-02 13:10:14 -0700263 store_.RegisterDerivedStrings(
264 name,
265 StringsAccessor(new CustomAccessor<Device, Strings>(this, get, set)));
Chris Masone4e851612011-07-01 10:46:53 -0700266}
267
Chris Masone2b105542011-06-22 10:58:09 -0700268void Device::IPConfigUpdatedCallback(const IPConfigRefPtr &ipconfig,
269 bool success) {
Paul Stewarte6132022011-08-16 09:11:02 -0700270 VLOG(2) << __func__ << " " << " success: " << success;
Paul Stewartc39f1132011-06-22 12:02:28 -0700271 if (success) {
Paul Stewarte6132022011-08-16 09:11:02 -0700272 CreateConnection();
273 connection_->UpdateFromIPConfig(ipconfig);
Paul Stewart03dba0b2011-08-22 16:32:45 -0700274 SetServiceState(Service::kStateConnected);
Paul Stewarte6132022011-08-16 09:11:02 -0700275 } else {
276 // TODO(pstew): This logic gets more complex when multiple IPConfig types
277 // are run in parallel (e.g. DHCP and DHCP6)
Paul Stewart03dba0b2011-08-22 16:32:45 -0700278 SetServiceState(Service::kStateDisconnected);
Paul Stewarte6132022011-08-16 09:11:02 -0700279 DestroyConnection();
Paul Stewartc39f1132011-06-22 12:02:28 -0700280 }
Chris Masone8fe2c7e2011-06-09 15:51:19 -0700281}
282
Paul Stewarte6132022011-08-16 09:11:02 -0700283void Device::CreateConnection() {
284 VLOG(2) << __func__;
285 if (!connection_.get()) {
Paul Stewart9a908082011-08-31 12:18:48 -0700286 connection_ = new Connection(interface_index_,
287 link_name_,
288 manager_->device_info());
Paul Stewarte6132022011-08-16 09:11:02 -0700289 }
290}
291
292void Device::DestroyConnection() {
293 VLOG(2) << __func__;
294 connection_ = NULL;
295}
296
Paul Stewart03dba0b2011-08-22 16:32:45 -0700297void Device::SelectService(const ServiceRefPtr &service) {
Paul Stewarta2b8cd12011-08-25 14:55:32 -0700298 VLOG(2) << __func__ << ": "
299 << (service.get() ? service->UniqueName() : "*reset*");
Paul Stewart03dba0b2011-08-22 16:32:45 -0700300 if (selected_service_.get() &&
301 selected_service_->state() != Service::kStateFailure) {
302 selected_service_->SetState(Service::kStateIdle);
303 }
304 selected_service_ = service;
305}
306
307void Device::SetServiceState(Service::ConnectState state) {
308 if (selected_service_.get()) {
309 selected_service_->SetState(state);
310 }
311}
312
313void Device::SetServiceFailure(Service::ConnectFailure failure_state) {
314 if (selected_service_.get()) {
315 selected_service_->SetFailure(failure_state);
316 }
317}
318
Chris Masone34af2182011-08-22 11:59:36 -0700319string Device::SerializeIPConfigs(const string &suffix) {
320 return StringPrintf("%s:%s", suffix.c_str(), ipconfig_->type().c_str());
Chris Masone5dec5f42011-07-22 14:07:55 -0700321}
322
Chris Masone4e851612011-07-01 10:46:53 -0700323vector<string> Device::AvailableIPConfigs() {
324 string id = (ipconfig_.get() ? ipconfig_->GetRpcIdentifier() : string());
325 return vector<string>(1, id);
326}
327
328string Device::GetRpcConnectionIdentifier() {
329 return adaptor_->GetRpcConnectionIdentifier();
330}
331
Paul Stewart75897df2011-04-27 09:05:53 -0700332} // namespace shill