blob: 50067d479ea6e61cda043161d39f7ac7b4782f61 [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>
21#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>
Sami Tolvanen90221202014-12-09 16:39:47 +000028#include <sys/stat.h>
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070029#include <sys/types.h>
30#include <sys/wait.h>
31#include <sys/ioctl.h>
32#include <time.h>
33#include <unistd.h>
Sami Tolvanen0a7b4732015-06-25 10:25:36 +010034#include <fec/io.h>
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070035
Tao Baoe6aa3322015-08-05 15:20:27 -070036#include <memory>
37#include <string>
Tao Bao0940fe12015-08-27 16:41:21 -070038#include <vector>
Tao Baoe6aa3322015-08-05 15:20:27 -070039
Elliott Hughes4b166f02015-12-04 15:30:20 -080040#include <android-base/parseint.h>
41#include <android-base/strings.h>
Tao Baoe6aa3322015-08-05 15:20:27 -070042
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070043#include "applypatch/applypatch.h"
44#include "edify/expr.h"
45#include "mincrypt/sha.h"
Sami Tolvanen90221202014-12-09 16:39:47 +000046#include "minzip/Hash.h"
Tao Baoe6aa3322015-08-05 15:20:27 -070047#include "print_sha1.h"
Tao Bao0940fe12015-08-27 16:41:21 -070048#include "unique_fd.h"
49#include "updater.h"
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070050
51#define BLOCKSIZE 4096
52
Sami Tolvanene82fa182015-06-10 15:58:12 +000053// Set this to 0 to interpret 'erase' transfers to mean do a
54// BLKDISCARD ioctl (the normal behavior). Set to 1 to interpret
55// erase to mean fill the region with zeroes.
56#define DEBUG_ERASE 0
57
Sami Tolvanen90221202014-12-09 16:39:47 +000058#define STASH_DIRECTORY_BASE "/cache/recovery"
59#define STASH_DIRECTORY_MODE 0700
60#define STASH_FILE_MODE 0600
61
Tao Bao0940fe12015-08-27 16:41:21 -070062struct RangeSet {
63 size_t count; // Limit is INT_MAX.
Shrinivas Sahukara6153df2015-08-19 13:01:45 +053064 size_t size;
Tao Bao0940fe12015-08-27 16:41:21 -070065 std::vector<size_t> pos; // Actual limit is INT_MAX.
66};
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070067
Tao Baobaad2d42015-12-06 16:56:27 -080068static void parse_range(const std::string& range_text, RangeSet& rs) {
Sami Tolvanenf2bac042015-05-12 12:48:46 +010069
Tao Baobaad2d42015-12-06 16:56:27 -080070 std::vector<std::string> pieces = android::base::Split(range_text, ",");
Tao Bao0940fe12015-08-27 16:41:21 -070071 if (pieces.size() < 3) {
Sami Tolvanenf2bac042015-05-12 12:48:46 +010072 goto err;
73 }
74
Tao Baob15fd222015-09-24 11:10:51 -070075 size_t num;
76 if (!android::base::ParseUint(pieces[0].c_str(), &num, static_cast<size_t>(INT_MAX))) {
Sami Tolvanenf2bac042015-05-12 12:48:46 +010077 goto err;
78 }
79
Tao Baob15fd222015-09-24 11:10:51 -070080 if (num == 0 || num % 2) {
81 goto err; // must be even
82 } else if (num != pieces.size() - 1) {
83 goto err;
84 }
Sami Tolvanenf2bac042015-05-12 12:48:46 +010085
Tao Bao0940fe12015-08-27 16:41:21 -070086 rs.pos.resize(num);
87 rs.count = num / 2;
88 rs.size = 0;
Sami Tolvanenf2bac042015-05-12 12:48:46 +010089
Tao Bao0940fe12015-08-27 16:41:21 -070090 for (size_t i = 0; i < num; i += 2) {
Tao Baob15fd222015-09-24 11:10:51 -070091 if (!android::base::ParseUint(pieces[i+1].c_str(), &rs.pos[i],
92 static_cast<size_t>(INT_MAX))) {
Sami Tolvanenf2bac042015-05-12 12:48:46 +010093 goto err;
94 }
95
Tao Baob15fd222015-09-24 11:10:51 -070096 if (!android::base::ParseUint(pieces[i+2].c_str(), &rs.pos[i+1],
97 static_cast<size_t>(INT_MAX))) {
Shrinivas Sahukara6153df2015-08-19 13:01:45 +053098 goto err;
99 }
100
Tao Bao0940fe12015-08-27 16:41:21 -0700101 if (rs.pos[i] >= rs.pos[i+1]) {
Shrinivas Sahukara6153df2015-08-19 13:01:45 +0530102 goto err; // empty or negative range
103 }
104
Tao Bao0940fe12015-08-27 16:41:21 -0700105 size_t sz = rs.pos[i+1] - rs.pos[i];
106 if (rs.size > SIZE_MAX - sz) {
Shrinivas Sahukara6153df2015-08-19 13:01:45 +0530107 goto err; // overflow
108 }
109
Tao Bao0940fe12015-08-27 16:41:21 -0700110 rs.size += sz;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700111 }
112
Tao Bao0940fe12015-08-27 16:41:21 -0700113 return;
Sami Tolvanenf2bac042015-05-12 12:48:46 +0100114
115err:
Tao Baobaad2d42015-12-06 16:56:27 -0800116 fprintf(stderr, "failed to parse range '%s'\n", range_text.c_str());
Sami Tolvanenf2bac042015-05-12 12:48:46 +0100117 exit(1);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700118}
119
Tao Baoe6aa3322015-08-05 15:20:27 -0700120static bool range_overlaps(const RangeSet& r1, const RangeSet& r2) {
Shrinivas Sahukara6153df2015-08-19 13:01:45 +0530121 for (size_t i = 0; i < r1.count; ++i) {
122 size_t r1_0 = r1.pos[i * 2];
123 size_t r1_1 = r1.pos[i * 2 + 1];
Sami Tolvanen90221202014-12-09 16:39:47 +0000124
Shrinivas Sahukara6153df2015-08-19 13:01:45 +0530125 for (size_t j = 0; j < r2.count; ++j) {
126 size_t r2_0 = r2.pos[j * 2];
127 size_t r2_1 = r2.pos[j * 2 + 1];
Sami Tolvanen90221202014-12-09 16:39:47 +0000128
Tao Baoc0f56ad2015-06-25 14:00:31 -0700129 if (!(r2_0 >= r1_1 || r1_0 >= r2_1)) {
Tao Baoe6aa3322015-08-05 15:20:27 -0700130 return true;
Sami Tolvanen90221202014-12-09 16:39:47 +0000131 }
132 }
133 }
134
Tao Baoe6aa3322015-08-05 15:20:27 -0700135 return false;
Sami Tolvanen90221202014-12-09 16:39:47 +0000136}
137
138static int read_all(int fd, uint8_t* data, size_t size) {
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700139 size_t so_far = 0;
140 while (so_far < size) {
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700141 ssize_t r = TEMP_FAILURE_RETRY(read(fd, data+so_far, size-so_far));
142 if (r == -1) {
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700143 fprintf(stderr, "read failed: %s\n", strerror(errno));
Sami Tolvanen90221202014-12-09 16:39:47 +0000144 return -1;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700145 }
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700146 so_far += r;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700147 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000148 return 0;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700149}
150
Tao Bao612336d2015-08-27 16:41:21 -0700151static int read_all(int fd, std::vector<uint8_t>& buffer, size_t size) {
152 return read_all(fd, buffer.data(), size);
153}
154
Sami Tolvanen90221202014-12-09 16:39:47 +0000155static int write_all(int fd, const uint8_t* data, size_t size) {
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700156 size_t written = 0;
157 while (written < size) {
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700158 ssize_t w = TEMP_FAILURE_RETRY(write(fd, data+written, size-written));
159 if (w == -1) {
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700160 fprintf(stderr, "write failed: %s\n", strerror(errno));
Sami Tolvanen90221202014-12-09 16:39:47 +0000161 return -1;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700162 }
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700163 written += w;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700164 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000165
Sami Tolvanen90221202014-12-09 16:39:47 +0000166 return 0;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700167}
168
Tao Bao612336d2015-08-27 16:41:21 -0700169static int write_all(int fd, const std::vector<uint8_t>& buffer, size_t size) {
170 return write_all(fd, buffer.data(), size);
171}
172
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700173static bool check_lseek(int fd, off64_t offset, int whence) {
174 off64_t rc = TEMP_FAILURE_RETRY(lseek64(fd, offset, whence));
175 if (rc == -1) {
176 fprintf(stderr, "lseek64 failed: %s\n", strerror(errno));
177 return false;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700178 }
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700179 return true;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700180}
181
Tao Bao612336d2015-08-27 16:41:21 -0700182static void allocate(size_t size, std::vector<uint8_t>& buffer) {
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700183 // if the buffer's big enough, reuse it.
Tao Bao612336d2015-08-27 16:41:21 -0700184 if (size <= buffer.size()) return;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700185
Tao Bao612336d2015-08-27 16:41:21 -0700186 buffer.resize(size);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700187}
188
Tao Bao0940fe12015-08-27 16:41:21 -0700189struct RangeSinkState {
190 RangeSinkState(RangeSet& rs) : tgt(rs) { };
191
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700192 int fd;
Tao Bao0940fe12015-08-27 16:41:21 -0700193 const RangeSet& tgt;
Shrinivas Sahukara6153df2015-08-19 13:01:45 +0530194 size_t p_block;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700195 size_t p_remain;
Tao Bao0940fe12015-08-27 16:41:21 -0700196};
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700197
198static ssize_t RangeSinkWrite(const uint8_t* data, ssize_t size, void* token) {
Tao Bao0940fe12015-08-27 16:41:21 -0700199 RangeSinkState* rss = reinterpret_cast<RangeSinkState*>(token);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700200
Tao Bao0940fe12015-08-27 16:41:21 -0700201 if (rss->p_remain == 0) {
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700202 fprintf(stderr, "range sink write overrun");
Sami Tolvanen90221202014-12-09 16:39:47 +0000203 return 0;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700204 }
205
206 ssize_t written = 0;
207 while (size > 0) {
208 size_t write_now = size;
Sami Tolvanen90221202014-12-09 16:39:47 +0000209
210 if (rss->p_remain < write_now) {
211 write_now = rss->p_remain;
212 }
213
214 if (write_all(rss->fd, data, write_now) == -1) {
215 break;
216 }
217
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700218 data += write_now;
219 size -= write_now;
220
221 rss->p_remain -= write_now;
222 written += write_now;
223
224 if (rss->p_remain == 0) {
225 // move to the next block
226 ++rss->p_block;
Tao Bao0940fe12015-08-27 16:41:21 -0700227 if (rss->p_block < rss->tgt.count) {
228 rss->p_remain = (rss->tgt.pos[rss->p_block * 2 + 1] -
229 rss->tgt.pos[rss->p_block * 2]) * BLOCKSIZE;
Sami Tolvanen90221202014-12-09 16:39:47 +0000230
Tao Bao0940fe12015-08-27 16:41:21 -0700231 if (!check_lseek(rss->fd, (off64_t)rss->tgt.pos[rss->p_block*2] * BLOCKSIZE,
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700232 SEEK_SET)) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000233 break;
234 }
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700235 } else {
236 // we can't write any more; return how many bytes have
237 // been written so far.
Sami Tolvanen90221202014-12-09 16:39:47 +0000238 break;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700239 }
240 }
241 }
242
243 return written;
244}
245
246// All of the data for all the 'new' transfers is contained in one
247// file in the update package, concatenated together in the order in
248// which transfers.list will need it. We want to stream it out of the
249// archive (it's compressed) without writing it to a temp file, but we
250// can't write each section until it's that transfer's turn to go.
251//
252// To achieve this, we expand the new data from the archive in a
253// background thread, and block that threads 'receive uncompressed
254// data' function until the main thread has reached a point where we
255// want some new data to be written. We signal the background thread
256// with the destination for the data and block the main thread,
257// waiting for the background thread to complete writing that section.
258// Then it signals the main thread to wake up and goes back to
259// blocking waiting for a transfer.
260//
261// NewThreadInfo is the struct used to pass information back and forth
262// between the two threads. When the main thread wants some data
263// written, it sets rss to the destination location and signals the
264// condition. When the background thread is done writing, it clears
265// rss and signals the condition again.
266
Tao Bao0940fe12015-08-27 16:41:21 -0700267struct NewThreadInfo {
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700268 ZipArchive* za;
269 const ZipEntry* entry;
270
271 RangeSinkState* rss;
272
273 pthread_mutex_t mu;
274 pthread_cond_t cv;
Tao Bao0940fe12015-08-27 16:41:21 -0700275};
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700276
277static bool receive_new_data(const unsigned char* data, int size, void* cookie) {
Tao Bao0940fe12015-08-27 16:41:21 -0700278 NewThreadInfo* nti = reinterpret_cast<NewThreadInfo*>(cookie);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700279
280 while (size > 0) {
Tao Bao0940fe12015-08-27 16:41:21 -0700281 // Wait for nti->rss to be non-null, indicating some of this
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700282 // data is wanted.
283 pthread_mutex_lock(&nti->mu);
Tao Bao0940fe12015-08-27 16:41:21 -0700284 while (nti->rss == nullptr) {
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700285 pthread_cond_wait(&nti->cv, &nti->mu);
286 }
287 pthread_mutex_unlock(&nti->mu);
288
289 // At this point nti->rss is set, and we own it. The main
290 // thread is waiting for it to disappear from nti.
291 ssize_t written = RangeSinkWrite(data, size, nti->rss);
292 data += written;
293 size -= written;
294
Tao Bao0940fe12015-08-27 16:41:21 -0700295 if (nti->rss->p_block == nti->rss->tgt.count) {
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700296 // we have written all the bytes desired by this rss.
297
298 pthread_mutex_lock(&nti->mu);
Tao Bao0940fe12015-08-27 16:41:21 -0700299 nti->rss = nullptr;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700300 pthread_cond_broadcast(&nti->cv);
301 pthread_mutex_unlock(&nti->mu);
302 }
303 }
304
305 return true;
306}
307
308static void* unzip_new_data(void* cookie) {
309 NewThreadInfo* nti = (NewThreadInfo*) cookie;
310 mzProcessZipEntryContents(nti->za, nti->entry, receive_new_data, nti);
Tao Bao0940fe12015-08-27 16:41:21 -0700311 return nullptr;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700312}
313
Tao Bao612336d2015-08-27 16:41:21 -0700314static int ReadBlocks(const RangeSet& src, std::vector<uint8_t>& buffer, int fd) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000315 size_t p = 0;
Tao Bao612336d2015-08-27 16:41:21 -0700316 uint8_t* data = buffer.data();
Sami Tolvanen90221202014-12-09 16:39:47 +0000317
Tao Bao0940fe12015-08-27 16:41:21 -0700318 for (size_t i = 0; i < src.count; ++i) {
319 if (!check_lseek(fd, (off64_t) src.pos[i * 2] * BLOCKSIZE, SEEK_SET)) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000320 return -1;
321 }
322
Tao Bao0940fe12015-08-27 16:41:21 -0700323 size_t size = (src.pos[i * 2 + 1] - src.pos[i * 2]) * BLOCKSIZE;
Sami Tolvanen90221202014-12-09 16:39:47 +0000324
Tao Bao612336d2015-08-27 16:41:21 -0700325 if (read_all(fd, data + p, size) == -1) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000326 return -1;
327 }
328
329 p += size;
330 }
331
332 return 0;
333}
334
Tao Bao612336d2015-08-27 16:41:21 -0700335static int WriteBlocks(const RangeSet& tgt, const std::vector<uint8_t>& buffer, int fd) {
336 const uint8_t* data = buffer.data();
Sami Tolvanen90221202014-12-09 16:39:47 +0000337
Tao Bao0940fe12015-08-27 16:41:21 -0700338 size_t p = 0;
339 for (size_t i = 0; i < tgt.count; ++i) {
340 if (!check_lseek(fd, (off64_t) tgt.pos[i * 2] * BLOCKSIZE, SEEK_SET)) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000341 return -1;
342 }
343
Tao Bao0940fe12015-08-27 16:41:21 -0700344 size_t size = (tgt.pos[i * 2 + 1] - tgt.pos[i * 2]) * BLOCKSIZE;
Sami Tolvanen90221202014-12-09 16:39:47 +0000345
Tao Bao612336d2015-08-27 16:41:21 -0700346 if (write_all(fd, data + p, size) == -1) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000347 return -1;
348 }
349
350 p += size;
351 }
352
353 return 0;
354}
355
Tao Baobaad2d42015-12-06 16:56:27 -0800356// Parameters for transfer list command functions
357struct CommandParameters {
358 std::vector<std::string> tokens;
359 size_t cpos;
360 const char* cmdname;
361 const char* cmdline;
362 std::string freestash;
363 std::string stashbase;
364 bool canwrite;
365 int createdstash;
366 int fd;
367 bool foundwrites;
368 bool isunresumable;
369 int version;
370 size_t written;
371 NewThreadInfo nti;
372 pthread_t thread;
373 std::vector<uint8_t> buffer;
374 uint8_t* patch_start;
375};
376
Doug Zongker52ae67d2014-09-08 12:22:09 -0700377// Do a source/target load for move/bsdiff/imgdiff in version 1.
Tao Baobaad2d42015-12-06 16:56:27 -0800378// We expect to parse the remainder of the parameter tokens as:
Doug Zongker52ae67d2014-09-08 12:22:09 -0700379//
380// <src_range> <tgt_range>
381//
382// The source range is loaded into the provided buffer, reallocating
Tao Bao34847b22015-09-08 11:05:49 -0700383// it to make it larger if necessary.
Doug Zongker52ae67d2014-09-08 12:22:09 -0700384
Tao Baobaad2d42015-12-06 16:56:27 -0800385static int LoadSrcTgtVersion1(CommandParameters& params, RangeSet& tgt, size_t& src_blocks,
Tao Bao612336d2015-08-27 16:41:21 -0700386 std::vector<uint8_t>& buffer, int fd) {
Tao Baobaad2d42015-12-06 16:56:27 -0800387
388 if (params.cpos + 1 >= params.tokens.size()) {
389 fprintf(stderr, "invalid parameters\n");
390 return -1;
391 }
392
Tao Bao612336d2015-08-27 16:41:21 -0700393 // <src_range>
Tao Bao0940fe12015-08-27 16:41:21 -0700394 RangeSet src;
Tao Baobaad2d42015-12-06 16:56:27 -0800395 parse_range(params.tokens[params.cpos++], src);
Doug Zongker52ae67d2014-09-08 12:22:09 -0700396
Tao Bao612336d2015-08-27 16:41:21 -0700397 // <tgt_range>
Tao Baobaad2d42015-12-06 16:56:27 -0800398 parse_range(params.tokens[params.cpos++], tgt);
Doug Zongker52ae67d2014-09-08 12:22:09 -0700399
Tao Bao612336d2015-08-27 16:41:21 -0700400 allocate(src.size * BLOCKSIZE, buffer);
401 int rc = ReadBlocks(src, buffer, fd);
Tao Bao0940fe12015-08-27 16:41:21 -0700402 src_blocks = src.size;
Sami Tolvanen90221202014-12-09 16:39:47 +0000403
Sami Tolvanen90221202014-12-09 16:39:47 +0000404 return rc;
405}
406
Tao Bao612336d2015-08-27 16:41:21 -0700407static int VerifyBlocks(const std::string& expected, const std::vector<uint8_t>& buffer,
Tao Bao0940fe12015-08-27 16:41:21 -0700408 const size_t blocks, bool printerror) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000409 uint8_t digest[SHA_DIGEST_SIZE];
Tao Bao612336d2015-08-27 16:41:21 -0700410 const uint8_t* data = buffer.data();
Sami Tolvanen90221202014-12-09 16:39:47 +0000411
Tao Bao612336d2015-08-27 16:41:21 -0700412 SHA_hash(data, blocks * BLOCKSIZE, digest);
Sami Tolvanen90221202014-12-09 16:39:47 +0000413
Tao Baoe6aa3322015-08-05 15:20:27 -0700414 std::string hexdigest = print_sha1(digest);
Sami Tolvanen90221202014-12-09 16:39:47 +0000415
Tao Bao0940fe12015-08-27 16:41:21 -0700416 if (hexdigest != expected) {
417 if (printerror) {
418 fprintf(stderr, "failed to verify blocks (expected %s, read %s)\n",
419 expected.c_str(), hexdigest.c_str());
420 }
421 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000422 }
423
Tao Bao0940fe12015-08-27 16:41:21 -0700424 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +0000425}
426
Tao Bao0940fe12015-08-27 16:41:21 -0700427static std::string GetStashFileName(const std::string& base, const std::string& id,
428 const std::string& postfix) {
Tao Baoe6aa3322015-08-05 15:20:27 -0700429 if (base.empty()) {
430 return "";
Sami Tolvanen90221202014-12-09 16:39:47 +0000431 }
432
Tao Baoe6aa3322015-08-05 15:20:27 -0700433 std::string fn(STASH_DIRECTORY_BASE);
434 fn += "/" + base + "/" + id + postfix;
Sami Tolvanen90221202014-12-09 16:39:47 +0000435
436 return fn;
437}
438
Tao Baoe6aa3322015-08-05 15:20:27 -0700439typedef void (*StashCallback)(const std::string&, void*);
Sami Tolvanen90221202014-12-09 16:39:47 +0000440
441// Does a best effort enumeration of stash files. Ignores possible non-file
442// items in the stash directory and continues despite of errors. Calls the
443// 'callback' function for each file and passes 'data' to the function as a
444// parameter.
445
Tao Baoe6aa3322015-08-05 15:20:27 -0700446static void EnumerateStash(const std::string& dirname, StashCallback callback, void* data) {
Tao Bao0940fe12015-08-27 16:41:21 -0700447 if (dirname.empty() || callback == nullptr) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000448 return;
449 }
450
Tao Baoe6aa3322015-08-05 15:20:27 -0700451 std::unique_ptr<DIR, int(*)(DIR*)> directory(opendir(dirname.c_str()), closedir);
Sami Tolvanen90221202014-12-09 16:39:47 +0000452
Tao Bao0940fe12015-08-27 16:41:21 -0700453 if (directory == nullptr) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000454 if (errno != ENOENT) {
Tao Baoe6aa3322015-08-05 15:20:27 -0700455 fprintf(stderr, "opendir \"%s\" failed: %s\n", dirname.c_str(), strerror(errno));
Sami Tolvanen90221202014-12-09 16:39:47 +0000456 }
457 return;
458 }
459
Tao Baoe6aa3322015-08-05 15:20:27 -0700460 struct dirent* item;
Tao Bao0940fe12015-08-27 16:41:21 -0700461 while ((item = readdir(directory.get())) != nullptr) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000462 if (item->d_type != DT_REG) {
463 continue;
464 }
465
Tao Baoe6aa3322015-08-05 15:20:27 -0700466 std::string fn = dirname + "/" + std::string(item->d_name);
Sami Tolvanen90221202014-12-09 16:39:47 +0000467 callback(fn, data);
Sami Tolvanen90221202014-12-09 16:39:47 +0000468 }
469}
470
Tao Baoe6aa3322015-08-05 15:20:27 -0700471static void UpdateFileSize(const std::string& fn, void* data) {
472 if (fn.empty() || !data) {
473 return;
474 }
475
Tao Bao0940fe12015-08-27 16:41:21 -0700476 struct stat sb;
477 if (stat(fn.c_str(), &sb) == -1) {
Tao Baoe6aa3322015-08-05 15:20:27 -0700478 fprintf(stderr, "stat \"%s\" failed: %s\n", fn.c_str(), strerror(errno));
Sami Tolvanen90221202014-12-09 16:39:47 +0000479 return;
480 }
481
Tao Baoe6aa3322015-08-05 15:20:27 -0700482 int* size = reinterpret_cast<int*>(data);
Tao Bao0940fe12015-08-27 16:41:21 -0700483 *size += sb.st_size;
Sami Tolvanen90221202014-12-09 16:39:47 +0000484}
485
486// Deletes the stash directory and all files in it. Assumes that it only
487// contains files. There is nothing we can do about unlikely, but possible
488// errors, so they are merely logged.
489
Tao Bao0940fe12015-08-27 16:41:21 -0700490static void DeleteFile(const std::string& fn, void* /* data */) {
Tao Baoe6aa3322015-08-05 15:20:27 -0700491 if (!fn.empty()) {
492 fprintf(stderr, "deleting %s\n", fn.c_str());
Sami Tolvanen90221202014-12-09 16:39:47 +0000493
Tao Baoe6aa3322015-08-05 15:20:27 -0700494 if (unlink(fn.c_str()) == -1 && errno != ENOENT) {
495 fprintf(stderr, "unlink \"%s\" failed: %s\n", fn.c_str(), strerror(errno));
Sami Tolvanen90221202014-12-09 16:39:47 +0000496 }
497 }
498}
499
Tao Baoe6aa3322015-08-05 15:20:27 -0700500static void DeletePartial(const std::string& fn, void* data) {
501 if (android::base::EndsWith(fn, ".partial")) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000502 DeleteFile(fn, data);
503 }
504}
505
Tao Baoe6aa3322015-08-05 15:20:27 -0700506static void DeleteStash(const std::string& base) {
507 if (base.empty()) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000508 return;
509 }
510
Tao Baoe6aa3322015-08-05 15:20:27 -0700511 fprintf(stderr, "deleting stash %s\n", base.c_str());
Sami Tolvanen90221202014-12-09 16:39:47 +0000512
Tao Baoe6aa3322015-08-05 15:20:27 -0700513 std::string dirname = GetStashFileName(base, "", "");
Tao Bao0940fe12015-08-27 16:41:21 -0700514 EnumerateStash(dirname, DeleteFile, nullptr);
Sami Tolvanen90221202014-12-09 16:39:47 +0000515
Tao Baoe6aa3322015-08-05 15:20:27 -0700516 if (rmdir(dirname.c_str()) == -1) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000517 if (errno != ENOENT && errno != ENOTDIR) {
Tao Baoe6aa3322015-08-05 15:20:27 -0700518 fprintf(stderr, "rmdir \"%s\" failed: %s\n", dirname.c_str(), strerror(errno));
Sami Tolvanen90221202014-12-09 16:39:47 +0000519 }
520 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000521}
522
Tao Bao0940fe12015-08-27 16:41:21 -0700523static int LoadStash(const std::string& base, const std::string& id, bool verify, size_t* blocks,
Tao Bao612336d2015-08-27 16:41:21 -0700524 std::vector<uint8_t>& buffer, bool printnoent) {
525 if (base.empty()) {
Tao Bao0940fe12015-08-27 16:41:21 -0700526 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000527 }
528
Tao Bao0940fe12015-08-27 16:41:21 -0700529 size_t blockcount = 0;
530
Sami Tolvanen90221202014-12-09 16:39:47 +0000531 if (!blocks) {
532 blocks = &blockcount;
533 }
534
Tao Bao0940fe12015-08-27 16:41:21 -0700535 std::string fn = GetStashFileName(base, id, "");
Sami Tolvanen90221202014-12-09 16:39:47 +0000536
Tao Bao0940fe12015-08-27 16:41:21 -0700537 struct stat sb;
538 int res = stat(fn.c_str(), &sb);
Sami Tolvanen90221202014-12-09 16:39:47 +0000539
540 if (res == -1) {
541 if (errno != ENOENT || printnoent) {
Tao Baoe6aa3322015-08-05 15:20:27 -0700542 fprintf(stderr, "stat \"%s\" failed: %s\n", fn.c_str(), strerror(errno));
Sami Tolvanen90221202014-12-09 16:39:47 +0000543 }
Tao Bao0940fe12015-08-27 16:41:21 -0700544 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000545 }
546
Tao Baoe6aa3322015-08-05 15:20:27 -0700547 fprintf(stderr, " loading %s\n", fn.c_str());
Sami Tolvanen90221202014-12-09 16:39:47 +0000548
Tao Bao0940fe12015-08-27 16:41:21 -0700549 if ((sb.st_size % BLOCKSIZE) != 0) {
Tao Baoba9a42a2015-06-23 23:23:33 -0700550 fprintf(stderr, "%s size %" PRId64 " not multiple of block size %d",
Tao Bao0940fe12015-08-27 16:41:21 -0700551 fn.c_str(), static_cast<int64_t>(sb.st_size), BLOCKSIZE);
552 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000553 }
554
Tao Bao0940fe12015-08-27 16:41:21 -0700555 int fd = TEMP_FAILURE_RETRY(open(fn.c_str(), O_RDONLY));
556 unique_fd fd_holder(fd);
Sami Tolvanen90221202014-12-09 16:39:47 +0000557
558 if (fd == -1) {
Tao Baoe6aa3322015-08-05 15:20:27 -0700559 fprintf(stderr, "open \"%s\" failed: %s\n", fn.c_str(), strerror(errno));
Tao Bao0940fe12015-08-27 16:41:21 -0700560 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000561 }
562
Tao Bao612336d2015-08-27 16:41:21 -0700563 allocate(sb.st_size, buffer);
Sami Tolvanen90221202014-12-09 16:39:47 +0000564
Tao Bao612336d2015-08-27 16:41:21 -0700565 if (read_all(fd, buffer, sb.st_size) == -1) {
Tao Bao0940fe12015-08-27 16:41:21 -0700566 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000567 }
568
Tao Bao0940fe12015-08-27 16:41:21 -0700569 *blocks = sb.st_size / BLOCKSIZE;
Sami Tolvanen90221202014-12-09 16:39:47 +0000570
Tao Bao612336d2015-08-27 16:41:21 -0700571 if (verify && VerifyBlocks(id, buffer, *blocks, true) != 0) {
Tao Baoe6aa3322015-08-05 15:20:27 -0700572 fprintf(stderr, "unexpected contents in %s\n", fn.c_str());
Tao Bao0940fe12015-08-27 16:41:21 -0700573 DeleteFile(fn, nullptr);
574 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000575 }
576
Tao Bao0940fe12015-08-27 16:41:21 -0700577 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +0000578}
579
Tao Bao612336d2015-08-27 16:41:21 -0700580static int WriteStash(const std::string& base, const std::string& id, int blocks,
581 std::vector<uint8_t>& buffer, bool checkspace, bool *exists) {
582 if (base.empty()) {
Tao Bao0940fe12015-08-27 16:41:21 -0700583 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000584 }
585
586 if (checkspace && CacheSizeCheck(blocks * BLOCKSIZE) != 0) {
587 fprintf(stderr, "not enough space to write stash\n");
Tao Bao0940fe12015-08-27 16:41:21 -0700588 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000589 }
590
Tao Bao0940fe12015-08-27 16:41:21 -0700591 std::string fn = GetStashFileName(base, id, ".partial");
592 std::string cn = GetStashFileName(base, id, "");
Sami Tolvanen90221202014-12-09 16:39:47 +0000593
Sami Tolvanen43b748f2015-04-17 12:50:31 +0100594 if (exists) {
Tao Bao0940fe12015-08-27 16:41:21 -0700595 struct stat sb;
596 int res = stat(cn.c_str(), &sb);
Sami Tolvanen43b748f2015-04-17 12:50:31 +0100597
598 if (res == 0) {
599 // The file already exists and since the name is the hash of the contents,
600 // it's safe to assume the contents are identical (accidental hash collisions
601 // are unlikely)
Tao Baoe6aa3322015-08-05 15:20:27 -0700602 fprintf(stderr, " skipping %d existing blocks in %s\n", blocks, cn.c_str());
Tao Bao0940fe12015-08-27 16:41:21 -0700603 *exists = true;
604 return 0;
Sami Tolvanen43b748f2015-04-17 12:50:31 +0100605 }
606
Tao Bao0940fe12015-08-27 16:41:21 -0700607 *exists = false;
Sami Tolvanen43b748f2015-04-17 12:50:31 +0100608 }
609
Tao Baoe6aa3322015-08-05 15:20:27 -0700610 fprintf(stderr, " writing %d blocks to %s\n", blocks, cn.c_str());
Sami Tolvanen90221202014-12-09 16:39:47 +0000611
Tao Bao0940fe12015-08-27 16:41:21 -0700612 int fd = TEMP_FAILURE_RETRY(open(fn.c_str(), O_WRONLY | O_CREAT | O_TRUNC, STASH_FILE_MODE));
613 unique_fd fd_holder(fd);
Sami Tolvanen90221202014-12-09 16:39:47 +0000614
615 if (fd == -1) {
Tao Baoe6aa3322015-08-05 15:20:27 -0700616 fprintf(stderr, "failed to create \"%s\": %s\n", fn.c_str(), strerror(errno));
Tao Bao0940fe12015-08-27 16:41:21 -0700617 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000618 }
619
620 if (write_all(fd, buffer, blocks * BLOCKSIZE) == -1) {
Tao Bao0940fe12015-08-27 16:41:21 -0700621 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000622 }
623
624 if (fsync(fd) == -1) {
Tao Baoe6aa3322015-08-05 15:20:27 -0700625 fprintf(stderr, "fsync \"%s\" failed: %s\n", fn.c_str(), strerror(errno));
Tao Bao0940fe12015-08-27 16:41:21 -0700626 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000627 }
628
Tao Baoe6aa3322015-08-05 15:20:27 -0700629 if (rename(fn.c_str(), cn.c_str()) == -1) {
630 fprintf(stderr, "rename(\"%s\", \"%s\") failed: %s\n", fn.c_str(), cn.c_str(),
631 strerror(errno));
Tao Bao0940fe12015-08-27 16:41:21 -0700632 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000633 }
634
Tao Bao0940fe12015-08-27 16:41:21 -0700635 std::string dname = GetStashFileName(base, "", "");
636 int dfd = TEMP_FAILURE_RETRY(open(dname.c_str(), O_RDONLY | O_DIRECTORY));
637 unique_fd dfd_holder(dfd);
Tao Baodc392262015-07-31 15:56:44 -0700638
639 if (dfd == -1) {
Tao Baoe6aa3322015-08-05 15:20:27 -0700640 fprintf(stderr, "failed to open \"%s\" failed: %s\n", dname.c_str(), strerror(errno));
Tao Bao0940fe12015-08-27 16:41:21 -0700641 return -1;
Tao Baodc392262015-07-31 15:56:44 -0700642 }
643
644 if (fsync(dfd) == -1) {
Tao Baoe6aa3322015-08-05 15:20:27 -0700645 fprintf(stderr, "fsync \"%s\" failed: %s\n", dname.c_str(), strerror(errno));
Tao Bao0940fe12015-08-27 16:41:21 -0700646 return -1;
Tao Baodc392262015-07-31 15:56:44 -0700647 }
648
Tao Bao0940fe12015-08-27 16:41:21 -0700649 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +0000650}
651
652// Creates a directory for storing stash files and checks if the /cache partition
653// hash enough space for the expected amount of blocks we need to store. Returns
654// >0 if we created the directory, zero if it existed already, and <0 of failure.
655
Tao Bao0940fe12015-08-27 16:41:21 -0700656static int CreateStash(State* state, int maxblocks, const char* blockdev, std::string& base) {
657 if (blockdev == nullptr) {
Tao Baoe6aa3322015-08-05 15:20:27 -0700658 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000659 }
660
661 // Stash directory should be different for each partition to avoid conflicts
662 // when updating multiple partitions at the same time, so we use the hash of
663 // the block device name as the base directory
Tao Baoe6aa3322015-08-05 15:20:27 -0700664 SHA_CTX ctx;
Sami Tolvanen90221202014-12-09 16:39:47 +0000665 SHA_init(&ctx);
666 SHA_update(&ctx, blockdev, strlen(blockdev));
Tao Baoe6aa3322015-08-05 15:20:27 -0700667 const uint8_t* digest = SHA_final(&ctx);
668 base = print_sha1(digest);
Sami Tolvanen90221202014-12-09 16:39:47 +0000669
Tao Baoe6aa3322015-08-05 15:20:27 -0700670 std::string dirname = GetStashFileName(base, "", "");
Tao Bao0940fe12015-08-27 16:41:21 -0700671 struct stat sb;
672 int res = stat(dirname.c_str(), &sb);
Sami Tolvanen90221202014-12-09 16:39:47 +0000673
674 if (res == -1 && errno != ENOENT) {
Tao Baoe6aa3322015-08-05 15:20:27 -0700675 ErrorAbort(state, "stat \"%s\" failed: %s\n", dirname.c_str(), strerror(errno));
676 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000677 } else if (res != 0) {
Tao Baoe6aa3322015-08-05 15:20:27 -0700678 fprintf(stderr, "creating stash %s\n", dirname.c_str());
679 res = mkdir(dirname.c_str(), STASH_DIRECTORY_MODE);
Sami Tolvanen90221202014-12-09 16:39:47 +0000680
681 if (res != 0) {
Tao Baoe6aa3322015-08-05 15:20:27 -0700682 ErrorAbort(state, "mkdir \"%s\" failed: %s\n", dirname.c_str(), strerror(errno));
683 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000684 }
685
686 if (CacheSizeCheck(maxblocks * BLOCKSIZE) != 0) {
687 ErrorAbort(state, "not enough space for stash\n");
Tao Baoe6aa3322015-08-05 15:20:27 -0700688 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000689 }
690
Tao Baoe6aa3322015-08-05 15:20:27 -0700691 return 1; // Created directory
Sami Tolvanen90221202014-12-09 16:39:47 +0000692 }
693
Tao Baoe6aa3322015-08-05 15:20:27 -0700694 fprintf(stderr, "using existing stash %s\n", dirname.c_str());
Sami Tolvanen90221202014-12-09 16:39:47 +0000695
696 // If the directory already exists, calculate the space already allocated to
697 // stash files and check if there's enough for all required blocks. Delete any
698 // partially completed stash files first.
699
Tao Bao0940fe12015-08-27 16:41:21 -0700700 EnumerateStash(dirname, DeletePartial, nullptr);
Tao Baoe6aa3322015-08-05 15:20:27 -0700701 int size = 0;
Sami Tolvanen90221202014-12-09 16:39:47 +0000702 EnumerateStash(dirname, UpdateFileSize, &size);
703
Tao Bao0940fe12015-08-27 16:41:21 -0700704 size = maxblocks * BLOCKSIZE - size;
Sami Tolvanen90221202014-12-09 16:39:47 +0000705
706 if (size > 0 && CacheSizeCheck(size) != 0) {
707 ErrorAbort(state, "not enough space for stash (%d more needed)\n", size);
Tao Baoe6aa3322015-08-05 15:20:27 -0700708 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000709 }
710
Tao Baoe6aa3322015-08-05 15:20:27 -0700711 return 0; // Using existing directory
Sami Tolvanen90221202014-12-09 16:39:47 +0000712}
713
Tao Baobaad2d42015-12-06 16:56:27 -0800714static int SaveStash(CommandParameters& params, const std::string& base,
715 std::vector<uint8_t>& buffer, int fd, bool usehash) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000716
Tao Baobaad2d42015-12-06 16:56:27 -0800717 // <stash_id> <src_range>
718 if (params.cpos + 1 >= params.tokens.size()) {
719 fprintf(stderr, "missing id and/or src range fields in stash command\n");
Sami Tolvanen90221202014-12-09 16:39:47 +0000720 return -1;
721 }
Tao Baobaad2d42015-12-06 16:56:27 -0800722 const std::string& id = params.tokens[params.cpos++];
Sami Tolvanen90221202014-12-09 16:39:47 +0000723
Tao Bao0940fe12015-08-27 16:41:21 -0700724 size_t blocks = 0;
Tao Bao612336d2015-08-27 16:41:21 -0700725 if (usehash && LoadStash(base, id, true, &blocks, buffer, false) == 0) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000726 // Stash file already exists and has expected contents. Do not
727 // read from source again, as the source may have been already
728 // overwritten during a previous attempt.
729 return 0;
730 }
731
Tao Bao34847b22015-09-08 11:05:49 -0700732 RangeSet src;
Tao Baobaad2d42015-12-06 16:56:27 -0800733 parse_range(params.tokens[params.cpos++], src);
Tao Bao34847b22015-09-08 11:05:49 -0700734
Tao Bao612336d2015-08-27 16:41:21 -0700735 allocate(src.size * BLOCKSIZE, buffer);
736 if (ReadBlocks(src, buffer, fd) == -1) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000737 return -1;
738 }
Tao Bao34847b22015-09-08 11:05:49 -0700739 blocks = src.size;
Sami Tolvanen90221202014-12-09 16:39:47 +0000740
Tao Bao612336d2015-08-27 16:41:21 -0700741 if (usehash && VerifyBlocks(id, buffer, blocks, true) != 0) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000742 // Source blocks have unexpected contents. If we actually need this
743 // data later, this is an unrecoverable error. However, the command
744 // that uses the data may have already completed previously, so the
745 // possible failure will occur during source block verification.
Tao Bao0940fe12015-08-27 16:41:21 -0700746 fprintf(stderr, "failed to load source blocks for stash %s\n", id.c_str());
Sami Tolvanen90221202014-12-09 16:39:47 +0000747 return 0;
748 }
749
Tao Bao0940fe12015-08-27 16:41:21 -0700750 fprintf(stderr, "stashing %zu blocks to %s\n", blocks, id.c_str());
Tao Bao612336d2015-08-27 16:41:21 -0700751 return WriteStash(base, id, blocks, buffer, false, nullptr);
Sami Tolvanen90221202014-12-09 16:39:47 +0000752}
753
Tao Baobaad2d42015-12-06 16:56:27 -0800754static int FreeStash(const std::string& base, const std::string& id) {
755 if (base.empty() || id.empty()) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000756 return -1;
757 }
758
Tao Baobaad2d42015-12-06 16:56:27 -0800759 std::string fn = GetStashFileName(base, id, "");
Tao Bao0940fe12015-08-27 16:41:21 -0700760 DeleteFile(fn, nullptr);
Sami Tolvanen90221202014-12-09 16:39:47 +0000761
762 return 0;
Doug Zongker52ae67d2014-09-08 12:22:09 -0700763}
764
Tao Bao612336d2015-08-27 16:41:21 -0700765static void MoveRange(std::vector<uint8_t>& dest, const RangeSet& locs,
766 const std::vector<uint8_t>& source) {
Doug Zongker52ae67d2014-09-08 12:22:09 -0700767 // source contains packed data, which we want to move to the
Tao Bao612336d2015-08-27 16:41:21 -0700768 // locations given in locs in the dest buffer. source and dest
Doug Zongker52ae67d2014-09-08 12:22:09 -0700769 // may be the same buffer.
770
Tao Bao612336d2015-08-27 16:41:21 -0700771 const uint8_t* from = source.data();
772 uint8_t* to = dest.data();
Tao Bao0940fe12015-08-27 16:41:21 -0700773 size_t start = locs.size;
774 for (int i = locs.count-1; i >= 0; --i) {
775 size_t blocks = locs.pos[i*2+1] - locs.pos[i*2];
Doug Zongker52ae67d2014-09-08 12:22:09 -0700776 start -= blocks;
Tao Bao612336d2015-08-27 16:41:21 -0700777 memmove(to + (locs.pos[i*2] * BLOCKSIZE), from + (start * BLOCKSIZE),
Doug Zongker52ae67d2014-09-08 12:22:09 -0700778 blocks * BLOCKSIZE);
779 }
780}
781
782// Do a source/target load for move/bsdiff/imgdiff in version 2.
Tao Baobaad2d42015-12-06 16:56:27 -0800783// We expect to parse the remainder of the parameter tokens as one of:
Doug Zongker52ae67d2014-09-08 12:22:09 -0700784//
785// <tgt_range> <src_block_count> <src_range>
786// (loads data from source image only)
787//
788// <tgt_range> <src_block_count> - <[stash_id:stash_range] ...>
789// (loads data from stashes only)
790//
791// <tgt_range> <src_block_count> <src_range> <src_loc> <[stash_id:stash_range] ...>
792// (loads data from both source image and stashes)
793//
794// On return, buffer is filled with the loaded source data (rearranged
795// and combined with stashed data as necessary). buffer may be
796// reallocated if needed to accommodate the source data. *tgt is the
Sami Tolvanen90221202014-12-09 16:39:47 +0000797// target RangeSet. Any stashes required are loaded using LoadStash.
Doug Zongker52ae67d2014-09-08 12:22:09 -0700798
Tao Baobaad2d42015-12-06 16:56:27 -0800799static int LoadSrcTgtVersion2(CommandParameters& params, RangeSet& tgt, size_t& src_blocks,
Tao Bao612336d2015-08-27 16:41:21 -0700800 std::vector<uint8_t>& buffer, int fd, const std::string& stashbase, bool* overlap) {
Tao Baobaad2d42015-12-06 16:56:27 -0800801
802 // At least it needs to provide three parameters: <tgt_range>,
803 // <src_block_count> and "-"/<src_range>.
804 if (params.cpos + 2 >= params.tokens.size()) {
805 fprintf(stderr, "invalid parameters\n");
806 return -1;
807 }
808
Tao Bao612336d2015-08-27 16:41:21 -0700809 // <tgt_range>
Tao Baobaad2d42015-12-06 16:56:27 -0800810 parse_range(params.tokens[params.cpos++], tgt);
Doug Zongker52ae67d2014-09-08 12:22:09 -0700811
Tao Bao612336d2015-08-27 16:41:21 -0700812 // <src_block_count>
Tao Baobaad2d42015-12-06 16:56:27 -0800813 const std::string& token = params.tokens[params.cpos++];
814 if (!android::base::ParseUint(token.c_str(), &src_blocks)) {
815 fprintf(stderr, "invalid src_block_count \"%s\"\n", token.c_str());
816 return -1;
817 }
Doug Zongker52ae67d2014-09-08 12:22:09 -0700818
Tao Bao612336d2015-08-27 16:41:21 -0700819 allocate(src_blocks * BLOCKSIZE, buffer);
Doug Zongker52ae67d2014-09-08 12:22:09 -0700820
Tao Bao612336d2015-08-27 16:41:21 -0700821 // "-" or <src_range> [<src_loc>]
Tao Baobaad2d42015-12-06 16:56:27 -0800822 if (params.tokens[params.cpos] == "-") {
Doug Zongker52ae67d2014-09-08 12:22:09 -0700823 // no source ranges, only stashes
Tao Baobaad2d42015-12-06 16:56:27 -0800824 params.cpos++;
Doug Zongker52ae67d2014-09-08 12:22:09 -0700825 } else {
Tao Bao0940fe12015-08-27 16:41:21 -0700826 RangeSet src;
Tao Baobaad2d42015-12-06 16:56:27 -0800827 parse_range(params.tokens[params.cpos++], src);
Tao Bao612336d2015-08-27 16:41:21 -0700828 int res = ReadBlocks(src, buffer, fd);
Doug Zongker52ae67d2014-09-08 12:22:09 -0700829
Tao Bao34847b22015-09-08 11:05:49 -0700830 if (overlap) {
831 *overlap = range_overlaps(src, tgt);
Doug Zongker52ae67d2014-09-08 12:22:09 -0700832 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000833
Sami Tolvanen90221202014-12-09 16:39:47 +0000834 if (res == -1) {
835 return -1;
Doug Zongker52ae67d2014-09-08 12:22:09 -0700836 }
837
Tao Baobaad2d42015-12-06 16:56:27 -0800838 if (params.cpos >= params.tokens.size()) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000839 // no stashes, only source range
840 return 0;
841 }
842
Tao Bao612336d2015-08-27 16:41:21 -0700843 RangeSet locs;
Tao Baobaad2d42015-12-06 16:56:27 -0800844 parse_range(params.tokens[params.cpos++], locs);
Tao Bao612336d2015-08-27 16:41:21 -0700845 MoveRange(buffer, locs, buffer);
Doug Zongker52ae67d2014-09-08 12:22:09 -0700846 }
847
Tao Baobaad2d42015-12-06 16:56:27 -0800848 // <[stash_id:stash_range]>
849 while (params.cpos < params.tokens.size()) {
Doug Zongker52ae67d2014-09-08 12:22:09 -0700850 // Each word is a an index into the stash table, a colon, and
851 // then a rangeset describing where in the source block that
852 // stashed data should go.
Tao Baobaad2d42015-12-06 16:56:27 -0800853 std::vector<std::string> tokens = android::base::Split(params.tokens[params.cpos++], ":");
854 if (tokens.size() != 2) {
855 fprintf(stderr, "invalid parameter\n");
856 return -1;
857 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000858
Tao Bao612336d2015-08-27 16:41:21 -0700859 std::vector<uint8_t> stash;
Tao Baobaad2d42015-12-06 16:56:27 -0800860 int res = LoadStash(stashbase, tokens[0], false, nullptr, stash, true);
Sami Tolvanen90221202014-12-09 16:39:47 +0000861
862 if (res == -1) {
863 // These source blocks will fail verification if used later, but we
864 // will let the caller decide if this is a fatal failure
Tao Baobaad2d42015-12-06 16:56:27 -0800865 fprintf(stderr, "failed to load stash %s\n", tokens[0].c_str());
Sami Tolvanen90221202014-12-09 16:39:47 +0000866 continue;
867 }
868
Tao Bao612336d2015-08-27 16:41:21 -0700869 RangeSet locs;
Tao Baobaad2d42015-12-06 16:56:27 -0800870 parse_range(tokens[1], locs);
Sami Tolvanen90221202014-12-09 16:39:47 +0000871
Tao Bao612336d2015-08-27 16:41:21 -0700872 MoveRange(buffer, locs, stash);
Sami Tolvanen90221202014-12-09 16:39:47 +0000873 }
874
875 return 0;
876}
877
Sami Tolvanen90221202014-12-09 16:39:47 +0000878// Do a source/target load for move/bsdiff/imgdiff in version 3.
879//
880// Parameters are the same as for LoadSrcTgtVersion2, except for 'onehash', which
881// tells the function whether to expect separate source and targe block hashes, or
882// if they are both the same and only one hash should be expected, and
883// 'isunresumable', which receives a non-zero value if block verification fails in
884// a way that the update cannot be resumed anymore.
885//
886// If the function is unable to load the necessary blocks or their contents don't
887// match the hashes, the return value is -1 and the command should be aborted.
888//
889// If the return value is 1, the command has already been completed according to
890// the contents of the target blocks, and should not be performed again.
891//
892// If the return value is 0, source blocks have expected content and the command
893// can be performed.
894
Tao Bao34847b22015-09-08 11:05:49 -0700895static int LoadSrcTgtVersion3(CommandParameters& params, RangeSet& tgt, size_t& src_blocks,
Tao Bao0940fe12015-08-27 16:41:21 -0700896 bool onehash, bool& overlap) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000897
Tao Baobaad2d42015-12-06 16:56:27 -0800898 if (params.cpos >= params.tokens.size()) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000899 fprintf(stderr, "missing source hash\n");
Tao Bao0940fe12015-08-27 16:41:21 -0700900 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000901 }
902
Tao Baobaad2d42015-12-06 16:56:27 -0800903 std::string srchash = params.tokens[params.cpos++];
904 std::string tgthash;
905
Sami Tolvanen90221202014-12-09 16:39:47 +0000906 if (onehash) {
907 tgthash = srchash;
908 } else {
Tao Baobaad2d42015-12-06 16:56:27 -0800909 if (params.cpos >= params.tokens.size()) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000910 fprintf(stderr, "missing target hash\n");
Tao Bao0940fe12015-08-27 16:41:21 -0700911 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000912 }
Tao Baobaad2d42015-12-06 16:56:27 -0800913 tgthash = params.tokens[params.cpos++];
Sami Tolvanen90221202014-12-09 16:39:47 +0000914 }
915
Tao Baobaad2d42015-12-06 16:56:27 -0800916 if (LoadSrcTgtVersion2(params, tgt, src_blocks, params.buffer, params.fd, params.stashbase,
917 &overlap) == -1) {
Tao Bao0940fe12015-08-27 16:41:21 -0700918 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000919 }
920
Tao Bao34847b22015-09-08 11:05:49 -0700921 std::vector<uint8_t> tgtbuffer(tgt.size * BLOCKSIZE);
Sami Tolvanen90221202014-12-09 16:39:47 +0000922
Tao Bao612336d2015-08-27 16:41:21 -0700923 if (ReadBlocks(tgt, tgtbuffer, params.fd) == -1) {
Tao Bao0940fe12015-08-27 16:41:21 -0700924 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000925 }
926
Tao Bao612336d2015-08-27 16:41:21 -0700927 if (VerifyBlocks(tgthash, tgtbuffer, tgt.size, false) == 0) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000928 // Target blocks already have expected content, command should be skipped
Tao Bao0940fe12015-08-27 16:41:21 -0700929 return 1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000930 }
931
Tao Bao0940fe12015-08-27 16:41:21 -0700932 if (VerifyBlocks(srchash, params.buffer, src_blocks, true) == 0) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000933 // If source and target blocks overlap, stash the source blocks so we can
934 // resume from possible write errors
Tao Bao0940fe12015-08-27 16:41:21 -0700935 if (overlap) {
Tao Baobaad2d42015-12-06 16:56:27 -0800936 fprintf(stderr, "stashing %zu overlapping blocks to %s\n", src_blocks,
937 srchash.c_str());
Sami Tolvanen90221202014-12-09 16:39:47 +0000938
Tao Bao0940fe12015-08-27 16:41:21 -0700939 bool stash_exists = false;
Tao Bao612336d2015-08-27 16:41:21 -0700940 if (WriteStash(params.stashbase, srchash, src_blocks, params.buffer, true,
Tao Bao0940fe12015-08-27 16:41:21 -0700941 &stash_exists) != 0) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000942 fprintf(stderr, "failed to stash overlapping source blocks\n");
Tao Bao0940fe12015-08-27 16:41:21 -0700943 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000944 }
945
946 // Can be deleted when the write has completed
Sami Tolvanen43b748f2015-04-17 12:50:31 +0100947 if (!stash_exists) {
Tao Bao0940fe12015-08-27 16:41:21 -0700948 params.freestash = srchash;
Sami Tolvanen43b748f2015-04-17 12:50:31 +0100949 }
Sami Tolvanen90221202014-12-09 16:39:47 +0000950 }
951
952 // Source blocks have expected content, command can proceed
Tao Bao0940fe12015-08-27 16:41:21 -0700953 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +0000954 }
955
Tao Bao612336d2015-08-27 16:41:21 -0700956 if (overlap && LoadStash(params.stashbase, srchash, true, nullptr, params.buffer, true) == 0) {
Sami Tolvanen43b748f2015-04-17 12:50:31 +0100957 // Overlapping source blocks were previously stashed, command can proceed.
958 // We are recovering from an interrupted command, so we don't know if the
959 // stash can safely be deleted after this command.
Tao Bao0940fe12015-08-27 16:41:21 -0700960 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +0000961 }
962
963 // Valid source data not available, update cannot be resumed
964 fprintf(stderr, "partition has unexpected contents\n");
Tao Bao0940fe12015-08-27 16:41:21 -0700965 params.isunresumable = true;
Sami Tolvanen90221202014-12-09 16:39:47 +0000966
Tao Bao0940fe12015-08-27 16:41:21 -0700967 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000968}
969
Tao Bao0940fe12015-08-27 16:41:21 -0700970static int PerformCommandMove(CommandParameters& params) {
971 size_t blocks = 0;
Tao Baoe6aa3322015-08-05 15:20:27 -0700972 bool overlap = false;
Sami Tolvanen90221202014-12-09 16:39:47 +0000973 int status = 0;
Tao Bao0940fe12015-08-27 16:41:21 -0700974 RangeSet tgt;
Sami Tolvanen90221202014-12-09 16:39:47 +0000975
Tao Bao0940fe12015-08-27 16:41:21 -0700976 if (params.version == 1) {
Tao Baobaad2d42015-12-06 16:56:27 -0800977 status = LoadSrcTgtVersion1(params, tgt, blocks, params.buffer, params.fd);
Tao Bao0940fe12015-08-27 16:41:21 -0700978 } else if (params.version == 2) {
Tao Baobaad2d42015-12-06 16:56:27 -0800979 status = LoadSrcTgtVersion2(params, tgt, blocks, params.buffer, params.fd,
Tao Bao612336d2015-08-27 16:41:21 -0700980 params.stashbase, nullptr);
Tao Bao0940fe12015-08-27 16:41:21 -0700981 } else if (params.version >= 3) {
Tao Bao34847b22015-09-08 11:05:49 -0700982 status = LoadSrcTgtVersion3(params, tgt, blocks, true, overlap);
Sami Tolvanen90221202014-12-09 16:39:47 +0000983 }
984
985 if (status == -1) {
986 fprintf(stderr, "failed to read blocks for move\n");
Tao Bao0940fe12015-08-27 16:41:21 -0700987 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +0000988 }
989
990 if (status == 0) {
Tao Bao0940fe12015-08-27 16:41:21 -0700991 params.foundwrites = true;
992 } else if (params.foundwrites) {
993 fprintf(stderr, "warning: commands executed out of order [%s]\n", params.cmdname);
Sami Tolvanen90221202014-12-09 16:39:47 +0000994 }
995
Tao Bao0940fe12015-08-27 16:41:21 -0700996 if (params.canwrite) {
Sami Tolvanen90221202014-12-09 16:39:47 +0000997 if (status == 0) {
Tao Bao0940fe12015-08-27 16:41:21 -0700998 fprintf(stderr, " moving %zu blocks\n", blocks);
Sami Tolvanen90221202014-12-09 16:39:47 +0000999
Tao Bao0940fe12015-08-27 16:41:21 -07001000 if (WriteBlocks(tgt, params.buffer, params.fd) == -1) {
1001 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001002 }
1003 } else {
Tao Bao0940fe12015-08-27 16:41:21 -07001004 fprintf(stderr, "skipping %zu already moved blocks\n", blocks);
Sami Tolvanen90221202014-12-09 16:39:47 +00001005 }
1006
1007 }
1008
Tao Baobaad2d42015-12-06 16:56:27 -08001009 if (!params.freestash.empty()) {
Tao Bao0940fe12015-08-27 16:41:21 -07001010 FreeStash(params.stashbase, params.freestash);
Tao Baobaad2d42015-12-06 16:56:27 -08001011 params.freestash.clear();
Sami Tolvanen90221202014-12-09 16:39:47 +00001012 }
1013
Tao Bao0940fe12015-08-27 16:41:21 -07001014 params.written += tgt.size;
Sami Tolvanen90221202014-12-09 16:39:47 +00001015
Tao Bao0940fe12015-08-27 16:41:21 -07001016 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +00001017}
1018
Tao Bao0940fe12015-08-27 16:41:21 -07001019static int PerformCommandStash(CommandParameters& params) {
Tao Baobaad2d42015-12-06 16:56:27 -08001020 return SaveStash(params, params.stashbase, params.buffer, params.fd,
Tao Bao612336d2015-08-27 16:41:21 -07001021 (params.version >= 3));
Sami Tolvanen90221202014-12-09 16:39:47 +00001022}
1023
Tao Bao0940fe12015-08-27 16:41:21 -07001024static int PerformCommandFree(CommandParameters& params) {
Tao Baobaad2d42015-12-06 16:56:27 -08001025 // <stash_id>
1026 if (params.cpos >= params.tokens.size()) {
1027 fprintf(stderr, "missing stash id in free command\n");
1028 return -1;
1029 }
1030
Tao Bao0940fe12015-08-27 16:41:21 -07001031 if (params.createdstash || params.canwrite) {
Tao Baobaad2d42015-12-06 16:56:27 -08001032 return FreeStash(params.stashbase, params.tokens[params.cpos++]);
Sami Tolvanen90221202014-12-09 16:39:47 +00001033 }
1034
1035 return 0;
1036}
1037
Tao Bao0940fe12015-08-27 16:41:21 -07001038static int PerformCommandZero(CommandParameters& params) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001039
Tao Baobaad2d42015-12-06 16:56:27 -08001040 if (params.cpos >= params.tokens.size()) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001041 fprintf(stderr, "missing target blocks for zero\n");
Tao Bao0940fe12015-08-27 16:41:21 -07001042 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001043 }
1044
Tao Bao0940fe12015-08-27 16:41:21 -07001045 RangeSet tgt;
Tao Baobaad2d42015-12-06 16:56:27 -08001046 parse_range(params.tokens[params.cpos++], tgt);
Sami Tolvanen90221202014-12-09 16:39:47 +00001047
Tao Bao0940fe12015-08-27 16:41:21 -07001048 fprintf(stderr, " zeroing %zu blocks\n", tgt.size);
Sami Tolvanen90221202014-12-09 16:39:47 +00001049
Tao Bao612336d2015-08-27 16:41:21 -07001050 allocate(BLOCKSIZE, params.buffer);
1051 memset(params.buffer.data(), 0, BLOCKSIZE);
Sami Tolvanen90221202014-12-09 16:39:47 +00001052
Tao Bao0940fe12015-08-27 16:41:21 -07001053 if (params.canwrite) {
1054 for (size_t i = 0; i < tgt.count; ++i) {
1055 if (!check_lseek(params.fd, (off64_t) tgt.pos[i * 2] * BLOCKSIZE, SEEK_SET)) {
1056 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001057 }
1058
Tao Bao0940fe12015-08-27 16:41:21 -07001059 for (size_t j = tgt.pos[i * 2]; j < tgt.pos[i * 2 + 1]; ++j) {
1060 if (write_all(params.fd, params.buffer, BLOCKSIZE) == -1) {
1061 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001062 }
1063 }
1064 }
1065 }
1066
Tao Bao0940fe12015-08-27 16:41:21 -07001067 if (params.cmdname[0] == 'z') {
Sami Tolvanene82fa182015-06-10 15:58:12 +00001068 // Update only for the zero command, as the erase command will call
1069 // this if DEBUG_ERASE is defined.
Tao Bao0940fe12015-08-27 16:41:21 -07001070 params.written += tgt.size;
Sami Tolvanen90221202014-12-09 16:39:47 +00001071 }
1072
Tao Bao0940fe12015-08-27 16:41:21 -07001073 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +00001074}
1075
Tao Bao0940fe12015-08-27 16:41:21 -07001076static int PerformCommandNew(CommandParameters& params) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001077
Tao Baobaad2d42015-12-06 16:56:27 -08001078 if (params.cpos >= params.tokens.size()) {
1079 fprintf(stderr, "missing target blocks for new\n");
Tao Bao0940fe12015-08-27 16:41:21 -07001080 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001081 }
1082
Tao Bao0940fe12015-08-27 16:41:21 -07001083 RangeSet tgt;
Tao Baobaad2d42015-12-06 16:56:27 -08001084 parse_range(params.tokens[params.cpos++], tgt);
Sami Tolvanen90221202014-12-09 16:39:47 +00001085
Tao Bao0940fe12015-08-27 16:41:21 -07001086 if (params.canwrite) {
1087 fprintf(stderr, " writing %zu blocks of new data\n", tgt.size);
Sami Tolvanen90221202014-12-09 16:39:47 +00001088
Tao Bao0940fe12015-08-27 16:41:21 -07001089 RangeSinkState rss(tgt);
1090 rss.fd = params.fd;
Sami Tolvanen90221202014-12-09 16:39:47 +00001091 rss.p_block = 0;
Tao Bao0940fe12015-08-27 16:41:21 -07001092 rss.p_remain = (tgt.pos[1] - tgt.pos[0]) * BLOCKSIZE;
Sami Tolvanen90221202014-12-09 16:39:47 +00001093
Tao Bao0940fe12015-08-27 16:41:21 -07001094 if (!check_lseek(params.fd, (off64_t) tgt.pos[0] * BLOCKSIZE, SEEK_SET)) {
1095 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001096 }
1097
Tao Bao0940fe12015-08-27 16:41:21 -07001098 pthread_mutex_lock(&params.nti.mu);
1099 params.nti.rss = &rss;
1100 pthread_cond_broadcast(&params.nti.cv);
Sami Tolvanen90221202014-12-09 16:39:47 +00001101
Tao Bao0940fe12015-08-27 16:41:21 -07001102 while (params.nti.rss) {
1103 pthread_cond_wait(&params.nti.cv, &params.nti.mu);
Sami Tolvanen90221202014-12-09 16:39:47 +00001104 }
1105
Tao Bao0940fe12015-08-27 16:41:21 -07001106 pthread_mutex_unlock(&params.nti.mu);
Sami Tolvanen90221202014-12-09 16:39:47 +00001107 }
1108
Tao Bao0940fe12015-08-27 16:41:21 -07001109 params.written += tgt.size;
Sami Tolvanen90221202014-12-09 16:39:47 +00001110
Tao Bao0940fe12015-08-27 16:41:21 -07001111 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +00001112}
1113
Tao Bao0940fe12015-08-27 16:41:21 -07001114static int PerformCommandDiff(CommandParameters& params) {
Tao Bao0940fe12015-08-27 16:41:21 -07001115
Tao Baobaad2d42015-12-06 16:56:27 -08001116 // <offset> <length>
1117 if (params.cpos + 1 >= params.tokens.size()) {
1118 fprintf(stderr, "missing patch offset or length for %s\n", params.cmdname);
Tao Bao0940fe12015-08-27 16:41:21 -07001119 return -1;
1120 }
1121
Tao Baobaad2d42015-12-06 16:56:27 -08001122 size_t offset;
1123 if (!android::base::ParseUint(params.tokens[params.cpos++].c_str(), &offset)) {
1124 fprintf(stderr, "invalid patch offset\n");
Tao Bao0940fe12015-08-27 16:41:21 -07001125 return -1;
1126 }
1127
Tao Baobaad2d42015-12-06 16:56:27 -08001128 size_t len;
1129 if (!android::base::ParseUint(params.tokens[params.cpos++].c_str(), &len)) {
1130 fprintf(stderr, "invalid patch offset\n");
1131 return -1;
1132 }
Tao Bao0940fe12015-08-27 16:41:21 -07001133
Tao Bao612336d2015-08-27 16:41:21 -07001134 RangeSet tgt;
Tao Bao0940fe12015-08-27 16:41:21 -07001135 size_t blocks = 0;
Tao Bao612336d2015-08-27 16:41:21 -07001136 bool overlap = false;
Sami Tolvanen90221202014-12-09 16:39:47 +00001137 int status = 0;
Tao Bao0940fe12015-08-27 16:41:21 -07001138 if (params.version == 1) {
Tao Baobaad2d42015-12-06 16:56:27 -08001139 status = LoadSrcTgtVersion1(params, tgt, blocks, params.buffer, params.fd);
Tao Bao0940fe12015-08-27 16:41:21 -07001140 } else if (params.version == 2) {
Tao Baobaad2d42015-12-06 16:56:27 -08001141 status = LoadSrcTgtVersion2(params, tgt, blocks, params.buffer, params.fd,
Tao Bao612336d2015-08-27 16:41:21 -07001142 params.stashbase, nullptr);
Tao Bao0940fe12015-08-27 16:41:21 -07001143 } else if (params.version >= 3) {
Tao Bao34847b22015-09-08 11:05:49 -07001144 status = LoadSrcTgtVersion3(params, tgt, blocks, false, overlap);
Sami Tolvanen90221202014-12-09 16:39:47 +00001145 }
1146
1147 if (status == -1) {
1148 fprintf(stderr, "failed to read blocks for diff\n");
Tao Bao0940fe12015-08-27 16:41:21 -07001149 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001150 }
1151
1152 if (status == 0) {
Tao Bao0940fe12015-08-27 16:41:21 -07001153 params.foundwrites = true;
1154 } else if (params.foundwrites) {
1155 fprintf(stderr, "warning: commands executed out of order [%s]\n", params.cmdname);
Sami Tolvanen90221202014-12-09 16:39:47 +00001156 }
1157
Tao Bao0940fe12015-08-27 16:41:21 -07001158 if (params.canwrite) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001159 if (status == 0) {
Tao Bao0940fe12015-08-27 16:41:21 -07001160 fprintf(stderr, "patching %zu blocks to %zu\n", blocks, tgt.size);
Sami Tolvanen90221202014-12-09 16:39:47 +00001161
Tao Bao0940fe12015-08-27 16:41:21 -07001162 Value patch_value;
Sami Tolvanen90221202014-12-09 16:39:47 +00001163 patch_value.type = VAL_BLOB;
1164 patch_value.size = len;
Tao Bao0940fe12015-08-27 16:41:21 -07001165 patch_value.data = (char*) (params.patch_start + offset);
Sami Tolvanen90221202014-12-09 16:39:47 +00001166
Tao Bao0940fe12015-08-27 16:41:21 -07001167 RangeSinkState rss(tgt);
1168 rss.fd = params.fd;
Sami Tolvanen90221202014-12-09 16:39:47 +00001169 rss.p_block = 0;
Tao Bao0940fe12015-08-27 16:41:21 -07001170 rss.p_remain = (tgt.pos[1] - tgt.pos[0]) * BLOCKSIZE;
Sami Tolvanen90221202014-12-09 16:39:47 +00001171
Tao Bao0940fe12015-08-27 16:41:21 -07001172 if (!check_lseek(params.fd, (off64_t) tgt.pos[0] * BLOCKSIZE, SEEK_SET)) {
1173 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001174 }
1175
Tao Bao0940fe12015-08-27 16:41:21 -07001176 if (params.cmdname[0] == 'i') { // imgdiff
Tao Bao612336d2015-08-27 16:41:21 -07001177 ApplyImagePatch(params.buffer.data(), blocks * BLOCKSIZE, &patch_value,
Tao Bao0940fe12015-08-27 16:41:21 -07001178 &RangeSinkWrite, &rss, nullptr, nullptr);
Sami Tolvanen90221202014-12-09 16:39:47 +00001179 } else {
Tao Bao612336d2015-08-27 16:41:21 -07001180 ApplyBSDiffPatch(params.buffer.data(), blocks * BLOCKSIZE, &patch_value, 0,
1181 &RangeSinkWrite, &rss, nullptr);
Sami Tolvanen90221202014-12-09 16:39:47 +00001182 }
1183
1184 // We expect the output of the patcher to fill the tgt ranges exactly.
Tao Bao0940fe12015-08-27 16:41:21 -07001185 if (rss.p_block != tgt.count || rss.p_remain != 0) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001186 fprintf(stderr, "range sink underrun?\n");
1187 }
1188 } else {
Tao Bao0940fe12015-08-27 16:41:21 -07001189 fprintf(stderr, "skipping %zu blocks already patched to %zu [%s]\n",
Tao Baobaad2d42015-12-06 16:56:27 -08001190 blocks, tgt.size, params.cmdline);
Sami Tolvanen90221202014-12-09 16:39:47 +00001191 }
1192 }
1193
Tao Baobaad2d42015-12-06 16:56:27 -08001194 if (!params.freestash.empty()) {
Tao Bao0940fe12015-08-27 16:41:21 -07001195 FreeStash(params.stashbase, params.freestash);
Tao Baobaad2d42015-12-06 16:56:27 -08001196 params.freestash.clear();
Sami Tolvanen90221202014-12-09 16:39:47 +00001197 }
1198
Tao Bao0940fe12015-08-27 16:41:21 -07001199 params.written += tgt.size;
Sami Tolvanen90221202014-12-09 16:39:47 +00001200
Tao Bao0940fe12015-08-27 16:41:21 -07001201 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +00001202}
1203
Tao Bao0940fe12015-08-27 16:41:21 -07001204static int PerformCommandErase(CommandParameters& params) {
Sami Tolvanene82fa182015-06-10 15:58:12 +00001205 if (DEBUG_ERASE) {
1206 return PerformCommandZero(params);
Sami Tolvanen90221202014-12-09 16:39:47 +00001207 }
1208
Tao Bao0940fe12015-08-27 16:41:21 -07001209 struct stat sb;
1210 if (fstat(params.fd, &sb) == -1) {
Elliott Hughes1fdd4522015-03-23 13:33:57 -07001211 fprintf(stderr, "failed to fstat device to erase: %s\n", strerror(errno));
Tao Bao0940fe12015-08-27 16:41:21 -07001212 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001213 }
1214
Tao Bao0940fe12015-08-27 16:41:21 -07001215 if (!S_ISBLK(sb.st_mode)) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001216 fprintf(stderr, "not a block device; skipping erase\n");
Tao Bao0940fe12015-08-27 16:41:21 -07001217 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001218 }
1219
Tao Baobaad2d42015-12-06 16:56:27 -08001220 if (params.cpos >= params.tokens.size()) {
Tao Baoba9a42a2015-06-23 23:23:33 -07001221 fprintf(stderr, "missing target blocks for erase\n");
Tao Bao0940fe12015-08-27 16:41:21 -07001222 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001223 }
1224
Tao Bao0940fe12015-08-27 16:41:21 -07001225 RangeSet tgt;
Tao Baobaad2d42015-12-06 16:56:27 -08001226 parse_range(params.tokens[params.cpos++], tgt);
Sami Tolvanen90221202014-12-09 16:39:47 +00001227
Tao Bao0940fe12015-08-27 16:41:21 -07001228 if (params.canwrite) {
1229 fprintf(stderr, " erasing %zu blocks\n", tgt.size);
Sami Tolvanen90221202014-12-09 16:39:47 +00001230
Tao Bao0940fe12015-08-27 16:41:21 -07001231 for (size_t i = 0; i < tgt.count; ++i) {
1232 uint64_t blocks[2];
Sami Tolvanen90221202014-12-09 16:39:47 +00001233 // offset in bytes
Tao Bao0940fe12015-08-27 16:41:21 -07001234 blocks[0] = tgt.pos[i * 2] * (uint64_t) BLOCKSIZE;
Sami Tolvanen90221202014-12-09 16:39:47 +00001235 // length in bytes
Tao Bao0940fe12015-08-27 16:41:21 -07001236 blocks[1] = (tgt.pos[i * 2 + 1] - tgt.pos[i * 2]) * (uint64_t) BLOCKSIZE;
Sami Tolvanen90221202014-12-09 16:39:47 +00001237
Tao Bao0940fe12015-08-27 16:41:21 -07001238 if (ioctl(params.fd, BLKDISCARD, &blocks) == -1) {
Elliott Hughes1fdd4522015-03-23 13:33:57 -07001239 fprintf(stderr, "BLKDISCARD ioctl failed: %s\n", strerror(errno));
Tao Bao0940fe12015-08-27 16:41:21 -07001240 return -1;
Sami Tolvanen90221202014-12-09 16:39:47 +00001241 }
1242 }
1243 }
1244
Tao Bao0940fe12015-08-27 16:41:21 -07001245 return 0;
Sami Tolvanen90221202014-12-09 16:39:47 +00001246}
1247
1248// Definitions for transfer list command functions
Tao Bao0940fe12015-08-27 16:41:21 -07001249typedef int (*CommandFunction)(CommandParameters&);
Sami Tolvanen90221202014-12-09 16:39:47 +00001250
Tao Bao612336d2015-08-27 16:41:21 -07001251struct Command {
Sami Tolvanen90221202014-12-09 16:39:47 +00001252 const char* name;
1253 CommandFunction f;
Tao Bao612336d2015-08-27 16:41:21 -07001254};
Sami Tolvanen90221202014-12-09 16:39:47 +00001255
1256// CompareCommands and CompareCommandNames are for the hash table
1257
1258static int CompareCommands(const void* c1, const void* c2) {
1259 return strcmp(((const Command*) c1)->name, ((const Command*) c2)->name);
1260}
1261
1262static int CompareCommandNames(const void* c1, const void* c2) {
1263 return strcmp(((const Command*) c1)->name, (const char*) c2);
1264}
1265
1266// HashString is used to hash command names for the hash table
1267
1268static unsigned int HashString(const char *s) {
1269 unsigned int hash = 0;
1270 if (s) {
1271 while (*s) {
1272 hash = hash * 33 + *s++;
1273 }
1274 }
1275 return hash;
Doug Zongker52ae67d2014-09-08 12:22:09 -07001276}
1277
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001278// args:
1279// - block device (or file) to modify in-place
1280// - transfer list (blob)
1281// - new data stream (filename within package.zip)
1282// - patch stream (filename within package.zip, must be uncompressed)
1283
Tao Bao0940fe12015-08-27 16:41:21 -07001284static Value* PerformBlockImageUpdate(const char* name, State* state, int /* argc */, Expr* argv[],
1285 const Command* commands, size_t cmdcount, bool dryrun) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001286 CommandParameters params;
Sami Tolvanen90221202014-12-09 16:39:47 +00001287 memset(&params, 0, sizeof(params));
1288 params.canwrite = !dryrun;
1289
1290 fprintf(stderr, "performing %s\n", dryrun ? "verification" : "update");
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001291
Tao Bao612336d2015-08-27 16:41:21 -07001292 Value* blockdev_filename = nullptr;
1293 Value* transfer_list_value = nullptr;
1294 Value* new_data_fn = nullptr;
1295 Value* patch_data_fn = nullptr;
Doug Zongker1d5d6092014-08-21 10:47:24 -07001296 if (ReadValueArgs(state, argv, 4, &blockdev_filename, &transfer_list_value,
Sami Tolvanen90221202014-12-09 16:39:47 +00001297 &new_data_fn, &patch_data_fn) < 0) {
Tao Bao612336d2015-08-27 16:41:21 -07001298 return StringValue(strdup(""));
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001299 }
Tao Bao612336d2015-08-27 16:41:21 -07001300 std::unique_ptr<Value, decltype(&FreeValue)> blockdev_filename_holder(blockdev_filename,
1301 FreeValue);
1302 std::unique_ptr<Value, decltype(&FreeValue)> transfer_list_value_holder(transfer_list_value,
1303 FreeValue);
1304 std::unique_ptr<Value, decltype(&FreeValue)> new_data_fn_holder(new_data_fn, FreeValue);
1305 std::unique_ptr<Value, decltype(&FreeValue)> patch_data_fn_holder(patch_data_fn, FreeValue);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001306
1307 if (blockdev_filename->type != VAL_STRING) {
1308 ErrorAbort(state, "blockdev_filename argument to %s must be string", name);
Tao Bao612336d2015-08-27 16:41:21 -07001309 return StringValue(strdup(""));
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001310 }
Doug Zongker1d5d6092014-08-21 10:47:24 -07001311 if (transfer_list_value->type != VAL_BLOB) {
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001312 ErrorAbort(state, "transfer_list argument to %s must be blob", name);
Tao Bao612336d2015-08-27 16:41:21 -07001313 return StringValue(strdup(""));
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001314 }
1315 if (new_data_fn->type != VAL_STRING) {
1316 ErrorAbort(state, "new_data_fn argument to %s must be string", name);
Tao Bao612336d2015-08-27 16:41:21 -07001317 return StringValue(strdup(""));
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001318 }
1319 if (patch_data_fn->type != VAL_STRING) {
1320 ErrorAbort(state, "patch_data_fn argument to %s must be string", name);
Tao Bao612336d2015-08-27 16:41:21 -07001321 return StringValue(strdup(""));
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001322 }
1323
Tao Bao612336d2015-08-27 16:41:21 -07001324 UpdaterInfo* ui = reinterpret_cast<UpdaterInfo*>(state->cookie);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001325
Tao Bao0940fe12015-08-27 16:41:21 -07001326 if (ui == nullptr) {
Tao Bao612336d2015-08-27 16:41:21 -07001327 return StringValue(strdup(""));
Sami Tolvanen90221202014-12-09 16:39:47 +00001328 }
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001329
Tao Bao612336d2015-08-27 16:41:21 -07001330 FILE* cmd_pipe = ui->cmd_pipe;
1331 ZipArchive* za = ui->package_zip;
Sami Tolvanen90221202014-12-09 16:39:47 +00001332
Tao Bao0940fe12015-08-27 16:41:21 -07001333 if (cmd_pipe == nullptr || za == nullptr) {
Tao Bao612336d2015-08-27 16:41:21 -07001334 return StringValue(strdup(""));
Sami Tolvanen90221202014-12-09 16:39:47 +00001335 }
1336
Tao Bao612336d2015-08-27 16:41:21 -07001337 const ZipEntry* patch_entry = mzFindZipEntry(za, patch_data_fn->data);
Tao Bao0940fe12015-08-27 16:41:21 -07001338 if (patch_entry == nullptr) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001339 fprintf(stderr, "%s(): no file \"%s\" in package", name, patch_data_fn->data);
Tao Bao612336d2015-08-27 16:41:21 -07001340 return StringValue(strdup(""));
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001341 }
1342
Sami Tolvanen90221202014-12-09 16:39:47 +00001343 params.patch_start = ui->package_zip_addr + mzGetZipEntryOffset(patch_entry);
Tao Bao612336d2015-08-27 16:41:21 -07001344 const ZipEntry* new_entry = mzFindZipEntry(za, new_data_fn->data);
Tao Bao0940fe12015-08-27 16:41:21 -07001345 if (new_entry == nullptr) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001346 fprintf(stderr, "%s(): no file \"%s\" in package", name, new_data_fn->data);
Tao Bao612336d2015-08-27 16:41:21 -07001347 return StringValue(strdup(""));
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001348 }
1349
Sami Tolvanen90221202014-12-09 16:39:47 +00001350 params.fd = TEMP_FAILURE_RETRY(open(blockdev_filename->data, O_RDWR));
Tao Bao612336d2015-08-27 16:41:21 -07001351 unique_fd fd_holder(params.fd);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001352
Sami Tolvanen90221202014-12-09 16:39:47 +00001353 if (params.fd == -1) {
Elliott Hughes1fdd4522015-03-23 13:33:57 -07001354 fprintf(stderr, "open \"%s\" failed: %s\n", blockdev_filename->data, strerror(errno));
Tao Bao612336d2015-08-27 16:41:21 -07001355 return StringValue(strdup(""));
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001356 }
1357
Sami Tolvanen90221202014-12-09 16:39:47 +00001358 if (params.canwrite) {
1359 params.nti.za = za;
1360 params.nti.entry = new_entry;
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001361
Tao Bao0940fe12015-08-27 16:41:21 -07001362 pthread_mutex_init(&params.nti.mu, nullptr);
1363 pthread_cond_init(&params.nti.cv, nullptr);
Tao Bao612336d2015-08-27 16:41:21 -07001364 pthread_attr_t attr;
Sami Tolvanen90221202014-12-09 16:39:47 +00001365 pthread_attr_init(&attr);
1366 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
1367
Elliott Hughes1fdd4522015-03-23 13:33:57 -07001368 int error = pthread_create(&params.thread, &attr, unzip_new_data, &params.nti);
1369 if (error != 0) {
1370 fprintf(stderr, "pthread_create failed: %s\n", strerror(error));
Tao Bao612336d2015-08-27 16:41:21 -07001371 return StringValue(strdup(""));
Sami Tolvanen90221202014-12-09 16:39:47 +00001372 }
1373 }
1374
Tao Baobaad2d42015-12-06 16:56:27 -08001375 // Copy all the lines in transfer_list_value into std::string for
1376 // processing.
Tao Bao612336d2015-08-27 16:41:21 -07001377 const std::string transfer_list(transfer_list_value->data, transfer_list_value->size);
1378 std::vector<std::string> lines = android::base::Split(transfer_list, "\n");
Tao Baobaad2d42015-12-06 16:56:27 -08001379 if (lines.size() < 2) {
1380 ErrorAbort(state, "too few lines in the transfer list [%zd]\n", lines.size());
1381 return StringValue(strdup(""));
1382 }
Doug Zongker1d5d6092014-08-21 10:47:24 -07001383
Sami Tolvanen90221202014-12-09 16:39:47 +00001384 // First line in transfer list is the version number
Tao Bao1fdec862015-10-21 14:57:44 -07001385 if (!android::base::ParseInt(lines[0].c_str(), &params.version, 1, 4)) {
Tao Bao612336d2015-08-27 16:41:21 -07001386 fprintf(stderr, "unexpected transfer list version [%s]\n", lines[0].c_str());
1387 return StringValue(strdup(""));
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001388 }
1389
Sami Tolvanen90221202014-12-09 16:39:47 +00001390 fprintf(stderr, "blockimg version is %d\n", params.version);
1391
1392 // Second line in transfer list is the total number of blocks we expect to write
Tao Baob15fd222015-09-24 11:10:51 -07001393 int total_blocks;
1394 if (!android::base::ParseInt(lines[1].c_str(), &total_blocks, 0)) {
Tao Bao612336d2015-08-27 16:41:21 -07001395 ErrorAbort(state, "unexpected block count [%s]\n", lines[1].c_str());
1396 return StringValue(strdup(""));
Tao Baob15fd222015-09-24 11:10:51 -07001397 }
1398
1399 if (total_blocks == 0) {
Tao Bao612336d2015-08-27 16:41:21 -07001400 return StringValue(strdup("t"));
Sami Tolvanen90221202014-12-09 16:39:47 +00001401 }
1402
Tao Bao612336d2015-08-27 16:41:21 -07001403 size_t start = 2;
Sami Tolvanen90221202014-12-09 16:39:47 +00001404 if (params.version >= 2) {
Tao Baobaad2d42015-12-06 16:56:27 -08001405 if (lines.size() < 4) {
1406 ErrorAbort(state, "too few lines in the transfer list [%zu]\n", lines.size());
1407 return StringValue(strdup(""));
1408 }
1409
Sami Tolvanen90221202014-12-09 16:39:47 +00001410 // Third line is how many stash entries are needed simultaneously
Tao Bao612336d2015-08-27 16:41:21 -07001411 fprintf(stderr, "maximum stash entries %s\n", lines[2].c_str());
Doug Zongker52ae67d2014-09-08 12:22:09 -07001412
Sami Tolvanen90221202014-12-09 16:39:47 +00001413 // Fourth line is the maximum number of blocks that will be stashed simultaneously
Tao Baob15fd222015-09-24 11:10:51 -07001414 int stash_max_blocks;
1415 if (!android::base::ParseInt(lines[3].c_str(), &stash_max_blocks, 0)) {
Tao Bao612336d2015-08-27 16:41:21 -07001416 ErrorAbort(state, "unexpected maximum stash blocks [%s]\n", lines[3].c_str());
1417 return StringValue(strdup(""));
Doug Zongker52ae67d2014-09-08 12:22:09 -07001418 }
1419
Tao Baob15fd222015-09-24 11:10:51 -07001420 int res = CreateStash(state, stash_max_blocks, blockdev_filename->data, params.stashbase);
Tao Baob15fd222015-09-24 11:10:51 -07001421 if (res == -1) {
1422 return StringValue(strdup(""));
Sami Tolvanen90221202014-12-09 16:39:47 +00001423 }
Tao Bao612336d2015-08-27 16:41:21 -07001424
Tao Baob15fd222015-09-24 11:10:51 -07001425 params.createdstash = res;
1426
Tao Bao612336d2015-08-27 16:41:21 -07001427 start += 2;
Doug Zongker52ae67d2014-09-08 12:22:09 -07001428 }
1429
Sami Tolvanen90221202014-12-09 16:39:47 +00001430 // Build a hash table of the available commands
Tao Bao612336d2015-08-27 16:41:21 -07001431 HashTable* cmdht = mzHashTableCreate(cmdcount, nullptr);
1432 std::unique_ptr<HashTable, decltype(&mzHashTableFree)> cmdht_holder(cmdht, mzHashTableFree);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001433
Tao Bao0940fe12015-08-27 16:41:21 -07001434 for (size_t i = 0; i < cmdcount; ++i) {
1435 unsigned int cmdhash = HashString(commands[i].name);
Sami Tolvanen90221202014-12-09 16:39:47 +00001436 mzHashTableLookup(cmdht, cmdhash, (void*) &commands[i], CompareCommands, true);
1437 }
1438
Tao Bao612336d2015-08-27 16:41:21 -07001439 int rc = -1;
Doug Zongker52ae67d2014-09-08 12:22:09 -07001440
Tao Bao612336d2015-08-27 16:41:21 -07001441 // Subsequent lines are all individual transfer commands
1442 for (auto it = lines.cbegin() + start; it != lines.cend(); it++) {
1443 const std::string& line_str(*it);
Tao Bao6a47dff2015-09-25 17:12:28 -07001444 if (line_str.empty()) {
1445 continue;
1446 }
1447
Tao Baobaad2d42015-12-06 16:56:27 -08001448 params.tokens = android::base::Split(line_str, " ");
1449 params.cpos = 0;
1450 params.cmdname = params.tokens[params.cpos++].c_str();
1451 params.cmdline = line_str.c_str();
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001452
Tao Bao0940fe12015-08-27 16:41:21 -07001453 unsigned int cmdhash = HashString(params.cmdname);
Tao Bao612336d2015-08-27 16:41:21 -07001454 const Command* cmd = reinterpret_cast<const Command*>(mzHashTableLookup(cmdht, cmdhash,
Tao Baobaad2d42015-12-06 16:56:27 -08001455 const_cast<char*>(params.cmdname), CompareCommandNames,
1456 false));
Doug Zongker52ae67d2014-09-08 12:22:09 -07001457
Tao Bao0940fe12015-08-27 16:41:21 -07001458 if (cmd == nullptr) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001459 fprintf(stderr, "unexpected command [%s]\n", params.cmdname);
1460 goto pbiudone;
1461 }
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001462
Tao Bao0940fe12015-08-27 16:41:21 -07001463 if (cmd->f != nullptr && cmd->f(params) == -1) {
Tao Bao612336d2015-08-27 16:41:21 -07001464 fprintf(stderr, "failed to execute command [%s]\n", line_str.c_str());
Sami Tolvanen90221202014-12-09 16:39:47 +00001465 goto pbiudone;
1466 }
1467
Sami Tolvanen90221202014-12-09 16:39:47 +00001468 if (params.canwrite) {
Tao Bao187efff2015-07-27 14:07:08 -07001469 if (fsync(params.fd) == -1) {
1470 fprintf(stderr, "fsync failed: %s\n", strerror(errno));
1471 goto pbiudone;
1472 }
Sami Tolvanen90221202014-12-09 16:39:47 +00001473 fprintf(cmd_pipe, "set_progress %.4f\n", (double) params.written / total_blocks);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001474 fflush(cmd_pipe);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001475 }
1476 }
1477
Sami Tolvanen90221202014-12-09 16:39:47 +00001478 if (params.canwrite) {
Tao Bao0940fe12015-08-27 16:41:21 -07001479 pthread_join(params.thread, nullptr);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001480
Tao Bao0940fe12015-08-27 16:41:21 -07001481 fprintf(stderr, "wrote %zu blocks; expected %d\n", params.written, total_blocks);
Tao Bao612336d2015-08-27 16:41:21 -07001482 fprintf(stderr, "max alloc needed was %zu\n", params.buffer.size());
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001483
Sami Tolvanen90221202014-12-09 16:39:47 +00001484 // Delete stash only after successfully completing the update, as it
1485 // may contain blocks needed to complete the update later.
1486 DeleteStash(params.stashbase);
1487 } else {
1488 fprintf(stderr, "verified partition contents; update may be resumed\n");
1489 }
1490
1491 rc = 0;
1492
1493pbiudone:
Tao Baobaad2d42015-12-06 16:56:27 -08001494 if (fsync(params.fd) == -1) {
1495 fprintf(stderr, "fsync failed: %s\n", strerror(errno));
Sami Tolvanen90221202014-12-09 16:39:47 +00001496 }
Tao Baobaad2d42015-12-06 16:56:27 -08001497 // params.fd will be automatically closed because of the fd_holder above.
Sami Tolvanen90221202014-12-09 16:39:47 +00001498
Sami Tolvanen90221202014-12-09 16:39:47 +00001499 // Only delete the stash if the update cannot be resumed, or it's
1500 // a verification run and we created the stash.
1501 if (params.isunresumable || (!params.canwrite && params.createdstash)) {
1502 DeleteStash(params.stashbase);
1503 }
1504
Sami Tolvanen90221202014-12-09 16:39:47 +00001505 return StringValue(rc == 0 ? strdup("t") : strdup(""));
1506}
1507
1508// The transfer list is a text file containing commands to
1509// transfer data from one place to another on the target
1510// partition. We parse it and execute the commands in order:
1511//
1512// zero [rangeset]
1513// - fill the indicated blocks with zeros
1514//
1515// new [rangeset]
1516// - fill the blocks with data read from the new_data file
1517//
1518// erase [rangeset]
1519// - mark the given blocks as empty
1520//
1521// move <...>
1522// bsdiff <patchstart> <patchlen> <...>
1523// imgdiff <patchstart> <patchlen> <...>
1524// - read the source blocks, apply a patch (or not in the
1525// case of move), write result to target blocks. bsdiff or
1526// imgdiff specifies the type of patch; move means no patch
1527// at all.
1528//
1529// The format of <...> differs between versions 1 and 2;
1530// see the LoadSrcTgtVersion{1,2}() functions for a
1531// description of what's expected.
1532//
1533// stash <stash_id> <src_range>
1534// - (version 2+ only) load the given source range and stash
1535// the data in the given slot of the stash table.
1536//
Tao Baobaad2d42015-12-06 16:56:27 -08001537// free <stash_id>
1538// - (version 3+ only) free the given stash data.
1539//
Sami Tolvanen90221202014-12-09 16:39:47 +00001540// The creator of the transfer list will guarantee that no block
1541// is read (ie, used as the source for a patch or move) after it
1542// has been written.
1543//
1544// In version 2, the creator will guarantee that a given stash is
1545// loaded (with a stash command) before it's used in a
1546// move/bsdiff/imgdiff command.
1547//
1548// Within one command the source and target ranges may overlap so
1549// in general we need to read the entire source into memory before
1550// writing anything to the target blocks.
1551//
1552// All the patch data is concatenated into one patch_data file in
1553// the update package. It must be stored uncompressed because we
1554// memory-map it in directly from the archive. (Since patches are
1555// already compressed, we lose very little by not compressing
1556// their concatenation.)
1557//
1558// In version 3, commands that read data from the partition (i.e.
1559// move/bsdiff/imgdiff/stash) have one or more additional hashes
1560// before the range parameters, which are used to check if the
1561// command has already been completed and verify the integrity of
1562// the source data.
1563
1564Value* BlockImageVerifyFn(const char* name, State* state, int argc, Expr* argv[]) {
Tao Bao0940fe12015-08-27 16:41:21 -07001565 // Commands which are not tested are set to nullptr to skip them completely
Sami Tolvanen90221202014-12-09 16:39:47 +00001566 const Command commands[] = {
1567 { "bsdiff", PerformCommandDiff },
Tao Bao0940fe12015-08-27 16:41:21 -07001568 { "erase", nullptr },
Sami Tolvanen90221202014-12-09 16:39:47 +00001569 { "free", PerformCommandFree },
1570 { "imgdiff", PerformCommandDiff },
1571 { "move", PerformCommandMove },
Tao Bao0940fe12015-08-27 16:41:21 -07001572 { "new", nullptr },
Sami Tolvanen90221202014-12-09 16:39:47 +00001573 { "stash", PerformCommandStash },
Tao Bao0940fe12015-08-27 16:41:21 -07001574 { "zero", nullptr }
Sami Tolvanen90221202014-12-09 16:39:47 +00001575 };
1576
1577 // Perform a dry run without writing to test if an update can proceed
1578 return PerformBlockImageUpdate(name, state, argc, argv, commands,
Tao Baoe6aa3322015-08-05 15:20:27 -07001579 sizeof(commands) / sizeof(commands[0]), true);
Sami Tolvanen90221202014-12-09 16:39:47 +00001580}
1581
1582Value* BlockImageUpdateFn(const char* name, State* state, int argc, Expr* argv[]) {
1583 const Command commands[] = {
1584 { "bsdiff", PerformCommandDiff },
1585 { "erase", PerformCommandErase },
1586 { "free", PerformCommandFree },
1587 { "imgdiff", PerformCommandDiff },
1588 { "move", PerformCommandMove },
1589 { "new", PerformCommandNew },
1590 { "stash", PerformCommandStash },
1591 { "zero", PerformCommandZero }
1592 };
1593
1594 return PerformBlockImageUpdate(name, state, argc, argv, commands,
Tao Baoe6aa3322015-08-05 15:20:27 -07001595 sizeof(commands) / sizeof(commands[0]), false);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001596}
1597
Tao Bao0940fe12015-08-27 16:41:21 -07001598Value* RangeSha1Fn(const char* name, State* state, int /* argc */, Expr* argv[]) {
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001599 Value* blockdev_filename;
1600 Value* ranges;
Tao Bao0940fe12015-08-27 16:41:21 -07001601
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001602 if (ReadValueArgs(state, argv, 2, &blockdev_filename, &ranges) < 0) {
Tao Bao612336d2015-08-27 16:41:21 -07001603 return StringValue(strdup(""));
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001604 }
Tao Bao612336d2015-08-27 16:41:21 -07001605 std::unique_ptr<Value, decltype(&FreeValue)> ranges_holder(ranges, FreeValue);
1606 std::unique_ptr<Value, decltype(&FreeValue)> blockdev_filename_holder(blockdev_filename,
1607 FreeValue);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001608
1609 if (blockdev_filename->type != VAL_STRING) {
1610 ErrorAbort(state, "blockdev_filename argument to %s must be string", name);
Tao Bao612336d2015-08-27 16:41:21 -07001611 return StringValue(strdup(""));
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001612 }
1613 if (ranges->type != VAL_STRING) {
1614 ErrorAbort(state, "ranges argument to %s must be string", name);
Tao Bao612336d2015-08-27 16:41:21 -07001615 return StringValue(strdup(""));
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001616 }
1617
Tao Bao612336d2015-08-27 16:41:21 -07001618 int fd = open(blockdev_filename->data, O_RDWR);
1619 unique_fd fd_holder(fd);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001620 if (fd < 0) {
Elliott Hughes1fdd4522015-03-23 13:33:57 -07001621 ErrorAbort(state, "open \"%s\" failed: %s", blockdev_filename->data, strerror(errno));
Tao Bao612336d2015-08-27 16:41:21 -07001622 return StringValue(strdup(""));
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001623 }
1624
Tao Bao612336d2015-08-27 16:41:21 -07001625 RangeSet rs;
Tao Bao0940fe12015-08-27 16:41:21 -07001626 parse_range(ranges->data, rs);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001627
1628 SHA_CTX ctx;
1629 SHA_init(&ctx);
1630
Tao Bao612336d2015-08-27 16:41:21 -07001631 std::vector<uint8_t> buffer(BLOCKSIZE);
Tao Bao0940fe12015-08-27 16:41:21 -07001632 for (size_t i = 0; i < rs.count; ++i) {
1633 if (!check_lseek(fd, (off64_t)rs.pos[i*2] * BLOCKSIZE, SEEK_SET)) {
Tao Bao612336d2015-08-27 16:41:21 -07001634 ErrorAbort(state, "failed to seek %s: %s", blockdev_filename->data, strerror(errno));
1635 return StringValue(strdup(""));
Sami Tolvanen90221202014-12-09 16:39:47 +00001636 }
1637
Tao Bao0940fe12015-08-27 16:41:21 -07001638 for (size_t j = rs.pos[i*2]; j < rs.pos[i*2+1]; ++j) {
Sami Tolvanen90221202014-12-09 16:39:47 +00001639 if (read_all(fd, buffer, BLOCKSIZE) == -1) {
1640 ErrorAbort(state, "failed to read %s: %s", blockdev_filename->data,
Tao Bao0940fe12015-08-27 16:41:21 -07001641 strerror(errno));
Tao Bao612336d2015-08-27 16:41:21 -07001642 return StringValue(strdup(""));
Sami Tolvanen90221202014-12-09 16:39:47 +00001643 }
1644
Tao Bao612336d2015-08-27 16:41:21 -07001645 SHA_update(&ctx, buffer.data(), BLOCKSIZE);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001646 }
1647 }
Tao Bao612336d2015-08-27 16:41:21 -07001648 const uint8_t* digest = SHA_final(&ctx);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001649
Tao Bao612336d2015-08-27 16:41:21 -07001650 return StringValue(strdup(print_sha1(digest).c_str()));
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001651}
1652
Sami Tolvanen0a7b4732015-06-25 10:25:36 +01001653Value* BlockImageRecoverFn(const char* name, State* state, int argc, Expr* argv[]) {
1654 Value* arg_filename;
1655 Value* arg_ranges;
1656
1657 if (ReadValueArgs(state, argv, 2, &arg_filename, &arg_ranges) < 0) {
1658 return NULL;
1659 }
1660
1661 std::unique_ptr<Value, decltype(&FreeValue)> filename(arg_filename, FreeValue);
1662 std::unique_ptr<Value, decltype(&FreeValue)> ranges(arg_ranges, FreeValue);
1663
1664 if (filename->type != VAL_STRING) {
1665 ErrorAbort(state, "filename argument to %s must be string", name);
1666 return StringValue(strdup(""));
1667 }
1668 if (ranges->type != VAL_STRING) {
1669 ErrorAbort(state, "ranges argument to %s must be string", name);
1670 return StringValue(strdup(""));
1671 }
1672
1673 // When opened with O_RDWR, libfec rewrites corrupted blocks when they are read
1674 fec::io fh(filename->data, O_RDWR);
1675
1676 if (!fh) {
1677 ErrorAbort(state, "fec_open \"%s\" failed: %s", filename->data, strerror(errno));
1678 return StringValue(strdup(""));
1679 }
1680
1681 if (!fh.has_ecc() || !fh.has_verity()) {
1682 ErrorAbort(state, "unable to use metadata to correct errors");
1683 return StringValue(strdup(""));
1684 }
1685
1686 fec_status status;
1687
1688 if (!fh.get_status(status)) {
1689 ErrorAbort(state, "failed to read FEC status");
1690 return StringValue(strdup(""));
1691 }
1692
1693 RangeSet rs;
1694 parse_range(ranges->data, rs);
1695
1696 uint8_t buffer[BLOCKSIZE];
1697
1698 for (size_t i = 0; i < rs.count; ++i) {
1699 for (size_t j = rs.pos[i * 2]; j < rs.pos[i * 2 + 1]; ++j) {
1700 // Stay within the data area, libfec validates and corrects metadata
1701 if (status.data_size <= (uint64_t)j * BLOCKSIZE) {
1702 continue;
1703 }
1704
1705 if (fh.pread(buffer, BLOCKSIZE, (off64_t)j * BLOCKSIZE) != BLOCKSIZE) {
Tao Baobaad2d42015-12-06 16:56:27 -08001706 ErrorAbort(state, "failed to recover %s (block %zu): %s", filename->data,
Sami Tolvanen0a7b4732015-06-25 10:25:36 +01001707 j, strerror(errno));
1708 return StringValue(strdup(""));
1709 }
1710
1711 // If we want to be able to recover from a situation where rewriting a corrected
1712 // block doesn't guarantee the same data will be returned when re-read later, we
1713 // can save a copy of corrected blocks to /cache. Note:
1714 //
1715 // 1. Maximum space required from /cache is the same as the maximum number of
1716 // corrupted blocks we can correct. For RS(255, 253) and a 2 GiB partition,
1717 // this would be ~16 MiB, for example.
1718 //
1719 // 2. To find out if this block was corrupted, call fec_get_status after each
1720 // read and check if the errors field value has increased.
1721 }
1722 }
1723
1724 return StringValue(strdup("t"));
1725}
1726
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001727void RegisterBlockImageFunctions() {
Sami Tolvanen90221202014-12-09 16:39:47 +00001728 RegisterFunction("block_image_verify", BlockImageVerifyFn);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001729 RegisterFunction("block_image_update", BlockImageUpdateFn);
Sami Tolvanen0a7b4732015-06-25 10:25:36 +01001730 RegisterFunction("block_image_recover", BlockImageRecoverFn);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07001731 RegisterFunction("range_sha1", RangeSha1Fn);
1732}