blob: 22fe6a61b38d307687f66cbc242fbcc7c9591b40 [file] [log] [blame]
Alex Deymoaea4c1c2015-08-19 20:24:43 -07001//
2// Copyright (C) 2012 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//
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070016
Alex Deymo72aa0022015-06-19 21:16:49 -070017#include <inttypes.h>
18#include <sysexits.h>
19#include <unistd.h>
20
Casey Dahline844c1a2015-12-16 14:30:58 -080021#include <memory>
Darin Petkov5a7f5652010-07-22 21:40:09 -070022#include <string>
Casey Dahlin97c87052016-01-06 14:33:55 -080023#include <vector>
Darin Petkov5a7f5652010-07-22 21:40:09 -070024
Alex Deymo72aa0022015-06-19 21:16:49 -070025#include <base/bind.h>
Alex Deymo8ce80d62015-01-27 15:10:43 -080026#include <base/command_line.h>
Alex Deymo44666f92014-07-22 20:29:24 -070027#include <base/logging.h>
Alex Deymo72aa0022015-06-19 21:16:49 -070028#include <base/macros.h>
Casey Dahlin19441412016-01-07 14:56:40 -080029#include <brillo/daemons/daemon.h>
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -070030#include <brillo/flag_helper.h>
Casey Dahlin87ab88e2015-12-16 17:58:05 -080031
Shuqian Zhao29971732016-02-05 11:29:32 -080032#include "update_engine/common/error_code.h"
33#include "update_engine/common/error_code_utils.h"
Casey Dahlin87ab88e2015-12-16 17:58:05 -080034#include "update_engine/client.h"
Casey Dahlin97c87052016-01-06 14:33:55 -080035#include "update_engine/status_update_handler.h"
36#include "update_engine/update_status.h"
Alex Deymo5f528112016-01-27 23:32:36 -080037#include "update_engine/update_status_utils.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070038
Alex Deymo690810b2016-01-19 16:11:40 -080039using chromeos_update_engine::UpdateStatusToString;
Shuqian Zhao29971732016-02-05 11:29:32 -080040using chromeos_update_engine::ErrorCode;
Darin Petkov5a7f5652010-07-22 21:40:09 -070041using std::string;
Casey Dahline844c1a2015-12-16 14:30:58 -080042using std::unique_ptr;
Casey Dahlin97c87052016-01-06 14:33:55 -080043using std::vector;
Casey Dahlin97c87052016-01-06 14:33:55 -080044using update_engine::UpdateStatus;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070045
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070046namespace {
47
Alex Deymo72aa0022015-06-19 21:16:49 -070048// Constant to signal that we need to continue running the daemon after
49// initialization.
50const int kContinueRunning = -1;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070051
Casey Dahlin19441412016-01-07 14:56:40 -080052class UpdateEngineClient : public brillo::Daemon {
Alex Deymo72aa0022015-06-19 21:16:49 -070053 public:
Casey Dahline844c1a2015-12-16 14:30:58 -080054 UpdateEngineClient(int argc, char** argv) : argc_(argc), argv_(argv) {
Casey Dahline844c1a2015-12-16 14:30:58 -080055 }
56
Alex Deymo72aa0022015-06-19 21:16:49 -070057 ~UpdateEngineClient() override = default;
58
59 protected:
60 int OnInit() override {
Casey Dahlin19441412016-01-07 14:56:40 -080061 int ret = Daemon::OnInit();
Casey Dahlin97c87052016-01-06 14:33:55 -080062 if (ret != EX_OK) return ret;
Casey Dahlin19441412016-01-07 14:56:40 -080063
64 client_ = update_engine::UpdateEngineClient::CreateInstance();
65
66 if (!client_) {
67 LOG(ERROR) << "UpdateEngineService not available.";
68 return 1;
69 }
70
Alex Deymo690810b2016-01-19 16:11:40 -080071 // We can't call QuitWithExitCode from OnInit(), so we delay the execution
72 // of the ProcessFlags method after the Daemon initialization is done.
73 base::MessageLoop::current()->PostTask(
74 FROM_HERE,
75 base::Bind(&UpdateEngineClient::ProcessFlagsAndExit,
76 base::Unretained(this)));
Alex Deymo72aa0022015-06-19 21:16:49 -070077 return EX_OK;
Andrew de los Reyes68ab6ed2011-08-09 14:46:39 -070078 }
Alex Deymo72aa0022015-06-19 21:16:49 -070079
80 private:
Alex Deymo72aa0022015-06-19 21:16:49 -070081 // Show the status of the update engine in stdout.
Casey Dahlin87ab88e2015-12-16 17:58:05 -080082 bool ShowStatus();
Alex Deymo72aa0022015-06-19 21:16:49 -070083
Casey Dahlin87ab88e2015-12-16 17:58:05 -080084 // Return whether we need to reboot. 0 if reboot is needed, 1 if an error
85 // occurred, 2 if no reboot is needed.
86 int GetNeedReboot();
Alex Deymo72aa0022015-06-19 21:16:49 -070087
Alex Deymo72aa0022015-06-19 21:16:49 -070088 // Main method that parses and triggers all the actions based on the passed
Alex Deymo690810b2016-01-19 16:11:40 -080089 // flags. Returns the exit code of the program of kContinueRunning if it
90 // should not exit.
Alex Deymo72aa0022015-06-19 21:16:49 -070091 int ProcessFlags();
92
Alex Deymo690810b2016-01-19 16:11:40 -080093 // Processes the flags and exits the program accordingly.
94 void ProcessFlagsAndExit();
95
Alex Deymo72aa0022015-06-19 21:16:49 -070096 // Copy of argc and argv passed to main().
97 int argc_;
98 char** argv_;
99
Casey Dahline844c1a2015-12-16 14:30:58 -0800100 // Library-based client
101 unique_ptr<update_engine::UpdateEngineClient> client_;
102
Casey Dahlin97c87052016-01-06 14:33:55 -0800103 // Pointers to handlers for cleanup
104 vector<unique_ptr<update_engine::StatusUpdateHandler>> handlers_;
105
Alex Deymo13e0dd62015-06-30 23:11:44 -0700106 // Tell whether the UpdateEngine service is available after startup.
107 bool service_is_available_{false};
108
Alex Deymo72aa0022015-06-19 21:16:49 -0700109 DISALLOW_COPY_AND_ASSIGN(UpdateEngineClient);
110};
111
Casey Dahlin97c87052016-01-06 14:33:55 -0800112class ExitingStatusUpdateHandler : public update_engine::StatusUpdateHandler {
113 public:
114 ~ExitingStatusUpdateHandler() override = default;
115
116 void IPCError(const string& error) override;
117};
118
119void ExitingStatusUpdateHandler::IPCError(const string& error) {
120 LOG(ERROR) << error;
121 exit(1);
122}
123
124class WatchingStatusUpdateHandler : public ExitingStatusUpdateHandler {
125 public:
126 ~WatchingStatusUpdateHandler() override = default;
127
Alex Deymo690810b2016-01-19 16:11:40 -0800128 void HandleStatusUpdate(int64_t last_checked_time,
129 double progress,
Casey Dahlin97c87052016-01-06 14:33:55 -0800130 UpdateStatus current_operation,
Alex Deymo690810b2016-01-19 16:11:40 -0800131 const string& new_version,
Casey Dahlin97c87052016-01-06 14:33:55 -0800132 int64_t new_size) override;
133};
134
135void WatchingStatusUpdateHandler::HandleStatusUpdate(
136 int64_t last_checked_time, double progress, UpdateStatus current_operation,
137 const string& new_version, int64_t new_size) {
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700138 LOG(INFO) << "Got status update:";
139 LOG(INFO) << " last_checked_time: " << last_checked_time;
140 LOG(INFO) << " progress: " << progress;
Casey Dahlin97c87052016-01-06 14:33:55 -0800141 LOG(INFO) << " current_operation: "
142 << UpdateStatusToString(current_operation);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700143 LOG(INFO) << " new_version: " << new_version;
144 LOG(INFO) << " new_size: " << new_size;
145}
146
Casey Dahlin87ab88e2015-12-16 17:58:05 -0800147bool UpdateEngineClient::ShowStatus() {
Alex Deymo72aa0022015-06-19 21:16:49 -0700148 int64_t last_checked_time = 0;
149 double progress = 0.0;
Casey Dahlin97c87052016-01-06 14:33:55 -0800150 UpdateStatus current_op;
Alex Deymo72aa0022015-06-19 21:16:49 -0700151 string new_version;
152 int64_t new_size = 0;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700153
Casey Dahlin97c87052016-01-06 14:33:55 -0800154 if (!client_->GetStatus(&last_checked_time, &progress, &current_op,
155 &new_version, &new_size)) {
Casey Dahlin87ab88e2015-12-16 17:58:05 -0800156 return false;
157 }
158
Casey Dahlin97c87052016-01-06 14:33:55 -0800159 printf("LAST_CHECKED_TIME=%" PRIi64
160 "\nPROGRESS=%f\nCURRENT_OP=%s\n"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700161 "NEW_VERSION=%s\nNEW_SIZE=%" PRIi64 "\n",
Casey Dahlin97c87052016-01-06 14:33:55 -0800162 last_checked_time, progress, UpdateStatusToString(current_op),
163 new_version.c_str(), new_size);
Casey Dahlin87ab88e2015-12-16 17:58:05 -0800164
165 return true;
Alex Deymo72aa0022015-06-19 21:16:49 -0700166}
167
Casey Dahlin87ab88e2015-12-16 17:58:05 -0800168int UpdateEngineClient::GetNeedReboot() {
Alex Deymo72aa0022015-06-19 21:16:49 -0700169 int64_t last_checked_time = 0;
170 double progress = 0.0;
Casey Dahlin97c87052016-01-06 14:33:55 -0800171 UpdateStatus current_op;
Alex Deymo72aa0022015-06-19 21:16:49 -0700172 string new_version;
173 int64_t new_size = 0;
174
Casey Dahlin97c87052016-01-06 14:33:55 -0800175 if (!client_->GetStatus(&last_checked_time, &progress, &current_op,
176 &new_version, &new_size)) {
Casey Dahlin87ab88e2015-12-16 17:58:05 -0800177 return 1;
178 }
179
Casey Dahlin97c87052016-01-06 14:33:55 -0800180 if (current_op == UpdateStatus::UPDATED_NEED_REBOOT) {
Casey Dahlin87ab88e2015-12-16 17:58:05 -0800181 return 0;
182 }
183
184 return 2;
Alex Deymo72aa0022015-06-19 21:16:49 -0700185}
186
Casey Dahlin97c87052016-01-06 14:33:55 -0800187class UpdateWaitHandler : public ExitingStatusUpdateHandler {
188 public:
Alex Deymo690810b2016-01-19 16:11:40 -0800189 explicit UpdateWaitHandler(bool exit_on_error)
190 : exit_on_error_(exit_on_error) {}
Casey Dahlin97c87052016-01-06 14:33:55 -0800191
192 ~UpdateWaitHandler() override = default;
193
Alex Deymo690810b2016-01-19 16:11:40 -0800194 void HandleStatusUpdate(int64_t last_checked_time,
195 double progress,
Casey Dahlin97c87052016-01-06 14:33:55 -0800196 UpdateStatus current_operation,
Alex Deymo690810b2016-01-19 16:11:40 -0800197 const string& new_version,
Casey Dahlin97c87052016-01-06 14:33:55 -0800198 int64_t new_size) override;
199
200 private:
201 bool exit_on_error_;
202};
203
204void UpdateWaitHandler::HandleStatusUpdate(int64_t /* last_checked_time */,
205 double /* progress */,
206 UpdateStatus current_operation,
207 const string& /* new_version */,
208 int64_t /* new_size */) {
209 if (exit_on_error_ && current_operation == UpdateStatus::IDLE) {
210 LOG(ERROR) << "Update failed, current operations is "
211 << UpdateStatusToString(current_operation);
Darin Petkov58529db2010-08-13 09:19:47 -0700212 exit(1);
213 }
Casey Dahlin97c87052016-01-06 14:33:55 -0800214 if (current_operation == UpdateStatus::UPDATED_NEED_REBOOT) {
Darin Petkov58529db2010-08-13 09:19:47 -0700215 LOG(INFO) << "Update succeeded -- reboot needed.";
216 exit(0);
217 }
Darin Petkov58529db2010-08-13 09:19:47 -0700218}
219
Alex Deymo72aa0022015-06-19 21:16:49 -0700220int UpdateEngineClient::ProcessFlags() {
Steve Fung97b6f5a2014-10-07 12:39:51 -0700221 DEFINE_string(app_version, "", "Force the current app version.");
222 DEFINE_string(channel, "",
223 "Set the target channel. The device will be powerwashed if the "
224 "target channel is more stable than the current channel unless "
225 "--nopowerwash is specified.");
226 DEFINE_bool(check_for_update, false, "Initiate check for updates.");
Casey Dahlin97c87052016-01-06 14:33:55 -0800227 DEFINE_bool(follow, false,
228 "Wait for any update operations to complete."
Steve Fung97b6f5a2014-10-07 12:39:51 -0700229 "Exit status is 0 if the update succeeded, and 1 otherwise.");
230 DEFINE_bool(interactive, true, "Mark the update request as interactive.");
231 DEFINE_string(omaha_url, "", "The URL of the Omaha update server.");
232 DEFINE_string(p2p_update, "",
233 "Enables (\"yes\") or disables (\"no\") the peer-to-peer update"
234 " sharing.");
Casey Dahlin97c87052016-01-06 14:33:55 -0800235 DEFINE_bool(powerwash, true,
236 "When performing rollback or channel change, "
Steve Fung97b6f5a2014-10-07 12:39:51 -0700237 "do a powerwash or allow it respectively.");
238 DEFINE_bool(reboot, false, "Initiate a reboot if needed.");
Casey Dahlin97c87052016-01-06 14:33:55 -0800239 DEFINE_bool(is_reboot_needed, false,
240 "Exit status 0 if reboot is needed, "
Steve Fung97b6f5a2014-10-07 12:39:51 -0700241 "2 if reboot is not needed or 1 if an error occurred.");
Casey Dahlin97c87052016-01-06 14:33:55 -0800242 DEFINE_bool(block_until_reboot_is_needed, false,
243 "Blocks until reboot is "
Steve Fung97b6f5a2014-10-07 12:39:51 -0700244 "needed. Returns non-zero exit status if an error occurred.");
245 DEFINE_bool(reset_status, false, "Sets the status in update_engine to idle.");
Alex Deymo1ac8b592015-01-26 13:22:58 -0800246 DEFINE_bool(rollback, false,
247 "Perform a rollback to the previous partition. The device will "
248 "be powerwashed unless --nopowerwash is specified.");
Casey Dahlin97c87052016-01-06 14:33:55 -0800249 DEFINE_bool(can_rollback, false,
250 "Shows whether rollback partition "
Steve Fung97b6f5a2014-10-07 12:39:51 -0700251 "is available.");
252 DEFINE_bool(show_channel, false, "Show the current and target channels.");
253 DEFINE_bool(show_p2p_update, false,
254 "Show the current setting for peer-to-peer update sharing.");
255 DEFINE_bool(show_update_over_cellular, false,
256 "Show the current setting for updates over cellular networks.");
257 DEFINE_bool(status, false, "Print the status to stdout.");
Casey Dahlin97c87052016-01-06 14:33:55 -0800258 DEFINE_bool(update, false,
259 "Forces an update and waits for it to complete. "
Steve Fung97b6f5a2014-10-07 12:39:51 -0700260 "Implies --follow.");
261 DEFINE_string(update_over_cellular, "",
262 "Enables (\"yes\") or disables (\"no\") the updates over "
263 "cellular networks.");
264 DEFINE_bool(watch_for_updates, false,
265 "Listen for status updates and print them to the screen.");
266 DEFINE_bool(prev_version, false,
267 "Show the previous OS version used before the update reboot.");
Shuqian Zhao29971732016-02-05 11:29:32 -0800268 DEFINE_bool(last_attempt_error, false, "Show the last attempt error.");
Steve Fung97b6f5a2014-10-07 12:39:51 -0700269
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700270 // Boilerplate init commands.
Alex Deymo72aa0022015-06-19 21:16:49 -0700271 base::CommandLine::Init(argc_, argv_);
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -0700272 brillo::FlagHelper::Init(argc_, argv_, "Chromium OS Update Engine Client");
Andrew de los Reyesada42202010-07-15 22:23:20 -0700273
Alex Deymo8ce80d62015-01-27 15:10:43 -0800274 // Ensure there are no positional arguments.
Alex Deymo690810b2016-01-19 16:11:40 -0800275 const vector<string> positional_args =
Alex Deymo8ce80d62015-01-27 15:10:43 -0800276 base::CommandLine::ForCurrentProcess()->GetArgs();
277 if (!positional_args.empty()) {
278 LOG(ERROR) << "Found a positional argument '" << positional_args.front()
279 << "'. If you want to pass a value to a flag, pass it as "
280 "--flag=value.";
281 return 1;
282 }
283
Jay Srinivasanc1ba09a2012-08-14 14:15:57 -0700284 // Update the status if requested.
285 if (FLAGS_reset_status) {
286 LOG(INFO) << "Setting Update Engine status to idle ...";
Casey Dahline844c1a2015-12-16 14:30:58 -0800287
288 if (client_->ResetStatus()) {
289 LOG(INFO) << "ResetStatus succeeded; to undo partition table changes "
290 "run:\n"
291 "(D=$(rootdev -d) P=$(rootdev -s); cgpt p -i$(($(echo "
292 "${P#$D} | sed 's/^[^0-9]*//')-1)) $D;)";
293 } else {
294 LOG(ERROR) << "ResetStatus failed";
295 return 1;
296 }
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700297 }
Darin Petkov58529db2010-08-13 09:19:47 -0700298
Alex Deymof4867c42013-06-28 14:41:39 -0700299 // Changes the current update over cellular network setting.
300 if (!FLAGS_update_over_cellular.empty()) {
Alex Deymo72aa0022015-06-19 21:16:49 -0700301 bool allowed = FLAGS_update_over_cellular == "yes";
Alex Deymof4867c42013-06-28 14:41:39 -0700302 if (!allowed && FLAGS_update_over_cellular != "no") {
303 LOG(ERROR) << "Unknown option: \"" << FLAGS_update_over_cellular
304 << "\". Please specify \"yes\" or \"no\".";
305 } else {
Casey Dahlin97c87052016-01-06 14:33:55 -0800306 if (!client_->SetUpdateOverCellularPermission(allowed)) {
Casey Dahlinef361132015-12-17 13:02:37 -0800307 LOG(ERROR) << "Error setting the update over cellular setting.";
308 return 1;
309 }
Alex Deymof4867c42013-06-28 14:41:39 -0700310 }
311 }
312
313 // Show the current update over cellular network setting.
314 if (FLAGS_show_update_over_cellular) {
Casey Dahlinef361132015-12-17 13:02:37 -0800315 bool allowed;
316
317 if (!client_->GetUpdateOverCellularPermission(&allowed)) {
318 LOG(ERROR) << "Error getting the update over cellular setting.";
319 return 1;
320 }
321
Alex Deymof4867c42013-06-28 14:41:39 -0700322 LOG(INFO) << "Current update over cellular network setting: "
323 << (allowed ? "ENABLED" : "DISABLED");
324 }
325
Chris Sosacb7fa882013-07-25 17:02:59 -0700326 if (!FLAGS_powerwash && !FLAGS_rollback && FLAGS_channel.empty()) {
Chris Sosa192449e2013-10-28 14:16:19 -0700327 LOG(ERROR) << "powerwash flag only makes sense rollback or channel change";
Chris Sosacb7fa882013-07-25 17:02:59 -0700328 return 1;
329 }
330
Alex Deymo5fdf7762013-07-17 20:01:40 -0700331 // Change the P2P enabled setting.
332 if (!FLAGS_p2p_update.empty()) {
Alex Deymo72aa0022015-06-19 21:16:49 -0700333 bool enabled = FLAGS_p2p_update == "yes";
Alex Deymo5fdf7762013-07-17 20:01:40 -0700334 if (!enabled && FLAGS_p2p_update != "no") {
335 LOG(ERROR) << "Unknown option: \"" << FLAGS_p2p_update
336 << "\". Please specify \"yes\" or \"no\".";
337 } else {
Casey Dahlinef361132015-12-17 13:02:37 -0800338 if (!client_->SetP2PUpdatePermission(enabled)) {
339 LOG(ERROR) << "Error setting the peer-to-peer update setting.";
340 return 1;
341 }
Alex Deymo5fdf7762013-07-17 20:01:40 -0700342 }
343 }
344
Alex Vakulenko59e253e2014-02-24 10:40:21 -0800345 // Show the rollback availability.
346 if (FLAGS_can_rollback) {
Casey Dahlinef361132015-12-17 13:02:37 -0800347 string rollback_partition;
348
349 if (!client_->GetRollbackPartition(&rollback_partition)) {
350 LOG(ERROR) << "Error while querying rollback partition availabilty.";
351 return 1;
352 }
353
Chris Sosaf5c0b9c2014-04-17 16:12:03 -0700354 bool can_rollback = true;
355 if (rollback_partition.empty()) {
Alex Vakulenko2bddadd2014-03-27 13:23:46 -0700356 rollback_partition = "UNAVAILABLE";
Chris Sosaf5c0b9c2014-04-17 16:12:03 -0700357 can_rollback = false;
Alex Vakulenkod2779df2014-06-16 13:19:00 -0700358 } else {
Alex Vakulenko2bddadd2014-03-27 13:23:46 -0700359 rollback_partition = "AVAILABLE: " + rollback_partition;
Alex Vakulenkod2779df2014-06-16 13:19:00 -0700360 }
Alex Vakulenko2bddadd2014-03-27 13:23:46 -0700361
362 LOG(INFO) << "Rollback partition: " << rollback_partition;
Chris Sosaf5c0b9c2014-04-17 16:12:03 -0700363 if (!can_rollback) {
364 return 1;
365 }
Alex Vakulenko59e253e2014-02-24 10:40:21 -0800366 }
367
Alex Deymo5fdf7762013-07-17 20:01:40 -0700368 // Show the current P2P enabled setting.
369 if (FLAGS_show_p2p_update) {
Casey Dahlinef361132015-12-17 13:02:37 -0800370 bool enabled;
371
372 if (!client_->GetP2PUpdatePermission(&enabled)) {
373 LOG(ERROR) << "Error getting the peer-to-peer update setting.";
374 return 1;
375 }
376
Alex Deymo5fdf7762013-07-17 20:01:40 -0700377 LOG(INFO) << "Current update using P2P setting: "
378 << (enabled ? "ENABLED" : "DISABLED");
379 }
380
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700381 // First, update the target channel if requested.
Casey Dahlin87ab88e2015-12-16 17:58:05 -0800382 if (!FLAGS_channel.empty()) {
383 if (!client_->SetTargetChannel(FLAGS_channel, FLAGS_powerwash)) {
384 LOG(ERROR) << "Error setting the channel.";
385 return 1;
386 }
387
388 LOG(INFO) << "Channel permanently set to: " << FLAGS_channel;
389 }
Darin Petkov8daa3242010-10-25 13:28:47 -0700390
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700391 // Show the current and target channels if requested.
392 if (FLAGS_show_channel) {
Casey Dahlin87ab88e2015-12-16 17:58:05 -0800393 string current_channel;
394 string target_channel;
395
396 if (!client_->GetChannel(&current_channel)) {
397 LOG(ERROR) << "Error getting the current channel.";
398 return 1;
399 }
400
401 if (!client_->GetTargetChannel(&target_channel)) {
402 LOG(ERROR) << "Error getting the target channel.";
403 return 1;
404 }
405
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700406 LOG(INFO) << "Current Channel: " << current_channel;
407
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700408 if (!target_channel.empty())
409 LOG(INFO) << "Target Channel (pending update): " << target_channel;
Satoru Takabayashi583667b2010-10-27 13:09:57 +0900410 }
411
Chris Sosad317e402013-06-12 13:47:09 -0700412 bool do_update_request = FLAGS_check_for_update | FLAGS_update |
Casey Dahlin97c87052016-01-06 14:33:55 -0800413 !FLAGS_app_version.empty() |
414 !FLAGS_omaha_url.empty();
415 if (FLAGS_update) FLAGS_follow = true;
Chris Sosad317e402013-06-12 13:47:09 -0700416
Chris Sosad317e402013-06-12 13:47:09 -0700417 if (do_update_request && FLAGS_rollback) {
Chris Sosa192449e2013-10-28 14:16:19 -0700418 LOG(ERROR) << "Incompatible flags specified with rollback."
419 << "Rollback should not include update-related flags.";
Chris Sosad317e402013-06-12 13:47:09 -0700420 return 1;
421 }
422
Alex Vakulenkod2779df2014-06-16 13:19:00 -0700423 if (FLAGS_rollback) {
Chris Sosad317e402013-06-12 13:47:09 -0700424 LOG(INFO) << "Requesting rollback.";
Casey Dahlinef361132015-12-17 13:02:37 -0800425 if (!client_->Rollback(FLAGS_powerwash)) {
426 LOG(ERROR) << "Rollback request failed.";
427 return 1;
428 }
Chris Sosad317e402013-06-12 13:47:09 -0700429 }
430
Darin Petkov58529db2010-08-13 09:19:47 -0700431 // Initiate an update check, if necessary.
Chris Sosad317e402013-06-12 13:47:09 -0700432 if (do_update_request) {
Darin Petkov296889c2010-07-23 16:20:54 -0700433 LOG_IF(WARNING, FLAGS_reboot) << "-reboot flag ignored.";
Darin Petkov58529db2010-08-13 09:19:47 -0700434 string app_version = FLAGS_app_version;
435 if (FLAGS_update && app_version.empty()) {
436 app_version = "ForcedUpdate";
437 LOG(INFO) << "Forcing an update by setting app_version to ForcedUpdate.";
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700438 }
Darin Petkov58529db2010-08-13 09:19:47 -0700439 LOG(INFO) << "Initiating update check and install.";
Casey Dahlin87ab88e2015-12-16 17:58:05 -0800440 if (!client_->AttemptUpdate(app_version, FLAGS_omaha_url,
441 FLAGS_interactive)) {
442 LOG(ERROR) << "Error checking for update.";
443 return 1;
444 }
Chris Sosa192449e2013-10-28 14:16:19 -0700445 }
Darin Petkov58529db2010-08-13 09:19:47 -0700446
Chris Sosa192449e2013-10-28 14:16:19 -0700447 // These final options are all mutually exclusive with one another.
Casey Dahlin97c87052016-01-06 14:33:55 -0800448 if (FLAGS_follow + FLAGS_watch_for_updates + FLAGS_reboot + FLAGS_status +
449 FLAGS_is_reboot_needed + FLAGS_block_until_reboot_is_needed >
450 1) {
Chris Sosa192449e2013-10-28 14:16:19 -0700451 LOG(ERROR) << "Multiple exclusive options selected. "
452 << "Select only one of --follow, --watch_for_updates, --reboot, "
David Zeuthen9d73a722014-04-04 14:52:46 -0700453 << "--is_reboot_needed, --block_until_reboot_is_needed, "
Chris Sosa192449e2013-10-28 14:16:19 -0700454 << "or --status.";
455 return 1;
456 }
457
458 if (FLAGS_status) {
459 LOG(INFO) << "Querying Update Engine status...";
Casey Dahlin87ab88e2015-12-16 17:58:05 -0800460 if (!ShowStatus()) {
461 LOG(ERROR) << "Failed to query status";
462 return 1;
463 }
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700464 return 0;
465 }
Darin Petkov58529db2010-08-13 09:19:47 -0700466
Chris Sosa192449e2013-10-28 14:16:19 -0700467 if (FLAGS_follow) {
468 LOG(INFO) << "Waiting for update to complete.";
Casey Dahlin97c87052016-01-06 14:33:55 -0800469 auto handler = new UpdateWaitHandler(true);
470 handlers_.emplace_back(handler);
471 client_->RegisterStatusUpdateHandler(handler);
Alex Deymo72aa0022015-06-19 21:16:49 -0700472 return kContinueRunning;
Chris Sosa192449e2013-10-28 14:16:19 -0700473 }
474
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700475 if (FLAGS_watch_for_updates) {
476 LOG(INFO) << "Watching for status updates.";
Casey Dahlin97c87052016-01-06 14:33:55 -0800477 auto handler = new WatchingStatusUpdateHandler();
478 handlers_.emplace_back(handler);
479 client_->RegisterStatusUpdateHandler(handler);
Alex Deymo72aa0022015-06-19 21:16:49 -0700480 return kContinueRunning;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700481 }
Darin Petkov58529db2010-08-13 09:19:47 -0700482
Darin Petkov296889c2010-07-23 16:20:54 -0700483 if (FLAGS_reboot) {
484 LOG(INFO) << "Requesting a reboot...";
Casey Dahlinef361132015-12-17 13:02:37 -0800485 client_->RebootIfNeeded();
Darin Petkov296889c2010-07-23 16:20:54 -0700486 return 0;
487 }
Andrew de los Reyesada42202010-07-15 22:23:20 -0700488
Alex Vakulenkodea2eac2014-03-14 15:56:59 -0700489 if (FLAGS_prev_version) {
Casey Dahlinef361132015-12-17 13:02:37 -0800490 string prev_version;
491
492 if (!client_->GetPrevVersion(&prev_version)) {
493 LOG(ERROR) << "Error getting previous version.";
494 } else {
495 LOG(INFO) << "Previous version = " << prev_version;
496 }
Alex Vakulenkodea2eac2014-03-14 15:56:59 -0700497 }
498
David Zeuthen9d73a722014-04-04 14:52:46 -0700499 if (FLAGS_is_reboot_needed) {
Casey Dahlin87ab88e2015-12-16 17:58:05 -0800500 int ret = GetNeedReboot();
501
502 if (ret == 1) {
503 LOG(ERROR) << "Could not query the current operation.";
Alex Deymo72aa0022015-06-19 21:16:49 -0700504 }
Casey Dahlin87ab88e2015-12-16 17:58:05 -0800505
506 return ret;
David Zeuthen9d73a722014-04-04 14:52:46 -0700507 }
508
509 if (FLAGS_block_until_reboot_is_needed) {
Casey Dahlin97c87052016-01-06 14:33:55 -0800510 auto handler = new UpdateWaitHandler(false);
511 handlers_.emplace_back(handler);
512 client_->RegisterStatusUpdateHandler(handler);
Alex Deymo72aa0022015-06-19 21:16:49 -0700513 return kContinueRunning;
David Zeuthen9d73a722014-04-04 14:52:46 -0700514 }
515
Shuqian Zhao29971732016-02-05 11:29:32 -0800516 if (FLAGS_last_attempt_error) {
517 int last_attempt_error;
518 if (!client_->GetLastAttemptError(&last_attempt_error)) {
519 LOG(ERROR) << "Error getting last attempt error.";
520 } else {
521 ErrorCode code = static_cast<ErrorCode>(last_attempt_error);
522 string error_msg = chromeos_update_engine::utils::ErrorCodeToString(code);
523 printf("ERROR_CODE=%i\n"
524 "ERROR_MESSAGE=%s\n",
525 last_attempt_error, error_msg.c_str());
526 }
527 }
528
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700529 return 0;
530}
Alex Deymo72aa0022015-06-19 21:16:49 -0700531
Alex Deymo690810b2016-01-19 16:11:40 -0800532void UpdateEngineClient::ProcessFlagsAndExit() {
533 int ret = ProcessFlags();
534 if (ret != kContinueRunning)
535 QuitWithExitCode(ret);
536}
537
Alex Deymo72aa0022015-06-19 21:16:49 -0700538} // namespace
539
540int main(int argc, char** argv) {
541 UpdateEngineClient client(argc, argv);
542 return client.Run();
543}