3
0

archive.h 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. /* vi: set sw=4 ts=4: */
  2. #ifndef UNARCHIVE_H
  3. #define UNARCHIVE_H 1
  4. PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
  5. enum {
  6. #if BB_BIG_ENDIAN
  7. COMPRESS_MAGIC = 0x1f9d,
  8. GZIP_MAGIC = 0x1f8b,
  9. BZIP2_MAGIC = 256 * 'B' + 'Z',
  10. /* .xz signature: 0xfd, '7', 'z', 'X', 'Z', 0x00 */
  11. /* More info at: http://tukaani.org/xz/xz-file-format.txt */
  12. XZ_MAGIC1 = 256 * 0xfd + '7',
  13. XZ_MAGIC2 = 256 * (256 * (256 * 'z' + 'X') + 'Z') + 0,
  14. /* Different form: 32 bits, then 16 bits: */
  15. XZ_MAGIC1a = 256 * (256 * (256 * 0xfd + '7') + 'z') + 'X',
  16. XZ_MAGIC2a = 256 * 'Z' + 0,
  17. #else
  18. COMPRESS_MAGIC = 0x9d1f,
  19. GZIP_MAGIC = 0x8b1f,
  20. BZIP2_MAGIC = 'B' + 'Z' * 256,
  21. XZ_MAGIC1 = 0xfd + '7' * 256,
  22. XZ_MAGIC2 = 'z' + ('X' + ('Z' + 0 * 256) * 256) * 256,
  23. XZ_MAGIC1a = 0xfd + ('7' + ('z' + 'X' * 256) * 256) * 256,
  24. XZ_MAGIC2a = 'Z' + 0 * 256,
  25. #endif
  26. };
  27. typedef struct file_header_t {
  28. char *name;
  29. char *link_target;
  30. #if ENABLE_FEATURE_TAR_UNAME_GNAME
  31. char *tar__uname;
  32. char *tar__gname;
  33. #endif
  34. off_t size;
  35. uid_t uid;
  36. gid_t gid;
  37. mode_t mode;
  38. time_t mtime;
  39. dev_t device;
  40. } file_header_t;
  41. struct hardlinks_t;
  42. typedef struct archive_handle_t {
  43. /* Flags. 1st since it is most used member */
  44. unsigned ah_flags;
  45. /* The raw stream as read from disk or stdin */
  46. int src_fd;
  47. /* Define if the header and data component should be processed */
  48. char FAST_FUNC (*filter)(struct archive_handle_t *);
  49. /* List of files that have been accepted */
  50. llist_t *accept;
  51. /* List of files that have been rejected */
  52. llist_t *reject;
  53. /* List of files that have successfully been worked on */
  54. llist_t *passed;
  55. /* Currently processed file's header */
  56. file_header_t *file_header;
  57. /* Process the header component, e.g. tar -t */
  58. void FAST_FUNC (*action_header)(const file_header_t *);
  59. /* Process the data component, e.g. extract to filesystem */
  60. void FAST_FUNC (*action_data)(struct archive_handle_t *);
  61. /* Function that skips data */
  62. void FAST_FUNC (*seek)(int fd, off_t amount);
  63. /* Count processed bytes */
  64. off_t offset;
  65. /* Archiver specific. Can make it a union if it ever gets big */
  66. #if ENABLE_TAR || ENABLE_DPKG || ENABLE_DPKG_DEB
  67. smallint tar__end;
  68. # if ENABLE_FEATURE_TAR_GNU_EXTENSIONS
  69. char* tar__longname;
  70. char* tar__linkname;
  71. # endif
  72. #if ENABLE_FEATURE_TAR_TO_COMMAND
  73. char* tar__to_command;
  74. const char* tar__to_command_shell;
  75. #endif
  76. # if ENABLE_FEATURE_TAR_SELINUX
  77. char* tar__global_sctx;
  78. char* tar__next_file_sctx;
  79. # endif
  80. #endif
  81. #if ENABLE_CPIO || ENABLE_RPM2CPIO || ENABLE_RPM
  82. uoff_t cpio__blocks;
  83. struct hardlinks_t *cpio__hardlinks_to_create;
  84. struct hardlinks_t *cpio__created_hardlinks;
  85. #endif
  86. #if ENABLE_DPKG || ENABLE_DPKG_DEB
  87. /* Temporary storage */
  88. char *dpkg__buffer;
  89. /* How to process any sub archive, e.g. get_header_tar_gz */
  90. char FAST_FUNC (*dpkg__action_data_subarchive)(struct archive_handle_t *);
  91. /* Contains the handle to a sub archive */
  92. struct archive_handle_t *dpkg__sub_archive;
  93. #endif
  94. #if ENABLE_FEATURE_AR_CREATE
  95. const char *ar__name;
  96. struct archive_handle_t *ar__out;
  97. #endif
  98. } archive_handle_t;
  99. /* bits in ah_flags */
  100. #define ARCHIVE_RESTORE_DATE (1 << 0)
  101. #define ARCHIVE_CREATE_LEADING_DIRS (1 << 1)
  102. #define ARCHIVE_UNLINK_OLD (1 << 2)
  103. #define ARCHIVE_EXTRACT_QUIET (1 << 3)
  104. #define ARCHIVE_EXTRACT_NEWER (1 << 4)
  105. #define ARCHIVE_DONT_RESTORE_OWNER (1 << 5)
  106. #define ARCHIVE_DONT_RESTORE_PERM (1 << 6)
  107. #define ARCHIVE_NUMERIC_OWNER (1 << 7)
  108. #define ARCHIVE_O_TRUNC (1 << 8)
  109. /* POSIX tar Header Block, from POSIX 1003.1-1990 */
  110. #define TAR_BLOCK_SIZE 512
  111. #define NAME_SIZE 100
  112. #define NAME_SIZE_STR "100"
  113. typedef struct tar_header_t { /* byte offset */
  114. char name[NAME_SIZE]; /* 0-99 */
  115. char mode[8]; /* 100-107 */
  116. char uid[8]; /* 108-115 */
  117. char gid[8]; /* 116-123 */
  118. char size[12]; /* 124-135 */
  119. char mtime[12]; /* 136-147 */
  120. char chksum[8]; /* 148-155 */
  121. char typeflag; /* 156-156 */
  122. char linkname[NAME_SIZE]; /* 157-256 */
  123. /* POSIX: "ustar" NUL "00" */
  124. /* GNU tar: "ustar " NUL */
  125. /* Normally it's defined as magic[6] followed by
  126. * version[2], but we put them together to save code.
  127. */
  128. char magic[8]; /* 257-264 */
  129. char uname[32]; /* 265-296 */
  130. char gname[32]; /* 297-328 */
  131. char devmajor[8]; /* 329-336 */
  132. char devminor[8]; /* 337-344 */
  133. char prefix[155]; /* 345-499 */
  134. char padding[12]; /* 500-512 (pad to exactly TAR_BLOCK_SIZE) */
  135. } tar_header_t;
  136. struct BUG_tar_header {
  137. char c[sizeof(tar_header_t) == TAR_BLOCK_SIZE ? 1 : -1];
  138. };
  139. /* Info struct unpackers can fill out to inform users of thing like
  140. * timestamps of unpacked files */
  141. typedef struct unpack_info_t {
  142. time_t mtime;
  143. } unpack_info_t;
  144. archive_handle_t *init_handle(void) FAST_FUNC;
  145. char filter_accept_all(archive_handle_t *archive_handle) FAST_FUNC;
  146. char filter_accept_list(archive_handle_t *archive_handle) FAST_FUNC;
  147. char filter_accept_list_reassign(archive_handle_t *archive_handle) FAST_FUNC;
  148. char filter_accept_reject_list(archive_handle_t *archive_handle) FAST_FUNC;
  149. void unpack_ar_archive(archive_handle_t *ar_archive) FAST_FUNC;
  150. void data_skip(archive_handle_t *archive_handle) FAST_FUNC;
  151. void data_extract_all(archive_handle_t *archive_handle) FAST_FUNC;
  152. void data_extract_to_stdout(archive_handle_t *archive_handle) FAST_FUNC;
  153. void data_extract_to_command(archive_handle_t *archive_handle) FAST_FUNC;
  154. void header_skip(const file_header_t *file_header) FAST_FUNC;
  155. void header_list(const file_header_t *file_header) FAST_FUNC;
  156. void header_verbose_list(const file_header_t *file_header) FAST_FUNC;
  157. char get_header_ar(archive_handle_t *archive_handle) FAST_FUNC;
  158. char get_header_cpio(archive_handle_t *archive_handle) FAST_FUNC;
  159. char get_header_tar(archive_handle_t *archive_handle) FAST_FUNC;
  160. char get_header_tar_gz(archive_handle_t *archive_handle) FAST_FUNC;
  161. char get_header_tar_bz2(archive_handle_t *archive_handle) FAST_FUNC;
  162. char get_header_tar_lzma(archive_handle_t *archive_handle) FAST_FUNC;
  163. void seek_by_jump(int fd, off_t amount) FAST_FUNC;
  164. void seek_by_read(int fd, off_t amount) FAST_FUNC;
  165. const char *strip_unsafe_prefix(const char *str) FAST_FUNC;
  166. void data_align(archive_handle_t *archive_handle, unsigned boundary) FAST_FUNC;
  167. const llist_t *find_list_entry(const llist_t *list, const char *filename) FAST_FUNC;
  168. const llist_t *find_list_entry2(const llist_t *list, const char *filename) FAST_FUNC;
  169. /* A bit of bunzip2 internals are exposed for compressed help support: */
  170. typedef struct bunzip_data bunzip_data;
  171. int start_bunzip(bunzip_data **bdp, int in_fd, const void *inbuf, int len) FAST_FUNC;
  172. /* NB: read_bunzip returns < 0 on error, or the number of *unfilled* bytes
  173. * in outbuf. IOW: on EOF returns len ("all bytes are not filled"), not 0: */
  174. int read_bunzip(bunzip_data *bd, char *outbuf, int len) FAST_FUNC;
  175. void dealloc_bunzip(bunzip_data *bd) FAST_FUNC;
  176. typedef struct inflate_unzip_result {
  177. off_t bytes_out;
  178. uint32_t crc;
  179. } inflate_unzip_result;
  180. IF_DESKTOP(long long) int inflate_unzip(inflate_unzip_result *res, off_t compr_size, int src_fd, int dst_fd) FAST_FUNC;
  181. /* xz unpacker takes .xz stream from offset 6 */
  182. IF_DESKTOP(long long) int unpack_xz_stream(int src_fd, int dst_fd) FAST_FUNC;
  183. /* lzma unpacker takes .lzma stream from offset 0 */
  184. IF_DESKTOP(long long) int unpack_lzma_stream(int src_fd, int dst_fd) FAST_FUNC;
  185. /* the rest wants 2 first bytes already skipped by the caller */
  186. IF_DESKTOP(long long) int unpack_bz2_stream(int src_fd, int dst_fd) FAST_FUNC;
  187. IF_DESKTOP(long long) int unpack_gz_stream(int src_fd, int dst_fd) FAST_FUNC;
  188. IF_DESKTOP(long long) int unpack_gz_stream_with_info(int src_fd, int dst_fd, unpack_info_t *info) FAST_FUNC;
  189. IF_DESKTOP(long long) int unpack_Z_stream(int src_fd, int dst_fd) FAST_FUNC;
  190. /* wrapper which checks first two bytes to be "BZ" */
  191. IF_DESKTOP(long long) int unpack_bz2_stream_prime(int src_fd, int dst_fd) FAST_FUNC;
  192. char* append_ext(char *filename, const char *expected_ext) FAST_FUNC;
  193. int bbunpack(char **argv,
  194. IF_DESKTOP(long long) int FAST_FUNC (*unpacker)(unpack_info_t *info),
  195. char* FAST_FUNC (*make_new_name)(char *filename, const char *expected_ext),
  196. const char *expected_ext
  197. ) FAST_FUNC;
  198. #if BB_MMU
  199. void open_transformer(int fd,
  200. IF_DESKTOP(long long) int FAST_FUNC (*transformer)(int src_fd, int dst_fd)) FAST_FUNC;
  201. #define open_transformer(fd, transformer, transform_prog) open_transformer(fd, transformer)
  202. #else
  203. void open_transformer(int src_fd, const char *transform_prog) FAST_FUNC;
  204. #define open_transformer(fd, transformer, transform_prog) open_transformer(fd, transform_prog)
  205. #endif
  206. POP_SAVED_FUNCTION_VISIBILITY
  207. #endif