2006-04-02 20:12:31 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2002-09-25 02:47:48 +00:00
|
|
|
#ifndef __UNARCHIVE_H__
|
|
|
|
#define __UNARCHIVE_H__
|
|
|
|
|
2005-10-27 22:49:08 +00:00
|
|
|
#define ARCHIVE_PRESERVE_DATE 1
|
|
|
|
#define ARCHIVE_CREATE_LEADING_DIRS 2
|
|
|
|
#define ARCHIVE_EXTRACT_UNCONDITIONAL 4
|
|
|
|
#define ARCHIVE_EXTRACT_QUIET 8
|
|
|
|
#define ARCHIVE_EXTRACT_NEWER 16
|
|
|
|
#define ARCHIVE_NOPRESERVE_OWN 32
|
|
|
|
#define ARCHIVE_NOPRESERVE_PERM 64
|
2002-09-25 02:47:48 +00:00
|
|
|
|
2007-05-31 22:42:12 +00:00
|
|
|
//#include "libbb.h"
|
2001-10-25 14:57:14 +00:00
|
|
|
|
|
|
|
typedef struct file_headers_s {
|
|
|
|
char *name;
|
|
|
|
char *link_name;
|
|
|
|
off_t size;
|
|
|
|
uid_t uid;
|
|
|
|
gid_t gid;
|
|
|
|
mode_t mode;
|
|
|
|
time_t mtime;
|
|
|
|
dev_t device;
|
|
|
|
} file_header_t;
|
|
|
|
|
2002-09-25 02:47:48 +00:00
|
|
|
typedef struct archive_handle_s {
|
2006-12-22 00:21:07 +00:00
|
|
|
/* define if the header and data component should be processed */
|
2002-11-05 01:52:23 +00:00
|
|
|
char (*filter)(struct archive_handle_s *);
|
2002-12-08 00:54:33 +00:00
|
|
|
llist_t *accept;
|
2006-04-02 20:12:31 +00:00
|
|
|
/* List of files that have been rejected */
|
2002-12-08 00:54:33 +00:00
|
|
|
llist_t *reject;
|
2006-04-02 20:12:31 +00:00
|
|
|
/* List of files that have successfully been worked on */
|
|
|
|
llist_t *passed;
|
2002-09-25 02:47:48 +00:00
|
|
|
|
|
|
|
/* Contains the processed header entry */
|
|
|
|
file_header_t *file_header;
|
|
|
|
|
|
|
|
/* process the header component, e.g. tar -t */
|
|
|
|
void (*action_header)(const file_header_t *);
|
|
|
|
|
2003-10-29 03:37:54 +00:00
|
|
|
/* process the data component, e.g. extract to filesystem */
|
2002-09-25 02:47:48 +00:00
|
|
|
void (*action_data)(struct archive_handle_s *);
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2002-11-05 01:52:23 +00:00
|
|
|
/* How to process any sub archive, e.g. get_header_tar_gz */
|
2002-09-25 02:47:48 +00:00
|
|
|
char (*action_data_subarchive)(struct archive_handle_s *);
|
|
|
|
|
|
|
|
/* Contains the handle to a sub archive */
|
|
|
|
struct archive_handle_s *sub_archive;
|
|
|
|
|
|
|
|
/* The raw stream as read from disk or stdin */
|
|
|
|
int src_fd;
|
|
|
|
|
|
|
|
/* Count the number of bytes processed */
|
|
|
|
off_t offset;
|
|
|
|
|
2002-11-03 14:05:15 +00:00
|
|
|
/* Function that skips data: read_by_char or read_by_skip */
|
|
|
|
void (*seek)(const struct archive_handle_s *archive_handle, const unsigned int amount);
|
|
|
|
|
2003-10-29 03:37:54 +00:00
|
|
|
/* Temporary storage */
|
2002-10-19 10:40:55 +00:00
|
|
|
char *buffer;
|
|
|
|
|
2006-04-02 20:12:31 +00:00
|
|
|
/* Flags and misc. stuff */
|
2002-09-25 02:47:48 +00:00
|
|
|
unsigned char flags;
|
|
|
|
|
|
|
|
} archive_handle_t;
|
|
|
|
|
2007-01-03 01:57:25 +00:00
|
|
|
|
2002-09-25 02:47:48 +00:00
|
|
|
extern archive_handle_t *init_handle(void);
|
|
|
|
|
2002-11-05 01:52:23 +00:00
|
|
|
extern char filter_accept_all(archive_handle_t *archive_handle);
|
|
|
|
extern char filter_accept_list(archive_handle_t *archive_handle);
|
|
|
|
extern char filter_accept_list_reassign(archive_handle_t *archive_handle);
|
|
|
|
extern char filter_accept_reject_list(archive_handle_t *archive_handle);
|
2002-09-25 02:47:48 +00:00
|
|
|
|
|
|
|
extern void unpack_ar_archive(archive_handle_t *ar_archive);
|
|
|
|
|
|
|
|
extern void data_skip(archive_handle_t *archive_handle);
|
|
|
|
extern void data_extract_all(archive_handle_t *archive_handle);
|
|
|
|
extern void data_extract_to_stdout(archive_handle_t *archive_handle);
|
2002-10-19 10:40:55 +00:00
|
|
|
extern void data_extract_to_buffer(archive_handle_t *archive_handle);
|
2002-09-25 02:47:48 +00:00
|
|
|
|
|
|
|
extern void header_skip(const file_header_t *file_header);
|
|
|
|
extern void header_list(const file_header_t *file_header);
|
|
|
|
extern void header_verbose_list(const file_header_t *file_header);
|
2001-10-25 14:57:14 +00:00
|
|
|
|
2007-03-07 22:02:23 +00:00
|
|
|
extern void check_header_gzip_or_die(int src_fd);
|
2001-10-25 14:57:14 +00:00
|
|
|
|
2002-09-25 02:47:48 +00:00
|
|
|
extern char get_header_ar(archive_handle_t *archive_handle);
|
2002-12-10 00:17:22 +00:00
|
|
|
extern char get_header_cpio(archive_handle_t *archive_handle);
|
2002-09-25 02:47:48 +00:00
|
|
|
extern char get_header_tar(archive_handle_t *archive_handle);
|
2002-11-05 02:56:57 +00:00
|
|
|
extern char get_header_tar_bz2(archive_handle_t *archive_handle);
|
2006-01-20 18:28:50 +00:00
|
|
|
extern char get_header_tar_lzma(archive_handle_t *archive_handle);
|
2002-09-25 02:47:48 +00:00
|
|
|
extern char get_header_tar_gz(archive_handle_t *archive_handle);
|
2001-10-25 14:57:14 +00:00
|
|
|
|
2002-11-03 14:05:15 +00:00
|
|
|
extern void seek_by_jump(const archive_handle_t *archive_handle, const unsigned int amount);
|
2006-10-08 12:49:22 +00:00
|
|
|
extern void seek_by_read(const archive_handle_t *archive_handle, const unsigned int amount);
|
2002-11-03 07:28:38 +00:00
|
|
|
|
2002-11-03 14:05:15 +00:00
|
|
|
extern ssize_t archive_xread_all_eof(archive_handle_t *archive_handle, unsigned char *buf, size_t count);
|
|
|
|
|
|
|
|
extern void data_align(archive_handle_t *archive_handle, const unsigned short boundary);
|
2002-10-19 06:19:22 +00:00
|
|
|
extern const llist_t *find_list_entry(const llist_t *list, const char *filename);
|
2006-09-03 14:04:33 +00:00
|
|
|
extern const llist_t *find_list_entry2(const llist_t *list, const char *filename);
|
2002-11-03 14:05:15 +00:00
|
|
|
|
2007-04-10 21:40:19 +00:00
|
|
|
/* A bit of bunzip2 internals are exposed for compressed help support: */
|
|
|
|
typedef struct bunzip_data bunzip_data;
|
|
|
|
int start_bunzip(bunzip_data **bdp, int in_fd, const unsigned char *inbuf, int len);
|
|
|
|
int read_bunzip(bunzip_data *bd, char *outbuf, int len);
|
|
|
|
void dealloc_bunzip(bunzip_data *bd);
|
2007-01-05 23:56:53 +00:00
|
|
|
|
|
|
|
typedef struct inflate_unzip_result {
|
|
|
|
off_t bytes_out;
|
|
|
|
uint32_t crc;
|
|
|
|
} inflate_unzip_result;
|
|
|
|
|
2007-06-08 13:05:39 +00:00
|
|
|
extern USE_DESKTOP(long long) int unpack_bz2_stream(int src_fd, int dst_fd);
|
|
|
|
extern USE_DESKTOP(long long) int inflate_unzip(inflate_unzip_result *res, unsigned bufsize, int src_fd, int dst_fd);
|
|
|
|
extern USE_DESKTOP(long long) int unpack_gz_stream(int src_fd, int dst_fd);
|
|
|
|
extern USE_DESKTOP(long long) int unpack_lzma_stream(int src_fd, int dst_fd);
|
2003-11-15 23:19:05 +00:00
|
|
|
|
2006-10-01 15:55:11 +00:00
|
|
|
extern int open_transformer(int src_fd,
|
|
|
|
USE_DESKTOP(long long) int (*transformer)(int src_fd, int dst_fd));
|
2002-11-03 14:05:15 +00:00
|
|
|
|
2002-09-25 02:47:48 +00:00
|
|
|
#endif
|