blob: b1758606697a9689513320e8d444bbb0d5057f0b [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
25#include "output_file.h"
26#include "backed_block.h"
27#include "sparse_defs.h"
Colin Crossbdc6d392012-05-02 15:18:22 -070028#include "sparse_format.h"
Colin Cross28fa5bc2012-05-20 13:28:05 -070029
Colin Cross28fa5bc2012-05-20 13:28:05 -070030struct sparse_file *sparse_file_new(unsigned int block_size, int64_t len)
31{
32 struct sparse_file *s = calloc(sizeof(struct sparse_file), 1);
33 if (!s) {
34 return NULL;
35 }
36
Colin Crossbe8ddcb2012-04-25 21:02:16 -070037 s->backed_block_list = backed_block_list_new(block_size);
Colin Cross411619e2012-04-24 18:51:42 -070038 if (!s->backed_block_list) {
39 free(s);
40 return NULL;
41 }
Colin Cross28fa5bc2012-05-20 13:28:05 -070042
43 s->block_size = block_size;
44 s->len = len;
45
46 return s;
47}
48
49void sparse_file_destroy(struct sparse_file *s)
50{
Colin Cross411619e2012-04-24 18:51:42 -070051 backed_block_list_destroy(s->backed_block_list);
Colin Cross28fa5bc2012-05-20 13:28:05 -070052 free(s);
53}
54
55int sparse_file_add_data(struct sparse_file *s,
56 void *data, unsigned int len, unsigned int block)
57{
Colin Crossb55dcee2012-04-24 23:07:49 -070058 return backed_block_add_data(s->backed_block_list, data, len, block);
Colin Cross28fa5bc2012-05-20 13:28:05 -070059}
60
61int sparse_file_add_fill(struct sparse_file *s,
62 uint32_t fill_val, unsigned int len, unsigned int block)
63{
Colin Crossb55dcee2012-04-24 23:07:49 -070064 return backed_block_add_fill(s->backed_block_list, fill_val, len, block);
Colin Cross28fa5bc2012-05-20 13:28:05 -070065}
66
67int sparse_file_add_file(struct sparse_file *s,
68 const char *filename, int64_t file_offset, unsigned int len,
69 unsigned int block)
70{
Colin Crossb55dcee2012-04-24 23:07:49 -070071 return backed_block_add_file(s->backed_block_list, filename, file_offset,
72 len, block);
Colin Cross28fa5bc2012-05-20 13:28:05 -070073}
74
Colin Cross9e1f17e2012-04-25 18:31:39 -070075int sparse_file_add_fd(struct sparse_file *s,
76 int fd, int64_t file_offset, unsigned int len, unsigned int block)
77{
78 return backed_block_add_fd(s->backed_block_list, fd, file_offset,
79 len, block);
80}
Colin Crossb55dcee2012-04-24 23:07:49 -070081unsigned int sparse_count_chunks(struct sparse_file *s)
Colin Cross28fa5bc2012-05-20 13:28:05 -070082{
Colin Crossb55dcee2012-04-24 23:07:49 -070083 struct backed_block *bb;
84 unsigned int last_block = 0;
85 unsigned int chunks = 0;
Colin Cross28fa5bc2012-05-20 13:28:05 -070086
Colin Crossb55dcee2012-04-24 23:07:49 -070087 for (bb = backed_block_iter_new(s->backed_block_list); bb;
88 bb = backed_block_iter_next(bb)) {
89 if (backed_block_block(bb) > last_block) {
90 /* If there is a gap between chunks, add a skip chunk */
91 chunks++;
92 }
93 chunks++;
94 last_block = backed_block_block(bb) +
95 DIV_ROUND_UP(backed_block_len(bb), s->block_size);
96 }
97 if (last_block < DIV_ROUND_UP(s->len, s->block_size)) {
98 chunks++;
99 }
Colin Cross28fa5bc2012-05-20 13:28:05 -0700100
Colin Crossb55dcee2012-04-24 23:07:49 -0700101 return chunks;
Colin Cross28fa5bc2012-05-20 13:28:05 -0700102}
103
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100104static int sparse_file_write_block(struct output_file *out,
Colin Cross1e17b312012-05-21 16:35:45 -0700105 struct backed_block *bb)
106{
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100107 int ret = -EINVAL;
108
Colin Cross1e17b312012-05-21 16:35:45 -0700109 switch (backed_block_type(bb)) {
110 case BACKED_BLOCK_DATA:
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100111 ret = write_data_chunk(out, backed_block_len(bb), backed_block_data(bb));
Colin Cross1e17b312012-05-21 16:35:45 -0700112 break;
113 case BACKED_BLOCK_FILE:
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100114 ret = write_file_chunk(out, backed_block_len(bb),
115 backed_block_filename(bb),
116 backed_block_file_offset(bb));
Colin Cross1e17b312012-05-21 16:35:45 -0700117 break;
118 case BACKED_BLOCK_FD:
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100119 ret = write_fd_chunk(out, backed_block_len(bb),
120 backed_block_fd(bb),
121 backed_block_file_offset(bb));
Colin Cross1e17b312012-05-21 16:35:45 -0700122 break;
123 case BACKED_BLOCK_FILL:
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100124 ret = write_fill_chunk(out, backed_block_len(bb),
125 backed_block_fill_val(bb));
Colin Cross1e17b312012-05-21 16:35:45 -0700126 break;
127 }
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100128
129 return ret;
Colin Cross1e17b312012-05-21 16:35:45 -0700130}
131
132static int write_all_blocks(struct sparse_file *s, struct output_file *out)
Colin Cross28fa5bc2012-05-20 13:28:05 -0700133{
Colin Crossb55dcee2012-04-24 23:07:49 -0700134 struct backed_block *bb;
135 unsigned int last_block = 0;
136 int64_t pad;
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100137 int ret = 0;
Colin Cross28fa5bc2012-05-20 13:28:05 -0700138
Colin Crossb55dcee2012-04-24 23:07:49 -0700139 for (bb = backed_block_iter_new(s->backed_block_list); bb;
140 bb = backed_block_iter_next(bb)) {
141 if (backed_block_block(bb) > last_block) {
142 unsigned int blocks = backed_block_block(bb) - last_block;
143 write_skip_chunk(out, (int64_t)blocks * s->block_size);
144 }
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100145 ret = sparse_file_write_block(out, bb);
146 if (ret)
147 return ret;
Colin Crossb55dcee2012-04-24 23:07:49 -0700148 last_block = backed_block_block(bb) +
149 DIV_ROUND_UP(backed_block_len(bb), s->block_size);
150 }
Colin Cross28fa5bc2012-05-20 13:28:05 -0700151
Colin Crossf1ec8ac2012-07-23 17:09:42 -0700152 pad = s->len - (int64_t)last_block * s->block_size;
Colin Crossb55dcee2012-04-24 23:07:49 -0700153 assert(pad >= 0);
154 if (pad > 0) {
155 write_skip_chunk(out, pad);
156 }
Colin Cross28fa5bc2012-05-20 13:28:05 -0700157
Colin Cross1e17b312012-05-21 16:35:45 -0700158 return 0;
159}
160
161int sparse_file_write(struct sparse_file *s, int fd, bool gz, bool sparse,
162 bool crc)
163{
164 int ret;
165 int chunks;
166 struct output_file *out;
167
168 chunks = sparse_count_chunks(s);
Colin Crossb43828b2012-06-08 16:55:35 -0700169 out = output_file_open_fd(fd, s->block_size, s->len, gz, sparse, chunks, crc);
Colin Cross1e17b312012-05-21 16:35:45 -0700170
171 if (!out)
172 return -ENOMEM;
173
174 ret = write_all_blocks(s, out);
175
Colin Crossb43828b2012-06-08 16:55:35 -0700176 output_file_close(out);
Colin Cross28fa5bc2012-05-20 13:28:05 -0700177
Colin Cross1e17b312012-05-21 16:35:45 -0700178 return ret;
179}
180
181int sparse_file_callback(struct sparse_file *s, bool sparse, bool crc,
182 int (*write)(void *priv, const void *data, int len), void *priv)
183{
184 int ret;
185 int chunks;
186 struct output_file *out;
187
188 chunks = sparse_count_chunks(s);
Colin Crossb43828b2012-06-08 16:55:35 -0700189 out = output_file_open_callback(write, priv, s->block_size, s->len, false,
Colin Cross1e17b312012-05-21 16:35:45 -0700190 sparse, chunks, crc);
191
192 if (!out)
193 return -ENOMEM;
194
195 ret = write_all_blocks(s, out);
196
Colin Crossb43828b2012-06-08 16:55:35 -0700197 output_file_close(out);
Colin Cross1e17b312012-05-21 16:35:45 -0700198
199 return ret;
Colin Cross28fa5bc2012-05-20 13:28:05 -0700200}
Colin Crossa21930b2012-04-26 14:24:35 -0700201
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800202struct chunk_data {
203 void *priv;
204 unsigned int block;
205 unsigned int nr_blocks;
206 int (*write)(void *priv, const void *data, int len, unsigned int block,
207 unsigned int nr_blocks);
208};
209
210static int foreach_chunk_write(void *priv, const void *data, int len)
211{
212 struct chunk_data *chk = priv;
213
214 return chk->write(chk->priv, data, len, chk->block, chk->nr_blocks);
215}
216
217int sparse_file_foreach_chunk(struct sparse_file *s, bool sparse, bool crc,
218 int (*write)(void *priv, const void *data, int len, unsigned int block,
219 unsigned int nr_blocks),
220 void *priv)
221{
222 int ret;
223 int chunks;
224 struct chunk_data chk;
225 struct output_file *out;
226 struct backed_block *bb;
227
228 chk.priv = priv;
229 chk.write = write;
230 chk.block = chk.nr_blocks = 0;
231 chunks = sparse_count_chunks(s);
232 out = output_file_open_callback(foreach_chunk_write, &chk,
233 s->block_size, s->len, false, sparse,
234 chunks, crc);
235
236 if (!out)
237 return -ENOMEM;
238
239 for (bb = backed_block_iter_new(s->backed_block_list); bb;
240 bb = backed_block_iter_next(bb)) {
241 chk.block = backed_block_block(bb);
242 chk.nr_blocks = (backed_block_len(bb) - 1) / s->block_size + 1;
243 ret = sparse_file_write_block(out, bb);
244 if (ret)
245 return ret;
246 }
247
248 output_file_close(out);
249
250 return ret;
251}
252
Mark Salyzyn031a7482014-02-27 16:56:15 -0800253static int out_counter_write(void *priv, const void *data __unused, int len)
Colin Crossbdc6d392012-05-02 15:18:22 -0700254{
255 int64_t *count = priv;
256 *count += len;
257 return 0;
258}
259
Colin Cross317a09e2012-05-24 17:15:43 -0700260int64_t sparse_file_len(struct sparse_file *s, bool sparse, bool crc)
261{
262 int ret;
263 int chunks = sparse_count_chunks(s);
264 int64_t count = 0;
265 struct output_file *out;
266
Colin Crossb43828b2012-06-08 16:55:35 -0700267 out = output_file_open_callback(out_counter_write, &count,
Colin Cross317a09e2012-05-24 17:15:43 -0700268 s->block_size, s->len, false, sparse, chunks, crc);
269 if (!out) {
270 return -1;
271 }
272
273 ret = write_all_blocks(s, out);
274
Colin Crossb43828b2012-06-08 16:55:35 -0700275 output_file_close(out);
Colin Cross317a09e2012-05-24 17:15:43 -0700276
277 if (ret < 0) {
278 return -1;
279 }
280
281 return count;
282}
283
Adrien Schildknechta26a6bd2016-11-30 11:49:47 -0800284unsigned int sparse_file_block_size(struct sparse_file *s)
285{
286 return s->block_size;
287}
288
Colin Crossbdc6d392012-05-02 15:18:22 -0700289static struct backed_block *move_chunks_up_to_len(struct sparse_file *from,
290 struct sparse_file *to, unsigned int len)
291{
292 int64_t count = 0;
293 struct output_file *out_counter;
294 struct backed_block *last_bb = NULL;
295 struct backed_block *bb;
296 struct backed_block *start;
Jeremy Compostellacfd3a032015-04-03 14:31:19 +0200297 unsigned int last_block = 0;
Colin Crossbdc6d392012-05-02 15:18:22 -0700298 int64_t file_len = 0;
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100299 int ret;
Colin Crossbdc6d392012-05-02 15:18:22 -0700300
301 /*
Jeremy Compostellacfd3a032015-04-03 14:31:19 +0200302 * overhead is sparse file header, the potential end skip
303 * chunk and crc chunk.
Colin Crossbdc6d392012-05-02 15:18:22 -0700304 */
Jeremy Compostellacfd3a032015-04-03 14:31:19 +0200305 int overhead = sizeof(sparse_header_t) + 2 * sizeof(chunk_header_t) +
Colin Crossbdc6d392012-05-02 15:18:22 -0700306 sizeof(uint32_t);
307 len -= overhead;
308
309 start = backed_block_iter_new(from->backed_block_list);
Colin Crossb43828b2012-06-08 16:55:35 -0700310 out_counter = output_file_open_callback(out_counter_write, &count,
Colin Crossbdc6d392012-05-02 15:18:22 -0700311 to->block_size, to->len, false, true, 0, false);
312 if (!out_counter) {
313 return NULL;
314 }
315
316 for (bb = start; bb; bb = backed_block_iter_next(bb)) {
317 count = 0;
Jeremy Compostellacfd3a032015-04-03 14:31:19 +0200318 if (backed_block_block(bb) > last_block)
319 count += sizeof(chunk_header_t);
320 last_block = backed_block_block(bb) +
321 DIV_ROUND_UP(backed_block_len(bb), to->block_size);
322
Colin Crossbdc6d392012-05-02 15:18:22 -0700323 /* will call out_counter_write to update count */
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100324 ret = sparse_file_write_block(out_counter, bb);
325 if (ret) {
326 bb = NULL;
327 goto out;
328 }
Colin Crossbdc6d392012-05-02 15:18:22 -0700329 if (file_len + count > len) {
330 /*
331 * If the remaining available size is more than 1/8th of the
332 * requested size, split the chunk. Results in sparse files that
333 * are at least 7/8ths of the requested size
334 */
Jeremy Compostellacfd3a032015-04-03 14:31:19 +0200335 file_len += sizeof(chunk_header_t);
Colin Crossbdc6d392012-05-02 15:18:22 -0700336 if (!last_bb || (len - file_len > (len / 8))) {
337 backed_block_split(from->backed_block_list, bb, len - file_len);
338 last_bb = bb;
339 }
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100340 goto move;
Colin Crossbdc6d392012-05-02 15:18:22 -0700341 }
342 file_len += count;
343 last_bb = bb;
344 }
345
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100346move:
Colin Crossbdc6d392012-05-02 15:18:22 -0700347 backed_block_list_move(from->backed_block_list,
348 to->backed_block_list, start, last_bb);
349
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100350out:
Colin Crossb43828b2012-06-08 16:55:35 -0700351 output_file_close(out_counter);
Colin Crossbdc6d392012-05-02 15:18:22 -0700352
353 return bb;
354}
355
356int sparse_file_resparse(struct sparse_file *in_s, unsigned int max_len,
357 struct sparse_file **out_s, int out_s_count)
358{
359 struct backed_block *bb;
Colin Crossbdc6d392012-05-02 15:18:22 -0700360 struct sparse_file *s;
361 struct sparse_file *tmp;
362 int c = 0;
363
364 tmp = sparse_file_new(in_s->block_size, in_s->len);
365 if (!tmp) {
366 return -ENOMEM;
367 }
368
369 do {
370 s = sparse_file_new(in_s->block_size, in_s->len);
371
372 bb = move_chunks_up_to_len(in_s, s, max_len);
373
374 if (c < out_s_count) {
375 out_s[c] = s;
376 } else {
377 backed_block_list_move(s->backed_block_list, tmp->backed_block_list,
378 NULL, NULL);
379 sparse_file_destroy(s);
380 }
381 c++;
382 } while (bb);
383
384 backed_block_list_move(tmp->backed_block_list, in_s->backed_block_list,
385 NULL, NULL);
386
387 sparse_file_destroy(tmp);
388
389 return c;
390}
391
Colin Crossa21930b2012-04-26 14:24:35 -0700392void sparse_file_verbose(struct sparse_file *s)
393{
394 s->verbose = true;
395}