blob: 24c6379cd74c0975590f00c5aa6dd624595f8aa6 [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
Jerry Zhang7b444f02018-06-12 16:42:09 -070053int sparse_file_add_data(struct sparse_file* s, void* data, unsigned int len, unsigned int block) {
54 return backed_block_add_data(s->backed_block_list, data, len, block);
Colin Cross28fa5bc2012-05-20 13:28:05 -070055}
56
Jerry Zhang7b444f02018-06-12 16:42:09 -070057int sparse_file_add_fill(struct sparse_file* s, uint32_t fill_val, unsigned int len,
58 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,
63 unsigned int len, unsigned int block) {
64 return backed_block_add_file(s->backed_block_list, filename, file_offset, len, block);
Colin Cross28fa5bc2012-05-20 13:28:05 -070065}
66
Jerry Zhang7b444f02018-06-12 16:42:09 -070067int sparse_file_add_fd(struct sparse_file* s, int fd, int64_t file_offset, unsigned int len,
68 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
Jerry Zhang7b444f02018-06-12 16:42:09 -0700139int sparse_file_write(struct sparse_file* s, int fd, bool gz, bool sparse, bool crc) {
140 int ret;
141 int chunks;
142 struct output_file* out;
Colin Cross1e17b312012-05-21 16:35:45 -0700143
Jerry Zhang7b444f02018-06-12 16:42:09 -0700144 chunks = sparse_count_chunks(s);
145 out = output_file_open_fd(fd, s->block_size, s->len, gz, sparse, chunks, crc);
Colin Cross1e17b312012-05-21 16:35:45 -0700146
Jerry Zhang7b444f02018-06-12 16:42:09 -0700147 if (!out) return -ENOMEM;
Colin Cross1e17b312012-05-21 16:35:45 -0700148
Jerry Zhang7b444f02018-06-12 16:42:09 -0700149 ret = write_all_blocks(s, out);
Colin Cross1e17b312012-05-21 16:35:45 -0700150
Jerry Zhang7b444f02018-06-12 16:42:09 -0700151 output_file_close(out);
Colin Cross28fa5bc2012-05-20 13:28:05 -0700152
Jerry Zhang7b444f02018-06-12 16:42:09 -0700153 return ret;
Colin Cross1e17b312012-05-21 16:35:45 -0700154}
155
Jerry Zhang7b444f02018-06-12 16:42:09 -0700156int sparse_file_callback(struct sparse_file* s, bool sparse, bool crc,
157 int (*write)(void* priv, const void* data, size_t len), void* priv) {
158 int ret;
159 int chunks;
160 struct output_file* out;
Colin Cross1e17b312012-05-21 16:35:45 -0700161
Jerry Zhang7b444f02018-06-12 16:42:09 -0700162 chunks = sparse_count_chunks(s);
Tobias Thiererfca4a9c2018-07-26 03:13:45 +0000163 out = output_file_open_callback(write, priv, s->block_size, s->len, false, sparse, chunks, crc);
Colin Cross1e17b312012-05-21 16:35:45 -0700164
Jerry Zhang7b444f02018-06-12 16:42:09 -0700165 if (!out) return -ENOMEM;
Colin Cross1e17b312012-05-21 16:35:45 -0700166
Jerry Zhang7b444f02018-06-12 16:42:09 -0700167 ret = write_all_blocks(s, out);
Colin Cross1e17b312012-05-21 16:35:45 -0700168
Jerry Zhang7b444f02018-06-12 16:42:09 -0700169 output_file_close(out);
Colin Cross1e17b312012-05-21 16:35:45 -0700170
Jerry Zhang7b444f02018-06-12 16:42:09 -0700171 return ret;
Colin Cross28fa5bc2012-05-20 13:28:05 -0700172}
Colin Crossa21930b2012-04-26 14:24:35 -0700173
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800174struct chunk_data {
Jerry Zhang7b444f02018-06-12 16:42:09 -0700175 void* priv;
176 unsigned int block;
177 unsigned int nr_blocks;
178 int (*write)(void* priv, const void* data, size_t len, unsigned int block, unsigned int nr_blocks);
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800179};
180
Jerry Zhang7b444f02018-06-12 16:42:09 -0700181static int foreach_chunk_write(void* priv, const void* data, size_t len) {
182 struct chunk_data* chk = reinterpret_cast<chunk_data*>(priv);
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800183
Jerry Zhang7b444f02018-06-12 16:42:09 -0700184 return chk->write(chk->priv, data, len, chk->block, chk->nr_blocks);
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800185}
186
Jerry Zhang7b444f02018-06-12 16:42:09 -0700187int sparse_file_foreach_chunk(struct sparse_file* s, bool sparse, bool crc,
188 int (*write)(void* priv, const void* data, size_t len,
189 unsigned int block, unsigned int nr_blocks),
190 void* priv) {
Stephen Hines45b11d92019-05-02 12:54:09 -0700191 int ret = 0;
Jerry Zhang7b444f02018-06-12 16:42:09 -0700192 int chunks;
193 struct chunk_data chk;
194 struct output_file* out;
195 struct backed_block* bb;
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800196
Jerry Zhang7b444f02018-06-12 16:42:09 -0700197 chk.priv = priv;
198 chk.write = write;
199 chk.block = chk.nr_blocks = 0;
200 chunks = sparse_count_chunks(s);
Tobias Thiererfca4a9c2018-07-26 03:13:45 +0000201 out = output_file_open_callback(foreach_chunk_write, &chk, s->block_size, s->len, false, sparse,
202 chunks, crc);
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800203
Jerry Zhang7b444f02018-06-12 16:42:09 -0700204 if (!out) return -ENOMEM;
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800205
Jerry Zhang7b444f02018-06-12 16:42:09 -0700206 for (bb = backed_block_iter_new(s->backed_block_list); bb; bb = backed_block_iter_next(bb)) {
207 chk.block = backed_block_block(bb);
208 chk.nr_blocks = (backed_block_len(bb) - 1) / s->block_size + 1;
209 ret = sparse_file_write_block(out, bb);
210 if (ret) return ret;
211 }
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800212
Jerry Zhang7b444f02018-06-12 16:42:09 -0700213 output_file_close(out);
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800214
Jerry Zhang7b444f02018-06-12 16:42:09 -0700215 return ret;
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800216}
217
Jerry Zhang7b444f02018-06-12 16:42:09 -0700218static int out_counter_write(void* priv, const void* data __unused, size_t len) {
219 int64_t* count = reinterpret_cast<int64_t*>(priv);
220 *count += len;
221 return 0;
Colin Crossbdc6d392012-05-02 15:18:22 -0700222}
223
Jerry Zhang7b444f02018-06-12 16:42:09 -0700224int64_t sparse_file_len(struct sparse_file* s, bool sparse, bool crc) {
225 int ret;
226 int chunks = sparse_count_chunks(s);
227 int64_t count = 0;
228 struct output_file* out;
Colin Cross317a09e2012-05-24 17:15:43 -0700229
Tobias Thiererfca4a9c2018-07-26 03:13:45 +0000230 out = output_file_open_callback(out_counter_write, &count, s->block_size, s->len, false, sparse,
231 chunks, crc);
Jerry Zhang7b444f02018-06-12 16:42:09 -0700232 if (!out) {
233 return -1;
234 }
Colin Cross317a09e2012-05-24 17:15:43 -0700235
Jerry Zhang7b444f02018-06-12 16:42:09 -0700236 ret = write_all_blocks(s, out);
Colin Cross317a09e2012-05-24 17:15:43 -0700237
Jerry Zhang7b444f02018-06-12 16:42:09 -0700238 output_file_close(out);
Colin Cross317a09e2012-05-24 17:15:43 -0700239
Jerry Zhang7b444f02018-06-12 16:42:09 -0700240 if (ret < 0) {
241 return -1;
242 }
Colin Cross317a09e2012-05-24 17:15:43 -0700243
Jerry Zhang7b444f02018-06-12 16:42:09 -0700244 return count;
Colin Cross317a09e2012-05-24 17:15:43 -0700245}
246
Jerry Zhang7b444f02018-06-12 16:42:09 -0700247unsigned int sparse_file_block_size(struct sparse_file* s) {
248 return s->block_size;
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800249}
250
Jerry Zhang7b444f02018-06-12 16:42:09 -0700251static struct backed_block* move_chunks_up_to_len(struct sparse_file* from, struct sparse_file* to,
252 unsigned int len) {
253 int64_t count = 0;
254 struct output_file* out_counter;
Yi Kong17ba95e2018-07-23 16:31:11 -0700255 struct backed_block* last_bb = nullptr;
Jerry Zhang7b444f02018-06-12 16:42:09 -0700256 struct backed_block* bb;
257 struct backed_block* start;
258 unsigned int last_block = 0;
259 int64_t file_len = 0;
260 int ret;
Colin Crossbdc6d392012-05-02 15:18:22 -0700261
Jerry Zhang7b444f02018-06-12 16:42:09 -0700262 /*
263 * overhead is sparse file header, the potential end skip
264 * chunk and crc chunk.
265 */
266 int overhead = sizeof(sparse_header_t) + 2 * sizeof(chunk_header_t) + sizeof(uint32_t);
267 len -= overhead;
Colin Crossbdc6d392012-05-02 15:18:22 -0700268
Jerry Zhang7b444f02018-06-12 16:42:09 -0700269 start = backed_block_iter_new(from->backed_block_list);
Tobias Thiererfca4a9c2018-07-26 03:13:45 +0000270 out_counter = output_file_open_callback(out_counter_write, &count, to->block_size, to->len, false,
271 true, 0, false);
Jerry Zhang7b444f02018-06-12 16:42:09 -0700272 if (!out_counter) {
Yi Kong17ba95e2018-07-23 16:31:11 -0700273 return nullptr;
Jerry Zhang7b444f02018-06-12 16:42:09 -0700274 }
Colin Crossbdc6d392012-05-02 15:18:22 -0700275
Jerry Zhang7b444f02018-06-12 16:42:09 -0700276 for (bb = start; bb; bb = backed_block_iter_next(bb)) {
277 count = 0;
278 if (backed_block_block(bb) > last_block) count += sizeof(chunk_header_t);
279 last_block = backed_block_block(bb) + DIV_ROUND_UP(backed_block_len(bb), to->block_size);
Jeremy Compostellacfd3a032015-04-03 14:31:19 +0200280
Jerry Zhang7b444f02018-06-12 16:42:09 -0700281 /* will call out_counter_write to update count */
282 ret = sparse_file_write_block(out_counter, bb);
283 if (ret) {
Yi Kong17ba95e2018-07-23 16:31:11 -0700284 bb = nullptr;
Jerry Zhang7b444f02018-06-12 16:42:09 -0700285 goto out;
286 }
287 if (file_len + count > len) {
288 /*
289 * If the remaining available size is more than 1/8th of the
290 * requested size, split the chunk. Results in sparse files that
291 * are at least 7/8ths of the requested size
292 */
293 file_len += sizeof(chunk_header_t);
294 if (!last_bb || (len - file_len > (len / 8))) {
295 backed_block_split(from->backed_block_list, bb, len - file_len);
296 last_bb = bb;
297 }
298 goto move;
299 }
300 file_len += count;
301 last_bb = bb;
302 }
Colin Crossbdc6d392012-05-02 15:18:22 -0700303
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100304move:
Jerry Zhang7b444f02018-06-12 16:42:09 -0700305 backed_block_list_move(from->backed_block_list, to->backed_block_list, start, last_bb);
Colin Crossbdc6d392012-05-02 15:18:22 -0700306
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100307out:
Jerry Zhang7b444f02018-06-12 16:42:09 -0700308 output_file_close(out_counter);
Colin Crossbdc6d392012-05-02 15:18:22 -0700309
Jerry Zhang7b444f02018-06-12 16:42:09 -0700310 return bb;
Colin Crossbdc6d392012-05-02 15:18:22 -0700311}
312
Jerry Zhang7b444f02018-06-12 16:42:09 -0700313int sparse_file_resparse(struct sparse_file* in_s, unsigned int max_len, struct sparse_file** out_s,
314 int out_s_count) {
315 struct backed_block* bb;
316 struct sparse_file* s;
317 struct sparse_file* tmp;
318 int c = 0;
Colin Crossbdc6d392012-05-02 15:18:22 -0700319
Jerry Zhang7b444f02018-06-12 16:42:09 -0700320 tmp = sparse_file_new(in_s->block_size, in_s->len);
321 if (!tmp) {
322 return -ENOMEM;
323 }
Colin Crossbdc6d392012-05-02 15:18:22 -0700324
Jerry Zhang7b444f02018-06-12 16:42:09 -0700325 do {
326 s = sparse_file_new(in_s->block_size, in_s->len);
Colin Crossbdc6d392012-05-02 15:18:22 -0700327
Jerry Zhang7b444f02018-06-12 16:42:09 -0700328 bb = move_chunks_up_to_len(in_s, s, max_len);
Colin Crossbdc6d392012-05-02 15:18:22 -0700329
Jerry Zhang7b444f02018-06-12 16:42:09 -0700330 if (c < out_s_count) {
331 out_s[c] = s;
332 } else {
Yi Kong17ba95e2018-07-23 16:31:11 -0700333 backed_block_list_move(s->backed_block_list, tmp->backed_block_list, nullptr, nullptr);
Jerry Zhang7b444f02018-06-12 16:42:09 -0700334 sparse_file_destroy(s);
335 }
336 c++;
337 } while (bb);
Colin Crossbdc6d392012-05-02 15:18:22 -0700338
Yi Kong17ba95e2018-07-23 16:31:11 -0700339 backed_block_list_move(tmp->backed_block_list, in_s->backed_block_list, nullptr, nullptr);
Colin Crossbdc6d392012-05-02 15:18:22 -0700340
Jerry Zhang7b444f02018-06-12 16:42:09 -0700341 sparse_file_destroy(tmp);
Colin Crossbdc6d392012-05-02 15:18:22 -0700342
Jerry Zhang7b444f02018-06-12 16:42:09 -0700343 return c;
Colin Crossbdc6d392012-05-02 15:18:22 -0700344}
345
Jerry Zhang7b444f02018-06-12 16:42:09 -0700346void sparse_file_verbose(struct sparse_file* s) {
347 s->verbose = true;
Colin Crossa21930b2012-04-26 14:24:35 -0700348}