Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2009 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 <stdio.h> |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 18 | #include <stdlib.h> |
| 19 | #include <string.h> |
| 20 | #include <unistd.h> |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 21 | |
Yabin Cui | d483c20 | 2016-02-03 17:08:52 -0800 | [diff] [blame] | 22 | #include <memory> |
| 23 | #include <vector> |
| 24 | |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 25 | #include "applypatch/applypatch.h" |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 26 | #include "edify/expr.h" |
Sen Jiang | c48cb5e | 2016-02-04 16:23:21 +0800 | [diff] [blame] | 27 | #include "openssl/sha.h" |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 28 | |
Tao Bao | ba9a42a | 2015-06-23 23:23:33 -0700 | [diff] [blame] | 29 | static int CheckMode(int argc, char** argv) { |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 30 | if (argc < 3) { |
| 31 | return 2; |
| 32 | } |
| 33 | return applypatch_check(argv[2], argc-3, argv+3); |
| 34 | } |
| 35 | |
Tao Bao | ba9a42a | 2015-06-23 23:23:33 -0700 | [diff] [blame] | 36 | static int SpaceMode(int argc, char** argv) { |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 37 | if (argc != 3) { |
| 38 | return 2; |
| 39 | } |
| 40 | char* endptr; |
| 41 | size_t bytes = strtol(argv[2], &endptr, 10); |
| 42 | if (bytes == 0 && endptr == argv[2]) { |
| 43 | printf("can't parse \"%s\" as byte count\n\n", argv[2]); |
| 44 | return 1; |
| 45 | } |
| 46 | return CacheSizeCheck(bytes); |
| 47 | } |
| 48 | |
Yabin Cui | d6c93af | 2016-02-10 16:41:10 -0800 | [diff] [blame] | 49 | // Parse arguments (which should be of the form "<sha1>:<filename>" |
| 50 | // into the new parallel arrays *sha1s and *files.Returns true on |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 51 | // success. |
Yabin Cui | d483c20 | 2016-02-03 17:08:52 -0800 | [diff] [blame] | 52 | static bool ParsePatchArgs(int argc, char** argv, std::vector<char*>* sha1s, |
Yabin Cui | d6c93af | 2016-02-10 16:41:10 -0800 | [diff] [blame] | 53 | std::vector<FileContents>* files) { |
Sen Jiang | c48cb5e | 2016-02-04 16:23:21 +0800 | [diff] [blame] | 54 | uint8_t digest[SHA_DIGEST_LENGTH]; |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 55 | |
Yabin Cui | d483c20 | 2016-02-03 17:08:52 -0800 | [diff] [blame] | 56 | for (int i = 0; i < argc; ++i) { |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 57 | char* colon = strchr(argv[i], ':'); |
Yabin Cui | d6c93af | 2016-02-10 16:41:10 -0800 | [diff] [blame] | 58 | if (colon == nullptr) { |
| 59 | printf("no ':' in patch argument \"%s\"\n", argv[i]); |
| 60 | return false; |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 61 | } |
Yabin Cui | d6c93af | 2016-02-10 16:41:10 -0800 | [diff] [blame] | 62 | *colon = '\0'; |
| 63 | ++colon; |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 64 | if (ParseSha1(argv[i], digest) != 0) { |
| 65 | printf("failed to parse sha1 \"%s\"\n", argv[i]); |
Tao Bao | ba9a42a | 2015-06-23 23:23:33 -0700 | [diff] [blame] | 66 | return false; |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 67 | } |
| 68 | |
Yabin Cui | d483c20 | 2016-02-03 17:08:52 -0800 | [diff] [blame] | 69 | sha1s->push_back(argv[i]); |
Yabin Cui | d6c93af | 2016-02-10 16:41:10 -0800 | [diff] [blame] | 70 | FileContents fc; |
| 71 | if (LoadFileContents(colon, &fc) != 0) { |
| 72 | return false; |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 73 | } |
Yabin Cui | d6c93af | 2016-02-10 16:41:10 -0800 | [diff] [blame] | 74 | files->push_back(std::move(fc)); |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 75 | } |
Tao Bao | ba9a42a | 2015-06-23 23:23:33 -0700 | [diff] [blame] | 76 | return true; |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 77 | } |
| 78 | |
Tao Bao | abba55b | 2015-07-17 18:11:12 -0700 | [diff] [blame] | 79 | static int FlashMode(const char* src_filename, const char* tgt_filename, |
| 80 | const char* tgt_sha1, size_t tgt_size) { |
| 81 | return applypatch_flash(src_filename, tgt_filename, tgt_sha1, tgt_size); |
| 82 | } |
| 83 | |
| 84 | static int PatchMode(int argc, char** argv) { |
Yabin Cui | d6c93af | 2016-02-10 16:41:10 -0800 | [diff] [blame] | 85 | FileContents bonusFc; |
| 86 | Value bonusValue; |
| 87 | Value* bonus = nullptr; |
| 88 | |
Doug Zongker | a3ccba6 | 2012-08-20 15:28:02 -0700 | [diff] [blame] | 89 | if (argc >= 3 && strcmp(argv[1], "-b") == 0) { |
Yabin Cui | d6c93af | 2016-02-10 16:41:10 -0800 | [diff] [blame] | 90 | if (LoadFileContents(argv[2], &bonusFc) != 0) { |
Doug Zongker | a3ccba6 | 2012-08-20 15:28:02 -0700 | [diff] [blame] | 91 | printf("failed to load bonus file %s\n", argv[2]); |
| 92 | return 1; |
| 93 | } |
Yabin Cui | d6c93af | 2016-02-10 16:41:10 -0800 | [diff] [blame] | 94 | bonus = &bonusValue; |
Doug Zongker | a3ccba6 | 2012-08-20 15:28:02 -0700 | [diff] [blame] | 95 | bonus->type = VAL_BLOB; |
Yabin Cui | d6c93af | 2016-02-10 16:41:10 -0800 | [diff] [blame] | 96 | bonus->size = bonusFc.data.size(); |
| 97 | bonus->data = reinterpret_cast<char*>(bonusFc.data.data()); |
Doug Zongker | a3ccba6 | 2012-08-20 15:28:02 -0700 | [diff] [blame] | 98 | argc -= 2; |
| 99 | argv += 2; |
| 100 | } |
| 101 | |
Tao Bao | abba55b | 2015-07-17 18:11:12 -0700 | [diff] [blame] | 102 | if (argc < 4) { |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 103 | return 2; |
| 104 | } |
| 105 | |
| 106 | char* endptr; |
| 107 | size_t target_size = strtol(argv[4], &endptr, 10); |
| 108 | if (target_size == 0 && endptr == argv[4]) { |
| 109 | printf("can't parse \"%s\" as byte count\n\n", argv[4]); |
| 110 | return 1; |
| 111 | } |
| 112 | |
Tao Bao | abba55b | 2015-07-17 18:11:12 -0700 | [diff] [blame] | 113 | // If no <src-sha1>:<patch> is provided, it is in flash mode. |
| 114 | if (argc == 5) { |
Yabin Cui | d6c93af | 2016-02-10 16:41:10 -0800 | [diff] [blame] | 115 | if (bonus != nullptr) { |
Tao Bao | abba55b | 2015-07-17 18:11:12 -0700 | [diff] [blame] | 116 | printf("bonus file not supported in flash mode\n"); |
| 117 | return 1; |
| 118 | } |
| 119 | return FlashMode(argv[1], argv[2], argv[3], target_size); |
| 120 | } |
Yabin Cui | d483c20 | 2016-02-03 17:08:52 -0800 | [diff] [blame] | 121 | std::vector<char*> sha1s; |
Yabin Cui | d6c93af | 2016-02-10 16:41:10 -0800 | [diff] [blame] | 122 | std::vector<FileContents> files; |
| 123 | if (!ParsePatchArgs(argc-5, argv+5, &sha1s, &files)) { |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 124 | printf("failed to parse patch args\n"); |
| 125 | return 1; |
| 126 | } |
Yabin Cui | d6c93af | 2016-02-10 16:41:10 -0800 | [diff] [blame] | 127 | std::vector<Value> patches(files.size()); |
| 128 | std::vector<Value*> patch_ptrs(files.size()); |
| 129 | for (size_t i = 0; i < files.size(); ++i) { |
| 130 | patches[i].type = VAL_BLOB; |
| 131 | patches[i].size = files[i].data.size(); |
| 132 | patches[i].data = reinterpret_cast<char*>(files[i].data.data()); |
| 133 | patch_ptrs[i] = &patches[i]; |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 134 | } |
Yabin Cui | d483c20 | 2016-02-03 17:08:52 -0800 | [diff] [blame] | 135 | return applypatch(argv[1], argv[2], argv[3], target_size, |
| 136 | patch_ptrs.size(), sha1s.data(), |
Yabin Cui | d6c93af | 2016-02-10 16:41:10 -0800 | [diff] [blame] | 137 | patch_ptrs.data(), bonus); |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 138 | } |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 139 | |
| 140 | // This program applies binary patches to files in a way that is safe |
| 141 | // (the original file is not touched until we have the desired |
| 142 | // replacement for it) and idempotent (it's okay to run this program |
| 143 | // multiple times). |
| 144 | // |
| 145 | // - if the sha1 hash of <tgt-file> is <tgt-sha1>, does nothing and exits |
| 146 | // successfully. |
| 147 | // |
Tao Bao | abba55b | 2015-07-17 18:11:12 -0700 | [diff] [blame] | 148 | // - otherwise, if no <src-sha1>:<patch> is provided, flashes <tgt-file> with |
| 149 | // <src-file>. <tgt-file> must be a partition name, while <src-file> must |
| 150 | // be a regular image file. <src-file> will not be deleted on success. |
| 151 | // |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 152 | // - otherwise, if the sha1 hash of <src-file> is <src-sha1>, applies the |
| 153 | // bsdiff <patch> to <src-file> to produce a new file (the type of patch |
| 154 | // is automatically detected from the file header). If that new |
| 155 | // file has sha1 hash <tgt-sha1>, moves it to replace <tgt-file>, and |
| 156 | // exits successfully. Note that if <src-file> and <tgt-file> are |
| 157 | // not the same, <src-file> is NOT deleted on success. <tgt-file> |
| 158 | // may be the string "-" to mean "the same as src-file". |
| 159 | // |
| 160 | // - otherwise, or if any error is encountered, exits with non-zero |
| 161 | // status. |
| 162 | // |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 163 | // <src-file> (or <file> in check mode) may refer to an EMMC partition |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 164 | // to read the source data. See the comments for the |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 165 | // LoadPartitionContents() function for the format of such a filename. |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 166 | |
| 167 | int main(int argc, char** argv) { |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 168 | if (argc < 2) { |
| 169 | usage: |
| 170 | printf( |
Doug Zongker | a3ccba6 | 2012-08-20 15:28:02 -0700 | [diff] [blame] | 171 | "usage: %s [-b <bonus-file>] <src-file> <tgt-file> <tgt-sha1> <tgt-size> " |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 172 | "[<src-sha1>:<patch> ...]\n" |
| 173 | " or %s -c <file> [<sha1> ...]\n" |
| 174 | " or %s -s <bytes>\n" |
| 175 | " or %s -l\n" |
| 176 | "\n" |
| 177 | "Filenames may be of the form\n" |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 178 | " EMMC:<partition>:<len_1>:<sha1_1>:<len_2>:<sha1_2>:...\n" |
| 179 | "to specify reading from or writing to an EMMC partition.\n\n", |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 180 | argv[0], argv[0], argv[0], argv[0]); |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 181 | return 2; |
| 182 | } |
| 183 | |
| 184 | int result; |
| 185 | |
| 186 | if (strncmp(argv[1], "-l", 3) == 0) { |
| 187 | result = ShowLicenses(); |
| 188 | } else if (strncmp(argv[1], "-c", 3) == 0) { |
| 189 | result = CheckMode(argc, argv); |
| 190 | } else if (strncmp(argv[1], "-s", 3) == 0) { |
| 191 | result = SpaceMode(argc, argv); |
| 192 | } else { |
| 193 | result = PatchMode(argc, argv); |
| 194 | } |
| 195 | |
| 196 | if (result == 2) { |
| 197 | goto usage; |
| 198 | } |
| 199 | return result; |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 200 | } |