blob: fc976f217ba03377494d8ee5c08b3f2c69fab02f [file] [log] [blame]
Bernhard Reutner-Fischer9457e702006-04-02 20:12:31 +00001/* vi: set sw=4 ts=4: */
Denis Vlasenkof81e8db2009-04-09 12:35:13 +00002#ifndef UNARCHIVE_H
3#define UNARCHIVE_H 1
Glenn L McGrathe9fc7812001-10-25 14:57:14 +00004
Denis Vlasenkof81e8db2009-04-09 12:35:13 +00005PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
Denis Vlasenko98636eb2008-05-09 17:59:34 +00006
Denys Vlasenko26b6ccf2010-06-02 14:14:48 +02007enum {
8#if BB_BIG_ENDIAN
9 COMPRESS_MAGIC = 0x1f9d,
Denys Vlasenko45f66162010-07-01 05:12:28 +020010 GZIP_MAGIC = 0x1f8b,
Denys Vlasenkoaef441c2011-02-06 20:01:11 +010011 BZIP2_MAGIC = 256 * 'B' + 'Z',
Denys Vlasenkocd0f6b02010-07-01 10:38:10 +020012 /* .xz signature: 0xfd, '7', 'z', 'X', 'Z', 0x00 */
13 /* More info at: http://tukaani.org/xz/xz-file-format.txt */
Denys Vlasenkoaef441c2011-02-06 20:01:11 +010014 XZ_MAGIC1 = 256 * 0xfd + '7',
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +020015 XZ_MAGIC2 = 256 * (unsigned)(256 * (256 * 'z' + 'X') + 'Z') + 0,
Denys Vlasenko45f66162010-07-01 05:12:28 +020016 /* Different form: 32 bits, then 16 bits: */
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +020017 /* (unsigned) cast suppresses "integer overflow in expression" warning */
18 XZ_MAGIC1a = 256 * (unsigned)(256 * (256 * 0xfd + '7') + 'z') + 'X',
Denys Vlasenkoaef441c2011-02-06 20:01:11 +010019 XZ_MAGIC2a = 256 * 'Z' + 0,
Denys Vlasenko26b6ccf2010-06-02 14:14:48 +020020#else
21 COMPRESS_MAGIC = 0x9d1f,
Denys Vlasenko45f66162010-07-01 05:12:28 +020022 GZIP_MAGIC = 0x8b1f,
Denys Vlasenkoaef441c2011-02-06 20:01:11 +010023 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 Vlasenko26b6ccf2010-06-02 14:14:48 +020028#endif
29};
30
Denis Vlasenko75103842007-06-20 14:49:47 +000031typedef struct file_header_t {
Glenn L McGrathe9fc7812001-10-25 14:57:14 +000032 char *name;
Denis Vlasenko75103842007-06-20 14:49:47 +000033 char *link_target;
Denis Vlasenkoe00e5022008-02-14 20:37:54 +000034#if ENABLE_FEATURE_TAR_UNAME_GNAME
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +010035 char *tar__uname;
36 char *tar__gname;
Denis Vlasenkoe00e5022008-02-14 20:37:54 +000037#endif
Glenn L McGrathe9fc7812001-10-25 14:57:14 +000038 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 Vlasenkoaa4977d2010-01-06 10:53:17 +010046struct hardlinks_t;
47
Denis Vlasenko75103842007-06-20 14:49:47 +000048typedef struct archive_handle_t {
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +010049 /* 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 Vlasenkoa60936d2008-06-28 05:04:09 +000055 /* Define if the header and data component should be processed */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000056 char FAST_FUNC (*filter)(struct archive_handle_t *);
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +010057 /* List of files that have been accepted */
Glenn L McGrath66125c82002-12-08 00:54:33 +000058 llist_t *accept;
Bernhard Reutner-Fischer9457e702006-04-02 20:12:31 +000059 /* List of files that have been rejected */
Glenn L McGrath66125c82002-12-08 00:54:33 +000060 llist_t *reject;
Bernhard Reutner-Fischer9457e702006-04-02 20:12:31 +000061 /* List of files that have successfully been worked on */
62 llist_t *passed;
Glenn L McGrathe9fc7812001-10-25 14:57:14 +000063
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +010064 /* Currently processed file's header */
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000065 file_header_t *file_header;
Glenn L McGrathe9fc7812001-10-25 14:57:14 +000066
Denis Vlasenkoa60936d2008-06-28 05:04:09 +000067 /* Process the header component, e.g. tar -t */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000068 void FAST_FUNC (*action_header)(const file_header_t *);
Glenn L McGrathe9fc7812001-10-25 14:57:14 +000069
Denis Vlasenkoa60936d2008-06-28 05:04:09 +000070 /* Process the data component, e.g. extract to filesystem */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000071 void FAST_FUNC (*action_data)(struct archive_handle_t *);
Eric Andersenc7bda1c2004-03-15 08:29:22 +000072
Denys Vlasenko0a130d52009-08-28 21:09:51 +020073 /* Function that skips data */
74 void FAST_FUNC (*seek)(int fd, off_t amount);
Glenn L McGrath237ae422002-11-03 14:05:15 +000075
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +010076 /* Count processed bytes */
77 off_t offset;
78
79 /* Archiver specific. Can make it a union if it ever gets big */
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +020080#define PAX_NEXT_FILE 0
81#define PAX_GLOBAL 1
Denys Vlasenko6b01b712010-01-24 22:52:21 +010082#if ENABLE_TAR || ENABLE_DPKG || ENABLE_DPKG_DEB
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +010083 smallint tar__end;
84# if ENABLE_FEATURE_TAR_GNU_EXTENSIONS
85 char* tar__longname;
86 char* tar__linkname;
87# endif
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +020088# if ENABLE_FEATURE_TAR_TO_COMMAND
Ladislav Michl2b46fd42010-06-25 01:33:00 +020089 char* tar__to_command;
Denys Vlasenko681efe22011-03-08 21:00:36 +010090 const char* tar__to_command_shell;
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +020091# endif
J. Tang77a2c512010-03-19 14:48:51 +010092# if ENABLE_FEATURE_TAR_SELINUX
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +020093 char* tar__sctx[2];
J. Tang77a2c512010-03-19 14:48:51 +010094# endif
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +010095#endif
Denys Vlasenko6b01b712010-01-24 22:52:21 +010096#if ENABLE_CPIO || ENABLE_RPM2CPIO || ENABLE_RPM
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +010097 uoff_t cpio__blocks;
98 struct hardlinks_t *cpio__hardlinks_to_create;
99 struct hardlinks_t *cpio__created_hardlinks;
100#endif
101#if ENABLE_DPKG || ENABLE_DPKG_DEB
Glenn L McGrathf235d052003-10-29 03:37:54 +0000102 /* Temporary storage */
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +0100103 char *dpkg__buffer;
104 /* How to process any sub archive, e.g. get_header_tar_gz */
105 char FAST_FUNC (*dpkg__action_data_subarchive)(struct archive_handle_t *);
106 /* Contains the handle to a sub archive */
107 struct archive_handle_t *dpkg__sub_archive;
108#endif
Alexander Shishkin535584c2010-03-15 15:38:09 +0100109#if ENABLE_FEATURE_AR_CREATE
110 const char *ar__name;
111 struct archive_handle_t *ar__out;
112#endif
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000113} archive_handle_t;
Denys Vlasenko425ad9c2009-12-16 22:46:01 +0100114/* bits in ah_flags */
115#define ARCHIVE_RESTORE_DATE (1 << 0)
116#define ARCHIVE_CREATE_LEADING_DIRS (1 << 1)
117#define ARCHIVE_UNLINK_OLD (1 << 2)
118#define ARCHIVE_EXTRACT_QUIET (1 << 3)
119#define ARCHIVE_EXTRACT_NEWER (1 << 4)
120#define ARCHIVE_DONT_RESTORE_OWNER (1 << 5)
121#define ARCHIVE_DONT_RESTORE_PERM (1 << 6)
122#define ARCHIVE_NUMERIC_OWNER (1 << 7)
Denys Vlasenko8a936cf2009-12-16 23:18:59 +0100123#define ARCHIVE_O_TRUNC (1 << 8)
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100124#define ARCHIVE_REMEMBER_NAMES (1 << 9)
maxwen27116ba2015-08-14 21:41:28 +0200125#if ENABLE_RPM
126#define ARCHIVE_REPLACE_VIA_RENAME (1 << 10)
127#endif
128#if ENABLE_FEATURE_TAR_SELINUX
129#define ARCHIVE_STORE_SELINUX (1 << 15)
130#endif
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000131
Denis Vlasenkobb3d0fa2007-01-03 01:57:25 +0000132
Denys Vlasenko52827e32010-06-26 18:21:36 +0200133/* POSIX tar Header Block, from POSIX 1003.1-1990 */
134#define TAR_BLOCK_SIZE 512
135#define NAME_SIZE 100
136#define NAME_SIZE_STR "100"
Denys Vlasenko9180c602011-05-04 21:14:12 +0200137typedef struct tar_header_t { /* byte offset */
Denys Vlasenko52827e32010-06-26 18:21:36 +0200138 char name[NAME_SIZE]; /* 0-99 */
139 char mode[8]; /* 100-107 */
140 char uid[8]; /* 108-115 */
141 char gid[8]; /* 116-123 */
142 char size[12]; /* 124-135 */
143 char mtime[12]; /* 136-147 */
144 char chksum[8]; /* 148-155 */
145 char typeflag; /* 156-156 */
146 char linkname[NAME_SIZE]; /* 157-256 */
147 /* POSIX: "ustar" NUL "00" */
148 /* GNU tar: "ustar " NUL */
149 /* Normally it's defined as magic[6] followed by
150 * version[2], but we put them together to save code.
151 */
maxwen27116ba2015-08-14 21:41:28 +0200152 char magic[8]; /* 257-264 (magic 6 + version 2) */
Denys Vlasenko52827e32010-06-26 18:21:36 +0200153 char uname[32]; /* 265-296 */
154 char gname[32]; /* 297-328 */
155 char devmajor[8]; /* 329-336 */
156 char devminor[8]; /* 337-344 */
157 char prefix[155]; /* 345-499 */
158 char padding[12]; /* 500-512 (pad to exactly TAR_BLOCK_SIZE) */
159} tar_header_t;
160struct BUG_tar_header {
161 char c[sizeof(tar_header_t) == TAR_BLOCK_SIZE ? 1 : -1];
162};
163
164
165
Denys Vlasenkob80acf52011-03-02 01:21:02 +0100166archive_handle_t *init_handle(void) FAST_FUNC;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000167
Denys Vlasenkob80acf52011-03-02 01:21:02 +0100168char filter_accept_all(archive_handle_t *archive_handle) FAST_FUNC;
169char filter_accept_list(archive_handle_t *archive_handle) FAST_FUNC;
170char filter_accept_list_reassign(archive_handle_t *archive_handle) FAST_FUNC;
171char filter_accept_reject_list(archive_handle_t *archive_handle) FAST_FUNC;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000172
Denys Vlasenkob80acf52011-03-02 01:21:02 +0100173void unpack_ar_archive(archive_handle_t *ar_archive) FAST_FUNC;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000174
Denys Vlasenkob80acf52011-03-02 01:21:02 +0100175void data_skip(archive_handle_t *archive_handle) FAST_FUNC;
176void data_extract_all(archive_handle_t *archive_handle) FAST_FUNC;
177void data_extract_to_stdout(archive_handle_t *archive_handle) FAST_FUNC;
178void data_extract_to_command(archive_handle_t *archive_handle) FAST_FUNC;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000179
Denys Vlasenkob80acf52011-03-02 01:21:02 +0100180void header_skip(const file_header_t *file_header) FAST_FUNC;
181void header_list(const file_header_t *file_header) FAST_FUNC;
182void header_verbose_list(const file_header_t *file_header) FAST_FUNC;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000183
Denys Vlasenkob80acf52011-03-02 01:21:02 +0100184char get_header_ar(archive_handle_t *archive_handle) FAST_FUNC;
185char get_header_cpio(archive_handle_t *archive_handle) FAST_FUNC;
186char get_header_tar(archive_handle_t *archive_handle) FAST_FUNC;
187char get_header_tar_gz(archive_handle_t *archive_handle) FAST_FUNC;
188char get_header_tar_bz2(archive_handle_t *archive_handle) FAST_FUNC;
189char get_header_tar_lzma(archive_handle_t *archive_handle) FAST_FUNC;
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000190
Denys Vlasenkob80acf52011-03-02 01:21:02 +0100191void seek_by_jump(int fd, off_t amount) FAST_FUNC;
192void seek_by_read(int fd, off_t amount) FAST_FUNC;
Glenn L McGrath60bce492002-11-03 07:28:38 +0000193
Denys Vlasenkob80acf52011-03-02 01:21:02 +0100194const char *strip_unsafe_prefix(const char *str) FAST_FUNC;
195
196void data_align(archive_handle_t *archive_handle, unsigned boundary) FAST_FUNC;
197const llist_t *find_list_entry(const llist_t *list, const char *filename) FAST_FUNC;
198const llist_t *find_list_entry2(const llist_t *list, const char *filename) FAST_FUNC;
Glenn L McGrath237ae422002-11-03 14:05:15 +0000199
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000200/* A bit of bunzip2 internals are exposed for compressed help support: */
201typedef struct bunzip_data bunzip_data;
Denys Vlasenkocaddfc82010-10-28 23:08:53 +0200202int start_bunzip(bunzip_data **bdp, int in_fd, const void *inbuf, int len) FAST_FUNC;
Denys Vlasenko1014a9a2010-10-29 19:01:58 +0200203/* NB: read_bunzip returns < 0 on error, or the number of *unfilled* bytes
204 * in outbuf. IOW: on EOF returns len ("all bytes are not filled"), not 0: */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000205int read_bunzip(bunzip_data *bd, char *outbuf, int len) FAST_FUNC;
206void dealloc_bunzip(bunzip_data *bd) FAST_FUNC;
Denis Vlasenkocd42cb82007-01-05 23:56:53 +0000207
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200208/* Meaning and direction (input/output) of the fields are transformer-specific */
209typedef struct transformer_aux_data_t {
210 smallint check_signature; /* most often referenced member */
211 off_t bytes_out;
212 off_t bytes_in; /* used in unzip code only: needs to know packed size */
213 uint32_t crc32;
214 time_t mtime; /* gunzip code may set this on exit */
215} transformer_aux_data_t;
Denis Vlasenkocd42cb82007-01-05 23:56:53 +0000216
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200217void init_transformer_aux_data(transformer_aux_data_t *aux) FAST_FUNC;
218int FAST_FUNC check_signature16(transformer_aux_data_t *aux, int src_fd, unsigned magic16) FAST_FUNC;
219
220IF_DESKTOP(long long) int inflate_unzip(transformer_aux_data_t *aux, int src_fd, int dst_fd) FAST_FUNC;
221IF_DESKTOP(long long) int unpack_Z_stream(transformer_aux_data_t *aux, int src_fd, int dst_fd) FAST_FUNC;
222IF_DESKTOP(long long) int unpack_gz_stream(transformer_aux_data_t *aux, int src_fd, int dst_fd) FAST_FUNC;
223IF_DESKTOP(long long) int unpack_bz2_stream(transformer_aux_data_t *aux, int src_fd, int dst_fd) FAST_FUNC;
224IF_DESKTOP(long long) int unpack_lzma_stream(transformer_aux_data_t *aux, int src_fd, int dst_fd) FAST_FUNC;
225IF_DESKTOP(long long) int unpack_xz_stream(transformer_aux_data_t *aux, int src_fd, int dst_fd) FAST_FUNC;
Glenn L McGrath237ae422002-11-03 14:05:15 +0000226
Denys Vlasenko39a04f72010-05-31 14:18:57 +0200227char* append_ext(char *filename, const char *expected_ext) FAST_FUNC;
Denis Vlasenko1a9e9bd2008-11-01 12:54:56 +0000228int bbunpack(char **argv,
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100229 IF_DESKTOP(long long) int FAST_FUNC (*unpacker)(transformer_aux_data_t *aux),
230 char* FAST_FUNC (*make_new_name)(char *filename, const char *expected_ext),
231 const char *expected_ext
Denys Vlasenko39a04f72010-05-31 14:18:57 +0200232) FAST_FUNC;
Denis Vlasenko1a9e9bd2008-11-01 12:54:56 +0000233
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200234void check_errors_in_children(int signo);
Denis Vlasenko211f7f82007-09-05 11:48:32 +0000235#if BB_MMU
Denis Vlasenkoe9ad84d2008-08-05 13:10:34 +0000236void open_transformer(int fd,
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200237 int check_signature,
238 IF_DESKTOP(long long) int FAST_FUNC (*transformer)(transformer_aux_data_t *aux, int src_fd, int dst_fd)
239) FAST_FUNC;
240#define open_transformer_with_sig(fd, transformer, transform_prog) open_transformer((fd), 1, (transformer))
241#define open_transformer_with_no_sig(fd, transformer) open_transformer((fd), 0, (transformer))
Denis Vlasenko211f7f82007-09-05 11:48:32 +0000242#else
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200243void open_transformer(int fd, const char *transform_prog) FAST_FUNC;
244#define open_transformer_with_sig(fd, transformer, transform_prog) open_transformer((fd), (transform_prog))
245/* open_transformer_with_no_sig() does not exist on NOMMU */
Denis Vlasenko211f7f82007-09-05 11:48:32 +0000246#endif
Glenn L McGrath5699b852003-11-15 23:19:05 +0000247
Tanguy Pruvot8a6c2c22012-04-28 00:24:09 +0200248
Denis Vlasenkof81e8db2009-04-09 12:35:13 +0000249POP_SAVED_FUNCTION_VISIBILITY
Denis Vlasenko98636eb2008-05-09 17:59:34 +0000250
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000251#endif