blob: 396e7eb0c58235f29340af65d7340efa979c8888 [file] [log] [blame]
Colin Cross28fa5bc2012-05-20 13:28:05 -07001/*
2 * Copyright (C) 2012 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
Colin Crossb55dcee2012-04-24 23:07:49 -070017#include <assert.h>
Colin Cross28fa5bc2012-05-20 13:28:05 -070018#include <stdlib.h>
19
20#include <sparse/sparse.h>
21
Mark Salyzyn031a7482014-02-27 16:56:15 -080022#include "defs.h"
Colin Cross28fa5bc2012-05-20 13:28:05 -070023#include "sparse_file.h"
24
Colin Cross28fa5bc2012-05-20 13:28:05 -070025#include "backed_block.h"
Jerry Zhang7b444f02018-06-12 16:42:09 -070026#include "output_file.h"
Colin Cross28fa5bc2012-05-20 13:28:05 -070027#include "sparse_defs.h"
Colin Crossbdc6d392012-05-02 15:18:22 -070028#include "sparse_format.h"
Colin Cross28fa5bc2012-05-20 13:28:05 -070029
Jerry Zhang7b444f02018-06-12 16:42:09 -070030struct sparse_file* sparse_file_new(unsigned int block_size, int64_t len) {
31 struct sparse_file* s = reinterpret_cast<sparse_file*>(calloc(sizeof(struct sparse_file), 1));
32 if (!s) {
Yi Kong17ba95e2018-07-23 16:31:11 -070033 return nullptr;
Jerry Zhang7b444f02018-06-12 16:42:09 -070034 }
Colin Cross28fa5bc2012-05-20 13:28:05 -070035
Jerry Zhang7b444f02018-06-12 16:42:09 -070036 s->backed_block_list = backed_block_list_new(block_size);
37 if (!s->backed_block_list) {
38 free(s);
Yi Kong17ba95e2018-07-23 16:31:11 -070039 return nullptr;
Jerry Zhang7b444f02018-06-12 16:42:09 -070040 }
Colin Cross28fa5bc2012-05-20 13:28:05 -070041
Jerry Zhang7b444f02018-06-12 16:42:09 -070042 s->block_size = block_size;
43 s->len = len;
Colin Cross28fa5bc2012-05-20 13:28:05 -070044
Jerry Zhang7b444f02018-06-12 16:42:09 -070045 return s;
Colin Cross28fa5bc2012-05-20 13:28:05 -070046}
47
Jerry Zhang7b444f02018-06-12 16:42:09 -070048void sparse_file_destroy(struct sparse_file* s) {
49 backed_block_list_destroy(s->backed_block_list);
50 free(s);
Colin Cross28fa5bc2012-05-20 13:28:05 -070051}
52
Hyeongseok Kime8d02c52020-08-10 12:11:57 +090053int sparse_file_add_data(struct sparse_file* s, void* data, uint64_t len, unsigned int block) {
Jerry Zhang7b444f02018-06-12 16:42:09 -070054 return backed_block_add_data(s->backed_block_list, data, len, block);
Colin Cross28fa5bc2012-05-20 13:28:05 -070055}
56
Hyeongseok Kime8d02c52020-08-10 12:11:57 +090057int sparse_file_add_fill(struct sparse_file* s, uint32_t fill_val, uint64_t len,
Jerry Zhang7b444f02018-06-12 16:42:09 -070058 unsigned int block) {
59 return backed_block_add_fill(s->backed_block_list, fill_val, len, block);
Colin Cross28fa5bc2012-05-20 13:28:05 -070060}
61
Jerry Zhang7b444f02018-06-12 16:42:09 -070062int sparse_file_add_file(struct sparse_file* s, const char* filename, int64_t file_offset,
Hyeongseok Kime8d02c52020-08-10 12:11:57 +090063 uint64_t len, unsigned int block) {
Jerry Zhang7b444f02018-06-12 16:42:09 -070064 return backed_block_add_file(s->backed_block_list, filename, file_offset, len, block);
Colin Cross28fa5bc2012-05-20 13:28:05 -070065}
66
Hyeongseok Kime8d02c52020-08-10 12:11:57 +090067int sparse_file_add_fd(struct sparse_file* s, int fd, int64_t file_offset, uint64_t len,
Jerry Zhang7b444f02018-06-12 16:42:09 -070068 unsigned int block) {
69 return backed_block_add_fd(s->backed_block_list, fd, file_offset, len, block);
Colin Cross9e1f17e2012-04-25 18:31:39 -070070}
Jerry Zhang7b444f02018-06-12 16:42:09 -070071unsigned int sparse_count_chunks(struct sparse_file* s) {
72 struct backed_block* bb;
73 unsigned int last_block = 0;
74 unsigned int chunks = 0;
Colin Cross28fa5bc2012-05-20 13:28:05 -070075
Jerry Zhang7b444f02018-06-12 16:42:09 -070076 for (bb = backed_block_iter_new(s->backed_block_list); bb; bb = backed_block_iter_next(bb)) {
77 if (backed_block_block(bb) > last_block) {
78 /* If there is a gap between chunks, add a skip chunk */
79 chunks++;
80 }
81 chunks++;
82 last_block = backed_block_block(bb) + DIV_ROUND_UP(backed_block_len(bb), s->block_size);
83 }
84 if (last_block < DIV_ROUND_UP(s->len, s->block_size)) {
85 chunks++;
86 }
Colin Cross28fa5bc2012-05-20 13:28:05 -070087
Jerry Zhang7b444f02018-06-12 16:42:09 -070088 return chunks;
Colin Cross28fa5bc2012-05-20 13:28:05 -070089}
90
Jerry Zhang7b444f02018-06-12 16:42:09 -070091static int sparse_file_write_block(struct output_file* out, struct backed_block* bb) {
92 int ret = -EINVAL;
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +010093
Jerry Zhang7b444f02018-06-12 16:42:09 -070094 switch (backed_block_type(bb)) {
95 case BACKED_BLOCK_DATA:
96 ret = write_data_chunk(out, backed_block_len(bb), backed_block_data(bb));
97 break;
98 case BACKED_BLOCK_FILE:
99 ret = write_file_chunk(out, backed_block_len(bb), backed_block_filename(bb),
100 backed_block_file_offset(bb));
101 break;
102 case BACKED_BLOCK_FD:
103 ret = write_fd_chunk(out, backed_block_len(bb), backed_block_fd(bb),
104 backed_block_file_offset(bb));
105 break;
106 case BACKED_BLOCK_FILL:
107 ret = write_fill_chunk(out, backed_block_len(bb), backed_block_fill_val(bb));
108 break;
109 }
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100110
Jerry Zhang7b444f02018-06-12 16:42:09 -0700111 return ret;
Colin Cross1e17b312012-05-21 16:35:45 -0700112}
113
Jerry Zhang7b444f02018-06-12 16:42:09 -0700114static int write_all_blocks(struct sparse_file* s, struct output_file* out) {
115 struct backed_block* bb;
116 unsigned int last_block = 0;
117 int64_t pad;
118 int ret = 0;
Colin Cross28fa5bc2012-05-20 13:28:05 -0700119
Jerry Zhang7b444f02018-06-12 16:42:09 -0700120 for (bb = backed_block_iter_new(s->backed_block_list); bb; bb = backed_block_iter_next(bb)) {
121 if (backed_block_block(bb) > last_block) {
122 unsigned int blocks = backed_block_block(bb) - last_block;
123 write_skip_chunk(out, (int64_t)blocks * s->block_size);
124 }
125 ret = sparse_file_write_block(out, bb);
126 if (ret) return ret;
127 last_block = backed_block_block(bb) + DIV_ROUND_UP(backed_block_len(bb), s->block_size);
128 }
Colin Cross28fa5bc2012-05-20 13:28:05 -0700129
Jerry Zhang7b444f02018-06-12 16:42:09 -0700130 pad = s->len - (int64_t)last_block * s->block_size;
131 assert(pad >= 0);
132 if (pad > 0) {
133 write_skip_chunk(out, pad);
134 }
Colin Cross28fa5bc2012-05-20 13:28:05 -0700135
Jerry Zhang7b444f02018-06-12 16:42:09 -0700136 return 0;
Colin Cross1e17b312012-05-21 16:35:45 -0700137}
138
Woody Lina3864822020-05-13 20:50:54 +0800139/*
140 * This is a workaround for 32-bit Windows: Limit the block size to 64 MB before
141 * fastboot executable binary for windows 64-bit is released (b/156057250).
142 */
143#define MAX_BACKED_BLOCK_SIZE ((unsigned int) (64UL << 20))
144
Jerry Zhang7b444f02018-06-12 16:42:09 -0700145int sparse_file_write(struct sparse_file* s, int fd, bool gz, bool sparse, bool crc) {
Woody Lina3864822020-05-13 20:50:54 +0800146 struct backed_block* bb;
Jerry Zhang7b444f02018-06-12 16:42:09 -0700147 int ret;
148 int chunks;
149 struct output_file* out;
Colin Cross1e17b312012-05-21 16:35:45 -0700150
Woody Lina3864822020-05-13 20:50:54 +0800151 for (bb = backed_block_iter_new(s->backed_block_list); bb; bb = backed_block_iter_next(bb)) {
152 ret = backed_block_split(s->backed_block_list, bb, MAX_BACKED_BLOCK_SIZE);
153 if (ret) return ret;
154 }
155
Jerry Zhang7b444f02018-06-12 16:42:09 -0700156 chunks = sparse_count_chunks(s);
157 out = output_file_open_fd(fd, s->block_size, s->len, gz, sparse, chunks, crc);
Colin Cross1e17b312012-05-21 16:35:45 -0700158
Jerry Zhang7b444f02018-06-12 16:42:09 -0700159 if (!out) return -ENOMEM;
Colin Cross1e17b312012-05-21 16:35:45 -0700160
Jerry Zhang7b444f02018-06-12 16:42:09 -0700161 ret = write_all_blocks(s, out);
Colin Cross1e17b312012-05-21 16:35:45 -0700162
Jerry Zhang7b444f02018-06-12 16:42:09 -0700163 output_file_close(out);
Colin Cross28fa5bc2012-05-20 13:28:05 -0700164
Jerry Zhang7b444f02018-06-12 16:42:09 -0700165 return ret;
Colin Cross1e17b312012-05-21 16:35:45 -0700166}
167
Jerry Zhang7b444f02018-06-12 16:42:09 -0700168int sparse_file_callback(struct sparse_file* s, bool sparse, bool crc,
169 int (*write)(void* priv, const void* data, size_t len), void* priv) {
170 int ret;
171 int chunks;
172 struct output_file* out;
Colin Cross1e17b312012-05-21 16:35:45 -0700173
Jerry Zhang7b444f02018-06-12 16:42:09 -0700174 chunks = sparse_count_chunks(s);
Tobias Thiererfca4a9c2018-07-26 03:13:45 +0000175 out = output_file_open_callback(write, priv, s->block_size, s->len, false, sparse, chunks, crc);
Colin Cross1e17b312012-05-21 16:35:45 -0700176
Jerry Zhang7b444f02018-06-12 16:42:09 -0700177 if (!out) return -ENOMEM;
Colin Cross1e17b312012-05-21 16:35:45 -0700178
Jerry Zhang7b444f02018-06-12 16:42:09 -0700179 ret = write_all_blocks(s, out);
Colin Cross1e17b312012-05-21 16:35:45 -0700180
Jerry Zhang7b444f02018-06-12 16:42:09 -0700181 output_file_close(out);
Colin Cross1e17b312012-05-21 16:35:45 -0700182
Jerry Zhang7b444f02018-06-12 16:42:09 -0700183 return ret;
Colin Cross28fa5bc2012-05-20 13:28:05 -0700184}
Colin Crossa21930b2012-04-26 14:24:35 -0700185
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800186struct chunk_data {
Jerry Zhang7b444f02018-06-12 16:42:09 -0700187 void* priv;
188 unsigned int block;
189 unsigned int nr_blocks;
190 int (*write)(void* priv, const void* data, size_t len, unsigned int block, unsigned int nr_blocks);
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800191};
192
Jerry Zhang7b444f02018-06-12 16:42:09 -0700193static int foreach_chunk_write(void* priv, const void* data, size_t len) {
194 struct chunk_data* chk = reinterpret_cast<chunk_data*>(priv);
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800195
Jerry Zhang7b444f02018-06-12 16:42:09 -0700196 return chk->write(chk->priv, data, len, chk->block, chk->nr_blocks);
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800197}
198
Jerry Zhang7b444f02018-06-12 16:42:09 -0700199int sparse_file_foreach_chunk(struct sparse_file* s, bool sparse, bool crc,
200 int (*write)(void* priv, const void* data, size_t len,
201 unsigned int block, unsigned int nr_blocks),
202 void* priv) {
Stephen Hines45b11d92019-05-02 12:54:09 -0700203 int ret = 0;
Jerry Zhang7b444f02018-06-12 16:42:09 -0700204 int chunks;
205 struct chunk_data chk;
206 struct output_file* out;
207 struct backed_block* bb;
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800208
Jerry Zhang7b444f02018-06-12 16:42:09 -0700209 chk.priv = priv;
210 chk.write = write;
211 chk.block = chk.nr_blocks = 0;
212 chunks = sparse_count_chunks(s);
Tobias Thiererfca4a9c2018-07-26 03:13:45 +0000213 out = output_file_open_callback(foreach_chunk_write, &chk, s->block_size, s->len, false, sparse,
214 chunks, crc);
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800215
Jerry Zhang7b444f02018-06-12 16:42:09 -0700216 if (!out) return -ENOMEM;
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800217
Jerry Zhang7b444f02018-06-12 16:42:09 -0700218 for (bb = backed_block_iter_new(s->backed_block_list); bb; bb = backed_block_iter_next(bb)) {
219 chk.block = backed_block_block(bb);
220 chk.nr_blocks = (backed_block_len(bb) - 1) / s->block_size + 1;
221 ret = sparse_file_write_block(out, bb);
222 if (ret) return ret;
223 }
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800224
Jerry Zhang7b444f02018-06-12 16:42:09 -0700225 output_file_close(out);
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800226
Jerry Zhang7b444f02018-06-12 16:42:09 -0700227 return ret;
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800228}
229
Jerry Zhang7b444f02018-06-12 16:42:09 -0700230static int out_counter_write(void* priv, const void* data __unused, size_t len) {
231 int64_t* count = reinterpret_cast<int64_t*>(priv);
232 *count += len;
233 return 0;
Colin Crossbdc6d392012-05-02 15:18:22 -0700234}
235
Jerry Zhang7b444f02018-06-12 16:42:09 -0700236int64_t sparse_file_len(struct sparse_file* s, bool sparse, bool crc) {
237 int ret;
238 int chunks = sparse_count_chunks(s);
239 int64_t count = 0;
240 struct output_file* out;
Colin Cross317a09e2012-05-24 17:15:43 -0700241
Tobias Thiererfca4a9c2018-07-26 03:13:45 +0000242 out = output_file_open_callback(out_counter_write, &count, s->block_size, s->len, false, sparse,
243 chunks, crc);
Jerry Zhang7b444f02018-06-12 16:42:09 -0700244 if (!out) {
245 return -1;
246 }
Colin Cross317a09e2012-05-24 17:15:43 -0700247
Jerry Zhang7b444f02018-06-12 16:42:09 -0700248 ret = write_all_blocks(s, out);
Colin Cross317a09e2012-05-24 17:15:43 -0700249
Jerry Zhang7b444f02018-06-12 16:42:09 -0700250 output_file_close(out);
Colin Cross317a09e2012-05-24 17:15:43 -0700251
Jerry Zhang7b444f02018-06-12 16:42:09 -0700252 if (ret < 0) {
253 return -1;
254 }
Colin Cross317a09e2012-05-24 17:15:43 -0700255
Jerry Zhang7b444f02018-06-12 16:42:09 -0700256 return count;
Colin Cross317a09e2012-05-24 17:15:43 -0700257}
258
Jerry Zhang7b444f02018-06-12 16:42:09 -0700259unsigned int sparse_file_block_size(struct sparse_file* s) {
260 return s->block_size;
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800261}
262
Jerry Zhang7b444f02018-06-12 16:42:09 -0700263static struct backed_block* move_chunks_up_to_len(struct sparse_file* from, struct sparse_file* to,
264 unsigned int len) {
265 int64_t count = 0;
266 struct output_file* out_counter;
Yi Kong17ba95e2018-07-23 16:31:11 -0700267 struct backed_block* last_bb = nullptr;
Jerry Zhang7b444f02018-06-12 16:42:09 -0700268 struct backed_block* bb;
269 struct backed_block* start;
270 unsigned int last_block = 0;
271 int64_t file_len = 0;
272 int ret;
Colin Crossbdc6d392012-05-02 15:18:22 -0700273
Jerry Zhang7b444f02018-06-12 16:42:09 -0700274 /*
275 * overhead is sparse file header, the potential end skip
276 * chunk and crc chunk.
277 */
278 int overhead = sizeof(sparse_header_t) + 2 * sizeof(chunk_header_t) + sizeof(uint32_t);
279 len -= overhead;
Colin Crossbdc6d392012-05-02 15:18:22 -0700280
Jerry Zhang7b444f02018-06-12 16:42:09 -0700281 start = backed_block_iter_new(from->backed_block_list);
Tobias Thiererfca4a9c2018-07-26 03:13:45 +0000282 out_counter = output_file_open_callback(out_counter_write, &count, to->block_size, to->len, false,
283 true, 0, false);
Jerry Zhang7b444f02018-06-12 16:42:09 -0700284 if (!out_counter) {
Yi Kong17ba95e2018-07-23 16:31:11 -0700285 return nullptr;
Jerry Zhang7b444f02018-06-12 16:42:09 -0700286 }
Colin Crossbdc6d392012-05-02 15:18:22 -0700287
Jerry Zhang7b444f02018-06-12 16:42:09 -0700288 for (bb = start; bb; bb = backed_block_iter_next(bb)) {
289 count = 0;
290 if (backed_block_block(bb) > last_block) count += sizeof(chunk_header_t);
291 last_block = backed_block_block(bb) + DIV_ROUND_UP(backed_block_len(bb), to->block_size);
Jeremy Compostellacfd3a032015-04-03 14:31:19 +0200292
Jerry Zhang7b444f02018-06-12 16:42:09 -0700293 /* will call out_counter_write to update count */
294 ret = sparse_file_write_block(out_counter, bb);
295 if (ret) {
Yi Kong17ba95e2018-07-23 16:31:11 -0700296 bb = nullptr;
Jerry Zhang7b444f02018-06-12 16:42:09 -0700297 goto out;
298 }
299 if (file_len + count > len) {
300 /*
301 * If the remaining available size is more than 1/8th of the
302 * requested size, split the chunk. Results in sparse files that
303 * are at least 7/8ths of the requested size
304 */
305 file_len += sizeof(chunk_header_t);
306 if (!last_bb || (len - file_len > (len / 8))) {
307 backed_block_split(from->backed_block_list, bb, len - file_len);
308 last_bb = bb;
309 }
310 goto move;
311 }
312 file_len += count;
313 last_bb = bb;
314 }
Colin Crossbdc6d392012-05-02 15:18:22 -0700315
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100316move:
Jerry Zhang7b444f02018-06-12 16:42:09 -0700317 backed_block_list_move(from->backed_block_list, to->backed_block_list, start, last_bb);
Colin Crossbdc6d392012-05-02 15:18:22 -0700318
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100319out:
Jerry Zhang7b444f02018-06-12 16:42:09 -0700320 output_file_close(out_counter);
Colin Crossbdc6d392012-05-02 15:18:22 -0700321
Jerry Zhang7b444f02018-06-12 16:42:09 -0700322 return bb;
Colin Crossbdc6d392012-05-02 15:18:22 -0700323}
324
Jerry Zhang7b444f02018-06-12 16:42:09 -0700325int sparse_file_resparse(struct sparse_file* in_s, unsigned int max_len, struct sparse_file** out_s,
326 int out_s_count) {
327 struct backed_block* bb;
328 struct sparse_file* s;
329 struct sparse_file* tmp;
330 int c = 0;
Colin Crossbdc6d392012-05-02 15:18:22 -0700331
Jerry Zhang7b444f02018-06-12 16:42:09 -0700332 tmp = sparse_file_new(in_s->block_size, in_s->len);
333 if (!tmp) {
334 return -ENOMEM;
335 }
Colin Crossbdc6d392012-05-02 15:18:22 -0700336
Jerry Zhang7b444f02018-06-12 16:42:09 -0700337 do {
338 s = sparse_file_new(in_s->block_size, in_s->len);
Colin Crossbdc6d392012-05-02 15:18:22 -0700339
Jerry Zhang7b444f02018-06-12 16:42:09 -0700340 bb = move_chunks_up_to_len(in_s, s, max_len);
Colin Crossbdc6d392012-05-02 15:18:22 -0700341
Jerry Zhang7b444f02018-06-12 16:42:09 -0700342 if (c < out_s_count) {
343 out_s[c] = s;
344 } else {
Yi Kong17ba95e2018-07-23 16:31:11 -0700345 backed_block_list_move(s->backed_block_list, tmp->backed_block_list, nullptr, nullptr);
Jerry Zhang7b444f02018-06-12 16:42:09 -0700346 sparse_file_destroy(s);
347 }
348 c++;
349 } while (bb);
Colin Crossbdc6d392012-05-02 15:18:22 -0700350
Yi Kong17ba95e2018-07-23 16:31:11 -0700351 backed_block_list_move(tmp->backed_block_list, in_s->backed_block_list, nullptr, nullptr);
Colin Crossbdc6d392012-05-02 15:18:22 -0700352
Jerry Zhang7b444f02018-06-12 16:42:09 -0700353 sparse_file_destroy(tmp);
Colin Crossbdc6d392012-05-02 15:18:22 -0700354
Jerry Zhang7b444f02018-06-12 16:42:09 -0700355 return c;
Colin Crossbdc6d392012-05-02 15:18:22 -0700356}
357
Jerry Zhang7b444f02018-06-12 16:42:09 -0700358void sparse_file_verbose(struct sparse_file* s) {
359 s->verbose = true;
Colin Crossa21930b2012-04-26 14:24:35 -0700360}