2010-02-18 01:11:44 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
2015-06-24 08:23:33 +02:00
|
|
|
#include <fcntl.h>
|
2010-02-18 01:11:44 +01:00
|
|
|
#include <libgen.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/statfs.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2015-07-17 20:47:44 +02:00
|
|
|
#include <base/strings.h>
|
|
|
|
|
2010-02-18 01:11:44 +01:00
|
|
|
#include "mincrypt/sha.h"
|
|
|
|
#include "applypatch.h"
|
|
|
|
#include "mtdutils/mtdutils.h"
|
2010-02-22 23:46:32 +01:00
|
|
|
#include "edify/expr.h"
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-07-07 22:55:25 +02:00
|
|
|
static int LoadPartitionContents(const char* filename, FileContents* file);
|
2014-08-15 23:31:52 +02:00
|
|
|
static ssize_t FileSink(const unsigned char* data, ssize_t len, void* token);
|
2012-02-28 20:07:09 +01:00
|
|
|
static int GenerateTarget(FileContents* source_file,
|
|
|
|
const Value* source_patch_value,
|
|
|
|
FileContents* copy_file,
|
|
|
|
const Value* copy_patch_value,
|
|
|
|
const char* source_filename,
|
|
|
|
const char* target_filename,
|
|
|
|
const uint8_t target_sha1[SHA_DIGEST_SIZE],
|
2012-08-21 00:28:02 +02:00
|
|
|
size_t target_size,
|
|
|
|
const Value* bonus_data);
|
2015-07-18 03:11:12 +02:00
|
|
|
static std::string short_sha1(const uint8_t sha1[SHA_DIGEST_SIZE]);
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2015-07-17 20:47:44 +02:00
|
|
|
static bool mtd_partitions_scanned = false;
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2014-02-14 00:18:19 +01:00
|
|
|
// Read a file into memory; store the file contents and associated
|
2010-08-02 19:29:49 +02:00
|
|
|
// metadata in *file.
|
|
|
|
//
|
|
|
|
// Return 0 on success.
|
2014-02-14 00:18:19 +01:00
|
|
|
int LoadFileContents(const char* filename, FileContents* file) {
|
2010-02-22 23:46:32 +01:00
|
|
|
file->data = NULL;
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-07-07 22:55:25 +02:00
|
|
|
// A special 'filename' beginning with "MTD:" or "EMMC:" means to
|
|
|
|
// load the contents of a partition.
|
|
|
|
if (strncmp(filename, "MTD:", 4) == 0 ||
|
|
|
|
strncmp(filename, "EMMC:", 5) == 0) {
|
|
|
|
return LoadPartitionContents(filename, file);
|
2010-02-22 23:46:32 +01:00
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-02-22 23:46:32 +01:00
|
|
|
if (stat(filename, &file->st) != 0) {
|
|
|
|
printf("failed to stat \"%s\": %s\n", filename, strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-02-22 23:46:32 +01:00
|
|
|
file->size = file->st.st_size;
|
2015-06-24 08:23:33 +02:00
|
|
|
file->data = reinterpret_cast<unsigned char*>(malloc(file->size));
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-02-22 23:46:32 +01:00
|
|
|
FILE* f = fopen(filename, "rb");
|
|
|
|
if (f == NULL) {
|
|
|
|
printf("failed to open \"%s\": %s\n", filename, strerror(errno));
|
|
|
|
free(file->data);
|
|
|
|
file->data = NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2015-06-24 08:23:33 +02:00
|
|
|
size_t bytes_read = fread(file->data, 1, file->size, f);
|
|
|
|
if (bytes_read != static_cast<size_t>(file->size)) {
|
|
|
|
printf("short read of \"%s\" (%zu bytes of %zd)\n", filename, bytes_read, file->size);
|
2010-02-22 23:46:32 +01:00
|
|
|
free(file->data);
|
|
|
|
file->data = NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
fclose(f);
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2013-04-10 20:32:17 +02:00
|
|
|
SHA_hash(file->data, file->size, file->sha1);
|
2010-02-22 23:46:32 +01:00
|
|
|
return 0;
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
|
|
|
|
2010-07-07 22:55:25 +02:00
|
|
|
// Load the contents of an MTD or EMMC partition into the provided
|
2010-02-18 01:11:44 +01:00
|
|
|
// FileContents. filename should be a string of the form
|
2010-07-07 22:55:25 +02:00
|
|
|
// "MTD:<partition_name>:<size_1>:<sha1_1>:<size_2>:<sha1_2>:..." (or
|
|
|
|
// "EMMC:<partition_device>:..."). The smallest size_n bytes for
|
|
|
|
// which that prefix of the partition contents has the corresponding
|
|
|
|
// sha1 hash will be loaded. It is acceptable for a size value to be
|
|
|
|
// repeated with different sha1s. Will return 0 on success.
|
2010-02-18 01:11:44 +01:00
|
|
|
//
|
|
|
|
// This complexity is needed because if an OTA installation is
|
|
|
|
// interrupted, the partition might contain either the source or the
|
|
|
|
// target data, which might be of different lengths. We need to know
|
2010-07-07 22:55:25 +02:00
|
|
|
// the length in order to read from a partition (there is no
|
|
|
|
// "end-of-file" marker), so the caller must specify the possible
|
|
|
|
// lengths and the hash of the data, and we'll do the load expecting
|
|
|
|
// to find one of those hashes.
|
|
|
|
enum PartitionType { MTD, EMMC };
|
|
|
|
|
|
|
|
static int LoadPartitionContents(const char* filename, FileContents* file) {
|
2015-07-17 20:47:44 +02:00
|
|
|
std::string copy(filename);
|
|
|
|
std::vector<std::string> pieces = android::base::Split(copy, ":");
|
|
|
|
if (pieces.size() < 4 || pieces.size() % 2 != 0) {
|
|
|
|
printf("LoadPartitionContents called with bad filename (%s)\n", filename);
|
|
|
|
return -1;
|
|
|
|
}
|
2010-07-07 22:55:25 +02:00
|
|
|
|
|
|
|
enum PartitionType type;
|
2015-07-17 20:47:44 +02:00
|
|
|
if (pieces[0] == "MTD") {
|
2010-07-07 22:55:25 +02:00
|
|
|
type = MTD;
|
2015-07-17 20:47:44 +02:00
|
|
|
} else if (pieces[0] == "EMMC") {
|
2010-07-07 22:55:25 +02:00
|
|
|
type = EMMC;
|
|
|
|
} else {
|
2015-06-24 08:23:33 +02:00
|
|
|
printf("LoadPartitionContents called with bad filename (%s)\n", filename);
|
2010-02-18 01:11:44 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2015-07-17 20:47:44 +02:00
|
|
|
const char* partition = pieces[1].c_str();
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2015-07-17 20:47:44 +02:00
|
|
|
size_t pairs = (pieces.size() - 2) / 2; // # of (size, sha1) pairs in filename
|
|
|
|
std::vector<size_t> index(pairs);
|
|
|
|
std::vector<size_t> size(pairs);
|
|
|
|
std::vector<std::string> sha1sum(pairs);
|
2010-02-22 23:46:32 +01:00
|
|
|
|
2015-07-17 20:47:44 +02:00
|
|
|
for (size_t i = 0; i < pairs; ++i) {
|
|
|
|
size[i] = strtol(pieces[i*2+2].c_str(), NULL, 10);
|
2010-02-22 23:46:32 +01:00
|
|
|
if (size[i] == 0) {
|
2010-07-07 22:55:25 +02:00
|
|
|
printf("LoadPartitionContents called with bad size (%s)\n", filename);
|
2010-02-22 23:46:32 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2015-07-17 20:47:44 +02:00
|
|
|
sha1sum[i] = pieces[i*2+3].c_str();
|
2010-02-22 23:46:32 +01:00
|
|
|
index[i] = i;
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
|
|
|
|
2015-07-17 20:47:44 +02:00
|
|
|
// Sort the index[] array so it indexes the pairs in order of increasing size.
|
|
|
|
sort(index.begin(), index.end(),
|
|
|
|
[&](const size_t& i, const size_t& j) {
|
|
|
|
return (size[i] < size[j]);
|
|
|
|
}
|
|
|
|
);
|
2010-02-22 23:46:32 +01:00
|
|
|
|
2010-07-07 22:55:25 +02:00
|
|
|
MtdReadContext* ctx = NULL;
|
|
|
|
FILE* dev = NULL;
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-07-07 22:55:25 +02:00
|
|
|
switch (type) {
|
2015-06-24 08:23:33 +02:00
|
|
|
case MTD: {
|
2010-07-07 22:55:25 +02:00
|
|
|
if (!mtd_partitions_scanned) {
|
|
|
|
mtd_scan_partitions();
|
2015-07-17 20:47:44 +02:00
|
|
|
mtd_partitions_scanned = true;
|
2010-07-07 22:55:25 +02:00
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-07-07 22:55:25 +02:00
|
|
|
const MtdPartition* mtd = mtd_find_partition_by_name(partition);
|
|
|
|
if (mtd == NULL) {
|
2015-07-17 20:47:44 +02:00
|
|
|
printf("mtd partition \"%s\" not found (loading %s)\n", partition, filename);
|
2010-07-07 22:55:25 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx = mtd_read_partition(mtd);
|
|
|
|
if (ctx == NULL) {
|
2015-07-17 20:47:44 +02:00
|
|
|
printf("failed to initialize read of mtd partition \"%s\"\n", partition);
|
2010-07-07 22:55:25 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
2015-06-24 08:23:33 +02:00
|
|
|
}
|
2010-07-07 22:55:25 +02:00
|
|
|
|
|
|
|
case EMMC:
|
|
|
|
dev = fopen(partition, "rb");
|
|
|
|
if (dev == NULL) {
|
2015-07-17 20:47:44 +02:00
|
|
|
printf("failed to open emmc partition \"%s\": %s\n", partition, strerror(errno));
|
2010-07-07 22:55:25 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2010-02-22 23:46:32 +01:00
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-02-22 23:46:32 +01:00
|
|
|
SHA_CTX sha_ctx;
|
|
|
|
SHA_init(&sha_ctx);
|
|
|
|
uint8_t parsed_sha[SHA_DIGEST_SIZE];
|
|
|
|
|
2015-07-17 20:47:44 +02:00
|
|
|
// Allocate enough memory to hold the largest size.
|
2015-06-24 08:23:33 +02:00
|
|
|
file->data = reinterpret_cast<unsigned char*>(malloc(size[index[pairs-1]]));
|
2010-02-22 23:46:32 +01:00
|
|
|
char* p = (char*)file->data;
|
|
|
|
file->size = 0; // # bytes read so far
|
2015-07-17 20:47:44 +02:00
|
|
|
bool found = false;
|
2010-02-22 23:46:32 +01:00
|
|
|
|
2015-07-17 20:47:44 +02:00
|
|
|
for (size_t i = 0; i < pairs; ++i) {
|
|
|
|
// Read enough additional bytes to get us up to the next size. (Again,
|
|
|
|
// we're trying the possibilities in order of increasing size).
|
2010-02-22 23:46:32 +01:00
|
|
|
size_t next = size[index[i]] - file->size;
|
|
|
|
size_t read = 0;
|
|
|
|
if (next > 0) {
|
2010-07-07 22:55:25 +02:00
|
|
|
switch (type) {
|
|
|
|
case MTD:
|
|
|
|
read = mtd_read_data(ctx, p, next);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EMMC:
|
|
|
|
read = fread(p, 1, next, dev);
|
|
|
|
break;
|
|
|
|
}
|
2010-02-22 23:46:32 +01:00
|
|
|
if (next != read) {
|
2014-03-14 17:39:48 +01:00
|
|
|
printf("short read (%zu bytes of %zu) for partition \"%s\"\n",
|
2010-02-22 23:46:32 +01:00
|
|
|
read, next, partition);
|
|
|
|
free(file->data);
|
|
|
|
file->data = NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
SHA_update(&sha_ctx, p, read);
|
|
|
|
file->size += read;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Duplicate the SHA context and finalize the duplicate so we can
|
|
|
|
// check it against this pair's expected hash.
|
|
|
|
SHA_CTX temp_ctx;
|
|
|
|
memcpy(&temp_ctx, &sha_ctx, sizeof(SHA_CTX));
|
|
|
|
const uint8_t* sha_so_far = SHA_final(&temp_ctx);
|
|
|
|
|
2015-07-17 20:47:44 +02:00
|
|
|
if (ParseSha1(sha1sum[index[i]].c_str(), parsed_sha) != 0) {
|
|
|
|
printf("failed to parse sha1 %s in %s\n", sha1sum[index[i]].c_str(), filename);
|
2010-02-22 23:46:32 +01:00
|
|
|
free(file->data);
|
|
|
|
file->data = NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (memcmp(sha_so_far, parsed_sha, SHA_DIGEST_SIZE) == 0) {
|
|
|
|
// we have a match. stop reading the partition; we'll return
|
|
|
|
// the data we've read so far.
|
2014-03-14 17:39:48 +01:00
|
|
|
printf("partition read matched size %zu sha %s\n",
|
2015-07-17 20:47:44 +02:00
|
|
|
size[index[i]], sha1sum[index[i]].c_str());
|
|
|
|
found = true;
|
2010-02-22 23:46:32 +01:00
|
|
|
break;
|
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-02-22 23:46:32 +01:00
|
|
|
p += read;
|
|
|
|
}
|
|
|
|
|
2010-07-07 22:55:25 +02:00
|
|
|
switch (type) {
|
|
|
|
case MTD:
|
|
|
|
mtd_read_close(ctx);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EMMC:
|
|
|
|
fclose(dev);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-02-22 23:46:32 +01:00
|
|
|
|
2015-07-17 20:47:44 +02:00
|
|
|
if (!found) {
|
|
|
|
// Ran off the end of the list of (size,sha1) pairs without finding a match.
|
2015-06-24 08:23:33 +02:00
|
|
|
printf("contents of partition \"%s\" didn't match %s\n", partition, filename);
|
2010-02-22 23:46:32 +01:00
|
|
|
free(file->data);
|
|
|
|
file->data = NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
const uint8_t* sha_final = SHA_final(&sha_ctx);
|
2015-06-24 08:23:33 +02:00
|
|
|
for (size_t i = 0; i < SHA_DIGEST_SIZE; ++i) {
|
2010-02-22 23:46:32 +01:00
|
|
|
file->sha1[i] = sha_final[i];
|
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-02-22 23:46:32 +01:00
|
|
|
// Fake some stat() info.
|
|
|
|
file->st.st_mode = 0644;
|
|
|
|
file->st.st_uid = 0;
|
|
|
|
file->st.st_gid = 0;
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-02-22 23:46:32 +01:00
|
|
|
return 0;
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Save the contents of the given FileContents object under the given
|
|
|
|
// filename. Return 0 on success.
|
2012-02-28 20:07:09 +01:00
|
|
|
int SaveFileContents(const char* filename, const FileContents* file) {
|
2014-10-29 20:42:15 +01:00
|
|
|
int fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_SYNC, S_IRUSR | S_IWUSR);
|
2010-02-22 23:46:32 +01:00
|
|
|
if (fd < 0) {
|
2015-06-24 08:23:33 +02:00
|
|
|
printf("failed to open \"%s\" for write: %s\n", filename, strerror(errno));
|
2010-02-22 23:46:32 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2012-02-28 20:07:09 +01:00
|
|
|
ssize_t bytes_written = FileSink(file->data, file->size, &fd);
|
|
|
|
if (bytes_written != file->size) {
|
2015-06-24 08:23:33 +02:00
|
|
|
printf("short write of \"%s\" (%zd bytes of %zd) (%s)\n",
|
|
|
|
filename, bytes_written, file->size, strerror(errno));
|
2010-02-22 23:46:32 +01:00
|
|
|
close(fd);
|
|
|
|
return -1;
|
|
|
|
}
|
2014-10-29 20:42:15 +01:00
|
|
|
if (fsync(fd) != 0) {
|
|
|
|
printf("fsync of \"%s\" failed: %s\n", filename, strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (close(fd) != 0) {
|
|
|
|
printf("close of \"%s\" failed: %s\n", filename, strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2012-02-28 20:07:09 +01:00
|
|
|
if (chmod(filename, file->st.st_mode) != 0) {
|
2010-02-22 23:46:32 +01:00
|
|
|
printf("chmod of \"%s\" failed: %s\n", filename, strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
2012-02-28 20:07:09 +01:00
|
|
|
if (chown(filename, file->st.st_uid, file->st.st_gid) != 0) {
|
2010-02-22 23:46:32 +01:00
|
|
|
printf("chown of \"%s\" failed: %s\n", filename, strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-02-22 23:46:32 +01:00
|
|
|
return 0;
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
|
|
|
|
2010-07-07 22:55:25 +02:00
|
|
|
// Write a memory buffer to 'target' partition, a string of the form
|
2015-07-17 20:47:44 +02:00
|
|
|
// "MTD:<partition>[:...]" or "EMMC:<partition_device>". Return 0 on
|
2010-07-07 22:55:25 +02:00
|
|
|
// success.
|
2015-06-24 08:23:33 +02:00
|
|
|
int WriteToPartition(unsigned char* data, size_t len, const char* target) {
|
2015-07-17 20:47:44 +02:00
|
|
|
std::string copy(target);
|
|
|
|
std::vector<std::string> pieces = android::base::Split(copy, ":");
|
|
|
|
|
|
|
|
if (pieces.size() != 2) {
|
|
|
|
printf("WriteToPartition called with bad target (%s)\n", target);
|
|
|
|
return -1;
|
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-07-07 22:55:25 +02:00
|
|
|
enum PartitionType type;
|
2015-07-17 20:47:44 +02:00
|
|
|
if (pieces[0] == "MTD") {
|
2010-07-07 22:55:25 +02:00
|
|
|
type = MTD;
|
2015-07-17 20:47:44 +02:00
|
|
|
} else if (pieces[0] == "EMMC") {
|
2010-07-07 22:55:25 +02:00
|
|
|
type = EMMC;
|
|
|
|
} else {
|
|
|
|
printf("WriteToPartition called with bad target (%s)\n", target);
|
2010-02-22 23:46:32 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2015-07-17 20:47:44 +02:00
|
|
|
const char* partition = pieces[1].c_str();
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-07-07 22:55:25 +02:00
|
|
|
switch (type) {
|
2015-06-24 08:23:33 +02:00
|
|
|
case MTD: {
|
2010-07-07 22:55:25 +02:00
|
|
|
if (!mtd_partitions_scanned) {
|
|
|
|
mtd_scan_partitions();
|
2015-07-17 20:47:44 +02:00
|
|
|
mtd_partitions_scanned = true;
|
2010-07-07 22:55:25 +02:00
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-07-07 22:55:25 +02:00
|
|
|
const MtdPartition* mtd = mtd_find_partition_by_name(partition);
|
|
|
|
if (mtd == NULL) {
|
2015-06-24 08:23:33 +02:00
|
|
|
printf("mtd partition \"%s\" not found for writing\n", partition);
|
2010-07-07 22:55:25 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-07-07 22:55:25 +02:00
|
|
|
MtdWriteContext* ctx = mtd_write_partition(mtd);
|
|
|
|
if (ctx == NULL) {
|
2015-06-24 08:23:33 +02:00
|
|
|
printf("failed to init mtd partition \"%s\" for writing\n", partition);
|
2010-07-07 22:55:25 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-06-24 08:23:33 +02:00
|
|
|
size_t written = mtd_write_data(ctx, reinterpret_cast<char*>(data), len);
|
2010-07-07 22:55:25 +02:00
|
|
|
if (written != len) {
|
2015-06-24 08:23:33 +02:00
|
|
|
printf("only wrote %zu of %zu bytes to MTD %s\n", written, len, partition);
|
2010-07-07 22:55:25 +02:00
|
|
|
mtd_write_close(ctx);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mtd_erase_blocks(ctx, -1) < 0) {
|
|
|
|
printf("error finishing mtd write of %s\n", partition);
|
|
|
|
mtd_write_close(ctx);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mtd_write_close(ctx)) {
|
|
|
|
printf("error closing mtd write of %s\n", partition);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
2015-06-24 08:23:33 +02:00
|
|
|
}
|
2010-07-07 22:55:25 +02:00
|
|
|
|
2015-06-24 08:23:33 +02:00
|
|
|
case EMMC: {
|
2013-07-08 18:42:54 +02:00
|
|
|
size_t start = 0;
|
2015-06-24 08:23:33 +02:00
|
|
|
bool success = false;
|
2014-10-29 20:42:15 +01:00
|
|
|
int fd = open(partition, O_RDWR | O_SYNC);
|
2013-07-09 19:34:46 +02:00
|
|
|
if (fd < 0) {
|
2013-07-08 18:42:54 +02:00
|
|
|
printf("failed to open %s: %s\n", partition, strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-07-17 20:47:44 +02:00
|
|
|
for (size_t attempt = 0; attempt < 2; ++attempt) {
|
2015-04-29 02:24:24 +02:00
|
|
|
if (TEMP_FAILURE_RETRY(lseek(fd, start, SEEK_SET)) == -1) {
|
2015-06-24 08:23:33 +02:00
|
|
|
printf("failed seek on %s: %s\n", partition, strerror(errno));
|
2015-04-29 02:24:24 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2013-07-08 18:42:54 +02:00
|
|
|
while (start < len) {
|
|
|
|
size_t to_write = len - start;
|
2013-12-20 00:16:57 +01:00
|
|
|
if (to_write > 1<<20) to_write = 1<<20;
|
2013-07-09 19:34:46 +02:00
|
|
|
|
2015-04-29 02:24:24 +02:00
|
|
|
ssize_t written = TEMP_FAILURE_RETRY(write(fd, data+start, to_write));
|
|
|
|
if (written == -1) {
|
|
|
|
printf("failed write writing to %s: %s\n", partition, strerror(errno));
|
|
|
|
return -1;
|
2013-07-08 18:42:54 +02:00
|
|
|
}
|
2013-07-09 19:34:46 +02:00
|
|
|
start += written;
|
2013-07-08 18:42:54 +02:00
|
|
|
}
|
2014-10-29 20:42:15 +01:00
|
|
|
if (fsync(fd) != 0) {
|
2015-06-24 08:23:33 +02:00
|
|
|
printf("failed to sync to %s (%s)\n", partition, strerror(errno));
|
2014-10-29 20:42:15 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (close(fd) != 0) {
|
2015-06-24 08:23:33 +02:00
|
|
|
printf("failed to close %s (%s)\n", partition, strerror(errno));
|
2014-10-29 20:42:15 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
fd = open(partition, O_RDONLY);
|
|
|
|
if (fd < 0) {
|
2015-06-24 08:23:33 +02:00
|
|
|
printf("failed to reopen %s for verify (%s)\n", partition, strerror(errno));
|
2014-10-29 20:42:15 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2013-07-08 18:42:54 +02:00
|
|
|
|
2015-06-24 08:23:33 +02:00
|
|
|
// Drop caches so our subsequent verification read
|
2013-07-08 18:42:54 +02:00
|
|
|
// won't just be reading the cache.
|
|
|
|
sync();
|
2013-07-09 19:34:46 +02:00
|
|
|
int dc = open("/proc/sys/vm/drop_caches", O_WRONLY);
|
2015-04-29 02:24:24 +02:00
|
|
|
if (TEMP_FAILURE_RETRY(write(dc, "3\n", 2)) == -1) {
|
|
|
|
printf("write to /proc/sys/vm/drop_caches failed: %s\n", strerror(errno));
|
|
|
|
} else {
|
|
|
|
printf(" caches dropped\n");
|
|
|
|
}
|
2013-07-09 19:34:46 +02:00
|
|
|
close(dc);
|
2013-07-08 18:42:54 +02:00
|
|
|
sleep(1);
|
|
|
|
|
|
|
|
// verify
|
2015-04-29 02:24:24 +02:00
|
|
|
if (TEMP_FAILURE_RETRY(lseek(fd, 0, SEEK_SET)) == -1) {
|
|
|
|
printf("failed to seek back to beginning of %s: %s\n",
|
|
|
|
partition, strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
2013-07-08 18:42:54 +02:00
|
|
|
unsigned char buffer[4096];
|
|
|
|
start = len;
|
2015-06-24 08:23:33 +02:00
|
|
|
for (size_t p = 0; p < len; p += sizeof(buffer)) {
|
2013-07-08 18:42:54 +02:00
|
|
|
size_t to_read = len - p;
|
2015-06-24 08:23:33 +02:00
|
|
|
if (to_read > sizeof(buffer)) {
|
|
|
|
to_read = sizeof(buffer);
|
|
|
|
}
|
2013-07-08 18:42:54 +02:00
|
|
|
|
2013-07-09 19:34:46 +02:00
|
|
|
size_t so_far = 0;
|
|
|
|
while (so_far < to_read) {
|
2015-04-29 02:24:24 +02:00
|
|
|
ssize_t read_count =
|
|
|
|
TEMP_FAILURE_RETRY(read(fd, buffer+so_far, to_read-so_far));
|
|
|
|
if (read_count == -1) {
|
|
|
|
printf("verify read error %s at %zu: %s\n",
|
|
|
|
partition, p, strerror(errno));
|
|
|
|
return -1;
|
2013-07-09 19:34:46 +02:00
|
|
|
}
|
2015-06-24 08:23:33 +02:00
|
|
|
if (static_cast<size_t>(read_count) < to_read) {
|
2014-03-14 17:39:48 +01:00
|
|
|
printf("short verify read %s at %zu: %zd %zu %s\n",
|
2013-07-09 19:34:46 +02:00
|
|
|
partition, p, read_count, to_read, strerror(errno));
|
|
|
|
}
|
|
|
|
so_far += read_count;
|
2013-07-08 18:42:54 +02:00
|
|
|
}
|
|
|
|
|
2015-06-24 08:23:33 +02:00
|
|
|
if (memcmp(buffer, data+p, to_read) != 0) {
|
2014-03-14 17:39:48 +01:00
|
|
|
printf("verification failed starting at %zu\n", p);
|
2013-07-08 18:42:54 +02:00
|
|
|
start = p;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (start == len) {
|
2015-07-18 03:11:12 +02:00
|
|
|
printf("verification read succeeded (attempt %zu)\n", attempt+1);
|
2013-07-08 18:42:54 +02:00
|
|
|
success = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!success) {
|
|
|
|
printf("failed to verify after all attempts\n");
|
2010-07-07 22:55:25 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2013-07-08 18:42:54 +02:00
|
|
|
|
2013-07-09 19:34:46 +02:00
|
|
|
if (close(fd) != 0) {
|
2010-07-07 22:55:25 +02:00
|
|
|
printf("error closing %s (%s)\n", partition, strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
2013-07-10 22:39:50 +02:00
|
|
|
sync();
|
2010-07-07 22:55:25 +02:00
|
|
|
break;
|
2013-07-08 18:42:54 +02:00
|
|
|
}
|
2010-02-22 23:46:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Take a string 'str' of 40 hex digits and parse it into the 20
|
|
|
|
// byte array 'digest'. 'str' may contain only the digest or be of
|
|
|
|
// the form "<digest>:<anything>". Return 0 on success, -1 on any
|
|
|
|
// error.
|
|
|
|
int ParseSha1(const char* str, uint8_t* digest) {
|
2010-02-22 23:46:32 +01:00
|
|
|
const char* ps = str;
|
|
|
|
uint8_t* pd = digest;
|
2015-06-24 08:23:33 +02:00
|
|
|
for (int i = 0; i < SHA_DIGEST_SIZE * 2; ++i, ++ps) {
|
2010-02-22 23:46:32 +01:00
|
|
|
int digit;
|
|
|
|
if (*ps >= '0' && *ps <= '9') {
|
|
|
|
digit = *ps - '0';
|
|
|
|
} else if (*ps >= 'a' && *ps <= 'f') {
|
|
|
|
digit = *ps - 'a' + 10;
|
|
|
|
} else if (*ps >= 'A' && *ps <= 'F') {
|
|
|
|
digit = *ps - 'A' + 10;
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (i % 2 == 0) {
|
|
|
|
*pd = digit << 4;
|
|
|
|
} else {
|
|
|
|
*pd |= digit;
|
|
|
|
++pd;
|
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
2010-02-22 23:46:32 +01:00
|
|
|
if (*ps != '\0') return -1;
|
|
|
|
return 0;
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
|
|
|
|
2010-02-22 23:46:32 +01:00
|
|
|
// Search an array of sha1 strings for one matching the given sha1.
|
|
|
|
// Return the index of the match on success, or -1 if no match is
|
|
|
|
// found.
|
2013-07-08 18:42:54 +02:00
|
|
|
int FindMatchingPatch(uint8_t* sha1, char* const * const patch_sha1_str,
|
2010-02-22 23:46:32 +01:00
|
|
|
int num_patches) {
|
|
|
|
uint8_t patch_sha1[SHA_DIGEST_SIZE];
|
2015-06-24 08:23:33 +02:00
|
|
|
for (int i = 0; i < num_patches; ++i) {
|
2010-02-22 23:46:32 +01:00
|
|
|
if (ParseSha1(patch_sha1_str[i], patch_sha1) == 0 &&
|
|
|
|
memcmp(patch_sha1, sha1, SHA_DIGEST_SIZE) == 0) {
|
|
|
|
return i;
|
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
2010-02-22 23:46:32 +01:00
|
|
|
return -1;
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns 0 if the contents of the file (argv[2]) or the cached file
|
|
|
|
// match any of the sha1's on the command line (argv[3:]). Returns
|
|
|
|
// nonzero otherwise.
|
2015-06-24 08:23:33 +02:00
|
|
|
int applypatch_check(const char* filename, int num_patches,
|
|
|
|
char** const patch_sha1_str) {
|
2010-02-22 23:46:32 +01:00
|
|
|
FileContents file;
|
|
|
|
file.data = NULL;
|
|
|
|
|
|
|
|
// It's okay to specify no sha1s; the check will pass if the
|
2010-07-07 22:55:25 +02:00
|
|
|
// LoadFileContents is successful. (Useful for reading
|
2010-02-22 23:46:32 +01:00
|
|
|
// partitions, where the filename encodes the sha1s; no need to
|
|
|
|
// check them twice.)
|
2014-02-14 00:18:19 +01:00
|
|
|
if (LoadFileContents(filename, &file) != 0 ||
|
2010-02-22 23:46:32 +01:00
|
|
|
(num_patches > 0 &&
|
|
|
|
FindMatchingPatch(file.sha1, patch_sha1_str, num_patches) < 0)) {
|
|
|
|
printf("file \"%s\" doesn't have any of expected "
|
|
|
|
"sha1 sums; checking cache\n", filename);
|
|
|
|
|
|
|
|
free(file.data);
|
2012-02-28 20:07:09 +01:00
|
|
|
file.data = NULL;
|
2010-02-22 23:46:32 +01:00
|
|
|
|
|
|
|
// If the source file is missing or corrupted, it might be because
|
|
|
|
// we were killed in the middle of patching it. A copy of it
|
|
|
|
// should have been made in CACHE_TEMP_SOURCE. If that file
|
|
|
|
// exists and matches the sha1 we're looking for, the check still
|
|
|
|
// passes.
|
|
|
|
|
2014-02-14 00:18:19 +01:00
|
|
|
if (LoadFileContents(CACHE_TEMP_SOURCE, &file) != 0) {
|
2010-02-22 23:46:32 +01:00
|
|
|
printf("failed to load cache file\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-02-22 23:46:32 +01:00
|
|
|
if (FindMatchingPatch(file.sha1, patch_sha1_str, num_patches) < 0) {
|
|
|
|
printf("cache bits don't match any sha1 for \"%s\"\n", filename);
|
|
|
|
free(file.data);
|
|
|
|
return 1;
|
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
|
|
|
|
2010-02-22 23:46:32 +01:00
|
|
|
free(file.data);
|
|
|
|
return 0;
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int ShowLicenses() {
|
2010-02-22 23:46:32 +01:00
|
|
|
ShowBSDiffLicense();
|
|
|
|
return 0;
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
|
|
|
|
2014-08-15 23:31:52 +02:00
|
|
|
ssize_t FileSink(const unsigned char* data, ssize_t len, void* token) {
|
2015-06-24 08:23:33 +02:00
|
|
|
int fd = *reinterpret_cast<int *>(token);
|
2010-02-22 23:46:32 +01:00
|
|
|
ssize_t done = 0;
|
|
|
|
ssize_t wrote;
|
2015-06-24 08:23:33 +02:00
|
|
|
while (done < len) {
|
2015-04-29 02:24:24 +02:00
|
|
|
wrote = TEMP_FAILURE_RETRY(write(fd, data+done, len-done));
|
|
|
|
if (wrote == -1) {
|
2015-06-24 08:23:33 +02:00
|
|
|
printf("error writing %zd bytes: %s\n", (len-done), strerror(errno));
|
2010-02-22 23:46:32 +01:00
|
|
|
return done;
|
|
|
|
}
|
|
|
|
done += wrote;
|
|
|
|
}
|
|
|
|
return done;
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct {
|
2010-02-22 23:46:32 +01:00
|
|
|
unsigned char* buffer;
|
|
|
|
ssize_t size;
|
|
|
|
ssize_t pos;
|
2010-02-18 01:11:44 +01:00
|
|
|
} MemorySinkInfo;
|
|
|
|
|
2014-08-15 23:31:52 +02:00
|
|
|
ssize_t MemorySink(const unsigned char* data, ssize_t len, void* token) {
|
2015-06-24 08:23:33 +02:00
|
|
|
MemorySinkInfo* msi = reinterpret_cast<MemorySinkInfo*>(token);
|
2010-02-22 23:46:32 +01:00
|
|
|
if (msi->size - msi->pos < len) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
memcpy(msi->buffer + msi->pos, data, len);
|
|
|
|
msi->pos += len;
|
|
|
|
return len;
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return the amount of free space (in bytes) on the filesystem
|
|
|
|
// containing filename. filename must exist. Return -1 on error.
|
|
|
|
size_t FreeSpaceForFile(const char* filename) {
|
2010-02-22 23:46:32 +01:00
|
|
|
struct statfs sf;
|
|
|
|
if (statfs(filename, &sf) != 0) {
|
|
|
|
printf("failed to statfs %s: %s\n", filename, strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
2015-05-19 11:21:00 +02:00
|
|
|
return sf.f_bsize * sf.f_bavail;
|
2010-02-22 23:46:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int CacheSizeCheck(size_t bytes) {
|
|
|
|
if (MakeFreeSpaceOnCache(bytes) < 0) {
|
|
|
|
printf("unable to make %ld bytes available on /cache\n", (long)bytes);
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
|
|
|
|
2015-07-18 03:11:12 +02:00
|
|
|
static std::string short_sha1(const uint8_t sha1[SHA_DIGEST_SIZE]) {
|
2012-10-19 21:24:26 +02:00
|
|
|
const char* hex = "0123456789abcdef";
|
2015-07-18 03:11:12 +02:00
|
|
|
std::string result = "";
|
2015-06-24 08:23:33 +02:00
|
|
|
for (size_t i = 0; i < 4; ++i) {
|
2015-07-18 03:11:12 +02:00
|
|
|
result.push_back(hex[(sha1[i]>>4) & 0xf]);
|
|
|
|
result.push_back(hex[sha1[i] & 0xf]);
|
2012-10-19 21:24:26 +02:00
|
|
|
}
|
2015-07-18 03:11:12 +02:00
|
|
|
return result;
|
2012-10-19 21:24:26 +02:00
|
|
|
}
|
2010-02-22 23:46:32 +01:00
|
|
|
|
|
|
|
// This function applies binary patches to files in a way that is safe
|
2010-02-18 01:11:44 +01:00
|
|
|
// (the original file is not touched until we have the desired
|
|
|
|
// replacement for it) and idempotent (it's okay to run this program
|
|
|
|
// multiple times).
|
|
|
|
//
|
2010-02-22 23:46:32 +01:00
|
|
|
// - if the sha1 hash of <target_filename> is <target_sha1_string>,
|
|
|
|
// does nothing and exits successfully.
|
2010-02-18 01:11:44 +01:00
|
|
|
//
|
2010-02-22 23:46:32 +01:00
|
|
|
// - otherwise, if the sha1 hash of <source_filename> is one of the
|
|
|
|
// entries in <patch_sha1_str>, the corresponding patch from
|
|
|
|
// <patch_data> (which must be a VAL_BLOB) is applied to produce a
|
|
|
|
// new file (the type of patch is automatically detected from the
|
2015-07-18 03:11:12 +02:00
|
|
|
// blob data). If that new file has sha1 hash <target_sha1_str>,
|
2010-02-22 23:46:32 +01:00
|
|
|
// moves it to replace <target_filename>, and exits successfully.
|
|
|
|
// Note that if <source_filename> and <target_filename> are not the
|
|
|
|
// same, <source_filename> is NOT deleted on success.
|
|
|
|
// <target_filename> may be the string "-" to mean "the same as
|
|
|
|
// source_filename".
|
2010-02-18 01:11:44 +01:00
|
|
|
//
|
|
|
|
// - otherwise, or if any error is encountered, exits with non-zero
|
|
|
|
// status.
|
|
|
|
//
|
2010-07-07 22:55:25 +02:00
|
|
|
// <source_filename> may refer to a partition to read the source data.
|
2015-07-18 03:11:12 +02:00
|
|
|
// See the comments for the LoadPartitionContents() function above
|
2010-02-22 23:46:32 +01:00
|
|
|
// for the format of such a filename.
|
|
|
|
|
|
|
|
int applypatch(const char* source_filename,
|
|
|
|
const char* target_filename,
|
|
|
|
const char* target_sha1_str,
|
|
|
|
size_t target_size,
|
|
|
|
int num_patches,
|
|
|
|
char** const patch_sha1_str,
|
2012-08-21 00:28:02 +02:00
|
|
|
Value** patch_data,
|
|
|
|
Value* bonus_data) {
|
2012-10-19 21:24:26 +02:00
|
|
|
printf("patch %s: ", source_filename);
|
2010-02-22 23:46:32 +01:00
|
|
|
|
2015-06-24 08:23:33 +02:00
|
|
|
if (target_filename[0] == '-' && target_filename[1] == '\0') {
|
2010-02-22 23:46:32 +01:00
|
|
|
target_filename = source_filename;
|
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-02-22 23:46:32 +01:00
|
|
|
uint8_t target_sha1[SHA_DIGEST_SIZE];
|
|
|
|
if (ParseSha1(target_sha1_str, target_sha1) != 0) {
|
|
|
|
printf("failed to parse tgt-sha1 \"%s\"\n", target_sha1_str);
|
|
|
|
return 1;
|
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-02-22 23:46:32 +01:00
|
|
|
FileContents copy_file;
|
|
|
|
FileContents source_file;
|
2012-02-28 20:07:09 +01:00
|
|
|
copy_file.data = NULL;
|
|
|
|
source_file.data = NULL;
|
2010-02-22 23:46:32 +01:00
|
|
|
const Value* source_patch_value = NULL;
|
|
|
|
const Value* copy_patch_value = NULL;
|
|
|
|
|
|
|
|
// We try to load the target file into the source_file object.
|
2014-02-14 00:18:19 +01:00
|
|
|
if (LoadFileContents(target_filename, &source_file) == 0) {
|
2010-02-22 23:46:32 +01:00
|
|
|
if (memcmp(source_file.sha1, target_sha1, SHA_DIGEST_SIZE) == 0) {
|
|
|
|
// The early-exit case: the patch was already applied, this file
|
|
|
|
// has the desired hash, nothing for us to do.
|
2015-07-18 03:11:12 +02:00
|
|
|
printf("already %s\n", short_sha1(target_sha1).c_str());
|
2012-02-28 20:07:09 +01:00
|
|
|
free(source_file.data);
|
2010-02-22 23:46:32 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-02-22 23:46:32 +01:00
|
|
|
if (source_file.data == NULL ||
|
|
|
|
(target_filename != source_filename &&
|
|
|
|
strcmp(target_filename, source_filename) != 0)) {
|
|
|
|
// Need to load the source file: either we failed to load the
|
|
|
|
// target file, or we did but it's different from the source file.
|
|
|
|
free(source_file.data);
|
2012-02-28 20:07:09 +01:00
|
|
|
source_file.data = NULL;
|
2014-02-14 00:18:19 +01:00
|
|
|
LoadFileContents(source_filename, &source_file);
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
2010-02-22 23:46:32 +01:00
|
|
|
|
|
|
|
if (source_file.data != NULL) {
|
2015-06-24 08:23:33 +02:00
|
|
|
int to_use = FindMatchingPatch(source_file.sha1, patch_sha1_str, num_patches);
|
2010-02-22 23:46:32 +01:00
|
|
|
if (to_use >= 0) {
|
|
|
|
source_patch_value = patch_data[to_use];
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
2010-02-22 23:46:32 +01:00
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
|
2010-02-22 23:46:32 +01:00
|
|
|
if (source_patch_value == NULL) {
|
|
|
|
free(source_file.data);
|
2012-02-28 20:07:09 +01:00
|
|
|
source_file.data = NULL;
|
2010-02-22 23:46:32 +01:00
|
|
|
printf("source file is bad; trying copy\n");
|
|
|
|
|
2014-02-14 00:18:19 +01:00
|
|
|
if (LoadFileContents(CACHE_TEMP_SOURCE, ©_file) < 0) {
|
2010-02-22 23:46:32 +01:00
|
|
|
// fail.
|
|
|
|
printf("failed to read copy file\n");
|
|
|
|
return 1;
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
|
|
|
|
2015-06-24 08:23:33 +02:00
|
|
|
int to_use = FindMatchingPatch(copy_file.sha1, patch_sha1_str, num_patches);
|
2010-08-13 02:38:09 +02:00
|
|
|
if (to_use >= 0) {
|
2010-02-22 23:46:32 +01:00
|
|
|
copy_patch_value = patch_data[to_use];
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
|
|
|
|
2010-02-22 23:46:32 +01:00
|
|
|
if (copy_patch_value == NULL) {
|
|
|
|
// fail.
|
|
|
|
printf("copy file doesn't match source SHA-1s either\n");
|
2012-02-28 20:07:09 +01:00
|
|
|
free(copy_file.data);
|
2010-02-22 23:46:32 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
|
|
|
|
2012-02-28 20:07:09 +01:00
|
|
|
int result = GenerateTarget(&source_file, source_patch_value,
|
|
|
|
©_file, copy_patch_value,
|
|
|
|
source_filename, target_filename,
|
2012-08-21 00:28:02 +02:00
|
|
|
target_sha1, target_size, bonus_data);
|
2012-02-28 20:07:09 +01:00
|
|
|
free(source_file.data);
|
|
|
|
free(copy_file.data);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-07-18 03:11:12 +02:00
|
|
|
/*
|
|
|
|
* This function flashes a given image to the target partition. It verifies
|
|
|
|
* the target cheksum first, and will return if target has the desired hash.
|
|
|
|
* It checks the checksum of the given source image before flashing, and
|
|
|
|
* verifies the target partition afterwards. The function is idempotent.
|
|
|
|
* Returns zero on success.
|
|
|
|
*/
|
|
|
|
int applypatch_flash(const char* source_filename, const char* target_filename,
|
|
|
|
const char* target_sha1_str, size_t target_size) {
|
|
|
|
printf("flash %s: ", target_filename);
|
|
|
|
|
|
|
|
uint8_t target_sha1[SHA_DIGEST_SIZE];
|
|
|
|
if (ParseSha1(target_sha1_str, target_sha1) != 0) {
|
|
|
|
printf("failed to parse tgt-sha1 \"%s\"\n", target_sha1_str);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
FileContents source_file;
|
|
|
|
source_file.data = NULL;
|
|
|
|
std::string target_str(target_filename);
|
|
|
|
|
|
|
|
std::vector<std::string> pieces = android::base::Split(target_str, ":");
|
|
|
|
if (pieces.size() != 2 || (pieces[0] != "MTD" && pieces[0] != "EMMC")) {
|
|
|
|
printf("invalid target name \"%s\"", target_filename);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load the target into the source_file object to see if already applied.
|
|
|
|
pieces.push_back(std::to_string(target_size));
|
|
|
|
pieces.push_back(target_sha1_str);
|
|
|
|
std::string fullname = android::base::Join(pieces, ':');
|
|
|
|
if (LoadPartitionContents(fullname.c_str(), &source_file) == 0 &&
|
|
|
|
memcmp(source_file.sha1, target_sha1, SHA_DIGEST_SIZE) == 0) {
|
|
|
|
// The early-exit case: the image was already applied, this partition
|
|
|
|
// has the desired hash, nothing for us to do.
|
|
|
|
printf("already %s\n", short_sha1(target_sha1).c_str());
|
|
|
|
free(source_file.data);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LoadFileContents(source_filename, &source_file) == 0) {
|
|
|
|
if (memcmp(source_file.sha1, target_sha1, SHA_DIGEST_SIZE) != 0) {
|
|
|
|
// The source doesn't have desired checksum.
|
|
|
|
printf("source \"%s\" doesn't have expected sha1 sum\n", source_filename);
|
|
|
|
printf("expected: %s, found: %s\n", short_sha1(target_sha1).c_str(),
|
|
|
|
short_sha1(source_file.sha1).c_str());
|
|
|
|
free(source_file.data);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (WriteToPartition(source_file.data, target_size, target_filename) != 0) {
|
|
|
|
printf("write of copied data to %s failed\n", target_filename);
|
|
|
|
free(source_file.data);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(source_file.data);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-02-28 20:07:09 +01:00
|
|
|
static int GenerateTarget(FileContents* source_file,
|
|
|
|
const Value* source_patch_value,
|
|
|
|
FileContents* copy_file,
|
|
|
|
const Value* copy_patch_value,
|
|
|
|
const char* source_filename,
|
|
|
|
const char* target_filename,
|
|
|
|
const uint8_t target_sha1[SHA_DIGEST_SIZE],
|
2012-08-21 00:28:02 +02:00
|
|
|
size_t target_size,
|
|
|
|
const Value* bonus_data) {
|
2010-02-22 23:46:32 +01:00
|
|
|
int retry = 1;
|
|
|
|
SHA_CTX ctx;
|
|
|
|
int output;
|
|
|
|
MemorySinkInfo msi;
|
|
|
|
FileContents* source_to_use;
|
|
|
|
char* outname;
|
2012-02-28 20:07:09 +01:00
|
|
|
int made_copy = 0;
|
2010-02-22 23:46:32 +01:00
|
|
|
|
|
|
|
// assume that target_filename (eg "/system/app/Foo.apk") is located
|
|
|
|
// on the same filesystem as its top-level directory ("/system").
|
|
|
|
// We need something that exists for calling statfs().
|
|
|
|
char target_fs[strlen(target_filename)+1];
|
|
|
|
char* slash = strchr(target_filename+1, '/');
|
|
|
|
if (slash != NULL) {
|
|
|
|
int count = slash - target_filename;
|
|
|
|
strncpy(target_fs, target_filename, count);
|
|
|
|
target_fs[count] = '\0';
|
2010-02-18 01:11:44 +01:00
|
|
|
} else {
|
2010-02-22 23:46:32 +01:00
|
|
|
strcpy(target_fs, target_filename);
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
|
|
|
|
2010-02-22 23:46:32 +01:00
|
|
|
do {
|
|
|
|
// Is there enough room in the target filesystem to hold the patched
|
|
|
|
// file?
|
|
|
|
|
2010-07-07 22:55:25 +02:00
|
|
|
if (strncmp(target_filename, "MTD:", 4) == 0 ||
|
|
|
|
strncmp(target_filename, "EMMC:", 5) == 0) {
|
|
|
|
// If the target is a partition, we're actually going to
|
|
|
|
// write the output to /tmp and then copy it to the
|
|
|
|
// partition. statfs() always returns 0 blocks free for
|
|
|
|
// /tmp, so instead we'll just assume that /tmp has enough
|
|
|
|
// space to hold the file.
|
2010-02-22 23:46:32 +01:00
|
|
|
|
2010-07-07 22:55:25 +02:00
|
|
|
// We still write the original source to cache, in case
|
|
|
|
// the partition write is interrupted.
|
2012-02-28 20:07:09 +01:00
|
|
|
if (MakeFreeSpaceOnCache(source_file->size) < 0) {
|
2010-02-22 23:46:32 +01:00
|
|
|
printf("not enough free space on /cache\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (SaveFileContents(CACHE_TEMP_SOURCE, source_file) < 0) {
|
|
|
|
printf("failed to back up source file\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
made_copy = 1;
|
|
|
|
retry = 0;
|
|
|
|
} else {
|
|
|
|
int enough_space = 0;
|
|
|
|
if (retry > 0) {
|
|
|
|
size_t free_space = FreeSpaceForFile(target_fs);
|
2010-08-13 18:41:21 +02:00
|
|
|
enough_space =
|
|
|
|
(free_space > (256 << 10)) && // 256k (two-block) minimum
|
2010-02-22 23:46:32 +01:00
|
|
|
(free_space > (target_size * 3 / 2)); // 50% margin of error
|
2012-10-19 21:24:26 +02:00
|
|
|
if (!enough_space) {
|
2015-06-24 08:23:33 +02:00
|
|
|
printf("target %zu bytes; free space %zu bytes; retry %d; enough %d\n",
|
|
|
|
target_size, free_space, retry, enough_space);
|
2012-10-19 21:24:26 +02:00
|
|
|
}
|
2010-02-22 23:46:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!enough_space) {
|
|
|
|
retry = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!enough_space && source_patch_value != NULL) {
|
|
|
|
// Using the original source, but not enough free space. First
|
|
|
|
// copy the source file to cache, then delete it from the original
|
|
|
|
// location.
|
|
|
|
|
2010-07-07 22:55:25 +02:00
|
|
|
if (strncmp(source_filename, "MTD:", 4) == 0 ||
|
|
|
|
strncmp(source_filename, "EMMC:", 5) == 0) {
|
2010-02-22 23:46:32 +01:00
|
|
|
// It's impossible to free space on the target filesystem by
|
2010-07-07 22:55:25 +02:00
|
|
|
// deleting the source if the source is a partition. If
|
2010-02-22 23:46:32 +01:00
|
|
|
// we're ever in a state where we need to do this, fail.
|
2015-06-24 08:23:33 +02:00
|
|
|
printf("not enough free space for target but source is partition\n");
|
2010-02-22 23:46:32 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-02-28 20:07:09 +01:00
|
|
|
if (MakeFreeSpaceOnCache(source_file->size) < 0) {
|
2010-02-22 23:46:32 +01:00
|
|
|
printf("not enough free space on /cache\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SaveFileContents(CACHE_TEMP_SOURCE, source_file) < 0) {
|
|
|
|
printf("failed to back up source file\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
made_copy = 1;
|
|
|
|
unlink(source_filename);
|
|
|
|
|
|
|
|
size_t free_space = FreeSpaceForFile(target_fs);
|
2015-06-24 08:23:33 +02:00
|
|
|
printf("(now %zu bytes free for target) ", free_space);
|
2010-02-22 23:46:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const Value* patch;
|
|
|
|
if (source_patch_value != NULL) {
|
2012-02-28 20:07:09 +01:00
|
|
|
source_to_use = source_file;
|
2010-02-22 23:46:32 +01:00
|
|
|
patch = source_patch_value;
|
|
|
|
} else {
|
2012-02-28 20:07:09 +01:00
|
|
|
source_to_use = copy_file;
|
2010-02-22 23:46:32 +01:00
|
|
|
patch = copy_patch_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (patch->type != VAL_BLOB) {
|
|
|
|
printf("patch is not a blob\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
SinkFn sink = NULL;
|
|
|
|
void* token = NULL;
|
|
|
|
output = -1;
|
|
|
|
outname = NULL;
|
2010-07-07 22:55:25 +02:00
|
|
|
if (strncmp(target_filename, "MTD:", 4) == 0 ||
|
|
|
|
strncmp(target_filename, "EMMC:", 5) == 0) {
|
2010-02-22 23:46:32 +01:00
|
|
|
// We store the decoded output in memory.
|
2015-06-24 08:23:33 +02:00
|
|
|
msi.buffer = reinterpret_cast<unsigned char*>(malloc(target_size));
|
2010-02-22 23:46:32 +01:00
|
|
|
if (msi.buffer == NULL) {
|
2015-06-24 08:23:33 +02:00
|
|
|
printf("failed to alloc %zu bytes for output\n", target_size);
|
2010-02-22 23:46:32 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
msi.pos = 0;
|
|
|
|
msi.size = target_size;
|
|
|
|
sink = MemorySink;
|
|
|
|
token = &msi;
|
|
|
|
} else {
|
|
|
|
// We write the decoded output to "<tgt-file>.patch".
|
2015-06-24 08:23:33 +02:00
|
|
|
outname = reinterpret_cast<char*>(malloc(strlen(target_filename) + 10));
|
2010-02-22 23:46:32 +01:00
|
|
|
strcpy(outname, target_filename);
|
|
|
|
strcat(outname, ".patch");
|
|
|
|
|
2015-06-24 08:23:33 +02:00
|
|
|
output = open(outname, O_WRONLY | O_CREAT | O_TRUNC | O_SYNC, S_IRUSR | S_IWUSR);
|
2010-02-22 23:46:32 +01:00
|
|
|
if (output < 0) {
|
|
|
|
printf("failed to open output file %s: %s\n",
|
|
|
|
outname, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
sink = FileSink;
|
|
|
|
token = &output;
|
|
|
|
}
|
|
|
|
|
|
|
|
char* header = patch->data;
|
|
|
|
ssize_t header_bytes_read = patch->size;
|
|
|
|
|
|
|
|
SHA_init(&ctx);
|
|
|
|
|
|
|
|
int result;
|
|
|
|
|
|
|
|
if (header_bytes_read >= 8 &&
|
|
|
|
memcmp(header, "BSDIFF40", 8) == 0) {
|
|
|
|
result = ApplyBSDiffPatch(source_to_use->data, source_to_use->size,
|
|
|
|
patch, 0, sink, token, &ctx);
|
|
|
|
} else if (header_bytes_read >= 8 &&
|
|
|
|
memcmp(header, "IMGDIFF2", 8) == 0) {
|
|
|
|
result = ApplyImagePatch(source_to_use->data, source_to_use->size,
|
2012-08-21 00:28:02 +02:00
|
|
|
patch, sink, token, &ctx, bonus_data);
|
2010-02-22 23:46:32 +01:00
|
|
|
} else {
|
|
|
|
printf("Unknown patch file format\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (output >= 0) {
|
2014-10-29 20:42:15 +01:00
|
|
|
if (fsync(output) != 0) {
|
|
|
|
printf("failed to fsync file \"%s\" (%s)\n", outname, strerror(errno));
|
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
if (close(output) != 0) {
|
|
|
|
printf("failed to close file \"%s\" (%s)\n", outname, strerror(errno));
|
|
|
|
result = 1;
|
|
|
|
}
|
2010-02-22 23:46:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (result != 0) {
|
|
|
|
if (retry == 0) {
|
|
|
|
printf("applying patch failed\n");
|
|
|
|
return result != 0;
|
|
|
|
} else {
|
|
|
|
printf("applying patch failed; retrying\n");
|
|
|
|
}
|
|
|
|
if (outname != NULL) {
|
|
|
|
unlink(outname);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// succeeded; no need to retry
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (retry-- > 0);
|
|
|
|
|
|
|
|
const uint8_t* current_target_sha1 = SHA_final(&ctx);
|
|
|
|
if (memcmp(current_target_sha1, target_sha1, SHA_DIGEST_SIZE) != 0) {
|
|
|
|
printf("patch did not produce expected sha1\n");
|
|
|
|
return 1;
|
2012-10-19 21:24:26 +02:00
|
|
|
} else {
|
2015-07-18 03:11:12 +02:00
|
|
|
printf("now %s\n", short_sha1(target_sha1).c_str());
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|
|
|
|
|
2010-02-22 23:46:32 +01:00
|
|
|
if (output < 0) {
|
2010-07-07 22:55:25 +02:00
|
|
|
// Copy the temp file to the partition.
|
|
|
|
if (WriteToPartition(msi.buffer, msi.pos, target_filename) != 0) {
|
2010-02-22 23:46:32 +01:00
|
|
|
printf("write of patched data to %s failed\n", target_filename);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
free(msi.buffer);
|
2010-02-18 01:11:44 +01:00
|
|
|
} else {
|
2010-02-22 23:46:32 +01:00
|
|
|
// Give the .patch file the same owner, group, and mode of the
|
|
|
|
// original source file.
|
|
|
|
if (chmod(outname, source_to_use->st.st_mode) != 0) {
|
|
|
|
printf("chmod of \"%s\" failed: %s\n", outname, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
2015-06-24 08:23:33 +02:00
|
|
|
if (chown(outname, source_to_use->st.st_uid, source_to_use->st.st_gid) != 0) {
|
2010-02-22 23:46:32 +01:00
|
|
|
printf("chown of \"%s\" failed: %s\n", outname, strerror(errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finally, rename the .patch file to replace the target file.
|
|
|
|
if (rename(outname, target_filename) != 0) {
|
2015-06-24 08:23:33 +02:00
|
|
|
printf("rename of .patch to \"%s\" failed: %s\n", target_filename, strerror(errno));
|
2010-02-22 23:46:32 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this run of applypatch created the copy, and we're here, we
|
|
|
|
// can delete it.
|
2015-06-24 08:23:33 +02:00
|
|
|
if (made_copy) {
|
|
|
|
unlink(CACHE_TEMP_SOURCE);
|
|
|
|
}
|
2010-02-22 23:46:32 +01:00
|
|
|
|
|
|
|
// Success!
|
|
|
|
return 0;
|
2010-02-18 01:11:44 +01:00
|
|
|
}
|