2019-04-05 14:19:23 +02:00
|
|
|
/* SPDX-License-Identifier: ISC */
|
|
|
|
#include "pkg2sqfs.h"
|
|
|
|
|
2019-04-17 12:21:08 +02:00
|
|
|
static int sqfs_write_table(sqfs_info_t *info, const void *data,
|
|
|
|
size_t entsize, size_t count, uint64_t *startblock)
|
2019-04-05 14:19:23 +02:00
|
|
|
{
|
|
|
|
size_t ent_per_blocks = SQFS_META_BLOCK_SIZE / entsize;
|
|
|
|
uint64_t blocks[count / ent_per_blocks + 1];
|
|
|
|
size_t i, blkidx = 0, tblsize;
|
|
|
|
meta_writer_t *m;
|
|
|
|
ssize_t ret;
|
|
|
|
|
|
|
|
/* Write actual data. Whenever we cross a block boundary, remember
|
|
|
|
the block start offset */
|
|
|
|
m = meta_writer_create(info->outfd);
|
|
|
|
if (m == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
for (i = 0; i < count; ++i) {
|
|
|
|
if (blkidx == 0 || m->written > blocks[blkidx - 1])
|
|
|
|
blocks[blkidx++] = m->written;
|
|
|
|
|
|
|
|
if (meta_writer_append(m, data, entsize))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
data = (const char *)data + entsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (meta_writer_flush(m))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
for (i = 0; i < blkidx; ++i)
|
|
|
|
blocks[i] = htole64(blocks[i] + info->super.bytes_used);
|
|
|
|
|
|
|
|
info->super.bytes_used += m->written;
|
|
|
|
meta_writer_destroy(m);
|
|
|
|
|
|
|
|
/* write new index table */
|
|
|
|
*startblock = info->super.bytes_used;
|
|
|
|
tblsize = sizeof(blocks[0]) * blkidx;
|
|
|
|
|
|
|
|
ret = write_retry(info->outfd, blocks, tblsize);
|
|
|
|
if (ret < 0) {
|
|
|
|
perror("writing index table");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((size_t)ret < tblsize) {
|
|
|
|
fputs("index table truncated\n", stderr);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
info->super.bytes_used += tblsize;
|
|
|
|
return 0;
|
|
|
|
fail:
|
|
|
|
meta_writer_destroy(m);
|
|
|
|
return -1;
|
|
|
|
}
|
2019-04-17 12:21:08 +02:00
|
|
|
|
|
|
|
int sqfs_write_fragment_table(sqfs_info_t *info)
|
|
|
|
{
|
|
|
|
info->super.fragment_entry_count = info->num_fragments;
|
|
|
|
|
|
|
|
return sqfs_write_table(info, info->fragments,
|
|
|
|
sizeof(info->fragments[0]),
|
|
|
|
info->num_fragments,
|
|
|
|
&info->super.fragment_table_start);
|
|
|
|
}
|
|
|
|
|
|
|
|
int sqfs_write_ids(sqfs_info_t *info)
|
|
|
|
{
|
|
|
|
info->super.flags |= SQFS_FLAG_UNCOMPRESSED_IDS;
|
|
|
|
|
|
|
|
return sqfs_write_table(info, info->fs.id_tbl,
|
|
|
|
sizeof(info->fs.id_tbl[0]),
|
|
|
|
info->fs.num_ids, &info->super.id_table_start);
|
|
|
|
}
|