Darin Petkov | 85d02b7 | 2011-05-17 13:25:51 -0700 | [diff] [blame] | 1 | // Copyright (c) 2011 The Chromium OS Authors. All rights reserved. |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +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 | |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 5 | #include "update_engine/download_action.h" |
adlr@google.com | c98a7ed | 2009-12-04 18:54:03 +0000 | [diff] [blame] | 6 | #include <errno.h> |
| 7 | #include <algorithm> |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 8 | #include <string> |
| 9 | #include <vector> |
adlr@google.com | c98a7ed | 2009-12-04 18:54:03 +0000 | [diff] [blame] | 10 | #include <glib.h> |
| 11 | #include "update_engine/action_pipe.h" |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 12 | #include "update_engine/subprocess.h" |
adlr@google.com | c98a7ed | 2009-12-04 18:54:03 +0000 | [diff] [blame] | 13 | |
| 14 | using std::min; |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 15 | using std::string; |
| 16 | using std::vector; |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 17 | |
| 18 | namespace chromeos_update_engine { |
| 19 | |
Darin Petkov | e971f33 | 2010-09-22 16:57:25 -0700 | [diff] [blame] | 20 | // Use a buffer to reduce the number of IOPS on SSD devices. |
| 21 | const size_t kFileWriterBufferSize = 128 * 1024; // 128 KiB |
| 22 | |
Darin Petkov | 73058b4 | 2010-10-06 16:32:19 -0700 | [diff] [blame] | 23 | DownloadAction::DownloadAction(PrefsInterface* prefs, |
| 24 | HttpFetcher* http_fetcher) |
| 25 | : prefs_(prefs), |
| 26 | writer_(NULL), |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 27 | http_fetcher_(http_fetcher), |
Darin Petkov | 9ce452b | 2010-11-17 14:33:28 -0800 | [diff] [blame] | 28 | code_(kActionCodeSuccess), |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 29 | delegate_(NULL), |
Andrew de los Reyes | 771e1bd | 2011-08-30 14:47:23 -0700 | [diff] [blame] | 30 | bytes_received_(0) {} |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 31 | |
| 32 | DownloadAction::~DownloadAction() {} |
| 33 | |
| 34 | void DownloadAction::PerformAction() { |
| 35 | http_fetcher_->set_delegate(this); |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 36 | |
adlr@google.com | c98a7ed | 2009-12-04 18:54:03 +0000 | [diff] [blame] | 37 | // Get the InstallPlan and read it |
| 38 | CHECK(HasInputObject()); |
Andrew de los Reyes | f918517 | 2010-05-03 11:07:05 -0700 | [diff] [blame] | 39 | install_plan_ = GetInputObject(); |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 40 | bytes_received_ = 0; |
adlr@google.com | c98a7ed | 2009-12-04 18:54:03 +0000 | [diff] [blame] | 41 | |
Andrew de los Reyes | f918517 | 2010-05-03 11:07:05 -0700 | [diff] [blame] | 42 | install_plan_.Dump(); |
adlr@google.com | c98a7ed | 2009-12-04 18:54:03 +0000 | [diff] [blame] | 43 | |
Andrew de los Reyes | f918517 | 2010-05-03 11:07:05 -0700 | [diff] [blame] | 44 | if (writer_) { |
| 45 | LOG(INFO) << "Using writer for test."; |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 46 | } else { |
Darin Petkov | 7ed561b | 2011-10-04 02:59:03 -0700 | [diff] [blame^] | 47 | delta_performer_.reset(new DeltaPerformer(prefs_)); |
| 48 | delta_performer_->set_current_kernel_hash(install_plan_.kernel_hash); |
| 49 | delta_performer_->set_current_rootfs_hash(install_plan_.rootfs_hash); |
| 50 | writer_ = delta_performer_.get(); |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 51 | } |
Andrew de los Reyes | f918517 | 2010-05-03 11:07:05 -0700 | [diff] [blame] | 52 | int rc = writer_->Open(install_plan_.install_path.c_str(), |
| 53 | O_TRUNC | O_WRONLY | O_CREAT | O_LARGEFILE, |
| 54 | 0644); |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 55 | if (rc < 0) { |
Andrew de los Reyes | f918517 | 2010-05-03 11:07:05 -0700 | [diff] [blame] | 56 | LOG(ERROR) << "Unable to open output file " << install_plan_.install_path; |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 57 | // report error to processor |
Darin Petkov | c97435c | 2010-07-20 12:37:43 -0700 | [diff] [blame] | 58 | processor_->ActionComplete(this, kActionCodeInstallDeviceOpenError); |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 59 | return; |
| 60 | } |
Darin Petkov | 7ed561b | 2011-10-04 02:59:03 -0700 | [diff] [blame^] | 61 | if (delta_performer_.get() && |
| 62 | !delta_performer_->OpenKernel( |
| 63 | install_plan_.kernel_install_path.c_str())) { |
| 64 | LOG(ERROR) << "Unable to open kernel file " |
| 65 | << install_plan_.kernel_install_path.c_str(); |
| 66 | writer_->Close(); |
| 67 | processor_->ActionComplete(this, kActionCodeKernelDeviceOpenError); |
| 68 | return; |
Andrew de los Reyes | f918517 | 2010-05-03 11:07:05 -0700 | [diff] [blame] | 69 | } |
Darin Petkov | 9d911fa | 2010-08-19 09:36:08 -0700 | [diff] [blame] | 70 | if (delegate_) { |
| 71 | delegate_->SetDownloadStatus(true); // Set to active. |
| 72 | } |
Andrew de los Reyes | f918517 | 2010-05-03 11:07:05 -0700 | [diff] [blame] | 73 | http_fetcher_->BeginTransfer(install_plan_.download_url); |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | void DownloadAction::TerminateProcessing() { |
Darin Petkov | 698d041 | 2010-10-13 10:59:44 -0700 | [diff] [blame] | 77 | if (writer_) { |
| 78 | LOG_IF(WARNING, writer_->Close() != 0) << "Error closing the writer."; |
| 79 | writer_ = NULL; |
| 80 | } |
Darin Petkov | 9d911fa | 2010-08-19 09:36:08 -0700 | [diff] [blame] | 81 | if (delegate_) { |
| 82 | delegate_->SetDownloadStatus(false); // Set to inactive. |
| 83 | } |
Darin Petkov | 9ce452b | 2010-11-17 14:33:28 -0800 | [diff] [blame] | 84 | // Terminates the transfer. The action is terminated, if necessary, when the |
| 85 | // TransferTerminated callback is received. |
| 86 | http_fetcher_->TerminateTransfer(); |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 87 | } |
| 88 | |
Andrew de los Reyes | 34e41a1 | 2010-10-26 20:07:58 -0700 | [diff] [blame] | 89 | void DownloadAction::SeekToOffset(off_t offset) { |
| 90 | bytes_received_ = offset; |
| 91 | } |
| 92 | |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 93 | void DownloadAction::ReceivedBytes(HttpFetcher *fetcher, |
| 94 | const char* bytes, |
| 95 | int length) { |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 96 | bytes_received_ += length; |
| 97 | if (delegate_) |
| 98 | delegate_->BytesReceived(bytes_received_, install_plan_.size); |
Darin Petkov | 698d041 | 2010-10-13 10:59:44 -0700 | [diff] [blame] | 99 | if (writer_ && writer_->Write(bytes, length) < 0) { |
| 100 | LOG(ERROR) << "Write error -- terminating processing."; |
Darin Petkov | 9ce452b | 2010-11-17 14:33:28 -0800 | [diff] [blame] | 101 | // Don't tell the action processor that the action is complete until we get |
| 102 | // the TransferTerminated callback. Otherwise, this and the HTTP fetcher |
| 103 | // objects may get destroyed before all callbacks are complete. |
| 104 | code_ = kActionCodeDownloadWriteError; |
Darin Petkov | 698d041 | 2010-10-13 10:59:44 -0700 | [diff] [blame] | 105 | TerminateProcessing(); |
Darin Petkov | 698d041 | 2010-10-13 10:59:44 -0700 | [diff] [blame] | 106 | return; |
| 107 | } |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 108 | } |
| 109 | |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 110 | namespace { |
| 111 | void FlushLinuxCaches() { |
| 112 | vector<string> command; |
| 113 | command.push_back("/bin/sync"); |
| 114 | int rc; |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 115 | LOG(INFO) << "FlushLinuxCaches-sync..."; |
Darin Petkov | 85d02b7 | 2011-05-17 13:25:51 -0700 | [diff] [blame] | 116 | Subprocess::SynchronousExec(command, &rc, NULL); |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 117 | LOG(INFO) << "FlushLinuxCaches-drop_caches..."; |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 118 | |
| 119 | const char* const drop_cmd = "3\n"; |
| 120 | utils::WriteFile("/proc/sys/vm/drop_caches", drop_cmd, strlen(drop_cmd)); |
| 121 | |
| 122 | LOG(INFO) << "FlushLinuxCaches done."; |
| 123 | } |
| 124 | } |
| 125 | |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 126 | void DownloadAction::TransferComplete(HttpFetcher *fetcher, bool successful) { |
| 127 | if (writer_) { |
Darin Petkov | 698d041 | 2010-10-13 10:59:44 -0700 | [diff] [blame] | 128 | LOG_IF(WARNING, writer_->Close() != 0) << "Error closing the writer."; |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 129 | writer_ = NULL; |
| 130 | } |
Darin Petkov | 9d911fa | 2010-08-19 09:36:08 -0700 | [diff] [blame] | 131 | if (delegate_) { |
| 132 | delegate_->SetDownloadStatus(false); // Set to inactive. |
| 133 | } |
Darin Petkov | c97435c | 2010-07-20 12:37:43 -0700 | [diff] [blame] | 134 | ActionExitCode code = |
| 135 | successful ? kActionCodeSuccess : kActionCodeDownloadTransferError; |
Darin Petkov | 7ed561b | 2011-10-04 02:59:03 -0700 | [diff] [blame^] | 136 | if (code == kActionCodeSuccess && delta_performer_.get()) { |
| 137 | code = delta_performer_->VerifyPayload("", |
| 138 | install_plan_.download_hash, |
| 139 | install_plan_.size); |
| 140 | if (code != kActionCodeSuccess) { |
| 141 | LOG(ERROR) << "Download of " << install_plan_.download_url |
| 142 | << " failed due to payload verification error."; |
| 143 | } else if (!delta_performer_->GetNewPartitionInfo( |
| 144 | &install_plan_.kernel_size, |
| 145 | &install_plan_.kernel_hash, |
| 146 | &install_plan_.rootfs_size, |
| 147 | &install_plan_.rootfs_hash)) { |
| 148 | LOG(ERROR) << "Unable to get new partition hash info."; |
| 149 | code = kActionCodeDownloadNewPartitionInfoError; |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 150 | } |
| 151 | } |
Darin Petkov | c1a8b42 | 2010-07-19 11:34:49 -0700 | [diff] [blame] | 152 | |
Andrew de los Reyes | f971443 | 2010-05-04 10:21:23 -0700 | [diff] [blame] | 153 | FlushLinuxCaches(); |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 154 | |
Darin Petkov | c97435c | 2010-07-20 12:37:43 -0700 | [diff] [blame] | 155 | // Write the path to the output pipe if we're successful. |
| 156 | if (code == kActionCodeSuccess && HasOutputPipe()) |
Darin Petkov | 3aefa86 | 2010-12-07 14:45:00 -0800 | [diff] [blame] | 157 | SetOutputObject(install_plan_); |
Darin Petkov | c97435c | 2010-07-20 12:37:43 -0700 | [diff] [blame] | 158 | processor_->ActionComplete(this, code); |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 159 | } |
| 160 | |
Darin Petkov | 9ce452b | 2010-11-17 14:33:28 -0800 | [diff] [blame] | 161 | void DownloadAction::TransferTerminated(HttpFetcher *fetcher) { |
| 162 | if (code_ != kActionCodeSuccess) { |
| 163 | processor_->ActionComplete(this, code_); |
| 164 | } |
| 165 | } |
| 166 | |
rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 167 | }; // namespace {} |