blob: 2446b2a687ee0e102c9dff03f850c90e8e50af88 [file] [log] [blame]
Doug Zongker512536a2010-02-17 16:11:44 -08001/*
2 * Copyright (C) 2008 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 <errno.h>
Tao Bao485b6372015-06-23 23:23:33 -070018#include <fcntl.h>
Doug Zongker512536a2010-02-17 16:11:44 -080019#include <libgen.h>
20#include <stdio.h>
21#include <stdlib.h>
22#include <string.h>
23#include <sys/stat.h>
24#include <sys/statfs.h>
25#include <sys/types.h>
Doug Zongker512536a2010-02-17 16:11:44 -080026#include <unistd.h>
27
Tao Bao0a47ce22015-07-17 11:47:44 -070028#include <base/strings.h>
29
Doug Zongker512536a2010-02-17 16:11:44 -080030#include "mincrypt/sha.h"
31#include "applypatch.h"
32#include "mtdutils/mtdutils.h"
Doug Zongkerc4351c72010-02-22 14:46:32 -080033#include "edify/expr.h"
Doug Zongker512536a2010-02-17 16:11:44 -080034
Doug Zongkerf291d852010-07-07 13:55:25 -070035static int LoadPartitionContents(const char* filename, FileContents* file);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070036static ssize_t FileSink(const unsigned char* data, ssize_t len, void* token);
Doug Zongker1c43c972012-02-28 11:07:09 -080037static int GenerateTarget(FileContents* source_file,
38 const Value* source_patch_value,
39 FileContents* copy_file,
40 const Value* copy_patch_value,
41 const char* source_filename,
42 const char* target_filename,
43 const uint8_t target_sha1[SHA_DIGEST_SIZE],
Doug Zongkera3ccba62012-08-20 15:28:02 -070044 size_t target_size,
45 const Value* bonus_data);
Tao Bao68c5a672015-07-17 18:11:12 -070046static std::string short_sha1(const uint8_t sha1[SHA_DIGEST_SIZE]);
Doug Zongker512536a2010-02-17 16:11:44 -080047
Tao Bao0a47ce22015-07-17 11:47:44 -070048static bool mtd_partitions_scanned = false;
Doug Zongker512536a2010-02-17 16:11:44 -080049
Doug Zongkera1bc1482014-02-13 15:18:19 -080050// Read a file into memory; store the file contents and associated
Hristo Bojinovdb314d62010-08-02 10:29:49 -070051// metadata in *file.
52//
53// Return 0 on success.
Doug Zongkera1bc1482014-02-13 15:18:19 -080054int LoadFileContents(const char* filename, FileContents* file) {
Doug Zongker512536a2010-02-17 16:11:44 -080055 file->data = NULL;
Doug Zongker512536a2010-02-17 16:11:44 -080056
Doug Zongkerf291d852010-07-07 13:55:25 -070057 // A special 'filename' beginning with "MTD:" or "EMMC:" means to
58 // load the contents of a partition.
59 if (strncmp(filename, "MTD:", 4) == 0 ||
60 strncmp(filename, "EMMC:", 5) == 0) {
61 return LoadPartitionContents(filename, file);
Doug Zongkerc4351c72010-02-22 14:46:32 -080062 }
Doug Zongker512536a2010-02-17 16:11:44 -080063
Doug Zongkerc4351c72010-02-22 14:46:32 -080064 if (stat(filename, &file->st) != 0) {
65 printf("failed to stat \"%s\": %s\n", filename, strerror(errno));
66 return -1;
67 }
68
69 file->size = file->st.st_size;
Tao Bao485b6372015-06-23 23:23:33 -070070 file->data = reinterpret_cast<unsigned char*>(malloc(file->size));
Doug Zongkerc4351c72010-02-22 14:46:32 -080071
72 FILE* f = fopen(filename, "rb");
73 if (f == NULL) {
74 printf("failed to open \"%s\": %s\n", filename, strerror(errno));
75 free(file->data);
76 file->data = NULL;
77 return -1;
78 }
79
Tao Bao485b6372015-06-23 23:23:33 -070080 size_t bytes_read = fread(file->data, 1, file->size, f);
81 if (bytes_read != static_cast<size_t>(file->size)) {
82 printf("short read of \"%s\" (%zu bytes of %zd)\n", filename, bytes_read, file->size);
Doug Zongkerc4351c72010-02-22 14:46:32 -080083 free(file->data);
84 file->data = NULL;
85 return -1;
86 }
87 fclose(f);
88
Doug Zongkerbac7fba2013-04-10 11:32:17 -070089 SHA_hash(file->data, file->size, file->sha1);
Doug Zongkerc4351c72010-02-22 14:46:32 -080090 return 0;
Doug Zongker512536a2010-02-17 16:11:44 -080091}
92
Doug Zongkerf291d852010-07-07 13:55:25 -070093// Load the contents of an MTD or EMMC partition into the provided
Doug Zongker512536a2010-02-17 16:11:44 -080094// FileContents. filename should be a string of the form
Doug Zongkerf291d852010-07-07 13:55:25 -070095// "MTD:<partition_name>:<size_1>:<sha1_1>:<size_2>:<sha1_2>:..." (or
96// "EMMC:<partition_device>:..."). The smallest size_n bytes for
97// which that prefix of the partition contents has the corresponding
98// sha1 hash will be loaded. It is acceptable for a size value to be
99// repeated with different sha1s. Will return 0 on success.
Doug Zongker512536a2010-02-17 16:11:44 -0800100//
101// This complexity is needed because if an OTA installation is
102// interrupted, the partition might contain either the source or the
103// target data, which might be of different lengths. We need to know
Doug Zongkerf291d852010-07-07 13:55:25 -0700104// the length in order to read from a partition (there is no
105// "end-of-file" marker), so the caller must specify the possible
106// lengths and the hash of the data, and we'll do the load expecting
107// to find one of those hashes.
108enum PartitionType { MTD, EMMC };
109
110static int LoadPartitionContents(const char* filename, FileContents* file) {
Tao Bao0a47ce22015-07-17 11:47:44 -0700111 std::string copy(filename);
112 std::vector<std::string> pieces = android::base::Split(copy, ":");
113 if (pieces.size() < 4 || pieces.size() % 2 != 0) {
114 printf("LoadPartitionContents called with bad filename (%s)\n", filename);
115 return -1;
116 }
Doug Zongkerf291d852010-07-07 13:55:25 -0700117
118 enum PartitionType type;
Tao Bao0a47ce22015-07-17 11:47:44 -0700119 if (pieces[0] == "MTD") {
Doug Zongkerf291d852010-07-07 13:55:25 -0700120 type = MTD;
Tao Bao0a47ce22015-07-17 11:47:44 -0700121 } else if (pieces[0] == "EMMC") {
Doug Zongkerf291d852010-07-07 13:55:25 -0700122 type = EMMC;
123 } else {
Tao Bao485b6372015-06-23 23:23:33 -0700124 printf("LoadPartitionContents called with bad filename (%s)\n", filename);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800125 return -1;
Doug Zongker512536a2010-02-17 16:11:44 -0800126 }
Tao Bao0a47ce22015-07-17 11:47:44 -0700127 const char* partition = pieces[1].c_str();
Doug Zongker512536a2010-02-17 16:11:44 -0800128
Tao Bao0a47ce22015-07-17 11:47:44 -0700129 size_t pairs = (pieces.size() - 2) / 2; // # of (size, sha1) pairs in filename
130 std::vector<size_t> index(pairs);
131 std::vector<size_t> size(pairs);
132 std::vector<std::string> sha1sum(pairs);
Doug Zongker512536a2010-02-17 16:11:44 -0800133
Tao Bao0a47ce22015-07-17 11:47:44 -0700134 for (size_t i = 0; i < pairs; ++i) {
135 size[i] = strtol(pieces[i*2+2].c_str(), NULL, 10);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800136 if (size[i] == 0) {
Doug Zongkerf291d852010-07-07 13:55:25 -0700137 printf("LoadPartitionContents called with bad size (%s)\n", filename);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800138 return -1;
139 }
Tao Bao0a47ce22015-07-17 11:47:44 -0700140 sha1sum[i] = pieces[i*2+3].c_str();
Doug Zongkerc4351c72010-02-22 14:46:32 -0800141 index[i] = i;
142 }
Doug Zongker512536a2010-02-17 16:11:44 -0800143
Tao Bao0a47ce22015-07-17 11:47:44 -0700144 // Sort the index[] array so it indexes the pairs in order of increasing size.
145 sort(index.begin(), index.end(),
146 [&](const size_t& i, const size_t& j) {
147 return (size[i] < size[j]);
148 }
149 );
Doug Zongker512536a2010-02-17 16:11:44 -0800150
Doug Zongkerf291d852010-07-07 13:55:25 -0700151 MtdReadContext* ctx = NULL;
152 FILE* dev = NULL;
Doug Zongker512536a2010-02-17 16:11:44 -0800153
Doug Zongkerf291d852010-07-07 13:55:25 -0700154 switch (type) {
Tao Bao485b6372015-06-23 23:23:33 -0700155 case MTD: {
Doug Zongkerf291d852010-07-07 13:55:25 -0700156 if (!mtd_partitions_scanned) {
157 mtd_scan_partitions();
Tao Bao0a47ce22015-07-17 11:47:44 -0700158 mtd_partitions_scanned = true;
Doug Zongkerf291d852010-07-07 13:55:25 -0700159 }
Doug Zongker512536a2010-02-17 16:11:44 -0800160
Doug Zongkerf291d852010-07-07 13:55:25 -0700161 const MtdPartition* mtd = mtd_find_partition_by_name(partition);
162 if (mtd == NULL) {
Tao Bao0a47ce22015-07-17 11:47:44 -0700163 printf("mtd partition \"%s\" not found (loading %s)\n", partition, filename);
Doug Zongkerf291d852010-07-07 13:55:25 -0700164 return -1;
165 }
166
167 ctx = mtd_read_partition(mtd);
168 if (ctx == NULL) {
Tao Bao0a47ce22015-07-17 11:47:44 -0700169 printf("failed to initialize read of mtd partition \"%s\"\n", partition);
Doug Zongkerf291d852010-07-07 13:55:25 -0700170 return -1;
171 }
172 break;
Tao Bao485b6372015-06-23 23:23:33 -0700173 }
Doug Zongkerf291d852010-07-07 13:55:25 -0700174
175 case EMMC:
176 dev = fopen(partition, "rb");
177 if (dev == NULL) {
Tao Bao0a47ce22015-07-17 11:47:44 -0700178 printf("failed to open emmc partition \"%s\": %s\n", partition, strerror(errno));
Doug Zongkerf291d852010-07-07 13:55:25 -0700179 return -1;
180 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800181 }
Doug Zongker512536a2010-02-17 16:11:44 -0800182
Doug Zongkerc4351c72010-02-22 14:46:32 -0800183 SHA_CTX sha_ctx;
184 SHA_init(&sha_ctx);
185 uint8_t parsed_sha[SHA_DIGEST_SIZE];
186
Tao Bao0a47ce22015-07-17 11:47:44 -0700187 // Allocate enough memory to hold the largest size.
Tao Bao485b6372015-06-23 23:23:33 -0700188 file->data = reinterpret_cast<unsigned char*>(malloc(size[index[pairs-1]]));
Doug Zongkerc4351c72010-02-22 14:46:32 -0800189 char* p = (char*)file->data;
190 file->size = 0; // # bytes read so far
Tao Bao0a47ce22015-07-17 11:47:44 -0700191 bool found = false;
Doug Zongkerc4351c72010-02-22 14:46:32 -0800192
Tao Bao0a47ce22015-07-17 11:47:44 -0700193 for (size_t i = 0; i < pairs; ++i) {
194 // Read enough additional bytes to get us up to the next size. (Again,
195 // we're trying the possibilities in order of increasing size).
Doug Zongkerc4351c72010-02-22 14:46:32 -0800196 size_t next = size[index[i]] - file->size;
197 size_t read = 0;
198 if (next > 0) {
Doug Zongkerf291d852010-07-07 13:55:25 -0700199 switch (type) {
200 case MTD:
201 read = mtd_read_data(ctx, p, next);
202 break;
203
204 case EMMC:
205 read = fread(p, 1, next, dev);
206 break;
207 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800208 if (next != read) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700209 printf("short read (%zu bytes of %zu) for partition \"%s\"\n",
Doug Zongkerc4351c72010-02-22 14:46:32 -0800210 read, next, partition);
211 free(file->data);
212 file->data = NULL;
213 return -1;
214 }
215 SHA_update(&sha_ctx, p, read);
216 file->size += read;
217 }
218
219 // Duplicate the SHA context and finalize the duplicate so we can
220 // check it against this pair's expected hash.
221 SHA_CTX temp_ctx;
222 memcpy(&temp_ctx, &sha_ctx, sizeof(SHA_CTX));
223 const uint8_t* sha_so_far = SHA_final(&temp_ctx);
224
Tao Bao0a47ce22015-07-17 11:47:44 -0700225 if (ParseSha1(sha1sum[index[i]].c_str(), parsed_sha) != 0) {
226 printf("failed to parse sha1 %s in %s\n", sha1sum[index[i]].c_str(), filename);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800227 free(file->data);
228 file->data = NULL;
229 return -1;
230 }
231
232 if (memcmp(sha_so_far, parsed_sha, SHA_DIGEST_SIZE) == 0) {
233 // we have a match. stop reading the partition; we'll return
234 // the data we've read so far.
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700235 printf("partition read matched size %zu sha %s\n",
Tao Bao0a47ce22015-07-17 11:47:44 -0700236 size[index[i]], sha1sum[index[i]].c_str());
237 found = true;
Doug Zongkerc4351c72010-02-22 14:46:32 -0800238 break;
239 }
240
241 p += read;
242 }
243
Doug Zongkerf291d852010-07-07 13:55:25 -0700244 switch (type) {
245 case MTD:
246 mtd_read_close(ctx);
247 break;
248
249 case EMMC:
250 fclose(dev);
251 break;
252 }
253
Doug Zongkerc4351c72010-02-22 14:46:32 -0800254
Tao Bao0a47ce22015-07-17 11:47:44 -0700255 if (!found) {
256 // Ran off the end of the list of (size,sha1) pairs without finding a match.
Tao Bao485b6372015-06-23 23:23:33 -0700257 printf("contents of partition \"%s\" didn't match %s\n", partition, filename);
Doug Zongker512536a2010-02-17 16:11:44 -0800258 free(file->data);
259 file->data = NULL;
260 return -1;
Doug Zongker512536a2010-02-17 16:11:44 -0800261 }
262
Doug Zongkerc4351c72010-02-22 14:46:32 -0800263 const uint8_t* sha_final = SHA_final(&sha_ctx);
Tao Bao485b6372015-06-23 23:23:33 -0700264 for (size_t i = 0; i < SHA_DIGEST_SIZE; ++i) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800265 file->sha1[i] = sha_final[i];
Doug Zongker512536a2010-02-17 16:11:44 -0800266 }
267
Doug Zongkerc4351c72010-02-22 14:46:32 -0800268 // Fake some stat() info.
269 file->st.st_mode = 0644;
270 file->st.st_uid = 0;
271 file->st.st_gid = 0;
Doug Zongker512536a2010-02-17 16:11:44 -0800272
Doug Zongkerc4351c72010-02-22 14:46:32 -0800273 return 0;
Doug Zongker512536a2010-02-17 16:11:44 -0800274}
275
276
277// Save the contents of the given FileContents object under the given
278// filename. Return 0 on success.
Doug Zongker1c43c972012-02-28 11:07:09 -0800279int SaveFileContents(const char* filename, const FileContents* file) {
Michael Rungebe81e512014-10-29 12:42:15 -0700280 int fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_SYNC, S_IRUSR | S_IWUSR);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800281 if (fd < 0) {
Tao Bao485b6372015-06-23 23:23:33 -0700282 printf("failed to open \"%s\" for write: %s\n", filename, strerror(errno));
Doug Zongkerc4351c72010-02-22 14:46:32 -0800283 return -1;
284 }
Doug Zongker512536a2010-02-17 16:11:44 -0800285
Doug Zongker1c43c972012-02-28 11:07:09 -0800286 ssize_t bytes_written = FileSink(file->data, file->size, &fd);
287 if (bytes_written != file->size) {
Tao Bao485b6372015-06-23 23:23:33 -0700288 printf("short write of \"%s\" (%zd bytes of %zd) (%s)\n",
289 filename, bytes_written, file->size, strerror(errno));
Doug Zongkerc4351c72010-02-22 14:46:32 -0800290 close(fd);
291 return -1;
292 }
Michael Rungebe81e512014-10-29 12:42:15 -0700293 if (fsync(fd) != 0) {
294 printf("fsync of \"%s\" failed: %s\n", filename, strerror(errno));
295 return -1;
296 }
297 if (close(fd) != 0) {
298 printf("close of \"%s\" failed: %s\n", filename, strerror(errno));
299 return -1;
300 }
Doug Zongker512536a2010-02-17 16:11:44 -0800301
Doug Zongker1c43c972012-02-28 11:07:09 -0800302 if (chmod(filename, file->st.st_mode) != 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800303 printf("chmod of \"%s\" failed: %s\n", filename, strerror(errno));
304 return -1;
305 }
Doug Zongker1c43c972012-02-28 11:07:09 -0800306 if (chown(filename, file->st.st_uid, file->st.st_gid) != 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800307 printf("chown of \"%s\" failed: %s\n", filename, strerror(errno));
308 return -1;
309 }
Doug Zongker512536a2010-02-17 16:11:44 -0800310
Doug Zongkerc4351c72010-02-22 14:46:32 -0800311 return 0;
Doug Zongker512536a2010-02-17 16:11:44 -0800312}
313
Doug Zongkerf291d852010-07-07 13:55:25 -0700314// Write a memory buffer to 'target' partition, a string of the form
Tao Bao0a47ce22015-07-17 11:47:44 -0700315// "MTD:<partition>[:...]" or "EMMC:<partition_device>". Return 0 on
Doug Zongkerf291d852010-07-07 13:55:25 -0700316// success.
Tao Bao485b6372015-06-23 23:23:33 -0700317int WriteToPartition(unsigned char* data, size_t len, const char* target) {
Tao Bao0a47ce22015-07-17 11:47:44 -0700318 std::string copy(target);
319 std::vector<std::string> pieces = android::base::Split(copy, ":");
320
321 if (pieces.size() != 2) {
322 printf("WriteToPartition called with bad target (%s)\n", target);
323 return -1;
324 }
Doug Zongkerf291d852010-07-07 13:55:25 -0700325
326 enum PartitionType type;
Tao Bao0a47ce22015-07-17 11:47:44 -0700327 if (pieces[0] == "MTD") {
Doug Zongkerf291d852010-07-07 13:55:25 -0700328 type = MTD;
Tao Bao0a47ce22015-07-17 11:47:44 -0700329 } else if (pieces[0] == "EMMC") {
Doug Zongkerf291d852010-07-07 13:55:25 -0700330 type = EMMC;
331 } else {
332 printf("WriteToPartition called with bad target (%s)\n", target);
333 return -1;
334 }
Tao Bao0a47ce22015-07-17 11:47:44 -0700335 const char* partition = pieces[1].c_str();
Doug Zongker512536a2010-02-17 16:11:44 -0800336
Doug Zongkerf291d852010-07-07 13:55:25 -0700337 switch (type) {
Tao Bao485b6372015-06-23 23:23:33 -0700338 case MTD: {
Doug Zongkerf291d852010-07-07 13:55:25 -0700339 if (!mtd_partitions_scanned) {
340 mtd_scan_partitions();
Tao Bao0a47ce22015-07-17 11:47:44 -0700341 mtd_partitions_scanned = true;
Doug Zongkerf291d852010-07-07 13:55:25 -0700342 }
343
344 const MtdPartition* mtd = mtd_find_partition_by_name(partition);
345 if (mtd == NULL) {
Tao Bao485b6372015-06-23 23:23:33 -0700346 printf("mtd partition \"%s\" not found for writing\n", partition);
Doug Zongkerf291d852010-07-07 13:55:25 -0700347 return -1;
348 }
349
350 MtdWriteContext* ctx = mtd_write_partition(mtd);
351 if (ctx == NULL) {
Tao Bao485b6372015-06-23 23:23:33 -0700352 printf("failed to init mtd partition \"%s\" for writing\n", partition);
Doug Zongkerf291d852010-07-07 13:55:25 -0700353 return -1;
354 }
355
Tao Bao485b6372015-06-23 23:23:33 -0700356 size_t written = mtd_write_data(ctx, reinterpret_cast<char*>(data), len);
Doug Zongkerf291d852010-07-07 13:55:25 -0700357 if (written != len) {
Tao Bao485b6372015-06-23 23:23:33 -0700358 printf("only wrote %zu of %zu bytes to MTD %s\n", written, len, partition);
Doug Zongkerf291d852010-07-07 13:55:25 -0700359 mtd_write_close(ctx);
360 return -1;
361 }
362
363 if (mtd_erase_blocks(ctx, -1) < 0) {
364 printf("error finishing mtd write of %s\n", partition);
365 mtd_write_close(ctx);
366 return -1;
367 }
368
369 if (mtd_write_close(ctx)) {
370 printf("error closing mtd write of %s\n", partition);
371 return -1;
372 }
373 break;
Tao Bao485b6372015-06-23 23:23:33 -0700374 }
Doug Zongkerf291d852010-07-07 13:55:25 -0700375
Tao Bao485b6372015-06-23 23:23:33 -0700376 case EMMC: {
Doug Zongker044a0b42013-07-08 09:42:54 -0700377 size_t start = 0;
Tao Bao485b6372015-06-23 23:23:33 -0700378 bool success = false;
Michael Rungebe81e512014-10-29 12:42:15 -0700379 int fd = open(partition, O_RDWR | O_SYNC);
Doug Zongkerc870a992013-07-09 10:34:46 -0700380 if (fd < 0) {
Doug Zongker044a0b42013-07-08 09:42:54 -0700381 printf("failed to open %s: %s\n", partition, strerror(errno));
Doug Zongkerf291d852010-07-07 13:55:25 -0700382 return -1;
383 }
Doug Zongker044a0b42013-07-08 09:42:54 -0700384
Tao Bao0a47ce22015-07-17 11:47:44 -0700385 for (size_t attempt = 0; attempt < 2; ++attempt) {
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700386 if (TEMP_FAILURE_RETRY(lseek(fd, start, SEEK_SET)) == -1) {
Tao Bao485b6372015-06-23 23:23:33 -0700387 printf("failed seek on %s: %s\n", partition, strerror(errno));
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700388 return -1;
389 }
Doug Zongker044a0b42013-07-08 09:42:54 -0700390 while (start < len) {
391 size_t to_write = len - start;
Doug Zongker168724c2013-12-19 15:16:57 -0800392 if (to_write > 1<<20) to_write = 1<<20;
Doug Zongker044a0b42013-07-08 09:42:54 -0700393
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700394 ssize_t written = TEMP_FAILURE_RETRY(write(fd, data+start, to_write));
395 if (written == -1) {
396 printf("failed write writing to %s: %s\n", partition, strerror(errno));
397 return -1;
Doug Zongker044a0b42013-07-08 09:42:54 -0700398 }
Doug Zongkerc870a992013-07-09 10:34:46 -0700399 start += written;
Doug Zongker044a0b42013-07-08 09:42:54 -0700400 }
Michael Rungebe81e512014-10-29 12:42:15 -0700401 if (fsync(fd) != 0) {
Tao Bao485b6372015-06-23 23:23:33 -0700402 printf("failed to sync to %s (%s)\n", partition, strerror(errno));
Michael Rungebe81e512014-10-29 12:42:15 -0700403 return -1;
404 }
405 if (close(fd) != 0) {
Tao Bao485b6372015-06-23 23:23:33 -0700406 printf("failed to close %s (%s)\n", partition, strerror(errno));
Michael Rungebe81e512014-10-29 12:42:15 -0700407 return -1;
408 }
409 fd = open(partition, O_RDONLY);
410 if (fd < 0) {
Tao Bao485b6372015-06-23 23:23:33 -0700411 printf("failed to reopen %s for verify (%s)\n", partition, strerror(errno));
Michael Rungebe81e512014-10-29 12:42:15 -0700412 return -1;
413 }
Doug Zongker044a0b42013-07-08 09:42:54 -0700414
Tao Bao485b6372015-06-23 23:23:33 -0700415 // Drop caches so our subsequent verification read
Doug Zongker044a0b42013-07-08 09:42:54 -0700416 // won't just be reading the cache.
417 sync();
Doug Zongkerc870a992013-07-09 10:34:46 -0700418 int dc = open("/proc/sys/vm/drop_caches", O_WRONLY);
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700419 if (TEMP_FAILURE_RETRY(write(dc, "3\n", 2)) == -1) {
420 printf("write to /proc/sys/vm/drop_caches failed: %s\n", strerror(errno));
421 } else {
422 printf(" caches dropped\n");
423 }
Doug Zongkerc870a992013-07-09 10:34:46 -0700424 close(dc);
Doug Zongker044a0b42013-07-08 09:42:54 -0700425 sleep(1);
Doug Zongker044a0b42013-07-08 09:42:54 -0700426
427 // verify
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700428 if (TEMP_FAILURE_RETRY(lseek(fd, 0, SEEK_SET)) == -1) {
429 printf("failed to seek back to beginning of %s: %s\n",
430 partition, strerror(errno));
431 return -1;
432 }
Doug Zongker044a0b42013-07-08 09:42:54 -0700433 unsigned char buffer[4096];
434 start = len;
Tao Bao485b6372015-06-23 23:23:33 -0700435 for (size_t p = 0; p < len; p += sizeof(buffer)) {
Doug Zongker044a0b42013-07-08 09:42:54 -0700436 size_t to_read = len - p;
Tao Bao485b6372015-06-23 23:23:33 -0700437 if (to_read > sizeof(buffer)) {
438 to_read = sizeof(buffer);
439 }
Doug Zongker044a0b42013-07-08 09:42:54 -0700440
Doug Zongkerc870a992013-07-09 10:34:46 -0700441 size_t so_far = 0;
442 while (so_far < to_read) {
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700443 ssize_t read_count =
444 TEMP_FAILURE_RETRY(read(fd, buffer+so_far, to_read-so_far));
445 if (read_count == -1) {
446 printf("verify read error %s at %zu: %s\n",
447 partition, p, strerror(errno));
448 return -1;
Doug Zongkerc870a992013-07-09 10:34:46 -0700449 }
Tao Bao485b6372015-06-23 23:23:33 -0700450 if (static_cast<size_t>(read_count) < to_read) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700451 printf("short verify read %s at %zu: %zd %zu %s\n",
Doug Zongkerc870a992013-07-09 10:34:46 -0700452 partition, p, read_count, to_read, strerror(errno));
453 }
454 so_far += read_count;
Doug Zongker044a0b42013-07-08 09:42:54 -0700455 }
456
Tao Bao485b6372015-06-23 23:23:33 -0700457 if (memcmp(buffer, data+p, to_read) != 0) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700458 printf("verification failed starting at %zu\n", p);
Doug Zongker044a0b42013-07-08 09:42:54 -0700459 start = p;
460 break;
461 }
462 }
463
464 if (start == len) {
Tao Bao68c5a672015-07-17 18:11:12 -0700465 printf("verification read succeeded (attempt %zu)\n", attempt+1);
Doug Zongker044a0b42013-07-08 09:42:54 -0700466 success = true;
467 break;
468 }
469 }
470
471 if (!success) {
472 printf("failed to verify after all attempts\n");
473 return -1;
474 }
475
Doug Zongkerc870a992013-07-09 10:34:46 -0700476 if (close(fd) != 0) {
Doug Zongkerf291d852010-07-07 13:55:25 -0700477 printf("error closing %s (%s)\n", partition, strerror(errno));
478 return -1;
479 }
Doug Zongkerbf4a69a2013-07-10 13:39:50 -0700480 sync();
Doug Zongkerf291d852010-07-07 13:55:25 -0700481 break;
Doug Zongker044a0b42013-07-08 09:42:54 -0700482 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800483 }
Doug Zongker512536a2010-02-17 16:11:44 -0800484
Doug Zongkerc4351c72010-02-22 14:46:32 -0800485 return 0;
Doug Zongker512536a2010-02-17 16:11:44 -0800486}
487
488
489// Take a string 'str' of 40 hex digits and parse it into the 20
490// byte array 'digest'. 'str' may contain only the digest or be of
491// the form "<digest>:<anything>". Return 0 on success, -1 on any
492// error.
493int ParseSha1(const char* str, uint8_t* digest) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800494 const char* ps = str;
495 uint8_t* pd = digest;
Tao Bao485b6372015-06-23 23:23:33 -0700496 for (int i = 0; i < SHA_DIGEST_SIZE * 2; ++i, ++ps) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800497 int digit;
498 if (*ps >= '0' && *ps <= '9') {
499 digit = *ps - '0';
500 } else if (*ps >= 'a' && *ps <= 'f') {
501 digit = *ps - 'a' + 10;
502 } else if (*ps >= 'A' && *ps <= 'F') {
503 digit = *ps - 'A' + 10;
504 } else {
505 return -1;
506 }
507 if (i % 2 == 0) {
508 *pd = digit << 4;
509 } else {
510 *pd |= digit;
511 ++pd;
512 }
Doug Zongker512536a2010-02-17 16:11:44 -0800513 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800514 if (*ps != '\0') return -1;
515 return 0;
Doug Zongker512536a2010-02-17 16:11:44 -0800516}
517
Doug Zongkerc4351c72010-02-22 14:46:32 -0800518// Search an array of sha1 strings for one matching the given sha1.
519// Return the index of the match on success, or -1 if no match is
520// found.
Doug Zongker044a0b42013-07-08 09:42:54 -0700521int FindMatchingPatch(uint8_t* sha1, char* const * const patch_sha1_str,
Doug Zongkerc4351c72010-02-22 14:46:32 -0800522 int num_patches) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800523 uint8_t patch_sha1[SHA_DIGEST_SIZE];
Tao Bao485b6372015-06-23 23:23:33 -0700524 for (int i = 0; i < num_patches; ++i) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800525 if (ParseSha1(patch_sha1_str[i], patch_sha1) == 0 &&
526 memcmp(patch_sha1, sha1, SHA_DIGEST_SIZE) == 0) {
527 return i;
528 }
Doug Zongker512536a2010-02-17 16:11:44 -0800529 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800530 return -1;
Doug Zongker512536a2010-02-17 16:11:44 -0800531}
532
533// Returns 0 if the contents of the file (argv[2]) or the cached file
534// match any of the sha1's on the command line (argv[3:]). Returns
535// nonzero otherwise.
Tao Bao485b6372015-06-23 23:23:33 -0700536int applypatch_check(const char* filename, int num_patches,
537 char** const patch_sha1_str) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800538 FileContents file;
539 file.data = NULL;
Doug Zongker512536a2010-02-17 16:11:44 -0800540
Doug Zongkerc4351c72010-02-22 14:46:32 -0800541 // It's okay to specify no sha1s; the check will pass if the
Doug Zongkerf291d852010-07-07 13:55:25 -0700542 // LoadFileContents is successful. (Useful for reading
Doug Zongkerc4351c72010-02-22 14:46:32 -0800543 // partitions, where the filename encodes the sha1s; no need to
544 // check them twice.)
Doug Zongkera1bc1482014-02-13 15:18:19 -0800545 if (LoadFileContents(filename, &file) != 0 ||
Doug Zongkerc4351c72010-02-22 14:46:32 -0800546 (num_patches > 0 &&
547 FindMatchingPatch(file.sha1, patch_sha1_str, num_patches) < 0)) {
548 printf("file \"%s\" doesn't have any of expected "
549 "sha1 sums; checking cache\n", filename);
Doug Zongker512536a2010-02-17 16:11:44 -0800550
Doug Zongkerc4351c72010-02-22 14:46:32 -0800551 free(file.data);
Doug Zongker1c43c972012-02-28 11:07:09 -0800552 file.data = NULL;
Doug Zongker512536a2010-02-17 16:11:44 -0800553
Doug Zongkerc4351c72010-02-22 14:46:32 -0800554 // If the source file is missing or corrupted, it might be because
555 // we were killed in the middle of patching it. A copy of it
556 // should have been made in CACHE_TEMP_SOURCE. If that file
557 // exists and matches the sha1 we're looking for, the check still
558 // passes.
559
Doug Zongkera1bc1482014-02-13 15:18:19 -0800560 if (LoadFileContents(CACHE_TEMP_SOURCE, &file) != 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800561 printf("failed to load cache file\n");
562 return 1;
563 }
564
565 if (FindMatchingPatch(file.sha1, patch_sha1_str, num_patches) < 0) {
566 printf("cache bits don't match any sha1 for \"%s\"\n", filename);
567 free(file.data);
568 return 1;
569 }
570 }
Doug Zongker512536a2010-02-17 16:11:44 -0800571
572 free(file.data);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800573 return 0;
Doug Zongker512536a2010-02-17 16:11:44 -0800574}
575
576int ShowLicenses() {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800577 ShowBSDiffLicense();
578 return 0;
Doug Zongker512536a2010-02-17 16:11:44 -0800579}
580
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700581ssize_t FileSink(const unsigned char* data, ssize_t len, void* token) {
Tao Bao485b6372015-06-23 23:23:33 -0700582 int fd = *reinterpret_cast<int *>(token);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800583 ssize_t done = 0;
584 ssize_t wrote;
Tao Bao485b6372015-06-23 23:23:33 -0700585 while (done < len) {
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700586 wrote = TEMP_FAILURE_RETRY(write(fd, data+done, len-done));
587 if (wrote == -1) {
Tao Bao485b6372015-06-23 23:23:33 -0700588 printf("error writing %zd bytes: %s\n", (len-done), strerror(errno));
Doug Zongkerc4351c72010-02-22 14:46:32 -0800589 return done;
590 }
591 done += wrote;
Doug Zongker512536a2010-02-17 16:11:44 -0800592 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800593 return done;
Doug Zongker512536a2010-02-17 16:11:44 -0800594}
595
596typedef struct {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800597 unsigned char* buffer;
598 ssize_t size;
599 ssize_t pos;
Doug Zongker512536a2010-02-17 16:11:44 -0800600} MemorySinkInfo;
601
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700602ssize_t MemorySink(const unsigned char* data, ssize_t len, void* token) {
Tao Bao485b6372015-06-23 23:23:33 -0700603 MemorySinkInfo* msi = reinterpret_cast<MemorySinkInfo*>(token);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800604 if (msi->size - msi->pos < len) {
605 return -1;
606 }
607 memcpy(msi->buffer + msi->pos, data, len);
608 msi->pos += len;
609 return len;
Doug Zongker512536a2010-02-17 16:11:44 -0800610}
611
612// Return the amount of free space (in bytes) on the filesystem
613// containing filename. filename must exist. Return -1 on error.
614size_t FreeSpaceForFile(const char* filename) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800615 struct statfs sf;
616 if (statfs(filename, &sf) != 0) {
617 printf("failed to statfs %s: %s\n", filename, strerror(errno));
618 return -1;
619 }
caozhiyuan3b497762015-05-19 17:21:00 +0800620 return sf.f_bsize * sf.f_bavail;
Doug Zongker512536a2010-02-17 16:11:44 -0800621}
622
Doug Zongkerc4351c72010-02-22 14:46:32 -0800623int CacheSizeCheck(size_t bytes) {
624 if (MakeFreeSpaceOnCache(bytes) < 0) {
625 printf("unable to make %ld bytes available on /cache\n", (long)bytes);
626 return 1;
627 } else {
628 return 0;
629 }
630}
631
Tao Bao68c5a672015-07-17 18:11:12 -0700632static std::string short_sha1(const uint8_t sha1[SHA_DIGEST_SIZE]) {
Doug Zongkerbf80f492012-10-19 12:24:26 -0700633 const char* hex = "0123456789abcdef";
Tao Bao68c5a672015-07-17 18:11:12 -0700634 std::string result = "";
Tao Bao485b6372015-06-23 23:23:33 -0700635 for (size_t i = 0; i < 4; ++i) {
Tao Bao68c5a672015-07-17 18:11:12 -0700636 result.push_back(hex[(sha1[i]>>4) & 0xf]);
637 result.push_back(hex[sha1[i] & 0xf]);
Doug Zongkerbf80f492012-10-19 12:24:26 -0700638 }
Tao Bao68c5a672015-07-17 18:11:12 -0700639 return result;
Doug Zongkerbf80f492012-10-19 12:24:26 -0700640}
Doug Zongkerc4351c72010-02-22 14:46:32 -0800641
642// This function applies binary patches to files in a way that is safe
Doug Zongker512536a2010-02-17 16:11:44 -0800643// (the original file is not touched until we have the desired
644// replacement for it) and idempotent (it's okay to run this program
645// multiple times).
646//
Doug Zongkerc4351c72010-02-22 14:46:32 -0800647// - if the sha1 hash of <target_filename> is <target_sha1_string>,
648// does nothing and exits successfully.
Doug Zongker512536a2010-02-17 16:11:44 -0800649//
Doug Zongkerc4351c72010-02-22 14:46:32 -0800650// - otherwise, if the sha1 hash of <source_filename> is one of the
651// entries in <patch_sha1_str>, the corresponding patch from
652// <patch_data> (which must be a VAL_BLOB) is applied to produce a
653// new file (the type of patch is automatically detected from the
Tao Bao68c5a672015-07-17 18:11:12 -0700654// blob data). If that new file has sha1 hash <target_sha1_str>,
Doug Zongkerc4351c72010-02-22 14:46:32 -0800655// moves it to replace <target_filename>, and exits successfully.
656// Note that if <source_filename> and <target_filename> are not the
657// same, <source_filename> is NOT deleted on success.
658// <target_filename> may be the string "-" to mean "the same as
659// source_filename".
Doug Zongker512536a2010-02-17 16:11:44 -0800660//
661// - otherwise, or if any error is encountered, exits with non-zero
662// status.
663//
Doug Zongkerf291d852010-07-07 13:55:25 -0700664// <source_filename> may refer to a partition to read the source data.
Tao Bao68c5a672015-07-17 18:11:12 -0700665// See the comments for the LoadPartitionContents() function above
Doug Zongkerc4351c72010-02-22 14:46:32 -0800666// for the format of such a filename.
Doug Zongker512536a2010-02-17 16:11:44 -0800667
Doug Zongkerc4351c72010-02-22 14:46:32 -0800668int applypatch(const char* source_filename,
669 const char* target_filename,
670 const char* target_sha1_str,
671 size_t target_size,
672 int num_patches,
673 char** const patch_sha1_str,
Doug Zongkera3ccba62012-08-20 15:28:02 -0700674 Value** patch_data,
675 Value* bonus_data) {
Doug Zongkerbf80f492012-10-19 12:24:26 -0700676 printf("patch %s: ", source_filename);
Doug Zongker512536a2010-02-17 16:11:44 -0800677
Tao Bao485b6372015-06-23 23:23:33 -0700678 if (target_filename[0] == '-' && target_filename[1] == '\0') {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800679 target_filename = source_filename;
Doug Zongker512536a2010-02-17 16:11:44 -0800680 }
681
Doug Zongkerc4351c72010-02-22 14:46:32 -0800682 uint8_t target_sha1[SHA_DIGEST_SIZE];
683 if (ParseSha1(target_sha1_str, target_sha1) != 0) {
684 printf("failed to parse tgt-sha1 \"%s\"\n", target_sha1_str);
Doug Zongker512536a2010-02-17 16:11:44 -0800685 return 1;
Doug Zongkerc4351c72010-02-22 14:46:32 -0800686 }
Doug Zongker512536a2010-02-17 16:11:44 -0800687
Doug Zongkerc4351c72010-02-22 14:46:32 -0800688 FileContents copy_file;
689 FileContents source_file;
Doug Zongker1c43c972012-02-28 11:07:09 -0800690 copy_file.data = NULL;
691 source_file.data = NULL;
Doug Zongkerc4351c72010-02-22 14:46:32 -0800692 const Value* source_patch_value = NULL;
693 const Value* copy_patch_value = NULL;
Doug Zongker512536a2010-02-17 16:11:44 -0800694
Doug Zongkerc4351c72010-02-22 14:46:32 -0800695 // We try to load the target file into the source_file object.
Doug Zongkera1bc1482014-02-13 15:18:19 -0800696 if (LoadFileContents(target_filename, &source_file) == 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800697 if (memcmp(source_file.sha1, target_sha1, SHA_DIGEST_SIZE) == 0) {
698 // The early-exit case: the patch was already applied, this file
699 // has the desired hash, nothing for us to do.
Tao Bao68c5a672015-07-17 18:11:12 -0700700 printf("already %s\n", short_sha1(target_sha1).c_str());
Doug Zongker1c43c972012-02-28 11:07:09 -0800701 free(source_file.data);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800702 return 0;
703 }
704 }
Doug Zongker512536a2010-02-17 16:11:44 -0800705
Doug Zongkerc4351c72010-02-22 14:46:32 -0800706 if (source_file.data == NULL ||
707 (target_filename != source_filename &&
708 strcmp(target_filename, source_filename) != 0)) {
709 // Need to load the source file: either we failed to load the
710 // target file, or we did but it's different from the source file.
711 free(source_file.data);
Doug Zongker1c43c972012-02-28 11:07:09 -0800712 source_file.data = NULL;
Doug Zongkera1bc1482014-02-13 15:18:19 -0800713 LoadFileContents(source_filename, &source_file);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800714 }
715
716 if (source_file.data != NULL) {
Tao Bao485b6372015-06-23 23:23:33 -0700717 int to_use = FindMatchingPatch(source_file.sha1, patch_sha1_str, num_patches);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800718 if (to_use >= 0) {
719 source_patch_value = patch_data[to_use];
720 }
721 }
722
723 if (source_patch_value == NULL) {
724 free(source_file.data);
Doug Zongker1c43c972012-02-28 11:07:09 -0800725 source_file.data = NULL;
Doug Zongkerc4351c72010-02-22 14:46:32 -0800726 printf("source file is bad; trying copy\n");
727
Doug Zongkera1bc1482014-02-13 15:18:19 -0800728 if (LoadFileContents(CACHE_TEMP_SOURCE, &copy_file) < 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800729 // fail.
730 printf("failed to read copy file\n");
731 return 1;
Doug Zongker512536a2010-02-17 16:11:44 -0800732 }
733
Tao Bao485b6372015-06-23 23:23:33 -0700734 int to_use = FindMatchingPatch(copy_file.sha1, patch_sha1_str, num_patches);
Doug Zongker8cd9e4f2010-08-12 17:38:09 -0700735 if (to_use >= 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800736 copy_patch_value = patch_data[to_use];
Doug Zongker512536a2010-02-17 16:11:44 -0800737 }
738
Doug Zongkerc4351c72010-02-22 14:46:32 -0800739 if (copy_patch_value == NULL) {
740 // fail.
741 printf("copy file doesn't match source SHA-1s either\n");
Doug Zongker1c43c972012-02-28 11:07:09 -0800742 free(copy_file.data);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800743 return 1;
Doug Zongker512536a2010-02-17 16:11:44 -0800744 }
Doug Zongker512536a2010-02-17 16:11:44 -0800745 }
746
Doug Zongker1c43c972012-02-28 11:07:09 -0800747 int result = GenerateTarget(&source_file, source_patch_value,
748 &copy_file, copy_patch_value,
749 source_filename, target_filename,
Doug Zongkera3ccba62012-08-20 15:28:02 -0700750 target_sha1, target_size, bonus_data);
Doug Zongker1c43c972012-02-28 11:07:09 -0800751 free(source_file.data);
752 free(copy_file.data);
753
754 return result;
755}
756
Tao Bao68c5a672015-07-17 18:11:12 -0700757/*
758 * This function flashes a given image to the target partition. It verifies
759 * the target cheksum first, and will return if target has the desired hash.
760 * It checks the checksum of the given source image before flashing, and
761 * verifies the target partition afterwards. The function is idempotent.
762 * Returns zero on success.
763 */
764int applypatch_flash(const char* source_filename, const char* target_filename,
765 const char* target_sha1_str, size_t target_size) {
766 printf("flash %s: ", target_filename);
767
768 uint8_t target_sha1[SHA_DIGEST_SIZE];
769 if (ParseSha1(target_sha1_str, target_sha1) != 0) {
770 printf("failed to parse tgt-sha1 \"%s\"\n", target_sha1_str);
771 return 1;
772 }
773
774 FileContents source_file;
775 source_file.data = NULL;
776 std::string target_str(target_filename);
777
778 std::vector<std::string> pieces = android::base::Split(target_str, ":");
779 if (pieces.size() != 2 || (pieces[0] != "MTD" && pieces[0] != "EMMC")) {
780 printf("invalid target name \"%s\"", target_filename);
781 return 1;
782 }
783
784 // Load the target into the source_file object to see if already applied.
785 pieces.push_back(std::to_string(target_size));
786 pieces.push_back(target_sha1_str);
787 std::string fullname = android::base::Join(pieces, ':');
788 if (LoadPartitionContents(fullname.c_str(), &source_file) == 0 &&
789 memcmp(source_file.sha1, target_sha1, SHA_DIGEST_SIZE) == 0) {
790 // The early-exit case: the image was already applied, this partition
791 // has the desired hash, nothing for us to do.
792 printf("already %s\n", short_sha1(target_sha1).c_str());
793 free(source_file.data);
794 return 0;
795 }
796
797 if (LoadFileContents(source_filename, &source_file) == 0) {
798 if (memcmp(source_file.sha1, target_sha1, SHA_DIGEST_SIZE) != 0) {
799 // The source doesn't have desired checksum.
800 printf("source \"%s\" doesn't have expected sha1 sum\n", source_filename);
801 printf("expected: %s, found: %s\n", short_sha1(target_sha1).c_str(),
802 short_sha1(source_file.sha1).c_str());
803 free(source_file.data);
804 return 1;
805 }
806 }
807
808 if (WriteToPartition(source_file.data, target_size, target_filename) != 0) {
809 printf("write of copied data to %s failed\n", target_filename);
810 free(source_file.data);
811 return 1;
812 }
813
814 free(source_file.data);
815 return 0;
816}
817
Doug Zongker1c43c972012-02-28 11:07:09 -0800818static int GenerateTarget(FileContents* source_file,
819 const Value* source_patch_value,
820 FileContents* copy_file,
821 const Value* copy_patch_value,
822 const char* source_filename,
823 const char* target_filename,
824 const uint8_t target_sha1[SHA_DIGEST_SIZE],
Doug Zongkera3ccba62012-08-20 15:28:02 -0700825 size_t target_size,
826 const Value* bonus_data) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800827 int retry = 1;
828 SHA_CTX ctx;
829 int output;
830 MemorySinkInfo msi;
831 FileContents* source_to_use;
832 char* outname;
Doug Zongker1c43c972012-02-28 11:07:09 -0800833 int made_copy = 0;
Doug Zongkerc4351c72010-02-22 14:46:32 -0800834
835 // assume that target_filename (eg "/system/app/Foo.apk") is located
836 // on the same filesystem as its top-level directory ("/system").
837 // We need something that exists for calling statfs().
838 char target_fs[strlen(target_filename)+1];
839 char* slash = strchr(target_filename+1, '/');
840 if (slash != NULL) {
841 int count = slash - target_filename;
842 strncpy(target_fs, target_filename, count);
843 target_fs[count] = '\0';
Doug Zongker512536a2010-02-17 16:11:44 -0800844 } else {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800845 strcpy(target_fs, target_filename);
Doug Zongker512536a2010-02-17 16:11:44 -0800846 }
847
Doug Zongkerc4351c72010-02-22 14:46:32 -0800848 do {
849 // Is there enough room in the target filesystem to hold the patched
850 // file?
851
Doug Zongkerf291d852010-07-07 13:55:25 -0700852 if (strncmp(target_filename, "MTD:", 4) == 0 ||
853 strncmp(target_filename, "EMMC:", 5) == 0) {
854 // If the target is a partition, we're actually going to
855 // write the output to /tmp and then copy it to the
856 // partition. statfs() always returns 0 blocks free for
857 // /tmp, so instead we'll just assume that /tmp has enough
858 // space to hold the file.
Doug Zongkerc4351c72010-02-22 14:46:32 -0800859
Doug Zongkerf291d852010-07-07 13:55:25 -0700860 // We still write the original source to cache, in case
861 // the partition write is interrupted.
Doug Zongker1c43c972012-02-28 11:07:09 -0800862 if (MakeFreeSpaceOnCache(source_file->size) < 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800863 printf("not enough free space on /cache\n");
864 return 1;
865 }
866 if (SaveFileContents(CACHE_TEMP_SOURCE, source_file) < 0) {
867 printf("failed to back up source file\n");
868 return 1;
869 }
870 made_copy = 1;
871 retry = 0;
872 } else {
873 int enough_space = 0;
874 if (retry > 0) {
875 size_t free_space = FreeSpaceForFile(target_fs);
Doug Zongker201cd462010-08-13 09:41:21 -0700876 enough_space =
877 (free_space > (256 << 10)) && // 256k (two-block) minimum
Doug Zongkerc4351c72010-02-22 14:46:32 -0800878 (free_space > (target_size * 3 / 2)); // 50% margin of error
Doug Zongkerbf80f492012-10-19 12:24:26 -0700879 if (!enough_space) {
Tao Bao485b6372015-06-23 23:23:33 -0700880 printf("target %zu bytes; free space %zu bytes; retry %d; enough %d\n",
881 target_size, free_space, retry, enough_space);
Doug Zongkerbf80f492012-10-19 12:24:26 -0700882 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800883 }
884
885 if (!enough_space) {
886 retry = 0;
887 }
888
889 if (!enough_space && source_patch_value != NULL) {
890 // Using the original source, but not enough free space. First
891 // copy the source file to cache, then delete it from the original
892 // location.
893
Doug Zongkerf291d852010-07-07 13:55:25 -0700894 if (strncmp(source_filename, "MTD:", 4) == 0 ||
895 strncmp(source_filename, "EMMC:", 5) == 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800896 // It's impossible to free space on the target filesystem by
Doug Zongkerf291d852010-07-07 13:55:25 -0700897 // deleting the source if the source is a partition. If
Doug Zongkerc4351c72010-02-22 14:46:32 -0800898 // we're ever in a state where we need to do this, fail.
Tao Bao485b6372015-06-23 23:23:33 -0700899 printf("not enough free space for target but source is partition\n");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800900 return 1;
901 }
902
Doug Zongker1c43c972012-02-28 11:07:09 -0800903 if (MakeFreeSpaceOnCache(source_file->size) < 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800904 printf("not enough free space on /cache\n");
905 return 1;
906 }
907
908 if (SaveFileContents(CACHE_TEMP_SOURCE, source_file) < 0) {
909 printf("failed to back up source file\n");
910 return 1;
911 }
912 made_copy = 1;
913 unlink(source_filename);
914
915 size_t free_space = FreeSpaceForFile(target_fs);
Tao Bao485b6372015-06-23 23:23:33 -0700916 printf("(now %zu bytes free for target) ", free_space);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800917 }
918 }
919
920 const Value* patch;
921 if (source_patch_value != NULL) {
Doug Zongker1c43c972012-02-28 11:07:09 -0800922 source_to_use = source_file;
Doug Zongkerc4351c72010-02-22 14:46:32 -0800923 patch = source_patch_value;
924 } else {
Doug Zongker1c43c972012-02-28 11:07:09 -0800925 source_to_use = copy_file;
Doug Zongkerc4351c72010-02-22 14:46:32 -0800926 patch = copy_patch_value;
927 }
928
929 if (patch->type != VAL_BLOB) {
930 printf("patch is not a blob\n");
931 return 1;
932 }
933
934 SinkFn sink = NULL;
935 void* token = NULL;
936 output = -1;
937 outname = NULL;
Doug Zongkerf291d852010-07-07 13:55:25 -0700938 if (strncmp(target_filename, "MTD:", 4) == 0 ||
939 strncmp(target_filename, "EMMC:", 5) == 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800940 // We store the decoded output in memory.
Tao Bao485b6372015-06-23 23:23:33 -0700941 msi.buffer = reinterpret_cast<unsigned char*>(malloc(target_size));
Doug Zongkerc4351c72010-02-22 14:46:32 -0800942 if (msi.buffer == NULL) {
Tao Bao485b6372015-06-23 23:23:33 -0700943 printf("failed to alloc %zu bytes for output\n", target_size);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800944 return 1;
945 }
946 msi.pos = 0;
947 msi.size = target_size;
948 sink = MemorySink;
949 token = &msi;
950 } else {
951 // We write the decoded output to "<tgt-file>.patch".
Tao Bao485b6372015-06-23 23:23:33 -0700952 outname = reinterpret_cast<char*>(malloc(strlen(target_filename) + 10));
Doug Zongkerc4351c72010-02-22 14:46:32 -0800953 strcpy(outname, target_filename);
954 strcat(outname, ".patch");
955
Tao Bao485b6372015-06-23 23:23:33 -0700956 output = open(outname, O_WRONLY | O_CREAT | O_TRUNC | O_SYNC, S_IRUSR | S_IWUSR);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800957 if (output < 0) {
958 printf("failed to open output file %s: %s\n",
959 outname, strerror(errno));
960 return 1;
961 }
962 sink = FileSink;
963 token = &output;
964 }
965
966 char* header = patch->data;
967 ssize_t header_bytes_read = patch->size;
968
969 SHA_init(&ctx);
970
971 int result;
972
973 if (header_bytes_read >= 8 &&
974 memcmp(header, "BSDIFF40", 8) == 0) {
975 result = ApplyBSDiffPatch(source_to_use->data, source_to_use->size,
976 patch, 0, sink, token, &ctx);
977 } else if (header_bytes_read >= 8 &&
978 memcmp(header, "IMGDIFF2", 8) == 0) {
979 result = ApplyImagePatch(source_to_use->data, source_to_use->size,
Doug Zongkera3ccba62012-08-20 15:28:02 -0700980 patch, sink, token, &ctx, bonus_data);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800981 } else {
982 printf("Unknown patch file format\n");
983 return 1;
984 }
985
986 if (output >= 0) {
Michael Rungebe81e512014-10-29 12:42:15 -0700987 if (fsync(output) != 0) {
988 printf("failed to fsync file \"%s\" (%s)\n", outname, strerror(errno));
989 result = 1;
990 }
991 if (close(output) != 0) {
992 printf("failed to close file \"%s\" (%s)\n", outname, strerror(errno));
993 result = 1;
994 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800995 }
996
997 if (result != 0) {
998 if (retry == 0) {
999 printf("applying patch failed\n");
1000 return result != 0;
1001 } else {
1002 printf("applying patch failed; retrying\n");
1003 }
1004 if (outname != NULL) {
1005 unlink(outname);
1006 }
1007 } else {
1008 // succeeded; no need to retry
1009 break;
1010 }
1011 } while (retry-- > 0);
1012
1013 const uint8_t* current_target_sha1 = SHA_final(&ctx);
1014 if (memcmp(current_target_sha1, target_sha1, SHA_DIGEST_SIZE) != 0) {
1015 printf("patch did not produce expected sha1\n");
Doug Zongker512536a2010-02-17 16:11:44 -08001016 return 1;
Doug Zongkerbf80f492012-10-19 12:24:26 -07001017 } else {
Tao Bao68c5a672015-07-17 18:11:12 -07001018 printf("now %s\n", short_sha1(target_sha1).c_str());
Doug Zongkerc4351c72010-02-22 14:46:32 -08001019 }
1020
1021 if (output < 0) {
Doug Zongkerf291d852010-07-07 13:55:25 -07001022 // Copy the temp file to the partition.
1023 if (WriteToPartition(msi.buffer, msi.pos, target_filename) != 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -08001024 printf("write of patched data to %s failed\n", target_filename);
1025 return 1;
1026 }
1027 free(msi.buffer);
Doug Zongker512536a2010-02-17 16:11:44 -08001028 } else {
Doug Zongkerc4351c72010-02-22 14:46:32 -08001029 // Give the .patch file the same owner, group, and mode of the
1030 // original source file.
1031 if (chmod(outname, source_to_use->st.st_mode) != 0) {
1032 printf("chmod of \"%s\" failed: %s\n", outname, strerror(errno));
1033 return 1;
1034 }
Tao Bao485b6372015-06-23 23:23:33 -07001035 if (chown(outname, source_to_use->st.st_uid, source_to_use->st.st_gid) != 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -08001036 printf("chown of \"%s\" failed: %s\n", outname, strerror(errno));
1037 return 1;
1038 }
Doug Zongker512536a2010-02-17 16:11:44 -08001039
Doug Zongkerc4351c72010-02-22 14:46:32 -08001040 // Finally, rename the .patch file to replace the target file.
1041 if (rename(outname, target_filename) != 0) {
Tao Bao485b6372015-06-23 23:23:33 -07001042 printf("rename of .patch to \"%s\" failed: %s\n", target_filename, strerror(errno));
Doug Zongkerc4351c72010-02-22 14:46:32 -08001043 return 1;
1044 }
Doug Zongker512536a2010-02-17 16:11:44 -08001045 }
1046
Doug Zongkerc4351c72010-02-22 14:46:32 -08001047 // If this run of applypatch created the copy, and we're here, we
1048 // can delete it.
Tao Bao485b6372015-06-23 23:23:33 -07001049 if (made_copy) {
1050 unlink(CACHE_TEMP_SOURCE);
1051 }
Doug Zongker512536a2010-02-17 16:11:44 -08001052
Doug Zongkerc4351c72010-02-22 14:46:32 -08001053 // Success!
1054 return 0;
Doug Zongker512536a2010-02-17 16:11:44 -08001055}