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, |
Denys Vlasenko | 45f6616 | 2010-07-01 05:12:28 +0200 | [diff] [blame] | 10 | GZIP_MAGIC = 0x1f8b, |
Denys Vlasenko | aef441c | 2011-02-06 20:01:11 +0100 | [diff] [blame] | 11 | BZIP2_MAGIC = 256 * 'B' + 'Z', |
Denys Vlasenko | cd0f6b0 | 2010-07-01 10:38:10 +0200 | [diff] [blame] | 12 | /* .xz signature: 0xfd, '7', 'z', 'X', 'Z', 0x00 */ |
| 13 | /* More info at: http://tukaani.org/xz/xz-file-format.txt */ |
Denys Vlasenko | aef441c | 2011-02-06 20:01:11 +0100 | [diff] [blame] | 14 | XZ_MAGIC1 = 256 * 0xfd + '7', |
Denys Vlasenko | b8ff935 | 2011-12-05 04:54:14 +0100 | [diff] [blame] | 15 | XZ_MAGIC2 = 256 * (unsigned)(256 * (256 * 'z' + 'X') + 'Z') + 0, |
Denys Vlasenko | 45f6616 | 2010-07-01 05:12:28 +0200 | [diff] [blame] | 16 | /* Different form: 32 bits, then 16 bits: */ |
Denys Vlasenko | b8ff935 | 2011-12-05 04:54:14 +0100 | [diff] [blame] | 17 | /* (unsigned) cast suppresses "integer overflow in expression" warning */ |
| 18 | XZ_MAGIC1a = 256 * (unsigned)(256 * (256 * 0xfd + '7') + 'z') + 'X', |
Denys Vlasenko | aef441c | 2011-02-06 20:01:11 +0100 | [diff] [blame] | 19 | XZ_MAGIC2a = 256 * 'Z' + 0, |
Denys Vlasenko | 26b6ccf | 2010-06-02 14:14:48 +0200 | [diff] [blame] | 20 | #else |
| 21 | COMPRESS_MAGIC = 0x9d1f, |
Denys Vlasenko | 45f6616 | 2010-07-01 05:12:28 +0200 | [diff] [blame] | 22 | GZIP_MAGIC = 0x8b1f, |
Denys Vlasenko | aef441c | 2011-02-06 20:01:11 +0100 | [diff] [blame] | 23 | BZIP2_MAGIC = 'B' + 'Z' * 256, |
| 24 | XZ_MAGIC1 = 0xfd + '7' * 256, |
| 25 | XZ_MAGIC2 = 'z' + ('X' + ('Z' + 0 * 256) * 256) * 256, |
| 26 | XZ_MAGIC1a = 0xfd + ('7' + ('z' + 'X' * 256) * 256) * 256, |
| 27 | XZ_MAGIC2a = 'Z' + 0 * 256, |
Denys Vlasenko | 26b6ccf | 2010-06-02 14:14:48 +0200 | [diff] [blame] | 28 | #endif |
| 29 | }; |
| 30 | |
Denis Vlasenko | 7510384 | 2007-06-20 14:49:47 +0000 | [diff] [blame] | 31 | typedef struct file_header_t { |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 32 | char *name; |
Denis Vlasenko | 7510384 | 2007-06-20 14:49:47 +0000 | [diff] [blame] | 33 | char *link_target; |
Denis Vlasenko | e00e502 | 2008-02-14 20:37:54 +0000 | [diff] [blame] | 34 | #if ENABLE_FEATURE_TAR_UNAME_GNAME |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 35 | char *tar__uname; |
| 36 | char *tar__gname; |
Denis Vlasenko | e00e502 | 2008-02-14 20:37:54 +0000 | [diff] [blame] | 37 | #endif |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 38 | off_t size; |
| 39 | uid_t uid; |
| 40 | gid_t gid; |
| 41 | mode_t mode; |
| 42 | time_t mtime; |
| 43 | dev_t device; |
| 44 | } file_header_t; |
| 45 | |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 46 | struct hardlinks_t; |
| 47 | |
Denis Vlasenko | 7510384 | 2007-06-20 14:49:47 +0000 | [diff] [blame] | 48 | typedef struct archive_handle_t { |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 49 | /* Flags. 1st since it is most used member */ |
| 50 | unsigned ah_flags; |
| 51 | |
| 52 | /* The raw stream as read from disk or stdin */ |
| 53 | int src_fd; |
| 54 | |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 55 | /* Define if the header and data component should be processed */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 56 | char FAST_FUNC (*filter)(struct archive_handle_t *); |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 57 | /* List of files that have been accepted */ |
Glenn L McGrath | 66125c8 | 2002-12-08 00:54:33 +0000 | [diff] [blame] | 58 | llist_t *accept; |
Bernhard Reutner-Fischer | 9457e70 | 2006-04-02 20:12:31 +0000 | [diff] [blame] | 59 | /* List of files that have been rejected */ |
Glenn L McGrath | 66125c8 | 2002-12-08 00:54:33 +0000 | [diff] [blame] | 60 | llist_t *reject; |
Bernhard Reutner-Fischer | 9457e70 | 2006-04-02 20:12:31 +0000 | [diff] [blame] | 61 | /* List of files that have successfully been worked on */ |
| 62 | llist_t *passed; |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 63 | |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 64 | /* Currently processed file's header */ |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 65 | file_header_t *file_header; |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 66 | |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 67 | /* Process the header component, e.g. tar -t */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 68 | void FAST_FUNC (*action_header)(const file_header_t *); |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 69 | |
Denis Vlasenko | a60936d | 2008-06-28 05:04:09 +0000 | [diff] [blame] | 70 | /* Process the data component, e.g. extract to filesystem */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 71 | void FAST_FUNC (*action_data)(struct archive_handle_t *); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 72 | |
Denys Vlasenko | 0a130d5 | 2009-08-28 21:09:51 +0200 | [diff] [blame] | 73 | /* Function that skips data */ |
| 74 | void FAST_FUNC (*seek)(int fd, off_t amount); |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 75 | |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 76 | /* Count processed bytes */ |
| 77 | off_t offset; |
| 78 | |
| 79 | /* Archiver specific. Can make it a union if it ever gets big */ |
Denys Vlasenko | 6c563e3 | 2015-10-22 01:07:13 +0200 | [diff] [blame] | 80 | #if ENABLE_FEATURE_TAR_LONG_OPTIONS |
| 81 | unsigned tar__strip_components; |
| 82 | #endif |
Denys Vlasenko | 6111f96 | 2012-02-23 13:45:18 +0100 | [diff] [blame] | 83 | #define PAX_NEXT_FILE 0 |
| 84 | #define PAX_GLOBAL 1 |
Denys Vlasenko | 6b01b71 | 2010-01-24 22:52:21 +0100 | [diff] [blame] | 85 | #if ENABLE_TAR || ENABLE_DPKG || ENABLE_DPKG_DEB |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 86 | smallint tar__end; |
| 87 | # if ENABLE_FEATURE_TAR_GNU_EXTENSIONS |
| 88 | char* tar__longname; |
| 89 | char* tar__linkname; |
| 90 | # endif |
Denys Vlasenko | 6111f96 | 2012-02-23 13:45:18 +0100 | [diff] [blame] | 91 | # if ENABLE_FEATURE_TAR_TO_COMMAND |
Ladislav Michl | 2b46fd4 | 2010-06-25 01:33:00 +0200 | [diff] [blame] | 92 | char* tar__to_command; |
Denys Vlasenko | 681efe2 | 2011-03-08 21:00:36 +0100 | [diff] [blame] | 93 | const char* tar__to_command_shell; |
Denys Vlasenko | 6111f96 | 2012-02-23 13:45:18 +0100 | [diff] [blame] | 94 | # endif |
J. Tang | 77a2c51 | 2010-03-19 14:48:51 +0100 | [diff] [blame] | 95 | # if ENABLE_FEATURE_TAR_SELINUX |
Denys Vlasenko | 6111f96 | 2012-02-23 13:45:18 +0100 | [diff] [blame] | 96 | char* tar__sctx[2]; |
J. Tang | 77a2c51 | 2010-03-19 14:48:51 +0100 | [diff] [blame] | 97 | # endif |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 98 | #endif |
Denys Vlasenko | 6b01b71 | 2010-01-24 22:52:21 +0100 | [diff] [blame] | 99 | #if ENABLE_CPIO || ENABLE_RPM2CPIO || ENABLE_RPM |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 100 | uoff_t cpio__blocks; |
Aaro Koskinen | 2735bc0 | 2015-10-16 17:24:46 +0200 | [diff] [blame] | 101 | struct bb_uidgid_t cpio__owner; |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 102 | struct hardlinks_t *cpio__hardlinks_to_create; |
| 103 | struct hardlinks_t *cpio__created_hardlinks; |
| 104 | #endif |
| 105 | #if ENABLE_DPKG || ENABLE_DPKG_DEB |
Glenn L McGrath | f235d05 | 2003-10-29 03:37:54 +0000 | [diff] [blame] | 106 | /* Temporary storage */ |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 107 | char *dpkg__buffer; |
| 108 | /* How to process any sub archive, e.g. get_header_tar_gz */ |
| 109 | char FAST_FUNC (*dpkg__action_data_subarchive)(struct archive_handle_t *); |
| 110 | /* Contains the handle to a sub archive */ |
| 111 | struct archive_handle_t *dpkg__sub_archive; |
| 112 | #endif |
Alexander Shishkin | 535584c | 2010-03-15 15:38:09 +0100 | [diff] [blame] | 113 | #if ENABLE_FEATURE_AR_CREATE |
| 114 | const char *ar__name; |
| 115 | struct archive_handle_t *ar__out; |
| 116 | #endif |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 117 | } archive_handle_t; |
Denys Vlasenko | 425ad9c | 2009-12-16 22:46:01 +0100 | [diff] [blame] | 118 | /* bits in ah_flags */ |
| 119 | #define ARCHIVE_RESTORE_DATE (1 << 0) |
| 120 | #define ARCHIVE_CREATE_LEADING_DIRS (1 << 1) |
| 121 | #define ARCHIVE_UNLINK_OLD (1 << 2) |
| 122 | #define ARCHIVE_EXTRACT_QUIET (1 << 3) |
| 123 | #define ARCHIVE_EXTRACT_NEWER (1 << 4) |
| 124 | #define ARCHIVE_DONT_RESTORE_OWNER (1 << 5) |
| 125 | #define ARCHIVE_DONT_RESTORE_PERM (1 << 6) |
| 126 | #define ARCHIVE_NUMERIC_OWNER (1 << 7) |
Denys Vlasenko | 8a936cf | 2009-12-16 23:18:59 +0100 | [diff] [blame] | 127 | #define ARCHIVE_O_TRUNC (1 << 8) |
Denys Vlasenko | 440a509 | 2012-06-22 16:27:21 +0200 | [diff] [blame] | 128 | #define ARCHIVE_REMEMBER_NAMES (1 << 9) |
Denys Vlasenko | 2aec773 | 2013-02-20 15:58:42 +0100 | [diff] [blame] | 129 | #if ENABLE_RPM |
| 130 | #define ARCHIVE_REPLACE_VIA_RENAME (1 << 10) |
| 131 | #endif |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 132 | |
Denis Vlasenko | bb3d0fa | 2007-01-03 01:57:25 +0000 | [diff] [blame] | 133 | |
Denys Vlasenko | 52827e3 | 2010-06-26 18:21:36 +0200 | [diff] [blame] | 134 | /* POSIX tar Header Block, from POSIX 1003.1-1990 */ |
| 135 | #define TAR_BLOCK_SIZE 512 |
| 136 | #define NAME_SIZE 100 |
| 137 | #define NAME_SIZE_STR "100" |
Denys Vlasenko | 9180c60 | 2011-05-04 21:14:12 +0200 | [diff] [blame] | 138 | typedef struct tar_header_t { /* byte offset */ |
Denys Vlasenko | 52827e3 | 2010-06-26 18:21:36 +0200 | [diff] [blame] | 139 | char name[NAME_SIZE]; /* 0-99 */ |
| 140 | char mode[8]; /* 100-107 */ |
| 141 | char uid[8]; /* 108-115 */ |
| 142 | char gid[8]; /* 116-123 */ |
| 143 | char size[12]; /* 124-135 */ |
| 144 | char mtime[12]; /* 136-147 */ |
| 145 | char chksum[8]; /* 148-155 */ |
| 146 | char typeflag; /* 156-156 */ |
| 147 | char linkname[NAME_SIZE]; /* 157-256 */ |
| 148 | /* POSIX: "ustar" NUL "00" */ |
| 149 | /* GNU tar: "ustar " NUL */ |
| 150 | /* Normally it's defined as magic[6] followed by |
| 151 | * version[2], but we put them together to save code. |
| 152 | */ |
| 153 | char magic[8]; /* 257-264 */ |
| 154 | char uname[32]; /* 265-296 */ |
| 155 | char gname[32]; /* 297-328 */ |
| 156 | char devmajor[8]; /* 329-336 */ |
| 157 | char devminor[8]; /* 337-344 */ |
| 158 | char prefix[155]; /* 345-499 */ |
| 159 | char padding[12]; /* 500-512 (pad to exactly TAR_BLOCK_SIZE) */ |
| 160 | } tar_header_t; |
| 161 | struct BUG_tar_header { |
| 162 | char c[sizeof(tar_header_t) == TAR_BLOCK_SIZE ? 1 : -1]; |
| 163 | }; |
| 164 | |
| 165 | |
Aaro Koskinen | 2735bc0 | 2015-10-16 17:24:46 +0200 | [diff] [blame] | 166 | extern const char cpio_TRAILER[]; |
| 167 | |
Denys Vlasenko | 52827e3 | 2010-06-26 18:21:36 +0200 | [diff] [blame] | 168 | |
Denys Vlasenko | b80acf5 | 2011-03-02 01:21:02 +0100 | [diff] [blame] | 169 | archive_handle_t *init_handle(void) FAST_FUNC; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 170 | |
Denys Vlasenko | b80acf5 | 2011-03-02 01:21:02 +0100 | [diff] [blame] | 171 | char filter_accept_all(archive_handle_t *archive_handle) FAST_FUNC; |
| 172 | char filter_accept_list(archive_handle_t *archive_handle) FAST_FUNC; |
| 173 | char filter_accept_list_reassign(archive_handle_t *archive_handle) FAST_FUNC; |
| 174 | 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] | 175 | |
Denys Vlasenko | b80acf5 | 2011-03-02 01:21:02 +0100 | [diff] [blame] | 176 | void unpack_ar_archive(archive_handle_t *ar_archive) FAST_FUNC; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 177 | |
Denys Vlasenko | b80acf5 | 2011-03-02 01:21:02 +0100 | [diff] [blame] | 178 | void data_skip(archive_handle_t *archive_handle) FAST_FUNC; |
| 179 | void data_extract_all(archive_handle_t *archive_handle) FAST_FUNC; |
| 180 | void data_extract_to_stdout(archive_handle_t *archive_handle) FAST_FUNC; |
| 181 | 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] | 182 | |
Denys Vlasenko | b80acf5 | 2011-03-02 01:21:02 +0100 | [diff] [blame] | 183 | void header_skip(const file_header_t *file_header) FAST_FUNC; |
| 184 | void header_list(const file_header_t *file_header) FAST_FUNC; |
| 185 | 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] | 186 | |
Denys Vlasenko | b80acf5 | 2011-03-02 01:21:02 +0100 | [diff] [blame] | 187 | char get_header_ar(archive_handle_t *archive_handle) FAST_FUNC; |
| 188 | char get_header_cpio(archive_handle_t *archive_handle) FAST_FUNC; |
| 189 | char get_header_tar(archive_handle_t *archive_handle) FAST_FUNC; |
| 190 | char get_header_tar_gz(archive_handle_t *archive_handle) FAST_FUNC; |
| 191 | char get_header_tar_bz2(archive_handle_t *archive_handle) FAST_FUNC; |
| 192 | char get_header_tar_lzma(archive_handle_t *archive_handle) FAST_FUNC; |
Denys Vlasenko | 08f9ffc | 2015-01-30 15:15:38 +0100 | [diff] [blame] | 193 | char get_header_tar_xz(archive_handle_t *archive_handle) FAST_FUNC; |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 194 | |
Denys Vlasenko | b80acf5 | 2011-03-02 01:21:02 +0100 | [diff] [blame] | 195 | void seek_by_jump(int fd, off_t amount) FAST_FUNC; |
| 196 | void seek_by_read(int fd, off_t amount) FAST_FUNC; |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 197 | |
Denys Vlasenko | b80acf5 | 2011-03-02 01:21:02 +0100 | [diff] [blame] | 198 | const char *strip_unsafe_prefix(const char *str) FAST_FUNC; |
| 199 | |
| 200 | void data_align(archive_handle_t *archive_handle, unsigned boundary) FAST_FUNC; |
| 201 | const llist_t *find_list_entry(const llist_t *list, const char *filename) FAST_FUNC; |
| 202 | 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] | 203 | |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 204 | /* A bit of bunzip2 internals are exposed for compressed help support: */ |
| 205 | typedef struct bunzip_data bunzip_data; |
Denys Vlasenko | caddfc8 | 2010-10-28 23:08:53 +0200 | [diff] [blame] | 206 | int start_bunzip(bunzip_data **bdp, int in_fd, const void *inbuf, int len) FAST_FUNC; |
Denys Vlasenko | 1014a9a | 2010-10-29 19:01:58 +0200 | [diff] [blame] | 207 | /* NB: read_bunzip returns < 0 on error, or the number of *unfilled* bytes |
| 208 | * in outbuf. IOW: on EOF returns len ("all bytes are not filled"), not 0: */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 209 | int read_bunzip(bunzip_data *bd, char *outbuf, int len) FAST_FUNC; |
| 210 | void dealloc_bunzip(bunzip_data *bd) FAST_FUNC; |
Denis Vlasenko | cd42cb8 | 2007-01-05 23:56:53 +0000 | [diff] [blame] | 211 | |
Denys Vlasenko | 8a6a2f9 | 2012-03-06 16:27:48 +0100 | [diff] [blame] | 212 | /* Meaning and direction (input/output) of the fields are transformer-specific */ |
Denys Vlasenko | e7800f3 | 2014-12-07 00:42:49 +0100 | [diff] [blame] | 213 | typedef struct transformer_state_t { |
Denys Vlasenko | 984b0a6 | 2016-06-20 11:06:42 +0200 | [diff] [blame] | 214 | smallint signature_skipped; /* most often referenced member */ |
Denys Vlasenko | b4c11c1 | 2014-12-07 00:44:00 +0100 | [diff] [blame] | 215 | |
| 216 | IF_DESKTOP(long long) int FAST_FUNC (*xformer)(struct transformer_state_t *xstate); |
| 217 | USE_FOR_NOMMU(const char *xformer_prog;) |
| 218 | |
| 219 | /* Source */ |
| 220 | int src_fd; |
| 221 | /* Output */ |
| 222 | int dst_fd; |
| 223 | size_t mem_output_size_max; /* if non-zero, decompress to RAM instead of fd */ |
| 224 | size_t mem_output_size; |
| 225 | char *mem_output_buf; |
| 226 | |
Denys Vlasenko | 8a6a2f9 | 2012-03-06 16:27:48 +0100 | [diff] [blame] | 227 | off_t bytes_out; |
| 228 | off_t bytes_in; /* used in unzip code only: needs to know packed size */ |
| 229 | uint32_t crc32; |
| 230 | time_t mtime; /* gunzip code may set this on exit */ |
Denys Vlasenko | e7800f3 | 2014-12-07 00:42:49 +0100 | [diff] [blame] | 231 | } transformer_state_t; |
Denis Vlasenko | cd42cb8 | 2007-01-05 23:56:53 +0000 | [diff] [blame] | 232 | |
Denys Vlasenko | e7800f3 | 2014-12-07 00:42:49 +0100 | [diff] [blame] | 233 | void init_transformer_state(transformer_state_t *xstate) FAST_FUNC; |
Denys Vlasenko | b4c11c1 | 2014-12-07 00:44:00 +0100 | [diff] [blame] | 234 | ssize_t transformer_write(transformer_state_t *xstate, const void *buf, size_t bufsize) FAST_FUNC; |
| 235 | ssize_t xtransformer_write(transformer_state_t *xstate, const void *buf, size_t bufsize) FAST_FUNC; |
| 236 | int check_signature16(transformer_state_t *xstate, unsigned magic16) FAST_FUNC; |
Denys Vlasenko | 8a6a2f9 | 2012-03-06 16:27:48 +0100 | [diff] [blame] | 237 | |
Denys Vlasenko | b4c11c1 | 2014-12-07 00:44:00 +0100 | [diff] [blame] | 238 | IF_DESKTOP(long long) int inflate_unzip(transformer_state_t *xstate) FAST_FUNC; |
| 239 | IF_DESKTOP(long long) int unpack_Z_stream(transformer_state_t *xstate) FAST_FUNC; |
| 240 | IF_DESKTOP(long long) int unpack_gz_stream(transformer_state_t *xstate) FAST_FUNC; |
| 241 | IF_DESKTOP(long long) int unpack_bz2_stream(transformer_state_t *xstate) FAST_FUNC; |
| 242 | IF_DESKTOP(long long) int unpack_lzma_stream(transformer_state_t *xstate) FAST_FUNC; |
| 243 | IF_DESKTOP(long long) int unpack_xz_stream(transformer_state_t *xstate) FAST_FUNC; |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 244 | |
Denys Vlasenko | 39a04f7 | 2010-05-31 14:18:57 +0200 | [diff] [blame] | 245 | char* append_ext(char *filename, const char *expected_ext) FAST_FUNC; |
Denis Vlasenko | 1a9e9bd | 2008-11-01 12:54:56 +0000 | [diff] [blame] | 246 | int bbunpack(char **argv, |
Denys Vlasenko | e7800f3 | 2014-12-07 00:42:49 +0100 | [diff] [blame] | 247 | IF_DESKTOP(long long) int FAST_FUNC (*unpacker)(transformer_state_t *xstate), |
Denys Vlasenko | 6830ade | 2013-01-15 13:58:01 +0100 | [diff] [blame] | 248 | char* FAST_FUNC (*make_new_name)(char *filename, const char *expected_ext), |
| 249 | const char *expected_ext |
Denys Vlasenko | 39a04f7 | 2010-05-31 14:18:57 +0200 | [diff] [blame] | 250 | ) FAST_FUNC; |
Denis Vlasenko | 1a9e9bd | 2008-11-01 12:54:56 +0000 | [diff] [blame] | 251 | |
Denys Vlasenko | faac1d3 | 2012-03-06 16:33:42 +0100 | [diff] [blame] | 252 | void check_errors_in_children(int signo); |
Denis Vlasenko | 211f7f8 | 2007-09-05 11:48:32 +0000 | [diff] [blame] | 253 | #if BB_MMU |
Denys Vlasenko | b4c11c1 | 2014-12-07 00:44:00 +0100 | [diff] [blame] | 254 | void fork_transformer(int fd, |
Denys Vlasenko | 984b0a6 | 2016-06-20 11:06:42 +0200 | [diff] [blame] | 255 | int signature_skipped, |
Denys Vlasenko | b4c11c1 | 2014-12-07 00:44:00 +0100 | [diff] [blame] | 256 | IF_DESKTOP(long long) int FAST_FUNC (*transformer)(transformer_state_t *xstate) |
Denys Vlasenko | 8a6a2f9 | 2012-03-06 16:27:48 +0100 | [diff] [blame] | 257 | ) FAST_FUNC; |
Denys Vlasenko | 984b0a6 | 2016-06-20 11:06:42 +0200 | [diff] [blame] | 258 | #define fork_transformer_with_sig(fd, transformer, transform_prog) fork_transformer((fd), 0, (transformer)) |
| 259 | #define fork_transformer_with_no_sig(fd, transformer) fork_transformer((fd), 1, (transformer)) |
Denis Vlasenko | 211f7f8 | 2007-09-05 11:48:32 +0000 | [diff] [blame] | 260 | #else |
Denys Vlasenko | b4c11c1 | 2014-12-07 00:44:00 +0100 | [diff] [blame] | 261 | void fork_transformer(int fd, const char *transform_prog) FAST_FUNC; |
| 262 | #define fork_transformer_with_sig(fd, transformer, transform_prog) fork_transformer((fd), (transform_prog)) |
| 263 | /* fork_transformer_with_no_sig() does not exist on NOMMU */ |
Denis Vlasenko | 211f7f8 | 2007-09-05 11:48:32 +0000 | [diff] [blame] | 264 | #endif |
Glenn L McGrath | 5699b85 | 2003-11-15 23:19:05 +0000 | [diff] [blame] | 265 | |
Denys Vlasenko | 8a6a2f9 | 2012-03-06 16:27:48 +0100 | [diff] [blame] | 266 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 267 | POP_SAVED_FUNCTION_VISIBILITY |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 268 | |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 269 | #endif |