blob: a5569b96234b9b9d79e83159ea3b4f884f4b67e7 [file] [log] [blame]
Darin Petkov5c97ac52011-07-19 16:30:49 -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
5#include "shill/modem.h"
6
Darin Petkove0a312e2011-07-20 13:45:28 -07007#include <base/logging.h>
8#include <mm/mm-modem.h>
9
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"
14
15using std::string;
Darin Petkovc5f56562011-08-06 16:40:05 -070016using std::vector;
Darin Petkov5c97ac52011-07-19 16:30:49 -070017
18namespace shill {
19
Darin Petkove0a312e2011-07-20 13:45:28 -070020// TODO(petkov): Consider generating these in mm/mm-modem.h.
Darin Petkov48a511a2011-09-15 10:33:37 -070021const char Modem::kPropertyAccessTechnology[] = "AccessTechnology";
Darin Petkove0a312e2011-07-20 13:45:28 -070022const char Modem::kPropertyLinkName[] = "Device";
23const char Modem::kPropertyIPMethod[] = "IpMethod";
Darin Petkovbac96002011-08-09 13:22:00 -070024const char Modem::kPropertyState[] = "State";
Darin Petkove0a312e2011-07-20 13:45:28 -070025const char Modem::kPropertyType[] = "Type";
26const char Modem::kPropertyUnlockRequired[] = "UnlockRequired";
27const char Modem::kPropertyUnlockRetries[] = "UnlockRetries";
28
Darin Petkov5c97ac52011-07-19 16:30:49 -070029Modem::Modem(const std::string &owner,
30 const std::string &path,
31 ControlInterface *control_interface,
32 EventDispatcher *dispatcher,
Darin Petkov137884a2011-10-26 18:52:47 +020033 Manager *manager,
34 mobile_provider_db *provider_db)
Darin Petkovab565bb2011-10-06 02:55:51 -070035 : proxy_factory_(ProxyFactory::GetInstance()),
36 owner_(owner),
Darin Petkove0a312e2011-07-20 13:45:28 -070037 path_(path),
Darin Petkov67d8ecf2011-07-26 16:03:30 -070038 task_factory_(this),
Darin Petkov5c97ac52011-07-19 16:30:49 -070039 control_interface_(control_interface),
40 dispatcher_(dispatcher),
Darin Petkov137884a2011-10-26 18:52:47 +020041 manager_(manager),
42 provider_db_(provider_db) {
Darin Petkove0a312e2011-07-20 13:45:28 -070043 LOG(INFO) << "Modem created: " << owner << " at " << path;
44}
Darin Petkov5c97ac52011-07-19 16:30:49 -070045
46Modem::~Modem() {}
47
Darin Petkove0a312e2011-07-20 13:45:28 -070048void Modem::Init() {
Darin Petkov67d8ecf2011-07-26 16:03:30 -070049 VLOG(2) << __func__;
Darin Petkove0a312e2011-07-20 13:45:28 -070050 CHECK(!device_.get());
Darin Petkova7b89492011-07-27 12:48:17 -070051
52 // Defer device creation because dbus-c++ doesn't allow registration of new
53 // D-Bus objects in the context of a D-Bus signal handler.
54 dispatcher_->PostTask(task_factory_.NewRunnableMethod(&Modem::InitTask));
55}
56
57void Modem::InitTask() {
58 VLOG(2) << __func__;
59 CHECK(!device_.get());
60
Darin Petkove0a312e2011-07-20 13:45:28 -070061 dbus_properties_proxy_.reset(
Darin Petkovab565bb2011-10-06 02:55:51 -070062 proxy_factory_->CreateDBusPropertiesProxy(this, path_, owner_));
Darin Petkov67d8ecf2011-07-26 16:03:30 -070063
Darin Petkove0a312e2011-07-20 13:45:28 -070064 // TODO(petkov): Switch to asynchronous calls (crosbug.com/17583).
65 DBusPropertiesMap properties =
66 dbus_properties_proxy_->GetAll(MM_MODEM_INTERFACE);
Darin Petkova7b89492011-07-27 12:48:17 -070067 CreateCellularDevice(properties);
Darin Petkove0a312e2011-07-20 13:45:28 -070068}
69
70void Modem::CreateCellularDevice(const DBusPropertiesMap &properties) {
Darin Petkov67d8ecf2011-07-26 16:03:30 -070071 VLOG(2) << __func__;
Darin Petkove0a312e2011-07-20 13:45:28 -070072 uint32 ip_method = kuint32max;
73 if (!DBusProperties::GetUint32(properties, kPropertyIPMethod, &ip_method) ||
74 ip_method != MM_MODEM_IP_METHOD_DHCP) {
75 LOG(ERROR) << "Unsupported IP method: " << ip_method;
76 return;
77 }
78
79 string link_name;
80 if (!DBusProperties::GetString(properties, kPropertyLinkName, &link_name)) {
81 LOG(ERROR) << "Unable to create cellular device without a link name.";
82 return;
83 }
84 int interface_index =
85 RTNLHandler::GetInstance()->GetInterfaceIndex(link_name);
86 if (interface_index < 0) {
87 LOG(ERROR) << "Unable to create cellular device -- no interface index.";
88 return;
89 }
90
Chris Masone626719f2011-08-18 16:58:48 -070091 ByteString address_bytes;
Paul Stewart32852962011-08-30 14:06:53 -070092 if (!manager_->device_info()->GetMACAddress(interface_index,
93 &address_bytes)) {
Chris Masone626719f2011-08-18 16:58:48 -070094 // TODO(petkov): ensure that DeviceInfo has heard about this device before
95 // we go ahead and try to add it.
96 LOG(ERROR) << "Unable to create cellular device without a hardware addr.";
97 return;
98 }
99
Darin Petkove9d12e02011-07-27 15:09:37 -0700100 uint32 mm_type = kuint32max;
101 Cellular::Type type;
102 DBusProperties::GetUint32(properties, kPropertyType, &mm_type);
103 switch (mm_type) {
104 case MM_MODEM_TYPE_CDMA:
105 type = Cellular::kTypeCDMA;
106 break;
107 case MM_MODEM_TYPE_GSM:
108 type = Cellular::kTypeGSM;
109 break;
110 default:
111 LOG(ERROR) << "Unsupported cellular modem type: " << mm_type;
112 return;
113 }
Darin Petkove0a312e2011-07-20 13:45:28 -0700114
115 LOG(INFO) << "Creating a cellular device on link " << link_name
116 << " interface index " << interface_index << ".";
117 device_ = new Cellular(control_interface_,
118 dispatcher_,
119 manager_,
120 link_name,
Chris Masone626719f2011-08-18 16:58:48 -0700121 address_bytes.HexEncode(),
Darin Petkove9d12e02011-07-27 15:09:37 -0700122 interface_index,
123 type,
124 owner_,
Darin Petkov137884a2011-10-26 18:52:47 +0200125 path_,
126 provider_db_);
Darin Petkovbac96002011-08-09 13:22:00 -0700127
128 uint32 modem_state = Cellular::kModemStateUnknown;
129 DBusProperties::GetUint32(properties, kPropertyState, &modem_state);
130 device_->set_modem_state(static_cast<Cellular::ModemState>(modem_state));
Darin Petkove0a312e2011-07-20 13:45:28 -0700131
132 string unlock_required;
133 if (DBusProperties::GetString(
134 properties, kPropertyUnlockRequired, &unlock_required)) {
135 uint32 unlock_retries = 0;
136 DBusProperties::GetUint32(properties,
137 kPropertyUnlockRetries,
138 &unlock_retries);
Darin Petkov48a511a2011-09-15 10:33:37 -0700139 device_->set_sim_lock_status(
140 Cellular::SimLockStatus(unlock_required, unlock_retries));
Darin Petkove0a312e2011-07-20 13:45:28 -0700141 }
Darin Petkovbac96002011-08-09 13:22:00 -0700142
143 manager_->device_info()->RegisterDevice(device_);
Darin Petkove0a312e2011-07-20 13:45:28 -0700144}
145
Darin Petkovc5f56562011-08-06 16:40:05 -0700146void Modem::OnDBusPropertiesChanged(
mukesh agrawal1830fa12011-09-26 14:31:40 -0700147 const string &/*interface*/,
148 const DBusPropertiesMap &/*changed_properties*/,
149 const vector<string> &/*invalidated_properties*/) {
Darin Petkovc5f56562011-08-06 16:40:05 -0700150 // Ignored.
151}
152
153void Modem::OnModemManagerPropertiesChanged(
mukesh agrawal1830fa12011-09-26 14:31:40 -0700154 const string &/*interface*/,
Darin Petkovc5f56562011-08-06 16:40:05 -0700155 const DBusPropertiesMap &properties) {
Darin Petkov48a511a2011-09-15 10:33:37 -0700156 if (!device_.get()) {
157 return;
158 }
159 Cellular::SimLockStatus lock_status = device_->sim_lock_status();
160 if (DBusProperties::GetString(
161 properties, kPropertyUnlockRequired, &lock_status.lock_type) ||
162 DBusProperties::GetUint32(properties,
163 kPropertyUnlockRetries,
164 &lock_status.retries_left)) {
165 device_->set_sim_lock_status(lock_status);
166 }
167 uint32 access_technology = MM_MODEM_GSM_ACCESS_TECH_UNKNOWN;
168 if (DBusProperties::GetUint32(properties,
169 kPropertyAccessTechnology,
170 &access_technology)) {
171 device_->SetGSMAccessTechnology(access_technology);
172 }
Darin Petkovc5f56562011-08-06 16:40:05 -0700173}
174
Darin Petkov5c97ac52011-07-19 16:30:49 -0700175} // namespace shill