Bernhard Reutner-Fischer | 9457e70 | 2006-04-02 20:12:31 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 2 | #ifndef __UNARCHIVE_H__ |
| 3 | #define __UNARCHIVE_H__ |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 4 | |
Rob Landley | f3d6c94 | 2005-10-27 22:49:08 +0000 | [diff] [blame] | 5 | #define ARCHIVE_PRESERVE_DATE 1 |
| 6 | #define ARCHIVE_CREATE_LEADING_DIRS 2 |
| 7 | #define ARCHIVE_EXTRACT_UNCONDITIONAL 4 |
| 8 | #define ARCHIVE_EXTRACT_QUIET 8 |
| 9 | #define ARCHIVE_EXTRACT_NEWER 16 |
| 10 | #define ARCHIVE_NOPRESERVE_OWN 32 |
| 11 | #define ARCHIVE_NOPRESERVE_PERM 64 |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 12 | |
Denis Vlasenko | 9a7d38f | 2007-05-31 22:42:12 +0000 | [diff] [blame] | 13 | //#include "libbb.h" |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 14 | |
| 15 | typedef struct file_headers_s { |
| 16 | char *name; |
| 17 | char *link_name; |
| 18 | off_t size; |
| 19 | uid_t uid; |
| 20 | gid_t gid; |
| 21 | mode_t mode; |
| 22 | time_t mtime; |
| 23 | dev_t device; |
| 24 | } file_header_t; |
| 25 | |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 26 | typedef struct archive_handle_s { |
Denis Vlasenko | 714701c | 2006-12-22 00:21:07 +0000 | [diff] [blame] | 27 | /* define if the header and data component should be processed */ |
Glenn L McGrath | 18bbca1 | 2002-11-05 01:52:23 +0000 | [diff] [blame] | 28 | char (*filter)(struct archive_handle_s *); |
Glenn L McGrath | 66125c8 | 2002-12-08 00:54:33 +0000 | [diff] [blame] | 29 | llist_t *accept; |
Bernhard Reutner-Fischer | 9457e70 | 2006-04-02 20:12:31 +0000 | [diff] [blame] | 30 | /* List of files that have been rejected */ |
Glenn L McGrath | 66125c8 | 2002-12-08 00:54:33 +0000 | [diff] [blame] | 31 | llist_t *reject; |
Bernhard Reutner-Fischer | 9457e70 | 2006-04-02 20:12:31 +0000 | [diff] [blame] | 32 | /* List of files that have successfully been worked on */ |
| 33 | llist_t *passed; |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 34 | |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 35 | /* Contains the processed header entry */ |
| 36 | file_header_t *file_header; |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 37 | |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 38 | /* process the header component, e.g. tar -t */ |
| 39 | void (*action_header)(const file_header_t *); |
Glenn L McGrath | e9fc781 | 2001-10-25 14:57:14 +0000 | [diff] [blame] | 40 | |
Glenn L McGrath | f235d05 | 2003-10-29 03:37:54 +0000 | [diff] [blame] | 41 | /* process the data component, e.g. extract to filesystem */ |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 42 | void (*action_data)(struct archive_handle_s *); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 43 | |
Glenn L McGrath | 18bbca1 | 2002-11-05 01:52:23 +0000 | [diff] [blame] | 44 | /* How to process any sub archive, e.g. get_header_tar_gz */ |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 45 | char (*action_data_subarchive)(struct archive_handle_s *); |
| 46 | |
| 47 | /* Contains the handle to a sub archive */ |
| 48 | struct archive_handle_s *sub_archive; |
| 49 | |
| 50 | /* The raw stream as read from disk or stdin */ |
| 51 | int src_fd; |
| 52 | |
| 53 | /* Count the number of bytes processed */ |
| 54 | off_t offset; |
| 55 | |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 56 | /* Function that skips data: read_by_char or read_by_skip */ |
| 57 | void (*seek)(const struct archive_handle_s *archive_handle, const unsigned int amount); |
| 58 | |
Glenn L McGrath | f235d05 | 2003-10-29 03:37:54 +0000 | [diff] [blame] | 59 | /* Temporary storage */ |
Glenn L McGrath | 61b7904 | 2002-10-19 10:40:55 +0000 | [diff] [blame] | 60 | char *buffer; |
| 61 | |
Bernhard Reutner-Fischer | 9457e70 | 2006-04-02 20:12:31 +0000 | [diff] [blame] | 62 | /* Flags and misc. stuff */ |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 63 | unsigned char flags; |
| 64 | |
| 65 | } archive_handle_t; |
| 66 | |
Denis Vlasenko | bb3d0fa | 2007-01-03 01:57:25 +0000 | [diff] [blame] | 67 | |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 68 | extern archive_handle_t *init_handle(void); |
| 69 | |
Glenn L McGrath | 18bbca1 | 2002-11-05 01:52:23 +0000 | [diff] [blame] | 70 | extern char filter_accept_all(archive_handle_t *archive_handle); |
| 71 | extern char filter_accept_list(archive_handle_t *archive_handle); |
| 72 | extern char filter_accept_list_reassign(archive_handle_t *archive_handle); |
| 73 | extern char filter_accept_reject_list(archive_handle_t *archive_handle); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 74 | |
| 75 | extern void unpack_ar_archive(archive_handle_t *ar_archive); |
| 76 | |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 77 | extern void data_skip(archive_handle_t *archive_handle); |
| 78 | extern void data_extract_all(archive_handle_t *archive_handle); |
| 79 | extern void data_extract_to_stdout(archive_handle_t *archive_handle); |
Glenn L McGrath | 61b7904 | 2002-10-19 10:40:55 +0000 | [diff] [blame] | 80 | extern void data_extract_to_buffer(archive_handle_t *archive_handle); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 81 | |
| 82 | extern void header_skip(const file_header_t *file_header); |
| 83 | extern void header_list(const file_header_t *file_header); |
| 84 | extern void header_verbose_list(const file_header_t *file_header); |
| 85 | |
Denis Vlasenko | ab9eef2 | 2007-03-07 22:02:23 +0000 | [diff] [blame] | 86 | extern void check_header_gzip_or_die(int src_fd); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 87 | |
| 88 | extern char get_header_ar(archive_handle_t *archive_handle); |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 89 | extern char get_header_cpio(archive_handle_t *archive_handle); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 90 | extern char get_header_tar(archive_handle_t *archive_handle); |
Glenn L McGrath | 7f2a953 | 2002-11-05 02:56:57 +0000 | [diff] [blame] | 91 | extern char get_header_tar_bz2(archive_handle_t *archive_handle); |
Rob Landley | c1d6990 | 2006-01-20 18:28:50 +0000 | [diff] [blame] | 92 | extern char get_header_tar_lzma(archive_handle_t *archive_handle); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 93 | extern char get_header_tar_gz(archive_handle_t *archive_handle); |
| 94 | |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 95 | extern void seek_by_jump(const archive_handle_t *archive_handle, const unsigned int amount); |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 96 | extern void seek_by_read(const archive_handle_t *archive_handle, const unsigned int amount); |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 97 | |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 98 | extern ssize_t archive_xread_all_eof(archive_handle_t *archive_handle, unsigned char *buf, size_t count); |
| 99 | |
| 100 | extern void data_align(archive_handle_t *archive_handle, const unsigned short boundary); |
Glenn L McGrath | c5c1a8a | 2002-10-19 06:19:22 +0000 | [diff] [blame] | 101 | extern const llist_t *find_list_entry(const llist_t *list, const char *filename); |
Denis Vlasenko | 314908d | 2006-09-03 14:04:33 +0000 | [diff] [blame] | 102 | extern const llist_t *find_list_entry2(const llist_t *list, const char *filename); |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 103 | |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 104 | /* A bit of bunzip2 internals are exposed for compressed help support: */ |
| 105 | typedef struct bunzip_data bunzip_data; |
| 106 | int start_bunzip(bunzip_data **bdp, int in_fd, const unsigned char *inbuf, int len); |
| 107 | int read_bunzip(bunzip_data *bd, char *outbuf, int len); |
| 108 | void dealloc_bunzip(bunzip_data *bd); |
Denis Vlasenko | cd42cb8 | 2007-01-05 23:56:53 +0000 | [diff] [blame] | 109 | |
| 110 | typedef struct inflate_unzip_result { |
| 111 | off_t bytes_out; |
| 112 | uint32_t crc; |
| 113 | } inflate_unzip_result; |
| 114 | |
Denis Vlasenko | c14d39e | 2007-06-08 13:05:39 +0000 | [diff] [blame] | 115 | extern USE_DESKTOP(long long) int unpack_bz2_stream(int src_fd, int dst_fd); |
| 116 | extern USE_DESKTOP(long long) int inflate_unzip(inflate_unzip_result *res, unsigned bufsize, int src_fd, int dst_fd); |
| 117 | extern USE_DESKTOP(long long) int unpack_gz_stream(int src_fd, int dst_fd); |
| 118 | extern USE_DESKTOP(long long) int unpack_lzma_stream(int src_fd, int dst_fd); |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 119 | |
Denis Vlasenko | 97a8dd3 | 2006-10-01 15:55:11 +0000 | [diff] [blame] | 120 | extern int open_transformer(int src_fd, |
| 121 | USE_DESKTOP(long long) int (*transformer)(int src_fd, int dst_fd)); |
Glenn L McGrath | 5699b85 | 2003-11-15 23:19:05 +0000 | [diff] [blame] | 122 | |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 123 | #endif |