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 | |
Denys Vlasenko | 26b6ccf | 2010-06-02 14:14:48 +0200 | [diff] [blame] | 7 | enum { |
| 8 | #if BB_BIG_ENDIAN |
| 9 | COMPRESS_MAGIC = 0x1f9d, |
| 10 | GZIP_MAGIC = 0x1f8b, |
| 11 | BZIP2_MAGIC = ('B'<<8) + 'Z', |
| 12 | XZ_MAGIC1 = (0xfd<<8) + '7', |
| 13 | XZ_MAGIC2 = ((((('z'<<8) + 'X')<<8) + 'Z')<<8) + 0, |
| 14 | #else |
| 15 | COMPRESS_MAGIC = 0x9d1f, |
| 16 | GZIP_MAGIC = 0x8b1f, |
| 17 | BZIP2_MAGIC = ('Z'<<8) + 'B', |
| 18 | XZ_MAGIC1 = ('7'<<8) + 0xfd, |
| 19 | XZ_MAGIC2 = (((((0<<8) + 'Z')<<8) + 'X')<<8) + 'z', |
| 20 | #endif |
| 21 | }; |
| 22 | |
Denis Vlasenko | 7510384 | 2007-06-20 14:49:47 +0000 | [diff] [blame] | 23 | typedef struct file_header_t { |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 24 | char *name; |
Denis Vlasenko | 7510384 | 2007-06-20 14:49:47 +0000 | [diff] [blame] | 25 | char *link_target; |
Denis Vlasenko | e00e502 | 2008-02-14 20:37:54 +0000 | [diff] [blame] | 26 | #if ENABLE_FEATURE_TAR_UNAME_GNAME |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 27 | char *tar__uname; |
| 28 | char *tar__gname; |
Denis Vlasenko | e00e502 | 2008-02-14 20:37:54 +0000 | [diff] [blame] | 29 | #endif |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 30 | off_t size; |
| 31 | uid_t uid; |
| 32 | gid_t gid; |
| 33 | mode_t mode; |
| 34 | time_t mtime; |
| 35 | dev_t device; |
| 36 | } file_header_t; |
| 37 | |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 38 | struct hardlinks_t; |
| 39 | |
Denis Vlasenko | 7510384 | 2007-06-20 14:49:47 +0000 | [diff] [blame] | 40 | typedef struct archive_handle_t { |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 41 | /* Flags. 1st since it is most used member */ |
| 42 | unsigned ah_flags; |
| 43 | |
| 44 | /* The raw stream as read from disk or stdin */ |
| 45 | int src_fd; |
| 46 | |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 47 | /* Define if the header and data component should be processed */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 48 | char FAST_FUNC (*filter)(struct archive_handle_t *); |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 49 | /* List of files that have been accepted */ |
Glenn L McGrath | 66125c8 | 2002-12-08 00:54:33 +0000 | [diff] [blame] | 50 | llist_t *accept; |
Bernhard Reutner-Fischer | 9457e70 | 2006-04-02 20:12:31 +0000 | [diff] [blame] | 51 | /* List of files that have been rejected */ |
Glenn L McGrath | 66125c8 | 2002-12-08 00:54:33 +0000 | [diff] [blame] | 52 | llist_t *reject; |
Bernhard Reutner-Fischer | 9457e70 | 2006-04-02 20:12:31 +0000 | [diff] [blame] | 53 | /* List of files that have successfully been worked on */ |
| 54 | llist_t *passed; |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 55 | |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 56 | /* Currently processed file's header */ |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 57 | file_header_t *file_header; |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 58 | |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 59 | /* Process the header component, e.g. tar -t */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 60 | void FAST_FUNC (*action_header)(const file_header_t *); |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 61 | |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 62 | /* Process the data component, e.g. extract to filesystem */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 63 | void FAST_FUNC (*action_data)(struct archive_handle_t *); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 64 | |
Denys Vlasenko | 0a130d5 | 2009-08-28 21:09:51 +0200 | [diff] [blame] | 65 | /* Function that skips data */ |
| 66 | void FAST_FUNC (*seek)(int fd, off_t amount); |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 67 | |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 68 | /* Count processed bytes */ |
| 69 | off_t offset; |
| 70 | |
| 71 | /* Archiver specific. Can make it a union if it ever gets big */ |
Denys Vlasenko | 6b01b71 | 2010-01-24 22:52:21 +0100 | [diff] [blame] | 72 | #if ENABLE_TAR || ENABLE_DPKG || ENABLE_DPKG_DEB |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 73 | smallint tar__end; |
| 74 | # if ENABLE_FEATURE_TAR_GNU_EXTENSIONS |
| 75 | char* tar__longname; |
| 76 | char* tar__linkname; |
| 77 | # endif |
Ladislav Michl | 2b46fd4 | 2010-06-25 01:33:00 +0200 | [diff] [blame^] | 78 | #if ENABLE_FEATURE_TAR_TO_COMMAND |
| 79 | char* tar__to_command; |
| 80 | #endif |
J. Tang | 77a2c51 | 2010-03-19 14:48:51 +0100 | [diff] [blame] | 81 | # if ENABLE_FEATURE_TAR_SELINUX |
| 82 | char* tar__global_sctx; |
| 83 | char* tar__next_file_sctx; |
| 84 | # endif |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 85 | #endif |
Denys Vlasenko | 6b01b71 | 2010-01-24 22:52:21 +0100 | [diff] [blame] | 86 | #if ENABLE_CPIO || ENABLE_RPM2CPIO || ENABLE_RPM |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 87 | uoff_t cpio__blocks; |
| 88 | struct hardlinks_t *cpio__hardlinks_to_create; |
| 89 | struct hardlinks_t *cpio__created_hardlinks; |
| 90 | #endif |
| 91 | #if ENABLE_DPKG || ENABLE_DPKG_DEB |
Glenn L McGrath | f235d05 | 2003-10-29 03:37:54 +0000 | [diff] [blame] | 92 | /* Temporary storage */ |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 93 | char *dpkg__buffer; |
| 94 | /* How to process any sub archive, e.g. get_header_tar_gz */ |
| 95 | char FAST_FUNC (*dpkg__action_data_subarchive)(struct archive_handle_t *); |
| 96 | /* Contains the handle to a sub archive */ |
| 97 | struct archive_handle_t *dpkg__sub_archive; |
| 98 | #endif |
Alexander Shishkin | 535584c | 2010-03-15 15:38:09 +0100 | [diff] [blame] | 99 | #if ENABLE_FEATURE_AR_CREATE |
| 100 | const char *ar__name; |
| 101 | struct archive_handle_t *ar__out; |
| 102 | #endif |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 103 | } archive_handle_t; |
Denys Vlasenko | 425ad9c | 2009-12-16 22:46:01 +0100 | [diff] [blame] | 104 | /* bits in ah_flags */ |
| 105 | #define ARCHIVE_RESTORE_DATE (1 << 0) |
| 106 | #define ARCHIVE_CREATE_LEADING_DIRS (1 << 1) |
| 107 | #define ARCHIVE_UNLINK_OLD (1 << 2) |
| 108 | #define ARCHIVE_EXTRACT_QUIET (1 << 3) |
| 109 | #define ARCHIVE_EXTRACT_NEWER (1 << 4) |
| 110 | #define ARCHIVE_DONT_RESTORE_OWNER (1 << 5) |
| 111 | #define ARCHIVE_DONT_RESTORE_PERM (1 << 6) |
| 112 | #define ARCHIVE_NUMERIC_OWNER (1 << 7) |
Denys Vlasenko | 8a936cf | 2009-12-16 23:18:59 +0100 | [diff] [blame] | 113 | #define ARCHIVE_O_TRUNC (1 << 8) |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 114 | |
Denis Vlasenko | bb3d0fa | 2007-01-03 01:57:25 +0000 | [diff] [blame] | 115 | |
Denis Vlasenko | 1a9e9bd | 2008-11-01 12:54:56 +0000 | [diff] [blame] | 116 | /* Info struct unpackers can fill out to inform users of thing like |
| 117 | * timestamps of unpacked files */ |
| 118 | typedef struct unpack_info_t { |
| 119 | time_t mtime; |
| 120 | } unpack_info_t; |
| 121 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 122 | extern archive_handle_t *init_handle(void) FAST_FUNC; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 123 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 124 | extern char filter_accept_all(archive_handle_t *archive_handle) FAST_FUNC; |
| 125 | extern char filter_accept_list(archive_handle_t *archive_handle) FAST_FUNC; |
| 126 | extern char filter_accept_list_reassign(archive_handle_t *archive_handle) FAST_FUNC; |
| 127 | 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] | 128 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 129 | 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] | 130 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 131 | extern void data_skip(archive_handle_t *archive_handle) FAST_FUNC; |
| 132 | extern void data_extract_all(archive_handle_t *archive_handle) FAST_FUNC; |
| 133 | extern void data_extract_to_stdout(archive_handle_t *archive_handle) FAST_FUNC; |
Ladislav Michl | 2b46fd4 | 2010-06-25 01:33:00 +0200 | [diff] [blame^] | 134 | extern void data_extract_to_command(archive_handle_t *archive_handle) FAST_FUNC; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 135 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 136 | extern void header_skip(const file_header_t *file_header) FAST_FUNC; |
| 137 | extern void header_list(const file_header_t *file_header) FAST_FUNC; |
| 138 | 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] | 139 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 140 | extern char get_header_ar(archive_handle_t *archive_handle) FAST_FUNC; |
| 141 | extern char get_header_cpio(archive_handle_t *archive_handle) FAST_FUNC; |
| 142 | extern char get_header_tar(archive_handle_t *archive_handle) FAST_FUNC; |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 143 | 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] | 144 | extern char get_header_tar_bz2(archive_handle_t *archive_handle) FAST_FUNC; |
| 145 | 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] | 146 | |
Denys Vlasenko | 0a130d5 | 2009-08-28 21:09:51 +0200 | [diff] [blame] | 147 | extern void seek_by_jump(int fd, off_t amount) FAST_FUNC; |
| 148 | extern void seek_by_read(int fd, off_t amount) FAST_FUNC; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 149 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 150 | extern void data_align(archive_handle_t *archive_handle, unsigned boundary) FAST_FUNC; |
| 151 | extern const llist_t *find_list_entry(const llist_t *list, const char *filename) FAST_FUNC; |
| 152 | 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] | 153 | |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 154 | /* A bit of bunzip2 internals are exposed for compressed help support: */ |
| 155 | typedef struct bunzip_data bunzip_data; |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 156 | int start_bunzip(bunzip_data **bdp, int in_fd, const unsigned char *inbuf, int len) FAST_FUNC; |
| 157 | int read_bunzip(bunzip_data *bd, char *outbuf, int len) FAST_FUNC; |
| 158 | void dealloc_bunzip(bunzip_data *bd) FAST_FUNC; |
Denis Vlasenko | cd42cb8 | 2007-01-05 23:56:53 +0000 | [diff] [blame] | 159 | |
| 160 | typedef struct inflate_unzip_result { |
| 161 | off_t bytes_out; |
| 162 | uint32_t crc; |
| 163 | } inflate_unzip_result; |
| 164 | |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 165 | IF_DESKTOP(long long) int inflate_unzip(inflate_unzip_result *res, off_t compr_size, int src_fd, int dst_fd) FAST_FUNC; |
Denys Vlasenko | 6948f21 | 2010-05-30 04:18:13 +0200 | [diff] [blame] | 166 | /* xz unpacker takes .xz stream from offset 0 */ |
| 167 | IF_DESKTOP(long long) int unpack_xz_stream(int src_fd, int dst_fd) FAST_FUNC; |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 168 | /* lzma unpacker takes .lzma stream from offset 0 */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 169 | IF_DESKTOP(long long) int unpack_lzma_stream(int src_fd, int dst_fd) FAST_FUNC; |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 170 | /* the rest wants 2 first bytes already skipped by the caller */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 171 | IF_DESKTOP(long long) int unpack_bz2_stream(int src_fd, int dst_fd) FAST_FUNC; |
| 172 | IF_DESKTOP(long long) int unpack_gz_stream(int src_fd, int dst_fd) FAST_FUNC; |
| 173 | IF_DESKTOP(long long) int unpack_gz_stream_with_info(int src_fd, int dst_fd, unpack_info_t *info) FAST_FUNC; |
Denys Vlasenko | 6948f21 | 2010-05-30 04:18:13 +0200 | [diff] [blame] | 174 | IF_DESKTOP(long long) int unpack_Z_stream(int src_fd, int dst_fd) FAST_FUNC; |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 175 | /* wrapper which checks first two bytes to be "BZ" */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 176 | IF_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] | 177 | |
Denys Vlasenko | 39a04f7 | 2010-05-31 14:18:57 +0200 | [diff] [blame] | 178 | char* append_ext(char *filename, const char *expected_ext) FAST_FUNC; |
Denis Vlasenko | 1a9e9bd | 2008-11-01 12:54:56 +0000 | [diff] [blame] | 179 | int bbunpack(char **argv, |
Denys Vlasenko | 39a04f7 | 2010-05-31 14:18:57 +0200 | [diff] [blame] | 180 | IF_DESKTOP(long long) int FAST_FUNC (*unpacker)(unpack_info_t *info), |
| 181 | char* FAST_FUNC (*make_new_name)(char *filename, const char *expected_ext), |
| 182 | const char *expected_ext |
| 183 | ) FAST_FUNC; |
Denis Vlasenko | 1a9e9bd | 2008-11-01 12:54:56 +0000 | [diff] [blame] | 184 | |
Denis Vlasenko | 211f7f8 | 2007-09-05 11:48:32 +0000 | [diff] [blame] | 185 | #if BB_MMU |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 186 | void open_transformer(int fd, |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 187 | IF_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] | 188 | #define open_transformer(fd, transformer, transform_prog) open_transformer(fd, transformer) |
Denis Vlasenko | 211f7f8 | 2007-09-05 11:48:32 +0000 | [diff] [blame] | 189 | #else |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 190 | void open_transformer(int src_fd, const char *transform_prog) FAST_FUNC; |
Denis Vlasenko | b605272 | 2008-07-10 17:43:01 +0000 | [diff] [blame] | 191 | #define open_transformer(fd, transformer, transform_prog) open_transformer(fd, transform_prog) |
Denis Vlasenko | 211f7f8 | 2007-09-05 11:48:32 +0000 | [diff] [blame] | 192 | #endif |
Glenn L McGrath | 5699b85 | 2003-11-15 23:19:05 +0000 | [diff] [blame] | 193 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 194 | POP_SAVED_FUNCTION_VISIBILITY |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 195 | |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 196 | #endif |