blob: ed671f5624c0ee15f8df0d9e7e58872aae32d013 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
/*
* tar2sqfs.c
*
* Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
*/
#include "tar2sqfs.h"
int main(int argc, char **argv)
{
int status = EXIT_FAILURE;
sqfs_istream_t *input_file = NULL;
dir_iterator_t *tar = NULL;
sqfs_writer_t sqfs;
int ret;
process_args(argc, argv);
ret = istream_open_stdin(&input_file);
if (ret) {
sqfs_perror("stdint", "creating stream wrapper", ret);
return EXIT_FAILURE;
}
tar = tar_open_stream(input_file);
sqfs_drop(input_file);
if (tar == NULL) {
fputs("Creating tar stream: out-of-memory\n", stderr);
return EXIT_FAILURE;
}
memset(&sqfs, 0, sizeof(sqfs));
if (sqfs_writer_init(&sqfs, &cfg))
goto out_it;
if (process_tarball(tar, &sqfs))
goto out;
if (fstree_post_process(&sqfs.fs))
goto out;
if (sqfs_writer_finish(&sqfs, &cfg))
goto out;
status = EXIT_SUCCESS;
out:
sqfs_writer_cleanup(&sqfs, status);
out_it:
sqfs_drop(tar);
return status;
}
|