blob: 02a3c6e418a784ca081f171185cb7c427a7c0c00 [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 Baoba9a42a2015-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
Yabin Cuid483c202016-02-03 17:08:52 -080028#include <memory>
29#include <string>
30
Elliott Hughes4b166f02015-12-04 15:30:20 -080031#include <android-base/strings.h>
Tao Baoaca8e892015-07-17 11:47:44 -070032
Sen Jiangc48cb5e2016-02-04 16:23:21 +080033#include "openssl/sha.h"
Tao Baod80a9982016-03-03 11:43:47 -080034#include "applypatch/applypatch.h"
Doug Zongkerc4351c72010-02-22 14:46:32 -080035#include "edify/expr.h"
Jed Estep39c1b5e2015-12-15 16:04:53 -080036#include "ota_io.h"
Tao Baoe6aa3322015-08-05 15:20:27 -070037#include "print_sha1.h"
Doug Zongker512536a2010-02-17 16:11:44 -080038
Doug Zongkerf291d852010-07-07 13:55:25 -070039static int LoadPartitionContents(const char* filename, FileContents* file);
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070040static ssize_t FileSink(const unsigned char* data, ssize_t len, void* token);
Doug Zongker1c43c972012-02-28 11:07:09 -080041static int GenerateTarget(FileContents* source_file,
42 const Value* source_patch_value,
43 FileContents* copy_file,
44 const Value* copy_patch_value,
45 const char* source_filename,
46 const char* target_filename,
Sen Jiangc48cb5e2016-02-04 16:23:21 +080047 const uint8_t target_sha1[SHA_DIGEST_LENGTH],
Doug Zongkera3ccba62012-08-20 15:28:02 -070048 size_t target_size,
49 const Value* bonus_data);
Doug Zongker512536a2010-02-17 16:11:44 -080050
Doug Zongkera1bc1482014-02-13 15:18:19 -080051// Read a file into memory; store the file contents and associated
Hristo Bojinovdb314d62010-08-02 10:29:49 -070052// metadata in *file.
53//
54// Return 0 on success.
Doug Zongkera1bc1482014-02-13 15:18:19 -080055int LoadFileContents(const char* filename, FileContents* file) {
Elliott Hughes63a31922016-06-09 17:41:22 -070056 // A special 'filename' beginning with "EMMC:" means to
Doug Zongkerf291d852010-07-07 13:55:25 -070057 // load the contents of a partition.
Elliott Hughes63a31922016-06-09 17:41:22 -070058 if (strncmp(filename, "EMMC:", 5) == 0) {
Doug Zongkerf291d852010-07-07 13:55:25 -070059 return LoadPartitionContents(filename, file);
Doug Zongkerc4351c72010-02-22 14:46:32 -080060 }
Doug Zongker512536a2010-02-17 16:11:44 -080061
Doug Zongkerc4351c72010-02-22 14:46:32 -080062 if (stat(filename, &file->st) != 0) {
63 printf("failed to stat \"%s\": %s\n", filename, strerror(errno));
64 return -1;
65 }
66
Yabin Cuid6c93af2016-02-10 16:41:10 -080067 std::vector<unsigned char> data(file->st.st_size);
Jed Estepa7b9a462015-12-15 16:04:53 -080068 FILE* f = ota_fopen(filename, "rb");
Doug Zongkerc4351c72010-02-22 14:46:32 -080069 if (f == NULL) {
70 printf("failed to open \"%s\": %s\n", filename, strerror(errno));
Doug Zongkerc4351c72010-02-22 14:46:32 -080071 return -1;
72 }
73
Yabin Cuid6c93af2016-02-10 16:41:10 -080074 size_t bytes_read = ota_fread(data.data(), 1, data.size(), f);
75 if (bytes_read != data.size()) {
76 printf("short read of \"%s\" (%zu bytes of %zu)\n", filename, bytes_read, data.size());
Jed Estepa7b9a462015-12-15 16:04:53 -080077 ota_fclose(f);
Doug Zongkerc4351c72010-02-22 14:46:32 -080078 return -1;
79 }
Jed Estepa7b9a462015-12-15 16:04:53 -080080 ota_fclose(f);
Yabin Cuid6c93af2016-02-10 16:41:10 -080081 file->data = std::move(data);
82 SHA1(file->data.data(), file->data.size(), file->sha1);
Doug Zongkerc4351c72010-02-22 14:46:32 -080083 return 0;
Doug Zongker512536a2010-02-17 16:11:44 -080084}
85
Elliott Hughes63a31922016-06-09 17:41:22 -070086// Load the contents of an EMMC partition into the provided
Doug Zongker512536a2010-02-17 16:11:44 -080087// FileContents. filename should be a string of the form
Elliott Hughes63a31922016-06-09 17:41:22 -070088// "EMMC:<partition_device>:...". The smallest size_n bytes for
Doug Zongkerf291d852010-07-07 13:55:25 -070089// which that prefix of the partition contents has the corresponding
90// sha1 hash will be loaded. It is acceptable for a size value to be
91// repeated with different sha1s. Will return 0 on success.
Doug Zongker512536a2010-02-17 16:11:44 -080092//
93// This complexity is needed because if an OTA installation is
94// interrupted, the partition might contain either the source or the
95// target data, which might be of different lengths. We need to know
Doug Zongkerf291d852010-07-07 13:55:25 -070096// the length in order to read from a partition (there is no
97// "end-of-file" marker), so the caller must specify the possible
98// lengths and the hash of the data, and we'll do the load expecting
99// to find one of those hashes.
Doug Zongkerf291d852010-07-07 13:55:25 -0700100static int LoadPartitionContents(const char* filename, FileContents* file) {
Tao Baoaca8e892015-07-17 11:47:44 -0700101 std::string copy(filename);
102 std::vector<std::string> pieces = android::base::Split(copy, ":");
103 if (pieces.size() < 4 || pieces.size() % 2 != 0) {
104 printf("LoadPartitionContents called with bad filename (%s)\n", filename);
105 return -1;
106 }
Doug Zongkerf291d852010-07-07 13:55:25 -0700107
Elliott Hughes63a31922016-06-09 17:41:22 -0700108 if (pieces[0] != "EMMC") {
Tao Baoba9a42a2015-06-23 23:23:33 -0700109 printf("LoadPartitionContents called with bad filename (%s)\n", filename);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800110 return -1;
Doug Zongker512536a2010-02-17 16:11:44 -0800111 }
Tao Baoaca8e892015-07-17 11:47:44 -0700112 const char* partition = pieces[1].c_str();
Doug Zongker512536a2010-02-17 16:11:44 -0800113
Tao Baoaca8e892015-07-17 11:47:44 -0700114 size_t pairs = (pieces.size() - 2) / 2; // # of (size, sha1) pairs in filename
115 std::vector<size_t> index(pairs);
116 std::vector<size_t> size(pairs);
117 std::vector<std::string> sha1sum(pairs);
Doug Zongker512536a2010-02-17 16:11:44 -0800118
Tao Baoaca8e892015-07-17 11:47:44 -0700119 for (size_t i = 0; i < pairs; ++i) {
120 size[i] = strtol(pieces[i*2+2].c_str(), NULL, 10);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800121 if (size[i] == 0) {
Doug Zongkerf291d852010-07-07 13:55:25 -0700122 printf("LoadPartitionContents called with bad size (%s)\n", filename);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800123 return -1;
124 }
Tao Baoaca8e892015-07-17 11:47:44 -0700125 sha1sum[i] = pieces[i*2+3].c_str();
Doug Zongkerc4351c72010-02-22 14:46:32 -0800126 index[i] = i;
127 }
Doug Zongker512536a2010-02-17 16:11:44 -0800128
Tao Baoaca8e892015-07-17 11:47:44 -0700129 // Sort the index[] array so it indexes the pairs in order of increasing size.
130 sort(index.begin(), index.end(),
131 [&](const size_t& i, const size_t& j) {
132 return (size[i] < size[j]);
133 }
134 );
Doug Zongker512536a2010-02-17 16:11:44 -0800135
Elliott Hughes63a31922016-06-09 17:41:22 -0700136 FILE* dev = ota_fopen(partition, "rb");
137 if (dev == NULL) {
138 printf("failed to open emmc partition \"%s\": %s\n", partition, strerror(errno));
139 return -1;
Doug Zongkerc4351c72010-02-22 14:46:32 -0800140 }
Doug Zongker512536a2010-02-17 16:11:44 -0800141
Doug Zongkerc4351c72010-02-22 14:46:32 -0800142 SHA_CTX sha_ctx;
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800143 SHA1_Init(&sha_ctx);
144 uint8_t parsed_sha[SHA_DIGEST_LENGTH];
Doug Zongkerc4351c72010-02-22 14:46:32 -0800145
Tao Baoaca8e892015-07-17 11:47:44 -0700146 // Allocate enough memory to hold the largest size.
Yabin Cuid6c93af2016-02-10 16:41:10 -0800147 std::vector<unsigned char> data(size[index[pairs-1]]);
148 char* p = reinterpret_cast<char*>(data.data());
149 size_t data_size = 0; // # bytes read so far
Tao Baoaca8e892015-07-17 11:47:44 -0700150 bool found = false;
Doug Zongkerc4351c72010-02-22 14:46:32 -0800151
Tao Baoaca8e892015-07-17 11:47:44 -0700152 for (size_t i = 0; i < pairs; ++i) {
153 // Read enough additional bytes to get us up to the next size. (Again,
154 // we're trying the possibilities in order of increasing size).
Yabin Cuid6c93af2016-02-10 16:41:10 -0800155 size_t next = size[index[i]] - data_size;
Doug Zongkerc4351c72010-02-22 14:46:32 -0800156 if (next > 0) {
Elliott Hughes63a31922016-06-09 17:41:22 -0700157 size_t read = ota_fread(p, 1, next, dev);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800158 if (next != read) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700159 printf("short read (%zu bytes of %zu) for partition \"%s\"\n",
Doug Zongkerc4351c72010-02-22 14:46:32 -0800160 read, next, partition);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800161 return -1;
162 }
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800163 SHA1_Update(&sha_ctx, p, read);
Yabin Cuid6c93af2016-02-10 16:41:10 -0800164 data_size += read;
165 p += read;
Doug Zongkerc4351c72010-02-22 14:46:32 -0800166 }
167
168 // Duplicate the SHA context and finalize the duplicate so we can
169 // check it against this pair's expected hash.
170 SHA_CTX temp_ctx;
171 memcpy(&temp_ctx, &sha_ctx, sizeof(SHA_CTX));
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800172 uint8_t sha_so_far[SHA_DIGEST_LENGTH];
173 SHA1_Final(sha_so_far, &temp_ctx);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800174
Tao Baoaca8e892015-07-17 11:47:44 -0700175 if (ParseSha1(sha1sum[index[i]].c_str(), parsed_sha) != 0) {
176 printf("failed to parse sha1 %s in %s\n", sha1sum[index[i]].c_str(), filename);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800177 return -1;
178 }
179
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800180 if (memcmp(sha_so_far, parsed_sha, SHA_DIGEST_LENGTH) == 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800181 // we have a match. stop reading the partition; we'll return
182 // the data we've read so far.
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700183 printf("partition read matched size %zu sha %s\n",
Tao Baoaca8e892015-07-17 11:47:44 -0700184 size[index[i]], sha1sum[index[i]].c_str());
185 found = true;
Doug Zongkerc4351c72010-02-22 14:46:32 -0800186 break;
187 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800188 }
189
Elliott Hughes63a31922016-06-09 17:41:22 -0700190 ota_fclose(dev);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800191
Tao Baoaca8e892015-07-17 11:47:44 -0700192 if (!found) {
193 // Ran off the end of the list of (size,sha1) pairs without finding a match.
Tao Baoba9a42a2015-06-23 23:23:33 -0700194 printf("contents of partition \"%s\" didn't match %s\n", partition, filename);
Doug Zongker512536a2010-02-17 16:11:44 -0800195 return -1;
Doug Zongker512536a2010-02-17 16:11:44 -0800196 }
197
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800198 SHA1_Final(file->sha1, &sha_ctx);
Doug Zongker512536a2010-02-17 16:11:44 -0800199
Yabin Cuid6c93af2016-02-10 16:41:10 -0800200 data.resize(data_size);
201 file->data = std::move(data);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800202 // Fake some stat() info.
203 file->st.st_mode = 0644;
204 file->st.st_uid = 0;
205 file->st.st_gid = 0;
Doug Zongker512536a2010-02-17 16:11:44 -0800206
Doug Zongkerc4351c72010-02-22 14:46:32 -0800207 return 0;
Doug Zongker512536a2010-02-17 16:11:44 -0800208}
209
210
211// Save the contents of the given FileContents object under the given
212// filename. Return 0 on success.
Doug Zongker1c43c972012-02-28 11:07:09 -0800213int SaveFileContents(const char* filename, const FileContents* file) {
Jed Estepa7b9a462015-12-15 16:04:53 -0800214 int fd = ota_open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_SYNC, S_IRUSR | S_IWUSR);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800215 if (fd < 0) {
Tao Baoba9a42a2015-06-23 23:23:33 -0700216 printf("failed to open \"%s\" for write: %s\n", filename, strerror(errno));
Doug Zongkerc4351c72010-02-22 14:46:32 -0800217 return -1;
218 }
Doug Zongker512536a2010-02-17 16:11:44 -0800219
Yabin Cuid6c93af2016-02-10 16:41:10 -0800220 ssize_t bytes_written = FileSink(file->data.data(), file->data.size(), &fd);
221 if (bytes_written != static_cast<ssize_t>(file->data.size())) {
222 printf("short write of \"%s\" (%zd bytes of %zu) (%s)\n",
223 filename, bytes_written, file->data.size(), strerror(errno));
Jed Estepa7b9a462015-12-15 16:04:53 -0800224 ota_close(fd);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800225 return -1;
226 }
Jed Estepa7b9a462015-12-15 16:04:53 -0800227 if (ota_fsync(fd) != 0) {
Michael Rungebe81e512014-10-29 12:42:15 -0700228 printf("fsync of \"%s\" failed: %s\n", filename, strerror(errno));
229 return -1;
230 }
Jed Estepa7b9a462015-12-15 16:04:53 -0800231 if (ota_close(fd) != 0) {
Michael Rungebe81e512014-10-29 12:42:15 -0700232 printf("close of \"%s\" failed: %s\n", filename, strerror(errno));
233 return -1;
234 }
Doug Zongker512536a2010-02-17 16:11:44 -0800235
Doug Zongker1c43c972012-02-28 11:07:09 -0800236 if (chmod(filename, file->st.st_mode) != 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800237 printf("chmod of \"%s\" failed: %s\n", filename, strerror(errno));
238 return -1;
239 }
Doug Zongker1c43c972012-02-28 11:07:09 -0800240 if (chown(filename, file->st.st_uid, file->st.st_gid) != 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800241 printf("chown of \"%s\" failed: %s\n", filename, strerror(errno));
242 return -1;
243 }
Doug Zongker512536a2010-02-17 16:11:44 -0800244
Doug Zongkerc4351c72010-02-22 14:46:32 -0800245 return 0;
Doug Zongker512536a2010-02-17 16:11:44 -0800246}
247
Doug Zongkerf291d852010-07-07 13:55:25 -0700248// Write a memory buffer to 'target' partition, a string of the form
Elliott Hughes63a31922016-06-09 17:41:22 -0700249// "EMMC:<partition_device>[:...]". The target name
Tao Bao1ce7a2a2015-07-24 15:29:12 -0700250// might contain multiple colons, but WriteToPartition() only uses the first
251// two and ignores the rest. Return 0 on success.
Yabin Cuid483c202016-02-03 17:08:52 -0800252int WriteToPartition(const unsigned char* data, size_t len, const char* target) {
Tao Baoaca8e892015-07-17 11:47:44 -0700253 std::string copy(target);
254 std::vector<std::string> pieces = android::base::Split(copy, ":");
255
Tao Bao1ce7a2a2015-07-24 15:29:12 -0700256 if (pieces.size() < 2) {
Tao Baoaca8e892015-07-17 11:47:44 -0700257 printf("WriteToPartition called with bad target (%s)\n", target);
258 return -1;
259 }
Doug Zongkerf291d852010-07-07 13:55:25 -0700260
Elliott Hughes63a31922016-06-09 17:41:22 -0700261 if (pieces[0] != "EMMC") {
Doug Zongkerf291d852010-07-07 13:55:25 -0700262 printf("WriteToPartition called with bad target (%s)\n", target);
263 return -1;
264 }
Tao Baoaca8e892015-07-17 11:47:44 -0700265 const char* partition = pieces[1].c_str();
Doug Zongker512536a2010-02-17 16:11:44 -0800266
Elliott Hughes63a31922016-06-09 17:41:22 -0700267 size_t start = 0;
268 bool success = false;
269 int fd = ota_open(partition, O_RDWR | O_SYNC);
270 if (fd < 0) {
271 printf("failed to open %s: %s\n", partition, strerror(errno));
272 return -1;
273 }
Doug Zongkerf291d852010-07-07 13:55:25 -0700274
Elliott Hughes63a31922016-06-09 17:41:22 -0700275 for (size_t attempt = 0; attempt < 2; ++attempt) {
276 if (TEMP_FAILURE_RETRY(lseek(fd, start, SEEK_SET)) == -1) {
277 printf("failed seek on %s: %s\n", partition, strerror(errno));
278 return -1;
279 }
280 while (start < len) {
281 size_t to_write = len - start;
282 if (to_write > 1<<20) to_write = 1<<20;
283
284 ssize_t written = TEMP_FAILURE_RETRY(ota_write(fd, data+start, to_write));
285 if (written == -1) {
286 printf("failed write writing to %s: %s\n", partition, strerror(errno));
Doug Zongkerf291d852010-07-07 13:55:25 -0700287 return -1;
288 }
Elliott Hughes63a31922016-06-09 17:41:22 -0700289 start += written;
290 }
291 if (ota_fsync(fd) != 0) {
292 printf("failed to sync to %s (%s)\n", partition, strerror(errno));
293 return -1;
294 }
295 if (ota_close(fd) != 0) {
296 printf("failed to close %s (%s)\n", partition, strerror(errno));
297 return -1;
298 }
299 fd = ota_open(partition, O_RDONLY);
300 if (fd < 0) {
301 printf("failed to reopen %s for verify (%s)\n", partition, strerror(errno));
302 return -1;
Tao Baoba9a42a2015-06-23 23:23:33 -0700303 }
Doug Zongkerf291d852010-07-07 13:55:25 -0700304
Elliott Hughes63a31922016-06-09 17:41:22 -0700305 // Drop caches so our subsequent verification read
306 // won't just be reading the cache.
307 sync();
308 int dc = ota_open("/proc/sys/vm/drop_caches", O_WRONLY);
309 if (TEMP_FAILURE_RETRY(ota_write(dc, "3\n", 2)) == -1) {
310 printf("write to /proc/sys/vm/drop_caches failed: %s\n", strerror(errno));
311 } else {
312 printf(" caches dropped\n");
313 }
314 ota_close(dc);
315 sleep(1);
316
317 // verify
318 if (TEMP_FAILURE_RETRY(lseek(fd, 0, SEEK_SET)) == -1) {
319 printf("failed to seek back to beginning of %s: %s\n",
320 partition, strerror(errno));
321 return -1;
322 }
323 unsigned char buffer[4096];
324 start = len;
325 for (size_t p = 0; p < len; p += sizeof(buffer)) {
326 size_t to_read = len - p;
327 if (to_read > sizeof(buffer)) {
328 to_read = sizeof(buffer);
Doug Zongkerf291d852010-07-07 13:55:25 -0700329 }
Doug Zongker044a0b42013-07-08 09:42:54 -0700330
Elliott Hughes63a31922016-06-09 17:41:22 -0700331 size_t so_far = 0;
332 while (so_far < to_read) {
333 ssize_t read_count =
334 TEMP_FAILURE_RETRY(ota_read(fd, buffer+so_far, to_read-so_far));
335 if (read_count == -1) {
336 printf("verify read error %s at %zu: %s\n",
337 partition, p, strerror(errno));
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700338 return -1;
339 }
Elliott Hughes63a31922016-06-09 17:41:22 -0700340 if (static_cast<size_t>(read_count) < to_read) {
341 printf("short verify read %s at %zu: %zd %zu %s\n",
342 partition, p, read_count, to_read, strerror(errno));
Doug Zongker044a0b42013-07-08 09:42:54 -0700343 }
Elliott Hughes63a31922016-06-09 17:41:22 -0700344 so_far += read_count;
Doug Zongker044a0b42013-07-08 09:42:54 -0700345 }
346
Elliott Hughes63a31922016-06-09 17:41:22 -0700347 if (memcmp(buffer, data+p, to_read) != 0) {
348 printf("verification failed starting at %zu\n", p);
349 start = p;
350 break;
Doug Zongker044a0b42013-07-08 09:42:54 -0700351 }
Elliott Hughes63a31922016-06-09 17:41:22 -0700352 }
Doug Zongker044a0b42013-07-08 09:42:54 -0700353
Elliott Hughes63a31922016-06-09 17:41:22 -0700354 if (start == len) {
355 printf("verification read succeeded (attempt %zu)\n", attempt+1);
356 success = true;
Doug Zongkerf291d852010-07-07 13:55:25 -0700357 break;
Doug Zongker044a0b42013-07-08 09:42:54 -0700358 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800359 }
Doug Zongker512536a2010-02-17 16:11:44 -0800360
Elliott Hughes63a31922016-06-09 17:41:22 -0700361 if (!success) {
362 printf("failed to verify after all attempts\n");
363 return -1;
364 }
365
366 if (ota_close(fd) != 0) {
367 printf("error closing %s (%s)\n", partition, strerror(errno));
368 return -1;
369 }
370 sync();
371
Doug Zongkerc4351c72010-02-22 14:46:32 -0800372 return 0;
Doug Zongker512536a2010-02-17 16:11:44 -0800373}
374
375
376// Take a string 'str' of 40 hex digits and parse it into the 20
377// byte array 'digest'. 'str' may contain only the digest or be of
378// the form "<digest>:<anything>". Return 0 on success, -1 on any
379// error.
380int ParseSha1(const char* str, uint8_t* digest) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800381 const char* ps = str;
382 uint8_t* pd = digest;
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800383 for (int i = 0; i < SHA_DIGEST_LENGTH * 2; ++i, ++ps) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800384 int digit;
385 if (*ps >= '0' && *ps <= '9') {
386 digit = *ps - '0';
387 } else if (*ps >= 'a' && *ps <= 'f') {
388 digit = *ps - 'a' + 10;
389 } else if (*ps >= 'A' && *ps <= 'F') {
390 digit = *ps - 'A' + 10;
391 } else {
392 return -1;
393 }
394 if (i % 2 == 0) {
395 *pd = digit << 4;
396 } else {
397 *pd |= digit;
398 ++pd;
399 }
Doug Zongker512536a2010-02-17 16:11:44 -0800400 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800401 if (*ps != '\0') return -1;
402 return 0;
Doug Zongker512536a2010-02-17 16:11:44 -0800403}
404
Doug Zongkerc4351c72010-02-22 14:46:32 -0800405// Search an array of sha1 strings for one matching the given sha1.
406// Return the index of the match on success, or -1 if no match is
407// found.
Doug Zongker044a0b42013-07-08 09:42:54 -0700408int FindMatchingPatch(uint8_t* sha1, char* const * const patch_sha1_str,
Doug Zongkerc4351c72010-02-22 14:46:32 -0800409 int num_patches) {
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800410 uint8_t patch_sha1[SHA_DIGEST_LENGTH];
Tao Baoba9a42a2015-06-23 23:23:33 -0700411 for (int i = 0; i < num_patches; ++i) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800412 if (ParseSha1(patch_sha1_str[i], patch_sha1) == 0 &&
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800413 memcmp(patch_sha1, sha1, SHA_DIGEST_LENGTH) == 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800414 return i;
415 }
Doug Zongker512536a2010-02-17 16:11:44 -0800416 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800417 return -1;
Doug Zongker512536a2010-02-17 16:11:44 -0800418}
419
420// Returns 0 if the contents of the file (argv[2]) or the cached file
421// match any of the sha1's on the command line (argv[3:]). Returns
422// nonzero otherwise.
Tao Baoba9a42a2015-06-23 23:23:33 -0700423int applypatch_check(const char* filename, int num_patches,
424 char** const patch_sha1_str) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800425 FileContents file;
Doug Zongker512536a2010-02-17 16:11:44 -0800426
Doug Zongkerc4351c72010-02-22 14:46:32 -0800427 // It's okay to specify no sha1s; the check will pass if the
Doug Zongkerf291d852010-07-07 13:55:25 -0700428 // LoadFileContents is successful. (Useful for reading
Doug Zongkerc4351c72010-02-22 14:46:32 -0800429 // partitions, where the filename encodes the sha1s; no need to
430 // check them twice.)
Doug Zongkera1bc1482014-02-13 15:18:19 -0800431 if (LoadFileContents(filename, &file) != 0 ||
Doug Zongkerc4351c72010-02-22 14:46:32 -0800432 (num_patches > 0 &&
433 FindMatchingPatch(file.sha1, patch_sha1_str, num_patches) < 0)) {
434 printf("file \"%s\" doesn't have any of expected "
435 "sha1 sums; checking cache\n", filename);
Doug Zongker512536a2010-02-17 16:11:44 -0800436
Doug Zongkerc4351c72010-02-22 14:46:32 -0800437 // If the source file is missing or corrupted, it might be because
438 // we were killed in the middle of patching it. A copy of it
439 // should have been made in CACHE_TEMP_SOURCE. If that file
440 // exists and matches the sha1 we're looking for, the check still
441 // passes.
442
Doug Zongkera1bc1482014-02-13 15:18:19 -0800443 if (LoadFileContents(CACHE_TEMP_SOURCE, &file) != 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800444 printf("failed to load cache file\n");
445 return 1;
446 }
447
448 if (FindMatchingPatch(file.sha1, patch_sha1_str, num_patches) < 0) {
449 printf("cache bits don't match any sha1 for \"%s\"\n", filename);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800450 return 1;
451 }
452 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800453 return 0;
Doug Zongker512536a2010-02-17 16:11:44 -0800454}
455
456int ShowLicenses() {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800457 ShowBSDiffLicense();
458 return 0;
Doug Zongker512536a2010-02-17 16:11:44 -0800459}
460
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700461ssize_t FileSink(const unsigned char* data, ssize_t len, void* token) {
Yabin Cuid483c202016-02-03 17:08:52 -0800462 int fd = *static_cast<int*>(token);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800463 ssize_t done = 0;
464 ssize_t wrote;
Tao Baoba9a42a2015-06-23 23:23:33 -0700465 while (done < len) {
Jed Estepa7b9a462015-12-15 16:04:53 -0800466 wrote = TEMP_FAILURE_RETRY(ota_write(fd, data+done, len-done));
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700467 if (wrote == -1) {
Tao Baoba9a42a2015-06-23 23:23:33 -0700468 printf("error writing %zd bytes: %s\n", (len-done), strerror(errno));
Doug Zongkerc4351c72010-02-22 14:46:32 -0800469 return done;
470 }
471 done += wrote;
Doug Zongker512536a2010-02-17 16:11:44 -0800472 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800473 return done;
Doug Zongker512536a2010-02-17 16:11:44 -0800474}
475
Doug Zongkerbc7ffed2014-08-15 14:31:52 -0700476ssize_t MemorySink(const unsigned char* data, ssize_t len, void* token) {
Yabin Cuid483c202016-02-03 17:08:52 -0800477 std::string* s = static_cast<std::string*>(token);
478 s->append(reinterpret_cast<const char*>(data), len);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800479 return len;
Doug Zongker512536a2010-02-17 16:11:44 -0800480}
481
482// Return the amount of free space (in bytes) on the filesystem
483// containing filename. filename must exist. Return -1 on error.
484size_t FreeSpaceForFile(const char* filename) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800485 struct statfs sf;
486 if (statfs(filename, &sf) != 0) {
487 printf("failed to statfs %s: %s\n", filename, strerror(errno));
488 return -1;
489 }
caozhiyuan3b497762015-05-19 17:21:00 +0800490 return sf.f_bsize * sf.f_bavail;
Doug Zongker512536a2010-02-17 16:11:44 -0800491}
492
Doug Zongkerc4351c72010-02-22 14:46:32 -0800493int CacheSizeCheck(size_t bytes) {
494 if (MakeFreeSpaceOnCache(bytes) < 0) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700495 printf("unable to make %zu bytes available on /cache\n", bytes);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800496 return 1;
497 } else {
498 return 0;
499 }
500}
501
Doug Zongkerc4351c72010-02-22 14:46:32 -0800502// This function applies binary patches to files in a way that is safe
Doug Zongker512536a2010-02-17 16:11:44 -0800503// (the original file is not touched until we have the desired
504// replacement for it) and idempotent (it's okay to run this program
505// multiple times).
506//
Doug Zongkerc4351c72010-02-22 14:46:32 -0800507// - if the sha1 hash of <target_filename> is <target_sha1_string>,
508// does nothing and exits successfully.
Doug Zongker512536a2010-02-17 16:11:44 -0800509//
Doug Zongkerc4351c72010-02-22 14:46:32 -0800510// - otherwise, if the sha1 hash of <source_filename> is one of the
511// entries in <patch_sha1_str>, the corresponding patch from
512// <patch_data> (which must be a VAL_BLOB) is applied to produce a
513// new file (the type of patch is automatically detected from the
Tao Baoabba55b2015-07-17 18:11:12 -0700514// blob data). If that new file has sha1 hash <target_sha1_str>,
Doug Zongkerc4351c72010-02-22 14:46:32 -0800515// moves it to replace <target_filename>, and exits successfully.
516// Note that if <source_filename> and <target_filename> are not the
517// same, <source_filename> is NOT deleted on success.
518// <target_filename> may be the string "-" to mean "the same as
519// source_filename".
Doug Zongker512536a2010-02-17 16:11:44 -0800520//
521// - otherwise, or if any error is encountered, exits with non-zero
522// status.
523//
Doug Zongkerf291d852010-07-07 13:55:25 -0700524// <source_filename> may refer to a partition to read the source data.
Tao Baoabba55b2015-07-17 18:11:12 -0700525// See the comments for the LoadPartitionContents() function above
Doug Zongkerc4351c72010-02-22 14:46:32 -0800526// for the format of such a filename.
Doug Zongker512536a2010-02-17 16:11:44 -0800527
Doug Zongkerc4351c72010-02-22 14:46:32 -0800528int applypatch(const char* source_filename,
529 const char* target_filename,
530 const char* target_sha1_str,
531 size_t target_size,
532 int num_patches,
533 char** const patch_sha1_str,
Doug Zongkera3ccba62012-08-20 15:28:02 -0700534 Value** patch_data,
535 Value* bonus_data) {
Doug Zongkerbf80f492012-10-19 12:24:26 -0700536 printf("patch %s: ", source_filename);
Doug Zongker512536a2010-02-17 16:11:44 -0800537
Tao Baoba9a42a2015-06-23 23:23:33 -0700538 if (target_filename[0] == '-' && target_filename[1] == '\0') {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800539 target_filename = source_filename;
Doug Zongker512536a2010-02-17 16:11:44 -0800540 }
541
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800542 uint8_t target_sha1[SHA_DIGEST_LENGTH];
Doug Zongkerc4351c72010-02-22 14:46:32 -0800543 if (ParseSha1(target_sha1_str, target_sha1) != 0) {
544 printf("failed to parse tgt-sha1 \"%s\"\n", target_sha1_str);
Doug Zongker512536a2010-02-17 16:11:44 -0800545 return 1;
Doug Zongkerc4351c72010-02-22 14:46:32 -0800546 }
Doug Zongker512536a2010-02-17 16:11:44 -0800547
Doug Zongkerc4351c72010-02-22 14:46:32 -0800548 FileContents copy_file;
549 FileContents source_file;
550 const Value* source_patch_value = NULL;
551 const Value* copy_patch_value = NULL;
Doug Zongker512536a2010-02-17 16:11:44 -0800552
Doug Zongkerc4351c72010-02-22 14:46:32 -0800553 // We try to load the target file into the source_file object.
Doug Zongkera1bc1482014-02-13 15:18:19 -0800554 if (LoadFileContents(target_filename, &source_file) == 0) {
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800555 if (memcmp(source_file.sha1, target_sha1, SHA_DIGEST_LENGTH) == 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800556 // The early-exit case: the patch was already applied, this file
557 // has the desired hash, nothing for us to do.
Tao Baoabba55b2015-07-17 18:11:12 -0700558 printf("already %s\n", short_sha1(target_sha1).c_str());
Doug Zongkerc4351c72010-02-22 14:46:32 -0800559 return 0;
560 }
561 }
Doug Zongker512536a2010-02-17 16:11:44 -0800562
Yabin Cuid6c93af2016-02-10 16:41:10 -0800563 if (source_file.data.empty() ||
Doug Zongkerc4351c72010-02-22 14:46:32 -0800564 (target_filename != source_filename &&
565 strcmp(target_filename, source_filename) != 0)) {
566 // Need to load the source file: either we failed to load the
567 // target file, or we did but it's different from the source file.
Yabin Cuid6c93af2016-02-10 16:41:10 -0800568 source_file.data.clear();
Doug Zongkera1bc1482014-02-13 15:18:19 -0800569 LoadFileContents(source_filename, &source_file);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800570 }
571
Yabin Cuid6c93af2016-02-10 16:41:10 -0800572 if (!source_file.data.empty()) {
Tao Baoba9a42a2015-06-23 23:23:33 -0700573 int to_use = FindMatchingPatch(source_file.sha1, patch_sha1_str, num_patches);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800574 if (to_use >= 0) {
575 source_patch_value = patch_data[to_use];
576 }
577 }
578
579 if (source_patch_value == NULL) {
Yabin Cuid6c93af2016-02-10 16:41:10 -0800580 source_file.data.clear();
Doug Zongkerc4351c72010-02-22 14:46:32 -0800581 printf("source file is bad; trying copy\n");
582
Doug Zongkera1bc1482014-02-13 15:18:19 -0800583 if (LoadFileContents(CACHE_TEMP_SOURCE, &copy_file) < 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800584 // fail.
585 printf("failed to read copy file\n");
586 return 1;
Doug Zongker512536a2010-02-17 16:11:44 -0800587 }
588
Tao Baoba9a42a2015-06-23 23:23:33 -0700589 int to_use = FindMatchingPatch(copy_file.sha1, patch_sha1_str, num_patches);
Doug Zongker8cd9e4f2010-08-12 17:38:09 -0700590 if (to_use >= 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800591 copy_patch_value = patch_data[to_use];
Doug Zongker512536a2010-02-17 16:11:44 -0800592 }
593
Doug Zongkerc4351c72010-02-22 14:46:32 -0800594 if (copy_patch_value == NULL) {
595 // fail.
596 printf("copy file doesn't match source SHA-1s either\n");
597 return 1;
Doug Zongker512536a2010-02-17 16:11:44 -0800598 }
Doug Zongker512536a2010-02-17 16:11:44 -0800599 }
600
Yabin Cuid6c93af2016-02-10 16:41:10 -0800601 return GenerateTarget(&source_file, source_patch_value,
602 &copy_file, copy_patch_value,
603 source_filename, target_filename,
604 target_sha1, target_size, bonus_data);
Doug Zongker1c43c972012-02-28 11:07:09 -0800605}
606
Tao Baoabba55b2015-07-17 18:11:12 -0700607/*
608 * This function flashes a given image to the target partition. It verifies
609 * the target cheksum first, and will return if target has the desired hash.
610 * It checks the checksum of the given source image before flashing, and
611 * verifies the target partition afterwards. The function is idempotent.
612 * Returns zero on success.
613 */
614int applypatch_flash(const char* source_filename, const char* target_filename,
615 const char* target_sha1_str, size_t target_size) {
616 printf("flash %s: ", target_filename);
617
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800618 uint8_t target_sha1[SHA_DIGEST_LENGTH];
Tao Baoabba55b2015-07-17 18:11:12 -0700619 if (ParseSha1(target_sha1_str, target_sha1) != 0) {
620 printf("failed to parse tgt-sha1 \"%s\"\n", target_sha1_str);
621 return 1;
622 }
623
624 FileContents source_file;
Tao Baoabba55b2015-07-17 18:11:12 -0700625 std::string target_str(target_filename);
626
627 std::vector<std::string> pieces = android::base::Split(target_str, ":");
Elliott Hughes63a31922016-06-09 17:41:22 -0700628 if (pieces.size() != 2 || pieces[0] != "EMMC") {
Tao Baoabba55b2015-07-17 18:11:12 -0700629 printf("invalid target name \"%s\"", target_filename);
630 return 1;
631 }
632
633 // Load the target into the source_file object to see if already applied.
634 pieces.push_back(std::to_string(target_size));
635 pieces.push_back(target_sha1_str);
636 std::string fullname = android::base::Join(pieces, ':');
637 if (LoadPartitionContents(fullname.c_str(), &source_file) == 0 &&
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800638 memcmp(source_file.sha1, target_sha1, SHA_DIGEST_LENGTH) == 0) {
Tao Baoabba55b2015-07-17 18:11:12 -0700639 // The early-exit case: the image was already applied, this partition
640 // has the desired hash, nothing for us to do.
641 printf("already %s\n", short_sha1(target_sha1).c_str());
Tao Baoabba55b2015-07-17 18:11:12 -0700642 return 0;
643 }
644
645 if (LoadFileContents(source_filename, &source_file) == 0) {
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800646 if (memcmp(source_file.sha1, target_sha1, SHA_DIGEST_LENGTH) != 0) {
Tao Baoabba55b2015-07-17 18:11:12 -0700647 // The source doesn't have desired checksum.
648 printf("source \"%s\" doesn't have expected sha1 sum\n", source_filename);
649 printf("expected: %s, found: %s\n", short_sha1(target_sha1).c_str(),
650 short_sha1(source_file.sha1).c_str());
Tao Baoabba55b2015-07-17 18:11:12 -0700651 return 1;
652 }
653 }
654
Yabin Cuid6c93af2016-02-10 16:41:10 -0800655 if (WriteToPartition(source_file.data.data(), target_size, target_filename) != 0) {
Tao Baoabba55b2015-07-17 18:11:12 -0700656 printf("write of copied data to %s failed\n", target_filename);
Tao Baoabba55b2015-07-17 18:11:12 -0700657 return 1;
658 }
Tao Baoabba55b2015-07-17 18:11:12 -0700659 return 0;
660}
661
Doug Zongker1c43c972012-02-28 11:07:09 -0800662static int GenerateTarget(FileContents* source_file,
663 const Value* source_patch_value,
664 FileContents* copy_file,
665 const Value* copy_patch_value,
666 const char* source_filename,
667 const char* target_filename,
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800668 const uint8_t target_sha1[SHA_DIGEST_LENGTH],
Doug Zongkera3ccba62012-08-20 15:28:02 -0700669 size_t target_size,
670 const Value* bonus_data) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800671 int retry = 1;
672 SHA_CTX ctx;
Yabin Cuid483c202016-02-03 17:08:52 -0800673 std::string memory_sink_str;
Doug Zongkerc4351c72010-02-22 14:46:32 -0800674 FileContents* source_to_use;
Doug Zongker1c43c972012-02-28 11:07:09 -0800675 int made_copy = 0;
Doug Zongkerc4351c72010-02-22 14:46:32 -0800676
Elliott Hughes63a31922016-06-09 17:41:22 -0700677 bool target_is_partition = (strncmp(target_filename, "EMMC:", 5) == 0);
Yabin Cuid483c202016-02-03 17:08:52 -0800678 const std::string tmp_target_filename = std::string(target_filename) + ".patch";
679
Doug Zongkerc4351c72010-02-22 14:46:32 -0800680 // assume that target_filename (eg "/system/app/Foo.apk") is located
681 // on the same filesystem as its top-level directory ("/system").
682 // We need something that exists for calling statfs().
Yabin Cuid483c202016-02-03 17:08:52 -0800683 std::string target_fs = target_filename;
684 auto slash_pos = target_fs.find('/', 1);
685 if (slash_pos != std::string::npos) {
686 target_fs.resize(slash_pos);
687 }
688
689 const Value* patch;
690 if (source_patch_value != NULL) {
691 source_to_use = source_file;
692 patch = source_patch_value;
Doug Zongker512536a2010-02-17 16:11:44 -0800693 } else {
Yabin Cuid483c202016-02-03 17:08:52 -0800694 source_to_use = copy_file;
695 patch = copy_patch_value;
696 }
697 if (patch->type != VAL_BLOB) {
698 printf("patch is not a blob\n");
699 return 1;
700 }
701 char* header = patch->data;
702 ssize_t header_bytes_read = patch->size;
703 bool use_bsdiff = false;
704 if (header_bytes_read >= 8 && memcmp(header, "BSDIFF40", 8) == 0) {
705 use_bsdiff = true;
706 } else if (header_bytes_read >= 8 && memcmp(header, "IMGDIFF2", 8) == 0) {
707 use_bsdiff = false;
708 } else {
709 printf("Unknown patch file format\n");
710 return 1;
Doug Zongker512536a2010-02-17 16:11:44 -0800711 }
712
Doug Zongkerc4351c72010-02-22 14:46:32 -0800713 do {
714 // Is there enough room in the target filesystem to hold the patched
715 // file?
716
Yabin Cuid483c202016-02-03 17:08:52 -0800717 if (target_is_partition) {
Doug Zongkerf291d852010-07-07 13:55:25 -0700718 // If the target is a partition, we're actually going to
719 // write the output to /tmp and then copy it to the
720 // partition. statfs() always returns 0 blocks free for
721 // /tmp, so instead we'll just assume that /tmp has enough
722 // space to hold the file.
Doug Zongkerc4351c72010-02-22 14:46:32 -0800723
Doug Zongkerf291d852010-07-07 13:55:25 -0700724 // We still write the original source to cache, in case
725 // the partition write is interrupted.
Yabin Cuid6c93af2016-02-10 16:41:10 -0800726 if (MakeFreeSpaceOnCache(source_file->data.size()) < 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800727 printf("not enough free space on /cache\n");
728 return 1;
729 }
730 if (SaveFileContents(CACHE_TEMP_SOURCE, source_file) < 0) {
731 printf("failed to back up source file\n");
732 return 1;
733 }
734 made_copy = 1;
735 retry = 0;
736 } else {
737 int enough_space = 0;
738 if (retry > 0) {
Yabin Cuid483c202016-02-03 17:08:52 -0800739 size_t free_space = FreeSpaceForFile(target_fs.c_str());
Doug Zongker201cd462010-08-13 09:41:21 -0700740 enough_space =
741 (free_space > (256 << 10)) && // 256k (two-block) minimum
Doug Zongkerc4351c72010-02-22 14:46:32 -0800742 (free_space > (target_size * 3 / 2)); // 50% margin of error
Doug Zongkerbf80f492012-10-19 12:24:26 -0700743 if (!enough_space) {
Tao Baoba9a42a2015-06-23 23:23:33 -0700744 printf("target %zu bytes; free space %zu bytes; retry %d; enough %d\n",
745 target_size, free_space, retry, enough_space);
Doug Zongkerbf80f492012-10-19 12:24:26 -0700746 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800747 }
748
749 if (!enough_space) {
750 retry = 0;
751 }
752
753 if (!enough_space && source_patch_value != NULL) {
754 // Using the original source, but not enough free space. First
755 // copy the source file to cache, then delete it from the original
756 // location.
757
Elliott Hughes63a31922016-06-09 17:41:22 -0700758 if (strncmp(source_filename, "EMMC:", 5) == 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800759 // It's impossible to free space on the target filesystem by
Doug Zongkerf291d852010-07-07 13:55:25 -0700760 // deleting the source if the source is a partition. If
Doug Zongkerc4351c72010-02-22 14:46:32 -0800761 // we're ever in a state where we need to do this, fail.
Tao Baoba9a42a2015-06-23 23:23:33 -0700762 printf("not enough free space for target but source is partition\n");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800763 return 1;
764 }
765
Yabin Cuid6c93af2016-02-10 16:41:10 -0800766 if (MakeFreeSpaceOnCache(source_file->data.size()) < 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800767 printf("not enough free space on /cache\n");
768 return 1;
769 }
770
771 if (SaveFileContents(CACHE_TEMP_SOURCE, source_file) < 0) {
772 printf("failed to back up source file\n");
773 return 1;
774 }
775 made_copy = 1;
776 unlink(source_filename);
777
Yabin Cuid483c202016-02-03 17:08:52 -0800778 size_t free_space = FreeSpaceForFile(target_fs.c_str());
Tao Baoba9a42a2015-06-23 23:23:33 -0700779 printf("(now %zu bytes free for target) ", free_space);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800780 }
781 }
782
Doug Zongkerc4351c72010-02-22 14:46:32 -0800783
784 SinkFn sink = NULL;
785 void* token = NULL;
Yabin Cuid483c202016-02-03 17:08:52 -0800786 int output_fd = -1;
787 if (target_is_partition) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800788 // We store the decoded output in memory.
Doug Zongkerc4351c72010-02-22 14:46:32 -0800789 sink = MemorySink;
Yabin Cuid483c202016-02-03 17:08:52 -0800790 token = &memory_sink_str;
Doug Zongkerc4351c72010-02-22 14:46:32 -0800791 } else {
792 // We write the decoded output to "<tgt-file>.patch".
Jed Estepa7b9a462015-12-15 16:04:53 -0800793 output_fd = ota_open(tmp_target_filename.c_str(), O_WRONLY | O_CREAT | O_TRUNC | O_SYNC,
794 S_IRUSR | S_IWUSR);
Yabin Cuid483c202016-02-03 17:08:52 -0800795 if (output_fd < 0) {
796 printf("failed to open output file %s: %s\n", tmp_target_filename.c_str(),
797 strerror(errno));
Doug Zongkerc4351c72010-02-22 14:46:32 -0800798 return 1;
799 }
800 sink = FileSink;
Yabin Cuid483c202016-02-03 17:08:52 -0800801 token = &output_fd;
Doug Zongkerc4351c72010-02-22 14:46:32 -0800802 }
803
Doug Zongkerc4351c72010-02-22 14:46:32 -0800804
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800805 SHA1_Init(&ctx);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800806
807 int result;
Yabin Cuid483c202016-02-03 17:08:52 -0800808 if (use_bsdiff) {
Yabin Cuid6c93af2016-02-10 16:41:10 -0800809 result = ApplyBSDiffPatch(source_to_use->data.data(), source_to_use->data.size(),
Doug Zongkerc4351c72010-02-22 14:46:32 -0800810 patch, 0, sink, token, &ctx);
Yabin Cuid483c202016-02-03 17:08:52 -0800811 } else {
Yabin Cuid6c93af2016-02-10 16:41:10 -0800812 result = ApplyImagePatch(source_to_use->data.data(), source_to_use->data.size(),
Doug Zongkera3ccba62012-08-20 15:28:02 -0700813 patch, sink, token, &ctx, bonus_data);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800814 }
815
Yabin Cuid483c202016-02-03 17:08:52 -0800816 if (!target_is_partition) {
Jed Estepa7b9a462015-12-15 16:04:53 -0800817 if (ota_fsync(output_fd) != 0) {
Yabin Cuid483c202016-02-03 17:08:52 -0800818 printf("failed to fsync file \"%s\" (%s)\n", tmp_target_filename.c_str(),
819 strerror(errno));
Michael Rungebe81e512014-10-29 12:42:15 -0700820 result = 1;
821 }
Jed Estepa7b9a462015-12-15 16:04:53 -0800822 if (ota_close(output_fd) != 0) {
Yabin Cuid483c202016-02-03 17:08:52 -0800823 printf("failed to close file \"%s\" (%s)\n", tmp_target_filename.c_str(),
824 strerror(errno));
Michael Rungebe81e512014-10-29 12:42:15 -0700825 result = 1;
826 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800827 }
828
829 if (result != 0) {
830 if (retry == 0) {
831 printf("applying patch failed\n");
832 return result != 0;
833 } else {
834 printf("applying patch failed; retrying\n");
835 }
Yabin Cuid483c202016-02-03 17:08:52 -0800836 if (!target_is_partition) {
837 unlink(tmp_target_filename.c_str());
Doug Zongkerc4351c72010-02-22 14:46:32 -0800838 }
839 } else {
840 // succeeded; no need to retry
841 break;
842 }
843 } while (retry-- > 0);
844
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800845 uint8_t current_target_sha1[SHA_DIGEST_LENGTH];
846 SHA1_Final(current_target_sha1, &ctx);
847 if (memcmp(current_target_sha1, target_sha1, SHA_DIGEST_LENGTH) != 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800848 printf("patch did not produce expected sha1\n");
Doug Zongker512536a2010-02-17 16:11:44 -0800849 return 1;
Doug Zongkerbf80f492012-10-19 12:24:26 -0700850 } else {
Tao Baoabba55b2015-07-17 18:11:12 -0700851 printf("now %s\n", short_sha1(target_sha1).c_str());
Doug Zongkerc4351c72010-02-22 14:46:32 -0800852 }
853
Yabin Cuid483c202016-02-03 17:08:52 -0800854 if (target_is_partition) {
Doug Zongkerf291d852010-07-07 13:55:25 -0700855 // Copy the temp file to the partition.
Yabin Cuid483c202016-02-03 17:08:52 -0800856 if (WriteToPartition(reinterpret_cast<const unsigned char*>(memory_sink_str.c_str()),
857 memory_sink_str.size(), target_filename) != 0) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800858 printf("write of patched data to %s failed\n", target_filename);
859 return 1;
860 }
Doug Zongker512536a2010-02-17 16:11:44 -0800861 } else {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800862 // Give the .patch file the same owner, group, and mode of the
863 // original source file.
Yabin Cuid483c202016-02-03 17:08:52 -0800864 if (chmod(tmp_target_filename.c_str(), source_to_use->st.st_mode) != 0) {
865 printf("chmod of \"%s\" failed: %s\n", tmp_target_filename.c_str(), strerror(errno));
Doug Zongkerc4351c72010-02-22 14:46:32 -0800866 return 1;
867 }
Yabin Cuid483c202016-02-03 17:08:52 -0800868 if (chown(tmp_target_filename.c_str(), source_to_use->st.st_uid, source_to_use->st.st_gid) != 0) {
869 printf("chown of \"%s\" failed: %s\n", tmp_target_filename.c_str(), strerror(errno));
Doug Zongkerc4351c72010-02-22 14:46:32 -0800870 return 1;
871 }
Doug Zongker512536a2010-02-17 16:11:44 -0800872
Doug Zongkerc4351c72010-02-22 14:46:32 -0800873 // Finally, rename the .patch file to replace the target file.
Yabin Cuid483c202016-02-03 17:08:52 -0800874 if (rename(tmp_target_filename.c_str(), target_filename) != 0) {
Tao Baoba9a42a2015-06-23 23:23:33 -0700875 printf("rename of .patch to \"%s\" failed: %s\n", target_filename, strerror(errno));
Doug Zongkerc4351c72010-02-22 14:46:32 -0800876 return 1;
877 }
Doug Zongker512536a2010-02-17 16:11:44 -0800878 }
879
Doug Zongkerc4351c72010-02-22 14:46:32 -0800880 // If this run of applypatch created the copy, and we're here, we
881 // can delete it.
Tao Baoba9a42a2015-06-23 23:23:33 -0700882 if (made_copy) {
883 unlink(CACHE_TEMP_SOURCE);
884 }
Doug Zongker512536a2010-02-17 16:11:44 -0800885
Doug Zongkerc4351c72010-02-22 14:46:32 -0800886 // Success!
887 return 0;
Doug Zongker512536a2010-02-17 16:11:44 -0800888}