blob: faba9ca82da9096e3ca237e94bd90b3fae572f69 [file] [log] [blame]
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +02001/*
2 * This file uses XZ Embedded library code which is written
3 * by Lasse Collin <lasse.collin@tukaani.org>
4 * and Igor Pavlov <http://7-zip.org/>
5 *
Denys Vlasenko6948f212010-05-30 04:18:13 +02006 * See README file in unxz/ directory for more information.
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +02007 *
8 * This file is:
9 * Copyright (C) 2010 Denys Vlasenko <vda.linux@googlemail.com>
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020010 * Licensed under GPLv2, see file LICENSE in this source tree.
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020011 */
12#include "libbb.h"
13#include "unarchive.h"
14
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020015#define XZ_FUNC FAST_FUNC
16#define XZ_EXTERN static
17
Denys Vlasenkoba73cfd2010-06-20 02:40:56 +020018#define XZ_DEC_DYNALLOC
19
Denys Vlasenko716f3f62010-06-01 14:41:39 +020020/* Skip check (rather than fail) of unsupported hash functions */
21#define XZ_DEC_ANY_CHECK 1
22
23/* We use our own crc32 function */
24#define XZ_INTERNAL_CRC32 0
25static uint32_t *crc32_table;
26static uint32_t xz_crc32(const uint8_t *buf, size_t size, uint32_t crc)
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020027{
28 crc = ~crc;
29
30 while (size != 0) {
31 crc = crc32_table[*buf++ ^ (crc & 0xFF)] ^ (crc >> 8);
32 --size;
33 }
34
35 return ~crc;
36}
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020037
Denys Vlasenko716f3f62010-06-01 14:41:39 +020038/* We use arch-optimized unaligned accessors */
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020039#define get_unaligned_le32(buf) ({ uint32_t v; move_from_unaligned32(v, buf); SWAP_LE32(v); })
40#define get_unaligned_be32(buf) ({ uint32_t v; move_from_unaligned32(v, buf); SWAP_BE32(v); })
41#define put_unaligned_le32(val, buf) move_to_unaligned16(buf, SWAP_LE32(val))
42#define put_unaligned_be32(val, buf) move_to_unaligned16(buf, SWAP_BE32(val))
43
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020044#include "unxz/xz_dec_bcj.c"
45#include "unxz/xz_dec_lzma2.c"
46#include "unxz/xz_dec_stream.c"
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020047
48IF_DESKTOP(long long) int FAST_FUNC
Denys Vlasenko6948f212010-05-30 04:18:13 +020049unpack_xz_stream(int src_fd, int dst_fd)
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020050{
51 struct xz_buf iobuf;
52 struct xz_dec *state;
53 unsigned char *membuf;
54 IF_DESKTOP(long long) int total = 0;
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020055
Denys Vlasenko8376bfa2010-06-01 23:26:54 +020056 if (!crc32_table)
57 crc32_table = crc32_filltable(NULL, /*endian:*/ 0);
58
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020059 memset(&iobuf, 0, sizeof(iobuf));
Denys Vlasenko45f66162010-07-01 05:12:28 +020060 /* Preload XZ file signature */
61 membuf = (void*) strcpy(xmalloc(2 * BUFSIZ), HEADER_MAGIC);
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020062 iobuf.in = membuf;
Denys Vlasenko45f66162010-07-01 05:12:28 +020063 iobuf.in_size = HEADER_MAGIC_SIZE;
Denys Vlasenkoba73cfd2010-06-20 02:40:56 +020064 iobuf.out = membuf + BUFSIZ;
65 iobuf.out_size = BUFSIZ;
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020066
Denys Vlasenkoba73cfd2010-06-20 02:40:56 +020067 /* Limit memory usage to about 64 MiB. */
68 state = xz_dec_init(XZ_DYNALLOC, 64*1024*1024);
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020069
70 while (1) {
71 enum xz_ret r;
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020072
Denys Vlasenkoba73cfd2010-06-20 02:40:56 +020073 if (iobuf.in_pos == iobuf.in_size) {
74 int rd = safe_read(src_fd, membuf, BUFSIZ);
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020075 if (rd < 0) {
Denys Vlasenkoea8b2522010-06-02 12:57:26 +020076 bb_error_msg(bb_msg_read_error);
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020077 total = -1;
78 break;
79 }
Denys Vlasenkoba73cfd2010-06-20 02:40:56 +020080 iobuf.in_size = rd;
81 iobuf.in_pos = 0;
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020082 }
83// bb_error_msg(">in pos:%d size:%d out pos:%d size:%d",
84// iobuf.in_pos, iobuf.in_size, iobuf.out_pos, iobuf.out_size);
85 r = xz_dec_run(state, &iobuf);
86// bb_error_msg("<in pos:%d size:%d out pos:%d size:%d r:%d",
87// iobuf.in_pos, iobuf.in_size, iobuf.out_pos, iobuf.out_size, r);
Denys Vlasenkoba73cfd2010-06-20 02:40:56 +020088 if (iobuf.out_pos) {
89 xwrite(dst_fd, iobuf.out, iobuf.out_pos);
90 IF_DESKTOP(total += iobuf.out_pos;)
91 iobuf.out_pos = 0;
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020092 }
Denys Vlasenkoba73cfd2010-06-20 02:40:56 +020093 if (r == XZ_STREAM_END) {
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020094 break;
95 }
Denys Vlasenko716f3f62010-06-01 14:41:39 +020096 if (r != XZ_OK && r != XZ_UNSUPPORTED_CHECK) {
Denys Vlasenkod2b738a2010-06-21 02:16:51 +020097 bb_error_msg("corrupted data");
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +020098 total = -1;
99 break;
100 }
Denys Vlasenkofb6c76c2010-05-30 03:47:40 +0200101 }
102 xz_dec_end(state);
103 free(membuf);
104
105 return total;
106}