summaryrefslogtreecommitdiff
path: root/bin/sqfs2tar/sqfs2tar.h
blob: 47d82ef4662c30cad44c57bbb850af9b0bd0b78c (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
52
/* SPDX-License-Identifier: GPL-3.0-or-later */
/*
 * sqfs2tar.h
 *
 * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
 */
#ifndef SQFS2TAR_H
#define SQFS2TAR_H

#include "config.h"
#include "common.h"
#include "tar.h"

#include <getopt.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>

/* options.c */
extern bool dont_skip;
extern bool keep_as_dir;
extern bool no_xattr;
extern bool no_links;

extern char *root_becomes;
extern char **subdirs;
extern size_t num_subdirs;

extern const char *filename;

void process_args(int argc, char **argv);

/* tar2sqfs.c */
extern sqfs_xattr_reader_t *xr;
extern sqfs_data_reader_t *data;
extern sqfs_super_t super;
extern sqfs_hard_link_t *links;
extern FILE *out_file;

char *assemble_tar_path(char *name, bool is_dir);

/* xattr.c */
int get_xattrs(const char *name, const sqfs_inode_generic_t *inode,
	       tar_xattr_t **out);

/* write_tree.c */
int write_tree_dfs(const sqfs_tree_node_t *n);

#endif /* SQFS2TAR_H */