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