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>
18 #include <stdlib.h>
19 #include <string.h>
20 #include <unistd.h>
21 
22 #include <memory>
23 #include <vector>
24 
25 #include "applypatch.h"
26 #include "edify/expr.h"
27 #include "openssl/sha.h"
28 
CheckMode(int argc,char ** argv)29 static int CheckMode(int argc, char** argv) {
30     if (argc < 3) {
31         return 2;
32     }
33     return applypatch_check(argv[2], argc-3, argv+3);
34 }
35 
SpaceMode(int argc,char ** argv)36 static int SpaceMode(int argc, char** argv) {
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>:<filename>"
50 // into the new parallel arrays *sha1s and *files.Returns true on
51 // success.
ParsePatchArgs(int argc,char ** argv,std::vector<char * > * sha1s,std::vector<FileContents> * files)52 static bool ParsePatchArgs(int argc, char** argv, std::vector<char*>* sha1s,
53                            std::vector<FileContents>* files) {
54     uint8_t digest[SHA_DIGEST_LENGTH];
55 
56     for (int i = 0; i < argc; ++i) {
57         char* colon = strchr(argv[i], ':');
58         if (colon == nullptr) {
59             printf("no ':' in patch argument \"%s\"\n", argv[i]);
60             return false;
61         }
62         *colon = '\0';
63         ++colon;
64         if (ParseSha1(argv[i], digest) != 0) {
65             printf("failed to parse sha1 \"%s\"\n", argv[i]);
66             return false;
67         }
68 
69         sha1s->push_back(argv[i]);
70         FileContents fc;
71         if (LoadFileContents(colon, &fc) != 0) {
72             return false;
73         }
74         files->push_back(std::move(fc));
75     }
76     return true;
77 }
78 
FlashMode(const char * src_filename,const char * tgt_filename,const char * tgt_sha1,size_t tgt_size)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 
PatchMode(int argc,char ** argv)84 static int PatchMode(int argc, char** argv) {
85     FileContents bonusFc;
86     Value bonusValue;
87     Value* bonus = nullptr;
88 
89     if (argc >= 3 && strcmp(argv[1], "-b") == 0) {
90         if (LoadFileContents(argv[2], &bonusFc) != 0) {
91             printf("failed to load bonus file %s\n", argv[2]);
92             return 1;
93         }
94         bonus = &bonusValue;
95         bonus->type = VAL_BLOB;
96         bonus->size = bonusFc.data.size();
97         bonus->data = reinterpret_cast<char*>(bonusFc.data.data());
98         argc -= 2;
99         argv += 2;
100     }
101 
102     if (argc < 4) {
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 
113     // If no <src-sha1>:<patch> is provided, it is in flash mode.
114     if (argc == 5) {
115         if (bonus != nullptr) {
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     }
121     std::vector<char*> sha1s;
122     std::vector<FileContents> files;
123     if (!ParsePatchArgs(argc-5, argv+5, &sha1s, &files)) {
124         printf("failed to parse patch args\n");
125         return 1;
126     }
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];
134     }
135     return applypatch(argv[1], argv[2], argv[3], target_size,
136                       patch_ptrs.size(), sha1s.data(),
137                       patch_ptrs.data(), bonus);
138 }
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 //
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 //
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 //
163 // <src-file> (or <file> in check mode) may refer to an MTD partition
164 // to read the source data.  See the comments for the
165 // LoadMTDContents() function above for the format of such a filename.
166 
main(int argc,char ** argv)167 int main(int argc, char** argv) {
168     if (argc < 2) {
169       usage:
170         printf(
171             "usage: %s [-b <bonus-file>] <src-file> <tgt-file> <tgt-sha1> <tgt-size> "
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"
178             "  MTD:<partition>:<len_1>:<sha1_1>:<len_2>:<sha1_2>:...\n"
179             "to specify reading from or writing to an MTD partition.\n\n",
180             argv[0], argv[0], argv[0], argv[0]);
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;
200 }
201