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 <sys/mount.h> |
| 8 | #include <stdlib.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 { |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 21 | const char kPostinstallScript[] = "/postinst"; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 22 | } |
| 23 | |
| 24 | void PostinstallRunnerAction::PerformAction() { |
| 25 | CHECK(HasInputObject()); |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 26 | const InstallPlan install_plan = GetInputObject(); |
| 27 | const string install_device = install_plan.install_path; |
| 28 | ScopedActionCompleter completer(processor_, this); |
Darin Petkov | c1a8b42 | 2010-07-19 11:34:49 -0700 | [diff] [blame] | 29 | |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 30 | // Make mountpoint. |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 31 | TEST_AND_RETURN(utils::MakeTempDirectory("/tmp/au_postint_mount.XXXXXX", |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 32 | &temp_rootfs_dir_)); |
| 33 | ScopedDirRemover temp_dir_remover(temp_rootfs_dir_); |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 34 | |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 35 | unsigned long mountflags = MS_RDONLY; |
| 36 | int rc = mount(install_device.c_str(), |
| 37 | temp_rootfs_dir_.c_str(), |
Andrew de los Reyes | bfabc30 | 2011-01-31 17:23:50 -0800 | [diff] [blame] | 38 | "ext2", |
Andrew de los Reyes | 3270f74 | 2010-07-15 22:28:14 -0700 | [diff] [blame] | 39 | mountflags, |
| 40 | NULL); |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 41 | if (rc < 0) { |
Andrew de los Reyes | bfabc30 | 2011-01-31 17:23:50 -0800 | [diff] [blame] | 42 | LOG(INFO) << "Failed to mount install part as ext2. Trying ext3."; |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 43 | rc = mount(install_device.c_str(), |
| 44 | temp_rootfs_dir_.c_str(), |
| 45 | "ext3", |
| 46 | mountflags, |
| 47 | NULL); |
| 48 | } |
| 49 | if (rc < 0) { |
| 50 | LOG(ERROR) << "Unable to mount destination device " << install_device |
| 51 | << " onto " << temp_rootfs_dir_; |
| 52 | return; |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 53 | } |
| 54 | |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 55 | temp_dir_remover.set_should_remove(false); |
| 56 | completer.set_should_complete(false); |
| 57 | |
Jay Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 58 | if (install_plan.powerwash_required) { |
| 59 | if (utils::CreatePowerwashMarkerFile()) { |
| 60 | powerwash_marker_created_ = true; |
| 61 | } else { |
David Zeuthen | a99981f | 2013-04-29 13:42:47 -0700 | [diff] [blame] | 62 | completer.set_code(kErrorCodePostinstallPowerwashError); |
Jay Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 63 | return; |
| 64 | } |
| 65 | } |
| 66 | |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 67 | // Runs the postinstall script asynchronously to free up the main loop while |
| 68 | // it's running. |
| 69 | vector<string> command; |
| 70 | command.push_back(temp_rootfs_dir_ + kPostinstallScript); |
| 71 | command.push_back(install_device); |
Darin Petkov | 58dd134 | 2011-05-06 12:05:13 -0700 | [diff] [blame] | 72 | if (!Subprocess::Get().Exec(command, StaticCompletePostinstall, this)) { |
| 73 | CompletePostinstall(1); |
| 74 | } |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | void PostinstallRunnerAction::CompletePostinstall(int return_code) { |
| 78 | ScopedActionCompleter completer(processor_, this); |
| 79 | ScopedTempUnmounter temp_unmounter(temp_rootfs_dir_); |
| 80 | if (return_code != 0) { |
| 81 | LOG(ERROR) << "Postinst command failed with code: " << return_code; |
Jay Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 82 | |
| 83 | // Undo any changes done to trigger Powerwash using clobber-state. |
| 84 | if (powerwash_marker_created_) |
| 85 | utils::DeletePowerwashMarkerFile(); |
| 86 | |
Andrew de los Reyes | fe57d54 | 2011-06-07 09:00:36 -0700 | [diff] [blame] | 87 | if (return_code == 3) { |
Andrew de los Reyes | c1d5c93 | 2011-04-20 17:15:47 -0700 | [diff] [blame] | 88 | // This special return code means that we tried to update firmware, |
| 89 | // but couldn't because we booted from FW B, and we need to reboot |
| 90 | // to get back to FW A. |
David Zeuthen | a99981f | 2013-04-29 13:42:47 -0700 | [diff] [blame] | 91 | completer.set_code(kErrorCodePostinstallBootedFromFirmwareB); |
Andrew de los Reyes | c1d5c93 | 2011-04-20 17:15:47 -0700 | [diff] [blame] | 92 | } |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 93 | return; |
| 94 | } |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 95 | |
| 96 | LOG(INFO) << "Postinst command succeeded"; |
| 97 | CHECK(HasInputObject()); |
| 98 | const InstallPlan install_plan = GetInputObject(); |
| 99 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 100 | if (HasOutputPipe()) |
| 101 | SetOutputObject(install_plan); |
| 102 | |
David Zeuthen | a99981f | 2013-04-29 13:42:47 -0700 | [diff] [blame] | 103 | completer.set_code(kErrorCodeSuccess); |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 104 | } |
| 105 | |
Darin Petkov | 6f03a3b | 2010-11-10 14:27:14 -0800 | [diff] [blame] | 106 | void PostinstallRunnerAction::StaticCompletePostinstall(int return_code, |
| 107 | const string& output, |
| 108 | void* p) { |
| 109 | reinterpret_cast<PostinstallRunnerAction*>(p)->CompletePostinstall( |
| 110 | return_code); |
| 111 | } |
| 112 | |
adlr@google.com | 3defe6a | 2009-12-04 20:57:17 +0000 | [diff] [blame] | 113 | } // namespace chromeos_update_engine |