2010-05-30 07:17:40 +05:30
|
|
|
/*
|
|
|
|
* This file uses XZ Embedded library code which is written
|
|
|
|
* by Lasse Collin <lasse.collin@tukaani.org>
|
|
|
|
* and Igor Pavlov <http://7-zip.org/>
|
|
|
|
*
|
2010-05-30 07:48:13 +05:30
|
|
|
* See README file in unxz/ directory for more information.
|
2010-05-30 07:17:40 +05:30
|
|
|
*
|
|
|
|
* This file is:
|
|
|
|
* Copyright (C) 2010 Denys Vlasenko <vda.linux@googlemail.com>
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
2010-05-30 07:17:40 +05:30
|
|
|
*/
|
|
|
|
#include "libbb.h"
|
2011-09-22 16:15:14 +05:30
|
|
|
#include "bb_archive.h"
|
2010-05-30 07:17:40 +05:30
|
|
|
|
|
|
|
#define XZ_FUNC FAST_FUNC
|
|
|
|
#define XZ_EXTERN static
|
|
|
|
|
2010-06-20 06:10:56 +05:30
|
|
|
#define XZ_DEC_DYNALLOC
|
|
|
|
|
2010-06-01 18:11:39 +05:30
|
|
|
/* Skip check (rather than fail) of unsupported hash functions */
|
|
|
|
#define XZ_DEC_ANY_CHECK 1
|
|
|
|
|
|
|
|
/* We use our own crc32 function */
|
|
|
|
#define XZ_INTERNAL_CRC32 0
|
|
|
|
static uint32_t xz_crc32(const uint8_t *buf, size_t size, uint32_t crc)
|
2010-05-30 07:17:40 +05:30
|
|
|
{
|
2010-10-27 18:56:45 +05:30
|
|
|
return ~crc32_block_endian0(~crc, buf, size, global_crc32_table);
|
2010-05-30 07:17:40 +05:30
|
|
|
}
|
|
|
|
|
2017-07-15 23:52:25 +05:30
|
|
|
/* We use arch-optimized unaligned fixed-endian accessors.
|
|
|
|
* They have been moved to libbb (proved to be useful elsewhere as well),
|
|
|
|
* just check that we have them defined:
|
|
|
|
*/
|
|
|
|
#if !defined(get_unaligned_le32) \
|
|
|
|
|| !defined(get_unaligned_be32) \
|
|
|
|
|| !defined(put_unaligned_le32) \
|
|
|
|
|| !defined(put_unaligned_be32)
|
|
|
|
# error get_unaligned_le32 accessors are not defined
|
|
|
|
#endif
|
2010-05-30 07:17:40 +05:30
|
|
|
|
|
|
|
#include "unxz/xz_dec_bcj.c"
|
|
|
|
#include "unxz/xz_dec_lzma2.c"
|
|
|
|
#include "unxz/xz_dec_stream.c"
|
|
|
|
|
|
|
|
IF_DESKTOP(long long) int FAST_FUNC
|
2014-12-07 05:14:00 +05:30
|
|
|
unpack_xz_stream(transformer_state_t *xstate)
|
2010-05-30 07:17:40 +05:30
|
|
|
{
|
2013-02-27 21:56:40 +05:30
|
|
|
enum xz_ret xz_result;
|
2010-05-30 07:17:40 +05:30
|
|
|
struct xz_buf iobuf;
|
|
|
|
struct xz_dec *state;
|
|
|
|
unsigned char *membuf;
|
|
|
|
IF_DESKTOP(long long) int total = 0;
|
|
|
|
|
2010-10-27 18:56:45 +05:30
|
|
|
if (!global_crc32_table)
|
2018-02-01 15:26:19 +05:30
|
|
|
global_crc32_new_table_le();
|
2010-06-02 02:56:54 +05:30
|
|
|
|
2010-05-30 07:17:40 +05:30
|
|
|
memset(&iobuf, 0, sizeof(iobuf));
|
2012-03-06 20:57:48 +05:30
|
|
|
membuf = xmalloc(2 * BUFSIZ);
|
2010-05-30 07:17:40 +05:30
|
|
|
iobuf.in = membuf;
|
2010-06-20 06:10:56 +05:30
|
|
|
iobuf.out = membuf + BUFSIZ;
|
|
|
|
iobuf.out_size = BUFSIZ;
|
2010-05-30 07:17:40 +05:30
|
|
|
|
2016-06-20 14:36:42 +05:30
|
|
|
if (!xstate || xstate->signature_skipped) {
|
2012-03-06 20:57:48 +05:30
|
|
|
/* Preload XZ file signature */
|
|
|
|
strcpy((char*)membuf, HEADER_MAGIC);
|
|
|
|
iobuf.in_size = HEADER_MAGIC_SIZE;
|
|
|
|
} /* else: let xz code read & check it */
|
|
|
|
|
2010-06-20 06:10:56 +05:30
|
|
|
/* Limit memory usage to about 64 MiB. */
|
|
|
|
state = xz_dec_init(XZ_DYNALLOC, 64*1024*1024);
|
2010-05-30 07:17:40 +05:30
|
|
|
|
2013-02-27 21:56:40 +05:30
|
|
|
xz_result = X_OK;
|
2010-05-30 07:17:40 +05:30
|
|
|
while (1) {
|
2010-06-20 06:10:56 +05:30
|
|
|
if (iobuf.in_pos == iobuf.in_size) {
|
2014-12-07 05:14:00 +05:30
|
|
|
int rd = safe_read(xstate->src_fd, membuf, BUFSIZ);
|
2010-05-30 07:17:40 +05:30
|
|
|
if (rd < 0) {
|
2010-06-02 16:27:26 +05:30
|
|
|
bb_error_msg(bb_msg_read_error);
|
2010-05-30 07:17:40 +05:30
|
|
|
total = -1;
|
|
|
|
break;
|
|
|
|
}
|
2013-02-27 21:56:40 +05:30
|
|
|
if (rd == 0 && xz_result == XZ_STREAM_END)
|
|
|
|
break;
|
2010-06-20 06:10:56 +05:30
|
|
|
iobuf.in_size = rd;
|
|
|
|
iobuf.in_pos = 0;
|
2010-05-30 07:17:40 +05:30
|
|
|
}
|
2013-02-27 21:56:40 +05:30
|
|
|
if (xz_result == XZ_STREAM_END) {
|
|
|
|
/*
|
|
|
|
* Try to start decoding next concatenated stream.
|
|
|
|
* Stream padding must always be a multiple of four
|
|
|
|
* bytes to preserve four-byte alignment. To keep the
|
|
|
|
* code slightly smaller, we aren't as strict here as
|
|
|
|
* the .xz spec requires. We just skip all zero-bytes
|
|
|
|
* without checking the alignment and thus can accept
|
|
|
|
* files that aren't valid, e.g. the XZ utils test
|
|
|
|
* files bad-0pad-empty.xz and bad-0catpad-empty.xz.
|
|
|
|
*/
|
|
|
|
do {
|
|
|
|
if (membuf[iobuf.in_pos] != 0) {
|
|
|
|
xz_dec_reset(state);
|
|
|
|
goto do_run;
|
|
|
|
}
|
|
|
|
iobuf.in_pos++;
|
|
|
|
} while (iobuf.in_pos < iobuf.in_size);
|
|
|
|
}
|
|
|
|
do_run:
|
2010-05-30 07:17:40 +05:30
|
|
|
// bb_error_msg(">in pos:%d size:%d out pos:%d size:%d",
|
|
|
|
// iobuf.in_pos, iobuf.in_size, iobuf.out_pos, iobuf.out_size);
|
2013-02-27 21:56:40 +05:30
|
|
|
xz_result = xz_dec_run(state, &iobuf);
|
2010-05-30 07:17:40 +05:30
|
|
|
// bb_error_msg("<in pos:%d size:%d out pos:%d size:%d r:%d",
|
2013-02-27 21:56:40 +05:30
|
|
|
// iobuf.in_pos, iobuf.in_size, iobuf.out_pos, iobuf.out_size, xz_result);
|
2010-06-20 06:10:56 +05:30
|
|
|
if (iobuf.out_pos) {
|
2014-12-07 05:14:00 +05:30
|
|
|
xtransformer_write(xstate, iobuf.out, iobuf.out_pos);
|
2010-06-20 06:10:56 +05:30
|
|
|
IF_DESKTOP(total += iobuf.out_pos;)
|
|
|
|
iobuf.out_pos = 0;
|
2010-05-30 07:17:40 +05:30
|
|
|
}
|
2013-02-27 21:56:40 +05:30
|
|
|
if (xz_result == XZ_STREAM_END) {
|
|
|
|
/*
|
|
|
|
* Can just "break;" here, if not for concatenated
|
|
|
|
* .xz streams.
|
|
|
|
* Checking for padding may require buffer
|
|
|
|
* replenishment. Can't do it here.
|
|
|
|
*/
|
|
|
|
continue;
|
2010-05-30 07:17:40 +05:30
|
|
|
}
|
2013-02-27 21:56:40 +05:30
|
|
|
if (xz_result != XZ_OK && xz_result != XZ_UNSUPPORTED_CHECK) {
|
2010-06-21 05:46:51 +05:30
|
|
|
bb_error_msg("corrupted data");
|
2010-05-30 07:17:40 +05:30
|
|
|
total = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-02-27 21:56:40 +05:30
|
|
|
|
2010-05-30 07:17:40 +05:30
|
|
|
xz_dec_end(state);
|
|
|
|
free(membuf);
|
|
|
|
|
|
|
|
return total;
|
|
|
|
}
|