blob: b619cce14099386bde7f4ea7999051cc2a465265 [file] [log] [blame]
Darin Petkov58dd1342011-05-06 12:05:13 -07001// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
adlr@google.com3defe6a2009-12-04 20:57:17 +00002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "update_engine/postinstall_runner_action.h"
Jay Srinivasan1c0fe792013-03-28 16:45:25 -07006
adlr@google.com3defe6a2009-12-04 20:57:17 +00007#include <stdlib.h>
Alex Vakulenko44cab302014-07-23 13:12:15 -07008#include <sys/mount.h>
Andrew de los Reyesf9714432010-05-04 10:21:23 -07009#include <vector>
Jay Srinivasan1c0fe792013-03-28 16:45:25 -070010
Chris Sosabe45bef2013-04-09 18:25:12 -070011#include "update_engine/action_processor.h"
Andrew de los Reyesf9714432010-05-04 10:21:23 -070012#include "update_engine/subprocess.h"
adlr@google.com3defe6a2009-12-04 20:57:17 +000013#include "update_engine/utils.h"
14
15namespace chromeos_update_engine {
16
17using std::string;
Andrew de los Reyesf9714432010-05-04 10:21:23 -070018using std::vector;
adlr@google.com3defe6a2009-12-04 20:57:17 +000019
20namespace {
Alex Deymo032e7722014-03-25 17:53:56 -070021// The absolute path to the post install command.
Darin Petkov6f03a3b2010-11-10 14:27:14 -080022const char kPostinstallScript[] = "/postinst";
Alex Deymo032e7722014-03-25 17:53:56 -070023
24// Path to the binary file used by kPostinstallScript. Used to get and log the
25// file format of the binary to debug issues when the ELF format on the update
26// doesn't match the one on the current system. This path is not executed.
27const char kDebugPostinstallBinaryPath[] = "/usr/bin/cros_installer";
adlr@google.com3defe6a2009-12-04 20:57:17 +000028}
29
30void PostinstallRunnerAction::PerformAction() {
31 CHECK(HasInputObject());
Chris Sosad317e402013-06-12 13:47:09 -070032 install_plan_ = GetInputObject();
33 const string install_device = install_plan_.install_path;
Andrew de los Reyesf9714432010-05-04 10:21:23 -070034 ScopedActionCompleter completer(processor_, this);
Darin Petkovc1a8b422010-07-19 11:34:49 -070035
Darin Petkov6f03a3b2010-11-10 14:27:14 -080036 // Make mountpoint.
Andrew de los Reyesf9714432010-05-04 10:21:23 -070037 TEST_AND_RETURN(utils::MakeTempDirectory("/tmp/au_postint_mount.XXXXXX",
Darin Petkov6f03a3b2010-11-10 14:27:14 -080038 &temp_rootfs_dir_));
39 ScopedDirRemover temp_dir_remover(temp_rootfs_dir_);
Andrew de los Reyesf9714432010-05-04 10:21:23 -070040
Alex Deymo4c82df32014-11-10 22:25:57 -080041 if (!utils::MountFilesystem(install_device, temp_rootfs_dir_, MS_RDONLY))
Darin Petkov6f03a3b2010-11-10 14:27:14 -080042 return;
adlr@google.com3defe6a2009-12-04 20:57:17 +000043
Darin Petkov6f03a3b2010-11-10 14:27:14 -080044 temp_dir_remover.set_should_remove(false);
45 completer.set_should_complete(false);
46
Chris Sosad317e402013-06-12 13:47:09 -070047 if (install_plan_.powerwash_required) {
Gilad Arnold30dedd82013-07-03 06:19:09 -070048 if (utils::CreatePowerwashMarkerFile(powerwash_marker_file_)) {
Jay Srinivasan1c0fe792013-03-28 16:45:25 -070049 powerwash_marker_created_ = true;
50 } else {
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -070051 completer.set_code(ErrorCode::kPostinstallPowerwashError);
Jay Srinivasan1c0fe792013-03-28 16:45:25 -070052 return;
53 }
54 }
55
Alex Deymo032e7722014-03-25 17:53:56 -070056 // Logs the file format of the postinstall script we are about to run. This
57 // will help debug when the postinstall script doesn't match the architecture
58 // of our build.
59 LOG(INFO) << "Format file for new " << kPostinstallScript << " is: "
60 << utils::GetFileFormat(temp_rootfs_dir_ + kPostinstallScript);
61 LOG(INFO) << "Format file for new " << kDebugPostinstallBinaryPath << " is: "
62 << utils::GetFileFormat(
63 temp_rootfs_dir_ + kDebugPostinstallBinaryPath);
64
Darin Petkov6f03a3b2010-11-10 14:27:14 -080065 // Runs the postinstall script asynchronously to free up the main loop while
66 // it's running.
67 vector<string> command;
Chris Sosa000ecb32014-04-23 12:21:18 -070068 if (!install_plan_.download_url.empty()) {
69 command.push_back(temp_rootfs_dir_ + kPostinstallScript);
70 } else {
71 // TODO(sosa): crbug.com/366207.
72 // If we're doing a rollback, just run our own postinstall.
73 command.push_back(kPostinstallScript);
74 }
Darin Petkov6f03a3b2010-11-10 14:27:14 -080075 command.push_back(install_device);
Darin Petkov58dd1342011-05-06 12:05:13 -070076 if (!Subprocess::Get().Exec(command, StaticCompletePostinstall, this)) {
77 CompletePostinstall(1);
78 }
Darin Petkov6f03a3b2010-11-10 14:27:14 -080079}
80
81void PostinstallRunnerAction::CompletePostinstall(int return_code) {
82 ScopedActionCompleter completer(processor_, this);
83 ScopedTempUnmounter temp_unmounter(temp_rootfs_dir_);
84 if (return_code != 0) {
85 LOG(ERROR) << "Postinst command failed with code: " << return_code;
Jay Srinivasan1c0fe792013-03-28 16:45:25 -070086
87 // Undo any changes done to trigger Powerwash using clobber-state.
88 if (powerwash_marker_created_)
Gilad Arnold30dedd82013-07-03 06:19:09 -070089 utils::DeletePowerwashMarkerFile(powerwash_marker_file_);
Jay Srinivasan1c0fe792013-03-28 16:45:25 -070090
Andrew de los Reyesfe57d542011-06-07 09:00:36 -070091 if (return_code == 3) {
Andrew de los Reyesc1d5c932011-04-20 17:15:47 -070092 // This special return code means that we tried to update firmware,
93 // but couldn't because we booted from FW B, and we need to reboot
94 // to get back to FW A.
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -070095 completer.set_code(ErrorCode::kPostinstallBootedFromFirmwareB);
Andrew de los Reyesc1d5c932011-04-20 17:15:47 -070096 }
Don Garrett81018e02013-07-30 18:46:31 -070097
98 if (return_code == 4) {
99 // This special return code means that we tried to update firmware,
100 // but couldn't because we booted from FW B, and we need to reboot
101 // to get back to FW A.
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700102 completer.set_code(ErrorCode::kPostinstallFirmwareRONotUpdatable);
Don Garrett81018e02013-07-30 18:46:31 -0700103 }
104
Darin Petkov6f03a3b2010-11-10 14:27:14 -0800105 return;
106 }
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700107
108 LOG(INFO) << "Postinst command succeeded";
Chris Sosad317e402013-06-12 13:47:09 -0700109 if (HasOutputPipe()) {
110 SetOutputObject(install_plan_);
111 }
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700112
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700113 completer.set_code(ErrorCode::kSuccess);
adlr@google.com3defe6a2009-12-04 20:57:17 +0000114}
115
Darin Petkov6f03a3b2010-11-10 14:27:14 -0800116void PostinstallRunnerAction::StaticCompletePostinstall(int return_code,
117 const string& output,
118 void* p) {
119 reinterpret_cast<PostinstallRunnerAction*>(p)->CompletePostinstall(
120 return_code);
121}
122
adlr@google.com3defe6a2009-12-04 20:57:17 +0000123} // namespace chromeos_update_engine