blob: b30f3151067513cada93e218c7e8af9e1eca5968 [file] [log] [blame]
Darin Petkov41c0e0a2012-01-09 16:38:53 +01001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Darin Petkov5c97ac52011-07-19 16:30:49 -07002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "shill/modem.h"
6
Eric Shienbrood3e20a232012-02-16 11:35:56 -05007#include <base/bind.h>
Darin Petkove0a312e2011-07-20 13:45:28 -07008#include <base/logging.h>
Darin Petkove0a312e2011-07-20 13:45:28 -07009
10#include "shill/cellular.h"
11#include "shill/manager.h"
Darin Petkov5c97ac52011-07-19 16:30:49 -070012#include "shill/proxy_factory.h"
Darin Petkove0a312e2011-07-20 13:45:28 -070013#include "shill/rtnl_handler.h"
Ben Chanfad4a0b2012-04-18 15:49:59 -070014#include "shill/scope_logger.h"
Darin Petkove0a312e2011-07-20 13:45:28 -070015
Eric Shienbrood3e20a232012-02-16 11:35:56 -050016using base::Bind;
Jason Glasgow9c09e362012-04-18 15:16:29 -040017using base::Unretained;
Darin Petkove0a312e2011-07-20 13:45:28 -070018using std::string;
Darin Petkovc5f56562011-08-06 16:40:05 -070019using std::vector;
Darin Petkov5c97ac52011-07-19 16:30:49 -070020
21namespace shill {
22
Darin Petkove0a312e2011-07-20 13:45:28 -070023// TODO(petkov): Consider generating these in mm/mm-modem.h.
24const char Modem::kPropertyLinkName[] = "Device";
25const char Modem::kPropertyIPMethod[] = "IpMethod";
26const char Modem::kPropertyType[] = "Type";
Darin Petkove0a312e2011-07-20 13:45:28 -070027
David Rochbergfa1d31d2012-03-20 10:38:07 -040028Modem::Modem(const string &owner,
29 const string &path,
Darin Petkov5c97ac52011-07-19 16:30:49 -070030 ControlInterface *control_interface,
31 EventDispatcher *dispatcher,
Thieu Le3426c8f2012-01-11 17:35:11 -080032 Metrics *metrics,
Darin Petkov137884a2011-10-26 18:52:47 +020033 Manager *manager,
34 mobile_provider_db *provider_db)
David Rochbergfa1d31d2012-03-20 10:38:07 -040035 : owner_(owner),
Darin Petkove0a312e2011-07-20 13:45:28 -070036 path_(path),
Darin Petkov5c97ac52011-07-19 16:30:49 -070037 control_interface_(control_interface),
38 dispatcher_(dispatcher),
Thieu Le3426c8f2012-01-11 17:35:11 -080039 metrics_(metrics),
Darin Petkov137884a2011-10-26 18:52:47 +020040 manager_(manager),
Darin Petkov41c0e0a2012-01-09 16:38:53 +010041 provider_db_(provider_db),
David Rochbergfa1d31d2012-03-20 10:38:07 -040042 type_(Cellular::kTypeInvalid),
43 pending_device_info_(false),
Jason Glasgow82f9ab32012-04-04 14:27:19 -040044 rtnl_handler_(RTNLHandler::GetInstance()),
45 proxy_factory_(ProxyFactory::GetInstance()) {
Darin Petkove0a312e2011-07-20 13:45:28 -070046 LOG(INFO) << "Modem created: " << owner << " at " << path;
47}
Darin Petkov5c97ac52011-07-19 16:30:49 -070048
Jason Glasgowe9089492012-02-23 17:57:37 -050049Modem::~Modem() {
50 if (device_.get()) {
51 manager_->device_info()->DeregisterDevice(device_);
52 }
53}
Darin Petkov5c97ac52011-07-19 16:30:49 -070054
Eric Shienbrood11567d02012-04-10 18:08:49 -040055void Modem::Init() {
56 dbus_properties_proxy_.reset(
Jason Glasgow9c09e362012-04-18 15:16:29 -040057 proxy_factory_->CreateDBusPropertiesProxy(path(), owner()));
58 dbus_properties_proxy_->set_modem_manager_properties_changed_callback(
59 Bind(&Modem::OnModemManagerPropertiesChanged, Unretained(this)));
60 dbus_properties_proxy_->set_properties_changed_callback(
61 Bind(&Modem::OnDBusPropertiesChanged, Unretained(this)));
Eric Shienbrood11567d02012-04-10 18:08:49 -040062}
63
Darin Petkov41c0e0a2012-01-09 16:38:53 +010064void Modem::OnDeviceInfoAvailable(const string &link_name) {
Ben Chanfad4a0b2012-04-18 15:49:59 -070065 SLOG(Modem, 2) << __func__;
Darin Petkov41c0e0a2012-01-09 16:38:53 +010066 if (pending_device_info_ && link_name_ == link_name) {
David Rochbergfa1d31d2012-03-20 10:38:07 -040067 // pending_device_info_ is only set if we've already been through
68 // CreateDeviceFromModemProperties() and saved our initial
69 // properties already
Darin Petkov41c0e0a2012-01-09 16:38:53 +010070 pending_device_info_ = false;
David Rochbergfa1d31d2012-03-20 10:38:07 -040071 CreateDeviceFromModemProperties(initial_modem_properties_);
Darin Petkov41c0e0a2012-01-09 16:38:53 +010072 }
73}
74
David Rochbergfa1d31d2012-03-20 10:38:07 -040075Cellular *Modem::ConstructCellular(const string &link_name,
76 const string &address,
77 int interface_index) {
78 LOG(INFO) << "Creating a cellular device on link " << link_name_
79 << " interface index " << interface_index << ".";
80 return new Cellular(control_interface_,
81 dispatcher_,
82 metrics_,
83 manager_,
84 link_name,
85 address,
86 interface_index,
87 type_,
88 owner_,
89 path_,
90 provider_db_);
Darin Petkove0a312e2011-07-20 13:45:28 -070091}
92
David Rochbergfa1d31d2012-03-20 10:38:07 -040093void Modem::CreateDeviceFromModemProperties(
94 const DBusPropertiesMap &modem_properties) {
Ben Chanfad4a0b2012-04-18 15:49:59 -070095 SLOG(Modem, 2) << __func__;
David Rochbergfa1d31d2012-03-20 10:38:07 -040096
Darin Petkov41c0e0a2012-01-09 16:38:53 +010097 if (device_.get()) {
98 return;
99 }
David Rochbergfa1d31d2012-03-20 10:38:07 -0400100 if (!GetLinkName(modem_properties, &link_name_)) {
Darin Petkove0a312e2011-07-20 13:45:28 -0700101 LOG(ERROR) << "Unable to create cellular device without a link name.";
102 return;
103 }
Eric Shienbrood5e628a52012-03-21 16:56:59 -0400104 if (manager_->device_info()->IsDeviceBlackListed(link_name_)) {
105 LOG(INFO) << "Do not create cellular device for blacklisted interface "
106 << link_name_;
107 return;
108 }
Darin Petkov41c0e0a2012-01-09 16:38:53 +0100109 // TODO(petkov): Get the interface index from DeviceInfo, similar to the MAC
110 // address below.
Darin Petkove0a312e2011-07-20 13:45:28 -0700111 int interface_index =
David Rochbergfa1d31d2012-03-20 10:38:07 -0400112 rtnl_handler_->GetInterfaceIndex(link_name_);
Darin Petkove0a312e2011-07-20 13:45:28 -0700113 if (interface_index < 0) {
114 LOG(ERROR) << "Unable to create cellular device -- no interface index.";
115 return;
116 }
117
Chris Masone626719f2011-08-18 16:58:48 -0700118 ByteString address_bytes;
Paul Stewart32852962011-08-30 14:06:53 -0700119 if (!manager_->device_info()->GetMACAddress(interface_index,
120 &address_bytes)) {
David Rochbergfa1d31d2012-03-20 10:38:07 -0400121 // Save our properties, wait for OnDeviceInfoAvailable to be called.
Darin Petkov41c0e0a2012-01-09 16:38:53 +0100122 LOG(WARNING) << "No hardware address, device creation pending device info.";
David Rochbergfa1d31d2012-03-20 10:38:07 -0400123 initial_modem_properties_ = modem_properties;
Darin Petkov41c0e0a2012-01-09 16:38:53 +0100124 pending_device_info_ = true;
Chris Masone626719f2011-08-18 16:58:48 -0700125 return;
126 }
127
David Rochbergfa1d31d2012-03-20 10:38:07 -0400128 string address = address_bytes.HexEncode();
129 device_ = ConstructCellular(link_name_, address, interface_index);
Darin Petkovbac96002011-08-09 13:22:00 -0700130
Darin Petkov721ac932011-11-16 15:43:09 +0100131 // Give the device a chance to extract any capability-specific properties.
Jason Glasgow4c0724a2012-04-17 15:47:40 -0400132 device_->OnDBusPropertiesChanged(GetModemInterface(), modem_properties,
133 vector<string>());
Darin Petkovbac96002011-08-09 13:22:00 -0700134
135 manager_->device_info()->RegisterDevice(device_);
Darin Petkove0a312e2011-07-20 13:45:28 -0700136}
Eric Shienbrood11567d02012-04-10 18:08:49 -0400137
138void Modem::OnDBusPropertiesChanged(
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400139 const string &interface,
140 const DBusPropertiesMap &changed_properties,
141 const vector<string> &invalidated_properties) {
Jason Glasgow4c0724a2012-04-17 15:47:40 -0400142 if (device_.get()) {
143 device_->OnDBusPropertiesChanged(interface,
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400144 changed_properties,
145 invalidated_properties);
146 }
Eric Shienbrood11567d02012-04-10 18:08:49 -0400147}
148
149void Modem::OnModemManagerPropertiesChanged(
Jason Glasgow4c0724a2012-04-17 15:47:40 -0400150 const string &interface,
Eric Shienbrood11567d02012-04-10 18:08:49 -0400151 const DBusPropertiesMap &properties) {
Jason Glasgow4c0724a2012-04-17 15:47:40 -0400152 vector<string> invalidated_properties;
153 OnDBusPropertiesChanged(interface, properties, invalidated_properties);
Eric Shienbrood11567d02012-04-10 18:08:49 -0400154}
155
Darin Petkov5c97ac52011-07-19 16:30:49 -0700156} // namespace shill