blob: 4a70b98a1c1d8f5a5ad15c45f5a983843628b29a [file] [log] [blame]
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001/*
2 * Copyright (C) 2014 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 */
16
17#include <ctype.h>
Sami Tolvanen90221202014-12-09 16:39:47 +000018#include <dirent.h>
Tao Bao641fa972018-04-25 18:59:40 -070019#include <errno.h>
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070020#include <fcntl.h>
Tao Bao0bbc7642017-03-29 23:57:47 -070021#include <inttypes.h>
Tao Baoba9a42a2015-06-23 23:23:33 -070022#include <linux/fs.h>
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070023#include <pthread.h>
24#include <stdarg.h>
25#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
Tao Bao641fa972018-04-25 18:59:40 -070028#include <sys/ioctl.h>
Sami Tolvanen90221202014-12-09 16:39:47 +000029#include <sys/stat.h>
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070030#include <sys/types.h>
31#include <sys/wait.h>
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070032#include <time.h>
33#include <unistd.h>
34
Tao Baoec8272f2017-03-15 17:39:01 -070035#include <functional>
Tianjie Xu284752e2017-12-05 11:04:17 -080036#include <limits>
Tao Baoe6aa3322015-08-05 15:20:27 -070037#include <memory>
38#include <string>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070039#include <unordered_map>
Tao Bao0940fe12015-08-27 16:41:21 -070040#include <vector>
Tao Baoe6aa3322015-08-05 15:20:27 -070041
Tianjie Xu284752e2017-12-05 11:04:17 -080042#include <android-base/file.h>
Tao Bao039f2da2016-11-22 16:29:50 -080043#include <android-base/logging.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080044#include <android-base/parseint.h>
45#include <android-base/strings.h>
Elliott Hughesbcabd092016-03-22 20:19:22 -070046#include <android-base/unique_fd.h>
Tao Bao51412212016-12-28 14:44:05 -080047#include <applypatch/applypatch.h>
Tianjie Xu107a34f2017-06-29 17:04:21 -070048#include <brotli/decode.h>
Tao Bao641fa972018-04-25 18:59:40 -070049#include <fec/io.h>
Tao Bao51412212016-12-28 14:44:05 -080050#include <openssl/sha.h>
Tianjie Xua946b9e2017-03-21 16:24:57 -070051#include <private/android_filesystem_config.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070052#include <ziparchive/zip_archive.h>
Tao Baoe6aa3322015-08-05 15:20:27 -070053
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070054#include "edify/expr.h"
Tao Baod33b2f82017-09-28 21:29:11 -070055#include "otafault/ota_io.h"
Tao Bao1fc5bf32017-10-06 07:43:41 -070056#include "otautil/error_code.h"
Tao Bao641fa972018-04-25 18:59:40 -070057#include "otautil/paths.h"
Tao Bao09e468f2017-09-29 14:39:33 -070058#include "otautil/print_sha1.h"
59#include "otautil/rangeset.h"
Tao Bao8f237572017-03-26 13:36:49 -070060#include "updater/install.h"
Tao Bao0c7839a2016-10-10 15:48:37 -070061#include "updater/updater.h"
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070062
Sami Tolvanene82fa182015-06-10 15:58:12 +000063// Set this to 0 to interpret 'erase' transfers to mean do a
64// BLKDISCARD ioctl (the normal behavior). Set to 1 to interpret
65// erase to mean fill the region with zeroes.
66#define DEBUG_ERASE 0
67
Tao Bao51412212016-12-28 14:44:05 -080068static constexpr size_t BLOCKSIZE = 4096;
Tao Bao51412212016-12-28 14:44:05 -080069static constexpr mode_t STASH_DIRECTORY_MODE = 0700;
70static constexpr mode_t STASH_FILE_MODE = 0600;
Sami Tolvanen90221202014-12-09 16:39:47 +000071
Tianjie Xu16255832016-04-30 11:49:59 -070072static CauseCode failure_type = kNoCause;
Tianjie Xu7ce287d2016-05-31 09:29:49 -070073static bool is_retry = false;
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070074static std::unordered_map<std::string, RangeSet> stash_map;
Tianjie Xu7eca97e2016-03-22 18:08:12 -070075
Tianjie Xu284752e2017-12-05 11:04:17 -080076static void DeleteLastCommandFile() {
Tao Bao641fa972018-04-25 18:59:40 -070077 const std::string& last_command_file = Paths::Get().last_command_file();
Tianjie Xu284752e2017-12-05 11:04:17 -080078 if (unlink(last_command_file.c_str()) == -1 && errno != ENOENT) {
79 PLOG(ERROR) << "Failed to unlink: " << last_command_file;
80 }
81}
82
83// Parse the last command index of the last update and save the result to |last_command_index|.
84// Return true if we successfully read the index.
Tao Bao26efb0a2018-05-21 14:59:55 -070085static bool ParseLastCommandFile(size_t* last_command_index) {
Tao Bao641fa972018-04-25 18:59:40 -070086 const std::string& last_command_file = Paths::Get().last_command_file();
Tianjie Xu284752e2017-12-05 11:04:17 -080087 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(last_command_file.c_str(), O_RDONLY)));
88 if (fd == -1) {
89 if (errno != ENOENT) {
90 PLOG(ERROR) << "Failed to open " << last_command_file;
91 return false;
92 }
93
94 LOG(INFO) << last_command_file << " doesn't exist.";
95 return false;
96 }
97
98 // Now that the last_command file exists, parse the last command index of previous update.
99 std::string content;
100 if (!android::base::ReadFdToString(fd.get(), &content)) {
101 LOG(ERROR) << "Failed to read: " << last_command_file;
102 return false;
103 }
104
105 std::vector<std::string> lines = android::base::Split(android::base::Trim(content), "\n");
106 if (lines.size() != 2) {
107 LOG(ERROR) << "Unexpected line counts in last command file: " << content;
108 return false;
109 }
110
111 if (!android::base::ParseInt(lines[0], last_command_index)) {
112 LOG(ERROR) << "Failed to parse integer in: " << lines[0];
113 return false;
114 }
115
116 return true;
117}
118
Tao Bao864c6682018-05-07 11:38:25 -0700119static bool FsyncDir(const std::string& dirname) {
120 android::base::unique_fd dfd(
121 TEMP_FAILURE_RETRY(ota_open(dirname.c_str(), O_RDONLY | O_DIRECTORY)));
122 if (dfd == -1) {
123 failure_type = kFileOpenFailure;
124 PLOG(ERROR) << "Failed to open " << dirname;
125 return false;
126 }
127 if (fsync(dfd) == -1) {
128 failure_type = kFsyncFailure;
129 PLOG(ERROR) << "Failed to fsync " << dirname;
130 return false;
131 }
132 return true;
133}
134
Tianjie Xuc2b2bb52018-05-15 15:09:59 -0700135// Update the last executed command index in the last_command_file.
Tao Bao26efb0a2018-05-21 14:59:55 -0700136static bool UpdateLastCommandIndex(size_t command_index, const std::string& command_string) {
Tao Bao641fa972018-04-25 18:59:40 -0700137 const std::string& last_command_file = Paths::Get().last_command_file();
Tianjie Xu284752e2017-12-05 11:04:17 -0800138 std::string last_command_tmp = last_command_file + ".tmp";
139 std::string content = std::to_string(command_index) + "\n" + command_string;
140 android::base::unique_fd wfd(
141 TEMP_FAILURE_RETRY(open(last_command_tmp.c_str(), O_WRONLY | O_CREAT | O_TRUNC, 0660)));
142 if (wfd == -1 || !android::base::WriteStringToFd(content, wfd)) {
143 PLOG(ERROR) << "Failed to update last command";
144 return false;
145 }
146
147 if (fsync(wfd) == -1) {
148 PLOG(ERROR) << "Failed to fsync " << last_command_tmp;
149 return false;
150 }
151
152 if (chown(last_command_tmp.c_str(), AID_SYSTEM, AID_SYSTEM) == -1) {
153 PLOG(ERROR) << "Failed to change owner for " << last_command_tmp;
154 return false;
155 }
156
157 if (rename(last_command_tmp.c_str(), last_command_file.c_str()) == -1) {
158 PLOG(ERROR) << "Failed to rename" << last_command_tmp;
159 return false;
160 }
161
Tao Bao864c6682018-05-07 11:38:25 -0700162 if (!FsyncDir(android::base::Dirname(last_command_file))) {
Tianjie Xu284752e2017-12-05 11:04:17 -0800163 return false;
164 }
165
Tao Bao864c6682018-05-07 11:38:25 -0700166 return true;
167}
168
169static bool SetPartitionUpdatedMarker(const std::string& marker) {
170 if (!android::base::WriteStringToFile("", marker)) {
171 PLOG(ERROR) << "Failed to write to marker file " << marker;
Tianjie Xu284752e2017-12-05 11:04:17 -0800172 return false;
173 }
Tao Bao864c6682018-05-07 11:38:25 -0700174 if (!FsyncDir(android::base::Dirname(marker))) {
175 return false;
176 }
177 LOG(INFO) << "Wrote partition updated marker to " << marker;
Tianjie Xu284752e2017-12-05 11:04:17 -0800178 return true;
179}
180
Sami Tolvanen90221202014-12-09 16:39:47 +0000181static int read_all(int fd, uint8_t* data, size_t size) {
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700182 size_t so_far = 0;
183 while (so_far < size) {
Jed Estepa7b9a462015-12-15 16:04:53 -0800184 ssize_t r = TEMP_FAILURE_RETRY(ota_read(fd, data+so_far, size-so_far));
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700185 if (r == -1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700186 failure_type = kFreadFailure;
Tao Bao039f2da2016-11-22 16:29:50 -0800187 PLOG(ERROR) << "read failed";
Sami Tolvanen90221202014-12-09 16:39:47 +0000188 return -1;
Tianjie Xu71e182b2016-08-31 18:06:33 -0700189 } else if (r == 0) {
190 failure_type = kFreadFailure;
Tao Bao039f2da2016-11-22 16:29:50 -0800191 LOG(ERROR) << "read reached unexpected EOF.";
Tianjie Xu71e182b2016-08-31 18:06:33 -0700192 return -1;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700193 }
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700194 so_far += r;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700195 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000196 return 0;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700197}
198
Tao Bao612336d2015-08-27 16:41:21 -0700199static int read_all(int fd, std::vector<uint8_t>& buffer, size_t size) {
200 return read_all(fd, buffer.data(), size);
201}
202
Sami Tolvanen90221202014-12-09 16:39:47 +0000203static int write_all(int fd, const uint8_t* data, size_t size) {
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700204 size_t written = 0;
205 while (written < size) {
Jed Estepa7b9a462015-12-15 16:04:53 -0800206 ssize_t w = TEMP_FAILURE_RETRY(ota_write(fd, data+written, size-written));
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700207 if (w == -1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700208 failure_type = kFwriteFailure;
Tao Bao039f2da2016-11-22 16:29:50 -0800209 PLOG(ERROR) << "write failed";
Sami Tolvanen90221202014-12-09 16:39:47 +0000210 return -1;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700211 }
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700212 written += w;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700213 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000214
Sami Tolvanen90221202014-12-09 16:39:47 +0000215 return 0;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700216}
217
Tao Bao612336d2015-08-27 16:41:21 -0700218static int write_all(int fd, const std::vector<uint8_t>& buffer, size_t size) {
219 return write_all(fd, buffer.data(), size);
220}
221
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700222static bool discard_blocks(int fd, off64_t offset, uint64_t size) {
Tao Baobf5b77d2017-03-30 16:57:29 -0700223 // Don't discard blocks unless the update is a retry run.
224 if (!is_retry) {
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700225 return true;
Tao Baobf5b77d2017-03-30 16:57:29 -0700226 }
227
228 uint64_t args[2] = { static_cast<uint64_t>(offset), size };
229 if (ioctl(fd, BLKDISCARD, &args) == -1) {
230 PLOG(ERROR) << "BLKDISCARD ioctl failed";
231 return false;
232 }
233 return true;
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700234}
235
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700236static bool check_lseek(int fd, off64_t offset, int whence) {
237 off64_t rc = TEMP_FAILURE_RETRY(lseek64(fd, offset, whence));
238 if (rc == -1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700239 failure_type = kLseekFailure;
Tao Bao039f2da2016-11-22 16:29:50 -0800240 PLOG(ERROR) << "lseek64 failed";
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700241 return false;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700242 }
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700243 return true;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700244}
245
Tao Bao612336d2015-08-27 16:41:21 -0700246static void allocate(size_t size, std::vector<uint8_t>& buffer) {
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700247 // if the buffer's big enough, reuse it.
Tao Bao612336d2015-08-27 16:41:21 -0700248 if (size <= buffer.size()) return;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700249
Tao Bao612336d2015-08-27 16:41:21 -0700250 buffer.resize(size);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700251}
252
Tao Bao60a70af2017-03-26 14:03:52 -0700253/**
254 * RangeSinkWriter reads data from the given FD, and writes them to the destination specified by the
255 * given RangeSet.
256 */
257class RangeSinkWriter {
258 public:
259 RangeSinkWriter(int fd, const RangeSet& tgt)
Tianjie Xu107a34f2017-06-29 17:04:21 -0700260 : fd_(fd),
261 tgt_(tgt),
262 next_range_(0),
263 current_range_left_(0),
264 bytes_written_(0) {
Tao Baobf5b77d2017-03-30 16:57:29 -0700265 CHECK_NE(tgt.size(), static_cast<size_t>(0));
Tao Bao60a70af2017-03-26 14:03:52 -0700266 };
Tao Bao0940fe12015-08-27 16:41:21 -0700267
Tao Bao60a70af2017-03-26 14:03:52 -0700268 bool Finished() const {
Tao Baobf5b77d2017-03-30 16:57:29 -0700269 return next_range_ == tgt_.size() && current_range_left_ == 0;
Tao Baof7eb7602017-03-27 15:12:48 -0700270 }
271
Tianjie Xu6ed175d2017-07-18 11:29:40 -0700272 size_t AvailableSpace() const {
273 return tgt_.blocks() * BLOCKSIZE - bytes_written_;
274 }
275
276 // Return number of bytes written; and 0 indicates a writing failure.
277 size_t Write(const uint8_t* data, size_t size) {
Tao Bao60a70af2017-03-26 14:03:52 -0700278 if (Finished()) {
279 LOG(ERROR) << "range sink write overrun; can't write " << size << " bytes";
280 return 0;
Tao Baof7eb7602017-03-27 15:12:48 -0700281 }
282
Tianjie Xu6ed175d2017-07-18 11:29:40 -0700283 size_t written = 0;
Tao Bao60a70af2017-03-26 14:03:52 -0700284 while (size > 0) {
285 // Move to the next range as needed.
Tianjie Xu107a34f2017-06-29 17:04:21 -0700286 if (!SeekToOutputRange()) {
287 break;
Tao Bao60a70af2017-03-26 14:03:52 -0700288 }
Tao Baof7eb7602017-03-27 15:12:48 -0700289
Tao Bao60a70af2017-03-26 14:03:52 -0700290 size_t write_now = size;
291 if (current_range_left_ < write_now) {
292 write_now = current_range_left_;
293 }
Tao Baof7eb7602017-03-27 15:12:48 -0700294
Tao Bao60a70af2017-03-26 14:03:52 -0700295 if (write_all(fd_, data, write_now) == -1) {
Tao Baof7eb7602017-03-27 15:12:48 -0700296 break;
297 }
Tao Bao60a70af2017-03-26 14:03:52 -0700298
299 data += write_now;
300 size -= write_now;
301
302 current_range_left_ -= write_now;
Tianjie Xu6ed175d2017-07-18 11:29:40 -0700303 written += write_now;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700304 }
Tao Bao60a70af2017-03-26 14:03:52 -0700305
Tianjie Xu6ed175d2017-07-18 11:29:40 -0700306 bytes_written_ += written;
307 return written;
Tao Baof7eb7602017-03-27 15:12:48 -0700308 }
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700309
Tianjie Xu3a8d98d2017-04-03 20:01:17 -0700310 size_t BytesWritten() const {
311 return bytes_written_;
312 }
313
Tianjie Xu6ed175d2017-07-18 11:29:40 -0700314 private:
Tianjie Xu107a34f2017-06-29 17:04:21 -0700315 // Set up the output cursor, move to next range if needed.
316 bool SeekToOutputRange() {
317 // We haven't finished the current range yet.
318 if (current_range_left_ != 0) {
319 return true;
320 }
321 // We can't write any more; let the write function return how many bytes have been written
322 // so far.
323 if (next_range_ >= tgt_.size()) {
324 return false;
325 }
326
327 const Range& range = tgt_[next_range_];
328 off64_t offset = static_cast<off64_t>(range.first) * BLOCKSIZE;
329 current_range_left_ = (range.second - range.first) * BLOCKSIZE;
330 next_range_++;
331
332 if (!discard_blocks(fd_, offset, current_range_left_)) {
333 return false;
334 }
335 if (!check_lseek(fd_, offset, SEEK_SET)) {
336 return false;
337 }
338 return true;
339 }
340
341 // The output file descriptor.
Tao Bao60a70af2017-03-26 14:03:52 -0700342 int fd_;
Tianjie Xu107a34f2017-06-29 17:04:21 -0700343 // The destination ranges for the data.
Tao Bao60a70af2017-03-26 14:03:52 -0700344 const RangeSet& tgt_;
345 // The next range that we should write to.
346 size_t next_range_;
347 // The number of bytes to write before moving to the next range.
348 size_t current_range_left_;
Tianjie Xu3a8d98d2017-04-03 20:01:17 -0700349 // Total bytes written by the writer.
350 size_t bytes_written_;
Tao Bao60a70af2017-03-26 14:03:52 -0700351};
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700352
Tao Bao60a70af2017-03-26 14:03:52 -0700353/**
354 * All of the data for all the 'new' transfers is contained in one file in the update package,
355 * concatenated together in the order in which transfers.list will need it. We want to stream it out
356 * of the archive (it's compressed) without writing it to a temp file, but we can't write each
357 * section until it's that transfer's turn to go.
358 *
359 * To achieve this, we expand the new data from the archive in a background thread, and block that
360 * threads 'receive uncompressed data' function until the main thread has reached a point where we
361 * want some new data to be written. We signal the background thread with the destination for the
362 * data and block the main thread, waiting for the background thread to complete writing that
363 * section. Then it signals the main thread to wake up and goes back to blocking waiting for a
364 * transfer.
365 *
366 * NewThreadInfo is the struct used to pass information back and forth between the two threads. When
367 * the main thread wants some data written, it sets writer to the destination location and signals
368 * the condition. When the background thread is done writing, it clears writer and signals the
369 * condition again.
370 */
Tao Bao0940fe12015-08-27 16:41:21 -0700371struct NewThreadInfo {
Tao Bao60a70af2017-03-26 14:03:52 -0700372 ZipArchiveHandle za;
373 ZipEntry entry;
Tianjie Xu107a34f2017-06-29 17:04:21 -0700374 bool brotli_compressed;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700375
Tianjie Xu107a34f2017-06-29 17:04:21 -0700376 std::unique_ptr<RangeSinkWriter> writer;
377 BrotliDecoderState* brotli_decoder_state;
Tianjie Xu3a8d98d2017-04-03 20:01:17 -0700378 bool receiver_available;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700379
Tao Bao60a70af2017-03-26 14:03:52 -0700380 pthread_mutex_t mu;
381 pthread_cond_t cv;
Tao Bao0940fe12015-08-27 16:41:21 -0700382};
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700383
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -0700384static bool receive_new_data(const uint8_t* data, size_t size, void* cookie) {
Tao Bao60a70af2017-03-26 14:03:52 -0700385 NewThreadInfo* nti = static_cast<NewThreadInfo*>(cookie);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700386
Tao Bao60a70af2017-03-26 14:03:52 -0700387 while (size > 0) {
388 // Wait for nti->writer to be non-null, indicating some of this data is wanted.
389 pthread_mutex_lock(&nti->mu);
390 while (nti->writer == nullptr) {
Tianjie Xu5450c842017-10-18 13:15:21 -0700391 // End the new data receiver if we encounter an error when performing block image update.
392 if (!nti->receiver_available) {
393 pthread_mutex_unlock(&nti->mu);
394 return false;
395 }
Tao Bao60a70af2017-03-26 14:03:52 -0700396 pthread_cond_wait(&nti->cv, &nti->mu);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700397 }
Tao Bao60a70af2017-03-26 14:03:52 -0700398 pthread_mutex_unlock(&nti->mu);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700399
Tao Bao60a70af2017-03-26 14:03:52 -0700400 // At this point nti->writer is set, and we own it. The main thread is waiting for it to
401 // disappear from nti.
Tianjie Xu6ed175d2017-07-18 11:29:40 -0700402 size_t write_now = std::min(size, nti->writer->AvailableSpace());
403 if (nti->writer->Write(data, write_now) != write_now) {
404 LOG(ERROR) << "Failed to write " << write_now << " bytes.";
Tianjie Xu107a34f2017-06-29 17:04:21 -0700405 return false;
406 }
Tianjie Xu6ed175d2017-07-18 11:29:40 -0700407
408 data += write_now;
409 size -= write_now;
410
411 if (nti->writer->Finished()) {
412 // We have written all the bytes desired by this writer.
413
414 pthread_mutex_lock(&nti->mu);
415 nti->writer = nullptr;
416 pthread_cond_broadcast(&nti->cv);
417 pthread_mutex_unlock(&nti->mu);
418 }
419 }
420
421 return true;
422}
423
424static bool receive_brotli_new_data(const uint8_t* data, size_t size, void* cookie) {
425 NewThreadInfo* nti = static_cast<NewThreadInfo*>(cookie);
426
427 while (size > 0 || BrotliDecoderHasMoreOutput(nti->brotli_decoder_state)) {
428 // Wait for nti->writer to be non-null, indicating some of this data is wanted.
429 pthread_mutex_lock(&nti->mu);
430 while (nti->writer == nullptr) {
Tianjie Xu5450c842017-10-18 13:15:21 -0700431 // End the receiver if we encounter an error when performing block image update.
432 if (!nti->receiver_available) {
433 pthread_mutex_unlock(&nti->mu);
434 return false;
435 }
Tianjie Xu6ed175d2017-07-18 11:29:40 -0700436 pthread_cond_wait(&nti->cv, &nti->mu);
437 }
438 pthread_mutex_unlock(&nti->mu);
439
440 // At this point nti->writer is set, and we own it. The main thread is waiting for it to
441 // disappear from nti.
442
443 size_t buffer_size = std::min<size_t>(32768, nti->writer->AvailableSpace());
444 if (buffer_size == 0) {
445 LOG(ERROR) << "No space left in output range";
446 return false;
447 }
448 uint8_t buffer[buffer_size];
449 size_t available_in = size;
450 size_t available_out = buffer_size;
451 uint8_t* next_out = buffer;
452
453 // The brotli decoder will update |data|, |available_in|, |next_out| and |available_out|.
454 BrotliDecoderResult result = BrotliDecoderDecompressStream(
455 nti->brotli_decoder_state, &available_in, &data, &available_out, &next_out, nullptr);
456
457 if (result == BROTLI_DECODER_RESULT_ERROR) {
458 LOG(ERROR) << "Decompression failed with "
459 << BrotliDecoderErrorString(BrotliDecoderGetErrorCode(nti->brotli_decoder_state));
460 return false;
461 }
462
463 LOG(DEBUG) << "bytes to write: " << buffer_size - available_out << ", bytes consumed "
464 << size - available_in << ", decoder status " << result;
465
466 size_t write_now = buffer_size - available_out;
467 if (nti->writer->Write(buffer, write_now) != write_now) {
468 LOG(ERROR) << "Failed to write " << write_now << " bytes.";
469 return false;
470 }
471
472 // Update the remaining size. The input data ptr is already updated by brotli decoder function.
473 size = available_in;
Tao Bao60a70af2017-03-26 14:03:52 -0700474
475 if (nti->writer->Finished()) {
476 // We have written all the bytes desired by this writer.
477
478 pthread_mutex_lock(&nti->mu);
479 nti->writer = nullptr;
480 pthread_cond_broadcast(&nti->cv);
481 pthread_mutex_unlock(&nti->mu);
482 }
483 }
484
485 return true;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700486}
487
488static void* unzip_new_data(void* cookie) {
Tianjie Xu3a8d98d2017-04-03 20:01:17 -0700489 NewThreadInfo* nti = static_cast<NewThreadInfo*>(cookie);
Tianjie Xu6ed175d2017-07-18 11:29:40 -0700490 if (nti->brotli_compressed) {
491 ProcessZipEntryContents(nti->za, &nti->entry, receive_brotli_new_data, nti);
492 } else {
493 ProcessZipEntryContents(nti->za, &nti->entry, receive_new_data, nti);
494 }
Tianjie Xu3a8d98d2017-04-03 20:01:17 -0700495 pthread_mutex_lock(&nti->mu);
496 nti->receiver_available = false;
497 if (nti->writer != nullptr) {
498 pthread_cond_broadcast(&nti->cv);
499 }
500 pthread_mutex_unlock(&nti->mu);
501 return nullptr;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700502}
503
Tao Bao612336d2015-08-27 16:41:21 -0700504static int ReadBlocks(const RangeSet& src, std::vector<uint8_t>& buffer, int fd) {
Tao Baobf5b77d2017-03-30 16:57:29 -0700505 size_t p = 0;
506 for (const auto& range : src) {
507 if (!check_lseek(fd, static_cast<off64_t>(range.first) * BLOCKSIZE, SEEK_SET)) {
508 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000509 }
510
Tao Baobf5b77d2017-03-30 16:57:29 -0700511 size_t size = (range.second - range.first) * BLOCKSIZE;
512 if (read_all(fd, buffer.data() + p, size) == -1) {
513 return -1;
514 }
515
516 p += size;
517 }
518
519 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +0000520}
521
Tao Bao612336d2015-08-27 16:41:21 -0700522static int WriteBlocks(const RangeSet& tgt, const std::vector<uint8_t>& buffer, int fd) {
Tao Bao60a70af2017-03-26 14:03:52 -0700523 size_t written = 0;
Tao Baobf5b77d2017-03-30 16:57:29 -0700524 for (const auto& range : tgt) {
525 off64_t offset = static_cast<off64_t>(range.first) * BLOCKSIZE;
526 size_t size = (range.second - range.first) * BLOCKSIZE;
Tao Bao60a70af2017-03-26 14:03:52 -0700527 if (!discard_blocks(fd, offset, size)) {
528 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000529 }
530
Tao Bao60a70af2017-03-26 14:03:52 -0700531 if (!check_lseek(fd, offset, SEEK_SET)) {
532 return -1;
533 }
534
535 if (write_all(fd, buffer.data() + written, size) == -1) {
536 return -1;
537 }
538
539 written += size;
540 }
541
542 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +0000543}
544
Tao Baobaad2d42015-12-06 16:56:27 -0800545// Parameters for transfer list command functions
546struct CommandParameters {
547 std::vector<std::string> tokens;
548 size_t cpos;
549 const char* cmdname;
550 const char* cmdline;
551 std::string freestash;
552 std::string stashbase;
553 bool canwrite;
554 int createdstash;
Elliott Hughesbcabd092016-03-22 20:19:22 -0700555 android::base::unique_fd fd;
Tao Baobaad2d42015-12-06 16:56:27 -0800556 bool foundwrites;
557 bool isunresumable;
558 int version;
559 size_t written;
Tianjie Xudd874b12016-05-13 12:13:15 -0700560 size_t stashed;
Tao Baobaad2d42015-12-06 16:56:27 -0800561 NewThreadInfo nti;
562 pthread_t thread;
563 std::vector<uint8_t> buffer;
564 uint8_t* patch_start;
Tianjie Xu284752e2017-12-05 11:04:17 -0800565 bool target_verified; // The target blocks have expected contents already.
Tao Baobaad2d42015-12-06 16:56:27 -0800566};
567
Tianjie Xu2cd36ba2017-03-15 23:52:46 +0000568// Print the hash in hex for corrupted source blocks (excluding the stashed blocks which is
569// handled separately).
570static void PrintHashForCorruptedSourceBlocks(const CommandParameters& params,
571 const std::vector<uint8_t>& buffer) {
572 LOG(INFO) << "unexpected contents of source blocks in cmd:\n" << params.cmdline;
Tianjie Xu2cd36ba2017-03-15 23:52:46 +0000573 CHECK(params.tokens[0] == "move" || params.tokens[0] == "bsdiff" ||
574 params.tokens[0] == "imgdiff");
575
576 size_t pos = 0;
577 // Command example:
578 // move <onehash> <tgt_range> <src_blk_count> <src_range> [<loc_range> <stashed_blocks>]
579 // bsdiff <offset> <len> <src_hash> <tgt_hash> <tgt_range> <src_blk_count> <src_range>
580 // [<loc_range> <stashed_blocks>]
581 if (params.tokens[0] == "move") {
582 // src_range for move starts at the 4th position.
583 if (params.tokens.size() < 5) {
584 LOG(ERROR) << "failed to parse source range in cmd:\n" << params.cmdline;
585 return;
586 }
587 pos = 4;
588 } else {
589 // src_range for diff starts at the 7th position.
590 if (params.tokens.size() < 8) {
591 LOG(ERROR) << "failed to parse source range in cmd:\n" << params.cmdline;
592 return;
593 }
594 pos = 7;
595 }
596
597 // Source blocks in stash only, no work to do.
598 if (params.tokens[pos] == "-") {
599 return;
600 }
601
Tao Bao8f237572017-03-26 13:36:49 -0700602 RangeSet src = RangeSet::Parse(params.tokens[pos++]);
Tao Bao67983152017-11-04 00:08:08 -0700603 if (!src) {
604 LOG(ERROR) << "Failed to parse range in " << params.cmdline;
605 return;
606 }
Tianjie Xu2cd36ba2017-03-15 23:52:46 +0000607
608 RangeSet locs;
609 // If there's no stashed blocks, content in the buffer is consecutive and has the same
610 // order as the source blocks.
611 if (pos == params.tokens.size()) {
Tao Baobf5b77d2017-03-30 16:57:29 -0700612 locs = RangeSet(std::vector<Range>{ Range{ 0, src.blocks() } });
Tianjie Xu2cd36ba2017-03-15 23:52:46 +0000613 } else {
614 // Otherwise, the next token is the offset of the source blocks in the target range.
615 // Example: for the tokens <4,63946,63947,63948,63979> <4,6,7,8,39> <stashed_blocks>;
616 // We want to print SHA-1 for the data in buffer[6], buffer[8], buffer[9] ... buffer[38];
617 // this corresponds to the 32 src blocks #63946, #63948, #63949 ... #63978.
Tao Bao8f237572017-03-26 13:36:49 -0700618 locs = RangeSet::Parse(params.tokens[pos++]);
Tao Baobf5b77d2017-03-30 16:57:29 -0700619 CHECK_EQ(src.blocks(), locs.blocks());
Tianjie Xu2cd36ba2017-03-15 23:52:46 +0000620 }
621
Tao Baobf5b77d2017-03-30 16:57:29 -0700622 LOG(INFO) << "printing hash in hex for " << src.blocks() << " source blocks";
623 for (size_t i = 0; i < src.blocks(); i++) {
Tao Bao8f237572017-03-26 13:36:49 -0700624 size_t block_num = src.GetBlockNumber(i);
625 size_t buffer_index = locs.GetBlockNumber(i);
Tianjie Xu2cd36ba2017-03-15 23:52:46 +0000626 CHECK_LE((buffer_index + 1) * BLOCKSIZE, buffer.size());
627
628 uint8_t digest[SHA_DIGEST_LENGTH];
629 SHA1(buffer.data() + buffer_index * BLOCKSIZE, BLOCKSIZE, digest);
630 std::string hexdigest = print_sha1(digest);
631 LOG(INFO) << " block number: " << block_num << ", SHA-1: " << hexdigest;
632 }
633}
634
635// If the calculated hash for the whole stash doesn't match the stash id, print the SHA-1
636// in hex for each block.
637static void PrintHashForCorruptedStashedBlocks(const std::string& id,
638 const std::vector<uint8_t>& buffer,
639 const RangeSet& src) {
640 LOG(INFO) << "printing hash in hex for stash_id: " << id;
Tao Baobf5b77d2017-03-30 16:57:29 -0700641 CHECK_EQ(src.blocks() * BLOCKSIZE, buffer.size());
Tianjie Xu2cd36ba2017-03-15 23:52:46 +0000642
Tao Baobf5b77d2017-03-30 16:57:29 -0700643 for (size_t i = 0; i < src.blocks(); i++) {
Tao Bao8f237572017-03-26 13:36:49 -0700644 size_t block_num = src.GetBlockNumber(i);
Tianjie Xu2cd36ba2017-03-15 23:52:46 +0000645
646 uint8_t digest[SHA_DIGEST_LENGTH];
647 SHA1(buffer.data() + i * BLOCKSIZE, BLOCKSIZE, digest);
648 std::string hexdigest = print_sha1(digest);
649 LOG(INFO) << " block number: " << block_num << ", SHA-1: " << hexdigest;
650 }
651}
652
653// If the stash file doesn't exist, read the source blocks this stash contains and print the
654// SHA-1 for these blocks.
655static void PrintHashForMissingStashedBlocks(const std::string& id, int fd) {
656 if (stash_map.find(id) == stash_map.end()) {
657 LOG(ERROR) << "No stash saved for id: " << id;
658 return;
659 }
660
661 LOG(INFO) << "print hash in hex for source blocks in missing stash: " << id;
662 const RangeSet& src = stash_map[id];
Tao Baobf5b77d2017-03-30 16:57:29 -0700663 std::vector<uint8_t> buffer(src.blocks() * BLOCKSIZE);
Tianjie Xu2cd36ba2017-03-15 23:52:46 +0000664 if (ReadBlocks(src, buffer, fd) == -1) {
665 LOG(ERROR) << "failed to read source blocks for stash: " << id;
666 return;
667 }
668 PrintHashForCorruptedStashedBlocks(id, buffer, src);
669}
670
Tao Bao612336d2015-08-27 16:41:21 -0700671static int VerifyBlocks(const std::string& expected, const std::vector<uint8_t>& buffer,
Tao Bao0940fe12015-08-27 16:41:21 -0700672 const size_t blocks, bool printerror) {
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800673 uint8_t digest[SHA_DIGEST_LENGTH];
Tao Bao612336d2015-08-27 16:41:21 -0700674 const uint8_t* data = buffer.data();
Sami Tolvanen90221202014-12-09 16:39:47 +0000675
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800676 SHA1(data, blocks * BLOCKSIZE, digest);
Sami Tolvanen90221202014-12-09 16:39:47 +0000677
Tao Baoe6aa3322015-08-05 15:20:27 -0700678 std::string hexdigest = print_sha1(digest);
Sami Tolvanen90221202014-12-09 16:39:47 +0000679
Tao Bao0940fe12015-08-27 16:41:21 -0700680 if (hexdigest != expected) {
681 if (printerror) {
Tao Bao039f2da2016-11-22 16:29:50 -0800682 LOG(ERROR) << "failed to verify blocks (expected " << expected << ", read "
683 << hexdigest << ")";
Tao Bao0940fe12015-08-27 16:41:21 -0700684 }
685 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000686 }
687
Tao Bao0940fe12015-08-27 16:41:21 -0700688 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +0000689}
690
Tao Bao0940fe12015-08-27 16:41:21 -0700691static std::string GetStashFileName(const std::string& base, const std::string& id,
Tao Bao641fa972018-04-25 18:59:40 -0700692 const std::string& postfix) {
693 if (base.empty()) {
694 return "";
695 }
Tao Bao864c6682018-05-07 11:38:25 -0700696 std::string filename = Paths::Get().stash_directory_base() + "/" + base;
697 if (id.empty() && postfix.empty()) {
698 return filename;
699 }
700 return filename + "/" + id + postfix;
Sami Tolvanen90221202014-12-09 16:39:47 +0000701}
702
Tao Baoec8272f2017-03-15 17:39:01 -0700703// Does a best effort enumeration of stash files. Ignores possible non-file items in the stash
704// directory and continues despite of errors. Calls the 'callback' function for each file.
705static void EnumerateStash(const std::string& dirname,
706 const std::function<void(const std::string&)>& callback) {
707 if (dirname.empty()) return;
Sami Tolvanen90221202014-12-09 16:39:47 +0000708
Tao Baoec8272f2017-03-15 17:39:01 -0700709 std::unique_ptr<DIR, decltype(&closedir)> directory(opendir(dirname.c_str()), closedir);
Sami Tolvanen90221202014-12-09 16:39:47 +0000710
Tao Baoec8272f2017-03-15 17:39:01 -0700711 if (directory == nullptr) {
712 if (errno != ENOENT) {
713 PLOG(ERROR) << "opendir \"" << dirname << "\" failed";
Sami Tolvanen90221202014-12-09 16:39:47 +0000714 }
Tao Bao51412212016-12-28 14:44:05 -0800715 return;
716 }
Tao Baoe6aa3322015-08-05 15:20:27 -0700717
Tao Baoec8272f2017-03-15 17:39:01 -0700718 dirent* item;
719 while ((item = readdir(directory.get())) != nullptr) {
720 if (item->d_type != DT_REG) continue;
721 callback(dirname + "/" + item->d_name);
Tao Bao51412212016-12-28 14:44:05 -0800722 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000723}
724
725// Deletes the stash directory and all files in it. Assumes that it only
726// contains files. There is nothing we can do about unlikely, but possible
727// errors, so they are merely logged.
Tao Baoec8272f2017-03-15 17:39:01 -0700728static void DeleteFile(const std::string& fn) {
729 if (fn.empty()) return;
Sami Tolvanen90221202014-12-09 16:39:47 +0000730
Tao Baoec8272f2017-03-15 17:39:01 -0700731 LOG(INFO) << "deleting " << fn;
Sami Tolvanen90221202014-12-09 16:39:47 +0000732
Tao Baoec8272f2017-03-15 17:39:01 -0700733 if (unlink(fn.c_str()) == -1 && errno != ENOENT) {
734 PLOG(ERROR) << "unlink \"" << fn << "\" failed";
735 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000736}
737
Tao Baoe6aa3322015-08-05 15:20:27 -0700738static void DeleteStash(const std::string& base) {
Tao Baoec8272f2017-03-15 17:39:01 -0700739 if (base.empty()) return;
740
741 LOG(INFO) << "deleting stash " << base;
742
743 std::string dirname = GetStashFileName(base, "", "");
744 EnumerateStash(dirname, DeleteFile);
745
746 if (rmdir(dirname.c_str()) == -1) {
747 if (errno != ENOENT && errno != ENOTDIR) {
748 PLOG(ERROR) << "rmdir \"" << dirname << "\" failed";
Sami Tolvanen90221202014-12-09 16:39:47 +0000749 }
Tao Baoec8272f2017-03-15 17:39:01 -0700750 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000751}
752
Tao Baobcf46492017-03-23 15:28:20 -0700753static int LoadStash(CommandParameters& params, const std::string& id, bool verify, size_t* blocks,
754 std::vector<uint8_t>& buffer, bool printnoent) {
Tao Baobf5b77d2017-03-30 16:57:29 -0700755 // In verify mode, if source range_set was saved for the given hash, check contents in the source
756 // blocks first. If the check fails, search for the stashed files on /cache as usual.
757 if (!params.canwrite) {
758 if (stash_map.find(id) != stash_map.end()) {
759 const RangeSet& src = stash_map[id];
760 allocate(src.blocks() * BLOCKSIZE, buffer);
Tianjie Xu7eca97e2016-03-22 18:08:12 -0700761
Tao Baobf5b77d2017-03-30 16:57:29 -0700762 if (ReadBlocks(src, buffer, params.fd) == -1) {
763 LOG(ERROR) << "failed to read source blocks in stash map.";
Tao Bao0940fe12015-08-27 16:41:21 -0700764 return -1;
Tao Baobf5b77d2017-03-30 16:57:29 -0700765 }
766 if (VerifyBlocks(id, buffer, src.blocks(), true) != 0) {
767 LOG(ERROR) << "failed to verify loaded source blocks in stash map.";
768 PrintHashForCorruptedStashedBlocks(id, buffer, src);
Tao Bao0940fe12015-08-27 16:41:21 -0700769 return -1;
Tao Baobf5b77d2017-03-30 16:57:29 -0700770 }
771 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +0000772 }
Tao Baobf5b77d2017-03-30 16:57:29 -0700773 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000774
Tao Baobf5b77d2017-03-30 16:57:29 -0700775 size_t blockcount = 0;
776 if (!blocks) {
777 blocks = &blockcount;
778 }
779
780 std::string fn = GetStashFileName(params.stashbase, id, "");
781
782 struct stat sb;
783 if (stat(fn.c_str(), &sb) == -1) {
784 if (errno != ENOENT || printnoent) {
785 PLOG(ERROR) << "stat \"" << fn << "\" failed";
786 PrintHashForMissingStashedBlocks(id, params.fd);
Sami Tolvanen90221202014-12-09 16:39:47 +0000787 }
Tao Baobf5b77d2017-03-30 16:57:29 -0700788 return -1;
789 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000790
Tao Baobf5b77d2017-03-30 16:57:29 -0700791 LOG(INFO) << " loading " << fn;
Sami Tolvanen90221202014-12-09 16:39:47 +0000792
Tao Baobf5b77d2017-03-30 16:57:29 -0700793 if ((sb.st_size % BLOCKSIZE) != 0) {
794 LOG(ERROR) << fn << " size " << sb.st_size << " not multiple of block size " << BLOCKSIZE;
795 return -1;
796 }
797
798 android::base::unique_fd fd(TEMP_FAILURE_RETRY(ota_open(fn.c_str(), O_RDONLY)));
799 if (fd == -1) {
800 PLOG(ERROR) << "open \"" << fn << "\" failed";
801 return -1;
802 }
803
804 allocate(sb.st_size, buffer);
805
806 if (read_all(fd, buffer, sb.st_size) == -1) {
807 return -1;
808 }
809
810 *blocks = sb.st_size / BLOCKSIZE;
811
812 if (verify && VerifyBlocks(id, buffer, *blocks, true) != 0) {
813 LOG(ERROR) << "unexpected contents in " << fn;
814 if (stash_map.find(id) == stash_map.end()) {
815 LOG(ERROR) << "failed to find source blocks number for stash " << id
816 << " when executing command: " << params.cmdname;
817 } else {
818 const RangeSet& src = stash_map[id];
819 PrintHashForCorruptedStashedBlocks(id, buffer, src);
Sami Tolvanen90221202014-12-09 16:39:47 +0000820 }
Tao Baobf5b77d2017-03-30 16:57:29 -0700821 DeleteFile(fn);
822 return -1;
823 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000824
Tao Baobf5b77d2017-03-30 16:57:29 -0700825 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +0000826}
827
Tao Bao612336d2015-08-27 16:41:21 -0700828static int WriteStash(const std::string& base, const std::string& id, int blocks,
Tao Baod2aecd42017-03-23 14:43:44 -0700829 std::vector<uint8_t>& buffer, bool checkspace, bool* exists) {
Tao Bao612336d2015-08-27 16:41:21 -0700830 if (base.empty()) {
Tao Bao0940fe12015-08-27 16:41:21 -0700831 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000832 }
833
834 if (checkspace && CacheSizeCheck(blocks * BLOCKSIZE) != 0) {
Tao Bao039f2da2016-11-22 16:29:50 -0800835 LOG(ERROR) << "not enough space to write stash";
Tao Bao0940fe12015-08-27 16:41:21 -0700836 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000837 }
838
Tao Bao0940fe12015-08-27 16:41:21 -0700839 std::string fn = GetStashFileName(base, id, ".partial");
840 std::string cn = GetStashFileName(base, id, "");
Sami Tolvanen90221202014-12-09 16:39:47 +0000841
Sami Tolvanen43b748f2015-04-17 12:50:31 +0100842 if (exists) {
Tao Bao0940fe12015-08-27 16:41:21 -0700843 struct stat sb;
844 int res = stat(cn.c_str(), &sb);
Sami Tolvanen43b748f2015-04-17 12:50:31 +0100845
846 if (res == 0) {
847 // The file already exists and since the name is the hash of the contents,
848 // it's safe to assume the contents are identical (accidental hash collisions
849 // are unlikely)
Tao Bao039f2da2016-11-22 16:29:50 -0800850 LOG(INFO) << " skipping " << blocks << " existing blocks in " << cn;
Tao Bao0940fe12015-08-27 16:41:21 -0700851 *exists = true;
852 return 0;
Sami Tolvanen43b748f2015-04-17 12:50:31 +0100853 }
854
Tao Bao0940fe12015-08-27 16:41:21 -0700855 *exists = false;
Sami Tolvanen43b748f2015-04-17 12:50:31 +0100856 }
857
Tao Bao039f2da2016-11-22 16:29:50 -0800858 LOG(INFO) << " writing " << blocks << " blocks to " << cn;
Sami Tolvanen90221202014-12-09 16:39:47 +0000859
Tao Bao039f2da2016-11-22 16:29:50 -0800860 android::base::unique_fd fd(
861 TEMP_FAILURE_RETRY(ota_open(fn.c_str(), O_WRONLY | O_CREAT | O_TRUNC, STASH_FILE_MODE)));
Sami Tolvanen90221202014-12-09 16:39:47 +0000862 if (fd == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800863 PLOG(ERROR) << "failed to create \"" << fn << "\"";
Tao Bao0940fe12015-08-27 16:41:21 -0700864 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000865 }
866
Tianjie Xua946b9e2017-03-21 16:24:57 -0700867 if (fchown(fd, AID_SYSTEM, AID_SYSTEM) != 0) { // system user
868 PLOG(ERROR) << "failed to chown \"" << fn << "\"";
869 return -1;
870 }
871
Sami Tolvanen90221202014-12-09 16:39:47 +0000872 if (write_all(fd, buffer, blocks * BLOCKSIZE) == -1) {
Tao Bao0940fe12015-08-27 16:41:21 -0700873 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000874 }
875
Jed Estepa7b9a462015-12-15 16:04:53 -0800876 if (ota_fsync(fd) == -1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700877 failure_type = kFsyncFailure;
Tao Bao039f2da2016-11-22 16:29:50 -0800878 PLOG(ERROR) << "fsync \"" << fn << "\" failed";
Tao Bao0940fe12015-08-27 16:41:21 -0700879 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000880 }
881
Tao Baoe6aa3322015-08-05 15:20:27 -0700882 if (rename(fn.c_str(), cn.c_str()) == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800883 PLOG(ERROR) << "rename(\"" << fn << "\", \"" << cn << "\") failed";
Tao Bao0940fe12015-08-27 16:41:21 -0700884 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000885 }
886
Tao Bao0940fe12015-08-27 16:41:21 -0700887 std::string dname = GetStashFileName(base, "", "");
Tao Bao864c6682018-05-07 11:38:25 -0700888 if (!FsyncDir(dname)) {
889 failure_type = kFsyncFailure;
890 return -1;
Tao Baodc392262015-07-31 15:56:44 -0700891 }
892
Tao Bao0940fe12015-08-27 16:41:21 -0700893 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +0000894}
895
896// Creates a directory for storing stash files and checks if the /cache partition
897// hash enough space for the expected amount of blocks we need to store. Returns
898// >0 if we created the directory, zero if it existed already, and <0 of failure.
Tao Bao864c6682018-05-07 11:38:25 -0700899static int CreateStash(State* state, size_t maxblocks, const std::string& base) {
Tao Bao51412212016-12-28 14:44:05 -0800900 std::string dirname = GetStashFileName(base, "", "");
901 struct stat sb;
902 int res = stat(dirname.c_str(), &sb);
Tao Bao51412212016-12-28 14:44:05 -0800903 if (res == -1 && errno != ENOENT) {
Tianjie Xu5ad80282018-01-28 15:37:48 -0800904 ErrorAbort(state, kStashCreationFailure, "stat \"%s\" failed: %s", dirname.c_str(),
Tao Bao51412212016-12-28 14:44:05 -0800905 strerror(errno));
906 return -1;
Tao Bao864c6682018-05-07 11:38:25 -0700907 }
908
909 size_t max_stash_size = maxblocks * BLOCKSIZE;
910 if (res == -1) {
Tao Bao51412212016-12-28 14:44:05 -0800911 LOG(INFO) << "creating stash " << dirname;
912 res = mkdir(dirname.c_str(), STASH_DIRECTORY_MODE);
913
914 if (res != 0) {
Tianjie Xu5ad80282018-01-28 15:37:48 -0800915 ErrorAbort(state, kStashCreationFailure, "mkdir \"%s\" failed: %s", dirname.c_str(),
Tao Bao51412212016-12-28 14:44:05 -0800916 strerror(errno));
917 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000918 }
919
Tianjie Xua946b9e2017-03-21 16:24:57 -0700920 if (chown(dirname.c_str(), AID_SYSTEM, AID_SYSTEM) != 0) { // system user
Tianjie Xu5ad80282018-01-28 15:37:48 -0800921 ErrorAbort(state, kStashCreationFailure, "chown \"%s\" failed: %s", dirname.c_str(),
Tianjie Xua946b9e2017-03-21 16:24:57 -0700922 strerror(errno));
923 return -1;
924 }
925
Tao Bao51412212016-12-28 14:44:05 -0800926 if (CacheSizeCheck(max_stash_size) != 0) {
Tianjie Xu5ad80282018-01-28 15:37:48 -0800927 ErrorAbort(state, kStashCreationFailure, "not enough space for stash (%zu needed)",
Tao Bao51412212016-12-28 14:44:05 -0800928 max_stash_size);
929 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000930 }
931
Tao Bao51412212016-12-28 14:44:05 -0800932 return 1; // Created directory
933 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000934
Tao Bao51412212016-12-28 14:44:05 -0800935 LOG(INFO) << "using existing stash " << dirname;
Sami Tolvanen90221202014-12-09 16:39:47 +0000936
Tao Baoec8272f2017-03-15 17:39:01 -0700937 // If the directory already exists, calculate the space already allocated to stash files and check
938 // if there's enough for all required blocks. Delete any partially completed stash files first.
939 EnumerateStash(dirname, [](const std::string& fn) {
940 if (android::base::EndsWith(fn, ".partial")) {
941 DeleteFile(fn);
942 }
943 });
Sami Tolvanen90221202014-12-09 16:39:47 +0000944
Tao Bao51412212016-12-28 14:44:05 -0800945 size_t existing = 0;
Tao Baoec8272f2017-03-15 17:39:01 -0700946 EnumerateStash(dirname, [&existing](const std::string& fn) {
947 if (fn.empty()) return;
948 struct stat sb;
949 if (stat(fn.c_str(), &sb) == -1) {
950 PLOG(ERROR) << "stat \"" << fn << "\" failed";
951 return;
952 }
953 existing += static_cast<size_t>(sb.st_size);
954 });
Sami Tolvanen90221202014-12-09 16:39:47 +0000955
Tao Bao51412212016-12-28 14:44:05 -0800956 if (max_stash_size > existing) {
957 size_t needed = max_stash_size - existing;
958 if (CacheSizeCheck(needed) != 0) {
Tianjie Xu5ad80282018-01-28 15:37:48 -0800959 ErrorAbort(state, kStashCreationFailure, "not enough space for stash (%zu more needed)",
Tao Bao51412212016-12-28 14:44:05 -0800960 needed);
961 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000962 }
Tao Bao51412212016-12-28 14:44:05 -0800963 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000964
Tao Bao51412212016-12-28 14:44:05 -0800965 return 0; // Using existing directory
Sami Tolvanen90221202014-12-09 16:39:47 +0000966}
967
Tao Baobaad2d42015-12-06 16:56:27 -0800968static int FreeStash(const std::string& base, const std::string& id) {
Tao Baoec8272f2017-03-15 17:39:01 -0700969 if (base.empty() || id.empty()) {
970 return -1;
971 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000972
Tao Baoec8272f2017-03-15 17:39:01 -0700973 DeleteFile(GetStashFileName(base, id, ""));
Sami Tolvanen90221202014-12-09 16:39:47 +0000974
Tao Baoec8272f2017-03-15 17:39:01 -0700975 return 0;
Doug Zongker52ae67d2014-09-08 12:22:09 -0700976}
977
Tao Baobf5b77d2017-03-30 16:57:29 -0700978// Source contains packed data, which we want to move to the locations given in locs in the dest
979// buffer. source and dest may be the same buffer.
Tao Bao612336d2015-08-27 16:41:21 -0700980static void MoveRange(std::vector<uint8_t>& dest, const RangeSet& locs,
Tao Baobf5b77d2017-03-30 16:57:29 -0700981 const std::vector<uint8_t>& source) {
982 const uint8_t* from = source.data();
983 uint8_t* to = dest.data();
984 size_t start = locs.blocks();
985 // Must do the movement backward.
986 for (auto it = locs.crbegin(); it != locs.crend(); it++) {
987 size_t blocks = it->second - it->first;
988 start -= blocks;
989 memmove(to + (it->first * BLOCKSIZE), from + (start * BLOCKSIZE), blocks * BLOCKSIZE);
990 }
Doug Zongker52ae67d2014-09-08 12:22:09 -0700991}
992
Tao Baod2aecd42017-03-23 14:43:44 -0700993/**
994 * We expect to parse the remainder of the parameter tokens as one of:
995 *
996 * <src_block_count> <src_range>
997 * (loads data from source image only)
998 *
999 * <src_block_count> - <[stash_id:stash_range] ...>
1000 * (loads data from stashes only)
1001 *
1002 * <src_block_count> <src_range> <src_loc> <[stash_id:stash_range] ...>
1003 * (loads data from both source image and stashes)
1004 *
1005 * On return, params.buffer is filled with the loaded source data (rearranged and combined with
1006 * stashed data as necessary). buffer may be reallocated if needed to accommodate the source data.
1007 * tgt is the target RangeSet for detecting overlaps. Any stashes required are loaded using
1008 * LoadStash.
1009 */
1010static int LoadSourceBlocks(CommandParameters& params, const RangeSet& tgt, size_t* src_blocks,
1011 bool* overlap) {
1012 CHECK(src_blocks != nullptr);
1013 CHECK(overlap != nullptr);
Doug Zongker52ae67d2014-09-08 12:22:09 -07001014
Tao Baod2aecd42017-03-23 14:43:44 -07001015 // <src_block_count>
1016 const std::string& token = params.tokens[params.cpos++];
1017 if (!android::base::ParseUint(token, src_blocks)) {
1018 LOG(ERROR) << "invalid src_block_count \"" << token << "\"";
1019 return -1;
1020 }
Tao Baobaad2d42015-12-06 16:56:27 -08001021
Tao Baod2aecd42017-03-23 14:43:44 -07001022 allocate(*src_blocks * BLOCKSIZE, params.buffer);
1023
1024 // "-" or <src_range> [<src_loc>]
1025 if (params.tokens[params.cpos] == "-") {
1026 // no source ranges, only stashes
1027 params.cpos++;
1028 } else {
Tao Bao8f237572017-03-26 13:36:49 -07001029 RangeSet src = RangeSet::Parse(params.tokens[params.cpos++]);
Tao Bao67983152017-11-04 00:08:08 -07001030 CHECK(static_cast<bool>(src));
Tao Bao8f237572017-03-26 13:36:49 -07001031 *overlap = src.Overlaps(tgt);
Tao Baod2aecd42017-03-23 14:43:44 -07001032
1033 if (ReadBlocks(src, params.buffer, params.fd) == -1) {
1034 return -1;
Tao Baobaad2d42015-12-06 16:56:27 -08001035 }
1036
Tao Baod2aecd42017-03-23 14:43:44 -07001037 if (params.cpos >= params.tokens.size()) {
1038 // no stashes, only source range
1039 return 0;
Tao Baobaad2d42015-12-06 16:56:27 -08001040 }
Doug Zongker52ae67d2014-09-08 12:22:09 -07001041
Tao Bao8f237572017-03-26 13:36:49 -07001042 RangeSet locs = RangeSet::Parse(params.tokens[params.cpos++]);
Tao Bao67983152017-11-04 00:08:08 -07001043 CHECK(static_cast<bool>(locs));
Tao Baod2aecd42017-03-23 14:43:44 -07001044 MoveRange(params.buffer, locs, params.buffer);
1045 }
Doug Zongker52ae67d2014-09-08 12:22:09 -07001046
Tao Baod2aecd42017-03-23 14:43:44 -07001047 // <[stash_id:stash_range]>
1048 while (params.cpos < params.tokens.size()) {
1049 // Each word is a an index into the stash table, a colon, and then a RangeSet describing where
1050 // in the source block that stashed data should go.
1051 std::vector<std::string> tokens = android::base::Split(params.tokens[params.cpos++], ":");
1052 if (tokens.size() != 2) {
1053 LOG(ERROR) << "invalid parameter";
1054 return -1;
Doug Zongker52ae67d2014-09-08 12:22:09 -07001055 }
1056
Tao Baod2aecd42017-03-23 14:43:44 -07001057 std::vector<uint8_t> stash;
1058 if (LoadStash(params, tokens[0], false, nullptr, stash, true) == -1) {
1059 // These source blocks will fail verification if used later, but we
1060 // will let the caller decide if this is a fatal failure
1061 LOG(ERROR) << "failed to load stash " << tokens[0];
1062 continue;
Sami Tolvanen90221202014-12-09 16:39:47 +00001063 }
1064
Tao Bao8f237572017-03-26 13:36:49 -07001065 RangeSet locs = RangeSet::Parse(tokens[1]);
Tao Bao67983152017-11-04 00:08:08 -07001066 CHECK(static_cast<bool>(locs));
Tao Baod2aecd42017-03-23 14:43:44 -07001067 MoveRange(params.buffer, locs, stash);
1068 }
1069
1070 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +00001071}
1072
Tao Bao33567772017-03-13 14:57:34 -07001073/**
1074 * Do a source/target load for move/bsdiff/imgdiff in version 3.
1075 *
1076 * We expect to parse the remainder of the parameter tokens as one of:
1077 *
1078 * <tgt_range> <src_block_count> <src_range>
1079 * (loads data from source image only)
1080 *
1081 * <tgt_range> <src_block_count> - <[stash_id:stash_range] ...>
1082 * (loads data from stashes only)
1083 *
1084 * <tgt_range> <src_block_count> <src_range> <src_loc> <[stash_id:stash_range] ...>
1085 * (loads data from both source image and stashes)
1086 *
Tao Baod2aecd42017-03-23 14:43:44 -07001087 * 'onehash' tells whether to expect separate source and targe block hashes, or if they are both the
1088 * same and only one hash should be expected. params.isunresumable will be set to true if block
Tao Bao33567772017-03-13 14:57:34 -07001089 * verification fails in a way that the update cannot be resumed anymore.
1090 *
1091 * If the function is unable to load the necessary blocks or their contents don't match the hashes,
1092 * the return value is -1 and the command should be aborted.
1093 *
1094 * If the return value is 1, the command has already been completed according to the contents of the
1095 * target blocks, and should not be performed again.
1096 *
1097 * If the return value is 0, source blocks have expected content and the command can be performed.
1098 */
Tao Baod2aecd42017-03-23 14:43:44 -07001099static int LoadSrcTgtVersion3(CommandParameters& params, RangeSet& tgt, size_t* src_blocks,
1100 bool onehash, bool* overlap) {
1101 CHECK(src_blocks != nullptr);
1102 CHECK(overlap != nullptr);
Sami Tolvanen90221202014-12-09 16:39:47 +00001103
Tao Baod2aecd42017-03-23 14:43:44 -07001104 if (params.cpos >= params.tokens.size()) {
1105 LOG(ERROR) << "missing source hash";
Tao Bao0940fe12015-08-27 16:41:21 -07001106 return -1;
Tao Baod2aecd42017-03-23 14:43:44 -07001107 }
1108
1109 std::string srchash = params.tokens[params.cpos++];
1110 std::string tgthash;
1111
1112 if (onehash) {
1113 tgthash = srchash;
1114 } else {
1115 if (params.cpos >= params.tokens.size()) {
1116 LOG(ERROR) << "missing target hash";
1117 return -1;
1118 }
1119 tgthash = params.tokens[params.cpos++];
1120 }
1121
1122 // At least it needs to provide three parameters: <tgt_range>, <src_block_count> and
1123 // "-"/<src_range>.
1124 if (params.cpos + 2 >= params.tokens.size()) {
1125 LOG(ERROR) << "invalid parameters";
1126 return -1;
1127 }
1128
1129 // <tgt_range>
Tao Bao8f237572017-03-26 13:36:49 -07001130 tgt = RangeSet::Parse(params.tokens[params.cpos++]);
Tao Bao67983152017-11-04 00:08:08 -07001131 CHECK(static_cast<bool>(tgt));
Tao Baod2aecd42017-03-23 14:43:44 -07001132
Tao Baobf5b77d2017-03-30 16:57:29 -07001133 std::vector<uint8_t> tgtbuffer(tgt.blocks() * BLOCKSIZE);
Tao Baod2aecd42017-03-23 14:43:44 -07001134 if (ReadBlocks(tgt, tgtbuffer, params.fd) == -1) {
1135 return -1;
1136 }
1137
1138 // Return now if target blocks already have expected content.
Tao Baobf5b77d2017-03-30 16:57:29 -07001139 if (VerifyBlocks(tgthash, tgtbuffer, tgt.blocks(), false) == 0) {
Tao Baod2aecd42017-03-23 14:43:44 -07001140 return 1;
1141 }
1142
1143 // Load source blocks.
1144 if (LoadSourceBlocks(params, tgt, src_blocks, overlap) == -1) {
1145 return -1;
1146 }
1147
1148 if (VerifyBlocks(srchash, params.buffer, *src_blocks, true) == 0) {
1149 // If source and target blocks overlap, stash the source blocks so we can
1150 // resume from possible write errors. In verify mode, we can skip stashing
1151 // because the source blocks won't be overwritten.
1152 if (*overlap && params.canwrite) {
1153 LOG(INFO) << "stashing " << *src_blocks << " overlapping blocks to " << srchash;
1154
1155 bool stash_exists = false;
1156 if (WriteStash(params.stashbase, srchash, *src_blocks, params.buffer, true,
1157 &stash_exists) != 0) {
1158 LOG(ERROR) << "failed to stash overlapping source blocks";
1159 return -1;
1160 }
1161
1162 params.stashed += *src_blocks;
1163 // Can be deleted when the write has completed.
1164 if (!stash_exists) {
1165 params.freestash = srchash;
1166 }
1167 }
1168
1169 // Source blocks have expected content, command can proceed.
1170 return 0;
1171 }
1172
1173 if (*overlap && LoadStash(params, srchash, true, nullptr, params.buffer, true) == 0) {
1174 // Overlapping source blocks were previously stashed, command can proceed. We are recovering
1175 // from an interrupted command, so we don't know if the stash can safely be deleted after this
1176 // command.
1177 return 0;
1178 }
1179
1180 // Valid source data not available, update cannot be resumed.
1181 LOG(ERROR) << "partition has unexpected contents";
1182 PrintHashForCorruptedSourceBlocks(params, params.buffer);
1183
1184 params.isunresumable = true;
1185
1186 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001187}
1188
Tao Bao0940fe12015-08-27 16:41:21 -07001189static int PerformCommandMove(CommandParameters& params) {
Tao Bao33567772017-03-13 14:57:34 -07001190 size_t blocks = 0;
1191 bool overlap = false;
1192 RangeSet tgt;
Tao Baod2aecd42017-03-23 14:43:44 -07001193 int status = LoadSrcTgtVersion3(params, tgt, &blocks, true, &overlap);
Sami Tolvanen90221202014-12-09 16:39:47 +00001194
Tao Bao33567772017-03-13 14:57:34 -07001195 if (status == -1) {
1196 LOG(ERROR) << "failed to read blocks for move";
1197 return -1;
1198 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001199
Tao Bao33567772017-03-13 14:57:34 -07001200 if (status == 0) {
1201 params.foundwrites = true;
Tianjie Xu284752e2017-12-05 11:04:17 -08001202 } else {
1203 params.target_verified = true;
1204 if (params.foundwrites) {
1205 LOG(WARNING) << "warning: commands executed out of order [" << params.cmdname << "]";
1206 }
Tao Bao33567772017-03-13 14:57:34 -07001207 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001208
Tao Bao33567772017-03-13 14:57:34 -07001209 if (params.canwrite) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001210 if (status == 0) {
Tao Bao33567772017-03-13 14:57:34 -07001211 LOG(INFO) << " moving " << blocks << " blocks";
1212
1213 if (WriteBlocks(tgt, params.buffer, params.fd) == -1) {
1214 return -1;
1215 }
1216 } else {
1217 LOG(INFO) << "skipping " << blocks << " already moved blocks";
Sami Tolvanen90221202014-12-09 16:39:47 +00001218 }
Tao Bao33567772017-03-13 14:57:34 -07001219 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001220
Tao Bao33567772017-03-13 14:57:34 -07001221 if (!params.freestash.empty()) {
1222 FreeStash(params.stashbase, params.freestash);
1223 params.freestash.clear();
1224 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001225
Tao Baobf5b77d2017-03-30 16:57:29 -07001226 params.written += tgt.blocks();
Sami Tolvanen90221202014-12-09 16:39:47 +00001227
Tao Bao33567772017-03-13 14:57:34 -07001228 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +00001229}
1230
Tao Bao0940fe12015-08-27 16:41:21 -07001231static int PerformCommandStash(CommandParameters& params) {
Tao Baobcf46492017-03-23 15:28:20 -07001232 // <stash_id> <src_range>
1233 if (params.cpos + 1 >= params.tokens.size()) {
1234 LOG(ERROR) << "missing id and/or src range fields in stash command";
1235 return -1;
1236 }
1237
1238 const std::string& id = params.tokens[params.cpos++];
1239 size_t blocks = 0;
1240 if (LoadStash(params, id, true, &blocks, params.buffer, false) == 0) {
1241 // Stash file already exists and has expected contents. Do not read from source again, as the
1242 // source may have been already overwritten during a previous attempt.
1243 return 0;
1244 }
1245
Tao Bao8f237572017-03-26 13:36:49 -07001246 RangeSet src = RangeSet::Parse(params.tokens[params.cpos++]);
Tao Bao67983152017-11-04 00:08:08 -07001247 CHECK(static_cast<bool>(src));
Tao Baobcf46492017-03-23 15:28:20 -07001248
Tao Baobf5b77d2017-03-30 16:57:29 -07001249 allocate(src.blocks() * BLOCKSIZE, params.buffer);
Tao Baobcf46492017-03-23 15:28:20 -07001250 if (ReadBlocks(src, params.buffer, params.fd) == -1) {
1251 return -1;
1252 }
Tao Baobf5b77d2017-03-30 16:57:29 -07001253 blocks = src.blocks();
Tao Baobcf46492017-03-23 15:28:20 -07001254 stash_map[id] = src;
1255
1256 if (VerifyBlocks(id, params.buffer, blocks, true) != 0) {
1257 // Source blocks have unexpected contents. If we actually need this data later, this is an
1258 // unrecoverable error. However, the command that uses the data may have already completed
1259 // previously, so the possible failure will occur during source block verification.
1260 LOG(ERROR) << "failed to load source blocks for stash " << id;
1261 return 0;
1262 }
1263
1264 // In verify mode, we don't need to stash any blocks.
1265 if (!params.canwrite) {
1266 return 0;
1267 }
1268
1269 LOG(INFO) << "stashing " << blocks << " blocks to " << id;
Tianjie Xu284752e2017-12-05 11:04:17 -08001270 int result = WriteStash(params.stashbase, id, blocks, params.buffer, false, nullptr);
1271 if (result == 0) {
Tianjie Xu284752e2017-12-05 11:04:17 -08001272 params.stashed += blocks;
1273 }
1274 return result;
Sami Tolvanen90221202014-12-09 16:39:47 +00001275}
1276
Tao Bao0940fe12015-08-27 16:41:21 -07001277static int PerformCommandFree(CommandParameters& params) {
Tao Baobcf46492017-03-23 15:28:20 -07001278 // <stash_id>
1279 if (params.cpos >= params.tokens.size()) {
1280 LOG(ERROR) << "missing stash id in free command";
1281 return -1;
1282 }
Tao Baobaad2d42015-12-06 16:56:27 -08001283
Tao Baobcf46492017-03-23 15:28:20 -07001284 const std::string& id = params.tokens[params.cpos++];
1285 stash_map.erase(id);
Tianjie Xu7eca97e2016-03-22 18:08:12 -07001286
Tao Baobcf46492017-03-23 15:28:20 -07001287 if (params.createdstash || params.canwrite) {
1288 return FreeStash(params.stashbase, id);
1289 }
Tianjie Xu7eca97e2016-03-22 18:08:12 -07001290
Tao Baobcf46492017-03-23 15:28:20 -07001291 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +00001292}
1293
Tao Bao0940fe12015-08-27 16:41:21 -07001294static int PerformCommandZero(CommandParameters& params) {
Tao Baobf5b77d2017-03-30 16:57:29 -07001295 if (params.cpos >= params.tokens.size()) {
1296 LOG(ERROR) << "missing target blocks for zero";
1297 return -1;
1298 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001299
Tao Baobf5b77d2017-03-30 16:57:29 -07001300 RangeSet tgt = RangeSet::Parse(params.tokens[params.cpos++]);
Tao Bao67983152017-11-04 00:08:08 -07001301 CHECK(static_cast<bool>(tgt));
Tao Baobf5b77d2017-03-30 16:57:29 -07001302
1303 LOG(INFO) << " zeroing " << tgt.blocks() << " blocks";
1304
1305 allocate(BLOCKSIZE, params.buffer);
1306 memset(params.buffer.data(), 0, BLOCKSIZE);
1307
1308 if (params.canwrite) {
1309 for (const auto& range : tgt) {
1310 off64_t offset = static_cast<off64_t>(range.first) * BLOCKSIZE;
1311 size_t size = (range.second - range.first) * BLOCKSIZE;
1312 if (!discard_blocks(params.fd, offset, size)) {
Tao Bao0940fe12015-08-27 16:41:21 -07001313 return -1;
Tao Baobf5b77d2017-03-30 16:57:29 -07001314 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001315
Tao Baobf5b77d2017-03-30 16:57:29 -07001316 if (!check_lseek(params.fd, offset, SEEK_SET)) {
1317 return -1;
1318 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001319
Tao Baobf5b77d2017-03-30 16:57:29 -07001320 for (size_t j = range.first; j < range.second; ++j) {
1321 if (write_all(params.fd, params.buffer, BLOCKSIZE) == -1) {
1322 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001323 }
Tao Baobf5b77d2017-03-30 16:57:29 -07001324 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001325 }
Tao Baobf5b77d2017-03-30 16:57:29 -07001326 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001327
Tao Baobf5b77d2017-03-30 16:57:29 -07001328 if (params.cmdname[0] == 'z') {
1329 // Update only for the zero command, as the erase command will call
1330 // this if DEBUG_ERASE is defined.
1331 params.written += tgt.blocks();
1332 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001333
Tao Baobf5b77d2017-03-30 16:57:29 -07001334 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +00001335}
1336
Tao Bao0940fe12015-08-27 16:41:21 -07001337static int PerformCommandNew(CommandParameters& params) {
Tao Bao60a70af2017-03-26 14:03:52 -07001338 if (params.cpos >= params.tokens.size()) {
1339 LOG(ERROR) << "missing target blocks for new";
1340 return -1;
1341 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001342
Tao Bao8f237572017-03-26 13:36:49 -07001343 RangeSet tgt = RangeSet::Parse(params.tokens[params.cpos++]);
Tao Bao67983152017-11-04 00:08:08 -07001344 CHECK(static_cast<bool>(tgt));
Tao Bao60a70af2017-03-26 14:03:52 -07001345
1346 if (params.canwrite) {
Tao Baobf5b77d2017-03-30 16:57:29 -07001347 LOG(INFO) << " writing " << tgt.blocks() << " blocks of new data";
Tao Bao60a70af2017-03-26 14:03:52 -07001348
Tao Bao60a70af2017-03-26 14:03:52 -07001349 pthread_mutex_lock(&params.nti.mu);
Tianjie Xu6ed175d2017-07-18 11:29:40 -07001350 params.nti.writer = std::make_unique<RangeSinkWriter>(params.fd, tgt);
Tao Bao60a70af2017-03-26 14:03:52 -07001351 pthread_cond_broadcast(&params.nti.cv);
1352
1353 while (params.nti.writer != nullptr) {
Tianjie Xu3a8d98d2017-04-03 20:01:17 -07001354 if (!params.nti.receiver_available) {
1355 LOG(ERROR) << "missing " << (tgt.blocks() * BLOCKSIZE - params.nti.writer->BytesWritten())
1356 << " bytes of new data";
1357 pthread_mutex_unlock(&params.nti.mu);
1358 return -1;
1359 }
Tao Bao60a70af2017-03-26 14:03:52 -07001360 pthread_cond_wait(&params.nti.cv, &params.nti.mu);
Sami Tolvanen90221202014-12-09 16:39:47 +00001361 }
1362
Tao Bao60a70af2017-03-26 14:03:52 -07001363 pthread_mutex_unlock(&params.nti.mu);
1364 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001365
Tao Baobf5b77d2017-03-30 16:57:29 -07001366 params.written += tgt.blocks();
Sami Tolvanen90221202014-12-09 16:39:47 +00001367
Tao Bao60a70af2017-03-26 14:03:52 -07001368 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +00001369}
1370
Tao Bao0940fe12015-08-27 16:41:21 -07001371static int PerformCommandDiff(CommandParameters& params) {
Tao Baoc0e1c462017-02-01 10:20:10 -08001372 // <offset> <length>
1373 if (params.cpos + 1 >= params.tokens.size()) {
1374 LOG(ERROR) << "missing patch offset or length for " << params.cmdname;
1375 return -1;
1376 }
Tao Bao0940fe12015-08-27 16:41:21 -07001377
Tao Baoc0e1c462017-02-01 10:20:10 -08001378 size_t offset;
1379 if (!android::base::ParseUint(params.tokens[params.cpos++], &offset)) {
1380 LOG(ERROR) << "invalid patch offset";
1381 return -1;
1382 }
Tao Bao0940fe12015-08-27 16:41:21 -07001383
Tao Baoc0e1c462017-02-01 10:20:10 -08001384 size_t len;
1385 if (!android::base::ParseUint(params.tokens[params.cpos++], &len)) {
1386 LOG(ERROR) << "invalid patch len";
1387 return -1;
1388 }
Tao Bao0940fe12015-08-27 16:41:21 -07001389
Tao Baoc0e1c462017-02-01 10:20:10 -08001390 RangeSet tgt;
1391 size_t blocks = 0;
1392 bool overlap = false;
1393 int status = LoadSrcTgtVersion3(params, tgt, &blocks, false, &overlap);
Tao Bao0940fe12015-08-27 16:41:21 -07001394
Tao Baoc0e1c462017-02-01 10:20:10 -08001395 if (status == -1) {
1396 LOG(ERROR) << "failed to read blocks for diff";
1397 return -1;
1398 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001399
Tao Baoc0e1c462017-02-01 10:20:10 -08001400 if (status == 0) {
1401 params.foundwrites = true;
Tianjie Xu284752e2017-12-05 11:04:17 -08001402 } else {
1403 params.target_verified = true;
1404 if (params.foundwrites) {
1405 LOG(WARNING) << "warning: commands executed out of order [" << params.cmdname << "]";
1406 }
Tao Baoc0e1c462017-02-01 10:20:10 -08001407 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001408
Tao Baoc0e1c462017-02-01 10:20:10 -08001409 if (params.canwrite) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001410 if (status == 0) {
Tao Baobf5b77d2017-03-30 16:57:29 -07001411 LOG(INFO) << "patching " << blocks << " blocks to " << tgt.blocks();
Tao Baoc0e1c462017-02-01 10:20:10 -08001412 Value patch_value(
1413 VAL_BLOB, std::string(reinterpret_cast<const char*>(params.patch_start + offset), len));
Sami Tolvanen90221202014-12-09 16:39:47 +00001414
Tao Bao60a70af2017-03-26 14:03:52 -07001415 RangeSinkWriter writer(params.fd, tgt);
Tao Baoc0e1c462017-02-01 10:20:10 -08001416 if (params.cmdname[0] == 'i') { // imgdiff
Tao Bao1e0941f2017-11-10 11:49:53 -08001417 if (ApplyImagePatch(params.buffer.data(), blocks * BLOCKSIZE, patch_value,
Tao Bao60a70af2017-03-26 14:03:52 -07001418 std::bind(&RangeSinkWriter::Write, &writer, std::placeholders::_1,
1419 std::placeholders::_2),
Tao Bao8b0b0f12018-04-19 21:02:13 -07001420 nullptr) != 0) {
Tao Baoc0e1c462017-02-01 10:20:10 -08001421 LOG(ERROR) << "Failed to apply image patch.";
Tianjie Xu69575552017-05-16 15:51:46 -07001422 failure_type = kPatchApplicationFailure;
Tao Baoc0e1c462017-02-01 10:20:10 -08001423 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001424 }
Tao Baoc0e1c462017-02-01 10:20:10 -08001425 } else {
Tao Bao1e0941f2017-11-10 11:49:53 -08001426 if (ApplyBSDiffPatch(params.buffer.data(), blocks * BLOCKSIZE, patch_value, 0,
Tao Bao60a70af2017-03-26 14:03:52 -07001427 std::bind(&RangeSinkWriter::Write, &writer, std::placeholders::_1,
Tao Bao8b0b0f12018-04-19 21:02:13 -07001428 std::placeholders::_2)) != 0) {
Tao Baoc0e1c462017-02-01 10:20:10 -08001429 LOG(ERROR) << "Failed to apply bsdiff patch.";
Tianjie Xu69575552017-05-16 15:51:46 -07001430 failure_type = kPatchApplicationFailure;
Tao Baoc0e1c462017-02-01 10:20:10 -08001431 return -1;
1432 }
1433 }
1434
1435 // We expect the output of the patcher to fill the tgt ranges exactly.
Tao Bao60a70af2017-03-26 14:03:52 -07001436 if (!writer.Finished()) {
Tao Baoc0e1c462017-02-01 10:20:10 -08001437 LOG(ERROR) << "range sink underrun?";
1438 }
1439 } else {
Tao Baobf5b77d2017-03-30 16:57:29 -07001440 LOG(INFO) << "skipping " << blocks << " blocks already patched to " << tgt.blocks() << " ["
Tao Baoc0e1c462017-02-01 10:20:10 -08001441 << params.cmdline << "]";
Sami Tolvanen90221202014-12-09 16:39:47 +00001442 }
Tao Baoc0e1c462017-02-01 10:20:10 -08001443 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001444
Tao Baoc0e1c462017-02-01 10:20:10 -08001445 if (!params.freestash.empty()) {
1446 FreeStash(params.stashbase, params.freestash);
1447 params.freestash.clear();
1448 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001449
Tao Baobf5b77d2017-03-30 16:57:29 -07001450 params.written += tgt.blocks();
Sami Tolvanen90221202014-12-09 16:39:47 +00001451
Tao Baoc0e1c462017-02-01 10:20:10 -08001452 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +00001453}
1454
Tao Bao0940fe12015-08-27 16:41:21 -07001455static int PerformCommandErase(CommandParameters& params) {
Tao Baobf5b77d2017-03-30 16:57:29 -07001456 if (DEBUG_ERASE) {
1457 return PerformCommandZero(params);
1458 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001459
Tao Baobf5b77d2017-03-30 16:57:29 -07001460 struct stat sb;
1461 if (fstat(params.fd, &sb) == -1) {
1462 PLOG(ERROR) << "failed to fstat device to erase";
1463 return -1;
1464 }
1465
1466 if (!S_ISBLK(sb.st_mode)) {
1467 LOG(ERROR) << "not a block device; skipping erase";
1468 return -1;
1469 }
1470
1471 if (params.cpos >= params.tokens.size()) {
1472 LOG(ERROR) << "missing target blocks for erase";
1473 return -1;
1474 }
1475
1476 RangeSet tgt = RangeSet::Parse(params.tokens[params.cpos++]);
Tao Bao67983152017-11-04 00:08:08 -07001477 CHECK(static_cast<bool>(tgt));
Tao Baobf5b77d2017-03-30 16:57:29 -07001478
1479 if (params.canwrite) {
1480 LOG(INFO) << " erasing " << tgt.blocks() << " blocks";
1481
1482 for (const auto& range : tgt) {
1483 uint64_t blocks[2];
1484 // offset in bytes
1485 blocks[0] = range.first * static_cast<uint64_t>(BLOCKSIZE);
1486 // length in bytes
1487 blocks[1] = (range.second - range.first) * static_cast<uint64_t>(BLOCKSIZE);
1488
1489 if (ioctl(params.fd, BLKDISCARD, &blocks) == -1) {
1490 PLOG(ERROR) << "BLKDISCARD ioctl failed";
Tao Bao0940fe12015-08-27 16:41:21 -07001491 return -1;
Tao Baobf5b77d2017-03-30 16:57:29 -07001492 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001493 }
Tao Baobf5b77d2017-03-30 16:57:29 -07001494 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001495
Tao Baobf5b77d2017-03-30 16:57:29 -07001496 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +00001497}
1498
1499// Definitions for transfer list command functions
Tao Bao0940fe12015-08-27 16:41:21 -07001500typedef int (*CommandFunction)(CommandParameters&);
Sami Tolvanen90221202014-12-09 16:39:47 +00001501
Tao Bao612336d2015-08-27 16:41:21 -07001502struct Command {
Sami Tolvanen90221202014-12-09 16:39:47 +00001503 const char* name;
1504 CommandFunction f;
Tao Bao612336d2015-08-27 16:41:21 -07001505};
Sami Tolvanen90221202014-12-09 16:39:47 +00001506
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001507// args:
1508// - block device (or file) to modify in-place
1509// - transfer list (blob)
1510// - new data stream (filename within package.zip)
1511// - patch stream (filename within package.zip, must be uncompressed)
1512
Tianjie Xuc4447322017-03-06 14:44:59 -08001513static Value* PerformBlockImageUpdate(const char* name, State* state,
1514 const std::vector<std::unique_ptr<Expr>>& argv,
1515 const Command* commands, size_t cmdcount, bool dryrun) {
Tao Bao33567772017-03-13 14:57:34 -07001516 CommandParameters params = {};
1517 params.canwrite = !dryrun;
Sami Tolvanen90221202014-12-09 16:39:47 +00001518
Tao Bao33567772017-03-13 14:57:34 -07001519 LOG(INFO) << "performing " << (dryrun ? "verification" : "update");
1520 if (state->is_retry) {
1521 is_retry = true;
1522 LOG(INFO) << "This update is a retry.";
1523 }
1524 if (argv.size() != 4) {
1525 ErrorAbort(state, kArgsParsingFailure, "block_image_update expects 4 arguments, got %zu",
1526 argv.size());
1527 return StringValue("");
1528 }
1529
1530 std::vector<std::unique_ptr<Value>> args;
1531 if (!ReadValueArgs(state, argv, &args)) {
1532 return nullptr;
1533 }
1534
Tao Baoc97edcb2017-03-31 01:18:13 -07001535 const std::unique_ptr<Value>& blockdev_filename = args[0];
1536 const std::unique_ptr<Value>& transfer_list_value = args[1];
1537 const std::unique_ptr<Value>& new_data_fn = args[2];
1538 const std::unique_ptr<Value>& patch_data_fn = args[3];
Tao Bao33567772017-03-13 14:57:34 -07001539
1540 if (blockdev_filename->type != VAL_STRING) {
1541 ErrorAbort(state, kArgsParsingFailure, "blockdev_filename argument to %s must be string", name);
1542 return StringValue("");
1543 }
1544 if (transfer_list_value->type != VAL_BLOB) {
1545 ErrorAbort(state, kArgsParsingFailure, "transfer_list argument to %s must be blob", name);
1546 return StringValue("");
1547 }
1548 if (new_data_fn->type != VAL_STRING) {
1549 ErrorAbort(state, kArgsParsingFailure, "new_data_fn argument to %s must be string", name);
1550 return StringValue("");
1551 }
1552 if (patch_data_fn->type != VAL_STRING) {
1553 ErrorAbort(state, kArgsParsingFailure, "patch_data_fn argument to %s must be string", name);
1554 return StringValue("");
1555 }
1556
1557 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
1558 if (ui == nullptr) {
1559 return StringValue("");
1560 }
1561
1562 FILE* cmd_pipe = ui->cmd_pipe;
1563 ZipArchiveHandle za = ui->package_zip;
1564
1565 if (cmd_pipe == nullptr || za == nullptr) {
1566 return StringValue("");
1567 }
1568
1569 ZipString path_data(patch_data_fn->data.c_str());
1570 ZipEntry patch_entry;
1571 if (FindEntry(za, path_data, &patch_entry) != 0) {
1572 LOG(ERROR) << name << "(): no file \"" << patch_data_fn->data << "\" in package";
1573 return StringValue("");
1574 }
1575
1576 params.patch_start = ui->package_zip_addr + patch_entry.offset;
1577 ZipString new_data(new_data_fn->data.c_str());
1578 ZipEntry new_entry;
1579 if (FindEntry(za, new_data, &new_entry) != 0) {
1580 LOG(ERROR) << name << "(): no file \"" << new_data_fn->data << "\" in package";
1581 return StringValue("");
1582 }
1583
1584 params.fd.reset(TEMP_FAILURE_RETRY(ota_open(blockdev_filename->data.c_str(), O_RDWR)));
1585 if (params.fd == -1) {
1586 PLOG(ERROR) << "open \"" << blockdev_filename->data << "\" failed";
1587 return StringValue("");
1588 }
1589
Tao Bao864c6682018-05-07 11:38:25 -07001590 // Stash directory should be different for each partition to avoid conflicts when updating
1591 // multiple partitions at the same time, so we use the hash of the block device name as the base
1592 // directory.
1593 uint8_t digest[SHA_DIGEST_LENGTH];
1594 SHA1(reinterpret_cast<const uint8_t*>(blockdev_filename->data.data()),
1595 blockdev_filename->data.size(), digest);
1596 params.stashbase = print_sha1(digest);
1597
1598 // Possibly do return early on retry, by checking the marker. If the update on this partition has
1599 // been finished (but interrupted at a later point), there could be leftover on /cache that would
1600 // fail the no-op retry.
1601 std::string updated_marker = GetStashFileName(params.stashbase + ".UPDATED", "", "");
1602 if (is_retry) {
1603 struct stat sb;
1604 int result = stat(updated_marker.c_str(), &sb);
1605 if (result == 0) {
1606 LOG(INFO) << "Skipping already updated partition " << blockdev_filename->data
1607 << " based on marker";
1608 return StringValue("t");
1609 }
1610 } else {
1611 // Delete the obsolete marker if any.
1612 std::string err;
1613 if (!android::base::RemoveFileIfExists(updated_marker, &err)) {
1614 LOG(ERROR) << "Failed to remove partition updated marker " << updated_marker << ": " << err;
1615 return StringValue("");
1616 }
1617 }
1618
Tao Bao33567772017-03-13 14:57:34 -07001619 if (params.canwrite) {
1620 params.nti.za = za;
1621 params.nti.entry = new_entry;
Tianjie Xu107a34f2017-06-29 17:04:21 -07001622 params.nti.brotli_compressed = android::base::EndsWith(new_data_fn->data, ".br");
1623 if (params.nti.brotli_compressed) {
1624 // Initialize brotli decoder state.
1625 params.nti.brotli_decoder_state = BrotliDecoderCreateInstance(nullptr, nullptr, nullptr);
1626 }
Tianjie Xu3a8d98d2017-04-03 20:01:17 -07001627 params.nti.receiver_available = true;
Tao Bao33567772017-03-13 14:57:34 -07001628
1629 pthread_mutex_init(&params.nti.mu, nullptr);
1630 pthread_cond_init(&params.nti.cv, nullptr);
1631 pthread_attr_t attr;
1632 pthread_attr_init(&attr);
1633 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
1634
1635 int error = pthread_create(&params.thread, &attr, unzip_new_data, &params.nti);
1636 if (error != 0) {
1637 PLOG(ERROR) << "pthread_create failed";
1638 return StringValue("");
Tianjie Xu7ce287d2016-05-31 09:29:49 -07001639 }
Tao Bao33567772017-03-13 14:57:34 -07001640 }
1641
1642 std::vector<std::string> lines = android::base::Split(transfer_list_value->data, "\n");
1643 if (lines.size() < 2) {
Tianjie Xu5ad80282018-01-28 15:37:48 -08001644 ErrorAbort(state, kArgsParsingFailure, "too few lines in the transfer list [%zd]",
Tao Bao33567772017-03-13 14:57:34 -07001645 lines.size());
1646 return StringValue("");
1647 }
1648
1649 // First line in transfer list is the version number.
1650 if (!android::base::ParseInt(lines[0], &params.version, 3, 4)) {
1651 LOG(ERROR) << "unexpected transfer list version [" << lines[0] << "]";
1652 return StringValue("");
1653 }
1654
1655 LOG(INFO) << "blockimg version is " << params.version;
1656
1657 // Second line in transfer list is the total number of blocks we expect to write.
1658 size_t total_blocks;
1659 if (!android::base::ParseUint(lines[1], &total_blocks)) {
Tianjie Xu5ad80282018-01-28 15:37:48 -08001660 ErrorAbort(state, kArgsParsingFailure, "unexpected block count [%s]", lines[1].c_str());
Tao Bao33567772017-03-13 14:57:34 -07001661 return StringValue("");
1662 }
1663
1664 if (total_blocks == 0) {
1665 return StringValue("t");
1666 }
1667
Tao Bao33567772017-03-13 14:57:34 -07001668 if (lines.size() < 4) {
Tianjie Xu5ad80282018-01-28 15:37:48 -08001669 ErrorAbort(state, kArgsParsingFailure, "too few lines in the transfer list [%zu]",
Tao Bao33567772017-03-13 14:57:34 -07001670 lines.size());
1671 return StringValue("");
1672 }
1673
1674 // Third line is how many stash entries are needed simultaneously.
1675 LOG(INFO) << "maximum stash entries " << lines[2];
1676
1677 // Fourth line is the maximum number of blocks that will be stashed simultaneously
1678 size_t stash_max_blocks;
1679 if (!android::base::ParseUint(lines[3], &stash_max_blocks)) {
Tianjie Xu5ad80282018-01-28 15:37:48 -08001680 ErrorAbort(state, kArgsParsingFailure, "unexpected maximum stash blocks [%s]",
Tao Bao33567772017-03-13 14:57:34 -07001681 lines[3].c_str());
1682 return StringValue("");
1683 }
1684
Tao Bao864c6682018-05-07 11:38:25 -07001685 int res = CreateStash(state, stash_max_blocks, params.stashbase);
Tao Bao33567772017-03-13 14:57:34 -07001686 if (res == -1) {
1687 return StringValue("");
1688 }
1689
1690 params.createdstash = res;
1691
Tao Bao26efb0a2018-05-21 14:59:55 -07001692 // When performing an update, save the index and cmdline of the current command into the
1693 // last_command_file.
Tianjie Xu284752e2017-12-05 11:04:17 -08001694 // Upon resuming an update, read the saved index first; then
1695 // 1. In verification mode, check if the 'move' or 'diff' commands before the saved index has
1696 // the expected target blocks already. If not, these commands cannot be skipped and we need
1697 // to attempt to execute them again. Therefore, we will delete the last_command_file so that
1698 // the update will resume from the start of the transfer list.
1699 // 2. In update mode, skip all commands before the saved index. Therefore, we can avoid deleting
1700 // stashes with duplicate id unintentionally (b/69858743); and also speed up the update.
1701 // If an update succeeds or is unresumable, delete the last_command_file.
Tao Bao26efb0a2018-05-21 14:59:55 -07001702 bool skip_executed_command = true;
1703 size_t saved_last_command_index;
Tianjie Xu284752e2017-12-05 11:04:17 -08001704 if (!ParseLastCommandFile(&saved_last_command_index)) {
1705 DeleteLastCommandFile();
Tao Bao26efb0a2018-05-21 14:59:55 -07001706 // We failed to parse the last command. Disallow skipping executed commands.
1707 skip_executed_command = false;
Tianjie Xu284752e2017-12-05 11:04:17 -08001708 }
1709
Tao Bao33567772017-03-13 14:57:34 -07001710 // Build a map of the available commands
1711 std::unordered_map<std::string, const Command*> cmd_map;
1712 for (size_t i = 0; i < cmdcount; ++i) {
1713 if (cmd_map.find(commands[i].name) != cmd_map.end()) {
1714 LOG(ERROR) << "Error: command [" << commands[i].name << "] already exists in the cmd map.";
Tao Bao188f3a52018-04-24 14:15:14 -07001715 return StringValue("");
Tao Bao33567772017-03-13 14:57:34 -07001716 }
1717 cmd_map[commands[i].name] = &commands[i];
1718 }
1719
1720 int rc = -1;
1721
Tao Baoab207062018-05-21 14:48:49 -07001722 static constexpr size_t kTransferListHeaderLines = 4;
Tao Bao33567772017-03-13 14:57:34 -07001723 // Subsequent lines are all individual transfer commands
Tao Baoab207062018-05-21 14:48:49 -07001724 for (size_t i = kTransferListHeaderLines; i < lines.size(); i++) {
Tianjie Xu284752e2017-12-05 11:04:17 -08001725 const std::string& line = lines[i];
Tao Bao33567772017-03-13 14:57:34 -07001726 if (line.empty()) continue;
1727
Tao Bao26efb0a2018-05-21 14:59:55 -07001728 size_t cmdindex = i - kTransferListHeaderLines;
Tao Bao33567772017-03-13 14:57:34 -07001729 params.tokens = android::base::Split(line, " ");
1730 params.cpos = 0;
1731 params.cmdname = params.tokens[params.cpos++].c_str();
1732 params.cmdline = line.c_str();
Tianjie Xu284752e2017-12-05 11:04:17 -08001733 params.target_verified = false;
Tao Bao33567772017-03-13 14:57:34 -07001734
1735 if (cmd_map.find(params.cmdname) == cmd_map.end()) {
1736 LOG(ERROR) << "unexpected command [" << params.cmdname << "]";
1737 goto pbiudone;
Tianjie Xuc4447322017-03-06 14:44:59 -08001738 }
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001739
Tao Bao33567772017-03-13 14:57:34 -07001740 const Command* cmd = cmd_map[params.cmdname];
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001741
Tianjie Xuc2420842018-02-27 17:05:39 -08001742 // Skip the command if we explicitly set the corresponding function pointer to nullptr, e.g.
1743 // "erase" during block_image_verify.
Tianjie Xu284752e2017-12-05 11:04:17 -08001744 if (cmd->f == nullptr) {
Tianjie Xuc2420842018-02-27 17:05:39 -08001745 LOG(DEBUG) << "skip executing command [" << line << "]";
1746 continue;
Tianjie Xu284752e2017-12-05 11:04:17 -08001747 }
1748
Tao Bao98f875e2018-05-07 15:03:30 -07001749 std::string cmdname = std::string(params.cmdname);
1750
1751 // Skip all commands before the saved last command index when resuming an update, except for
1752 // "new" command. Because new commands read in the data sequentially.
Tao Bao26efb0a2018-05-21 14:59:55 -07001753 if (params.canwrite && skip_executed_command && cmdindex <= saved_last_command_index &&
Tao Bao98f875e2018-05-07 15:03:30 -07001754 cmdname != "new") {
Tao Bao26efb0a2018-05-21 14:59:55 -07001755 LOG(INFO) << "Skipping already executed command: " << cmdindex
Tianjie Xu284752e2017-12-05 11:04:17 -08001756 << ", last executed command for previous update: " << saved_last_command_index;
1757 continue;
1758 }
1759
1760 if (cmd->f(params) == -1) {
Tao Bao33567772017-03-13 14:57:34 -07001761 LOG(ERROR) << "failed to execute command [" << line << "]";
1762 goto pbiudone;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001763 }
1764
Tao Bao26efb0a2018-05-21 14:59:55 -07001765 // In verify mode, check if the commands before the saved last_command_index have been executed
1766 // correctly. If some target blocks have unexpected contents, delete the last command file so
1767 // that we will resume the update from the first command in the transfer list.
1768 if (!params.canwrite && skip_executed_command && cmdindex <= saved_last_command_index) {
Tianjie Xu284752e2017-12-05 11:04:17 -08001769 // TODO(xunchang) check that the cmdline of the saved index is correct.
Tianjie Xu284752e2017-12-05 11:04:17 -08001770 if ((cmdname == "move" || cmdname == "bsdiff" || cmdname == "imgdiff") &&
1771 !params.target_verified) {
1772 LOG(WARNING) << "Previously executed command " << saved_last_command_index << ": "
1773 << params.cmdline << " doesn't produce expected target blocks.";
Tao Bao26efb0a2018-05-21 14:59:55 -07001774 skip_executed_command = false;
Tianjie Xu284752e2017-12-05 11:04:17 -08001775 DeleteLastCommandFile();
1776 }
1777 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001778 if (params.canwrite) {
Tao Bao33567772017-03-13 14:57:34 -07001779 if (ota_fsync(params.fd) == -1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001780 failure_type = kFsyncFailure;
Tao Bao039f2da2016-11-22 16:29:50 -08001781 PLOG(ERROR) << "fsync failed";
Tao Bao33567772017-03-13 14:57:34 -07001782 goto pbiudone;
1783 }
Tianjie Xuc2b2bb52018-05-15 15:09:59 -07001784
Tao Bao26efb0a2018-05-21 14:59:55 -07001785 if (!UpdateLastCommandIndex(cmdindex, params.cmdline)) {
Tianjie Xuc2b2bb52018-05-15 15:09:59 -07001786 LOG(WARNING) << "Failed to update the last command file.";
1787 }
1788
Tao Bao33567772017-03-13 14:57:34 -07001789 fprintf(cmd_pipe, "set_progress %.4f\n", static_cast<double>(params.written) / total_blocks);
1790 fflush(cmd_pipe);
Sami Tolvanen90221202014-12-09 16:39:47 +00001791 }
Tao Bao33567772017-03-13 14:57:34 -07001792 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001793
Tao Bao33567772017-03-13 14:57:34 -07001794 rc = 0;
Tianjie Xu16255832016-04-30 11:49:59 -07001795
Tao Bao33567772017-03-13 14:57:34 -07001796pbiudone:
Tianjie Xu5450c842017-10-18 13:15:21 -07001797 if (params.canwrite) {
1798 pthread_mutex_lock(&params.nti.mu);
1799 if (params.nti.receiver_available) {
1800 LOG(WARNING) << "new data receiver is still available after executing all commands.";
1801 }
1802 params.nti.receiver_available = false;
1803 pthread_cond_broadcast(&params.nti.cv);
1804 pthread_mutex_unlock(&params.nti.mu);
1805 int ret = pthread_join(params.thread, nullptr);
1806 if (ret != 0) {
1807 LOG(WARNING) << "pthread join returned with " << strerror(ret);
1808 }
1809
1810 if (rc == 0) {
1811 LOG(INFO) << "wrote " << params.written << " blocks; expected " << total_blocks;
1812 LOG(INFO) << "stashed " << params.stashed << " blocks";
1813 LOG(INFO) << "max alloc needed was " << params.buffer.size();
1814
1815 const char* partition = strrchr(blockdev_filename->data.c_str(), '/');
1816 if (partition != nullptr && *(partition + 1) != 0) {
1817 fprintf(cmd_pipe, "log bytes_written_%s: %zu\n", partition + 1, params.written * BLOCKSIZE);
1818 fprintf(cmd_pipe, "log bytes_stashed_%s: %zu\n", partition + 1, params.stashed * BLOCKSIZE);
1819 fflush(cmd_pipe);
1820 }
1821 // Delete stash only after successfully completing the update, as it may contain blocks needed
1822 // to complete the update later.
1823 DeleteStash(params.stashbase);
Tianjie Xu284752e2017-12-05 11:04:17 -08001824 DeleteLastCommandFile();
Tao Bao864c6682018-05-07 11:38:25 -07001825
1826 // Create a marker on /cache partition, which allows skipping the update on this partition on
1827 // retry. The marker will be removed once booting into normal boot, or before starting next
1828 // fresh install.
1829 if (!SetPartitionUpdatedMarker(updated_marker)) {
1830 LOG(WARNING) << "Failed to set updated marker; continuing";
1831 }
Tianjie Xu5450c842017-10-18 13:15:21 -07001832 }
1833
1834 pthread_mutex_destroy(&params.nti.mu);
1835 pthread_cond_destroy(&params.nti.cv);
1836 } else if (rc == 0) {
1837 LOG(INFO) << "verified partition contents; update may be resumed";
1838 }
1839
Tao Bao33567772017-03-13 14:57:34 -07001840 if (ota_fsync(params.fd) == -1) {
1841 failure_type = kFsyncFailure;
1842 PLOG(ERROR) << "fsync failed";
1843 }
1844 // params.fd will be automatically closed because it's a unique_fd.
1845
Tianjie Xu107a34f2017-06-29 17:04:21 -07001846 if (params.nti.brotli_decoder_state != nullptr) {
1847 BrotliDecoderDestroyInstance(params.nti.brotli_decoder_state);
1848 }
1849
Tianjie Xu284752e2017-12-05 11:04:17 -08001850 // Delete the last command file if the update cannot be resumed.
1851 if (params.isunresumable) {
1852 DeleteLastCommandFile();
1853 }
1854
Tao Bao33567772017-03-13 14:57:34 -07001855 // Only delete the stash if the update cannot be resumed, or it's a verification run and we
1856 // created the stash.
1857 if (params.isunresumable || (!params.canwrite && params.createdstash)) {
1858 DeleteStash(params.stashbase);
1859 }
1860
1861 if (failure_type != kNoCause && state->cause_code == kNoCause) {
1862 state->cause_code = failure_type;
1863 }
1864
1865 return StringValue(rc == 0 ? "t" : "");
Sami Tolvanen90221202014-12-09 16:39:47 +00001866}
1867
Tao Bao33567772017-03-13 14:57:34 -07001868/**
1869 * The transfer list is a text file containing commands to transfer data from one place to another
1870 * on the target partition. We parse it and execute the commands in order:
1871 *
1872 * zero [rangeset]
1873 * - Fill the indicated blocks with zeros.
1874 *
1875 * new [rangeset]
1876 * - Fill the blocks with data read from the new_data file.
1877 *
1878 * erase [rangeset]
1879 * - Mark the given blocks as empty.
1880 *
1881 * move <...>
1882 * bsdiff <patchstart> <patchlen> <...>
1883 * imgdiff <patchstart> <patchlen> <...>
1884 * - Read the source blocks, apply a patch (or not in the case of move), write result to target
1885 * blocks. bsdiff or imgdiff specifies the type of patch; move means no patch at all.
1886 *
1887 * See the comments in LoadSrcTgtVersion3() for a description of the <...> format.
1888 *
1889 * stash <stash_id> <src_range>
1890 * - Load the given source range and stash the data in the given slot of the stash table.
1891 *
1892 * free <stash_id>
1893 * - Free the given stash data.
1894 *
1895 * The creator of the transfer list will guarantee that no block is read (ie, used as the source for
1896 * a patch or move) after it has been written.
1897 *
1898 * The creator will guarantee that a given stash is loaded (with a stash command) before it's used
1899 * in a move/bsdiff/imgdiff command.
1900 *
1901 * Within one command the source and target ranges may overlap so in general we need to read the
1902 * entire source into memory before writing anything to the target blocks.
1903 *
1904 * All the patch data is concatenated into one patch_data file in the update package. It must be
1905 * stored uncompressed because we memory-map it in directly from the archive. (Since patches are
1906 * already compressed, we lose very little by not compressing their concatenation.)
1907 *
1908 * Commands that read data from the partition (i.e. move/bsdiff/imgdiff/stash) have one or more
1909 * additional hashes before the range parameters, which are used to check if the command has already
1910 * been completed and verify the integrity of the source data.
1911 */
Tianjie Xuc4447322017-03-06 14:44:59 -08001912Value* BlockImageVerifyFn(const char* name, State* state,
1913 const std::vector<std::unique_ptr<Expr>>& argv) {
Tao Bao0940fe12015-08-27 16:41:21 -07001914 // Commands which are not tested are set to nullptr to skip them completely
Sami Tolvanen90221202014-12-09 16:39:47 +00001915 const Command commands[] = {
1916 { "bsdiff", PerformCommandDiff },
Tao Bao0940fe12015-08-27 16:41:21 -07001917 { "erase", nullptr },
Sami Tolvanen90221202014-12-09 16:39:47 +00001918 { "free", PerformCommandFree },
1919 { "imgdiff", PerformCommandDiff },
1920 { "move", PerformCommandMove },
Tao Bao0940fe12015-08-27 16:41:21 -07001921 { "new", nullptr },
Sami Tolvanen90221202014-12-09 16:39:47 +00001922 { "stash", PerformCommandStash },
Tao Bao0940fe12015-08-27 16:41:21 -07001923 { "zero", nullptr }
Sami Tolvanen90221202014-12-09 16:39:47 +00001924 };
1925
1926 // Perform a dry run without writing to test if an update can proceed
Tianjie Xuc4447322017-03-06 14:44:59 -08001927 return PerformBlockImageUpdate(name, state, argv, commands,
Tao Baoe6aa3322015-08-05 15:20:27 -07001928 sizeof(commands) / sizeof(commands[0]), true);
Sami Tolvanen90221202014-12-09 16:39:47 +00001929}
1930
Tianjie Xuc4447322017-03-06 14:44:59 -08001931Value* BlockImageUpdateFn(const char* name, State* state,
1932 const std::vector<std::unique_ptr<Expr>>& argv) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001933 const Command commands[] = {
1934 { "bsdiff", PerformCommandDiff },
1935 { "erase", PerformCommandErase },
1936 { "free", PerformCommandFree },
1937 { "imgdiff", PerformCommandDiff },
1938 { "move", PerformCommandMove },
1939 { "new", PerformCommandNew },
1940 { "stash", PerformCommandStash },
1941 { "zero", PerformCommandZero }
1942 };
1943
Tianjie Xuc4447322017-03-06 14:44:59 -08001944 return PerformBlockImageUpdate(name, state, argv, commands,
Tao Baoe6aa3322015-08-05 15:20:27 -07001945 sizeof(commands) / sizeof(commands[0]), false);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001946}
1947
Tianjie Xuc4447322017-03-06 14:44:59 -08001948Value* RangeSha1Fn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
Tao Baoc97edcb2017-03-31 01:18:13 -07001949 if (argv.size() != 2) {
1950 ErrorAbort(state, kArgsParsingFailure, "range_sha1 expects 2 arguments, got %zu", argv.size());
1951 return StringValue("");
1952 }
1953
1954 std::vector<std::unique_ptr<Value>> args;
1955 if (!ReadValueArgs(state, argv, &args)) {
1956 return nullptr;
1957 }
1958
1959 const std::unique_ptr<Value>& blockdev_filename = args[0];
1960 const std::unique_ptr<Value>& ranges = args[1];
1961
1962 if (blockdev_filename->type != VAL_STRING) {
1963 ErrorAbort(state, kArgsParsingFailure, "blockdev_filename argument to %s must be string", name);
1964 return StringValue("");
1965 }
1966 if (ranges->type != VAL_STRING) {
1967 ErrorAbort(state, kArgsParsingFailure, "ranges argument to %s must be string", name);
1968 return StringValue("");
1969 }
1970
1971 android::base::unique_fd fd(ota_open(blockdev_filename->data.c_str(), O_RDWR));
1972 if (fd == -1) {
1973 ErrorAbort(state, kFileOpenFailure, "open \"%s\" failed: %s", blockdev_filename->data.c_str(),
1974 strerror(errno));
1975 return StringValue("");
1976 }
1977
1978 RangeSet rs = RangeSet::Parse(ranges->data);
Tao Bao67983152017-11-04 00:08:08 -07001979 CHECK(static_cast<bool>(rs));
Tao Baoc97edcb2017-03-31 01:18:13 -07001980
1981 SHA_CTX ctx;
1982 SHA1_Init(&ctx);
1983
1984 std::vector<uint8_t> buffer(BLOCKSIZE);
Tao Baobf5b77d2017-03-30 16:57:29 -07001985 for (const auto& range : rs) {
1986 if (!check_lseek(fd, static_cast<off64_t>(range.first) * BLOCKSIZE, SEEK_SET)) {
Tao Baoc97edcb2017-03-31 01:18:13 -07001987 ErrorAbort(state, kLseekFailure, "failed to seek %s: %s", blockdev_filename->data.c_str(),
1988 strerror(errno));
1989 return StringValue("");
1990 }
1991
Tao Baobf5b77d2017-03-30 16:57:29 -07001992 for (size_t j = range.first; j < range.second; ++j) {
Tao Baoc97edcb2017-03-31 01:18:13 -07001993 if (read_all(fd, buffer, BLOCKSIZE) == -1) {
1994 ErrorAbort(state, kFreadFailure, "failed to read %s: %s", blockdev_filename->data.c_str(),
1995 strerror(errno));
Tianjie Xuc4447322017-03-06 14:44:59 -08001996 return StringValue("");
Tao Baoc97edcb2017-03-31 01:18:13 -07001997 }
1998
1999 SHA1_Update(&ctx, buffer.data(), BLOCKSIZE);
Tianjie Xuc4447322017-03-06 14:44:59 -08002000 }
Tao Baoc97edcb2017-03-31 01:18:13 -07002001 }
2002 uint8_t digest[SHA_DIGEST_LENGTH];
2003 SHA1_Final(digest, &ctx);
Tianjie Xuc4447322017-03-06 14:44:59 -08002004
Tao Baoc97edcb2017-03-31 01:18:13 -07002005 return StringValue(print_sha1(digest));
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07002006}
2007
Tianjie Xu57bed6d2015-12-15 11:47:30 -08002008// This function checks if a device has been remounted R/W prior to an incremental
2009// OTA update. This is an common cause of update abortion. The function reads the
2010// 1st block of each partition and check for mounting time/count. It return string "t"
2011// if executes successfully and an empty string otherwise.
2012
Tianjie Xuc4447322017-03-06 14:44:59 -08002013Value* CheckFirstBlockFn(const char* name, State* state,
2014 const std::vector<std::unique_ptr<Expr>>& argv) {
Tao Baoc97edcb2017-03-31 01:18:13 -07002015 if (argv.size() != 1) {
2016 ErrorAbort(state, kArgsParsingFailure, "check_first_block expects 1 argument, got %zu",
2017 argv.size());
2018 return StringValue("");
2019 }
Tianjie Xuc4447322017-03-06 14:44:59 -08002020
Tao Baoc97edcb2017-03-31 01:18:13 -07002021 std::vector<std::unique_ptr<Value>> args;
2022 if (!ReadValueArgs(state, argv, &args)) {
2023 return nullptr;
2024 }
Tianjie Xu57bed6d2015-12-15 11:47:30 -08002025
Tao Baoc97edcb2017-03-31 01:18:13 -07002026 const std::unique_ptr<Value>& arg_filename = args[0];
Tianjie Xu5fe280a2016-10-17 18:15:20 -07002027
Tao Baoc97edcb2017-03-31 01:18:13 -07002028 if (arg_filename->type != VAL_STRING) {
2029 ErrorAbort(state, kArgsParsingFailure, "filename argument to %s must be string", name);
2030 return StringValue("");
2031 }
Tianjie Xu57bed6d2015-12-15 11:47:30 -08002032
Tao Baoc97edcb2017-03-31 01:18:13 -07002033 android::base::unique_fd fd(ota_open(arg_filename->data.c_str(), O_RDONLY));
2034 if (fd == -1) {
2035 ErrorAbort(state, kFileOpenFailure, "open \"%s\" failed: %s", arg_filename->data.c_str(),
2036 strerror(errno));
2037 return StringValue("");
2038 }
Tianjie Xu57bed6d2015-12-15 11:47:30 -08002039
Tao Baobf5b77d2017-03-30 16:57:29 -07002040 RangeSet blk0(std::vector<Range>{ Range{ 0, 1 } });
Tao Baoc97edcb2017-03-31 01:18:13 -07002041 std::vector<uint8_t> block0_buffer(BLOCKSIZE);
Tianjie Xu57bed6d2015-12-15 11:47:30 -08002042
Tao Baoc97edcb2017-03-31 01:18:13 -07002043 if (ReadBlocks(blk0, block0_buffer, fd) == -1) {
2044 ErrorAbort(state, kFreadFailure, "failed to read %s: %s", arg_filename->data.c_str(),
2045 strerror(errno));
2046 return StringValue("");
2047 }
Tianjie Xu57bed6d2015-12-15 11:47:30 -08002048
Tao Baoc97edcb2017-03-31 01:18:13 -07002049 // https://ext4.wiki.kernel.org/index.php/Ext4_Disk_Layout
2050 // Super block starts from block 0, offset 0x400
2051 // 0x2C: len32 Mount time
2052 // 0x30: len32 Write time
2053 // 0x34: len16 Number of mounts since the last fsck
2054 // 0x38: len16 Magic signature 0xEF53
Tianjie Xu57bed6d2015-12-15 11:47:30 -08002055
Tao Baoc97edcb2017-03-31 01:18:13 -07002056 time_t mount_time = *reinterpret_cast<uint32_t*>(&block0_buffer[0x400 + 0x2C]);
2057 uint16_t mount_count = *reinterpret_cast<uint16_t*>(&block0_buffer[0x400 + 0x34]);
Tianjie Xu57bed6d2015-12-15 11:47:30 -08002058
Tao Baoc97edcb2017-03-31 01:18:13 -07002059 if (mount_count > 0) {
2060 uiPrintf(state, "Device was remounted R/W %" PRIu16 " times", mount_count);
2061 uiPrintf(state, "Last remount happened on %s", ctime(&mount_time));
2062 }
Tianjie Xu57bed6d2015-12-15 11:47:30 -08002063
Tao Baoc97edcb2017-03-31 01:18:13 -07002064 return StringValue("t");
Tianjie Xu57bed6d2015-12-15 11:47:30 -08002065}
2066
Tianjie Xuc4447322017-03-06 14:44:59 -08002067Value* BlockImageRecoverFn(const char* name, State* state,
2068 const std::vector<std::unique_ptr<Expr>>& argv) {
Tao Baoc97edcb2017-03-31 01:18:13 -07002069 if (argv.size() != 2) {
2070 ErrorAbort(state, kArgsParsingFailure, "block_image_recover expects 2 arguments, got %zu",
2071 argv.size());
2072 return StringValue("");
2073 }
2074
2075 std::vector<std::unique_ptr<Value>> args;
2076 if (!ReadValueArgs(state, argv, &args)) {
2077 return nullptr;
2078 }
2079
2080 const std::unique_ptr<Value>& filename = args[0];
2081 const std::unique_ptr<Value>& ranges = args[1];
2082
2083 if (filename->type != VAL_STRING) {
2084 ErrorAbort(state, kArgsParsingFailure, "filename argument to %s must be string", name);
2085 return StringValue("");
2086 }
2087 if (ranges->type != VAL_STRING) {
2088 ErrorAbort(state, kArgsParsingFailure, "ranges argument to %s must be string", name);
2089 return StringValue("");
2090 }
Tao Bao67983152017-11-04 00:08:08 -07002091 RangeSet rs = RangeSet::Parse(ranges->data);
2092 if (!rs) {
2093 ErrorAbort(state, kArgsParsingFailure, "failed to parse ranges: %s", ranges->data.c_str());
2094 return StringValue("");
2095 }
Tao Baoc97edcb2017-03-31 01:18:13 -07002096
2097 // Output notice to log when recover is attempted
2098 LOG(INFO) << filename->data << " image corrupted, attempting to recover...";
2099
2100 // When opened with O_RDWR, libfec rewrites corrupted blocks when they are read
2101 fec::io fh(filename->data, O_RDWR);
2102
2103 if (!fh) {
2104 ErrorAbort(state, kLibfecFailure, "fec_open \"%s\" failed: %s", filename->data.c_str(),
2105 strerror(errno));
2106 return StringValue("");
2107 }
2108
2109 if (!fh.has_ecc() || !fh.has_verity()) {
2110 ErrorAbort(state, kLibfecFailure, "unable to use metadata to correct errors");
2111 return StringValue("");
2112 }
2113
2114 fec_status status;
Tao Baoc97edcb2017-03-31 01:18:13 -07002115 if (!fh.get_status(status)) {
2116 ErrorAbort(state, kLibfecFailure, "failed to read FEC status");
2117 return StringValue("");
2118 }
2119
Tao Baoc97edcb2017-03-31 01:18:13 -07002120 uint8_t buffer[BLOCKSIZE];
Tao Bao67983152017-11-04 00:08:08 -07002121 for (const auto& range : rs) {
Tao Baobf5b77d2017-03-30 16:57:29 -07002122 for (size_t j = range.first; j < range.second; ++j) {
Tao Baoc97edcb2017-03-31 01:18:13 -07002123 // Stay within the data area, libfec validates and corrects metadata
Tao Baobf5b77d2017-03-30 16:57:29 -07002124 if (status.data_size <= static_cast<uint64_t>(j) * BLOCKSIZE) {
Tao Baoc97edcb2017-03-31 01:18:13 -07002125 continue;
2126 }
2127
Tao Baobf5b77d2017-03-30 16:57:29 -07002128 if (fh.pread(buffer, BLOCKSIZE, static_cast<off64_t>(j) * BLOCKSIZE) != BLOCKSIZE) {
Tao Baoc97edcb2017-03-31 01:18:13 -07002129 ErrorAbort(state, kLibfecFailure, "failed to recover %s (block %zu): %s",
2130 filename->data.c_str(), j, strerror(errno));
Tianjie Xuc4447322017-03-06 14:44:59 -08002131 return StringValue("");
Tao Baoc97edcb2017-03-31 01:18:13 -07002132 }
2133
2134 // If we want to be able to recover from a situation where rewriting a corrected
2135 // block doesn't guarantee the same data will be returned when re-read later, we
2136 // can save a copy of corrected blocks to /cache. Note:
2137 //
2138 // 1. Maximum space required from /cache is the same as the maximum number of
2139 // corrupted blocks we can correct. For RS(255, 253) and a 2 GiB partition,
2140 // this would be ~16 MiB, for example.
2141 //
2142 // 2. To find out if this block was corrupted, call fec_get_status after each
2143 // read and check if the errors field value has increased.
Tianjie Xuc4447322017-03-06 14:44:59 -08002144 }
Tao Baoc97edcb2017-03-31 01:18:13 -07002145 }
2146 LOG(INFO) << "..." << filename->data << " image recovered successfully.";
2147 return StringValue("t");
Sami Tolvanen0a7b4732015-06-25 10:25:36 +01002148}
2149
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07002150void RegisterBlockImageFunctions() {
Tao Baoc97edcb2017-03-31 01:18:13 -07002151 RegisterFunction("block_image_verify", BlockImageVerifyFn);
2152 RegisterFunction("block_image_update", BlockImageUpdateFn);
2153 RegisterFunction("block_image_recover", BlockImageRecoverFn);
2154 RegisterFunction("check_first_block", CheckFirstBlockFn);
2155 RegisterFunction("range_sha1", RangeSha1Fn);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07002156}