-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdaemon.cc
227 lines (183 loc) · 7.04 KB
/
daemon.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
// Copyright 2017 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "modemfwd/daemon.h"
#include <sysexits.h>
#include <memory>
#include <string>
#include <utility>
#include <base/bind.h>
#include <base/files/file_util.h>
#include <base/time/time.h>
#include <base/threading/thread_task_runner_handle.h>
#include <chromeos/dbus/service_constants.h>
#include "modemfwd/firmware_directory.h"
#include "modemfwd/logging.h"
#include "modemfwd/modem.h"
#include "modemfwd/modem_flasher.h"
#include "modemfwd/modem_helper_directory.h"
#include "modemfwd/modem_tracker.h"
namespace {
constexpr base::TimeDelta kWedgeCheckDelay = base::TimeDelta::FromMinutes(5);
constexpr base::TimeDelta kRebootCheckDelay = base::TimeDelta::FromMinutes(1);
std::string ToOnOffString(bool b) {
return b ? "on" : "off";
}
} // namespace
namespace modemfwd {
DBusAdaptor::DBusAdaptor(scoped_refptr<dbus::Bus> bus, Daemon* daemon)
: org::chromium::ModemfwdAdaptor(this),
dbus_object_(nullptr, bus, dbus::ObjectPath(kModemfwdServicePath)),
daemon_(daemon) {
DCHECK(daemon);
}
void DBusAdaptor::RegisterAsync(
const brillo::dbus_utils::AsyncEventSequencer::CompletionAction& cb) {
RegisterWithDBusObject(&dbus_object_);
dbus_object_.RegisterAsync(cb);
}
void DBusAdaptor::SetDebugMode(bool debug_mode) {
g_extra_logging = debug_mode;
LOG(INFO) << "Debug mode is now " << ToOnOffString(ELOG_IS_ON());
}
bool DBusAdaptor::ForceFlash(const std::string& device_id) {
return daemon_->ForceFlash(device_id);
}
Daemon::Daemon(const std::string& journal_file,
const std::string& helper_directory)
: Daemon(journal_file, helper_directory, "") {}
Daemon::Daemon(const std::string& journal_file,
const std::string& helper_directory,
const std::string& firmware_directory)
: DBusServiceDaemon(kModemfwdServiceName),
journal_file_path_(journal_file),
helper_dir_path_(helper_directory),
firmware_dir_path_(firmware_directory),
weak_ptr_factory_(this) {}
int Daemon::OnInit() {
int exit_code = brillo::DBusServiceDaemon::OnInit();
if (exit_code != EX_OK)
return exit_code;
DCHECK(!helper_dir_path_.empty());
if (!base::DirectoryExists(helper_dir_path_)) {
LOG(ERROR) << "Supplied modem-specific helper directory "
<< helper_dir_path_.value() << " does not exist";
return EX_UNAVAILABLE;
}
helper_directory_ = CreateModemHelperDirectory(helper_dir_path_);
if (!helper_directory_) {
LOG(ERROR) << "No suitable helpers found in " << helper_dir_path_.value();
return EX_UNAVAILABLE;
}
// If no firmware directory was supplied, we can't run yet. This will
// change when we get DLC functionality.
if (firmware_dir_path_.empty())
return EX_UNAVAILABLE;
if (!base::DirectoryExists(firmware_dir_path_)) {
LOG(ERROR) << "Supplied firmware directory " << firmware_dir_path_.value()
<< " does not exist";
return EX_UNAVAILABLE;
}
return CompleteInitialization();
}
int Daemon::CompleteInitialization() {
CHECK(!firmware_dir_path_.empty());
auto firmware_directory = CreateFirmwareDirectory(firmware_dir_path_);
if (!firmware_directory) {
LOG(ERROR) << "Could not load firmware directory (bad manifest?)";
return EX_UNAVAILABLE;
}
auto journal = OpenJournal(journal_file_path_, firmware_directory.get(),
helper_directory_.get());
if (!journal) {
LOG(ERROR) << "Could not open journal file";
return EX_UNAVAILABLE;
}
modem_flasher_ = std::make_unique<modemfwd::ModemFlasher>(
std::move(firmware_directory), std::move(journal));
modem_tracker_ = std::make_unique<modemfwd::ModemTracker>(
bus_,
base::Bind(&Daemon::OnModemAppeared, weak_ptr_factory_.GetWeakPtr()));
base::ThreadTaskRunnerHandle::Get()->PostDelayedTask(
FROM_HERE,
base::Bind(&Daemon::CheckForWedgedModems, weak_ptr_factory_.GetWeakPtr()),
kWedgeCheckDelay);
return EX_OK;
}
int Daemon::OnEventLoopStarted() {
// Stub until DLC service is implemented.
return EX_OK;
}
void Daemon::OnModemAppeared(
std::unique_ptr<org::chromium::flimflam::DeviceProxy> device) {
auto modem = CreateModem(bus_, std::move(device), helper_directory_.get());
if (!modem)
return;
std::string equipment_id = modem->GetEquipmentId();
std::string device_id = modem->GetDeviceId();
ELOG(INFO) << "Modem appeared with equipment ID \"" << equipment_id << "\""
<< " and device ID [" << device_id << "]";
// Record that we've seen this modem so we don't auto-force-flash it.
device_ids_seen_.insert(device_id);
if (modem_reappear_callbacks_.count(equipment_id) > 0) {
modem_reappear_callbacks_[equipment_id].Run();
modem_reappear_callbacks_.erase(equipment_id);
}
base::Closure cb = modem_flasher_->TryFlash(modem.get());
if (!cb.is_null())
modem_reappear_callbacks_[equipment_id] = cb;
}
void Daemon::RegisterDBusObjectsAsync(
brillo::dbus_utils::AsyncEventSequencer* sequencer) {
dbus_adaptor_.reset(new DBusAdaptor(bus_, this));
dbus_adaptor_->RegisterAsync(
sequencer->GetHandler("RegisterAsync() failed", true));
}
bool Daemon::ForceFlash(const std::string& device_id) {
auto stub_modem = CreateStubModem(device_id, helper_directory_.get());
if (!stub_modem)
return false;
ELOG(INFO) << "Force-flashing modem with device ID [" << device_id << "]";
base::Closure cb = modem_flasher_->TryFlash(stub_modem.get());
// We don't know the equipment ID of this modem, and if we're force-flashing
// then we probably already have a problem with the modem coming up, so
// cleaning up at this point is not a problem. Run the callback now if we
// got one.
if (!cb.is_null())
cb.Run();
return !cb.is_null();
}
void Daemon::CheckForWedgedModems() {
EVLOG(1) << "Running wedged modems check...";
helper_directory_->ForEachHelper(
base::Bind(&Daemon::ForceFlashIfWedged, base::Unretained(this)));
}
void Daemon::ForceFlashIfWedged(const std::string& device_id,
ModemHelper* helper) {
if (device_ids_seen_.count(device_id) > 0)
return;
if (!helper->FlashModeCheck()) {
if (helper->Reboot()) {
base::ThreadTaskRunnerHandle::Get()->PostDelayedTask(
FROM_HERE,
base::Bind(&Daemon::ForceFlashIfNeverAppeared,
weak_ptr_factory_.GetWeakPtr(), device_id),
kRebootCheckDelay);
} else {
EVLOG(1) << "Couldn't reboot modem with device ID [" << device_id
<< "], it may not be present";
}
return;
}
LOG(INFO) << "Modem with device ID [" << device_id
<< "] appears to be wedged, attempting recovery";
ForceFlash(device_id);
}
void Daemon::ForceFlashIfNeverAppeared(const std::string& device_id) {
if (device_ids_seen_.count(device_id) > 0)
return;
LOG(INFO) << "Modem with device ID [" << device_id
<< "] did not appear after reboot, attempting recovery";
ForceFlash(device_id);
}
} // namespace modemfwd