blob: 5a27ff41a7f5d802a26ccd7bd63765bf19d26bf1 [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>
18#include <errno.h>
Sami Tolvanen90221202014-12-09 16:39:47 +000019#include <dirent.h>
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070020#include <fcntl.h>
Tao Baoba9a42a2015-06-23 23:23:33 -070021#include <linux/fs.h>
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070022#include <pthread.h>
23#include <stdarg.h>
24#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
Sami Tolvanen90221202014-12-09 16:39:47 +000027#include <sys/stat.h>
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070028#include <sys/types.h>
29#include <sys/wait.h>
30#include <sys/ioctl.h>
31#include <time.h>
32#include <unistd.h>
Sami Tolvanen0a7b4732015-06-25 10:25:36 +010033#include <fec/io.h>
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070034
Tao Baoec8272f2017-03-15 17:39:01 -070035#include <functional>
Tao Baoe6aa3322015-08-05 15:20:27 -070036#include <memory>
37#include <string>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070038#include <unordered_map>
Tao Bao0940fe12015-08-27 16:41:21 -070039#include <vector>
Tao Baoe6aa3322015-08-05 15:20:27 -070040
Tao Bao039f2da2016-11-22 16:29:50 -080041#include <android-base/logging.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080042#include <android-base/parseint.h>
43#include <android-base/strings.h>
Elliott Hughesbcabd092016-03-22 20:19:22 -070044#include <android-base/unique_fd.h>
Tao Bao51412212016-12-28 14:44:05 -080045#include <applypatch/applypatch.h>
46#include <openssl/sha.h>
Tianjie Xua946b9e2017-03-21 16:24:57 -070047#include <private/android_filesystem_config.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070048#include <ziparchive/zip_archive.h>
Tao Baoe6aa3322015-08-05 15:20:27 -070049
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070050#include "edify/expr.h"
Tianjie Xu16255832016-04-30 11:49:59 -070051#include "error_code.h"
Tao Bao0c7839a2016-10-10 15:48:37 -070052#include "updater/install.h"
Jed Estep39c1b5e2015-12-15 16:04:53 -080053#include "ota_io.h"
Tao Baoe6aa3322015-08-05 15:20:27 -070054#include "print_sha1.h"
Tao Bao0c7839a2016-10-10 15:48:37 -070055#include "updater/updater.h"
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070056
Sami Tolvanene82fa182015-06-10 15:58:12 +000057// Set this to 0 to interpret 'erase' transfers to mean do a
58// BLKDISCARD ioctl (the normal behavior). Set to 1 to interpret
59// erase to mean fill the region with zeroes.
60#define DEBUG_ERASE 0
61
Tao Bao51412212016-12-28 14:44:05 -080062static constexpr size_t BLOCKSIZE = 4096;
63static constexpr const char* STASH_DIRECTORY_BASE = "/cache/recovery";
64static constexpr mode_t STASH_DIRECTORY_MODE = 0700;
65static constexpr mode_t STASH_FILE_MODE = 0600;
Sami Tolvanen90221202014-12-09 16:39:47 +000066
Tao Bao0940fe12015-08-27 16:41:21 -070067struct RangeSet {
Tao Baoc844c062016-12-28 15:15:55 -080068 size_t count; // Limit is INT_MAX.
69 size_t size;
70 std::vector<size_t> pos; // Actual limit is INT_MAX.
Tianjie Xu2cd36ba2017-03-15 23:52:46 +000071
72 // Get the block number for the ith(starting from 0) block in the range set.
73 int get_block(size_t idx) const {
74 if (idx >= size) {
75 LOG(ERROR) << "index: " << idx << " is greater than range set size: " << size;
76 return -1;
77 }
78 for (size_t i = 0; i < pos.size(); i += 2) {
79 if (idx < pos[i + 1] - pos[i]) {
80 return pos[i] + idx;
81 }
82 idx -= (pos[i + 1] - pos[i]);
83 }
84 return -1;
85 }
Tao Bao0940fe12015-08-27 16:41:21 -070086};
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070087
Tianjie Xu16255832016-04-30 11:49:59 -070088static CauseCode failure_type = kNoCause;
Tianjie Xu7ce287d2016-05-31 09:29:49 -070089static bool is_retry = false;
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070090static std::unordered_map<std::string, RangeSet> stash_map;
Tianjie Xu7eca97e2016-03-22 18:08:12 -070091
Tao Baoc844c062016-12-28 15:15:55 -080092static RangeSet parse_range(const std::string& range_text) {
93 RangeSet rs;
Sami Tolvanenf2bac042015-05-12 12:48:46 +010094
Tao Baoc844c062016-12-28 15:15:55 -080095 std::vector<std::string> pieces = android::base::Split(range_text, ",");
96 if (pieces.size() < 3) {
97 goto err;
98 }
99
100 size_t num;
101 if (!android::base::ParseUint(pieces[0], &num, static_cast<size_t>(INT_MAX))) {
102 goto err;
103 }
104
105 if (num == 0 || num % 2) {
106 goto err; // must be even
107 } else if (num != pieces.size() - 1) {
108 goto err;
109 }
110
111 rs.pos.resize(num);
112 rs.count = num / 2;
113 rs.size = 0;
114
115 for (size_t i = 0; i < num; i += 2) {
116 if (!android::base::ParseUint(pieces[i + 1], &rs.pos[i], static_cast<size_t>(INT_MAX))) {
117 goto err;
Sami Tolvanenf2bac042015-05-12 12:48:46 +0100118 }
119
Tao Baoc844c062016-12-28 15:15:55 -0800120 if (!android::base::ParseUint(pieces[i + 2], &rs.pos[i + 1], static_cast<size_t>(INT_MAX))) {
121 goto err;
Sami Tolvanenf2bac042015-05-12 12:48:46 +0100122 }
123
Tao Baoc844c062016-12-28 15:15:55 -0800124 if (rs.pos[i] >= rs.pos[i + 1]) {
125 goto err; // empty or negative range
Tao Baob15fd222015-09-24 11:10:51 -0700126 }
Sami Tolvanenf2bac042015-05-12 12:48:46 +0100127
Tao Baoc844c062016-12-28 15:15:55 -0800128 size_t sz = rs.pos[i + 1] - rs.pos[i];
129 if (rs.size > SIZE_MAX - sz) {
130 goto err; // overflow
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700131 }
132
Tao Baoc844c062016-12-28 15:15:55 -0800133 rs.size += sz;
134 }
135
136 return rs;
Sami Tolvanenf2bac042015-05-12 12:48:46 +0100137
138err:
Tao Baoc844c062016-12-28 15:15:55 -0800139 LOG(ERROR) << "failed to parse range '" << range_text << "'";
Tao Bao3da88012017-02-03 13:09:23 -0800140 exit(EXIT_FAILURE);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700141}
142
Tao Baoe6aa3322015-08-05 15:20:27 -0700143static bool range_overlaps(const RangeSet& r1, const RangeSet& r2) {
Tao Baoc844c062016-12-28 15:15:55 -0800144 for (size_t i = 0; i < r1.count; ++i) {
145 size_t r1_0 = r1.pos[i * 2];
146 size_t r1_1 = r1.pos[i * 2 + 1];
Sami Tolvanen90221202014-12-09 16:39:47 +0000147
Tao Baoc844c062016-12-28 15:15:55 -0800148 for (size_t j = 0; j < r2.count; ++j) {
149 size_t r2_0 = r2.pos[j * 2];
150 size_t r2_1 = r2.pos[j * 2 + 1];
Sami Tolvanen90221202014-12-09 16:39:47 +0000151
Tao Baoc844c062016-12-28 15:15:55 -0800152 if (!(r2_0 >= r1_1 || r1_0 >= r2_1)) {
153 return true;
154 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000155 }
Tao Baoc844c062016-12-28 15:15:55 -0800156 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000157
Tao Baoc844c062016-12-28 15:15:55 -0800158 return false;
Sami Tolvanen90221202014-12-09 16:39:47 +0000159}
160
161static int read_all(int fd, uint8_t* data, size_t size) {
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700162 size_t so_far = 0;
163 while (so_far < size) {
Jed Estepa7b9a462015-12-15 16:04:53 -0800164 ssize_t r = TEMP_FAILURE_RETRY(ota_read(fd, data+so_far, size-so_far));
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700165 if (r == -1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700166 failure_type = kFreadFailure;
Tao Bao039f2da2016-11-22 16:29:50 -0800167 PLOG(ERROR) << "read failed";
Sami Tolvanen90221202014-12-09 16:39:47 +0000168 return -1;
Tianjie Xu71e182b2016-08-31 18:06:33 -0700169 } else if (r == 0) {
170 failure_type = kFreadFailure;
Tao Bao039f2da2016-11-22 16:29:50 -0800171 LOG(ERROR) << "read reached unexpected EOF.";
Tianjie Xu71e182b2016-08-31 18:06:33 -0700172 return -1;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700173 }
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700174 so_far += r;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700175 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000176 return 0;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700177}
178
Tao Bao612336d2015-08-27 16:41:21 -0700179static int read_all(int fd, std::vector<uint8_t>& buffer, size_t size) {
180 return read_all(fd, buffer.data(), size);
181}
182
Sami Tolvanen90221202014-12-09 16:39:47 +0000183static int write_all(int fd, const uint8_t* data, size_t size) {
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700184 size_t written = 0;
185 while (written < size) {
Jed Estepa7b9a462015-12-15 16:04:53 -0800186 ssize_t w = TEMP_FAILURE_RETRY(ota_write(fd, data+written, size-written));
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700187 if (w == -1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700188 failure_type = kFwriteFailure;
Tao Bao039f2da2016-11-22 16:29:50 -0800189 PLOG(ERROR) << "write failed";
Sami Tolvanen90221202014-12-09 16:39:47 +0000190 return -1;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700191 }
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700192 written += w;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700193 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000194
Sami Tolvanen90221202014-12-09 16:39:47 +0000195 return 0;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700196}
197
Tao Bao612336d2015-08-27 16:41:21 -0700198static int write_all(int fd, const std::vector<uint8_t>& buffer, size_t size) {
199 return write_all(fd, buffer.data(), size);
200}
201
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700202static bool discard_blocks(int fd, off64_t offset, uint64_t size) {
203 // Don't discard blocks unless the update is a retry run.
204 if (!is_retry) {
205 return true;
206 }
207
208 uint64_t args[2] = {static_cast<uint64_t>(offset), size};
209 int status = ioctl(fd, BLKDISCARD, &args);
210 if (status == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800211 PLOG(ERROR) << "BLKDISCARD ioctl failed";
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700212 return false;
213 }
214 return true;
215}
216
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700217static bool check_lseek(int fd, off64_t offset, int whence) {
218 off64_t rc = TEMP_FAILURE_RETRY(lseek64(fd, offset, whence));
219 if (rc == -1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700220 failure_type = kLseekFailure;
Tao Bao039f2da2016-11-22 16:29:50 -0800221 PLOG(ERROR) << "lseek64 failed";
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700222 return false;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700223 }
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700224 return true;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700225}
226
Tao Bao612336d2015-08-27 16:41:21 -0700227static void allocate(size_t size, std::vector<uint8_t>& buffer) {
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700228 // if the buffer's big enough, reuse it.
Tao Bao612336d2015-08-27 16:41:21 -0700229 if (size <= buffer.size()) return;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700230
Tao Bao612336d2015-08-27 16:41:21 -0700231 buffer.resize(size);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700232}
233
Tao Bao0940fe12015-08-27 16:41:21 -0700234struct RangeSinkState {
Chih-Hung Hsieh49c5c792016-04-29 14:16:35 -0700235 explicit RangeSinkState(RangeSet& rs) : tgt(rs) { };
Tao Bao0940fe12015-08-27 16:41:21 -0700236
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700237 int fd;
Tao Bao0940fe12015-08-27 16:41:21 -0700238 const RangeSet& tgt;
Shrinivas Sahukara6153df2015-08-19 13:01:45 +0530239 size_t p_block;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700240 size_t p_remain;
Tao Bao0940fe12015-08-27 16:41:21 -0700241};
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700242
Tao Baof7eb7602017-03-27 15:12:48 -0700243static size_t RangeSinkWrite(const uint8_t* data, size_t size, void* token) {
244 RangeSinkState* rss = static_cast<RangeSinkState*>(token);
245
246 if (rss->p_remain == 0) {
247 LOG(ERROR) << "range sink write overrun";
248 return 0;
249 }
250
251 size_t written = 0;
252 while (size > 0) {
253 size_t write_now = size;
254
255 if (rss->p_remain < write_now) {
256 write_now = rss->p_remain;
257 }
258
259 if (write_all(rss->fd, data, write_now) == -1) {
260 break;
261 }
262
263 data += write_now;
264 size -= write_now;
265
266 rss->p_remain -= write_now;
267 written += write_now;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700268
Tao Bao0940fe12015-08-27 16:41:21 -0700269 if (rss->p_remain == 0) {
Tao Baof7eb7602017-03-27 15:12:48 -0700270 // Move to the next block.
271 ++rss->p_block;
272 if (rss->p_block < rss->tgt.count) {
273 rss->p_remain =
274 (rss->tgt.pos[rss->p_block * 2 + 1] - rss->tgt.pos[rss->p_block * 2]) * BLOCKSIZE;
275
276 off64_t offset = static_cast<off64_t>(rss->tgt.pos[rss->p_block * 2]) * BLOCKSIZE;
277 if (!discard_blocks(rss->fd, offset, rss->p_remain)) {
278 break;
279 }
280
281 if (!check_lseek(rss->fd, offset, SEEK_SET)) {
282 break;
283 }
284
285 } else {
286 // We can't write any more; return how many bytes have been written so far.
287 break;
288 }
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700289 }
Tao Baof7eb7602017-03-27 15:12:48 -0700290 }
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700291
Tao Baof7eb7602017-03-27 15:12:48 -0700292 return written;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700293}
294
295// All of the data for all the 'new' transfers is contained in one
296// file in the update package, concatenated together in the order in
297// which transfers.list will need it. We want to stream it out of the
298// archive (it's compressed) without writing it to a temp file, but we
299// can't write each section until it's that transfer's turn to go.
300//
301// To achieve this, we expand the new data from the archive in a
302// background thread, and block that threads 'receive uncompressed
303// data' function until the main thread has reached a point where we
304// want some new data to be written. We signal the background thread
305// with the destination for the data and block the main thread,
306// waiting for the background thread to complete writing that section.
307// Then it signals the main thread to wake up and goes back to
308// blocking waiting for a transfer.
309//
310// NewThreadInfo is the struct used to pass information back and forth
311// between the two threads. When the main thread wants some data
312// written, it sets rss to the destination location and signals the
313// condition. When the background thread is done writing, it clears
314// rss and signals the condition again.
315
Tao Bao0940fe12015-08-27 16:41:21 -0700316struct NewThreadInfo {
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -0700317 ZipArchiveHandle za;
318 ZipEntry entry;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700319
320 RangeSinkState* rss;
321
322 pthread_mutex_t mu;
323 pthread_cond_t cv;
Tao Bao0940fe12015-08-27 16:41:21 -0700324};
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700325
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -0700326static bool receive_new_data(const uint8_t* data, size_t size, void* cookie) {
Tao Bao0940fe12015-08-27 16:41:21 -0700327 NewThreadInfo* nti = reinterpret_cast<NewThreadInfo*>(cookie);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700328
329 while (size > 0) {
Tao Bao0940fe12015-08-27 16:41:21 -0700330 // Wait for nti->rss to be non-null, indicating some of this
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700331 // data is wanted.
332 pthread_mutex_lock(&nti->mu);
Tao Bao0940fe12015-08-27 16:41:21 -0700333 while (nti->rss == nullptr) {
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700334 pthread_cond_wait(&nti->cv, &nti->mu);
335 }
336 pthread_mutex_unlock(&nti->mu);
337
338 // At this point nti->rss is set, and we own it. The main
339 // thread is waiting for it to disappear from nti.
Tao Baof7eb7602017-03-27 15:12:48 -0700340 size_t written = RangeSinkWrite(data, size, nti->rss);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700341 data += written;
342 size -= written;
343
Tao Bao0940fe12015-08-27 16:41:21 -0700344 if (nti->rss->p_block == nti->rss->tgt.count) {
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700345 // we have written all the bytes desired by this rss.
346
347 pthread_mutex_lock(&nti->mu);
Tao Bao0940fe12015-08-27 16:41:21 -0700348 nti->rss = nullptr;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700349 pthread_cond_broadcast(&nti->cv);
350 pthread_mutex_unlock(&nti->mu);
351 }
352 }
353
354 return true;
355}
356
357static void* unzip_new_data(void* cookie) {
Mikhail Lappo20791bd2017-03-23 21:30:36 +0100358 NewThreadInfo* nti = static_cast<NewThreadInfo*>(cookie);
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -0700359 ProcessZipEntryContents(nti->za, &nti->entry, receive_new_data, nti);
Tao Bao0940fe12015-08-27 16:41:21 -0700360 return nullptr;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700361}
362
Tao Bao612336d2015-08-27 16:41:21 -0700363static int ReadBlocks(const RangeSet& src, std::vector<uint8_t>& buffer, int fd) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000364 size_t p = 0;
Tao Bao612336d2015-08-27 16:41:21 -0700365 uint8_t* data = buffer.data();
Sami Tolvanen90221202014-12-09 16:39:47 +0000366
Tao Bao0940fe12015-08-27 16:41:21 -0700367 for (size_t i = 0; i < src.count; ++i) {
368 if (!check_lseek(fd, (off64_t) src.pos[i * 2] * BLOCKSIZE, SEEK_SET)) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000369 return -1;
370 }
371
Tao Bao0940fe12015-08-27 16:41:21 -0700372 size_t size = (src.pos[i * 2 + 1] - src.pos[i * 2]) * BLOCKSIZE;
Sami Tolvanen90221202014-12-09 16:39:47 +0000373
Tao Bao612336d2015-08-27 16:41:21 -0700374 if (read_all(fd, data + p, size) == -1) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000375 return -1;
376 }
377
378 p += size;
379 }
380
381 return 0;
382}
383
Tao Bao612336d2015-08-27 16:41:21 -0700384static int WriteBlocks(const RangeSet& tgt, const std::vector<uint8_t>& buffer, int fd) {
385 const uint8_t* data = buffer.data();
Sami Tolvanen90221202014-12-09 16:39:47 +0000386
Tao Bao0940fe12015-08-27 16:41:21 -0700387 size_t p = 0;
388 for (size_t i = 0; i < tgt.count; ++i) {
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700389 off64_t offset = static_cast<off64_t>(tgt.pos[i * 2]) * BLOCKSIZE;
390 size_t size = (tgt.pos[i * 2 + 1] - tgt.pos[i * 2]) * BLOCKSIZE;
391 if (!discard_blocks(fd, offset, size)) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000392 return -1;
393 }
394
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700395 if (!check_lseek(fd, offset, SEEK_SET)) {
396 return -1;
397 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000398
Tao Bao612336d2015-08-27 16:41:21 -0700399 if (write_all(fd, data + p, size) == -1) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000400 return -1;
401 }
402
403 p += size;
404 }
405
406 return 0;
407}
408
Tao Baobaad2d42015-12-06 16:56:27 -0800409// Parameters for transfer list command functions
410struct CommandParameters {
411 std::vector<std::string> tokens;
412 size_t cpos;
413 const char* cmdname;
414 const char* cmdline;
415 std::string freestash;
416 std::string stashbase;
417 bool canwrite;
418 int createdstash;
Elliott Hughesbcabd092016-03-22 20:19:22 -0700419 android::base::unique_fd fd;
Tao Baobaad2d42015-12-06 16:56:27 -0800420 bool foundwrites;
421 bool isunresumable;
422 int version;
423 size_t written;
Tianjie Xudd874b12016-05-13 12:13:15 -0700424 size_t stashed;
Tao Baobaad2d42015-12-06 16:56:27 -0800425 NewThreadInfo nti;
426 pthread_t thread;
427 std::vector<uint8_t> buffer;
428 uint8_t* patch_start;
429};
430
Tianjie Xu2cd36ba2017-03-15 23:52:46 +0000431// Print the hash in hex for corrupted source blocks (excluding the stashed blocks which is
432// handled separately).
433static void PrintHashForCorruptedSourceBlocks(const CommandParameters& params,
434 const std::vector<uint8_t>& buffer) {
435 LOG(INFO) << "unexpected contents of source blocks in cmd:\n" << params.cmdline;
Tianjie Xu2cd36ba2017-03-15 23:52:46 +0000436 CHECK(params.tokens[0] == "move" || params.tokens[0] == "bsdiff" ||
437 params.tokens[0] == "imgdiff");
438
439 size_t pos = 0;
440 // Command example:
441 // move <onehash> <tgt_range> <src_blk_count> <src_range> [<loc_range> <stashed_blocks>]
442 // bsdiff <offset> <len> <src_hash> <tgt_hash> <tgt_range> <src_blk_count> <src_range>
443 // [<loc_range> <stashed_blocks>]
444 if (params.tokens[0] == "move") {
445 // src_range for move starts at the 4th position.
446 if (params.tokens.size() < 5) {
447 LOG(ERROR) << "failed to parse source range in cmd:\n" << params.cmdline;
448 return;
449 }
450 pos = 4;
451 } else {
452 // src_range for diff starts at the 7th position.
453 if (params.tokens.size() < 8) {
454 LOG(ERROR) << "failed to parse source range in cmd:\n" << params.cmdline;
455 return;
456 }
457 pos = 7;
458 }
459
460 // Source blocks in stash only, no work to do.
461 if (params.tokens[pos] == "-") {
462 return;
463 }
464
465 RangeSet src = parse_range(params.tokens[pos++]);
466
467 RangeSet locs;
468 // If there's no stashed blocks, content in the buffer is consecutive and has the same
469 // order as the source blocks.
470 if (pos == params.tokens.size()) {
471 locs.count = 1;
472 locs.size = src.size;
473 locs.pos = { 0, src.size };
474 } else {
475 // Otherwise, the next token is the offset of the source blocks in the target range.
476 // Example: for the tokens <4,63946,63947,63948,63979> <4,6,7,8,39> <stashed_blocks>;
477 // We want to print SHA-1 for the data in buffer[6], buffer[8], buffer[9] ... buffer[38];
478 // this corresponds to the 32 src blocks #63946, #63948, #63949 ... #63978.
479 locs = parse_range(params.tokens[pos++]);
480 CHECK_EQ(src.size, locs.size);
481 CHECK_EQ(locs.pos.size() % 2, static_cast<size_t>(0));
482 }
483
484 LOG(INFO) << "printing hash in hex for " << src.size << " source blocks";
485 for (size_t i = 0; i < src.size; i++) {
486 int block_num = src.get_block(i);
487 CHECK_NE(block_num, -1);
488 int buffer_index = locs.get_block(i);
489 CHECK_NE(buffer_index, -1);
490 CHECK_LE((buffer_index + 1) * BLOCKSIZE, buffer.size());
491
492 uint8_t digest[SHA_DIGEST_LENGTH];
493 SHA1(buffer.data() + buffer_index * BLOCKSIZE, BLOCKSIZE, digest);
494 std::string hexdigest = print_sha1(digest);
495 LOG(INFO) << " block number: " << block_num << ", SHA-1: " << hexdigest;
496 }
497}
498
499// If the calculated hash for the whole stash doesn't match the stash id, print the SHA-1
500// in hex for each block.
501static void PrintHashForCorruptedStashedBlocks(const std::string& id,
502 const std::vector<uint8_t>& buffer,
503 const RangeSet& src) {
504 LOG(INFO) << "printing hash in hex for stash_id: " << id;
505 CHECK_EQ(src.size * BLOCKSIZE, buffer.size());
506
507 for (size_t i = 0; i < src.size; i++) {
508 int block_num = src.get_block(i);
509 CHECK_NE(block_num, -1);
510
511 uint8_t digest[SHA_DIGEST_LENGTH];
512 SHA1(buffer.data() + i * BLOCKSIZE, BLOCKSIZE, digest);
513 std::string hexdigest = print_sha1(digest);
514 LOG(INFO) << " block number: " << block_num << ", SHA-1: " << hexdigest;
515 }
516}
517
518// If the stash file doesn't exist, read the source blocks this stash contains and print the
519// SHA-1 for these blocks.
520static void PrintHashForMissingStashedBlocks(const std::string& id, int fd) {
521 if (stash_map.find(id) == stash_map.end()) {
522 LOG(ERROR) << "No stash saved for id: " << id;
523 return;
524 }
525
526 LOG(INFO) << "print hash in hex for source blocks in missing stash: " << id;
527 const RangeSet& src = stash_map[id];
528 std::vector<uint8_t> buffer(src.size * BLOCKSIZE);
529 if (ReadBlocks(src, buffer, fd) == -1) {
530 LOG(ERROR) << "failed to read source blocks for stash: " << id;
531 return;
532 }
533 PrintHashForCorruptedStashedBlocks(id, buffer, src);
534}
535
Tao Bao612336d2015-08-27 16:41:21 -0700536static int VerifyBlocks(const std::string& expected, const std::vector<uint8_t>& buffer,
Tao Bao0940fe12015-08-27 16:41:21 -0700537 const size_t blocks, bool printerror) {
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800538 uint8_t digest[SHA_DIGEST_LENGTH];
Tao Bao612336d2015-08-27 16:41:21 -0700539 const uint8_t* data = buffer.data();
Sami Tolvanen90221202014-12-09 16:39:47 +0000540
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800541 SHA1(data, blocks * BLOCKSIZE, digest);
Sami Tolvanen90221202014-12-09 16:39:47 +0000542
Tao Baoe6aa3322015-08-05 15:20:27 -0700543 std::string hexdigest = print_sha1(digest);
Sami Tolvanen90221202014-12-09 16:39:47 +0000544
Tao Bao0940fe12015-08-27 16:41:21 -0700545 if (hexdigest != expected) {
546 if (printerror) {
Tao Bao039f2da2016-11-22 16:29:50 -0800547 LOG(ERROR) << "failed to verify blocks (expected " << expected << ", read "
548 << hexdigest << ")";
Tao Bao0940fe12015-08-27 16:41:21 -0700549 }
550 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000551 }
552
Tao Bao0940fe12015-08-27 16:41:21 -0700553 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +0000554}
555
Tao Bao0940fe12015-08-27 16:41:21 -0700556static std::string GetStashFileName(const std::string& base, const std::string& id,
557 const std::string& postfix) {
Tao Baoe6aa3322015-08-05 15:20:27 -0700558 if (base.empty()) {
559 return "";
Sami Tolvanen90221202014-12-09 16:39:47 +0000560 }
561
Tao Baoe6aa3322015-08-05 15:20:27 -0700562 std::string fn(STASH_DIRECTORY_BASE);
563 fn += "/" + base + "/" + id + postfix;
Sami Tolvanen90221202014-12-09 16:39:47 +0000564
565 return fn;
566}
567
Tao Baoec8272f2017-03-15 17:39:01 -0700568// Does a best effort enumeration of stash files. Ignores possible non-file items in the stash
569// directory and continues despite of errors. Calls the 'callback' function for each file.
570static void EnumerateStash(const std::string& dirname,
571 const std::function<void(const std::string&)>& callback) {
572 if (dirname.empty()) return;
Sami Tolvanen90221202014-12-09 16:39:47 +0000573
Tao Baoec8272f2017-03-15 17:39:01 -0700574 std::unique_ptr<DIR, decltype(&closedir)> directory(opendir(dirname.c_str()), closedir);
Sami Tolvanen90221202014-12-09 16:39:47 +0000575
Tao Baoec8272f2017-03-15 17:39:01 -0700576 if (directory == nullptr) {
577 if (errno != ENOENT) {
578 PLOG(ERROR) << "opendir \"" << dirname << "\" failed";
Sami Tolvanen90221202014-12-09 16:39:47 +0000579 }
Tao Bao51412212016-12-28 14:44:05 -0800580 return;
581 }
Tao Baoe6aa3322015-08-05 15:20:27 -0700582
Tao Baoec8272f2017-03-15 17:39:01 -0700583 dirent* item;
584 while ((item = readdir(directory.get())) != nullptr) {
585 if (item->d_type != DT_REG) continue;
586 callback(dirname + "/" + item->d_name);
Tao Bao51412212016-12-28 14:44:05 -0800587 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000588}
589
590// Deletes the stash directory and all files in it. Assumes that it only
591// contains files. There is nothing we can do about unlikely, but possible
592// errors, so they are merely logged.
Tao Baoec8272f2017-03-15 17:39:01 -0700593static void DeleteFile(const std::string& fn) {
594 if (fn.empty()) return;
Sami Tolvanen90221202014-12-09 16:39:47 +0000595
Tao Baoec8272f2017-03-15 17:39:01 -0700596 LOG(INFO) << "deleting " << fn;
Sami Tolvanen90221202014-12-09 16:39:47 +0000597
Tao Baoec8272f2017-03-15 17:39:01 -0700598 if (unlink(fn.c_str()) == -1 && errno != ENOENT) {
599 PLOG(ERROR) << "unlink \"" << fn << "\" failed";
600 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000601}
602
Tao Baoe6aa3322015-08-05 15:20:27 -0700603static void DeleteStash(const std::string& base) {
Tao Baoec8272f2017-03-15 17:39:01 -0700604 if (base.empty()) return;
605
606 LOG(INFO) << "deleting stash " << base;
607
608 std::string dirname = GetStashFileName(base, "", "");
609 EnumerateStash(dirname, DeleteFile);
610
611 if (rmdir(dirname.c_str()) == -1) {
612 if (errno != ENOENT && errno != ENOTDIR) {
613 PLOG(ERROR) << "rmdir \"" << dirname << "\" failed";
Sami Tolvanen90221202014-12-09 16:39:47 +0000614 }
Tao Baoec8272f2017-03-15 17:39:01 -0700615 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000616}
617
Tao Baobcf46492017-03-23 15:28:20 -0700618static int LoadStash(CommandParameters& params, const std::string& id, bool verify, size_t* blocks,
619 std::vector<uint8_t>& buffer, bool printnoent) {
Tianjie Xu7eca97e2016-03-22 18:08:12 -0700620 // In verify mode, if source range_set was saved for the given hash,
621 // check contents in the source blocks first. If the check fails,
622 // search for the stashed files on /cache as usual.
623 if (!params.canwrite) {
624 if (stash_map.find(id) != stash_map.end()) {
625 const RangeSet& src = stash_map[id];
626 allocate(src.size * BLOCKSIZE, buffer);
627
628 if (ReadBlocks(src, buffer, params.fd) == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800629 LOG(ERROR) << "failed to read source blocks in stash map.";
Tianjie Xu7eca97e2016-03-22 18:08:12 -0700630 return -1;
631 }
632 if (VerifyBlocks(id, buffer, src.size, true) != 0) {
Tao Bao039f2da2016-11-22 16:29:50 -0800633 LOG(ERROR) << "failed to verify loaded source blocks in stash map.";
Tianjie Xu2cd36ba2017-03-15 23:52:46 +0000634 PrintHashForCorruptedStashedBlocks(id, buffer, src);
Tianjie Xu7eca97e2016-03-22 18:08:12 -0700635 return -1;
636 }
637 return 0;
638 }
639 }
640
Tao Bao0940fe12015-08-27 16:41:21 -0700641 size_t blockcount = 0;
642
Sami Tolvanen90221202014-12-09 16:39:47 +0000643 if (!blocks) {
644 blocks = &blockcount;
645 }
646
Tao Baobcf46492017-03-23 15:28:20 -0700647 std::string fn = GetStashFileName(params.stashbase, id, "");
Sami Tolvanen90221202014-12-09 16:39:47 +0000648
Tao Bao0940fe12015-08-27 16:41:21 -0700649 struct stat sb;
650 int res = stat(fn.c_str(), &sb);
Sami Tolvanen90221202014-12-09 16:39:47 +0000651
652 if (res == -1) {
653 if (errno != ENOENT || printnoent) {
Tao Bao039f2da2016-11-22 16:29:50 -0800654 PLOG(ERROR) << "stat \"" << fn << "\" failed";
Tianjie Xu2cd36ba2017-03-15 23:52:46 +0000655 PrintHashForMissingStashedBlocks(id, params.fd);
Sami Tolvanen90221202014-12-09 16:39:47 +0000656 }
Tao Bao0940fe12015-08-27 16:41:21 -0700657 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000658 }
659
Tao Bao039f2da2016-11-22 16:29:50 -0800660 LOG(INFO) << " loading " << fn;
Sami Tolvanen90221202014-12-09 16:39:47 +0000661
Tao Bao0940fe12015-08-27 16:41:21 -0700662 if ((sb.st_size % BLOCKSIZE) != 0) {
Tao Bao039f2da2016-11-22 16:29:50 -0800663 LOG(ERROR) << fn << " size " << sb.st_size << " not multiple of block size " << BLOCKSIZE;
Tao Bao0940fe12015-08-27 16:41:21 -0700664 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000665 }
666
Elliott Hughesbcabd092016-03-22 20:19:22 -0700667 android::base::unique_fd fd(TEMP_FAILURE_RETRY(ota_open(fn.c_str(), O_RDONLY)));
Sami Tolvanen90221202014-12-09 16:39:47 +0000668 if (fd == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800669 PLOG(ERROR) << "open \"" << fn << "\" failed";
Tao Bao0940fe12015-08-27 16:41:21 -0700670 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000671 }
672
Tao Bao612336d2015-08-27 16:41:21 -0700673 allocate(sb.st_size, buffer);
Sami Tolvanen90221202014-12-09 16:39:47 +0000674
Tao Bao612336d2015-08-27 16:41:21 -0700675 if (read_all(fd, buffer, sb.st_size) == -1) {
Tao Bao0940fe12015-08-27 16:41:21 -0700676 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000677 }
678
Tao Bao0940fe12015-08-27 16:41:21 -0700679 *blocks = sb.st_size / BLOCKSIZE;
Sami Tolvanen90221202014-12-09 16:39:47 +0000680
Tao Bao612336d2015-08-27 16:41:21 -0700681 if (verify && VerifyBlocks(id, buffer, *blocks, true) != 0) {
Tao Bao039f2da2016-11-22 16:29:50 -0800682 LOG(ERROR) << "unexpected contents in " << fn;
Tianjie Xu2cd36ba2017-03-15 23:52:46 +0000683 if (stash_map.find(id) == stash_map.end()) {
684 LOG(ERROR) << "failed to find source blocks number for stash " << id
685 << " when executing command: " << params.cmdname;
686 } else {
687 const RangeSet& src = stash_map[id];
688 PrintHashForCorruptedStashedBlocks(id, buffer, src);
689 }
Tao Baoec8272f2017-03-15 17:39:01 -0700690 DeleteFile(fn);
Tao Bao0940fe12015-08-27 16:41:21 -0700691 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000692 }
693
Tao Bao0940fe12015-08-27 16:41:21 -0700694 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +0000695}
696
Tao Bao612336d2015-08-27 16:41:21 -0700697static int WriteStash(const std::string& base, const std::string& id, int blocks,
Tao Baod2aecd42017-03-23 14:43:44 -0700698 std::vector<uint8_t>& buffer, bool checkspace, bool* exists) {
Tao Bao612336d2015-08-27 16:41:21 -0700699 if (base.empty()) {
Tao Bao0940fe12015-08-27 16:41:21 -0700700 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000701 }
702
703 if (checkspace && CacheSizeCheck(blocks * BLOCKSIZE) != 0) {
Tao Bao039f2da2016-11-22 16:29:50 -0800704 LOG(ERROR) << "not enough space to write stash";
Tao Bao0940fe12015-08-27 16:41:21 -0700705 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000706 }
707
Tao Bao0940fe12015-08-27 16:41:21 -0700708 std::string fn = GetStashFileName(base, id, ".partial");
709 std::string cn = GetStashFileName(base, id, "");
Sami Tolvanen90221202014-12-09 16:39:47 +0000710
Sami Tolvanen43b748f2015-04-17 12:50:31 +0100711 if (exists) {
Tao Bao0940fe12015-08-27 16:41:21 -0700712 struct stat sb;
713 int res = stat(cn.c_str(), &sb);
Sami Tolvanen43b748f2015-04-17 12:50:31 +0100714
715 if (res == 0) {
716 // The file already exists and since the name is the hash of the contents,
717 // it's safe to assume the contents are identical (accidental hash collisions
718 // are unlikely)
Tao Bao039f2da2016-11-22 16:29:50 -0800719 LOG(INFO) << " skipping " << blocks << " existing blocks in " << cn;
Tao Bao0940fe12015-08-27 16:41:21 -0700720 *exists = true;
721 return 0;
Sami Tolvanen43b748f2015-04-17 12:50:31 +0100722 }
723
Tao Bao0940fe12015-08-27 16:41:21 -0700724 *exists = false;
Sami Tolvanen43b748f2015-04-17 12:50:31 +0100725 }
726
Tao Bao039f2da2016-11-22 16:29:50 -0800727 LOG(INFO) << " writing " << blocks << " blocks to " << cn;
Sami Tolvanen90221202014-12-09 16:39:47 +0000728
Tao Bao039f2da2016-11-22 16:29:50 -0800729 android::base::unique_fd fd(
730 TEMP_FAILURE_RETRY(ota_open(fn.c_str(), O_WRONLY | O_CREAT | O_TRUNC, STASH_FILE_MODE)));
Sami Tolvanen90221202014-12-09 16:39:47 +0000731 if (fd == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800732 PLOG(ERROR) << "failed to create \"" << fn << "\"";
Tao Bao0940fe12015-08-27 16:41:21 -0700733 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000734 }
735
Tianjie Xua946b9e2017-03-21 16:24:57 -0700736 if (fchown(fd, AID_SYSTEM, AID_SYSTEM) != 0) { // system user
737 PLOG(ERROR) << "failed to chown \"" << fn << "\"";
738 return -1;
739 }
740
Sami Tolvanen90221202014-12-09 16:39:47 +0000741 if (write_all(fd, buffer, blocks * BLOCKSIZE) == -1) {
Tao Bao0940fe12015-08-27 16:41:21 -0700742 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000743 }
744
Jed Estepa7b9a462015-12-15 16:04:53 -0800745 if (ota_fsync(fd) == -1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700746 failure_type = kFsyncFailure;
Tao Bao039f2da2016-11-22 16:29:50 -0800747 PLOG(ERROR) << "fsync \"" << fn << "\" failed";
Tao Bao0940fe12015-08-27 16:41:21 -0700748 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000749 }
750
Tao Baoe6aa3322015-08-05 15:20:27 -0700751 if (rename(fn.c_str(), cn.c_str()) == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800752 PLOG(ERROR) << "rename(\"" << fn << "\", \"" << cn << "\") failed";
Tao Bao0940fe12015-08-27 16:41:21 -0700753 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000754 }
755
Tao Bao0940fe12015-08-27 16:41:21 -0700756 std::string dname = GetStashFileName(base, "", "");
Elliott Hughesbcabd092016-03-22 20:19:22 -0700757 android::base::unique_fd dfd(TEMP_FAILURE_RETRY(ota_open(dname.c_str(),
758 O_RDONLY | O_DIRECTORY)));
Tao Baodc392262015-07-31 15:56:44 -0700759 if (dfd == -1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700760 failure_type = kFileOpenFailure;
Tao Bao039f2da2016-11-22 16:29:50 -0800761 PLOG(ERROR) << "failed to open \"" << dname << "\" failed";
Tao Bao0940fe12015-08-27 16:41:21 -0700762 return -1;
Tao Baodc392262015-07-31 15:56:44 -0700763 }
764
Jed Estepa7b9a462015-12-15 16:04:53 -0800765 if (ota_fsync(dfd) == -1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700766 failure_type = kFsyncFailure;
Tao Bao039f2da2016-11-22 16:29:50 -0800767 PLOG(ERROR) << "fsync \"" << dname << "\" failed";
Tao Bao0940fe12015-08-27 16:41:21 -0700768 return -1;
Tao Baodc392262015-07-31 15:56:44 -0700769 }
770
Tao Bao0940fe12015-08-27 16:41:21 -0700771 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +0000772}
773
774// Creates a directory for storing stash files and checks if the /cache partition
775// hash enough space for the expected amount of blocks we need to store. Returns
776// >0 if we created the directory, zero if it existed already, and <0 of failure.
777
Tao Bao51412212016-12-28 14:44:05 -0800778static int CreateStash(State* state, size_t maxblocks, const std::string& blockdev,
779 std::string& base) {
780 if (blockdev.empty()) {
781 return -1;
782 }
783
784 // Stash directory should be different for each partition to avoid conflicts
785 // when updating multiple partitions at the same time, so we use the hash of
786 // the block device name as the base directory
787 uint8_t digest[SHA_DIGEST_LENGTH];
788 SHA1(reinterpret_cast<const uint8_t*>(blockdev.data()), blockdev.size(), digest);
789 base = print_sha1(digest);
790
791 std::string dirname = GetStashFileName(base, "", "");
792 struct stat sb;
793 int res = stat(dirname.c_str(), &sb);
794 size_t max_stash_size = maxblocks * BLOCKSIZE;
795
796 if (res == -1 && errno != ENOENT) {
797 ErrorAbort(state, kStashCreationFailure, "stat \"%s\" failed: %s\n", dirname.c_str(),
798 strerror(errno));
799 return -1;
800 } else if (res != 0) {
801 LOG(INFO) << "creating stash " << dirname;
802 res = mkdir(dirname.c_str(), STASH_DIRECTORY_MODE);
803
804 if (res != 0) {
805 ErrorAbort(state, kStashCreationFailure, "mkdir \"%s\" failed: %s\n", dirname.c_str(),
806 strerror(errno));
807 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000808 }
809
Tianjie Xua946b9e2017-03-21 16:24:57 -0700810 if (chown(dirname.c_str(), AID_SYSTEM, AID_SYSTEM) != 0) { // system user
811 ErrorAbort(state, kStashCreationFailure, "chown \"%s\" failed: %s\n", dirname.c_str(),
812 strerror(errno));
813 return -1;
814 }
815
Tao Bao51412212016-12-28 14:44:05 -0800816 if (CacheSizeCheck(max_stash_size) != 0) {
817 ErrorAbort(state, kStashCreationFailure, "not enough space for stash (%zu needed)\n",
818 max_stash_size);
819 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000820 }
821
Tao Bao51412212016-12-28 14:44:05 -0800822 return 1; // Created directory
823 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000824
Tao Bao51412212016-12-28 14:44:05 -0800825 LOG(INFO) << "using existing stash " << dirname;
Sami Tolvanen90221202014-12-09 16:39:47 +0000826
Tao Baoec8272f2017-03-15 17:39:01 -0700827 // If the directory already exists, calculate the space already allocated to stash files and check
828 // if there's enough for all required blocks. Delete any partially completed stash files first.
829 EnumerateStash(dirname, [](const std::string& fn) {
830 if (android::base::EndsWith(fn, ".partial")) {
831 DeleteFile(fn);
832 }
833 });
Sami Tolvanen90221202014-12-09 16:39:47 +0000834
Tao Bao51412212016-12-28 14:44:05 -0800835 size_t existing = 0;
Tao Baoec8272f2017-03-15 17:39:01 -0700836 EnumerateStash(dirname, [&existing](const std::string& fn) {
837 if (fn.empty()) return;
838 struct stat sb;
839 if (stat(fn.c_str(), &sb) == -1) {
840 PLOG(ERROR) << "stat \"" << fn << "\" failed";
841 return;
842 }
843 existing += static_cast<size_t>(sb.st_size);
844 });
Sami Tolvanen90221202014-12-09 16:39:47 +0000845
Tao Bao51412212016-12-28 14:44:05 -0800846 if (max_stash_size > existing) {
847 size_t needed = max_stash_size - existing;
848 if (CacheSizeCheck(needed) != 0) {
849 ErrorAbort(state, kStashCreationFailure, "not enough space for stash (%zu more needed)\n",
850 needed);
851 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000852 }
Tao Bao51412212016-12-28 14:44:05 -0800853 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000854
Tao Bao51412212016-12-28 14:44:05 -0800855 return 0; // Using existing directory
Sami Tolvanen90221202014-12-09 16:39:47 +0000856}
857
Tao Baobaad2d42015-12-06 16:56:27 -0800858static int FreeStash(const std::string& base, const std::string& id) {
Tao Baoec8272f2017-03-15 17:39:01 -0700859 if (base.empty() || id.empty()) {
860 return -1;
861 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000862
Tao Baoec8272f2017-03-15 17:39:01 -0700863 DeleteFile(GetStashFileName(base, id, ""));
Sami Tolvanen90221202014-12-09 16:39:47 +0000864
Tao Baoec8272f2017-03-15 17:39:01 -0700865 return 0;
Doug Zongker52ae67d2014-09-08 12:22:09 -0700866}
867
Tao Bao612336d2015-08-27 16:41:21 -0700868static void MoveRange(std::vector<uint8_t>& dest, const RangeSet& locs,
869 const std::vector<uint8_t>& source) {
Doug Zongker52ae67d2014-09-08 12:22:09 -0700870 // source contains packed data, which we want to move to the
Tao Bao612336d2015-08-27 16:41:21 -0700871 // locations given in locs in the dest buffer. source and dest
Doug Zongker52ae67d2014-09-08 12:22:09 -0700872 // may be the same buffer.
873
Tao Bao612336d2015-08-27 16:41:21 -0700874 const uint8_t* from = source.data();
875 uint8_t* to = dest.data();
Tao Bao0940fe12015-08-27 16:41:21 -0700876 size_t start = locs.size;
877 for (int i = locs.count-1; i >= 0; --i) {
878 size_t blocks = locs.pos[i*2+1] - locs.pos[i*2];
Doug Zongker52ae67d2014-09-08 12:22:09 -0700879 start -= blocks;
Tao Bao612336d2015-08-27 16:41:21 -0700880 memmove(to + (locs.pos[i*2] * BLOCKSIZE), from + (start * BLOCKSIZE),
Doug Zongker52ae67d2014-09-08 12:22:09 -0700881 blocks * BLOCKSIZE);
882 }
883}
884
Tao Baod2aecd42017-03-23 14:43:44 -0700885/**
886 * We expect to parse the remainder of the parameter tokens as one of:
887 *
888 * <src_block_count> <src_range>
889 * (loads data from source image only)
890 *
891 * <src_block_count> - <[stash_id:stash_range] ...>
892 * (loads data from stashes only)
893 *
894 * <src_block_count> <src_range> <src_loc> <[stash_id:stash_range] ...>
895 * (loads data from both source image and stashes)
896 *
897 * On return, params.buffer is filled with the loaded source data (rearranged and combined with
898 * stashed data as necessary). buffer may be reallocated if needed to accommodate the source data.
899 * tgt is the target RangeSet for detecting overlaps. Any stashes required are loaded using
900 * LoadStash.
901 */
902static int LoadSourceBlocks(CommandParameters& params, const RangeSet& tgt, size_t* src_blocks,
903 bool* overlap) {
904 CHECK(src_blocks != nullptr);
905 CHECK(overlap != nullptr);
Doug Zongker52ae67d2014-09-08 12:22:09 -0700906
Tao Baod2aecd42017-03-23 14:43:44 -0700907 // <src_block_count>
908 const std::string& token = params.tokens[params.cpos++];
909 if (!android::base::ParseUint(token, src_blocks)) {
910 LOG(ERROR) << "invalid src_block_count \"" << token << "\"";
911 return -1;
912 }
Tao Baobaad2d42015-12-06 16:56:27 -0800913
Tao Baod2aecd42017-03-23 14:43:44 -0700914 allocate(*src_blocks * BLOCKSIZE, params.buffer);
915
916 // "-" or <src_range> [<src_loc>]
917 if (params.tokens[params.cpos] == "-") {
918 // no source ranges, only stashes
919 params.cpos++;
920 } else {
921 RangeSet src = parse_range(params.tokens[params.cpos++]);
922 *overlap = range_overlaps(src, tgt);
923
924 if (ReadBlocks(src, params.buffer, params.fd) == -1) {
925 return -1;
Tao Baobaad2d42015-12-06 16:56:27 -0800926 }
927
Tao Baod2aecd42017-03-23 14:43:44 -0700928 if (params.cpos >= params.tokens.size()) {
929 // no stashes, only source range
930 return 0;
Tao Baobaad2d42015-12-06 16:56:27 -0800931 }
Doug Zongker52ae67d2014-09-08 12:22:09 -0700932
Tao Baod2aecd42017-03-23 14:43:44 -0700933 RangeSet locs = parse_range(params.tokens[params.cpos++]);
934 MoveRange(params.buffer, locs, params.buffer);
935 }
Doug Zongker52ae67d2014-09-08 12:22:09 -0700936
Tao Baod2aecd42017-03-23 14:43:44 -0700937 // <[stash_id:stash_range]>
938 while (params.cpos < params.tokens.size()) {
939 // Each word is a an index into the stash table, a colon, and then a RangeSet describing where
940 // in the source block that stashed data should go.
941 std::vector<std::string> tokens = android::base::Split(params.tokens[params.cpos++], ":");
942 if (tokens.size() != 2) {
943 LOG(ERROR) << "invalid parameter";
944 return -1;
Doug Zongker52ae67d2014-09-08 12:22:09 -0700945 }
946
Tao Baod2aecd42017-03-23 14:43:44 -0700947 std::vector<uint8_t> stash;
948 if (LoadStash(params, tokens[0], false, nullptr, stash, true) == -1) {
949 // These source blocks will fail verification if used later, but we
950 // will let the caller decide if this is a fatal failure
951 LOG(ERROR) << "failed to load stash " << tokens[0];
952 continue;
Sami Tolvanen90221202014-12-09 16:39:47 +0000953 }
954
Tao Baod2aecd42017-03-23 14:43:44 -0700955 RangeSet locs = parse_range(tokens[1]);
956 MoveRange(params.buffer, locs, stash);
957 }
958
959 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +0000960}
961
Tao Bao33567772017-03-13 14:57:34 -0700962/**
963 * Do a source/target load for move/bsdiff/imgdiff in version 3.
964 *
965 * We expect to parse the remainder of the parameter tokens as one of:
966 *
967 * <tgt_range> <src_block_count> <src_range>
968 * (loads data from source image only)
969 *
970 * <tgt_range> <src_block_count> - <[stash_id:stash_range] ...>
971 * (loads data from stashes only)
972 *
973 * <tgt_range> <src_block_count> <src_range> <src_loc> <[stash_id:stash_range] ...>
974 * (loads data from both source image and stashes)
975 *
Tao Baod2aecd42017-03-23 14:43:44 -0700976 * 'onehash' tells whether to expect separate source and targe block hashes, or if they are both the
977 * same and only one hash should be expected. params.isunresumable will be set to true if block
Tao Bao33567772017-03-13 14:57:34 -0700978 * verification fails in a way that the update cannot be resumed anymore.
979 *
980 * If the function is unable to load the necessary blocks or their contents don't match the hashes,
981 * the return value is -1 and the command should be aborted.
982 *
983 * If the return value is 1, the command has already been completed according to the contents of the
984 * target blocks, and should not be performed again.
985 *
986 * If the return value is 0, source blocks have expected content and the command can be performed.
987 */
Tao Baod2aecd42017-03-23 14:43:44 -0700988static int LoadSrcTgtVersion3(CommandParameters& params, RangeSet& tgt, size_t* src_blocks,
989 bool onehash, bool* overlap) {
990 CHECK(src_blocks != nullptr);
991 CHECK(overlap != nullptr);
Sami Tolvanen90221202014-12-09 16:39:47 +0000992
Tao Baod2aecd42017-03-23 14:43:44 -0700993 if (params.cpos >= params.tokens.size()) {
994 LOG(ERROR) << "missing source hash";
Tao Bao0940fe12015-08-27 16:41:21 -0700995 return -1;
Tao Baod2aecd42017-03-23 14:43:44 -0700996 }
997
998 std::string srchash = params.tokens[params.cpos++];
999 std::string tgthash;
1000
1001 if (onehash) {
1002 tgthash = srchash;
1003 } else {
1004 if (params.cpos >= params.tokens.size()) {
1005 LOG(ERROR) << "missing target hash";
1006 return -1;
1007 }
1008 tgthash = params.tokens[params.cpos++];
1009 }
1010
1011 // At least it needs to provide three parameters: <tgt_range>, <src_block_count> and
1012 // "-"/<src_range>.
1013 if (params.cpos + 2 >= params.tokens.size()) {
1014 LOG(ERROR) << "invalid parameters";
1015 return -1;
1016 }
1017
1018 // <tgt_range>
1019 tgt = parse_range(params.tokens[params.cpos++]);
1020
1021 std::vector<uint8_t> tgtbuffer(tgt.size * BLOCKSIZE);
1022 if (ReadBlocks(tgt, tgtbuffer, params.fd) == -1) {
1023 return -1;
1024 }
1025
1026 // Return now if target blocks already have expected content.
1027 if (VerifyBlocks(tgthash, tgtbuffer, tgt.size, false) == 0) {
1028 return 1;
1029 }
1030
1031 // Load source blocks.
1032 if (LoadSourceBlocks(params, tgt, src_blocks, overlap) == -1) {
1033 return -1;
1034 }
1035
1036 if (VerifyBlocks(srchash, params.buffer, *src_blocks, true) == 0) {
1037 // If source and target blocks overlap, stash the source blocks so we can
1038 // resume from possible write errors. In verify mode, we can skip stashing
1039 // because the source blocks won't be overwritten.
1040 if (*overlap && params.canwrite) {
1041 LOG(INFO) << "stashing " << *src_blocks << " overlapping blocks to " << srchash;
1042
1043 bool stash_exists = false;
1044 if (WriteStash(params.stashbase, srchash, *src_blocks, params.buffer, true,
1045 &stash_exists) != 0) {
1046 LOG(ERROR) << "failed to stash overlapping source blocks";
1047 return -1;
1048 }
1049
1050 params.stashed += *src_blocks;
1051 // Can be deleted when the write has completed.
1052 if (!stash_exists) {
1053 params.freestash = srchash;
1054 }
1055 }
1056
1057 // Source blocks have expected content, command can proceed.
1058 return 0;
1059 }
1060
1061 if (*overlap && LoadStash(params, srchash, true, nullptr, params.buffer, true) == 0) {
1062 // Overlapping source blocks were previously stashed, command can proceed. We are recovering
1063 // from an interrupted command, so we don't know if the stash can safely be deleted after this
1064 // command.
1065 return 0;
1066 }
1067
1068 // Valid source data not available, update cannot be resumed.
1069 LOG(ERROR) << "partition has unexpected contents";
1070 PrintHashForCorruptedSourceBlocks(params, params.buffer);
1071
1072 params.isunresumable = true;
1073
1074 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001075}
1076
Tao Bao0940fe12015-08-27 16:41:21 -07001077static int PerformCommandMove(CommandParameters& params) {
Tao Bao33567772017-03-13 14:57:34 -07001078 size_t blocks = 0;
1079 bool overlap = false;
1080 RangeSet tgt;
Tao Baod2aecd42017-03-23 14:43:44 -07001081 int status = LoadSrcTgtVersion3(params, tgt, &blocks, true, &overlap);
Sami Tolvanen90221202014-12-09 16:39:47 +00001082
Tao Bao33567772017-03-13 14:57:34 -07001083 if (status == -1) {
1084 LOG(ERROR) << "failed to read blocks for move";
1085 return -1;
1086 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001087
Tao Bao33567772017-03-13 14:57:34 -07001088 if (status == 0) {
1089 params.foundwrites = true;
1090 } else if (params.foundwrites) {
1091 LOG(WARNING) << "warning: commands executed out of order [" << params.cmdname << "]";
1092 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001093
Tao Bao33567772017-03-13 14:57:34 -07001094 if (params.canwrite) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001095 if (status == 0) {
Tao Bao33567772017-03-13 14:57:34 -07001096 LOG(INFO) << " moving " << blocks << " blocks";
1097
1098 if (WriteBlocks(tgt, params.buffer, params.fd) == -1) {
1099 return -1;
1100 }
1101 } else {
1102 LOG(INFO) << "skipping " << blocks << " already moved blocks";
Sami Tolvanen90221202014-12-09 16:39:47 +00001103 }
Tao Bao33567772017-03-13 14:57:34 -07001104 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001105
Tao Bao33567772017-03-13 14:57:34 -07001106 if (!params.freestash.empty()) {
1107 FreeStash(params.stashbase, params.freestash);
1108 params.freestash.clear();
1109 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001110
Tao Bao33567772017-03-13 14:57:34 -07001111 params.written += tgt.size;
Sami Tolvanen90221202014-12-09 16:39:47 +00001112
Tao Bao33567772017-03-13 14:57:34 -07001113 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +00001114}
1115
Tao Bao0940fe12015-08-27 16:41:21 -07001116static int PerformCommandStash(CommandParameters& params) {
Tao Baobcf46492017-03-23 15:28:20 -07001117 // <stash_id> <src_range>
1118 if (params.cpos + 1 >= params.tokens.size()) {
1119 LOG(ERROR) << "missing id and/or src range fields in stash command";
1120 return -1;
1121 }
1122
1123 const std::string& id = params.tokens[params.cpos++];
1124 size_t blocks = 0;
1125 if (LoadStash(params, id, true, &blocks, params.buffer, false) == 0) {
1126 // Stash file already exists and has expected contents. Do not read from source again, as the
1127 // source may have been already overwritten during a previous attempt.
1128 return 0;
1129 }
1130
1131 RangeSet src = parse_range(params.tokens[params.cpos++]);
1132
1133 allocate(src.size * BLOCKSIZE, params.buffer);
1134 if (ReadBlocks(src, params.buffer, params.fd) == -1) {
1135 return -1;
1136 }
1137 blocks = src.size;
1138 stash_map[id] = src;
1139
1140 if (VerifyBlocks(id, params.buffer, blocks, true) != 0) {
1141 // Source blocks have unexpected contents. If we actually need this data later, this is an
1142 // unrecoverable error. However, the command that uses the data may have already completed
1143 // previously, so the possible failure will occur during source block verification.
1144 LOG(ERROR) << "failed to load source blocks for stash " << id;
1145 return 0;
1146 }
1147
1148 // In verify mode, we don't need to stash any blocks.
1149 if (!params.canwrite) {
1150 return 0;
1151 }
1152
1153 LOG(INFO) << "stashing " << blocks << " blocks to " << id;
1154 params.stashed += blocks;
1155 return WriteStash(params.stashbase, id, blocks, params.buffer, false, nullptr);
Sami Tolvanen90221202014-12-09 16:39:47 +00001156}
1157
Tao Bao0940fe12015-08-27 16:41:21 -07001158static int PerformCommandFree(CommandParameters& params) {
Tao Baobcf46492017-03-23 15:28:20 -07001159 // <stash_id>
1160 if (params.cpos >= params.tokens.size()) {
1161 LOG(ERROR) << "missing stash id in free command";
1162 return -1;
1163 }
Tao Baobaad2d42015-12-06 16:56:27 -08001164
Tao Baobcf46492017-03-23 15:28:20 -07001165 const std::string& id = params.tokens[params.cpos++];
1166 stash_map.erase(id);
Tianjie Xu7eca97e2016-03-22 18:08:12 -07001167
Tao Baobcf46492017-03-23 15:28:20 -07001168 if (params.createdstash || params.canwrite) {
1169 return FreeStash(params.stashbase, id);
1170 }
Tianjie Xu7eca97e2016-03-22 18:08:12 -07001171
Tao Baobcf46492017-03-23 15:28:20 -07001172 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +00001173}
1174
Tao Bao0940fe12015-08-27 16:41:21 -07001175static int PerformCommandZero(CommandParameters& params) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001176
Tao Baobaad2d42015-12-06 16:56:27 -08001177 if (params.cpos >= params.tokens.size()) {
Tao Bao039f2da2016-11-22 16:29:50 -08001178 LOG(ERROR) << "missing target blocks for zero";
Tao Bao0940fe12015-08-27 16:41:21 -07001179 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001180 }
1181
Tao Baoc844c062016-12-28 15:15:55 -08001182 RangeSet tgt = parse_range(params.tokens[params.cpos++]);
Sami Tolvanen90221202014-12-09 16:39:47 +00001183
Tao Bao039f2da2016-11-22 16:29:50 -08001184 LOG(INFO) << " zeroing " << tgt.size << " blocks";
Sami Tolvanen90221202014-12-09 16:39:47 +00001185
Tao Bao612336d2015-08-27 16:41:21 -07001186 allocate(BLOCKSIZE, params.buffer);
1187 memset(params.buffer.data(), 0, BLOCKSIZE);
Sami Tolvanen90221202014-12-09 16:39:47 +00001188
Tao Bao0940fe12015-08-27 16:41:21 -07001189 if (params.canwrite) {
1190 for (size_t i = 0; i < tgt.count; ++i) {
Tianjie Xu7ce287d2016-05-31 09:29:49 -07001191 off64_t offset = static_cast<off64_t>(tgt.pos[i * 2]) * BLOCKSIZE;
1192 size_t size = (tgt.pos[i * 2 + 1] - tgt.pos[i * 2]) * BLOCKSIZE;
1193 if (!discard_blocks(params.fd, offset, size)) {
1194 return -1;
1195 }
1196
1197 if (!check_lseek(params.fd, offset, SEEK_SET)) {
Tao Bao0940fe12015-08-27 16:41:21 -07001198 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001199 }
1200
Tao Bao0940fe12015-08-27 16:41:21 -07001201 for (size_t j = tgt.pos[i * 2]; j < tgt.pos[i * 2 + 1]; ++j) {
1202 if (write_all(params.fd, params.buffer, BLOCKSIZE) == -1) {
1203 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001204 }
1205 }
1206 }
1207 }
1208
Tao Bao0940fe12015-08-27 16:41:21 -07001209 if (params.cmdname[0] == 'z') {
Sami Tolvanene82fa182015-06-10 15:58:12 +00001210 // Update only for the zero command, as the erase command will call
1211 // this if DEBUG_ERASE is defined.
Tao Bao0940fe12015-08-27 16:41:21 -07001212 params.written += tgt.size;
Sami Tolvanen90221202014-12-09 16:39:47 +00001213 }
1214
Tao Bao0940fe12015-08-27 16:41:21 -07001215 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +00001216}
1217
Tao Bao0940fe12015-08-27 16:41:21 -07001218static int PerformCommandNew(CommandParameters& params) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001219
Tao Baobaad2d42015-12-06 16:56:27 -08001220 if (params.cpos >= params.tokens.size()) {
Tao Bao039f2da2016-11-22 16:29:50 -08001221 LOG(ERROR) << "missing target blocks for new";
Tao Bao0940fe12015-08-27 16:41:21 -07001222 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001223 }
1224
Tao Baoc844c062016-12-28 15:15:55 -08001225 RangeSet tgt = parse_range(params.tokens[params.cpos++]);
Sami Tolvanen90221202014-12-09 16:39:47 +00001226
Tao Bao0940fe12015-08-27 16:41:21 -07001227 if (params.canwrite) {
Tao Bao039f2da2016-11-22 16:29:50 -08001228 LOG(INFO) << " writing " << tgt.size << " blocks of new data";
Sami Tolvanen90221202014-12-09 16:39:47 +00001229
Tao Bao0940fe12015-08-27 16:41:21 -07001230 RangeSinkState rss(tgt);
1231 rss.fd = params.fd;
Sami Tolvanen90221202014-12-09 16:39:47 +00001232 rss.p_block = 0;
Tao Bao0940fe12015-08-27 16:41:21 -07001233 rss.p_remain = (tgt.pos[1] - tgt.pos[0]) * BLOCKSIZE;
Sami Tolvanen90221202014-12-09 16:39:47 +00001234
Tianjie Xu7ce287d2016-05-31 09:29:49 -07001235 off64_t offset = static_cast<off64_t>(tgt.pos[0]) * BLOCKSIZE;
1236 if (!discard_blocks(params.fd, offset, tgt.size * BLOCKSIZE)) {
1237 return -1;
1238 }
1239
1240 if (!check_lseek(params.fd, offset, SEEK_SET)) {
Tao Bao0940fe12015-08-27 16:41:21 -07001241 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001242 }
1243
Tao Bao0940fe12015-08-27 16:41:21 -07001244 pthread_mutex_lock(&params.nti.mu);
1245 params.nti.rss = &rss;
1246 pthread_cond_broadcast(&params.nti.cv);
Sami Tolvanen90221202014-12-09 16:39:47 +00001247
Tao Bao0940fe12015-08-27 16:41:21 -07001248 while (params.nti.rss) {
1249 pthread_cond_wait(&params.nti.cv, &params.nti.mu);
Sami Tolvanen90221202014-12-09 16:39:47 +00001250 }
1251
Tao Bao0940fe12015-08-27 16:41:21 -07001252 pthread_mutex_unlock(&params.nti.mu);
Sami Tolvanen90221202014-12-09 16:39:47 +00001253 }
1254
Tao Bao0940fe12015-08-27 16:41:21 -07001255 params.written += tgt.size;
Sami Tolvanen90221202014-12-09 16:39:47 +00001256
Tao Bao0940fe12015-08-27 16:41:21 -07001257 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +00001258}
1259
Tao Bao0940fe12015-08-27 16:41:21 -07001260static int PerformCommandDiff(CommandParameters& params) {
Tao Bao0940fe12015-08-27 16:41:21 -07001261
Tao Baobaad2d42015-12-06 16:56:27 -08001262 // <offset> <length>
1263 if (params.cpos + 1 >= params.tokens.size()) {
Tao Bao039f2da2016-11-22 16:29:50 -08001264 LOG(ERROR) << "missing patch offset or length for " << params.cmdname;
Tao Bao0940fe12015-08-27 16:41:21 -07001265 return -1;
1266 }
1267
Tao Baobaad2d42015-12-06 16:56:27 -08001268 size_t offset;
Tao Baod2aecd42017-03-23 14:43:44 -07001269 if (!android::base::ParseUint(params.tokens[params.cpos++], &offset)) {
Tao Bao039f2da2016-11-22 16:29:50 -08001270 LOG(ERROR) << "invalid patch offset";
Tao Bao0940fe12015-08-27 16:41:21 -07001271 return -1;
1272 }
1273
Tao Baobaad2d42015-12-06 16:56:27 -08001274 size_t len;
Tao Baod2aecd42017-03-23 14:43:44 -07001275 if (!android::base::ParseUint(params.tokens[params.cpos++], &len)) {
Tao Bao039f2da2016-11-22 16:29:50 -08001276 LOG(ERROR) << "invalid patch len";
Tao Baobaad2d42015-12-06 16:56:27 -08001277 return -1;
1278 }
Tao Bao0940fe12015-08-27 16:41:21 -07001279
Tao Bao612336d2015-08-27 16:41:21 -07001280 RangeSet tgt;
Tao Bao0940fe12015-08-27 16:41:21 -07001281 size_t blocks = 0;
Tao Bao612336d2015-08-27 16:41:21 -07001282 bool overlap = false;
Tao Baod2aecd42017-03-23 14:43:44 -07001283 int status = LoadSrcTgtVersion3(params, tgt, &blocks, false, &overlap);
Sami Tolvanen90221202014-12-09 16:39:47 +00001284
1285 if (status == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -08001286 LOG(ERROR) << "failed to read blocks for diff";
Tao Bao0940fe12015-08-27 16:41:21 -07001287 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001288 }
1289
1290 if (status == 0) {
Tao Bao0940fe12015-08-27 16:41:21 -07001291 params.foundwrites = true;
1292 } else if (params.foundwrites) {
Tao Bao039f2da2016-11-22 16:29:50 -08001293 LOG(WARNING) << "warning: commands executed out of order [" << params.cmdname << "]";
Sami Tolvanen90221202014-12-09 16:39:47 +00001294 }
1295
Tao Bao0940fe12015-08-27 16:41:21 -07001296 if (params.canwrite) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001297 if (status == 0) {
Tao Bao039f2da2016-11-22 16:29:50 -08001298 LOG(INFO) << "patching " << blocks << " blocks to " << tgt.size;
Tianjie Xuaced5d92016-10-12 10:55:04 -07001299 Value patch_value(VAL_BLOB,
1300 std::string(reinterpret_cast<const char*>(params.patch_start + offset), len));
Tao Bao0940fe12015-08-27 16:41:21 -07001301 RangeSinkState rss(tgt);
1302 rss.fd = params.fd;
Sami Tolvanen90221202014-12-09 16:39:47 +00001303 rss.p_block = 0;
Tao Bao0940fe12015-08-27 16:41:21 -07001304 rss.p_remain = (tgt.pos[1] - tgt.pos[0]) * BLOCKSIZE;
Sami Tolvanen90221202014-12-09 16:39:47 +00001305
Tianjie Xu7ce287d2016-05-31 09:29:49 -07001306 off64_t offset = static_cast<off64_t>(tgt.pos[0]) * BLOCKSIZE;
1307 if (!discard_blocks(params.fd, offset, rss.p_remain)) {
1308 return -1;
1309 }
1310
1311 if (!check_lseek(params.fd, offset, SEEK_SET)) {
Tao Bao0940fe12015-08-27 16:41:21 -07001312 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001313 }
1314
Tao Bao0940fe12015-08-27 16:41:21 -07001315 if (params.cmdname[0] == 'i') { // imgdiff
Tianjie Xu31f8cc82016-06-15 11:56:42 -07001316 if (ApplyImagePatch(params.buffer.data(), blocks * BLOCKSIZE, &patch_value,
1317 &RangeSinkWrite, &rss, nullptr, nullptr) != 0) {
Tao Bao039f2da2016-11-22 16:29:50 -08001318 LOG(ERROR) << "Failed to apply image patch.";
Tianjie Xu31f8cc82016-06-15 11:56:42 -07001319 return -1;
1320 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001321 } else {
Tianjie Xu31f8cc82016-06-15 11:56:42 -07001322 if (ApplyBSDiffPatch(params.buffer.data(), blocks * BLOCKSIZE, &patch_value,
1323 0, &RangeSinkWrite, &rss, nullptr) != 0) {
Tao Bao039f2da2016-11-22 16:29:50 -08001324 LOG(ERROR) << "Failed to apply bsdiff patch.";
Tianjie Xu31f8cc82016-06-15 11:56:42 -07001325 return -1;
1326 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001327 }
1328
1329 // We expect the output of the patcher to fill the tgt ranges exactly.
Tao Bao0940fe12015-08-27 16:41:21 -07001330 if (rss.p_block != tgt.count || rss.p_remain != 0) {
Tao Bao039f2da2016-11-22 16:29:50 -08001331 LOG(ERROR) << "range sink underrun?";
Sami Tolvanen90221202014-12-09 16:39:47 +00001332 }
1333 } else {
Tao Bao039f2da2016-11-22 16:29:50 -08001334 LOG(INFO) << "skipping " << blocks << " blocks already patched to " << tgt.size
1335 << " [" << params.cmdline << "]";
Sami Tolvanen90221202014-12-09 16:39:47 +00001336 }
1337 }
1338
Tao Baobaad2d42015-12-06 16:56:27 -08001339 if (!params.freestash.empty()) {
Tao Bao0940fe12015-08-27 16:41:21 -07001340 FreeStash(params.stashbase, params.freestash);
Tao Baobaad2d42015-12-06 16:56:27 -08001341 params.freestash.clear();
Sami Tolvanen90221202014-12-09 16:39:47 +00001342 }
1343
Tao Bao0940fe12015-08-27 16:41:21 -07001344 params.written += tgt.size;
Sami Tolvanen90221202014-12-09 16:39:47 +00001345
Tao Bao0940fe12015-08-27 16:41:21 -07001346 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +00001347}
1348
Tao Bao0940fe12015-08-27 16:41:21 -07001349static int PerformCommandErase(CommandParameters& params) {
Sami Tolvanene82fa182015-06-10 15:58:12 +00001350 if (DEBUG_ERASE) {
1351 return PerformCommandZero(params);
Sami Tolvanen90221202014-12-09 16:39:47 +00001352 }
1353
Tao Bao0940fe12015-08-27 16:41:21 -07001354 struct stat sb;
1355 if (fstat(params.fd, &sb) == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -08001356 PLOG(ERROR) << "failed to fstat device to erase";
Tao Bao0940fe12015-08-27 16:41:21 -07001357 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001358 }
1359
Tao Bao0940fe12015-08-27 16:41:21 -07001360 if (!S_ISBLK(sb.st_mode)) {
Tao Bao039f2da2016-11-22 16:29:50 -08001361 LOG(ERROR) << "not a block device; skipping erase";
Tao Bao0940fe12015-08-27 16:41:21 -07001362 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001363 }
1364
Tao Baobaad2d42015-12-06 16:56:27 -08001365 if (params.cpos >= params.tokens.size()) {
Tao Bao039f2da2016-11-22 16:29:50 -08001366 LOG(ERROR) << "missing target blocks for erase";
Tao Bao0940fe12015-08-27 16:41:21 -07001367 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001368 }
1369
Tao Baoc844c062016-12-28 15:15:55 -08001370 RangeSet tgt = parse_range(params.tokens[params.cpos++]);
Sami Tolvanen90221202014-12-09 16:39:47 +00001371
Tao Bao0940fe12015-08-27 16:41:21 -07001372 if (params.canwrite) {
Tao Bao039f2da2016-11-22 16:29:50 -08001373 LOG(INFO) << " erasing " << tgt.size << " blocks";
Sami Tolvanen90221202014-12-09 16:39:47 +00001374
Tao Bao0940fe12015-08-27 16:41:21 -07001375 for (size_t i = 0; i < tgt.count; ++i) {
1376 uint64_t blocks[2];
Sami Tolvanen90221202014-12-09 16:39:47 +00001377 // offset in bytes
Tao Bao0940fe12015-08-27 16:41:21 -07001378 blocks[0] = tgt.pos[i * 2] * (uint64_t) BLOCKSIZE;
Sami Tolvanen90221202014-12-09 16:39:47 +00001379 // length in bytes
Tao Bao0940fe12015-08-27 16:41:21 -07001380 blocks[1] = (tgt.pos[i * 2 + 1] - tgt.pos[i * 2]) * (uint64_t) BLOCKSIZE;
Sami Tolvanen90221202014-12-09 16:39:47 +00001381
Tao Bao0940fe12015-08-27 16:41:21 -07001382 if (ioctl(params.fd, BLKDISCARD, &blocks) == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -08001383 PLOG(ERROR) << "BLKDISCARD ioctl failed";
Tao Bao0940fe12015-08-27 16:41:21 -07001384 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001385 }
1386 }
1387 }
1388
Tao Bao0940fe12015-08-27 16:41:21 -07001389 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +00001390}
1391
1392// Definitions for transfer list command functions
Tao Bao0940fe12015-08-27 16:41:21 -07001393typedef int (*CommandFunction)(CommandParameters&);
Sami Tolvanen90221202014-12-09 16:39:47 +00001394
Tao Bao612336d2015-08-27 16:41:21 -07001395struct Command {
Sami Tolvanen90221202014-12-09 16:39:47 +00001396 const char* name;
1397 CommandFunction f;
Tao Bao612336d2015-08-27 16:41:21 -07001398};
Sami Tolvanen90221202014-12-09 16:39:47 +00001399
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001400// args:
1401// - block device (or file) to modify in-place
1402// - transfer list (blob)
1403// - new data stream (filename within package.zip)
1404// - patch stream (filename within package.zip, must be uncompressed)
1405
Tianjie Xuc4447322017-03-06 14:44:59 -08001406static Value* PerformBlockImageUpdate(const char* name, State* state,
1407 const std::vector<std::unique_ptr<Expr>>& argv,
1408 const Command* commands, size_t cmdcount, bool dryrun) {
Tao Bao33567772017-03-13 14:57:34 -07001409 CommandParameters params = {};
1410 params.canwrite = !dryrun;
Sami Tolvanen90221202014-12-09 16:39:47 +00001411
Tao Bao33567772017-03-13 14:57:34 -07001412 LOG(INFO) << "performing " << (dryrun ? "verification" : "update");
1413 if (state->is_retry) {
1414 is_retry = true;
1415 LOG(INFO) << "This update is a retry.";
1416 }
1417 if (argv.size() != 4) {
1418 ErrorAbort(state, kArgsParsingFailure, "block_image_update expects 4 arguments, got %zu",
1419 argv.size());
1420 return StringValue("");
1421 }
1422
1423 std::vector<std::unique_ptr<Value>> args;
1424 if (!ReadValueArgs(state, argv, &args)) {
1425 return nullptr;
1426 }
1427
1428 const Value* blockdev_filename = args[0].get();
1429 const Value* transfer_list_value = args[1].get();
1430 const Value* new_data_fn = args[2].get();
1431 const Value* patch_data_fn = args[3].get();
1432
1433 if (blockdev_filename->type != VAL_STRING) {
1434 ErrorAbort(state, kArgsParsingFailure, "blockdev_filename argument to %s must be string", name);
1435 return StringValue("");
1436 }
1437 if (transfer_list_value->type != VAL_BLOB) {
1438 ErrorAbort(state, kArgsParsingFailure, "transfer_list argument to %s must be blob", name);
1439 return StringValue("");
1440 }
1441 if (new_data_fn->type != VAL_STRING) {
1442 ErrorAbort(state, kArgsParsingFailure, "new_data_fn argument to %s must be string", name);
1443 return StringValue("");
1444 }
1445 if (patch_data_fn->type != VAL_STRING) {
1446 ErrorAbort(state, kArgsParsingFailure, "patch_data_fn argument to %s must be string", name);
1447 return StringValue("");
1448 }
1449
1450 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
1451 if (ui == nullptr) {
1452 return StringValue("");
1453 }
1454
1455 FILE* cmd_pipe = ui->cmd_pipe;
1456 ZipArchiveHandle za = ui->package_zip;
1457
1458 if (cmd_pipe == nullptr || za == nullptr) {
1459 return StringValue("");
1460 }
1461
1462 ZipString path_data(patch_data_fn->data.c_str());
1463 ZipEntry patch_entry;
1464 if (FindEntry(za, path_data, &patch_entry) != 0) {
1465 LOG(ERROR) << name << "(): no file \"" << patch_data_fn->data << "\" in package";
1466 return StringValue("");
1467 }
1468
1469 params.patch_start = ui->package_zip_addr + patch_entry.offset;
1470 ZipString new_data(new_data_fn->data.c_str());
1471 ZipEntry new_entry;
1472 if (FindEntry(za, new_data, &new_entry) != 0) {
1473 LOG(ERROR) << name << "(): no file \"" << new_data_fn->data << "\" in package";
1474 return StringValue("");
1475 }
1476
1477 params.fd.reset(TEMP_FAILURE_RETRY(ota_open(blockdev_filename->data.c_str(), O_RDWR)));
1478 if (params.fd == -1) {
1479 PLOG(ERROR) << "open \"" << blockdev_filename->data << "\" failed";
1480 return StringValue("");
1481 }
1482
1483 if (params.canwrite) {
1484 params.nti.za = za;
1485 params.nti.entry = new_entry;
1486
1487 pthread_mutex_init(&params.nti.mu, nullptr);
1488 pthread_cond_init(&params.nti.cv, nullptr);
1489 pthread_attr_t attr;
1490 pthread_attr_init(&attr);
1491 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
1492
1493 int error = pthread_create(&params.thread, &attr, unzip_new_data, &params.nti);
1494 if (error != 0) {
1495 PLOG(ERROR) << "pthread_create failed";
1496 return StringValue("");
Tianjie Xu7ce287d2016-05-31 09:29:49 -07001497 }
Tao Bao33567772017-03-13 14:57:34 -07001498 }
1499
1500 std::vector<std::string> lines = android::base::Split(transfer_list_value->data, "\n");
1501 if (lines.size() < 2) {
1502 ErrorAbort(state, kArgsParsingFailure, "too few lines in the transfer list [%zd]\n",
1503 lines.size());
1504 return StringValue("");
1505 }
1506
1507 // First line in transfer list is the version number.
1508 if (!android::base::ParseInt(lines[0], &params.version, 3, 4)) {
1509 LOG(ERROR) << "unexpected transfer list version [" << lines[0] << "]";
1510 return StringValue("");
1511 }
1512
1513 LOG(INFO) << "blockimg version is " << params.version;
1514
1515 // Second line in transfer list is the total number of blocks we expect to write.
1516 size_t total_blocks;
1517 if (!android::base::ParseUint(lines[1], &total_blocks)) {
1518 ErrorAbort(state, kArgsParsingFailure, "unexpected block count [%s]\n", lines[1].c_str());
1519 return StringValue("");
1520 }
1521
1522 if (total_blocks == 0) {
1523 return StringValue("t");
1524 }
1525
1526 size_t start = 2;
1527 if (lines.size() < 4) {
1528 ErrorAbort(state, kArgsParsingFailure, "too few lines in the transfer list [%zu]\n",
1529 lines.size());
1530 return StringValue("");
1531 }
1532
1533 // Third line is how many stash entries are needed simultaneously.
1534 LOG(INFO) << "maximum stash entries " << lines[2];
1535
1536 // Fourth line is the maximum number of blocks that will be stashed simultaneously
1537 size_t stash_max_blocks;
1538 if (!android::base::ParseUint(lines[3], &stash_max_blocks)) {
1539 ErrorAbort(state, kArgsParsingFailure, "unexpected maximum stash blocks [%s]\n",
1540 lines[3].c_str());
1541 return StringValue("");
1542 }
1543
1544 int res = CreateStash(state, stash_max_blocks, blockdev_filename->data, params.stashbase);
1545 if (res == -1) {
1546 return StringValue("");
1547 }
1548
1549 params.createdstash = res;
1550
1551 start += 2;
1552
1553 // Build a map of the available commands
1554 std::unordered_map<std::string, const Command*> cmd_map;
1555 for (size_t i = 0; i < cmdcount; ++i) {
1556 if (cmd_map.find(commands[i].name) != cmd_map.end()) {
1557 LOG(ERROR) << "Error: command [" << commands[i].name << "] already exists in the cmd map.";
1558 return StringValue(strdup(""));
1559 }
1560 cmd_map[commands[i].name] = &commands[i];
1561 }
1562
1563 int rc = -1;
1564
1565 // Subsequent lines are all individual transfer commands
1566 for (auto it = lines.cbegin() + start; it != lines.cend(); it++) {
1567 const std::string& line(*it);
1568 if (line.empty()) continue;
1569
1570 params.tokens = android::base::Split(line, " ");
1571 params.cpos = 0;
1572 params.cmdname = params.tokens[params.cpos++].c_str();
1573 params.cmdline = line.c_str();
1574
1575 if (cmd_map.find(params.cmdname) == cmd_map.end()) {
1576 LOG(ERROR) << "unexpected command [" << params.cmdname << "]";
1577 goto pbiudone;
Tianjie Xuc4447322017-03-06 14:44:59 -08001578 }
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001579
Tao Bao33567772017-03-13 14:57:34 -07001580 const Command* cmd = cmd_map[params.cmdname];
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001581
Tao Bao33567772017-03-13 14:57:34 -07001582 if (cmd->f != nullptr && cmd->f(params) == -1) {
1583 LOG(ERROR) << "failed to execute command [" << line << "]";
1584 goto pbiudone;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001585 }
1586
Sami Tolvanen90221202014-12-09 16:39:47 +00001587 if (params.canwrite) {
Tao Bao33567772017-03-13 14:57:34 -07001588 if (ota_fsync(params.fd) == -1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001589 failure_type = kFsyncFailure;
Tao Bao039f2da2016-11-22 16:29:50 -08001590 PLOG(ERROR) << "fsync failed";
Tao Bao33567772017-03-13 14:57:34 -07001591 goto pbiudone;
1592 }
1593 fprintf(cmd_pipe, "set_progress %.4f\n", static_cast<double>(params.written) / total_blocks);
1594 fflush(cmd_pipe);
Sami Tolvanen90221202014-12-09 16:39:47 +00001595 }
Tao Bao33567772017-03-13 14:57:34 -07001596 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001597
Tao Bao33567772017-03-13 14:57:34 -07001598 if (params.canwrite) {
1599 pthread_join(params.thread, nullptr);
1600
1601 LOG(INFO) << "wrote " << params.written << " blocks; expected " << total_blocks;
1602 LOG(INFO) << "stashed " << params.stashed << " blocks";
1603 LOG(INFO) << "max alloc needed was " << params.buffer.size();
1604
1605 const char* partition = strrchr(blockdev_filename->data.c_str(), '/');
1606 if (partition != nullptr && *(partition + 1) != 0) {
1607 fprintf(cmd_pipe, "log bytes_written_%s: %zu\n", partition + 1, params.written * BLOCKSIZE);
1608 fprintf(cmd_pipe, "log bytes_stashed_%s: %zu\n", partition + 1, params.stashed * BLOCKSIZE);
1609 fflush(cmd_pipe);
Sami Tolvanen90221202014-12-09 16:39:47 +00001610 }
Tao Bao33567772017-03-13 14:57:34 -07001611 // Delete stash only after successfully completing the update, as it may contain blocks needed
1612 // to complete the update later.
1613 DeleteStash(params.stashbase);
1614 } else {
1615 LOG(INFO) << "verified partition contents; update may be resumed";
1616 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001617
Tao Bao33567772017-03-13 14:57:34 -07001618 rc = 0;
Tianjie Xu16255832016-04-30 11:49:59 -07001619
Tao Bao33567772017-03-13 14:57:34 -07001620pbiudone:
1621 if (ota_fsync(params.fd) == -1) {
1622 failure_type = kFsyncFailure;
1623 PLOG(ERROR) << "fsync failed";
1624 }
1625 // params.fd will be automatically closed because it's a unique_fd.
1626
1627 // Only delete the stash if the update cannot be resumed, or it's a verification run and we
1628 // created the stash.
1629 if (params.isunresumable || (!params.canwrite && params.createdstash)) {
1630 DeleteStash(params.stashbase);
1631 }
1632
1633 if (failure_type != kNoCause && state->cause_code == kNoCause) {
1634 state->cause_code = failure_type;
1635 }
1636
1637 return StringValue(rc == 0 ? "t" : "");
Sami Tolvanen90221202014-12-09 16:39:47 +00001638}
1639
Tao Bao33567772017-03-13 14:57:34 -07001640/**
1641 * The transfer list is a text file containing commands to transfer data from one place to another
1642 * on the target partition. We parse it and execute the commands in order:
1643 *
1644 * zero [rangeset]
1645 * - Fill the indicated blocks with zeros.
1646 *
1647 * new [rangeset]
1648 * - Fill the blocks with data read from the new_data file.
1649 *
1650 * erase [rangeset]
1651 * - Mark the given blocks as empty.
1652 *
1653 * move <...>
1654 * bsdiff <patchstart> <patchlen> <...>
1655 * imgdiff <patchstart> <patchlen> <...>
1656 * - Read the source blocks, apply a patch (or not in the case of move), write result to target
1657 * blocks. bsdiff or imgdiff specifies the type of patch; move means no patch at all.
1658 *
1659 * See the comments in LoadSrcTgtVersion3() for a description of the <...> format.
1660 *
1661 * stash <stash_id> <src_range>
1662 * - Load the given source range and stash the data in the given slot of the stash table.
1663 *
1664 * free <stash_id>
1665 * - Free the given stash data.
1666 *
1667 * The creator of the transfer list will guarantee that no block is read (ie, used as the source for
1668 * a patch or move) after it has been written.
1669 *
1670 * The creator will guarantee that a given stash is loaded (with a stash command) before it's used
1671 * in a move/bsdiff/imgdiff command.
1672 *
1673 * Within one command the source and target ranges may overlap so in general we need to read the
1674 * entire source into memory before writing anything to the target blocks.
1675 *
1676 * All the patch data is concatenated into one patch_data file in the update package. It must be
1677 * stored uncompressed because we memory-map it in directly from the archive. (Since patches are
1678 * already compressed, we lose very little by not compressing their concatenation.)
1679 *
1680 * Commands that read data from the partition (i.e. move/bsdiff/imgdiff/stash) have one or more
1681 * additional hashes before the range parameters, which are used to check if the command has already
1682 * been completed and verify the integrity of the source data.
1683 */
Tianjie Xuc4447322017-03-06 14:44:59 -08001684Value* BlockImageVerifyFn(const char* name, State* state,
1685 const std::vector<std::unique_ptr<Expr>>& argv) {
Tao Bao0940fe12015-08-27 16:41:21 -07001686 // Commands which are not tested are set to nullptr to skip them completely
Sami Tolvanen90221202014-12-09 16:39:47 +00001687 const Command commands[] = {
1688 { "bsdiff", PerformCommandDiff },
Tao Bao0940fe12015-08-27 16:41:21 -07001689 { "erase", nullptr },
Sami Tolvanen90221202014-12-09 16:39:47 +00001690 { "free", PerformCommandFree },
1691 { "imgdiff", PerformCommandDiff },
1692 { "move", PerformCommandMove },
Tao Bao0940fe12015-08-27 16:41:21 -07001693 { "new", nullptr },
Sami Tolvanen90221202014-12-09 16:39:47 +00001694 { "stash", PerformCommandStash },
Tao Bao0940fe12015-08-27 16:41:21 -07001695 { "zero", nullptr }
Sami Tolvanen90221202014-12-09 16:39:47 +00001696 };
1697
1698 // Perform a dry run without writing to test if an update can proceed
Tianjie Xuc4447322017-03-06 14:44:59 -08001699 return PerformBlockImageUpdate(name, state, argv, commands,
Tao Baoe6aa3322015-08-05 15:20:27 -07001700 sizeof(commands) / sizeof(commands[0]), true);
Sami Tolvanen90221202014-12-09 16:39:47 +00001701}
1702
Tianjie Xuc4447322017-03-06 14:44:59 -08001703Value* BlockImageUpdateFn(const char* name, State* state,
1704 const std::vector<std::unique_ptr<Expr>>& argv) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001705 const Command commands[] = {
1706 { "bsdiff", PerformCommandDiff },
1707 { "erase", PerformCommandErase },
1708 { "free", PerformCommandFree },
1709 { "imgdiff", PerformCommandDiff },
1710 { "move", PerformCommandMove },
1711 { "new", PerformCommandNew },
1712 { "stash", PerformCommandStash },
1713 { "zero", PerformCommandZero }
1714 };
1715
Tianjie Xuc4447322017-03-06 14:44:59 -08001716 return PerformBlockImageUpdate(name, state, argv, commands,
Tao Baoe6aa3322015-08-05 15:20:27 -07001717 sizeof(commands) / sizeof(commands[0]), false);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001718}
1719
Tianjie Xuc4447322017-03-06 14:44:59 -08001720Value* RangeSha1Fn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
1721 if (argv.size() != 2) {
1722 ErrorAbort(state, kArgsParsingFailure, "range_sha1 expects 2 arguments, got %zu",
1723 argv.size());
1724 return StringValue("");
1725 }
1726
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001727 std::vector<std::unique_ptr<Value>> args;
Tianjie Xuc4447322017-03-06 14:44:59 -08001728 if (!ReadValueArgs(state, argv, &args)) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001729 return nullptr;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001730 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001731
1732 const Value* blockdev_filename = args[0].get();
1733 const Value* ranges = args[1].get();
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001734
1735 if (blockdev_filename->type != VAL_STRING) {
Tianjie Xu16255832016-04-30 11:49:59 -07001736 ErrorAbort(state, kArgsParsingFailure, "blockdev_filename argument to %s must be string",
1737 name);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001738 return StringValue("");
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001739 }
1740 if (ranges->type != VAL_STRING) {
Tianjie Xu16255832016-04-30 11:49:59 -07001741 ErrorAbort(state, kArgsParsingFailure, "ranges argument to %s must be string", name);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001742 return StringValue("");
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001743 }
1744
Tianjie Xuaced5d92016-10-12 10:55:04 -07001745 android::base::unique_fd fd(ota_open(blockdev_filename->data.c_str(), O_RDWR));
Elliott Hughesbcabd092016-03-22 20:19:22 -07001746 if (fd == -1) {
Tianjie Xuaced5d92016-10-12 10:55:04 -07001747 ErrorAbort(state, kFileOpenFailure, "open \"%s\" failed: %s",
1748 blockdev_filename->data.c_str(), strerror(errno));
1749 return StringValue("");
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001750 }
1751
Tao Baoc844c062016-12-28 15:15:55 -08001752 RangeSet rs = parse_range(ranges->data);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001753
1754 SHA_CTX ctx;
Sen Jiangc48cb5e2016-02-04 16:23:21 +08001755 SHA1_Init(&ctx);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001756
Tao Bao612336d2015-08-27 16:41:21 -07001757 std::vector<uint8_t> buffer(BLOCKSIZE);
Tao Bao0940fe12015-08-27 16:41:21 -07001758 for (size_t i = 0; i < rs.count; ++i) {
1759 if (!check_lseek(fd, (off64_t)rs.pos[i*2] * BLOCKSIZE, SEEK_SET)) {
Tianjie Xuaced5d92016-10-12 10:55:04 -07001760 ErrorAbort(state, kLseekFailure, "failed to seek %s: %s",
1761 blockdev_filename->data.c_str(), strerror(errno));
1762 return StringValue("");
Sami Tolvanen90221202014-12-09 16:39:47 +00001763 }
1764
Tao Bao0940fe12015-08-27 16:41:21 -07001765 for (size_t j = rs.pos[i*2]; j < rs.pos[i*2+1]; ++j) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001766 if (read_all(fd, buffer, BLOCKSIZE) == -1) {
Tianjie Xuaced5d92016-10-12 10:55:04 -07001767 ErrorAbort(state, kFreadFailure, "failed to read %s: %s",
1768 blockdev_filename->data.c_str(), strerror(errno));
1769 return StringValue("");
Sami Tolvanen90221202014-12-09 16:39:47 +00001770 }
1771
Sen Jiangc48cb5e2016-02-04 16:23:21 +08001772 SHA1_Update(&ctx, buffer.data(), BLOCKSIZE);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001773 }
1774 }
Sen Jiangc48cb5e2016-02-04 16:23:21 +08001775 uint8_t digest[SHA_DIGEST_LENGTH];
1776 SHA1_Final(digest, &ctx);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001777
Tianjie Xuaced5d92016-10-12 10:55:04 -07001778 return StringValue(print_sha1(digest));
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001779}
1780
Tianjie Xu57bed6d2015-12-15 11:47:30 -08001781// This function checks if a device has been remounted R/W prior to an incremental
1782// OTA update. This is an common cause of update abortion. The function reads the
1783// 1st block of each partition and check for mounting time/count. It return string "t"
1784// if executes successfully and an empty string otherwise.
1785
Tianjie Xuc4447322017-03-06 14:44:59 -08001786Value* CheckFirstBlockFn(const char* name, State* state,
1787 const std::vector<std::unique_ptr<Expr>>& argv) {
1788 if (argv.size() != 1) {
1789 ErrorAbort(state, kArgsParsingFailure, "check_first_block expects 1 argument, got %zu",
1790 argv.size());
1791 return StringValue("");
1792 }
1793
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001794 std::vector<std::unique_ptr<Value>> args;
Tianjie Xuc4447322017-03-06 14:44:59 -08001795 if (!ReadValueArgs(state, argv, &args)) {
Tianjie Xu57bed6d2015-12-15 11:47:30 -08001796 return nullptr;
1797 }
Tianjie Xu57bed6d2015-12-15 11:47:30 -08001798
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001799 const Value* arg_filename = args[0].get();
1800
1801 if (arg_filename->type != VAL_STRING) {
Tianjie Xu16255832016-04-30 11:49:59 -07001802 ErrorAbort(state, kArgsParsingFailure, "filename argument to %s must be string", name);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001803 return StringValue("");
Tianjie Xu57bed6d2015-12-15 11:47:30 -08001804 }
1805
Tianjie Xuaced5d92016-10-12 10:55:04 -07001806 android::base::unique_fd fd(ota_open(arg_filename->data.c_str(), O_RDONLY));
Tianjie Xu57bed6d2015-12-15 11:47:30 -08001807 if (fd == -1) {
Tianjie Xuaced5d92016-10-12 10:55:04 -07001808 ErrorAbort(state, kFileOpenFailure, "open \"%s\" failed: %s", arg_filename->data.c_str(),
Tianjie Xu16255832016-04-30 11:49:59 -07001809 strerror(errno));
Tianjie Xuaced5d92016-10-12 10:55:04 -07001810 return StringValue("");
Tianjie Xu57bed6d2015-12-15 11:47:30 -08001811 }
1812
1813 RangeSet blk0 {1 /*count*/, 1/*size*/, std::vector<size_t> {0, 1}/*position*/};
1814 std::vector<uint8_t> block0_buffer(BLOCKSIZE);
1815
1816 if (ReadBlocks(blk0, block0_buffer, fd) == -1) {
Tianjie Xuaced5d92016-10-12 10:55:04 -07001817 ErrorAbort(state, kFreadFailure, "failed to read %s: %s", arg_filename->data.c_str(),
Tianjie Xu30bf4762015-12-15 11:47:30 -08001818 strerror(errno));
Tianjie Xuaced5d92016-10-12 10:55:04 -07001819 return StringValue("");
Tianjie Xu57bed6d2015-12-15 11:47:30 -08001820 }
1821
1822 // https://ext4.wiki.kernel.org/index.php/Ext4_Disk_Layout
1823 // Super block starts from block 0, offset 0x400
1824 // 0x2C: len32 Mount time
1825 // 0x30: len32 Write time
1826 // 0x34: len16 Number of mounts since the last fsck
1827 // 0x38: len16 Magic signature 0xEF53
1828
1829 time_t mount_time = *reinterpret_cast<uint32_t*>(&block0_buffer[0x400+0x2C]);
1830 uint16_t mount_count = *reinterpret_cast<uint16_t*>(&block0_buffer[0x400+0x34]);
1831
1832 if (mount_count > 0) {
1833 uiPrintf(state, "Device was remounted R/W %d times\n", mount_count);
1834 uiPrintf(state, "Last remount happened on %s", ctime(&mount_time));
1835 }
1836
Tianjie Xuaced5d92016-10-12 10:55:04 -07001837 return StringValue("t");
Tianjie Xu57bed6d2015-12-15 11:47:30 -08001838}
1839
1840
Tianjie Xuc4447322017-03-06 14:44:59 -08001841Value* BlockImageRecoverFn(const char* name, State* state,
1842 const std::vector<std::unique_ptr<Expr>>& argv) {
1843 if (argv.size() != 2) {
1844 ErrorAbort(state, kArgsParsingFailure, "block_image_recover expects 2 arguments, got %zu",
1845 argv.size());
1846 return StringValue("");
1847 }
1848
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001849 std::vector<std::unique_ptr<Value>> args;
Tianjie Xuc4447322017-03-06 14:44:59 -08001850 if (!ReadValueArgs(state, argv, &args)) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001851 return nullptr;
Sami Tolvanen0a7b4732015-06-25 10:25:36 +01001852 }
1853
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001854 const Value* filename = args[0].get();
1855 const Value* ranges = args[1].get();
Sami Tolvanen0a7b4732015-06-25 10:25:36 +01001856
1857 if (filename->type != VAL_STRING) {
Tianjie Xu16255832016-04-30 11:49:59 -07001858 ErrorAbort(state, kArgsParsingFailure, "filename argument to %s must be string", name);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001859 return StringValue("");
Sami Tolvanen0a7b4732015-06-25 10:25:36 +01001860 }
1861 if (ranges->type != VAL_STRING) {
Tianjie Xu16255832016-04-30 11:49:59 -07001862 ErrorAbort(state, kArgsParsingFailure, "ranges argument to %s must be string", name);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001863 return StringValue("");
Sami Tolvanen0a7b4732015-06-25 10:25:36 +01001864 }
1865
Tianjie Xu3b010bc2015-12-09 15:29:45 -08001866 // Output notice to log when recover is attempted
Tao Bao039f2da2016-11-22 16:29:50 -08001867 LOG(INFO) << filename->data << " image corrupted, attempting to recover...";
Tianjie Xu3b010bc2015-12-09 15:29:45 -08001868
Sami Tolvanen0a7b4732015-06-25 10:25:36 +01001869 // When opened with O_RDWR, libfec rewrites corrupted blocks when they are read
Tao Baod2aecd42017-03-23 14:43:44 -07001870 fec::io fh(filename->data, O_RDWR);
Sami Tolvanen0a7b4732015-06-25 10:25:36 +01001871
1872 if (!fh) {
Tianjie Xuaced5d92016-10-12 10:55:04 -07001873 ErrorAbort(state, kLibfecFailure, "fec_open \"%s\" failed: %s", filename->data.c_str(),
Tianjie Xu16255832016-04-30 11:49:59 -07001874 strerror(errno));
Tianjie Xuaced5d92016-10-12 10:55:04 -07001875 return StringValue("");
Sami Tolvanen0a7b4732015-06-25 10:25:36 +01001876 }
1877
1878 if (!fh.has_ecc() || !fh.has_verity()) {
Tianjie Xu16255832016-04-30 11:49:59 -07001879 ErrorAbort(state, kLibfecFailure, "unable to use metadata to correct errors");
Tianjie Xuaced5d92016-10-12 10:55:04 -07001880 return StringValue("");
Sami Tolvanen0a7b4732015-06-25 10:25:36 +01001881 }
1882
1883 fec_status status;
1884
1885 if (!fh.get_status(status)) {
Tianjie Xu16255832016-04-30 11:49:59 -07001886 ErrorAbort(state, kLibfecFailure, "failed to read FEC status");
Tianjie Xuaced5d92016-10-12 10:55:04 -07001887 return StringValue("");
Sami Tolvanen0a7b4732015-06-25 10:25:36 +01001888 }
1889
Tao Baoc844c062016-12-28 15:15:55 -08001890 RangeSet rs = parse_range(ranges->data);
Sami Tolvanen0a7b4732015-06-25 10:25:36 +01001891
1892 uint8_t buffer[BLOCKSIZE];
1893
1894 for (size_t i = 0; i < rs.count; ++i) {
1895 for (size_t j = rs.pos[i * 2]; j < rs.pos[i * 2 + 1]; ++j) {
1896 // Stay within the data area, libfec validates and corrects metadata
1897 if (status.data_size <= (uint64_t)j * BLOCKSIZE) {
1898 continue;
1899 }
1900
1901 if (fh.pread(buffer, BLOCKSIZE, (off64_t)j * BLOCKSIZE) != BLOCKSIZE) {
Tianjie Xu16255832016-04-30 11:49:59 -07001902 ErrorAbort(state, kLibfecFailure, "failed to recover %s (block %zu): %s",
Tianjie Xuaced5d92016-10-12 10:55:04 -07001903 filename->data.c_str(), j, strerror(errno));
1904 return StringValue("");
Sami Tolvanen0a7b4732015-06-25 10:25:36 +01001905 }
1906
1907 // If we want to be able to recover from a situation where rewriting a corrected
1908 // block doesn't guarantee the same data will be returned when re-read later, we
1909 // can save a copy of corrected blocks to /cache. Note:
1910 //
1911 // 1. Maximum space required from /cache is the same as the maximum number of
1912 // corrupted blocks we can correct. For RS(255, 253) and a 2 GiB partition,
1913 // this would be ~16 MiB, for example.
1914 //
1915 // 2. To find out if this block was corrupted, call fec_get_status after each
1916 // read and check if the errors field value has increased.
1917 }
1918 }
Tao Bao039f2da2016-11-22 16:29:50 -08001919 LOG(INFO) << "..." << filename->data << " image recovered successfully.";
Tianjie Xuaced5d92016-10-12 10:55:04 -07001920 return StringValue("t");
Sami Tolvanen0a7b4732015-06-25 10:25:36 +01001921}
1922
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001923void RegisterBlockImageFunctions() {
Sami Tolvanen90221202014-12-09 16:39:47 +00001924 RegisterFunction("block_image_verify", BlockImageVerifyFn);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001925 RegisterFunction("block_image_update", BlockImageUpdateFn);
Sami Tolvanen0a7b4732015-06-25 10:25:36 +01001926 RegisterFunction("block_image_recover", BlockImageRecoverFn);
Tianjie Xu57bed6d2015-12-15 11:47:30 -08001927 RegisterFunction("check_first_block", CheckFirstBlockFn);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001928 RegisterFunction("range_sha1", RangeSha1Fn);
1929}