Bernhard Reutner-Fischer | 9457e70 | 2006-04-02 20:12:31 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 2 | #ifndef UNARCHIVE_H |
| 3 | #define UNARCHIVE_H 1 |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 4 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 5 | PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 6 | |
Rob Landley | f3d6c94 | 2005-10-27 22:49:08 +0000 | [diff] [blame] | 7 | #define ARCHIVE_PRESERVE_DATE 1 |
| 8 | #define ARCHIVE_CREATE_LEADING_DIRS 2 |
| 9 | #define ARCHIVE_EXTRACT_UNCONDITIONAL 4 |
| 10 | #define ARCHIVE_EXTRACT_QUIET 8 |
| 11 | #define ARCHIVE_EXTRACT_NEWER 16 |
| 12 | #define ARCHIVE_NOPRESERVE_OWN 32 |
| 13 | #define ARCHIVE_NOPRESERVE_PERM 64 |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 14 | |
Denis Vlasenko | 7510384 | 2007-06-20 14:49:47 +0000 | [diff] [blame] | 15 | typedef struct file_header_t { |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 16 | char *name; |
Denis Vlasenko | 7510384 | 2007-06-20 14:49:47 +0000 | [diff] [blame] | 17 | char *link_target; |
Denis Vlasenko | e00e502 | 2008-02-14 20:37:54 +0000 | [diff] [blame] | 18 | #if ENABLE_FEATURE_TAR_UNAME_GNAME |
Denis Vlasenko | 42cc304 | 2008-03-24 02:05:58 +0000 | [diff] [blame] | 19 | char *uname; |
Denis Vlasenko | e00e502 | 2008-02-14 20:37:54 +0000 | [diff] [blame] | 20 | char *gname; |
| 21 | #endif |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 22 | off_t size; |
| 23 | uid_t uid; |
| 24 | gid_t gid; |
| 25 | mode_t mode; |
| 26 | time_t mtime; |
| 27 | dev_t device; |
| 28 | } file_header_t; |
| 29 | |
Denis Vlasenko | 7510384 | 2007-06-20 14:49:47 +0000 | [diff] [blame] | 30 | typedef struct archive_handle_t { |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 31 | /* Define if the header and data component should be processed */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 32 | char FAST_FUNC (*filter)(struct archive_handle_t *); |
Glenn L McGrath | 66125c8 | 2002-12-08 00:54:33 +0000 | [diff] [blame] | 33 | llist_t *accept; |
Bernhard Reutner-Fischer | 9457e70 | 2006-04-02 20:12:31 +0000 | [diff] [blame] | 34 | /* List of files that have been rejected */ |
Glenn L McGrath | 66125c8 | 2002-12-08 00:54:33 +0000 | [diff] [blame] | 35 | llist_t *reject; |
Bernhard Reutner-Fischer | 9457e70 | 2006-04-02 20:12:31 +0000 | [diff] [blame] | 36 | /* List of files that have successfully been worked on */ |
| 37 | llist_t *passed; |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 38 | |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 39 | /* Contains the processed header entry */ |
| 40 | file_header_t *file_header; |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 41 | |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 42 | /* Process the header component, e.g. tar -t */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 43 | void FAST_FUNC (*action_header)(const file_header_t *); |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 44 | |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 45 | /* Process the data component, e.g. extract to filesystem */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 46 | void FAST_FUNC (*action_data)(struct archive_handle_t *); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 47 | |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 48 | #if ENABLE_DPKG || ENABLE_DPKG_DEB |
| 49 | /* "subarchive" is used only by dpkg[-deb] applets */ |
Glenn L McGrath | 18bbca1 | 2002-11-05 01:52:23 +0000 | [diff] [blame] | 50 | /* How to process any sub archive, e.g. get_header_tar_gz */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 51 | char FAST_FUNC (*action_data_subarchive)(struct archive_handle_t *); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 52 | /* Contains the handle to a sub archive */ |
Denis Vlasenko | 7510384 | 2007-06-20 14:49:47 +0000 | [diff] [blame] | 53 | struct archive_handle_t *sub_archive; |
Denis Vlasenko | 0381d42 | 2008-07-10 23:06:00 +0000 | [diff] [blame] | 54 | #endif |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 55 | |
| 56 | /* The raw stream as read from disk or stdin */ |
| 57 | int src_fd; |
| 58 | |
| 59 | /* Count the number of bytes processed */ |
| 60 | off_t offset; |
| 61 | |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 62 | /* Function that skips data: read_by_char or read_by_skip */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 63 | void FAST_FUNC (*seek)(const struct archive_handle_t *archive_handle, const unsigned amount); |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 64 | |
Glenn L McGrath | f235d05 | 2003-10-29 03:37:54 +0000 | [diff] [blame] | 65 | /* Temporary storage */ |
Glenn L McGrath | 61b7904 | 2002-10-19 10:40:55 +0000 | [diff] [blame] | 66 | char *buffer; |
| 67 | |
Bernhard Reutner-Fischer | 9457e70 | 2006-04-02 20:12:31 +0000 | [diff] [blame] | 68 | /* Flags and misc. stuff */ |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 69 | unsigned char ah_flags; |
| 70 | |
| 71 | /* "Private" storage for archivers */ |
| 72 | // unsigned char ah_priv_inited; |
| 73 | void *ah_priv[8]; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 74 | |
| 75 | } archive_handle_t; |
| 76 | |
Denis Vlasenko | bb3d0fa | 2007-01-03 01:57:25 +0000 | [diff] [blame] | 77 | |
Denis Vlasenko | 1a9e9bd | 2008-11-01 12:54:56 +0000 | [diff] [blame] | 78 | /* Info struct unpackers can fill out to inform users of thing like |
| 79 | * timestamps of unpacked files */ |
| 80 | typedef struct unpack_info_t { |
| 81 | time_t mtime; |
| 82 | } unpack_info_t; |
| 83 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 84 | extern archive_handle_t *init_handle(void) FAST_FUNC; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 85 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 86 | extern char filter_accept_all(archive_handle_t *archive_handle) FAST_FUNC; |
| 87 | extern char filter_accept_list(archive_handle_t *archive_handle) FAST_FUNC; |
| 88 | extern char filter_accept_list_reassign(archive_handle_t *archive_handle) FAST_FUNC; |
| 89 | extern char filter_accept_reject_list(archive_handle_t *archive_handle) FAST_FUNC; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 90 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 91 | extern void unpack_ar_archive(archive_handle_t *ar_archive) FAST_FUNC; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 92 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 93 | extern void data_skip(archive_handle_t *archive_handle) FAST_FUNC; |
| 94 | extern void data_extract_all(archive_handle_t *archive_handle) FAST_FUNC; |
| 95 | extern void data_extract_to_stdout(archive_handle_t *archive_handle) FAST_FUNC; |
| 96 | extern void data_extract_to_buffer(archive_handle_t *archive_handle) FAST_FUNC; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 97 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 98 | extern void header_skip(const file_header_t *file_header) FAST_FUNC; |
| 99 | extern void header_list(const file_header_t *file_header) FAST_FUNC; |
| 100 | extern void header_verbose_list(const file_header_t *file_header) FAST_FUNC; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 101 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 102 | extern char get_header_ar(archive_handle_t *archive_handle) FAST_FUNC; |
| 103 | extern char get_header_cpio(archive_handle_t *archive_handle) FAST_FUNC; |
| 104 | extern char get_header_tar(archive_handle_t *archive_handle) FAST_FUNC; |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 105 | extern char get_header_tar_gz(archive_handle_t *archive_handle) FAST_FUNC; |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 106 | extern char get_header_tar_bz2(archive_handle_t *archive_handle) FAST_FUNC; |
| 107 | extern char get_header_tar_lzma(archive_handle_t *archive_handle) FAST_FUNC; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 108 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 109 | extern void seek_by_jump(const archive_handle_t *archive_handle, unsigned amount) FAST_FUNC; |
| 110 | extern void seek_by_read(const archive_handle_t *archive_handle, unsigned amount) FAST_FUNC; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 111 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 112 | extern void data_align(archive_handle_t *archive_handle, unsigned boundary) FAST_FUNC; |
| 113 | extern const llist_t *find_list_entry(const llist_t *list, const char *filename) FAST_FUNC; |
| 114 | extern const llist_t *find_list_entry2(const llist_t *list, const char *filename) FAST_FUNC; |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 115 | |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 116 | /* A bit of bunzip2 internals are exposed for compressed help support: */ |
| 117 | typedef struct bunzip_data bunzip_data; |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 118 | int start_bunzip(bunzip_data **bdp, int in_fd, const unsigned char *inbuf, int len) FAST_FUNC; |
| 119 | int read_bunzip(bunzip_data *bd, char *outbuf, int len) FAST_FUNC; |
| 120 | void dealloc_bunzip(bunzip_data *bd) FAST_FUNC; |
Denis Vlasenko | cd42cb8 | 2007-01-05 23:56:53 +0000 | [diff] [blame] | 121 | |
| 122 | typedef struct inflate_unzip_result { |
| 123 | off_t bytes_out; |
| 124 | uint32_t crc; |
| 125 | } inflate_unzip_result; |
| 126 | |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 127 | USE_DESKTOP(long long) int inflate_unzip(inflate_unzip_result *res, off_t compr_size, int src_fd, int dst_fd) FAST_FUNC; |
| 128 | /* lzma unpacker takes .lzma stream from offset 0 */ |
| 129 | USE_DESKTOP(long long) int unpack_lzma_stream(int src_fd, int dst_fd) FAST_FUNC; |
| 130 | /* the rest wants 2 first bytes already skipped by the caller */ |
| 131 | USE_DESKTOP(long long) int unpack_bz2_stream(int src_fd, int dst_fd) FAST_FUNC; |
| 132 | USE_DESKTOP(long long) int unpack_gz_stream(int src_fd, int dst_fd) FAST_FUNC; |
Denis Vlasenko | 1a9e9bd | 2008-11-01 12:54:56 +0000 | [diff] [blame] | 133 | USE_DESKTOP(long long) int unpack_gz_stream_with_info(int src_fd, int dst_fd, unpack_info_t *info) FAST_FUNC; |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 134 | USE_DESKTOP(long long) int unpack_Z_stream(int fd_in, int fd_out) FAST_FUNC; |
| 135 | /* wrapper which checks first two bytes to be "BZ" */ |
| 136 | USE_DESKTOP(long long) int unpack_bz2_stream_prime(int src_fd, int dst_fd) FAST_FUNC; |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 137 | |
Denis Vlasenko | 1a9e9bd | 2008-11-01 12:54:56 +0000 | [diff] [blame] | 138 | int bbunpack(char **argv, |
| 139 | char* (*make_new_name)(char *filename), |
| 140 | USE_DESKTOP(long long) int (*unpacker)(unpack_info_t *info)) FAST_FUNC; |
| 141 | |
Denis Vlasenko | 211f7f8 | 2007-09-05 11:48:32 +0000 | [diff] [blame] | 142 | #if BB_MMU |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 143 | void open_transformer(int fd, |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 144 | USE_DESKTOP(long long) int FAST_FUNC (*transformer)(int src_fd, int dst_fd)) FAST_FUNC; |
Denis Vlasenko | b605272 | 2008-07-10 17:43:01 +0000 | [diff] [blame] | 145 | #define open_transformer(fd, transformer, transform_prog) open_transformer(fd, transformer) |
Denis Vlasenko | 211f7f8 | 2007-09-05 11:48:32 +0000 | [diff] [blame] | 146 | #else |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 147 | void open_transformer(int src_fd, const char *transform_prog) FAST_FUNC; |
Denis Vlasenko | b605272 | 2008-07-10 17:43:01 +0000 | [diff] [blame] | 148 | #define open_transformer(fd, transformer, transform_prog) open_transformer(fd, transform_prog) |
Denis Vlasenko | 211f7f8 | 2007-09-05 11:48:32 +0000 | [diff] [blame] | 149 | #endif |
Glenn L McGrath | 5699b85 | 2003-11-15 23:19:05 +0000 | [diff] [blame] | 150 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 151 | POP_SAVED_FUNCTION_VISIBILITY |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 152 | |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 153 | #endif |