aboutsummaryrefslogtreecommitdiff
path: root/unpack/rdsquashfs.h
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-05-04 21:02:09 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-05-04 22:22:48 +0200
commit04aa1d971efb44eefa2290ed981c61842b7f62b7 (patch)
treea9059276e9b58ccc54a0eaa206e6d1ca53c7b125 /unpack/rdsquashfs.h
parent7070857b47373dafc1ab93fadec79243da589a1a (diff)
Rename tools to not collide with squashfs-tools
This commit changes the names of the tools to gensquashfs and rdsquashfs so they don't collide with the names used by the squashfs-tools package and the two can be installed side by side. Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'unpack/rdsquashfs.h')
-rw-r--r--unpack/rdsquashfs.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/unpack/rdsquashfs.h b/unpack/rdsquashfs.h
new file mode 100644
index 0000000..995eee7
--- /dev/null
+++ b/unpack/rdsquashfs.h
@@ -0,0 +1,49 @@
+/* SPDX-License-Identifier: GPL-3.0-or-later */
+#ifndef RDSQUASHFS_H
+#define RDSQUASHFS_H
+
+#include "meta_reader.h"
+#include "frag_reader.h"
+#include "squashfs.h"
+#include "compress.h"
+#include "id_table.h"
+#include "fstree.h"
+#include "config.h"
+#include "util.h"
+
+#include <string.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <getopt.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <stdio.h>
+
+enum UNPACK_FLAGS {
+ UNPACK_NO_DEVICES = 0x01,
+ UNPACK_NO_SOCKETS = 0x02,
+ UNPACK_NO_FIFO = 0x04,
+ UNPACK_NO_SLINKS = 0x08,
+ UNPACK_NO_EMPTY = 0x10,
+ UNPACK_CHMOD = 0x20,
+ UNPACK_CHOWN = 0x40,
+};
+
+tree_node_t *tree_node_from_inode(sqfs_inode_generic_t *inode,
+ const id_table_t *idtbl,
+ const char *name,
+ size_t block_size);
+
+int read_fstree(fstree_t *out, int fd, sqfs_super_t *super, compressor_t *cmp,
+ int flags);
+
+void list_files(tree_node_t *node);
+
+int extract_file(file_info_t *fi, compressor_t *cmp, size_t block_size,
+ frag_reader_t *frag, int sqfsfd, int outfd);
+
+int restore_fstree(const char *rootdir, tree_node_t *root, compressor_t *cmp,
+ size_t block_size, frag_reader_t *frag, int sqfsfd,
+ int flags);
+
+#endif /* RDSQUASHFS_H */