blob: 25795062694fff38dc310093cd66a764376e9d15 [file] [log] [blame]
Casey Dahlina93cd532016-01-14 16:55:11 -08001//
2// Copyright (C) 2015 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17#include "update_engine/client_library/client_dbus.h"
18
19#include <base/message_loop/message_loop.h>
20
21#include <dbus/bus.h>
22#include <update_engine/dbus-constants.h>
23
24#include "update_engine/update_status_utils.h"
25
26using chromeos_update_engine::StringToUpdateStatus;
27using dbus::Bus;
28using org::chromium::UpdateEngineInterfaceProxy;
29using std::string;
30
31namespace update_engine {
32namespace internal {
33
34bool DBusUpdateEngineClient::Init() {
35 Bus::Options options;
36 options.bus_type = Bus::SYSTEM;
37 scoped_refptr<Bus> bus{new Bus{options}};
38
39 if (!bus->Connect())
40 return false;
41
42 proxy_.reset(new UpdateEngineInterfaceProxy{bus});
43 return true;
44}
45
46bool DBusUpdateEngineClient::AttemptUpdate(const string& in_app_version,
47 const string& in_omaha_url,
48 bool at_user_request) {
49 return proxy_->AttemptUpdateWithFlags(
50 in_app_version,
51 in_omaha_url,
52 (at_user_request) ? 0 : kAttemptUpdateFlagNonInteractive,
53 nullptr);
54}
55
56bool DBusUpdateEngineClient::GetStatus(int64_t* out_last_checked_time,
57 double* out_progress,
58 UpdateStatus* out_update_status,
59 string* out_new_version,
60 int64_t* out_new_size) const {
61 string status_as_string;
62 const bool success = proxy_->GetStatus(out_last_checked_time,
63 out_progress,
64 &status_as_string,
65 out_new_version,
66 out_new_size,
67 nullptr);
68 if (!success) {
69 return false;
70 }
71
72 return StringToUpdateStatus(status_as_string, out_update_status);
73}
74
75bool DBusUpdateEngineClient::SetUpdateOverCellularPermission(bool allowed) {
76 return proxy_->SetUpdateOverCellularPermission(allowed, nullptr);
77}
78
79bool DBusUpdateEngineClient::GetUpdateOverCellularPermission(
80 bool* allowed) const {
81 return proxy_->GetUpdateOverCellularPermission(allowed, nullptr);
82}
83
84bool DBusUpdateEngineClient::SetP2PUpdatePermission(bool enabled) {
85 return proxy_->SetP2PUpdatePermission(enabled, nullptr);
86}
87
88bool DBusUpdateEngineClient::GetP2PUpdatePermission(bool* enabled) const {
89 return proxy_->GetP2PUpdatePermission(enabled, nullptr);
90}
91
92bool DBusUpdateEngineClient::Rollback(bool powerwash) {
93 return proxy_->AttemptRollback(powerwash, nullptr);
94}
95
96bool DBusUpdateEngineClient::GetRollbackPartition(
97 string* rollback_partition) const {
98 return proxy_->GetRollbackPartition(rollback_partition, nullptr);
99}
100
101bool DBusUpdateEngineClient::GetPrevVersion(string* prev_version) const {
102 return proxy_->GetPrevVersion(prev_version, nullptr);
103}
104
105void DBusUpdateEngineClient::RebootIfNeeded() {
106 bool ret = proxy_->RebootIfNeeded(nullptr);
107 if (!ret) {
108 // Reboot error code doesn't necessarily mean that a reboot
109 // failed. For example, D-Bus may be shutdown before we receive the
110 // result.
111 LOG(INFO) << "RebootIfNeeded() failure ignored.";
112 }
113}
114
115bool DBusUpdateEngineClient::ResetStatus() {
116 return proxy_->ResetStatus(nullptr);
117}
118
Casey Dahlina715f7b2016-01-29 16:38:51 -0800119void DBusUpdateEngineClient::DBusStatusHandlerRegistered(
Casey Dahlina93cd532016-01-14 16:55:11 -0800120 const string& interface,
121 const string& signal_name,
122 bool success) const {
123 if (!success) {
Casey Dahlina715f7b2016-01-29 16:38:51 -0800124 for (auto handler : handlers_) {
125 handler->IPCError("Could not connect to" + signal_name +
126 " on " + interface);
127 }
128 } else {
129 StatusUpdateHandlersRegistered(nullptr);
Casey Dahlina93cd532016-01-14 16:55:11 -0800130 }
Casey Dahlina715f7b2016-01-29 16:38:51 -0800131}
Casey Dahlina93cd532016-01-14 16:55:11 -0800132
Casey Dahlina715f7b2016-01-29 16:38:51 -0800133void DBusUpdateEngineClient::StatusUpdateHandlersRegistered(
134 StatusUpdateHandler* handler) const {
Casey Dahlina93cd532016-01-14 16:55:11 -0800135 int64_t last_checked_time;
136 double progress;
137 UpdateStatus update_status;
138 string new_version;
139 int64_t new_size;
140
Casey Dahlina715f7b2016-01-29 16:38:51 -0800141 if (!GetStatus(&last_checked_time,
142 &progress,
143 &update_status,
144 &new_version,
145 &new_size)) {
146 handler->IPCError("Could not query current status");
Casey Dahlina93cd532016-01-14 16:55:11 -0800147 return;
148 }
149
Casey Dahlina715f7b2016-01-29 16:38:51 -0800150 for (auto h : handler ? {handler} : handlers_) {
151 h->HandleStatusUpdate(
152 last_checked_time, progress, update_status, new_version, new_size);
153 }
Casey Dahlina93cd532016-01-14 16:55:11 -0800154}
155
Casey Dahlina715f7b2016-01-29 16:38:51 -0800156void DBusUpdateEngineClient::RunStatusUpdateHandlers(
Casey Dahlina93cd532016-01-14 16:55:11 -0800157 int64_t last_checked_time,
158 double progress,
159 const string& current_operation,
160 const string& new_version,
161 int64_t new_size) {
162 UpdateStatus status;
163 StringToUpdateStatus(current_operation, &status);
164
Casey Dahlina715f7b2016-01-29 16:38:51 -0800165 for (auto handler : handlers_) {
166 handler->HandleStatusUpdate(
167 last_checked_time, progress, status, new_version, new_size);
168 }
169}
170
171bool DBusUpdateEngineClient::UnregisterStatusUpdateHandler(
172 StatusUpdateHandler* handler) {
173 auto it = handlers_.begin();
174
175 for (; *it != handler && it != handlers_.end(); it++);
176
177 if (it != handlers_.end()) {
178 handlers_.erase(it);
179 return true;
180 }
181
182 return false;
Casey Dahlina93cd532016-01-14 16:55:11 -0800183}
184
Casey Dahlin40892492016-01-25 16:55:28 -0800185bool DBusUpdateEngineClient::RegisterStatusUpdateHandler(
Casey Dahlina93cd532016-01-14 16:55:11 -0800186 StatusUpdateHandler* handler) {
187 if (!base::MessageLoopForIO::current()) {
188 LOG(FATAL) << "Cannot get UpdateEngineClient outside of message loop.";
Casey Dahlin40892492016-01-25 16:55:28 -0800189 return false;
Casey Dahlina93cd532016-01-14 16:55:11 -0800190 }
191
Casey Dahlina715f7b2016-01-29 16:38:51 -0800192 handlers_.push_back(handler);
193
194 if (dbus_handler_registered_) {
195 StatusUpdateHandlersRegistered(handler);
196 return true;
197 }
198
Casey Dahlina93cd532016-01-14 16:55:11 -0800199 proxy_->RegisterStatusUpdateSignalHandler(
Casey Dahlina715f7b2016-01-29 16:38:51 -0800200 base::Bind(&DBusUpdateEngineClient::RunStatusUpdateHandlers,
201 base::Unretained(this)),
202 base::Bind(&DBusUpdateEngineClient::StatusUpdateHandlersRegistered,
203 base::Unretained(this), base::Unretained(nullptr)));
204
205 dbus_handler_registered_ = true;
Casey Dahlin40892492016-01-25 16:55:28 -0800206
207 return true;
Casey Dahlina93cd532016-01-14 16:55:11 -0800208}
209
210bool DBusUpdateEngineClient::SetTargetChannel(const string& in_target_channel,
211 bool allow_powerwash) {
212 return proxy_->SetChannel(in_target_channel, allow_powerwash, nullptr);
213}
214
215bool DBusUpdateEngineClient::GetTargetChannel(string* out_channel) const {
216 return proxy_->GetChannel(false, // Get the target channel.
217 out_channel,
218 nullptr);
219}
220
221bool DBusUpdateEngineClient::GetChannel(string* out_channel) const {
222 return proxy_->GetChannel(true, // Get the current channel.
223 out_channel,
224 nullptr);
225}
226
227} // namespace internal
228} // namespace update_engine