blob: 1d2da4304d67d6e9a95c16446be1c521b79781ae [file] [log] [blame]
Alex Deymoaea4c1c2015-08-19 20:24:43 -07001//
2// Copyright (C) 2011 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//
adlr@google.com3defe6a2009-12-04 20:57:17 +000016
Alex Deymo39910dc2015-11-09 17:04:30 -080017#include "update_engine/payload_consumer/postinstall_runner_action.h"
Jay Srinivasan1c0fe792013-03-28 16:45:25 -070018
Alex Deymo0d298542016-03-30 18:31:49 -070019#include <fcntl.h>
Alex Deymod15c5462016-03-09 18:11:12 -080020#include <signal.h>
adlr@google.com3defe6a2009-12-04 20:57:17 +000021#include <stdlib.h>
Alex Vakulenko44cab302014-07-23 13:12:15 -070022#include <sys/mount.h>
Alex Deymod15c5462016-03-09 18:11:12 -080023#include <sys/types.h>
Alex Deymo0d298542016-03-30 18:31:49 -070024#include <unistd.h>
Jay Srinivasan1c0fe792013-03-28 16:45:25 -070025
Alex Deymo44b35672016-04-05 17:57:48 -070026#include <cmath>
27
Alex Deymoe5e5fe92015-10-05 09:28:19 -070028#include <base/files/file_path.h>
29#include <base/files/file_util.h>
Alex Deymod15c5462016-03-09 18:11:12 -080030#include <base/logging.h>
hscham00b6aa22020-02-20 12:32:06 +090031#include <base/stl_util.h>
Alex Deymo0d298542016-03-30 18:31:49 -070032#include <base/strings/string_split.h>
Alex Deymo390efed2016-02-18 11:00:40 -080033#include <base/strings/string_util.h>
Alex Deymo461b2592015-07-24 20:10:52 -070034
Alex Deymo39910dc2015-11-09 17:04:30 -080035#include "update_engine/common/action_processor.h"
Alex Deymob15a0b82015-11-25 20:30:40 -030036#include "update_engine/common/boot_control_interface.h"
Alex Deymo14dbd332016-03-01 18:55:54 -080037#include "update_engine/common/platform_constants.h"
Alex Deymo39910dc2015-11-09 17:04:30 -080038#include "update_engine/common/subprocess.h"
39#include "update_engine/common/utils.h"
adlr@google.com3defe6a2009-12-04 20:57:17 +000040
Alex Deymo0d298542016-03-30 18:31:49 -070041namespace {
42
43// The file descriptor number from the postinstall program's perspective where
44// it can report status updates. This can be any number greater than 2 (stderr),
45// but must be kept in sync with the "bin/postinst_progress" defined in the
46// sample_images.sh file.
47const int kPostinstallStatusFd = 3;
48
49} // namespace
50
adlr@google.com3defe6a2009-12-04 20:57:17 +000051namespace chromeos_update_engine {
52
53using std::string;
Andrew de los Reyesf9714432010-05-04 10:21:23 -070054using std::vector;
adlr@google.com3defe6a2009-12-04 20:57:17 +000055
Kelvin Zhange9def4e2020-12-02 14:04:09 -050056PostinstallRunnerAction::PostinstallRunnerAction(
57 BootControlInterface* boot_control, HardwareInterface* hardware)
58 : boot_control_(boot_control), hardware_(hardware) {
59#ifdef __ANDROID__
60 fs_mount_dir_ = "/postinstall";
61#else // __ANDROID__
62 base::FilePath temp_dir;
63 TEST_AND_RETURN(base::CreateNewTempDirectory("au_postint_mount", &temp_dir));
64 fs_mount_dir_ = temp_dir.value();
65#endif // __ANDROID__
Kelvin Zhang2379fa92020-12-09 14:39:04 -050066 CHECK(!fs_mount_dir_.empty());
67 LOG(INFO) << "postinstall mount point: " << fs_mount_dir_;
Kelvin Zhange9def4e2020-12-02 14:04:09 -050068}
69
adlr@google.com3defe6a2009-12-04 20:57:17 +000070void PostinstallRunnerAction::PerformAction() {
71 CHECK(HasInputObject());
Kelvin Zhang8b1e0dc2020-10-26 12:27:53 -040072 CHECK(boot_control_);
Chris Sosad317e402013-06-12 13:47:09 -070073 install_plan_ = GetInputObject();
Darin Petkov6f03a3b2010-11-10 14:27:14 -080074
Kelvin Zhang8b1e0dc2020-10-26 12:27:53 -040075 auto dynamic_control = boot_control_->GetDynamicPartitionControl();
76 CHECK(dynamic_control);
77
78 // Mount snapshot partitions for Virtual AB Compression Compression.
Kelvin Zhang06188352021-02-10 13:21:47 -050079 if (dynamic_control->UpdateUsesSnapshotCompression()) {
Kelvin Zhang8b1e0dc2020-10-26 12:27:53 -040080 // Before calling MapAllPartitions to map snapshot devices, all CowWriters
81 // must be closed, and MapAllPartitions() should be called.
82 dynamic_control->UnmapAllPartitions();
83 if (!dynamic_control->MapAllPartitions()) {
84 return CompletePostinstall(ErrorCode::kPostInstallMountError);
85 }
86 }
87
Zentaro Kavanagh28def4f2019-01-15 17:15:01 -080088 // We always powerwash when rolling back, however policy can determine
89 // if this is a full/normal powerwash, or a special rollback powerwash
90 // that retains a small amount of system state such as enrollment and
91 // network configuration. In both cases all user accounts are deleted.
Marton Hunyady199152d2018-05-07 19:08:48 +020092 if (install_plan_.powerwash_required || install_plan_.is_rollback) {
Miriam Polzeraff72002020-08-27 08:20:39 +020093 if (hardware_->SchedulePowerwash(
94 install_plan_.rollback_data_save_requested)) {
Alex Deymofb905d92016-06-03 19:26:58 -070095 powerwash_scheduled_ = true;
Jay Srinivasan1c0fe792013-03-28 16:45:25 -070096 } else {
Alex Deymoe5e5fe92015-10-05 09:28:19 -070097 return CompletePostinstall(ErrorCode::kPostinstallPowerwashError);
Jay Srinivasan1c0fe792013-03-28 16:45:25 -070098 }
99 }
100
Alex Deymo0d298542016-03-30 18:31:49 -0700101 // Initialize all the partition weights.
102 partition_weight_.resize(install_plan_.partitions.size());
103 total_weight_ = 0;
104 for (size_t i = 0; i < install_plan_.partitions.size(); ++i) {
Tianjie Xu087de9d2019-11-01 17:11:22 -0700105 auto& partition = install_plan_.partitions[i];
106 if (!install_plan_.run_post_install && partition.postinstall_optional) {
107 partition.run_postinstall = false;
108 LOG(INFO) << "Skipping optional post-install for partition "
109 << partition.name << " according to install plan.";
110 }
111
Alex Deymo0d298542016-03-30 18:31:49 -0700112 // TODO(deymo): This code sets the weight to all the postinstall commands,
113 // but we could remember how long they took in the past and use those
114 // values.
Tianjie Xu087de9d2019-11-01 17:11:22 -0700115 partition_weight_[i] = partition.run_postinstall;
Alex Deymo0d298542016-03-30 18:31:49 -0700116 total_weight_ += partition_weight_[i];
117 }
118 accumulated_weight_ = 0;
119 ReportProgress(0);
120
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700121 PerformPartitionPostinstall();
122}
123
Kelvin Zhang06e654a2021-09-10 13:21:00 -0700124bool PostinstallRunnerAction::MountPartition(
125 const InstallPlan::Partition& partition) noexcept {
126 // Perform post-install for the current_partition_ partition. At this point we
127 // need to call CompletePartitionPostinstall to complete the operation and
128 // cleanup.
129 const auto mountable_device = partition.readonly_target_path;
130 if (!utils::FileExists(mountable_device.c_str())) {
131 LOG(ERROR) << "Mountable device " << mountable_device << " for partition "
132 << partition.name << " does not exist";
133 return false;
134 }
135
136 if (!utils::FileExists(fs_mount_dir_.c_str())) {
137 LOG(ERROR) << "Mount point " << fs_mount_dir_
138 << " does not exist, mount call will fail";
139 return false;
140 }
141 // Double check that the fs_mount_dir is not busy with a previous mounted
142 // filesystem from a previous crashed postinstall step.
143 if (utils::IsMountpoint(fs_mount_dir_)) {
144 LOG(INFO) << "Found previously mounted filesystem at " << fs_mount_dir_;
145 utils::UnmountFilesystem(fs_mount_dir_);
146 }
147
148#ifdef __ANDROID__
149 // In Chromium OS, the postinstall step is allowed to write to the block
150 // device on the target image, so we don't mark it as read-only and should
151 // be read-write since we just wrote to it during the update.
152
153 // Mark the block device as read-only before mounting for post-install.
154 if (!utils::SetBlockDeviceReadOnly(mountable_device, true)) {
155 return false;
156 }
157#endif // __ANDROID__
158
159 if (!utils::MountFilesystem(
160 mountable_device,
161 fs_mount_dir_,
162 MS_RDONLY,
163 partition.filesystem_type,
164 hardware_->GetPartitionMountOptions(partition.name))) {
165 return false;
166 }
167 return true;
168}
169
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700170void PostinstallRunnerAction::PerformPartitionPostinstall() {
Alex Deymo390efed2016-02-18 11:00:40 -0800171 if (install_plan_.download_url.empty()) {
172 LOG(INFO) << "Skipping post-install during rollback";
173 return CompletePostinstall(ErrorCode::kSuccess);
174 }
175
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700176 // Skip all the partitions that don't have a post-install step.
177 while (current_partition_ < install_plan_.partitions.size() &&
178 !install_plan_.partitions[current_partition_].run_postinstall) {
179 VLOG(1) << "Skipping post-install on partition "
180 << install_plan_.partitions[current_partition_].name;
Kelvin Zhang06e654a2021-09-10 13:21:00 -0700181 // Attempt to mount a device if it has postinstall script configured, even
182 // if we want to skip running postinstall script.
183 // This is because we've seen bugs like b/198787355 which is only triggered
184 // when you attempt to mount a device. If device fails to mount, it will
185 // likely fail to mount during boot anyway, so it's better to catch any
186 // issues earlier.
187 // It's possible that some of the partitions aren't mountable, but these
188 // partitions shouldn't have postinstall configured. Therefore we guard this
189 // logic with |postinstall_path.empty()|.
190 const auto& partition = install_plan_.partitions[current_partition_];
191 if (!partition.postinstall_path.empty()) {
192 const auto mountable_device = partition.readonly_target_path;
193 if (!MountPartition(partition)) {
194 return CompletePostinstall(ErrorCode::kPostInstallMountError);
195 }
196 if (!utils::UnmountFilesystem(fs_mount_dir_)) {
197 return CompletePartitionPostinstall(
198 1, "Error unmounting the device " + mountable_device);
199 }
200 }
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700201 current_partition_++;
202 }
203 if (current_partition_ == install_plan_.partitions.size())
204 return CompletePostinstall(ErrorCode::kSuccess);
205
206 const InstallPlan::Partition& partition =
207 install_plan_.partitions[current_partition_];
208
Kelvin Zhanga9b5d8c2021-05-05 09:17:46 -0400209 const string mountable_device = partition.readonly_target_path;
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700210 // Perform post-install for the current_partition_ partition. At this point we
211 // need to call CompletePartitionPostinstall to complete the operation and
212 // cleanup.
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700213
Kelvin Zhang06e654a2021-09-10 13:21:00 -0700214 if (!MountPartition(partition)) {
215 CompletePostinstall(ErrorCode::kPostInstallMountError);
216 return;
Kelvin Zhang4ce01102020-11-16 09:32:08 -0500217 }
Alex Deymocbc22742016-03-04 17:53:02 -0800218 base::FilePath postinstall_path(partition.postinstall_path);
219 if (postinstall_path.IsAbsolute()) {
220 LOG(ERROR) << "Invalid absolute path passed to postinstall, use a relative"
221 "path instead: "
222 << partition.postinstall_path;
223 return CompletePostinstall(ErrorCode::kPostinstallRunnerError);
224 }
225
226 string abs_path =
227 base::FilePath(fs_mount_dir_).Append(postinstall_path).value();
Alex Deymo390efed2016-02-18 11:00:40 -0800228 if (!base::StartsWith(
229 abs_path, fs_mount_dir_, base::CompareCase::SENSITIVE)) {
230 LOG(ERROR) << "Invalid relative postinstall path: "
231 << partition.postinstall_path;
232 return CompletePostinstall(ErrorCode::kPostinstallRunnerError);
233 }
234
Alex Deymo390efed2016-02-18 11:00:40 -0800235 LOG(INFO) << "Performing postinst (" << partition.postinstall_path << " at "
Kelvin Zhangbe1c1802021-06-21 10:03:36 -0400236 << abs_path << ") installed on mountable device "
237 << mountable_device;
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700238
Alex Deymo032e7722014-03-25 17:53:56 -0700239 // Logs the file format of the postinstall script we are about to run. This
240 // will help debug when the postinstall script doesn't match the architecture
241 // of our build.
Alex Deymo390efed2016-02-18 11:00:40 -0800242 LOG(INFO) << "Format file for new " << partition.postinstall_path
243 << " is: " << utils::GetFileFormat(abs_path);
Alex Deymo032e7722014-03-25 17:53:56 -0700244
Darin Petkov6f03a3b2010-11-10 14:27:14 -0800245 // Runs the postinstall script asynchronously to free up the main loop while
246 // it's running.
Alex Deymo0d298542016-03-30 18:31:49 -0700247 vector<string> command = {abs_path};
248#ifdef __ANDROID__
249 // In Brillo and Android, we pass the slot number and status fd.
250 command.push_back(std::to_string(install_plan_.target_slot));
251 command.push_back(std::to_string(kPostinstallStatusFd));
252#else
253 // Chrome OS postinstall expects the target rootfs as the first parameter.
254 command.push_back(partition.target_path);
255#endif // __ANDROID__
256
257 current_command_ = Subprocess::Get().ExecFlags(
Alex Deymod15c5462016-03-09 18:11:12 -0800258 command,
Alex Deymo0d298542016-03-30 18:31:49 -0700259 Subprocess::kRedirectStderrToStdout,
260 {kPostinstallStatusFd},
Alex Deymod15c5462016-03-09 18:11:12 -0800261 base::Bind(&PostinstallRunnerAction::CompletePartitionPostinstall,
262 base::Unretained(this)));
263 // Subprocess::Exec should never return a negative process id.
264 CHECK_GE(current_command_, 0);
265
Alex Deymo0d298542016-03-30 18:31:49 -0700266 if (!current_command_) {
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700267 CompletePartitionPostinstall(1, "Postinstall didn't launch");
Alex Deymo0d298542016-03-30 18:31:49 -0700268 return;
269 }
270
271 // Monitor the status file descriptor.
272 progress_fd_ =
273 Subprocess::Get().GetPipeFd(current_command_, kPostinstallStatusFd);
274 int fd_flags = fcntl(progress_fd_, F_GETFL, 0) | O_NONBLOCK;
275 if (HANDLE_EINTR(fcntl(progress_fd_, F_SETFL, fd_flags)) < 0) {
276 PLOG(ERROR) << "Unable to set non-blocking I/O mode on fd " << progress_fd_;
277 }
278
Hidehiko Abe493fecb2019-07-10 23:30:50 +0900279 progress_controller_ = base::FileDescriptorWatcher::WatchReadable(
Alex Deymo0d298542016-03-30 18:31:49 -0700280 progress_fd_,
Hidehiko Abe493fecb2019-07-10 23:30:50 +0900281 base::BindRepeating(&PostinstallRunnerAction::OnProgressFdReady,
282 base::Unretained(this)));
Darin Petkov6f03a3b2010-11-10 14:27:14 -0800283}
284
Alex Deymo0d298542016-03-30 18:31:49 -0700285void PostinstallRunnerAction::OnProgressFdReady() {
286 char buf[1024];
287 size_t bytes_read;
288 do {
289 bytes_read = 0;
290 bool eof;
291 bool ok =
hscham00b6aa22020-02-20 12:32:06 +0900292 utils::ReadAll(progress_fd_, buf, base::size(buf), &bytes_read, &eof);
Alex Deymo0d298542016-03-30 18:31:49 -0700293 progress_buffer_.append(buf, bytes_read);
294 // Process every line.
295 vector<string> lines = base::SplitString(
296 progress_buffer_, "\n", base::KEEP_WHITESPACE, base::SPLIT_WANT_ALL);
297 if (!lines.empty()) {
298 progress_buffer_ = lines.back();
299 lines.pop_back();
300 for (const auto& line : lines) {
301 ProcessProgressLine(line);
302 }
303 }
304 if (!ok || eof) {
305 // There was either an error or an EOF condition, so we are done watching
306 // the file descriptor.
Hidehiko Abe493fecb2019-07-10 23:30:50 +0900307 progress_controller_.reset();
Alex Deymo0d298542016-03-30 18:31:49 -0700308 return;
309 }
310 } while (bytes_read);
311}
312
313bool PostinstallRunnerAction::ProcessProgressLine(const string& line) {
314 double frac = 0;
Alex Deymoa2ea1c22016-08-24 17:26:19 -0700315 if (sscanf(line.c_str(), "global_progress %lf", &frac) == 1 &&
316 !std::isnan(frac)) {
Alex Deymo0d298542016-03-30 18:31:49 -0700317 ReportProgress(frac);
318 return true;
319 }
320
321 return false;
322}
323
324void PostinstallRunnerAction::ReportProgress(double frac) {
325 if (!delegate_)
326 return;
Yoshitaka Ishida128936f2018-02-16 18:20:07 +0900327 if (current_partition_ >= partition_weight_.size() || total_weight_ == 0) {
Alex Deymo0d298542016-03-30 18:31:49 -0700328 delegate_->ProgressUpdate(1.);
329 return;
330 }
Alex Deymo44b35672016-04-05 17:57:48 -0700331 if (!std::isfinite(frac) || frac < 0)
Alex Deymo0d298542016-03-30 18:31:49 -0700332 frac = 0;
333 if (frac > 1)
334 frac = 1;
335 double postinst_action_progress =
336 (accumulated_weight_ + partition_weight_[current_partition_] * frac) /
337 total_weight_;
338 delegate_->ProgressUpdate(postinst_action_progress);
339}
340
341void PostinstallRunnerAction::Cleanup() {
Alex Deymo390efed2016-02-18 11:00:40 -0800342 utils::UnmountFilesystem(fs_mount_dir_);
Alex Deymod15c5462016-03-09 18:11:12 -0800343#ifndef __ANDROID__
Kelvin Zhang4aeaa122020-12-04 13:28:47 -0500344#if BASE_VER < 800000
345 if (!base::DeleteFile(base::FilePath(fs_mount_dir_), true)) {
346#else
hscham043355b2020-11-17 16:50:10 +0900347 if (!base::DeleteFile(base::FilePath(fs_mount_dir_))) {
Kelvin Zhang4aeaa122020-12-04 13:28:47 -0500348#endif
Alex Deymo390efed2016-02-18 11:00:40 -0800349 PLOG(WARNING) << "Not removing temporary mountpoint " << fs_mount_dir_;
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700350 }
Kelvin Zhang4aeaa122020-12-04 13:28:47 -0500351#endif
Alex Deymo0d298542016-03-30 18:31:49 -0700352
353 progress_fd_ = -1;
Hidehiko Abe493fecb2019-07-10 23:30:50 +0900354 progress_controller_.reset();
Tianjie55abd3c2020-06-19 00:22:59 -0700355
Alex Deymo0d298542016-03-30 18:31:49 -0700356 progress_buffer_.clear();
Alex Deymod15c5462016-03-09 18:11:12 -0800357}
358
359void PostinstallRunnerAction::CompletePartitionPostinstall(
360 int return_code, const string& output) {
361 current_command_ = 0;
Alex Deymo0d298542016-03-30 18:31:49 -0700362 Cleanup();
Alex Deymo31d95ac2015-09-17 11:56:18 -0700363
Darin Petkov6f03a3b2010-11-10 14:27:14 -0800364 if (return_code != 0) {
365 LOG(ERROR) << "Postinst command failed with code: " << return_code;
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700366 ErrorCode error_code = ErrorCode::kPostinstallRunnerError;
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700367
Andrew de los Reyesfe57d542011-06-07 09:00:36 -0700368 if (return_code == 3) {
Andrew de los Reyesc1d5c932011-04-20 17:15:47 -0700369 // This special return code means that we tried to update firmware,
370 // but couldn't because we booted from FW B, and we need to reboot
371 // to get back to FW A.
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700372 error_code = ErrorCode::kPostinstallBootedFromFirmwareB;
Andrew de los Reyesc1d5c932011-04-20 17:15:47 -0700373 }
Don Garrett81018e02013-07-30 18:46:31 -0700374
375 if (return_code == 4) {
376 // This special return code means that we tried to update firmware,
377 // but couldn't because we booted from FW B, and we need to reboot
378 // to get back to FW A.
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700379 error_code = ErrorCode::kPostinstallFirmwareRONotUpdatable;
Don Garrett81018e02013-07-30 18:46:31 -0700380 }
Alex Deymo5b91c6b2016-08-04 20:33:36 -0700381
382 // If postinstall script for this partition is optional we can ignore the
383 // result.
384 if (install_plan_.partitions[current_partition_].postinstall_optional) {
385 LOG(INFO) << "Ignoring postinstall failure since it is optional";
386 } else {
387 return CompletePostinstall(error_code);
388 }
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700389 }
Alex Deymo0d298542016-03-30 18:31:49 -0700390 accumulated_weight_ += partition_weight_[current_partition_];
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700391 current_partition_++;
Alex Deymo0d298542016-03-30 18:31:49 -0700392 ReportProgress(0);
393
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700394 PerformPartitionPostinstall();
395}
396
397void PostinstallRunnerAction::CompletePostinstall(ErrorCode error_code) {
398 // We only attempt to mark the new slot as active if all the postinstall
399 // steps succeeded.
Sen Jiang02c49422017-10-31 15:14:11 -0700400 if (error_code == ErrorCode::kSuccess) {
401 if (install_plan_.switch_slot_on_reboot) {
Yifan Hong7b3910a2020-03-24 17:47:32 -0700402 if (!boot_control_->GetDynamicPartitionControl()->FinishUpdate(
403 install_plan_.powerwash_required) ||
Yifan Honge8583622019-11-07 11:36:31 -0800404 !boot_control_->SetActiveBootSlot(install_plan_.target_slot)) {
Sen Jiang02c49422017-10-31 15:14:11 -0700405 error_code = ErrorCode::kPostinstallRunnerError;
Tianjie Xud6aa91f2019-11-14 11:55:10 -0800406 } else {
407 // Schedules warm reset on next reboot, ignores the error.
408 hardware_->SetWarmReset(true);
Tianjie838793d2021-01-14 22:05:13 -0800409 // Sets the vbmeta digest for the other slot to boot into.
410 hardware_->SetVbmetaDigestForInactiveSlot(false);
Sen Jiang02c49422017-10-31 15:14:11 -0700411 }
412 } else {
413 error_code = ErrorCode::kUpdatedButNotActive;
414 }
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700415 }
416
Kelvin Zhang433d6c42021-03-31 22:26:59 -0400417 auto dynamic_control = boot_control_->GetDynamicPartitionControl();
418 CHECK(dynamic_control);
419 dynamic_control->UnmapAllPartitions();
420 LOG(INFO) << "Unmapped all partitions.";
421
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700422 ScopedActionCompleter completer(processor_, this);
Alex Deymocbc22742016-03-04 17:53:02 -0800423 completer.set_code(error_code);
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700424
Sen Jiang02c49422017-10-31 15:14:11 -0700425 if (error_code != ErrorCode::kSuccess &&
426 error_code != ErrorCode::kUpdatedButNotActive) {
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700427 LOG(ERROR) << "Postinstall action failed.";
428
Alex Deymofb905d92016-06-03 19:26:58 -0700429 // Undo any changes done to trigger Powerwash.
430 if (powerwash_scheduled_)
431 hardware_->CancelPowerwash();
Don Garrett81018e02013-07-30 18:46:31 -0700432
Darin Petkov6f03a3b2010-11-10 14:27:14 -0800433 return;
434 }
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700435
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700436 LOG(INFO) << "All post-install commands succeeded";
Chris Sosad317e402013-06-12 13:47:09 -0700437 if (HasOutputPipe()) {
438 SetOutputObject(install_plan_);
439 }
adlr@google.com3defe6a2009-12-04 20:57:17 +0000440}
441
Alex Deymod15c5462016-03-09 18:11:12 -0800442void PostinstallRunnerAction::SuspendAction() {
443 if (!current_command_)
444 return;
445 if (kill(current_command_, SIGSTOP) != 0) {
446 PLOG(ERROR) << "Couldn't pause child process " << current_command_;
Ben Chan7f4bc3f2017-01-10 15:32:11 -0800447 } else {
448 is_current_command_suspended_ = true;
Alex Deymod15c5462016-03-09 18:11:12 -0800449 }
450}
451
452void PostinstallRunnerAction::ResumeAction() {
453 if (!current_command_)
454 return;
455 if (kill(current_command_, SIGCONT) != 0) {
456 PLOG(ERROR) << "Couldn't resume child process " << current_command_;
Ben Chan7f4bc3f2017-01-10 15:32:11 -0800457 } else {
458 is_current_command_suspended_ = false;
Alex Deymod15c5462016-03-09 18:11:12 -0800459 }
460}
461
462void PostinstallRunnerAction::TerminateProcessing() {
463 if (!current_command_)
464 return;
465 // Calling KillExec() will discard the callback we registered and therefore
466 // the unretained reference to this object.
467 Subprocess::Get().KillExec(current_command_);
Ben Chan7f4bc3f2017-01-10 15:32:11 -0800468
469 // If the command has been suspended, resume it after KillExec() so that the
470 // process can process the SIGTERM sent by KillExec().
471 if (is_current_command_suspended_) {
472 ResumeAction();
473 }
474
Alex Deymod15c5462016-03-09 18:11:12 -0800475 current_command_ = 0;
Alex Deymo0d298542016-03-30 18:31:49 -0700476 Cleanup();
Alex Deymod15c5462016-03-09 18:11:12 -0800477}
478
adlr@google.com3defe6a2009-12-04 20:57:17 +0000479} // namespace chromeos_update_engine