2006-04-03 01:42:31 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2009-04-09 18:05:13 +05:30
|
|
|
#ifndef UNARCHIVE_H
|
|
|
|
#define UNARCHIVE_H 1
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2009-04-09 18:05:13 +05:30
|
|
|
PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
|
2008-05-09 23:29:34 +05:30
|
|
|
|
2007-06-20 20:19:47 +05:30
|
|
|
typedef struct file_header_t {
|
2001-10-25 20:27:14 +05:30
|
|
|
char *name;
|
2007-06-20 20:19:47 +05:30
|
|
|
char *link_target;
|
2008-02-15 02:07:54 +05:30
|
|
|
#if ENABLE_FEATURE_TAR_UNAME_GNAME
|
2010-01-06 15:23:17 +05:30
|
|
|
char *tar__uname;
|
|
|
|
char *tar__gname;
|
2008-02-15 02:07:54 +05:30
|
|
|
#endif
|
2001-10-25 20:27:14 +05:30
|
|
|
off_t size;
|
|
|
|
uid_t uid;
|
|
|
|
gid_t gid;
|
|
|
|
mode_t mode;
|
|
|
|
time_t mtime;
|
|
|
|
dev_t device;
|
|
|
|
} file_header_t;
|
|
|
|
|
2010-01-06 15:23:17 +05:30
|
|
|
struct hardlinks_t;
|
|
|
|
|
2007-06-20 20:19:47 +05:30
|
|
|
typedef struct archive_handle_t {
|
2010-01-06 15:23:17 +05:30
|
|
|
/* Flags. 1st since it is most used member */
|
|
|
|
unsigned ah_flags;
|
|
|
|
|
|
|
|
/* The raw stream as read from disk or stdin */
|
|
|
|
int src_fd;
|
|
|
|
|
2008-06-28 10:34:09 +05:30
|
|
|
/* Define if the header and data component should be processed */
|
2008-06-27 08:22:20 +05:30
|
|
|
char FAST_FUNC (*filter)(struct archive_handle_t *);
|
2010-01-06 15:23:17 +05:30
|
|
|
/* List of files that have been accepted */
|
2002-12-08 06:24:33 +05:30
|
|
|
llist_t *accept;
|
2006-04-03 01:42:31 +05:30
|
|
|
/* List of files that have been rejected */
|
2002-12-08 06:24:33 +05:30
|
|
|
llist_t *reject;
|
2006-04-03 01:42:31 +05:30
|
|
|
/* List of files that have successfully been worked on */
|
|
|
|
llist_t *passed;
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2010-01-06 15:23:17 +05:30
|
|
|
/* Currently processed file's header */
|
2002-09-25 08:17:48 +05:30
|
|
|
file_header_t *file_header;
|
|
|
|
|
2008-06-28 10:34:09 +05:30
|
|
|
/* Process the header component, e.g. tar -t */
|
2008-06-27 08:22:20 +05:30
|
|
|
void FAST_FUNC (*action_header)(const file_header_t *);
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2008-06-28 10:34:09 +05:30
|
|
|
/* Process the data component, e.g. extract to filesystem */
|
2008-06-27 08:22:20 +05:30
|
|
|
void FAST_FUNC (*action_data)(struct archive_handle_t *);
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2009-08-29 00:39:51 +05:30
|
|
|
/* Function that skips data */
|
|
|
|
void FAST_FUNC (*seek)(int fd, off_t amount);
|
2002-11-03 19:35:15 +05:30
|
|
|
|
2010-01-06 15:23:17 +05:30
|
|
|
/* Count processed bytes */
|
|
|
|
off_t offset;
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2010-01-06 15:23:17 +05:30
|
|
|
/* Archiver specific. Can make it a union if it ever gets big */
|
2010-01-25 03:22:21 +05:30
|
|
|
#if ENABLE_TAR || ENABLE_DPKG || ENABLE_DPKG_DEB
|
2010-01-06 15:23:17 +05:30
|
|
|
smallint tar__end;
|
|
|
|
# if ENABLE_FEATURE_TAR_GNU_EXTENSIONS
|
|
|
|
char* tar__longname;
|
|
|
|
char* tar__linkname;
|
|
|
|
# endif
|
2010-03-19 19:18:51 +05:30
|
|
|
# if ENABLE_FEATURE_TAR_SELINUX
|
|
|
|
char* tar__global_sctx;
|
|
|
|
char* tar__next_file_sctx;
|
|
|
|
# endif
|
2010-01-06 15:23:17 +05:30
|
|
|
#endif
|
2010-01-25 03:22:21 +05:30
|
|
|
#if ENABLE_CPIO || ENABLE_RPM2CPIO || ENABLE_RPM
|
2010-01-06 15:23:17 +05:30
|
|
|
uoff_t cpio__blocks;
|
|
|
|
struct hardlinks_t *cpio__hardlinks_to_create;
|
|
|
|
struct hardlinks_t *cpio__created_hardlinks;
|
|
|
|
#endif
|
|
|
|
#if ENABLE_DPKG || ENABLE_DPKG_DEB
|
|
|
|
/* Temporary storage */
|
|
|
|
char *dpkg__buffer;
|
|
|
|
/* How to process any sub archive, e.g. get_header_tar_gz */
|
|
|
|
char FAST_FUNC (*dpkg__action_data_subarchive)(struct archive_handle_t *);
|
|
|
|
/* Contains the handle to a sub archive */
|
|
|
|
struct archive_handle_t *dpkg__sub_archive;
|
|
|
|
#endif
|
2010-03-15 20:08:09 +05:30
|
|
|
#if ENABLE_FEATURE_AR_CREATE
|
|
|
|
const char *ar__name;
|
|
|
|
struct archive_handle_t *ar__out;
|
|
|
|
#endif
|
2002-09-25 08:17:48 +05:30
|
|
|
} archive_handle_t;
|
2009-12-17 03:16:01 +05:30
|
|
|
/* bits in ah_flags */
|
|
|
|
#define ARCHIVE_RESTORE_DATE (1 << 0)
|
|
|
|
#define ARCHIVE_CREATE_LEADING_DIRS (1 << 1)
|
|
|
|
#define ARCHIVE_UNLINK_OLD (1 << 2)
|
|
|
|
#define ARCHIVE_EXTRACT_QUIET (1 << 3)
|
|
|
|
#define ARCHIVE_EXTRACT_NEWER (1 << 4)
|
|
|
|
#define ARCHIVE_DONT_RESTORE_OWNER (1 << 5)
|
|
|
|
#define ARCHIVE_DONT_RESTORE_PERM (1 << 6)
|
|
|
|
#define ARCHIVE_NUMERIC_OWNER (1 << 7)
|
2009-12-17 03:48:59 +05:30
|
|
|
#define ARCHIVE_O_TRUNC (1 << 8)
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2007-01-03 07:27:25 +05:30
|
|
|
|
2008-11-01 18:24:56 +05:30
|
|
|
/* Info struct unpackers can fill out to inform users of thing like
|
|
|
|
* timestamps of unpacked files */
|
|
|
|
typedef struct unpack_info_t {
|
|
|
|
time_t mtime;
|
|
|
|
} unpack_info_t;
|
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
extern archive_handle_t *init_handle(void) FAST_FUNC;
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
extern char filter_accept_all(archive_handle_t *archive_handle) FAST_FUNC;
|
|
|
|
extern char filter_accept_list(archive_handle_t *archive_handle) FAST_FUNC;
|
|
|
|
extern char filter_accept_list_reassign(archive_handle_t *archive_handle) FAST_FUNC;
|
|
|
|
extern char filter_accept_reject_list(archive_handle_t *archive_handle) FAST_FUNC;
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
extern void unpack_ar_archive(archive_handle_t *ar_archive) FAST_FUNC;
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
extern void data_skip(archive_handle_t *archive_handle) FAST_FUNC;
|
|
|
|
extern void data_extract_all(archive_handle_t *archive_handle) FAST_FUNC;
|
|
|
|
extern void data_extract_to_stdout(archive_handle_t *archive_handle) FAST_FUNC;
|
2002-09-25 08:17:48 +05:30
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
extern void header_skip(const file_header_t *file_header) FAST_FUNC;
|
|
|
|
extern void header_list(const file_header_t *file_header) FAST_FUNC;
|
|
|
|
extern void header_verbose_list(const file_header_t *file_header) FAST_FUNC;
|
2001-10-25 20:27:14 +05:30
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
extern char get_header_ar(archive_handle_t *archive_handle) FAST_FUNC;
|
|
|
|
extern char get_header_cpio(archive_handle_t *archive_handle) FAST_FUNC;
|
|
|
|
extern char get_header_tar(archive_handle_t *archive_handle) FAST_FUNC;
|
2008-08-05 18:40:34 +05:30
|
|
|
extern char get_header_tar_gz(archive_handle_t *archive_handle) FAST_FUNC;
|
2008-06-27 08:22:20 +05:30
|
|
|
extern char get_header_tar_bz2(archive_handle_t *archive_handle) FAST_FUNC;
|
|
|
|
extern char get_header_tar_lzma(archive_handle_t *archive_handle) FAST_FUNC;
|
2001-10-25 20:27:14 +05:30
|
|
|
|
2009-08-29 00:39:51 +05:30
|
|
|
extern void seek_by_jump(int fd, off_t amount) FAST_FUNC;
|
|
|
|
extern void seek_by_read(int fd, off_t amount) FAST_FUNC;
|
2002-11-03 12:58:38 +05:30
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
extern void data_align(archive_handle_t *archive_handle, unsigned boundary) FAST_FUNC;
|
|
|
|
extern const llist_t *find_list_entry(const llist_t *list, const char *filename) FAST_FUNC;
|
|
|
|
extern const llist_t *find_list_entry2(const llist_t *list, const char *filename) FAST_FUNC;
|
2002-11-03 19:35:15 +05:30
|
|
|
|
2007-04-11 03:10:19 +05:30
|
|
|
/* A bit of bunzip2 internals are exposed for compressed help support: */
|
|
|
|
typedef struct bunzip_data bunzip_data;
|
2008-06-27 08:22:20 +05:30
|
|
|
int start_bunzip(bunzip_data **bdp, int in_fd, const unsigned char *inbuf, int len) FAST_FUNC;
|
|
|
|
int read_bunzip(bunzip_data *bd, char *outbuf, int len) FAST_FUNC;
|
|
|
|
void dealloc_bunzip(bunzip_data *bd) FAST_FUNC;
|
2007-01-06 05:26:53 +05:30
|
|
|
|
|
|
|
typedef struct inflate_unzip_result {
|
|
|
|
off_t bytes_out;
|
|
|
|
uint32_t crc;
|
|
|
|
} inflate_unzip_result;
|
|
|
|
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_DESKTOP(long long) int inflate_unzip(inflate_unzip_result *res, off_t compr_size, int src_fd, int dst_fd) FAST_FUNC;
|
2008-08-05 18:40:34 +05:30
|
|
|
/* lzma unpacker takes .lzma stream from offset 0 */
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_DESKTOP(long long) int unpack_lzma_stream(int src_fd, int dst_fd) FAST_FUNC;
|
2008-08-05 18:40:34 +05:30
|
|
|
/* the rest wants 2 first bytes already skipped by the caller */
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_DESKTOP(long long) int unpack_bz2_stream(int src_fd, int dst_fd) FAST_FUNC;
|
|
|
|
IF_DESKTOP(long long) int unpack_gz_stream(int src_fd, int dst_fd) FAST_FUNC;
|
|
|
|
IF_DESKTOP(long long) int unpack_gz_stream_with_info(int src_fd, int dst_fd, unpack_info_t *info) FAST_FUNC;
|
|
|
|
IF_DESKTOP(long long) int unpack_Z_stream(int fd_in, int fd_out) FAST_FUNC;
|
2008-08-05 18:40:34 +05:30
|
|
|
/* wrapper which checks first two bytes to be "BZ" */
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_DESKTOP(long long) int unpack_bz2_stream_prime(int src_fd, int dst_fd) FAST_FUNC;
|
2003-11-16 04:49:05 +05:30
|
|
|
|
2008-11-01 18:24:56 +05:30
|
|
|
int bbunpack(char **argv,
|
|
|
|
char* (*make_new_name)(char *filename),
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_DESKTOP(long long) int (*unpacker)(unpack_info_t *info)) FAST_FUNC;
|
2008-11-01 18:24:56 +05:30
|
|
|
|
2007-09-05 17:18:32 +05:30
|
|
|
#if BB_MMU
|
2008-08-05 18:40:34 +05:30
|
|
|
void open_transformer(int fd,
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_DESKTOP(long long) int FAST_FUNC (*transformer)(int src_fd, int dst_fd)) FAST_FUNC;
|
2008-07-10 23:13:01 +05:30
|
|
|
#define open_transformer(fd, transformer, transform_prog) open_transformer(fd, transformer)
|
2007-09-05 17:18:32 +05:30
|
|
|
#else
|
2008-08-05 18:40:34 +05:30
|
|
|
void open_transformer(int src_fd, const char *transform_prog) FAST_FUNC;
|
2008-07-10 23:13:01 +05:30
|
|
|
#define open_transformer(fd, transformer, transform_prog) open_transformer(fd, transform_prog)
|
2007-09-05 17:18:32 +05:30
|
|
|
#endif
|
2002-11-03 19:35:15 +05:30
|
|
|
|
2009-04-09 18:05:13 +05:30
|
|
|
POP_SAVED_FUNCTION_VISIBILITY
|
2008-05-09 23:29:34 +05:30
|
|
|
|
2002-09-25 08:17:48 +05:30
|
|
|
#endif
|