blob: d6ae97dfefc5eec167fab74d725b7aba6ae85d33 [file] [log] [blame]
Darin Petkovc1a8b422010-07-19 11:34:49 -07001// Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
rspangler@google.com49fdf182009-10-10 00:57:34 +00002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
rspangler@google.com49fdf182009-10-10 00:57:34 +00005#include "update_engine/download_action.h"
adlr@google.comc98a7ed2009-12-04 18:54:03 +00006#include <errno.h>
7#include <algorithm>
Andrew de los Reyesf9714432010-05-04 10:21:23 -07008#include <string>
9#include <vector>
adlr@google.comc98a7ed2009-12-04 18:54:03 +000010#include <glib.h>
11#include "update_engine/action_pipe.h"
Andrew de los Reyesf9714432010-05-04 10:21:23 -070012#include "update_engine/subprocess.h"
adlr@google.comc98a7ed2009-12-04 18:54:03 +000013
14using std::min;
Andrew de los Reyesf9714432010-05-04 10:21:23 -070015using std::string;
16using std::vector;
rspangler@google.com49fdf182009-10-10 00:57:34 +000017
18namespace chromeos_update_engine {
19
Darin Petkove971f332010-09-22 16:57:25 -070020// Use a buffer to reduce the number of IOPS on SSD devices.
21const size_t kFileWriterBufferSize = 128 * 1024; // 128 KiB
22
Darin Petkov73058b42010-10-06 16:32:19 -070023DownloadAction::DownloadAction(PrefsInterface* prefs,
24 HttpFetcher* http_fetcher)
25 : prefs_(prefs),
26 writer_(NULL),
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070027 http_fetcher_(http_fetcher),
Darin Petkov9ce452b2010-11-17 14:33:28 -080028 code_(kActionCodeSuccess),
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070029 delegate_(NULL),
30 bytes_received_(0) {}
rspangler@google.com49fdf182009-10-10 00:57:34 +000031
32DownloadAction::~DownloadAction() {}
33
34void DownloadAction::PerformAction() {
35 http_fetcher_->set_delegate(this);
rspangler@google.com49fdf182009-10-10 00:57:34 +000036
adlr@google.comc98a7ed2009-12-04 18:54:03 +000037 // Get the InstallPlan and read it
38 CHECK(HasInputObject());
Andrew de los Reyesf9185172010-05-03 11:07:05 -070039 install_plan_ = GetInputObject();
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070040 bytes_received_ = 0;
adlr@google.comc98a7ed2009-12-04 18:54:03 +000041
Andrew de los Reyesf9185172010-05-03 11:07:05 -070042 install_plan_.Dump();
adlr@google.comc98a7ed2009-12-04 18:54:03 +000043
Andrew de los Reyesf9185172010-05-03 11:07:05 -070044 if (writer_) {
45 LOG(INFO) << "Using writer for test.";
rspangler@google.com49fdf182009-10-10 00:57:34 +000046 } else {
Andrew de los Reyesf9185172010-05-03 11:07:05 -070047 if (install_plan_.is_full_update) {
48 kernel_file_writer_.reset(new DirectFileWriter);
49 rootfs_file_writer_.reset(new DirectFileWriter);
Darin Petkove971f332010-09-22 16:57:25 -070050 kernel_buffered_file_writer_.reset(
51 new BufferedFileWriter(kernel_file_writer_.get(),
52 kFileWriterBufferSize));
53 rootfs_buffered_file_writer_.reset(
54 new BufferedFileWriter(rootfs_file_writer_.get(),
55 kFileWriterBufferSize));
56 split_file_writer_.reset(
57 new SplitFileWriter(kernel_buffered_file_writer_.get(),
58 rootfs_buffered_file_writer_.get()));
Andrew de los Reyesf9185172010-05-03 11:07:05 -070059 split_file_writer_->SetFirstOpenArgs(
60 install_plan_.kernel_install_path.c_str(),
61 O_WRONLY | O_CREAT | O_TRUNC | O_LARGEFILE,
62 0644);
63 decompressing_file_writer_.reset(
64 new GzipDecompressingFileWriter(split_file_writer_.get()));
65 writer_ = decompressing_file_writer_.get();
66 } else {
Darin Petkov73058b42010-10-06 16:32:19 -070067 delta_performer_.reset(new DeltaPerformer(prefs_));
Darin Petkov3aefa862010-12-07 14:45:00 -080068 delta_performer_->set_current_kernel_hash(install_plan_.kernel_hash);
69 delta_performer_->set_current_rootfs_hash(install_plan_.rootfs_hash);
Andrew de los Reyesf9185172010-05-03 11:07:05 -070070 writer_ = delta_performer_.get();
71 }
rspangler@google.com49fdf182009-10-10 00:57:34 +000072 }
Andrew de los Reyesf9185172010-05-03 11:07:05 -070073 int rc = writer_->Open(install_plan_.install_path.c_str(),
74 O_TRUNC | O_WRONLY | O_CREAT | O_LARGEFILE,
75 0644);
rspangler@google.com49fdf182009-10-10 00:57:34 +000076 if (rc < 0) {
Andrew de los Reyesf9185172010-05-03 11:07:05 -070077 LOG(ERROR) << "Unable to open output file " << install_plan_.install_path;
rspangler@google.com49fdf182009-10-10 00:57:34 +000078 // report error to processor
Darin Petkovc97435c2010-07-20 12:37:43 -070079 processor_->ActionComplete(this, kActionCodeInstallDeviceOpenError);
rspangler@google.com49fdf182009-10-10 00:57:34 +000080 return;
81 }
Andrew de los Reyesf9185172010-05-03 11:07:05 -070082 if (!install_plan_.is_full_update) {
83 if (!delta_performer_->OpenKernel(
84 install_plan_.kernel_install_path.c_str())) {
85 LOG(ERROR) << "Unable to open kernel file "
86 << install_plan_.kernel_install_path.c_str();
87 writer_->Close();
Darin Petkovc97435c2010-07-20 12:37:43 -070088 processor_->ActionComplete(this, kActionCodeKernelDeviceOpenError);
Andrew de los Reyesf9185172010-05-03 11:07:05 -070089 return;
90 }
91 }
Darin Petkov9d911fa2010-08-19 09:36:08 -070092 if (delegate_) {
93 delegate_->SetDownloadStatus(true); // Set to active.
94 }
Andrew de los Reyesf9185172010-05-03 11:07:05 -070095 http_fetcher_->BeginTransfer(install_plan_.download_url);
rspangler@google.com49fdf182009-10-10 00:57:34 +000096}
97
98void DownloadAction::TerminateProcessing() {
Darin Petkov698d0412010-10-13 10:59:44 -070099 if (writer_) {
100 LOG_IF(WARNING, writer_->Close() != 0) << "Error closing the writer.";
101 writer_ = NULL;
102 }
Darin Petkov9d911fa2010-08-19 09:36:08 -0700103 if (delegate_) {
104 delegate_->SetDownloadStatus(false); // Set to inactive.
105 }
Darin Petkov9ce452b2010-11-17 14:33:28 -0800106 // Terminates the transfer. The action is terminated, if necessary, when the
107 // TransferTerminated callback is received.
108 http_fetcher_->TerminateTransfer();
rspangler@google.com49fdf182009-10-10 00:57:34 +0000109}
110
Andrew de los Reyes34e41a12010-10-26 20:07:58 -0700111void DownloadAction::SeekToOffset(off_t offset) {
112 bytes_received_ = offset;
113}
114
rspangler@google.com49fdf182009-10-10 00:57:34 +0000115void DownloadAction::ReceivedBytes(HttpFetcher *fetcher,
116 const char* bytes,
117 int length) {
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700118 bytes_received_ += length;
119 if (delegate_)
120 delegate_->BytesReceived(bytes_received_, install_plan_.size);
Darin Petkov698d0412010-10-13 10:59:44 -0700121 if (writer_ && writer_->Write(bytes, length) < 0) {
122 LOG(ERROR) << "Write error -- terminating processing.";
Darin Petkov9ce452b2010-11-17 14:33:28 -0800123 // Don't tell the action processor that the action is complete until we get
124 // the TransferTerminated callback. Otherwise, this and the HTTP fetcher
125 // objects may get destroyed before all callbacks are complete.
126 code_ = kActionCodeDownloadWriteError;
Darin Petkov698d0412010-10-13 10:59:44 -0700127 TerminateProcessing();
Darin Petkov698d0412010-10-13 10:59:44 -0700128 return;
129 }
Darin Petkovcdc20a92010-10-27 14:04:37 -0700130 // DeltaPerformer checks the hashes for delta updates.
131 if (install_plan_.is_full_update) {
132 omaha_hash_calculator_.Update(bytes, length);
133 }
rspangler@google.com49fdf182009-10-10 00:57:34 +0000134}
135
Andrew de los Reyesf9714432010-05-04 10:21:23 -0700136namespace {
137void FlushLinuxCaches() {
138 vector<string> command;
139 command.push_back("/bin/sync");
140 int rc;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700141 LOG(INFO) << "FlushLinuxCaches-sync...";
Andrew de los Reyesf9714432010-05-04 10:21:23 -0700142 Subprocess::SynchronousExec(command, &rc);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700143 LOG(INFO) << "FlushLinuxCaches-drop_caches...";
Andrew de los Reyesf9714432010-05-04 10:21:23 -0700144
145 const char* const drop_cmd = "3\n";
146 utils::WriteFile("/proc/sys/vm/drop_caches", drop_cmd, strlen(drop_cmd));
147
148 LOG(INFO) << "FlushLinuxCaches done.";
149}
150}
151
rspangler@google.com49fdf182009-10-10 00:57:34 +0000152void DownloadAction::TransferComplete(HttpFetcher *fetcher, bool successful) {
153 if (writer_) {
Darin Petkov698d0412010-10-13 10:59:44 -0700154 LOG_IF(WARNING, writer_->Close() != 0) << "Error closing the writer.";
rspangler@google.com49fdf182009-10-10 00:57:34 +0000155 writer_ = NULL;
156 }
Darin Petkov9d911fa2010-08-19 09:36:08 -0700157 if (delegate_) {
158 delegate_->SetDownloadStatus(false); // Set to inactive.
159 }
Darin Petkovc97435c2010-07-20 12:37:43 -0700160 ActionExitCode code =
161 successful ? kActionCodeSuccess : kActionCodeDownloadTransferError;
162 if (code == kActionCodeSuccess) {
Darin Petkov437adc42010-10-07 13:12:24 -0700163 if (!install_plan_.is_full_update) {
164 if (!delta_performer_->VerifyPayload("",
165 install_plan_.download_hash,
166 install_plan_.size)) {
167 LOG(ERROR) << "Download of " << install_plan_.download_url
168 << " failed due to payload verification error.";
169 code = kActionCodeDownloadPayloadVerificationError;
Darin Petkov3aefa862010-12-07 14:45:00 -0800170 } else if (!delta_performer_->GetNewPartitionInfo(
171 &install_plan_.kernel_size,
172 &install_plan_.kernel_hash,
173 &install_plan_.rootfs_size,
174 &install_plan_.rootfs_hash)) {
175 LOG(ERROR) << "Unable to get new partition hash info.";
176 code = kActionCodeDownloadNewPartitionInfoError;
Darin Petkov437adc42010-10-07 13:12:24 -0700177 }
178 } else {
179 // Makes sure the hash and size are correct for an old-style full update.
180 omaha_hash_calculator_.Finalize();
181 if (omaha_hash_calculator_.hash() != install_plan_.download_hash) {
182 LOG(ERROR) << "Download of " << install_plan_.download_url
183 << " failed. Expected hash " << install_plan_.download_hash
184 << " but got hash " << omaha_hash_calculator_.hash();
185 code = kActionCodeDownloadHashMismatchError;
186 } else if (bytes_received_ != install_plan_.size) {
187 LOG(ERROR) << "Download of " << install_plan_.download_url
188 << " failed. Expected size " << install_plan_.size
189 << " but got size " << bytes_received_;
190 code = kActionCodeDownloadSizeMismatchError;
191 }
rspangler@google.com49fdf182009-10-10 00:57:34 +0000192 }
193 }
Darin Petkovc1a8b422010-07-19 11:34:49 -0700194
Andrew de los Reyesf9714432010-05-04 10:21:23 -0700195 FlushLinuxCaches();
rspangler@google.com49fdf182009-10-10 00:57:34 +0000196
Darin Petkovc97435c2010-07-20 12:37:43 -0700197 // Write the path to the output pipe if we're successful.
198 if (code == kActionCodeSuccess && HasOutputPipe())
Darin Petkov3aefa862010-12-07 14:45:00 -0800199 SetOutputObject(install_plan_);
Darin Petkovc97435c2010-07-20 12:37:43 -0700200 processor_->ActionComplete(this, code);
rspangler@google.com49fdf182009-10-10 00:57:34 +0000201}
202
Darin Petkov9ce452b2010-11-17 14:33:28 -0800203void DownloadAction::TransferTerminated(HttpFetcher *fetcher) {
204 if (code_ != kActionCodeSuccess) {
205 processor_->ActionComplete(this, code_);
206 }
207}
208
rspangler@google.com49fdf182009-10-10 00:57:34 +0000209}; // namespace {}