Darin Petkov | 58dd134 | 2011-05-06 12:05:13 -0700 | [diff] [blame] | 1 | // Copyright (c) 2011 The Chromium OS Authors. All rights reserved. |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 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 "update_engine/postinstall_runner_action.h" |
Jay Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 6 | |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 7 | #include <stdlib.h> |
Alex Vakulenko | 44cab30 | 2014-07-23 13:12:15 -0700 | [diff] [blame] | 8 | #include <sys/mount.h> |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 9 | #include <vector> |
Jay Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 10 | |
Chris Sosa | be45bef | 2013-04-09 18:25:12 -0700 | [diff] [blame] | 11 | #include "update_engine/action_processor.h" |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 12 | #include "update_engine/subprocess.h" |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 13 | #include "update_engine/utils.h" |
| 14 | |
| 15 | namespace chromeos_update_engine { |
| 16 | |
| 17 | using std::string; |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 18 | using std::vector; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 19 | |
| 20 | namespace { |
Alex Deymo | 032e772 | 2014-03-25 17:53:56 -0700 | [diff] [blame] | 21 | // The absolute path to the post install command. |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 22 | const char kPostinstallScript[] = "/postinst"; |
Alex Deymo | 032e772 | 2014-03-25 17:53:56 -0700 | [diff] [blame] | 23 | |
| 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. |
| 27 | const char kDebugPostinstallBinaryPath[] = "/usr/bin/cros_installer"; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 28 | } |
| 29 | |
| 30 | void PostinstallRunnerAction::PerformAction() { |
| 31 | CHECK(HasInputObject()); |
Chris Sosa | d317e40 | 2013-06-12 13:47:09 -0700 | [diff] [blame] | 32 | install_plan_ = GetInputObject(); |
| 33 | const string install_device = install_plan_.install_path; |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 34 | ScopedActionCompleter completer(processor_, this); |
Darin Petkov | c1a8b42 | 2010-07-19 11:34:49 -0700 | [diff] [blame] | 35 | |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 36 | // Make mountpoint. |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 37 | TEST_AND_RETURN(utils::MakeTempDirectory("/tmp/au_postint_mount.XXXXXX", |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 38 | &temp_rootfs_dir_)); |
| 39 | ScopedDirRemover temp_dir_remover(temp_rootfs_dir_); |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 40 | |
Nam T. Nguyen | a78b28c | 2015-03-06 22:30:12 -0800 | [diff] [blame^] | 41 | const string mountable_device = |
| 42 | utils::MakePartitionNameForMount(install_device); |
| 43 | if (mountable_device.empty()) { |
| 44 | LOG(ERROR) << "Cannot make mountable device from " << install_device; |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 45 | return; |
Nam T. Nguyen | a78b28c | 2015-03-06 22:30:12 -0800 | [diff] [blame^] | 46 | } |
| 47 | |
| 48 | if (!utils::MountFilesystem(mountable_device, temp_rootfs_dir_, MS_RDONLY)) |
| 49 | return; |
| 50 | |
| 51 | LOG(INFO) << "Performing postinst with install device " << install_device |
| 52 | << " and mountable device " << mountable_device; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 53 | |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 54 | temp_dir_remover.set_should_remove(false); |
| 55 | completer.set_should_complete(false); |
| 56 | |
Chris Sosa | d317e40 | 2013-06-12 13:47:09 -0700 | [diff] [blame] | 57 | if (install_plan_.powerwash_required) { |
Gilad Arnold | 30dedd8 | 2013-07-03 06:19:09 -0700 | [diff] [blame] | 58 | if (utils::CreatePowerwashMarkerFile(powerwash_marker_file_)) { |
Jay Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 59 | powerwash_marker_created_ = true; |
| 60 | } else { |
Gilad Arnold | d1c4d2d | 2014-06-05 14:07:53 -0700 | [diff] [blame] | 61 | completer.set_code(ErrorCode::kPostinstallPowerwashError); |
Jay Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 62 | return; |
| 63 | } |
| 64 | } |
| 65 | |
Alex Deymo | 032e772 | 2014-03-25 17:53:56 -0700 | [diff] [blame] | 66 | // Logs the file format of the postinstall script we are about to run. This |
| 67 | // will help debug when the postinstall script doesn't match the architecture |
| 68 | // of our build. |
| 69 | LOG(INFO) << "Format file for new " << kPostinstallScript << " is: " |
| 70 | << utils::GetFileFormat(temp_rootfs_dir_ + kPostinstallScript); |
| 71 | LOG(INFO) << "Format file for new " << kDebugPostinstallBinaryPath << " is: " |
| 72 | << utils::GetFileFormat( |
| 73 | temp_rootfs_dir_ + kDebugPostinstallBinaryPath); |
| 74 | |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 75 | // Runs the postinstall script asynchronously to free up the main loop while |
| 76 | // it's running. |
| 77 | vector<string> command; |
Chris Sosa | 000ecb3 | 2014-04-23 12:21:18 -0700 | [diff] [blame] | 78 | if (!install_plan_.download_url.empty()) { |
| 79 | command.push_back(temp_rootfs_dir_ + kPostinstallScript); |
| 80 | } else { |
| 81 | // TODO(sosa): crbug.com/366207. |
| 82 | // If we're doing a rollback, just run our own postinstall. |
| 83 | command.push_back(kPostinstallScript); |
| 84 | } |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 85 | command.push_back(install_device); |
Darin Petkov | 58dd134 | 2011-05-06 12:05:13 -0700 | [diff] [blame] | 86 | if (!Subprocess::Get().Exec(command, StaticCompletePostinstall, this)) { |
| 87 | CompletePostinstall(1); |
| 88 | } |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | void PostinstallRunnerAction::CompletePostinstall(int return_code) { |
| 92 | ScopedActionCompleter completer(processor_, this); |
| 93 | ScopedTempUnmounter temp_unmounter(temp_rootfs_dir_); |
| 94 | if (return_code != 0) { |
| 95 | LOG(ERROR) << "Postinst command failed with code: " << return_code; |
Jay Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 96 | |
| 97 | // Undo any changes done to trigger Powerwash using clobber-state. |
| 98 | if (powerwash_marker_created_) |
Gilad Arnold | 30dedd8 | 2013-07-03 06:19:09 -0700 | [diff] [blame] | 99 | utils::DeletePowerwashMarkerFile(powerwash_marker_file_); |
Jay Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 100 | |
Andrew de los Reyes | fe57d54 | 2011-06-07 09:00:36 -0700 | [diff] [blame] | 101 | if (return_code == 3) { |
Andrew de los Reyes | c1d5c93 | 2011-04-20 17:15:47 -0700 | [diff] [blame] | 102 | // This special return code means that we tried to update firmware, |
| 103 | // but couldn't because we booted from FW B, and we need to reboot |
| 104 | // to get back to FW A. |
Gilad Arnold | d1c4d2d | 2014-06-05 14:07:53 -0700 | [diff] [blame] | 105 | completer.set_code(ErrorCode::kPostinstallBootedFromFirmwareB); |
Andrew de los Reyes | c1d5c93 | 2011-04-20 17:15:47 -0700 | [diff] [blame] | 106 | } |
Don Garrett | 81018e0 | 2013-07-30 18:46:31 -0700 | [diff] [blame] | 107 | |
| 108 | if (return_code == 4) { |
| 109 | // This special return code means that we tried to update firmware, |
| 110 | // but couldn't because we booted from FW B, and we need to reboot |
| 111 | // to get back to FW A. |
Gilad Arnold | d1c4d2d | 2014-06-05 14:07:53 -0700 | [diff] [blame] | 112 | completer.set_code(ErrorCode::kPostinstallFirmwareRONotUpdatable); |
Don Garrett | 81018e0 | 2013-07-30 18:46:31 -0700 | [diff] [blame] | 113 | } |
| 114 | |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 115 | return; |
| 116 | } |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 117 | |
| 118 | LOG(INFO) << "Postinst command succeeded"; |
Chris Sosa | d317e40 | 2013-06-12 13:47:09 -0700 | [diff] [blame] | 119 | if (HasOutputPipe()) { |
| 120 | SetOutputObject(install_plan_); |
| 121 | } |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 122 | |
Gilad Arnold | d1c4d2d | 2014-06-05 14:07:53 -0700 | [diff] [blame] | 123 | completer.set_code(ErrorCode::kSuccess); |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 124 | } |
| 125 | |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 126 | void PostinstallRunnerAction::StaticCompletePostinstall(int return_code, |
| 127 | const string& output, |
| 128 | void* p) { |
| 129 | reinterpret_cast<PostinstallRunnerAction*>(p)->CompletePostinstall( |
| 130 | return_code); |
| 131 | } |
| 132 | |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 133 | } // namespace chromeos_update_engine |