blob: c54e76cadcf882cca1683ab591ae6f3a00b739a0 [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,
Jason Glasgowa585fc32012-06-06 11:04:09 -040029 const string &service,
David Rochbergfa1d31d2012-03-20 10:38:07 -040030 const string &path,
Darin Petkov5c97ac52011-07-19 16:30:49 -070031 ControlInterface *control_interface,
32 EventDispatcher *dispatcher,
Thieu Le3426c8f2012-01-11 17:35:11 -080033 Metrics *metrics,
Darin Petkov137884a2011-10-26 18:52:47 +020034 Manager *manager,
35 mobile_provider_db *provider_db)
David Rochbergfa1d31d2012-03-20 10:38:07 -040036 : owner_(owner),
Jason Glasgowa585fc32012-06-06 11:04:09 -040037 service_(service),
Darin Petkove0a312e2011-07-20 13:45:28 -070038 path_(path),
Darin Petkov5c97ac52011-07-19 16:30:49 -070039 control_interface_(control_interface),
40 dispatcher_(dispatcher),
Thieu Le3426c8f2012-01-11 17:35:11 -080041 metrics_(metrics),
Darin Petkov137884a2011-10-26 18:52:47 +020042 manager_(manager),
Darin Petkov41c0e0a2012-01-09 16:38:53 +010043 provider_db_(provider_db),
David Rochbergfa1d31d2012-03-20 10:38:07 -040044 type_(Cellular::kTypeInvalid),
45 pending_device_info_(false),
Jason Glasgow82f9ab32012-04-04 14:27:19 -040046 rtnl_handler_(RTNLHandler::GetInstance()),
47 proxy_factory_(ProxyFactory::GetInstance()) {
Darin Petkove0a312e2011-07-20 13:45:28 -070048 LOG(INFO) << "Modem created: " << owner << " at " << path;
49}
Darin Petkov5c97ac52011-07-19 16:30:49 -070050
Jason Glasgowe9089492012-02-23 17:57:37 -050051Modem::~Modem() {
52 if (device_.get()) {
53 manager_->device_info()->DeregisterDevice(device_);
54 }
55}
Darin Petkov5c97ac52011-07-19 16:30:49 -070056
Eric Shienbrood11567d02012-04-10 18:08:49 -040057void Modem::Init() {
58 dbus_properties_proxy_.reset(
Jason Glasgow9c09e362012-04-18 15:16:29 -040059 proxy_factory_->CreateDBusPropertiesProxy(path(), owner()));
60 dbus_properties_proxy_->set_modem_manager_properties_changed_callback(
61 Bind(&Modem::OnModemManagerPropertiesChanged, Unretained(this)));
62 dbus_properties_proxy_->set_properties_changed_callback(
63 Bind(&Modem::OnDBusPropertiesChanged, Unretained(this)));
Eric Shienbrood11567d02012-04-10 18:08:49 -040064}
65
Darin Petkov41c0e0a2012-01-09 16:38:53 +010066void Modem::OnDeviceInfoAvailable(const string &link_name) {
Ben Chanfad4a0b2012-04-18 15:49:59 -070067 SLOG(Modem, 2) << __func__;
Darin Petkov41c0e0a2012-01-09 16:38:53 +010068 if (pending_device_info_ && link_name_ == link_name) {
David Rochbergfa1d31d2012-03-20 10:38:07 -040069 // pending_device_info_ is only set if we've already been through
70 // CreateDeviceFromModemProperties() and saved our initial
71 // properties already
Darin Petkov41c0e0a2012-01-09 16:38:53 +010072 pending_device_info_ = false;
David Rochbergfa1d31d2012-03-20 10:38:07 -040073 CreateDeviceFromModemProperties(initial_modem_properties_);
Darin Petkov41c0e0a2012-01-09 16:38:53 +010074 }
75}
76
David Rochbergfa1d31d2012-03-20 10:38:07 -040077Cellular *Modem::ConstructCellular(const string &link_name,
78 const string &address,
79 int interface_index) {
80 LOG(INFO) << "Creating a cellular device on link " << link_name_
81 << " interface index " << interface_index << ".";
82 return new Cellular(control_interface_,
83 dispatcher_,
84 metrics_,
85 manager_,
86 link_name,
87 address,
88 interface_index,
89 type_,
90 owner_,
Jason Glasgowa585fc32012-06-06 11:04:09 -040091 service_,
David Rochbergfa1d31d2012-03-20 10:38:07 -040092 path_,
93 provider_db_);
Darin Petkove0a312e2011-07-20 13:45:28 -070094}
95
David Rochbergfa1d31d2012-03-20 10:38:07 -040096void Modem::CreateDeviceFromModemProperties(
97 const DBusPropertiesMap &modem_properties) {
Ben Chanfad4a0b2012-04-18 15:49:59 -070098 SLOG(Modem, 2) << __func__;
David Rochbergfa1d31d2012-03-20 10:38:07 -040099
Darin Petkov41c0e0a2012-01-09 16:38:53 +0100100 if (device_.get()) {
101 return;
102 }
David Rochbergfa1d31d2012-03-20 10:38:07 -0400103 if (!GetLinkName(modem_properties, &link_name_)) {
Darin Petkove0a312e2011-07-20 13:45:28 -0700104 LOG(ERROR) << "Unable to create cellular device without a link name.";
105 return;
106 }
Eric Shienbrood5e628a52012-03-21 16:56:59 -0400107 if (manager_->device_info()->IsDeviceBlackListed(link_name_)) {
108 LOG(INFO) << "Do not create cellular device for blacklisted interface "
109 << link_name_;
110 return;
111 }
Darin Petkov41c0e0a2012-01-09 16:38:53 +0100112 // TODO(petkov): Get the interface index from DeviceInfo, similar to the MAC
113 // address below.
Darin Petkove0a312e2011-07-20 13:45:28 -0700114 int interface_index =
David Rochbergfa1d31d2012-03-20 10:38:07 -0400115 rtnl_handler_->GetInterfaceIndex(link_name_);
Darin Petkove0a312e2011-07-20 13:45:28 -0700116 if (interface_index < 0) {
117 LOG(ERROR) << "Unable to create cellular device -- no interface index.";
118 return;
119 }
120
Chris Masone626719f2011-08-18 16:58:48 -0700121 ByteString address_bytes;
Paul Stewart32852962011-08-30 14:06:53 -0700122 if (!manager_->device_info()->GetMACAddress(interface_index,
123 &address_bytes)) {
David Rochbergfa1d31d2012-03-20 10:38:07 -0400124 // Save our properties, wait for OnDeviceInfoAvailable to be called.
Darin Petkov41c0e0a2012-01-09 16:38:53 +0100125 LOG(WARNING) << "No hardware address, device creation pending device info.";
David Rochbergfa1d31d2012-03-20 10:38:07 -0400126 initial_modem_properties_ = modem_properties;
Darin Petkov41c0e0a2012-01-09 16:38:53 +0100127 pending_device_info_ = true;
Chris Masone626719f2011-08-18 16:58:48 -0700128 return;
129 }
130
David Rochbergfa1d31d2012-03-20 10:38:07 -0400131 string address = address_bytes.HexEncode();
132 device_ = ConstructCellular(link_name_, address, interface_index);
Darin Petkovbac96002011-08-09 13:22:00 -0700133
Darin Petkov721ac932011-11-16 15:43:09 +0100134 // Give the device a chance to extract any capability-specific properties.
Jason Glasgow4c0724a2012-04-17 15:47:40 -0400135 device_->OnDBusPropertiesChanged(GetModemInterface(), modem_properties,
136 vector<string>());
Darin Petkovbac96002011-08-09 13:22:00 -0700137
138 manager_->device_info()->RegisterDevice(device_);
Darin Petkove0a312e2011-07-20 13:45:28 -0700139}
Eric Shienbrood11567d02012-04-10 18:08:49 -0400140
141void Modem::OnDBusPropertiesChanged(
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400142 const string &interface,
143 const DBusPropertiesMap &changed_properties,
144 const vector<string> &invalidated_properties) {
Jason Glasgow4c0724a2012-04-17 15:47:40 -0400145 if (device_.get()) {
146 device_->OnDBusPropertiesChanged(interface,
Jason Glasgow82f9ab32012-04-04 14:27:19 -0400147 changed_properties,
148 invalidated_properties);
149 }
Eric Shienbrood11567d02012-04-10 18:08:49 -0400150}
151
152void Modem::OnModemManagerPropertiesChanged(
Jason Glasgow4c0724a2012-04-17 15:47:40 -0400153 const string &interface,
Eric Shienbrood11567d02012-04-10 18:08:49 -0400154 const DBusPropertiesMap &properties) {
Jason Glasgow4c0724a2012-04-17 15:47:40 -0400155 vector<string> invalidated_properties;
156 OnDBusPropertiesChanged(interface, properties, invalidated_properties);
Eric Shienbrood11567d02012-04-10 18:08:49 -0400157}
158
Darin Petkov5c97ac52011-07-19 16:30:49 -0700159} // namespace shill