Add libmpq-0.4.2 (was missing from sourcetree after cleanup)
--HG-- branch : trunk
This commit is contained in:
+1
-2
@@ -35,7 +35,7 @@ option(DO_DEBUG "Debug mode" 0)
|
||||
option(DO_MYSQL "With MySQL support" 1)
|
||||
option(DO_PCH "Use precompiled headers" 0)
|
||||
option(DO_RA "With RA" 0)
|
||||
option(DO_SCRIPTS "With trinityscripts" 1)
|
||||
option(DO_SCRIPTS "With trinityscripts" 0)
|
||||
option(DO_SQL "Copy SQL files" 0)
|
||||
option(DO_TOOLS "Compile tools" 0)
|
||||
option(DO_WARN "Enable all compile warnings" 0)
|
||||
@@ -195,7 +195,6 @@ if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
||||
add_definitions(-D__ASSERTMACROS__)
|
||||
endif(CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
||||
|
||||
|
||||
add_definitions(--no-warnings) #to make build look nice, no gcc nazi warnings.
|
||||
|
||||
set(CMAKE_SKIP_BUILD_RPATH FALSE)
|
||||
|
||||
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
# minimum required automake 1.6
|
||||
AUTOMAKE_OPTIONS = 1.6
|
||||
|
||||
# library information and headers which should not be installed.
|
||||
lib_LTLIBRARIES = libmpq.la
|
||||
noinst_HEADERS = common.h explode.h extract.h huffman.h mpq-internal.h wave.h
|
||||
|
||||
# directory where the include files will be installed.
|
||||
libmpq_includedir = $(includedir)/libmpq
|
||||
|
||||
# header files to install.
|
||||
libmpq_include_HEADERS = mpq.h
|
||||
|
||||
libmpq_la_SOURCES = $(GENERAL_SRCS)
|
||||
libmpq_la_LDFLAGS = -release $(PACKAGE_VERSION)
|
||||
|
||||
GENERAL_SRCS = \
|
||||
common.c \
|
||||
huffman.c \
|
||||
extract.c \
|
||||
explode.c \
|
||||
mpq.c \
|
||||
wave.c
|
||||
Vendored
+221
@@ -0,0 +1,221 @@
|
||||
/*
|
||||
* common.c -- shared functions used by mpq-tools.
|
||||
*
|
||||
* Copyright (c) 2003-2008 Maik Broemme <[email protected]>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/* generic includes. */
|
||||
#include <ctype.h>
|
||||
#include <dirent.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <sys/stat.h>
|
||||
#include <unistd.h>
|
||||
|
||||
/* libmpq main includes. */
|
||||
#include "mpq.h"
|
||||
#include "mpq-internal.h"
|
||||
|
||||
/* libmpq generic includes. */
|
||||
#include "extract.h"
|
||||
|
||||
#include "common.h"
|
||||
|
||||
/* the global shared decryption buffer. it's a static array compiled into the
|
||||
* library, and can be re-created by compiling and running crypt_buf_gen.c
|
||||
*/
|
||||
#include "crypt_buf.h"
|
||||
|
||||
/* function to return the hash to a given string. */
|
||||
uint32_t libmpq__hash_string(const char *key, uint32_t offset) {
|
||||
|
||||
/* some common variables. */
|
||||
uint32_t seed1 = 0x7FED7FED;
|
||||
uint32_t seed2 = 0xEEEEEEEE;
|
||||
|
||||
/* one key character. */
|
||||
uint32_t ch;
|
||||
|
||||
/* prepare seeds. */
|
||||
while (*key != 0) {
|
||||
ch = toupper(*key++);
|
||||
seed1 = crypt_buf[offset + ch] ^ (seed1 + seed2);
|
||||
seed2 = ch + seed1 + seed2 + (seed2 << 5) + 3;
|
||||
}
|
||||
|
||||
return seed1;
|
||||
}
|
||||
|
||||
/* function to encrypt a block. */
|
||||
int32_t libmpq__encrypt_block(uint32_t *in_buf, uint32_t in_size, uint32_t seed) {
|
||||
|
||||
/* some common variables. */
|
||||
uint32_t seed2 = 0xEEEEEEEE;
|
||||
uint32_t ch;
|
||||
|
||||
/* we're processing the data 4 bytes at a time. */
|
||||
for (; in_size >= 4; in_size -= 4) {
|
||||
seed2 += crypt_buf[0x400 + (seed & 0xFF)];
|
||||
ch = *in_buf ^ (seed + seed2);
|
||||
seed = ((~seed << 0x15) + 0x11111111) | (seed >> 0x0B);
|
||||
seed2 = *in_buf + seed2 + (seed2 << 5) + 3;
|
||||
*in_buf++ = ch;
|
||||
}
|
||||
|
||||
/* if no error was found, return decrypted bytes. */
|
||||
return LIBMPQ_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
/* function to decrypt a block. */
|
||||
int32_t libmpq__decrypt_block(uint32_t *in_buf, uint32_t in_size, uint32_t seed) {
|
||||
|
||||
/* some common variables. */
|
||||
uint32_t seed2 = 0xEEEEEEEE;
|
||||
uint32_t ch;
|
||||
|
||||
/* we're processing the data 4 bytes at a time. */
|
||||
for (; in_size >= 4; in_size -= 4) {
|
||||
seed2 += crypt_buf[0x400 + (seed & 0xFF)];
|
||||
ch = *in_buf ^ (seed + seed2);
|
||||
seed = ((~seed << 0x15) + 0x11111111) | (seed >> 0x0B);
|
||||
seed2 = ch + seed2 + (seed2 << 5) + 3;
|
||||
*in_buf++ = ch;
|
||||
}
|
||||
|
||||
/* if no error was found, return decrypted bytes. */
|
||||
return LIBMPQ_SUCCESS;
|
||||
}
|
||||
|
||||
/* function to detect decryption key. */
|
||||
int32_t libmpq__decrypt_key(uint8_t *in_buf, uint32_t in_size, uint32_t block_size) {
|
||||
|
||||
/* some common variables. */
|
||||
uint32_t saveseed1;
|
||||
|
||||
/* temp = seed1 + seed2 */
|
||||
uint32_t temp;
|
||||
uint32_t i = 0;
|
||||
|
||||
/* temp = seed1 + buffer[0x400 + (seed1 & 0xFF)] */
|
||||
temp = (*(uint32_t *)in_buf ^ in_size) - 0xEEEEEEEE;
|
||||
|
||||
/* try all 255 possibilities. */
|
||||
for (i = 0; i < 0x100; i++) {
|
||||
|
||||
/* some common variables. */
|
||||
uint32_t seed1;
|
||||
uint32_t seed2 = 0xEEEEEEEE;
|
||||
uint32_t ch;
|
||||
uint32_t ch2;
|
||||
|
||||
/* try the first uint32_t's (we exactly know the value). */
|
||||
seed1 = temp - crypt_buf[0x400 + i];
|
||||
seed2 += crypt_buf[0x400 + (seed1 & 0xFF)];
|
||||
ch = ((uint32_t *)in_buf)[0] ^ (seed1 + seed2);
|
||||
|
||||
if (ch != in_size) {
|
||||
continue;
|
||||
}
|
||||
|
||||
/* add one because we are decrypting block positions. */
|
||||
saveseed1 = seed1 + 1;
|
||||
ch2 = ch;
|
||||
|
||||
/*
|
||||
* if ok, continue and test the second value. we don't know exactly the value,
|
||||
* but we know that the second one has lower 16 bits set to zero (no compressed
|
||||
* block is larger than 0xFFFF bytes)
|
||||
*/
|
||||
seed1 = ((~seed1 << 0x15) + 0x11111111) | (seed1 >> 0x0B);
|
||||
seed2 = ch + seed2 + (seed2 << 5) + 3;
|
||||
seed2 += crypt_buf[0x400 + (seed1 & 0xFF)];
|
||||
ch = ((uint32_t *)in_buf)[1] ^ (seed1 + seed2);
|
||||
|
||||
/* check if we found the file seed. */
|
||||
if ((ch - ch2) <= block_size) {
|
||||
|
||||
/* file seed found, so return it. */
|
||||
return saveseed1;
|
||||
}
|
||||
}
|
||||
|
||||
/* if no file seed was found return with error. */
|
||||
return LIBMPQ_ERROR_DECRYPT;
|
||||
}
|
||||
|
||||
/* function to decompress or explode a block from mpq archive. */
|
||||
int32_t libmpq__decompress_block(uint8_t *in_buf, uint32_t in_size, uint8_t *out_buf, uint32_t out_size, uint32_t compression_type) {
|
||||
|
||||
/* some common variables. */
|
||||
int32_t tb = 0;
|
||||
|
||||
/* check if buffer is not compressed. */
|
||||
if (compression_type == LIBMPQ_FLAG_COMPRESS_NONE) {
|
||||
|
||||
/* no compressed data, so copy input buffer to output buffer. */
|
||||
memcpy(out_buf, in_buf, out_size);
|
||||
|
||||
/* store number of bytes copied. */
|
||||
tb = out_size;
|
||||
}
|
||||
|
||||
/* check if one compression mode is used. */
|
||||
else if (compression_type == LIBMPQ_FLAG_COMPRESS_PKZIP ||
|
||||
compression_type == LIBMPQ_FLAG_COMPRESS_MULTI) {
|
||||
|
||||
/* check if block is really compressed, some blocks have set the compression flag, but are not compressed. */
|
||||
if (in_size < out_size) {
|
||||
|
||||
/* check if we are using pkzip compression algorithm. */
|
||||
if (compression_type == LIBMPQ_FLAG_COMPRESS_PKZIP) {
|
||||
|
||||
/* decompress using pkzip. */
|
||||
if ((tb = libmpq__decompress_pkzip(in_buf, in_size, out_buf, out_size)) < 0) {
|
||||
|
||||
/* something on decompression failed. */
|
||||
return tb;
|
||||
}
|
||||
}
|
||||
|
||||
/* check if we are using multiple compression algorithm. */
|
||||
else if (compression_type == LIBMPQ_FLAG_COMPRESS_MULTI) {
|
||||
|
||||
/*
|
||||
* check if it is a file compressed by blizzard's multiple compression, note that storm.dll
|
||||
* version 1.0.9 distributed with warcraft 3 passes the full path name of the opened archive
|
||||
* as the new last parameter.
|
||||
*/
|
||||
if ((tb = libmpq__decompress_multi(in_buf, in_size, out_buf, out_size)) < 0) {
|
||||
|
||||
/* something on decompression failed. */
|
||||
return tb;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
||||
/* block has set compression flag, but is not compressed, so copy data to output buffer. */
|
||||
memcpy(out_buf, in_buf, out_size);
|
||||
|
||||
/* save the number of transferred bytes. */
|
||||
tb = in_size;
|
||||
}
|
||||
}
|
||||
|
||||
/* if no error was found, return transferred bytes. */
|
||||
return tb;
|
||||
}
|
||||
Vendored
+60
@@ -0,0 +1,60 @@
|
||||
/*
|
||||
* common.h -- header functions used by mpq-tools.
|
||||
*
|
||||
* Copyright (c) 2003-2008 Maik Broemme <[email protected]>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef _COMMON_H
|
||||
#define _COMMON_H
|
||||
|
||||
/* function to return the hash to a given string. */
|
||||
uint32_t libmpq__hash_string(
|
||||
const char *key,
|
||||
uint32_t offset
|
||||
);
|
||||
|
||||
/* function to encrypt a block. */
|
||||
int32_t libmpq__encrypt_block(
|
||||
uint32_t *in_buf,
|
||||
uint32_t in_size,
|
||||
uint32_t seed
|
||||
);
|
||||
|
||||
/* function to decrypt a block. */
|
||||
int32_t libmpq__decrypt_block(
|
||||
uint32_t *in_buf,
|
||||
uint32_t in_size,
|
||||
uint32_t seed
|
||||
);
|
||||
|
||||
/* function to detect decryption key. */
|
||||
int32_t libmpq__decrypt_key(
|
||||
uint8_t *in_buf,
|
||||
uint32_t in_size,
|
||||
uint32_t block_size
|
||||
);
|
||||
|
||||
/* function to decompress or explode block from archive. */
|
||||
int32_t libmpq__decompress_block(
|
||||
uint8_t *in_buf,
|
||||
uint32_t in_size,
|
||||
uint8_t *out_buf,
|
||||
uint32_t out_size,
|
||||
uint32_t compression_type
|
||||
);
|
||||
|
||||
#endif /* _COMMON_H */
|
||||
Vendored
+217
@@ -0,0 +1,217 @@
|
||||
/* DO NOT CHANGE! this file is auto-generated by crypt_buf_gen.c */
|
||||
static const uint32_t crypt_buf[0x500] = {
|
||||
0x55c636e2, 0x02be0170, 0x584b71d4, 0x2984f00e, 0xb682c809, 0x91cf876b,
|
||||
0x775a9c24, 0x597d5ca5, 0x5a1afeb2, 0xd3e9ce0d, 0x32cdcdf8, 0xb18201cd,
|
||||
0x3cce05ce, 0xa55d13be, 0xbb0afe71, 0x9376ab33, 0x848f645e, 0x87e45a45,
|
||||
0x45b86017, 0x5e656ca8, 0x1b851a95, 0x2542dbd7, 0xab4df9e4, 0x5976ae9b,
|
||||
0x6c317e7d, 0xcddd2f94, 0x3c3c13e5, 0x335b1371, 0x31a592ca, 0x51e4fc4c,
|
||||
0xf7db5b2f, 0x8abdbe41, 0x8beaa674, 0x20d6b319, 0xde6c9a9d, 0xc5ac84e5,
|
||||
0x445a5feb, 0x94958cb0, 0x1e7d3847, 0xf35d29b0, 0xca5cceda, 0xb732c8b5,
|
||||
0xfdcc41dd, 0x0edcec16, 0x9d01feae, 0x1165d38e, 0x9ee193c8, 0xbf33b13c,
|
||||
0x61bc0dfc, 0xef3e7be9, 0xf8d4d4c5, 0xc79b7694, 0x5a255943, 0x0b3dd20a,
|
||||
0x9d1ab5a3, 0xcfa8ba57, 0x5e6d7069, 0xcb89b731, 0x3dc0d15b, 0x0d4d7e7e,
|
||||
0x97e37f2b, 0xfefc2bb1, 0xf95b16b5, 0x27a55b93, 0x45f22729, 0x4c986630,
|
||||
0x7c666862, 0x5fa40847, 0xa3f16205, 0x791b7764, 0x386b36d6, 0x6e6c3fef,
|
||||
0xc75855db, 0x4abc7dc7, 0x4a328f9b, 0xcef20c0f, 0x60b88f07, 0xf7bb4b8f,
|
||||
0x830b5192, 0x94f711ec, 0x20250752, 0x399d21a3, 0xe5c0840d, 0xe76cffa5,
|
||||
0x624fab29, 0x5df133e6, 0x83e0b9b8, 0xc5796bfb, 0x4a7ab2d0, 0xba59a821,
|
||||
0x03a81e4c, 0xcd3adfdb, 0x32b26b8c, 0x8e35c533, 0x9e6300e9, 0x8cf92ac5,
|
||||
0x880d18eb, 0x131a53b3, 0x2ed2dc64, 0xb23257c1, 0xa06450c1, 0x1b92cb8e,
|
||||
0x72ed730e, 0x19a685f0, 0x82836483, 0x42d94e8a, 0xee9bd6f6, 0x556d0b6a,
|
||||
0xba65589a, 0xde24cce4, 0x53329f6c, 0xc754fe8b, 0x503d2dc7, 0x10027ba4,
|
||||
0xd3b60a8b, 0x68e68d83, 0x0a9128a9, 0x595fa35f, 0x0b03b5be, 0x150a45c4,
|
||||
0xb1629cce, 0xe5f7497b, 0x8a7098a4, 0xb8233e69, 0x8ea0f978, 0x5b579970,
|
||||
0xeab14318, 0x4b28b263, 0xb6766cef, 0x06782877, 0x155c6dd0, 0xc711333c,
|
||||
0xf819cedf, 0x00eb1d68, 0xd6fffa6e, 0x439e5962, 0xd765d6db, 0xcb0bcee9,
|
||||
0x6d3c5647, 0x965466f3, 0x0ca983c9, 0x74ecc1ce, 0xfc0563b6, 0x42b08fee,
|
||||
0xc5b38853, 0xfe502ceb, 0x7b432faf, 0xc309e610, 0x2c3997d8, 0x43774654,
|
||||
0x15bd9d2c, 0xed6a420d, 0xc7ff520c, 0xb8a97fd1, 0x5e4d60cc, 0xb9738d11,
|
||||
0xda2181ff, 0x73ac2597, 0x3a8eec8d, 0xac85e779, 0xf3f975d6, 0xb9fe7b91,
|
||||
0x0f155d1e, 0x2860b6dd, 0x835977cb, 0xb0607436, 0x9cab7f6b, 0x8ab91186,
|
||||
0xc12b51e9, 0x20084e8b, 0x44ba8ead, 0xa542b130, 0x82bcd5c4, 0xcc747f4e,
|
||||
0x0f1909d8, 0xda242e1c, 0x6f7d1aa0, 0xd2626486, 0x88d0781e, 0xab695ccd,
|
||||
0xfa569145, 0xb4feb55c, 0xbe47e896, 0xe70a7a88, 0xd56185a2, 0xacf4c871,
|
||||
0x09282332, 0x1ddeeaa8, 0x590c7adb, 0xf4a97667, 0xbfd85705, 0x0ea77ccc,
|
||||
0xa9f85364, 0x83195869, 0x8bfb041a, 0xdb842f5c, 0xd6f0f315, 0xa7756ea7,
|
||||
0x0a51b439, 0xa9edf8a3, 0xd9084e2f, 0x827407f8, 0xd4ac8284, 0x09739d0d,
|
||||
0xb3bb6cfc, 0xd539c77d, 0x6bbc9ac0, 0x35c641aa, 0x934c96b0, 0xd17af317,
|
||||
0x29c6baef, 0xb275cdac, 0xd72662de, 0x9f5c2544, 0xc1a98f75, 0xd98e8f9a,
|
||||
0x47bd5c86, 0x70c610a6, 0xb5482ed4, 0x23b9c68c, 0x3c1bae66, 0x69556e7f,
|
||||
0xd902f5e0, 0x653d195b, 0xde6541fb, 0x07bcc6ac, 0xc6ee7788, 0x801534d4,
|
||||
0x2c1f35c0, 0xd9de614d, 0xbdccac85, 0xb4d4a0da, 0x242d549b, 0x9d964796,
|
||||
0xb9ceb982, 0x59fa99a9, 0xd8986cc1, 0x9e90c1a1, 0x01bbd82f, 0xd7f1c5fd,
|
||||
0xdd847eba, 0x883d305d, 0x25f13152, 0x4a92694d, 0x77f1e601, 0x8024e6e7,
|
||||
0x02a5f53d, 0x9c3ef4d9, 0xaf403ccc, 0xe2ad03c0, 0x46edf6ec, 0x6f9bd3e6,
|
||||
0xcc24ad7a, 0x47afab12, 0x82298df7, 0x708c9eec, 0x76f8c1b1, 0xb39459d2,
|
||||
0x3f1e26d9, 0xe1811be7, 0x56ed1c4d, 0xc9d18af8, 0xe828060e, 0x91cada2e,
|
||||
0x5ccbf9b7, 0xf1a552d4, 0x3c9d4343, 0xe1008785, 0x2adfeebf, 0xf90240a0,
|
||||
0x3d08cce7, 0x426e6fb0, 0x573c984f, 0x13a843ae, 0x406b7439, 0x636085d9,
|
||||
0x5000ba9a, 0xad4a47ab, 0xaf001d8d, 0x419907ae, 0x185c8f96, 0xe5e9ed4d,
|
||||
0x61764133, 0xd3703d97, 0xac98f0c6, 0xdbc3a37c, 0x85f010c4, 0x90491e32,
|
||||
0xf12e18bf, 0xc88c96e1, 0xd3fbd6d9, 0xe3c28b08, 0xd5bf08cc, 0xb1e78859,
|
||||
0x2546ddcf, 0xb030b200, 0xaafd2811, 0x55b22d21, 0xd38bf567, 0x469c7a2b,
|
||||
0x5ad05792, 0xa1a5981e, 0x7dfb8384, 0x34d1ca0a, 0x7eb0dbe0, 0xd61ce0f6,
|
||||
0x398068b7, 0xe6406d1f, 0x95ae6b47, 0xe4281230, 0xb0843061, 0xa70a3a68,
|
||||
0xe340f625, 0x72dcbffd, 0x8eb8afcd, 0x18b6661f, 0x17ef5a5c, 0x000c5b22,
|
||||
0x6ba13836, 0x6165e383, 0x74481c5b, 0xe56f0711, 0xa26f5024, 0x5ff22e60,
|
||||
0x31a5e829, 0xa1094bf0, 0xc680ec6c, 0x8cf327d7, 0xebf1348a, 0x6a227d2f,
|
||||
0x74065184, 0x8df65112, 0x2bbd05ee, 0xe4d00ed6, 0x2980ee1a, 0x6ae1da73,
|
||||
0xe84614da, 0x6c9906ab, 0xcf8e02db, 0xd3723e97, 0x92f66caf, 0xac8491c7,
|
||||
0xaec65696, 0xb98997cf, 0xfa16c762, 0x6d73c65f, 0x205d22a6, 0x4dd3aaa5,
|
||||
0x2deb6bc0, 0x9f37686c, 0x71a5282b, 0x376bb9e0, 0x7fff2a1b, 0xde67982f,
|
||||
0x9cbf33ce, 0x2e6dab37, 0x6e3424b9, 0x0ee143bc, 0x832a60d9, 0xbb6329e1,
|
||||
0x13f6befd, 0x5965fb84, 0xf60b233c, 0x3d695183, 0x433224a1, 0xb5d9cae5,
|
||||
0x82459bab, 0x9f21b311, 0xaf6c5247, 0xb447b13a, 0x7b2676c3, 0xc38979cd,
|
||||
0x8526ae25, 0xc550ad5b, 0x685099a7, 0x65e9c2bd, 0xe5c6dc36, 0xe10b37a9,
|
||||
0x88016878, 0xce81d4e4, 0x24d6fc80, 0x4106152d, 0x6d4f5f90, 0xc4dc74be,
|
||||
0xdb48676c, 0x6cb569b7, 0xf3bf598f, 0x042b08d9, 0x02ccb2de, 0xb1056f65,
|
||||
0x47994af4, 0xfa141ba4, 0x9376ab2e, 0x07a76737, 0x75e7e6fc, 0x449d80a1,
|
||||
0x03b7259d, 0xf6df358a, 0x5a75d5b9, 0x47286923, 0x3b1a30ef, 0xeebe3d6a,
|
||||
0x9db1aa00, 0x007a90d9, 0x24667071, 0x019c73cf, 0x69039bcd, 0x95900744,
|
||||
0x6518b1eb, 0x6905f202, 0xee3951b2, 0xe141fca9, 0x797fa832, 0x5a95e55b,
|
||||
0xd6263b15, 0x5b61f394, 0x897acb1c, 0x005f83a9, 0x22420f71, 0xf495176e,
|
||||
0x7e138f3d, 0x1392e384, 0x373bf7aa, 0x8e512816, 0xa960b3ca, 0x0474d74c,
|
||||
0xffacd6d7, 0x2ef5ed9e, 0x60992aaa, 0x7e690e99, 0x23c0749d, 0xd8e29105,
|
||||
0x555d5909, 0x15631bfe, 0xa69c5a1c, 0x501017ca, 0x99438048, 0x38733ac7,
|
||||
0xe682e2c8, 0xd4655fd6, 0x956e4c04, 0x347df643, 0x2f4b177b, 0x93ed3aa4,
|
||||
0xa77e1dd5, 0x7ae55702, 0xd2a52fd9, 0xef8ba18c, 0xb7d3c1ee, 0x8078ba8d,
|
||||
0xab5aaadb, 0x752be08f, 0x068b31c1, 0x078aae3c, 0xaa5a8343, 0x123d9268,
|
||||
0x2ceaee43, 0x8ebdb239, 0x650251f3, 0x04883648, 0x8c62e12e, 0x12b32167,
|
||||
0xe5112e9a, 0x10002548, 0x3e7a818d, 0x077e5327, 0xf140cc21, 0x6ce7d75d,
|
||||
0x9b99f9a5, 0x3215741c, 0xb6aadbae, 0x738768dc, 0x82a3742f, 0x76517020,
|
||||
0xdd872ad8, 0x9d0902b2, 0x7d1a6b04, 0x49381592, 0x63a652a5, 0x0c15e626,
|
||||
0xe22f70d6, 0x01e84385, 0xb29de134, 0x20c5000e, 0xe961f443, 0x2d31662e,
|
||||
0x3ce6bc28, 0x34f9dd94, 0xfa45de53, 0x497588bd, 0x9468215b, 0x0777fa5c,
|
||||
0x6f7114c0, 0xe0e82694, 0xe4371986, 0x57112de2, 0xe0cac289, 0xf2a3cee0,
|
||||
0x6a41e1b9, 0xbfcea77d, 0xf927fd52, 0x69747d98, 0xbea76cdb, 0x8dd39557,
|
||||
0x04db5ece, 0x2a0885c8, 0x3be4e8ee, 0x21d785dc, 0x09de7c0e, 0x3258ea33,
|
||||
0x51922982, 0xee8dd024, 0x3df6965d, 0x30c1237b, 0xf7f6686a, 0x9faca186,
|
||||
0x7c400076, 0x85acef8a, 0xf4b6d220, 0xddc3481c, 0x439eaec4, 0x717bbe63,
|
||||
0x8259faa7, 0xd682bd68, 0x932a8610, 0x38bf0a7f, 0x6212e2c7, 0x88ee3168,
|
||||
0xb3c27047, 0x6133cb1e, 0x15295506, 0x5ae66246, 0x1d208ddd, 0xa91d3dba,
|
||||
0xc315968d, 0x6aa2664b, 0x716d0cca, 0x891f4956, 0x80866bff, 0xbd56c847,
|
||||
0x9093425a, 0x28dd9e87, 0x84ef3e08, 0x690a49d6, 0x6a7eff82, 0xabcfe400,
|
||||
0x3d3be5ca, 0x381b650c, 0x4b7c8622, 0x3e0246f3, 0xa3561654, 0x9488865c,
|
||||
0x3aef1bf2, 0x5e5d68a2, 0xd32f1ddc, 0x51972bf0, 0x177a213b, 0x469375c2,
|
||||
0x37640bd0, 0xfc3324c8, 0x07091a09, 0x2d63d3fb, 0x2153f023, 0x48223875,
|
||||
0x61a55826, 0x8c136538, 0x49f71d98, 0x84c7d51e, 0x85551a73, 0x13d604c5,
|
||||
0xd701a626, 0x87b844ca, 0x741eb29d, 0x2a2c977c, 0xc797ca03, 0x6c4085d7,
|
||||
0x2dacf79b, 0x734fa2eb, 0xcc290557, 0xfa1e75e4, 0x06b29a27, 0xbece2a7a,
|
||||
0x70a4554b, 0xc935942e, 0xa764bbc1, 0x1fe391d6, 0x7807f0c2, 0x40606ed9,
|
||||
0xe5153086, 0xe91d7dd2, 0xed5d3ba9, 0xaa14b64a, 0x83b24dd9, 0xec1ff5cd,
|
||||
0xba33ead3, 0xe4ef735c, 0xbc062438, 0xd8bfd523, 0x473d1e04, 0x2007f8a7,
|
||||
0xb02903ed, 0x86ea8ada, 0x95ab69cf, 0xfd1f9809, 0x9cb3d8bb, 0x51f45958,
|
||||
0x9cdd4276, 0xc245865e, 0x8f0c836b, 0x4ee7dc07, 0xf6368d9d, 0xef2c1dc1,
|
||||
0xee56b54b, 0xbd62ce2f, 0xf4916aad, 0xc81cb594, 0x41729f49, 0x24bef0a4,
|
||||
0xdef487a9, 0x222e05b8, 0x8d3bf5c6, 0x11b55009, 0xad09d2b3, 0x19db9fd1,
|
||||
0xd7427085, 0x33dbfc8b, 0x526b9378, 0x790e1bc8, 0xb2998a00, 0xa5641703,
|
||||
0x0676d249, 0x6b9185cc, 0x30e4348f, 0x82c52f65, 0x57c7dc24, 0x489c1ecd,
|
||||
0x9fcab02a, 0x56d61117, 0xfe869cac, 0x55fc5140, 0x7fbbb382, 0x9e5afc79,
|
||||
0x10047c99, 0xfc9f5984, 0x56587e2d, 0xb98193f0, 0x98fe5e8e, 0x29b15b6b,
|
||||
0x9561f055, 0xbb0caa25, 0x1e4ecc15, 0x23f5393b, 0x0845b458, 0xceff67ca,
|
||||
0xb099900c, 0x00b1564f, 0x39eef3d1, 0xfcc1bf84, 0xac8893b5, 0x6484bf0e,
|
||||
0x91c02ab3, 0x8c0c0c70, 0x686fa8c6, 0xe171bed6, 0xdfae37df, 0xd5a1a4e7,
|
||||
0xe3eb49a1, 0x5e6014e0, 0x205b21ac, 0xfd58b3da, 0x2e7c07cd, 0xef2cc85a,
|
||||
0xd7587b46, 0xf417847d, 0x8a30cec1, 0x70984f6c, 0xf0b63388, 0xc220c98d,
|
||||
0xede62936, 0x92c0a7b3, 0x1ef371e8, 0x2005f7af, 0x91a47265, 0xb0cf5504,
|
||||
0xd500aba8, 0xcb5c4bd3, 0x9b3bcbc3, 0xcf6644b5, 0xce9488ef, 0x003fc96e,
|
||||
0xaa42222f, 0x4844f3d0, 0x4db89d77, 0x08681aae, 0x662f3a28, 0x761552db,
|
||||
0x1df7a17a, 0x93feed9a, 0xcc496a4f, 0xa217cfcd, 0x3ba3c930, 0x268f7e77,
|
||||
0x0797b4a1, 0x8bebfc51, 0x068930c4, 0x16c874e2, 0xc242da24, 0xfb229f76,
|
||||
0xa0795b02, 0x689fc036, 0x17a73732, 0xd21aec00, 0xac00a692, 0x5b217f18,
|
||||
0xae421624, 0x2bc05cc0, 0x48c1db7a, 0x4f4e63b4, 0x1667f04e, 0x34020f94,
|
||||
0x972b2555, 0x9a07355b, 0x01665970, 0x7db60c6f, 0x3ad7103b, 0x5c3d09c0,
|
||||
0xeea3dada, 0x88c21c10, 0x102436d7, 0x6a3b3400, 0xeb523c4c, 0xfb97d896,
|
||||
0x964cb86b, 0xdd878038, 0x0529da4d, 0x0b1468a5, 0x18739ac8, 0xf7f26668,
|
||||
0xf64f4471, 0x5c14f5c3, 0x44a081fb, 0x39ac7e37, 0x8a17c26b, 0x868f5e67,
|
||||
0x3931978d, 0x6edf7817, 0x4951cc67, 0x943407f3, 0xcc5e748f, 0x2b7ee729,
|
||||
0xcbb320f0, 0x11fec8e7, 0xfccfc658, 0x03454354, 0x373aa1ec, 0x1d58fe9a,
|
||||
0x064710ae, 0xa88aa0ba, 0xd183a23e, 0x40d150a3, 0xf531b8d1, 0xa7d99f85,
|
||||
0x11838cd5, 0xb19e64b3, 0x3d67a5e9, 0xb02c5ac6, 0x99b9b9e8, 0x4c202b7a,
|
||||
0x15f261d3, 0xa84c2d0d, 0x50f185a6, 0x33ba41d5, 0x39791013, 0x4baff44e,
|
||||
0xeeeeaa1c, 0xe0488314, 0x559ccd2b, 0xa104f445, 0x636f37c4, 0x264d5e3b,
|
||||
0x75c17f35, 0x75424131, 0xbb115739, 0x74fe755a, 0x7d3a7aa6, 0x2d8be784,
|
||||
0x83ed154a, 0xfc2673d8, 0x44dd4a7f, 0x79056cc8, 0x82cc8831, 0x9d3c1b7c,
|
||||
0xe9453bfa, 0x24315694, 0x661f3253, 0x75549f5c, 0xbb2b63ed, 0x67e00d96,
|
||||
0xf48966c7, 0x0d7bea56, 0xc25f92ef, 0xa947a79d, 0xde4adf6f, 0xac0f0342,
|
||||
0xd3eb246b, 0xa4aa118e, 0x3c3e6a46, 0x457f4441, 0xa50a406f, 0x6c508d9f,
|
||||
0xe9ac18e7, 0x1ecdb4ba, 0x39ac7e3a, 0x7fb304fa, 0x6f38f8e8, 0x4aecea6d,
|
||||
0x61035e73, 0x81708907, 0xebc07205, 0x90fd7614, 0xb52d217f, 0x6c4de195,
|
||||
0x1dd49084, 0x64ee482c, 0x94c7a521, 0x540c09d8, 0x75df8dd5, 0x414131f7,
|
||||
0x3698fd76, 0xf784db4f, 0xf8c97a03, 0x048f39b9, 0x3bf4f0bd, 0x8cb50992,
|
||||
0x9b58d9ee, 0xe5ab79cc, 0x9a5f6052, 0xbd9591b0, 0xfad2232b, 0x5a632254,
|
||||
0x0286e618, 0x8ad3c8f7, 0xe4060176, 0x754c4617, 0x5c10490b, 0x6f7d6fff,
|
||||
0x2187b42a, 0x5775095b, 0x02f4c663, 0x5a5dca06, 0xfe4ad4c7, 0x53e19f7d,
|
||||
0x59ff46b5, 0xbcc42ba5, 0xfd2f4a97, 0xbed6d905, 0x95629b6b, 0x21a1c0db,
|
||||
0xaa10b45d, 0xe6ef6d58, 0x2892cf4d, 0x9fed6c10, 0x1e386bf7, 0x9be0c6e8,
|
||||
0x2b2f15ef, 0x19f5ac7b, 0x7aff0e72, 0x31da576f, 0x30252cb4, 0x577960ac,
|
||||
0x166e9e5a, 0xa9374a61, 0x71369c96, 0x7ff826ae, 0xe8175326, 0xcabbfd33,
|
||||
0x0191190e, 0x699d3c3e, 0x36b40b22, 0xb3950513, 0x9b889bfa, 0xa52a5007,
|
||||
0xac290fed, 0x3b4e4a4f, 0xb753d8d6, 0x3c531f22, 0x582f6427, 0xa9cd93a9,
|
||||
0x546e39ae, 0x242faad2, 0xd2e0f747, 0x09f6325d, 0x59d48719, 0xad7eb66e,
|
||||
0xd5512878, 0x56debf9d, 0x5107e5a5, 0xf1c00aa4, 0x814ccca8, 0x600d90f0,
|
||||
0x9be97619, 0x915fa5f2, 0x2b5628dd, 0xa33d5f5a, 0x595df7c1, 0x6966215d,
|
||||
0x50ec8337, 0xf1d21372, 0x0ee2eefb, 0xad9e70b7, 0xab0d2fe4, 0xcf277b5d,
|
||||
0x62585a2c, 0x835a7844, 0x74b1fa6b, 0x49baffd5, 0x2ea9c864, 0x129311a8,
|
||||
0xbdfa1867, 0x83ca5997, 0x9d1db719, 0x84bb79e6, 0x9e3f99f2, 0x313f6101,
|
||||
0x1b99245b, 0xd15d8fb2, 0xcef90f81, 0x2945268d, 0xdbbcf573, 0xb1021886,
|
||||
0x9ee7ec1d, 0x1cf824f7, 0x7eaa2e32, 0x69c0a2b5, 0x7494419c, 0xe253d7d3,
|
||||
0x48da3d12, 0x45b8b571, 0xdb4d147a, 0xd82d8dde, 0x265d10a2, 0xb0a6eb9a,
|
||||
0x7e1c93a6, 0x36fe2f46, 0xdcad6b00, 0x05439191, 0xb0ce5484, 0x61d1c309,
|
||||
0x8da62a03, 0x06d0fe2f, 0xbac6dd3c, 0xca2006f3, 0x8321b1af, 0x0411a6f3,
|
||||
0xe8918eac, 0x21a2c152, 0x91c0d54f, 0x6aaa14fa, 0xdd22a440, 0x88cb2075,
|
||||
0x7a4eb813, 0x67afa071, 0xd8d98c9c, 0x31f10d47, 0x6ff1a8a8, 0x2faaf0a1,
|
||||
0x48a221bb, 0x3be6948b, 0xaa79e79b, 0x0ea7278c, 0x7a3857ef, 0x49b7fe55,
|
||||
0xd51cb931, 0x041c018d, 0x00b90501, 0x45ea7881, 0x8fc1dbcf, 0xb80b32a9,
|
||||
0xabacd2e9, 0x677bdc40, 0xecace542, 0x6d6514eb, 0x31c09ff7, 0x5e6c1abd,
|
||||
0x1c391d0f, 0x0e9d77f1, 0x7119392d, 0x6be9b0ba, 0x6194fa77, 0x45e62148,
|
||||
0x42234af2, 0xc3239d66, 0x939cbdbc, 0x56200d9c, 0x6b275208, 0x001a61f3,
|
||||
0xccc2a546, 0x4b722be0, 0xee25f2b7, 0x6d86cf9e, 0xaa6be0cd, 0x4dcda7b6,
|
||||
0x78d4aa13, 0x36ea7ad9, 0x3f29d700, 0xdeea2d84, 0x6a6af5bd, 0x18afb81c,
|
||||
0xd8e4e73c, 0x8aa708ba, 0x658b94d9, 0xa676478c, 0xcfa10c22, 0x25593c74,
|
||||
0x8d962235, 0x5f980270, 0x3df6ebc0, 0x8e7d92fa, 0xc3ee55e1, 0xd5f72447,
|
||||
0x02b0fa95, 0x52b0b520, 0x70d2c11f, 0x3a6fdd6c, 0x193aa698, 0x5496f7d5,
|
||||
0x4208931b, 0x7a4106ec, 0x83e86840, 0xf49b6f8c, 0xba3d9a51, 0x55f54ddd,
|
||||
0x2de51372, 0x9afb571b, 0x3ab35406, 0xad64ff1f, 0xc77764fe, 0x7f864466,
|
||||
0x416d9cd4, 0xa2489278, 0xe30b86e4, 0x0b5231b6, 0xba67aed6, 0xe5ab2467,
|
||||
0x60028b90, 0x1d9e20c6, 0x2a7c692a, 0x6b691cdb, 0x9e51f817, 0x9b763dec,
|
||||
0x3d29323f, 0xcfe12b68, 0x754b459b, 0xa2238047, 0xd9c55514, 0x6bdcffc1,
|
||||
0x693e6340, 0x82383fe7, 0x1916ea5f, 0xec7bcd59, 0x72de165a, 0xe79a1617,
|
||||
0x8ec86234, 0xa8f0d284, 0x20c90226, 0x7bf98884, 0x28a58331, 0x3ec3fa6e,
|
||||
0x4ce0895b, 0xc353b4d0, 0x33ef064f, 0x21e5e210, 0xc8bb589d, 0xe85dcab2,
|
||||
0xac65829f, 0xa7bf92d0, 0x05a6174d, 0x25a50c2e, 0xe5c78777, 0x3d75021f,
|
||||
0x4baa9c98, 0x23bdc884, 0x9653bbd7, 0xbadce7f5, 0xc283a484, 0xc040df2e,
|
||||
0x9370a841, 0x2f316022, 0x36eed231, 0xac2cbc0c, 0x13c0a49b, 0xcdd12997,
|
||||
0x07fe91b2, 0xcd7eabcd, 0x2c01271d, 0x18432df8, 0x599c6bc7, 0x75e93d5a,
|
||||
0xb67a6ee2, 0x8e738e16, 0xff9073fd, 0xaf77026a, 0xf86ea2fc, 0x91509ea3,
|
||||
0x33a78dc6, 0x4f79234a, 0x3a7535bc, 0x3539fcb1, 0x3103ee52, 0x4f6f1e69,
|
||||
0x6bb3ebbc, 0x4cb77555, 0x8dd1e999, 0x2ade439d, 0x11521fae, 0xb94d2545,
|
||||
0x8dde9abd, 0x1909393f, 0xb792a23d, 0x749c455b, 0xb5b60f2c, 0x380459ce,
|
||||
0x0dad5820, 0xb130845b, 0x291cbd52, 0xde9a5bb7, 0x51def961, 0x515b6408,
|
||||
0xca6e823e, 0x382e6e74, 0xeebe3d71, 0x4c8f0c6a, 0xe676dcea, 0x14e1dc7c,
|
||||
0x6f7fc634, 0xcf85a943, 0xd39ea96e, 0x136e7c93, 0x7164b304, 0xf32f1333,
|
||||
0x35c34034, 0xde39d721, 0x91a87439, 0xc410111f, 0x29f17aac, 0x1316a6ff,
|
||||
0x12f194ee, 0x420b9499, 0xf72db0dc, 0x690b9f93, 0x17d14bb2, 0x8f931ab8,
|
||||
0x217500bc, 0x875413f8, 0x98b2e43d, 0xc51f9571, 0x54cebdca, 0x0719cc79,
|
||||
0xf3c7080d, 0xe4286771, 0xa3eab3cd, 0x4a6b00e0, 0x11cf0759, 0x7e897379,
|
||||
0x5b32876c, 0x5e8cd4f6, 0x0cedfa64, 0x919ac2c7, 0xb214f3b3, 0x0e89c38c,
|
||||
0xf0c43a39, 0xeae10522, 0x835bce06, 0x9eec43c2, 0xea26a9d6, 0x69531821,
|
||||
0x6725b24a, 0xda81b0e2, 0xd5b4ae33, 0x080f99fb, 0x15a83daf, 0x29dfc720,
|
||||
0x91e1900f, 0x28163d58, 0x83d107a2, 0x4eac149a, 0x9f71da18, 0x61d5c4fa,
|
||||
0xe3ab2a5f, 0xc7b0d63f, 0xb3cc752a, 0x61ebcfb6, 0x26ffb52a, 0xed789e3f,
|
||||
0xaa3bc958, 0x455a8788, 0xc9c082a9, 0x0a1bef0e, 0xc29a5a7e, 0x150d4735,
|
||||
0x943809e0, 0x69215510, 0xef0b0da9, 0x3b4e9fb3, 0xd8b5d04c, 0xc7a023a8,
|
||||
0xb0d50288, 0x64821375, 0xc260e8cf, 0x8496bd2c, 0xff4f5435, 0x0fb5560c,
|
||||
0x7cd74a52, 0x93589c80, 0x88975c47, 0x83bda89d, 0x8bcc4296, 0x01b82c21,
|
||||
0xfd821dbf, 0x26520b47, 0x04983e19, 0xd3e1ca27, 0x782c580f, 0x326ff573,
|
||||
0xc157bcc7, 0x4f5e6b84, 0x44ebfbfb, 0xda26d9d8, 0x6cd9d08e, 0x1719f1d8,
|
||||
0x715c0487, 0x2c2d3c92, 0x53faaba9, 0xbc836146, 0x510c92d6, 0xe089f82a,
|
||||
0x4680171f, 0x369f00de, 0x70ec2331, 0x0e253d55, 0xdafb9717, 0xe5dd922d,
|
||||
0x95915d21, 0xa0202f96, 0xa161cc47, 0xeacfa6f1, 0xed5e9189, 0xdab87684,
|
||||
0xa4b76d4a, 0xfa704897, 0x631f10ba, 0xd39da8f9, 0x5db4c0e4, 0x16fde42a,
|
||||
0x2dff7580, 0xb56fec7e, 0xc3ffb370, 0x8e6f36bc, 0x6097d459, 0x514d5d36,
|
||||
0xa5a737e2, 0x3977b9b3, 0xfd31a0ca, 0x903368db, 0xe8370d61, 0x98109520,
|
||||
0xade23cac, 0x99f82e04, 0x41de7ea3, 0x84a1c295, 0x09191be0, 0x30930d02,
|
||||
0x1c9fa44a, 0xc406b6d7, 0xeedca152, 0x6149809c, 0xb0099ef4, 0xc5f653a5,
|
||||
0x4c10790d, 0x7303286c
|
||||
};
|
||||
Vendored
Vendored
+602
@@ -0,0 +1,602 @@
|
||||
/*
|
||||
* explode.c -- explode function of pkware data compression library.
|
||||
*
|
||||
* Copyright (c) 2003-2008 Maik Broemme <[email protected]>
|
||||
*
|
||||
* This source was adepted from the C++ version of pkware.cpp included
|
||||
* in stormlib. The C++ version belongs to the following authors:
|
||||
*
|
||||
* Ladislav Zezula <[email protected]>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/* generic includes. */
|
||||
#include <string.h>
|
||||
|
||||
/* libmpq main includes. */
|
||||
#include "mpq.h"
|
||||
|
||||
/* libmpq generic includes. */
|
||||
#include "explode.h"
|
||||
|
||||
/* tables used for data extraction. */
|
||||
static const uint8_t pkzip_dist_bits[] = {
|
||||
0x02, 0x04, 0x04, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06,
|
||||
0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07,
|
||||
0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07,
|
||||
0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08
|
||||
};
|
||||
|
||||
/* tables used for data extraction. */
|
||||
static const uint8_t pkzip_dist_code[] = {
|
||||
0x03, 0x0D, 0x05, 0x19, 0x09, 0x11, 0x01, 0x3E, 0x1E, 0x2E, 0x0E, 0x36, 0x16, 0x26, 0x06, 0x3A,
|
||||
0x1A, 0x2A, 0x0A, 0x32, 0x12, 0x22, 0x42, 0x02, 0x7C, 0x3C, 0x5C, 0x1C, 0x6C, 0x2C, 0x4C, 0x0C,
|
||||
0x74, 0x34, 0x54, 0x14, 0x64, 0x24, 0x44, 0x04, 0x78, 0x38, 0x58, 0x18, 0x68, 0x28, 0x48, 0x08,
|
||||
0xF0, 0x70, 0xB0, 0x30, 0xD0, 0x50, 0x90, 0x10, 0xE0, 0x60, 0xA0, 0x20, 0xC0, 0x40, 0x80, 0x00
|
||||
};
|
||||
|
||||
/* tables used for data extraction. */
|
||||
static const uint8_t pkzip_clen_bits[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08
|
||||
};
|
||||
|
||||
/* tables used for data extraction. */
|
||||
static const uint16_t pkzip_len_base[] = {
|
||||
0x0000, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007,
|
||||
0x0008, 0x000A, 0x000E, 0x0016, 0x0026, 0x0046, 0x0086, 0x0106
|
||||
};
|
||||
|
||||
/* tables used for data extraction. */
|
||||
static const uint8_t pkzip_slen_bits[] = {
|
||||
0x03, 0x02, 0x03, 0x03, 0x04, 0x04, 0x04, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x07, 0x07
|
||||
};
|
||||
|
||||
/* tables used for data extraction. */
|
||||
static const uint8_t pkzip_len_code[] = {
|
||||
0x05, 0x03, 0x01, 0x06, 0x0A, 0x02, 0x0C, 0x14, 0x04, 0x18, 0x08, 0x30, 0x10, 0x20, 0x40, 0x00
|
||||
};
|
||||
|
||||
/* tables used for data extraction. */
|
||||
static const uint8_t pkzip_bits_asc[] = {
|
||||
0x0B, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x08, 0x07, 0x0C, 0x0C, 0x07, 0x0C, 0x0C,
|
||||
0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0D, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C,
|
||||
0x04, 0x0A, 0x08, 0x0C, 0x0A, 0x0C, 0x0A, 0x08, 0x07, 0x07, 0x08, 0x09, 0x07, 0x06, 0x07, 0x08,
|
||||
0x07, 0x06, 0x07, 0x07, 0x07, 0x07, 0x08, 0x07, 0x07, 0x08, 0x08, 0x0C, 0x0B, 0x07, 0x09, 0x0B,
|
||||
0x0C, 0x06, 0x07, 0x06, 0x06, 0x05, 0x07, 0x08, 0x08, 0x06, 0x0B, 0x09, 0x06, 0x07, 0x06, 0x06,
|
||||
0x07, 0x0B, 0x06, 0x06, 0x06, 0x07, 0x09, 0x08, 0x09, 0x09, 0x0B, 0x08, 0x0B, 0x09, 0x0C, 0x08,
|
||||
0x0C, 0x05, 0x06, 0x06, 0x06, 0x05, 0x06, 0x06, 0x06, 0x05, 0x0B, 0x07, 0x05, 0x06, 0x05, 0x05,
|
||||
0x06, 0x0A, 0x05, 0x05, 0x05, 0x05, 0x08, 0x07, 0x08, 0x08, 0x0A, 0x0B, 0x0B, 0x0C, 0x0C, 0x0C,
|
||||
0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D,
|
||||
0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D,
|
||||
0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D,
|
||||
0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C,
|
||||
0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C,
|
||||
0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C,
|
||||
0x0D, 0x0C, 0x0D, 0x0D, 0x0D, 0x0C, 0x0D, 0x0D, 0x0D, 0x0C, 0x0D, 0x0D, 0x0D, 0x0D, 0x0C, 0x0D,
|
||||
0x0D, 0x0D, 0x0C, 0x0C, 0x0C, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D
|
||||
};
|
||||
|
||||
/* tables used for data extraction. */
|
||||
static const uint16_t pkzip_code_asc[] = {
|
||||
0x0490, 0x0FE0, 0x07E0, 0x0BE0, 0x03E0, 0x0DE0, 0x05E0, 0x09E0,
|
||||
0x01E0, 0x00B8, 0x0062, 0x0EE0, 0x06E0, 0x0022, 0x0AE0, 0x02E0,
|
||||
0x0CE0, 0x04E0, 0x08E0, 0x00E0, 0x0F60, 0x0760, 0x0B60, 0x0360,
|
||||
0x0D60, 0x0560, 0x1240, 0x0960, 0x0160, 0x0E60, 0x0660, 0x0A60,
|
||||
0x000F, 0x0250, 0x0038, 0x0260, 0x0050, 0x0C60, 0x0390, 0x00D8,
|
||||
0x0042, 0x0002, 0x0058, 0x01B0, 0x007C, 0x0029, 0x003C, 0x0098,
|
||||
0x005C, 0x0009, 0x001C, 0x006C, 0x002C, 0x004C, 0x0018, 0x000C,
|
||||
0x0074, 0x00E8, 0x0068, 0x0460, 0x0090, 0x0034, 0x00B0, 0x0710,
|
||||
0x0860, 0x0031, 0x0054, 0x0011, 0x0021, 0x0017, 0x0014, 0x00A8,
|
||||
0x0028, 0x0001, 0x0310, 0x0130, 0x003E, 0x0064, 0x001E, 0x002E,
|
||||
0x0024, 0x0510, 0x000E, 0x0036, 0x0016, 0x0044, 0x0030, 0x00C8,
|
||||
0x01D0, 0x00D0, 0x0110, 0x0048, 0x0610, 0x0150, 0x0060, 0x0088,
|
||||
0x0FA0, 0x0007, 0x0026, 0x0006, 0x003A, 0x001B, 0x001A, 0x002A,
|
||||
0x000A, 0x000B, 0x0210, 0x0004, 0x0013, 0x0032, 0x0003, 0x001D,
|
||||
0x0012, 0x0190, 0x000D, 0x0015, 0x0005, 0x0019, 0x0008, 0x0078,
|
||||
0x00F0, 0x0070, 0x0290, 0x0410, 0x0010, 0x07A0, 0x0BA0, 0x03A0,
|
||||
0x0240, 0x1C40, 0x0C40, 0x1440, 0x0440, 0x1840, 0x0840, 0x1040,
|
||||
0x0040, 0x1F80, 0x0F80, 0x1780, 0x0780, 0x1B80, 0x0B80, 0x1380,
|
||||
0x0380, 0x1D80, 0x0D80, 0x1580, 0x0580, 0x1980, 0x0980, 0x1180,
|
||||
0x0180, 0x1E80, 0x0E80, 0x1680, 0x0680, 0x1A80, 0x0A80, 0x1280,
|
||||
0x0280, 0x1C80, 0x0C80, 0x1480, 0x0480, 0x1880, 0x0880, 0x1080,
|
||||
0x0080, 0x1F00, 0x0F00, 0x1700, 0x0700, 0x1B00, 0x0B00, 0x1300,
|
||||
0x0DA0, 0x05A0, 0x09A0, 0x01A0, 0x0EA0, 0x06A0, 0x0AA0, 0x02A0,
|
||||
0x0CA0, 0x04A0, 0x08A0, 0x00A0, 0x0F20, 0x0720, 0x0B20, 0x0320,
|
||||
0x0D20, 0x0520, 0x0920, 0x0120, 0x0E20, 0x0620, 0x0A20, 0x0220,
|
||||
0x0C20, 0x0420, 0x0820, 0x0020, 0x0FC0, 0x07C0, 0x0BC0, 0x03C0,
|
||||
0x0DC0, 0x05C0, 0x09C0, 0x01C0, 0x0EC0, 0x06C0, 0x0AC0, 0x02C0,
|
||||
0x0CC0, 0x04C0, 0x08C0, 0x00C0, 0x0F40, 0x0740, 0x0B40, 0x0340,
|
||||
0x0300, 0x0D40, 0x1D00, 0x0D00, 0x1500, 0x0540, 0x0500, 0x1900,
|
||||
0x0900, 0x0940, 0x1100, 0x0100, 0x1E00, 0x0E00, 0x0140, 0x1600,
|
||||
0x0600, 0x1A00, 0x0E40, 0x0640, 0x0A40, 0x0A00, 0x1200, 0x0200,
|
||||
0x1C00, 0x0C00, 0x1400, 0x0400, 0x1800, 0x0800, 0x1000, 0x0000
|
||||
};
|
||||
|
||||
/* local unused variables. */
|
||||
char pkware_copyright[] = "PKWARE Data Compression Library for Win32\r\n"
|
||||
"Copyright 1989-1995 PKWARE Inc. All Rights Reserved\r\n"
|
||||
"Patent No. 5,051,745\r\n"
|
||||
"PKWARE Data Compression Library Reg. U.S. Pat. and Tm. Off.\r\n"
|
||||
"Version 1.11\r\n";
|
||||
|
||||
/* skips given number of bits. */
|
||||
static int32_t skip_bit(pkzip_cmp_s *mpq_pkzip, uint32_t bits) {
|
||||
|
||||
/* check if number of bits required is less than number of bits in the buffer. */
|
||||
if (bits <= mpq_pkzip->extra_bits) {
|
||||
mpq_pkzip->extra_bits -= bits;
|
||||
mpq_pkzip->bit_buf >>= bits;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* load input buffer if necessary. */
|
||||
mpq_pkzip->bit_buf >>= mpq_pkzip->extra_bits;
|
||||
if (mpq_pkzip->in_pos == mpq_pkzip->in_bytes) {
|
||||
mpq_pkzip->in_pos = sizeof(mpq_pkzip->in_buf);
|
||||
if ((mpq_pkzip->in_bytes = mpq_pkzip->read_buf((char *)mpq_pkzip->in_buf, &mpq_pkzip->in_pos, mpq_pkzip->param)) == 0) {
|
||||
return 1;
|
||||
}
|
||||
mpq_pkzip->in_pos = 0;
|
||||
}
|
||||
|
||||
/* update bit buffer. */
|
||||
mpq_pkzip->bit_buf |= (mpq_pkzip->in_buf[mpq_pkzip->in_pos++] << 8);
|
||||
mpq_pkzip->bit_buf >>= (bits - mpq_pkzip->extra_bits);
|
||||
mpq_pkzip->extra_bits = (mpq_pkzip->extra_bits - bits) + 8;
|
||||
|
||||
/* if no error was found, return zero. */
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* this function generate the decode tables used for decryption. */
|
||||
static void generate_tables_decode(int32_t count, uint8_t *bits, const uint8_t *code, uint8_t *buf2) {
|
||||
|
||||
/* some common variables. */
|
||||
int32_t i;
|
||||
|
||||
/* EBX - count */
|
||||
for (i = count-1; i >= 0; i--) {
|
||||
|
||||
/* some common variables. */
|
||||
uint32_t idx1 = code[i];
|
||||
uint32_t idx2 = 1 << bits[i];
|
||||
|
||||
/* loop until table is ready. */
|
||||
do {
|
||||
buf2[idx1] = (uint8_t)i;
|
||||
idx1 += idx2;
|
||||
} while (idx1 < 0x100);
|
||||
}
|
||||
}
|
||||
|
||||
/* this function generate the tables for ascii decompression. */
|
||||
static void generate_tables_ascii(pkzip_cmp_s *mpq_pkzip) {
|
||||
|
||||
/* some common variables. */
|
||||
const uint16_t *code_asc = &pkzip_code_asc[0xFF];
|
||||
uint32_t acc;
|
||||
uint32_t add;
|
||||
uint16_t count;
|
||||
|
||||
/* loop through ascii table. */
|
||||
for (count = 0x00FF; code_asc >= pkzip_code_asc; code_asc--, count--) {
|
||||
uint8_t *bits_asc = mpq_pkzip->bits_asc + count;
|
||||
uint8_t bits_tmp = *bits_asc;
|
||||
|
||||
/* check if byte is finished. */
|
||||
if (bits_tmp <= 8) {
|
||||
add = (1 << bits_tmp);
|
||||
acc = *code_asc;
|
||||
do {
|
||||
mpq_pkzip->offs_2c34[acc] = (uint8_t)count;
|
||||
acc += add;
|
||||
} while (acc < 0x100);
|
||||
} else {
|
||||
if ((acc = (*code_asc & 0xFF)) != 0) {
|
||||
mpq_pkzip->offs_2c34[acc] = 0xFF;
|
||||
if (*code_asc & 0x3F) {
|
||||
|
||||
/* decrease bit by four. */
|
||||
bits_tmp -= 4;
|
||||
*bits_asc = bits_tmp;
|
||||
add = (1 << bits_tmp);
|
||||
acc = *code_asc >> 4;
|
||||
do {
|
||||
mpq_pkzip->offs_2d34[acc] = (uint8_t)count;
|
||||
acc += add;
|
||||
} while (acc < 0x100);
|
||||
} else {
|
||||
|
||||
/* decrease bit by six. */
|
||||
bits_tmp -= 6;
|
||||
*bits_asc = bits_tmp;
|
||||
add = (1 << bits_tmp);
|
||||
acc = *code_asc >> 6;
|
||||
do {
|
||||
mpq_pkzip->offs_2e34[acc] = (uint8_t)count;
|
||||
acc += add;
|
||||
} while (acc < 0x80);
|
||||
}
|
||||
} else {
|
||||
|
||||
/* decrease bit by eight. (one byte) */
|
||||
bits_tmp -= 8;
|
||||
*bits_asc = bits_tmp;
|
||||
add = (1 << bits_tmp);
|
||||
acc = *code_asc >> 8;
|
||||
do {
|
||||
mpq_pkzip->offs_2eb4[acc] = (uint8_t)count;
|
||||
acc += add;
|
||||
} while (acc < 0x100);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* decompress the imploded data using coded literals.
|
||||
*
|
||||
* returns: 0x000 - 0x0FF : one byte from compressed file.
|
||||
* 0x100 - 0x305 : copy previous block. (0x100 = 1 byte)
|
||||
* 0x306 : out of buffer?
|
||||
*/
|
||||
static uint32_t decode_literal(pkzip_cmp_s *mpq_pkzip) {
|
||||
|
||||
/* number of bits to skip. */
|
||||
uint32_t bits;
|
||||
|
||||
/* position in buffers. */
|
||||
uint32_t value;
|
||||
|
||||
/* check if bit the current buffer is set, if not return the next byte. */
|
||||
if (mpq_pkzip->bit_buf & 1) {
|
||||
|
||||
/* skip current bit in the buffer. */
|
||||
if (skip_bit(mpq_pkzip, 1)) {
|
||||
return 0x306;
|
||||
}
|
||||
|
||||
/* the next bits are position in buffers. */
|
||||
value = mpq_pkzip->pos2[(mpq_pkzip->bit_buf & 0xFF)];
|
||||
|
||||
/* get number of bits to skip. */
|
||||
if (skip_bit(mpq_pkzip, mpq_pkzip->slen_bits[value])) {
|
||||
return 0x306;
|
||||
}
|
||||
|
||||
/* check bits. */
|
||||
if ((bits = mpq_pkzip->clen_bits[value]) != 0) {
|
||||
|
||||
/* some common variables. */
|
||||
uint32_t val2 = mpq_pkzip->bit_buf & ((1 << bits) - 1);
|
||||
|
||||
/* check if we should skip one bit. */
|
||||
if (skip_bit(mpq_pkzip, bits)) {
|
||||
|
||||
/* check position if we should skip the bit. */
|
||||
if ((value + val2) != 0x10E) {
|
||||
return 0x306;
|
||||
}
|
||||
}
|
||||
|
||||
/* fill values. */
|
||||
value = mpq_pkzip->len_base[value] + val2;
|
||||
}
|
||||
|
||||
/* return number of bytes to repeat. */
|
||||
return value + 0x100;
|
||||
}
|
||||
|
||||
/* skip one bit. */
|
||||
if (skip_bit(mpq_pkzip, 1)) {
|
||||
return 0x306;
|
||||
}
|
||||
|
||||
/* check the binary compression type, read 8 bits and return them as one byte. */
|
||||
if (mpq_pkzip->cmp_type == LIBMPQ_PKZIP_CMP_BINARY) {
|
||||
|
||||
/* fill values. */
|
||||
value = mpq_pkzip->bit_buf & 0xFF;
|
||||
|
||||
/* check if we should skip one bit. */
|
||||
if (skip_bit(mpq_pkzip, 8)) {
|
||||
return 0x306;
|
||||
}
|
||||
|
||||
/* return value from bit buffer. */
|
||||
return value;
|
||||
}
|
||||
|
||||
/* check if ascii compression is used. */
|
||||
if (mpq_pkzip->bit_buf & 0xFF) {
|
||||
|
||||
/* fill values. */
|
||||
value = mpq_pkzip->offs_2c34[mpq_pkzip->bit_buf & 0xFF];
|
||||
|
||||
/* check value. */
|
||||
if (value == 0xFF) {
|
||||
if (mpq_pkzip->bit_buf & 0x3F) {
|
||||
|
||||
/* check if four bits are in bit buffer for skipping. */
|
||||
if (skip_bit(mpq_pkzip, 4)) {
|
||||
return 0x306;
|
||||
}
|
||||
|
||||
/* fill values. */
|
||||
value = mpq_pkzip->offs_2d34[mpq_pkzip->bit_buf & 0xFF];
|
||||
} else {
|
||||
|
||||
/* check if six bits are in bit buffer for skipping. */
|
||||
if (skip_bit(mpq_pkzip, 6)) {
|
||||
return 0x306;
|
||||
}
|
||||
|
||||
/* fill values. */
|
||||
value = mpq_pkzip->offs_2e34[mpq_pkzip->bit_buf & 0x7F];
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
||||
/* check if eight bits are in bit buffer for skipping. */
|
||||
if (skip_bit(mpq_pkzip, 8)) {
|
||||
return 0x306;
|
||||
}
|
||||
|
||||
/* fill values. */
|
||||
value = mpq_pkzip->offs_2eb4[mpq_pkzip->bit_buf & 0xFF];
|
||||
}
|
||||
|
||||
/* return out of buffer error (0x306) or position in buffer. */
|
||||
return skip_bit(mpq_pkzip, mpq_pkzip->bits_asc[value]) ? 0x306 : value;
|
||||
}
|
||||
|
||||
/* this function retrieves the number of bytes to move back. */
|
||||
static uint32_t decode_distance(pkzip_cmp_s *mpq_pkzip, uint32_t length) {
|
||||
|
||||
/* some common variables. */
|
||||
uint32_t pos = mpq_pkzip->pos1[(mpq_pkzip->bit_buf & 0xFF)];
|
||||
|
||||
/* number of bits to skip. */
|
||||
uint32_t skip = mpq_pkzip->dist_bits[pos];
|
||||
|
||||
/* skip the appropriate number of bits. */
|
||||
if (skip_bit(mpq_pkzip, skip) == 1) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* check if length is two. */
|
||||
if (length == 2) {
|
||||
pos = (pos << 2) | (mpq_pkzip->bit_buf & 0x03);
|
||||
|
||||
/* skip the bits. */
|
||||
if (skip_bit(mpq_pkzip, 2) == 1) {
|
||||
return 0;
|
||||
}
|
||||
} else {
|
||||
pos = (pos << mpq_pkzip->dsize_bits) | (mpq_pkzip->bit_buf & mpq_pkzip->dsize_mask);
|
||||
|
||||
/* skip the bits */
|
||||
if (skip_bit(mpq_pkzip, mpq_pkzip->dsize_bits) == 1) {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* return the bytes to move back. */
|
||||
return pos + 1;
|
||||
}
|
||||
|
||||
/*
|
||||
* function loads data from the input buffer used by mpq_pkzip
|
||||
* "implode" and "explode" function as user defined callback and
|
||||
* returns number of bytes loaded.
|
||||
*
|
||||
* char *buf - pointer to a buffer where to store loaded data.
|
||||
* uint32_t *size - maximum number of bytes to read.
|
||||
* void *param - custom pointer, parameter of implode/explode.
|
||||
*/
|
||||
static uint32_t data_read_input(char *buf, uint32_t *size, void *param) {
|
||||
|
||||
/* some common variables. */
|
||||
pkzip_data_s *info = (pkzip_data_s *)param;
|
||||
uint32_t max_avail = (info->in_bytes - info->in_pos);
|
||||
uint32_t to_read = *size;
|
||||
|
||||
/* check the case when not enough data available. */
|
||||
if (to_read > max_avail) {
|
||||
to_read = max_avail;
|
||||
}
|
||||
|
||||
/* load data and increment offsets. */
|
||||
memcpy(buf, info->in_buf + info->in_pos, to_read);
|
||||
info->in_pos += to_read;
|
||||
|
||||
/* return bytes read. */
|
||||
return to_read;
|
||||
}
|
||||
|
||||
/*
|
||||
* function for store output data used by mpq_pkzip "implode" and
|
||||
* "explode" as userdefined callback.
|
||||
*
|
||||
* char *buf - pointer to data to be written.
|
||||
* uint32_t *size - number of bytes to write.
|
||||
* void *param - custom pointer, parameter of implode/explode.
|
||||
*/
|
||||
static void data_write_output(char *buf, uint32_t *size, void *param) {
|
||||
|
||||
/* some common variables. */
|
||||
pkzip_data_s *info = (pkzip_data_s *)param;
|
||||
uint32_t max_write = (info->max_out - info->out_pos);
|
||||
uint32_t to_write = *size;
|
||||
|
||||
/* check the case when not enough space in the output buffer. */
|
||||
if (to_write > max_write) {
|
||||
to_write = max_write;
|
||||
}
|
||||
|
||||
/* write output data and increments offsets. */
|
||||
memcpy(info->out_buf + info->out_pos, buf, to_write);
|
||||
info->out_pos += to_write;
|
||||
}
|
||||
|
||||
/* this function extract the data from input stream. */
|
||||
static uint32_t expand(pkzip_cmp_s *mpq_pkzip) {
|
||||
|
||||
/* number of bytes to copy. */
|
||||
uint32_t copy_bytes;
|
||||
|
||||
/* one byte from compressed file. */
|
||||
uint32_t one_byte;
|
||||
|
||||
/* some common variables. */
|
||||
uint32_t result;
|
||||
|
||||
/* initialize output buffer position. */
|
||||
mpq_pkzip->out_pos = 0x1000;
|
||||
|
||||
/* check if end of data or error, so terminate decompress. */
|
||||
while ((result = one_byte = decode_literal(mpq_pkzip)) < 0x305) {
|
||||
|
||||
/* check if one byte is greater than 0x100, which means 'repeat n - 0xFE bytes'. */
|
||||
if (one_byte >= 0x100) {
|
||||
|
||||
/* ECX */
|
||||
uint8_t *source;
|
||||
|
||||
/* EDX */
|
||||
uint8_t *target;
|
||||
|
||||
/* some common variables. */
|
||||
uint32_t copy_length = one_byte - 0xFE;
|
||||
uint32_t move_back;
|
||||
|
||||
/* get length of data to copy. */
|
||||
if ((move_back = decode_distance(mpq_pkzip, copy_length)) == 0) {
|
||||
result = 0x306;
|
||||
break;
|
||||
}
|
||||
|
||||
/* target and source pointer. */
|
||||
target = &mpq_pkzip->out_buf[mpq_pkzip->out_pos];
|
||||
source = target - move_back;
|
||||
mpq_pkzip->out_pos += copy_length;
|
||||
|
||||
/* copy until nothing left. */
|
||||
while (copy_length-- > 0) {
|
||||
*target++ = *source++;
|
||||
}
|
||||
} else {
|
||||
|
||||
/* byte is 0x100 great, so add one byte. */
|
||||
mpq_pkzip->out_buf[mpq_pkzip->out_pos++] = (uint8_t)one_byte;
|
||||
}
|
||||
|
||||
/* check if number of extracted bytes has reached 1/2 of output buffer, so flush output buffer. */
|
||||
if (mpq_pkzip->out_pos >= 0x2000) {
|
||||
|
||||
/* copy decompressed data into user buffer. */
|
||||
copy_bytes = 0x1000;
|
||||
mpq_pkzip->write_buf((char *)&mpq_pkzip->out_buf[0x1000], ©_bytes, mpq_pkzip->param);
|
||||
|
||||
/* check if there are some data left, keep them alive. */
|
||||
memcpy(mpq_pkzip->out_buf, &mpq_pkzip->out_buf[0x1000], mpq_pkzip->out_pos - 0x1000);
|
||||
mpq_pkzip->out_pos -= 0x1000;
|
||||
}
|
||||
}
|
||||
|
||||
/* copy the rest. */
|
||||
copy_bytes = mpq_pkzip->out_pos - 0x1000;
|
||||
mpq_pkzip->write_buf((char *)&mpq_pkzip->out_buf[0x1000], ©_bytes, mpq_pkzip->param);
|
||||
|
||||
/* return copied bytes. */
|
||||
return result;
|
||||
}
|
||||
|
||||
/* this function explode the data stream. */
|
||||
uint32_t libmpq__do_decompress_pkzip(uint8_t *work_buf, void *param) {
|
||||
|
||||
/* some common variables. */
|
||||
pkzip_cmp_s *mpq_pkzip = (pkzip_cmp_s *)work_buf;
|
||||
|
||||
/* set the whole work buffer to zeros. */
|
||||
memset(mpq_pkzip, 0, sizeof(pkzip_cmp_s));
|
||||
|
||||
/* initialize work struct and load compressed data. */
|
||||
mpq_pkzip->read_buf = data_read_input;
|
||||
mpq_pkzip->write_buf = data_write_output;
|
||||
mpq_pkzip->param = param;
|
||||
mpq_pkzip->in_pos = sizeof(mpq_pkzip->in_buf);
|
||||
mpq_pkzip->in_bytes = mpq_pkzip->read_buf((char *)mpq_pkzip->in_buf, &mpq_pkzip->in_pos, mpq_pkzip->param);
|
||||
|
||||
/* check if we have pkzip data. */
|
||||
if (mpq_pkzip->in_bytes <= 4) {
|
||||
return LIBMPQ_PKZIP_CMP_BAD_DATA;
|
||||
}
|
||||
|
||||
/* get the compression type. */
|
||||
mpq_pkzip->cmp_type = mpq_pkzip->in_buf[0];
|
||||
|
||||
/* get the dictionary size. */
|
||||
mpq_pkzip->dsize_bits = mpq_pkzip->in_buf[1];
|
||||
|
||||
/* initialize 16-bit bit buffer. */
|
||||
mpq_pkzip->bit_buf = mpq_pkzip->in_buf[2];
|
||||
|
||||
/* extra (over 8) bits. */
|
||||
mpq_pkzip->extra_bits = 0;
|
||||
|
||||
/* position in input buffer. */
|
||||
mpq_pkzip->in_pos = 3;
|
||||
|
||||
/* check if valid dictionary size. */
|
||||
if (4 > mpq_pkzip->dsize_bits || mpq_pkzip->dsize_bits > 6) {
|
||||
return LIBMPQ_PKZIP_CMP_INV_DICTSIZE;
|
||||
}
|
||||
|
||||
/* shifted by 'sar' instruction. */
|
||||
mpq_pkzip->dsize_mask = 0xFFFF >> (0x10 - mpq_pkzip->dsize_bits);
|
||||
|
||||
/* check if we are using binary compression. */
|
||||
if (mpq_pkzip->cmp_type != LIBMPQ_PKZIP_CMP_BINARY) {
|
||||
|
||||
/* check if we are using ascii compression. */
|
||||
if (mpq_pkzip->cmp_type != LIBMPQ_PKZIP_CMP_ASCII) {
|
||||
return LIBMPQ_PKZIP_CMP_INV_MODE;
|
||||
}
|
||||
|
||||
/* create ascii buffer. */
|
||||
memcpy(mpq_pkzip->bits_asc, pkzip_bits_asc, sizeof(mpq_pkzip->bits_asc));
|
||||
generate_tables_ascii(mpq_pkzip);
|
||||
}
|
||||
|
||||
/* create the tables for decode. */
|
||||
memcpy(mpq_pkzip->slen_bits, pkzip_slen_bits, sizeof(mpq_pkzip->slen_bits));
|
||||
generate_tables_decode(0x10, mpq_pkzip->slen_bits, pkzip_len_code, mpq_pkzip->pos2);
|
||||
|
||||
/* create the tables for decode. */
|
||||
memcpy(mpq_pkzip->clen_bits, pkzip_clen_bits, sizeof(mpq_pkzip->clen_bits));
|
||||
memcpy(mpq_pkzip->len_base, pkzip_len_base, sizeof(mpq_pkzip->len_base));
|
||||
memcpy(mpq_pkzip->dist_bits, pkzip_dist_bits, sizeof(mpq_pkzip->dist_bits));
|
||||
generate_tables_decode(0x40, mpq_pkzip->dist_bits, pkzip_dist_code, mpq_pkzip->pos1);
|
||||
|
||||
/* check if data extraction works. */
|
||||
if (expand(mpq_pkzip) != 0x306) {
|
||||
return LIBMPQ_PKZIP_CMP_NO_ERROR;
|
||||
}
|
||||
|
||||
/* something failed, so return error. */
|
||||
return LIBMPQ_PKZIP_CMP_ABORT;
|
||||
}
|
||||
Vendored
+85
@@ -0,0 +1,85 @@
|
||||
/*
|
||||
* explode.h -- header file for pkware data decompression library
|
||||
* used by mpq-tools.
|
||||
*
|
||||
* Copyright (c) 2003-2008 Maik Broemme <[email protected]>
|
||||
*
|
||||
* This source was adepted from the C++ version of pklib.h included
|
||||
* in stormlib. The C++ version belongs to the following authors:
|
||||
*
|
||||
* Ladislav Zezula <[email protected]>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef _EXPLODE_H
|
||||
#define _EXPLODE_H
|
||||
|
||||
/* define compression constants and return values. */
|
||||
#define LIBMPQ_PKZIP_CMP_BINARY 0 /* binary compression. */
|
||||
#define LIBMPQ_PKZIP_CMP_ASCII 1 /* ascii compression. */
|
||||
#define LIBMPQ_PKZIP_CMP_NO_ERROR 0
|
||||
#define LIBMPQ_PKZIP_CMP_INV_DICTSIZE 1
|
||||
#define LIBMPQ_PKZIP_CMP_INV_MODE 2
|
||||
#define LIBMPQ_PKZIP_CMP_BAD_DATA 3
|
||||
#define LIBMPQ_PKZIP_CMP_ABORT 4
|
||||
|
||||
/* compression structure. */
|
||||
typedef struct {
|
||||
uint32_t offs0000; /* 0000 - start. */
|
||||
uint32_t cmp_type; /* 0004 - compression type (binary or ascii). */
|
||||
uint32_t out_pos; /* 0008 - position in output buffer. */
|
||||
uint32_t dsize_bits; /* 000C - dict size (4, 5, 6 for 0x400, 0x800, 0x1000). */
|
||||
uint32_t dsize_mask; /* 0010 - dict size bitmask (0x0F, 0x1F, 0x3F for 0x400, 0x800, 0x1000). */
|
||||
uint32_t bit_buf; /* 0014 - 16-bit buffer for processing input data. */
|
||||
uint32_t extra_bits; /* 0018 - number of extra (above 8) bits in bit buffer. */
|
||||
uint32_t in_pos; /* 001C - position in in_buf. */
|
||||
uint32_t in_bytes; /* 0020 - number of bytes in input buffer. */
|
||||
void *param; /* 0024 - custom parameter. */
|
||||
uint32_t (*read_buf)(char *buf, uint32_t *size, void *param); /* 0028 offset.*/
|
||||
void (*write_buf)(char *buf, uint32_t *size, void *param); /* 002C offset. */
|
||||
uint8_t out_buf[0x2000]; /* 0030 - output circle buffer, starting position is 0x1000. */
|
||||
uint8_t offs_2030[0x204]; /* 2030 - whats that? */
|
||||
uint8_t in_buf[0x800]; /* 2234 - buffer for data to be decompressed. */
|
||||
uint8_t pos1[0x100]; /* 2A34 - positions in buffers. */
|
||||
uint8_t pos2[0x100]; /* 2B34 - positions in buffers. */
|
||||
uint8_t offs_2c34[0x100]; /* 2C34 - buffer. */
|
||||
uint8_t offs_2d34[0x100]; /* 2D34 - buffer. */
|
||||
uint8_t offs_2e34[0x80]; /* 2EB4 - buffer. */
|
||||
uint8_t offs_2eb4[0x100]; /* 2EB4 - buffer. */
|
||||
uint8_t bits_asc[0x100]; /* 2FB4 - buffer. */
|
||||
uint8_t dist_bits[0x40]; /* 30B4 - numbers of bytes to skip copied block length. */
|
||||
uint8_t slen_bits[0x10]; /* 30F4 - numbers of bits for skip copied block length. */
|
||||
uint8_t clen_bits[0x10]; /* 3104 - number of valid bits for copied block. */
|
||||
uint16_t len_base[0x10]; /* 3114 - buffer. */
|
||||
} __attribute__ ((packed)) pkzip_cmp_s;
|
||||
|
||||
/* data structure. */
|
||||
typedef struct {
|
||||
uint8_t *in_buf; /* pointer to input data buffer. */
|
||||
uint32_t in_pos; /* current offset in input data buffer. */
|
||||
int32_t in_bytes; /* number of bytes in the input buffer. */
|
||||
uint8_t *out_buf; /* pointer to output data buffer. */
|
||||
uint32_t out_pos; /* position in the output buffer. */
|
||||
int32_t max_out; /* maximum number of bytes in the output buffer. */
|
||||
} pkzip_data_s;
|
||||
|
||||
/* decompress the stream using pkzip compression. */
|
||||
uint32_t libmpq__do_decompress_pkzip(
|
||||
uint8_t *work_buf,
|
||||
void *param
|
||||
);
|
||||
|
||||
#endif /* _EXPLODE_H */
|
||||
Vendored
+361
@@ -0,0 +1,361 @@
|
||||
/*
|
||||
* extract.c -- global extracting function for all known file compressions
|
||||
* in a mpq archive.
|
||||
*
|
||||
* Copyright (c) 2003-2008 Maik Broemme <[email protected]>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/* generic includes. */
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
/* zlib includes. */
|
||||
#include <zlib.h>
|
||||
#include <bzlib.h>
|
||||
|
||||
/* libmpq main includes. */
|
||||
#include "mpq.h"
|
||||
|
||||
/* libmpq generic includes. */
|
||||
#include "explode.h"
|
||||
#include "extract.h"
|
||||
#include "huffman.h"
|
||||
#include "wave.h"
|
||||
|
||||
/* table with decompression bits and functions. */
|
||||
static decompress_table_s dcmp_table[] = {
|
||||
{LIBMPQ_COMPRESSION_HUFFMAN, libmpq__decompress_huffman}, /* decompression using huffman trees. */
|
||||
{LIBMPQ_COMPRESSION_ZLIB, libmpq__decompress_zlib}, /* decompression with the zlib library. */
|
||||
{LIBMPQ_COMPRESSION_PKZIP, libmpq__decompress_pkzip}, /* decompression with pkware data compression library. */
|
||||
{LIBMPQ_COMPRESSION_BZIP2, libmpq__decompress_bzip2}, /* decompression with bzip2 library. */
|
||||
{LIBMPQ_COMPRESSION_WAVE_MONO, libmpq__decompress_wave_mono}, /* decompression for mono waves. */
|
||||
{LIBMPQ_COMPRESSION_WAVE_STEREO, libmpq__decompress_wave_stereo} /* decompression for stereo waves. */
|
||||
};
|
||||
|
||||
/* this function decompress a stream using huffman algorithm. */
|
||||
int32_t libmpq__decompress_huffman(uint8_t *in_buf, uint32_t in_size, uint8_t *out_buf, uint32_t out_size) {
|
||||
|
||||
/* TODO: make typdefs of this structs? */
|
||||
/* some common variables. */
|
||||
int32_t tb = 0;
|
||||
struct huffman_tree_s *ht;
|
||||
struct huffman_input_stream_s *is;
|
||||
|
||||
/* allocate memory for the huffman tree. */
|
||||
if ((ht = malloc(sizeof(struct huffman_tree_s))) == NULL ||
|
||||
(is = malloc(sizeof(struct huffman_input_stream_s))) == NULL) {
|
||||
|
||||
/* memory allocation problem. */
|
||||
return LIBMPQ_ERROR_MALLOC;
|
||||
}
|
||||
|
||||
/* cleanup structures. */
|
||||
memset(ht, 0, sizeof(struct huffman_tree_s));
|
||||
memset(is, 0, sizeof(struct huffman_input_stream_s));
|
||||
|
||||
/* initialize input stream. */
|
||||
is->bit_buf = *(uint32_t *)in_buf;
|
||||
in_buf += sizeof(int32_t);
|
||||
is->in_buf = (uint8_t *)in_buf;
|
||||
is->bits = 32;
|
||||
|
||||
// TODO: add all the mallocs to init function and add function libmpq__huffman_tree_free() */
|
||||
// if ((result = libmpq__huffman_tree_init(ht, LIBMPQ_HUFF_DECOMPRESS)) < 0) {
|
||||
//
|
||||
// /* something on zlib initialization failed. */
|
||||
// return LIBMPQ_ERROR_UNPACK;
|
||||
// }
|
||||
|
||||
/* initialize the huffman tree for decompression. */
|
||||
libmpq__huffman_tree_init(ht, LIBMPQ_HUFF_DECOMPRESS);
|
||||
|
||||
/* save the number of copied bytes. */
|
||||
tb = libmpq__do_decompress_huffman(ht, is, out_buf, out_size);
|
||||
|
||||
/* free structures. */
|
||||
free(is);
|
||||
free(ht);
|
||||
|
||||
/* return transferred bytes. */
|
||||
return tb;
|
||||
}
|
||||
|
||||
/* this function decompress a stream using zlib algorithm. */
|
||||
int32_t libmpq__decompress_zlib(uint8_t *in_buf, uint32_t in_size, uint8_t *out_buf, uint32_t out_size) {
|
||||
|
||||
/* some common variables. */
|
||||
int32_t result = 0;
|
||||
int32_t tb = 0;
|
||||
z_stream z;
|
||||
|
||||
/* fill the stream structure for zlib. */
|
||||
z.next_in = (Bytef *)in_buf;
|
||||
z.avail_in = (uInt)in_size;
|
||||
z.total_in = in_size;
|
||||
z.next_out = (Bytef *)out_buf;
|
||||
z.avail_out = (uInt)out_size;
|
||||
z.total_out = 0;
|
||||
z.zalloc = NULL;
|
||||
z.zfree = NULL;
|
||||
|
||||
/* initialize the decompression structure, storm.dll uses zlib version 1.1.3. */
|
||||
if ((result = inflateInit(&z)) != Z_OK) {
|
||||
|
||||
/* something on zlib initialization failed. */
|
||||
return result;
|
||||
}
|
||||
|
||||
/* call zlib to decompress the data. */
|
||||
if ((result = inflate(&z, Z_FINISH)) != Z_STREAM_END) {
|
||||
|
||||
/* something on zlib decompression failed. */
|
||||
return result;
|
||||
}
|
||||
|
||||
/* save transferred bytes. */
|
||||
tb = z.total_out;
|
||||
|
||||
/* cleanup zlib. */
|
||||
if ((result = inflateEnd(&z)) != Z_OK) {
|
||||
|
||||
/* something on zlib finalization failed. */
|
||||
return result;
|
||||
}
|
||||
|
||||
/* return transferred bytes. */
|
||||
return tb;
|
||||
}
|
||||
|
||||
/* this function decompress a stream using pkzip algorithm. */
|
||||
int32_t libmpq__decompress_pkzip(uint8_t *in_buf, uint32_t in_size, uint8_t *out_buf, uint32_t out_size) {
|
||||
|
||||
/* some common variables. */
|
||||
int32_t tb = 0;
|
||||
uint8_t *work_buf;
|
||||
pkzip_data_s info;
|
||||
|
||||
/* allocate memory for pkzip data structure. */
|
||||
if ((work_buf = malloc(sizeof(pkzip_cmp_s))) == NULL) {
|
||||
|
||||
/* memory allocation problem. */
|
||||
return LIBMPQ_ERROR_MALLOC;
|
||||
}
|
||||
|
||||
/* cleanup. */
|
||||
memset(work_buf, 0, sizeof(pkzip_cmp_s));
|
||||
|
||||
/* fill data information structure. */
|
||||
info.in_buf = in_buf;
|
||||
info.in_pos = 0;
|
||||
info.in_bytes = in_size;
|
||||
info.out_buf = out_buf;
|
||||
info.out_pos = 0;
|
||||
info.max_out = out_size;
|
||||
|
||||
/* do the decompression. */
|
||||
if ((tb = libmpq__do_decompress_pkzip(work_buf, &info)) < 0) {
|
||||
|
||||
/* free working buffer. */
|
||||
free(work_buf);
|
||||
|
||||
/* something failed on pkzip decompression. */
|
||||
return tb;
|
||||
}
|
||||
|
||||
/* save transferred bytes. */
|
||||
tb = info.out_pos;
|
||||
|
||||
/* free working buffer. */
|
||||
free(work_buf);
|
||||
|
||||
/* return transferred bytes. */
|
||||
return tb;
|
||||
}
|
||||
|
||||
/* this function decompress a stream using bzip2 library. */
|
||||
int32_t libmpq__decompress_bzip2(uint8_t *in_buf, uint32_t in_size, uint8_t *out_buf, uint32_t out_size) {
|
||||
|
||||
/* some common variables. */
|
||||
int32_t result = 0;
|
||||
int32_t tb = 0;
|
||||
bz_stream strm;
|
||||
|
||||
/* initialize the bzlib decompression. */
|
||||
strm.bzalloc = NULL;
|
||||
strm.bzfree = NULL;
|
||||
|
||||
/* initialize the structure. */
|
||||
if ((result = BZ2_bzDecompressInit(&strm, 0, 0)) != BZ_OK) {
|
||||
|
||||
/* something on bzlib initialization failed. */
|
||||
return result;
|
||||
}
|
||||
|
||||
/* fill the stream structure for bzlib. */
|
||||
strm.next_in = (char *)in_buf;
|
||||
strm.avail_in = in_size;
|
||||
strm.next_out = (char *)out_buf;
|
||||
strm.avail_out = out_size;
|
||||
|
||||
/* do the decompression. */
|
||||
while (BZ2_bzDecompress(&strm) != BZ_STREAM_END);
|
||||
|
||||
/* save transferred bytes. */
|
||||
tb = strm.total_out_lo32;
|
||||
|
||||
/* cleanup of bzip stream. */
|
||||
BZ2_bzDecompressEnd(&strm);
|
||||
|
||||
/* return transferred bytes. */
|
||||
return tb;
|
||||
}
|
||||
|
||||
/* this function decompress a stream using wave algorithm. (1 channel) */
|
||||
int32_t libmpq__decompress_wave_mono(uint8_t *in_buf, uint32_t in_size, uint8_t *out_buf, uint32_t out_size) {
|
||||
|
||||
/* some common variables. */
|
||||
int32_t tb = 0;
|
||||
|
||||
/* save the number of copied bytes. */
|
||||
if ((tb = libmpq__do_decompress_wave(out_buf, out_size, in_buf, in_size, 1)) < 0) {
|
||||
|
||||
/* something on wave decompression failed. */
|
||||
return tb;
|
||||
}
|
||||
|
||||
/* return transferred bytes. */
|
||||
return tb;
|
||||
}
|
||||
|
||||
/* this function decompress a stream using wave algorithm. (2 channels) */
|
||||
int32_t libmpq__decompress_wave_stereo(uint8_t *in_buf, uint32_t in_size, uint8_t *out_buf, uint32_t out_size) {
|
||||
|
||||
/* some common variables. */
|
||||
int32_t tb = 0;
|
||||
|
||||
/* save the number of copied bytes. */
|
||||
if ((tb = libmpq__do_decompress_wave(out_buf, out_size, in_buf, in_size, 2)) < 0) {
|
||||
|
||||
/* something on wave decompression failed. */
|
||||
return tb;
|
||||
}
|
||||
|
||||
/* return transferred bytes. */
|
||||
return tb;
|
||||
}
|
||||
|
||||
/* this function decompress a stream using a combination of the other compression algorithm. */
|
||||
int32_t libmpq__decompress_multi(uint8_t *in_buf, uint32_t in_size, uint8_t *out_buf, uint32_t out_size) {
|
||||
|
||||
/* some common variables. */
|
||||
int32_t tb = 0;
|
||||
uint32_t count = 0;
|
||||
uint32_t entries = (sizeof(dcmp_table) / sizeof(decompress_table_s));
|
||||
uint8_t *temp_buf = NULL;
|
||||
uint8_t *work_buf = 0;
|
||||
uint8_t decompress_flag, decompress_unsupp;
|
||||
uint32_t i;
|
||||
|
||||
/* get applied compression types. */
|
||||
decompress_flag = decompress_unsupp = *in_buf++;
|
||||
|
||||
/* decrement data size. */
|
||||
in_size--;
|
||||
|
||||
/* search decompression table type and get all types of compression. */
|
||||
for (i = 0; i < entries; i++) {
|
||||
|
||||
/* check if have to apply this decompression. */
|
||||
if (decompress_flag & dcmp_table[i].mask) {
|
||||
|
||||
/* increase counter for used compression algorithms. */
|
||||
count++;
|
||||
/* this algorithm is supported, remove from unsupp mask */
|
||||
decompress_unsupp &= ~dcmp_table[i].mask;
|
||||
}
|
||||
}
|
||||
|
||||
/* check if there is some method unhandled. (e.g. compressed by future versions) */
|
||||
if (decompress_unsupp) {
|
||||
|
||||
/* compression type is unknown and we need to implement it. :) */
|
||||
return LIBMPQ_ERROR_UNPACK;
|
||||
}
|
||||
|
||||
/* if multiple decompressions should be made, we need temporary buffer for the data. */
|
||||
if (count > 1) {
|
||||
|
||||
/* allocate memory for temporary buffer. */
|
||||
if ((temp_buf = malloc(out_size)) == NULL) {
|
||||
|
||||
/* memory allocation problem. */
|
||||
return LIBMPQ_ERROR_MALLOC;
|
||||
}
|
||||
|
||||
/* cleanup. */
|
||||
memset(temp_buf, 0, out_size);
|
||||
}
|
||||
|
||||
/* apply all decompressions. */
|
||||
for (i = 0, count = 0; i < entries; i++) {
|
||||
|
||||
/* check if not used this kind of compression. */
|
||||
if (decompress_flag & dcmp_table[i].mask) {
|
||||
|
||||
/* if multiple decompressions should be made, we need temporary buffer for the data. */
|
||||
if (count == 0) {
|
||||
|
||||
/* use output buffer as working buffer. */
|
||||
work_buf = out_buf;
|
||||
} else {
|
||||
|
||||
/* use temporary buffer as working buffer. */
|
||||
work_buf = temp_buf;
|
||||
}
|
||||
|
||||
/* decompress buffer using corresponding function. */
|
||||
if ((tb = dcmp_table[i].decompress(in_buf, in_size, work_buf, out_size)) < 0) {
|
||||
|
||||
/* free temporary buffer. */
|
||||
free(temp_buf);
|
||||
|
||||
/* something on decompression failed. */
|
||||
return tb;
|
||||
}
|
||||
|
||||
/* move output size to source size for next compression. */
|
||||
in_size = out_size;
|
||||
in_buf = work_buf;
|
||||
|
||||
/* increase counter. */
|
||||
count++;
|
||||
}
|
||||
}
|
||||
|
||||
/* if output buffer is not the same like target buffer, we have to copy data (this will happen on multiple decompressions). */
|
||||
if (work_buf != out_buf) {
|
||||
|
||||
/* copy buffer. */
|
||||
memcpy(out_buf, in_buf, out_size);
|
||||
}
|
||||
|
||||
/* free temporary buffer. */
|
||||
free(temp_buf);
|
||||
|
||||
/* return transferred bytes. */
|
||||
return tb;
|
||||
}
|
||||
Vendored
+106
@@ -0,0 +1,106 @@
|
||||
/*
|
||||
* extract.h -- header for the extraction functions used by mpq-tools.
|
||||
*
|
||||
* Copyright (c) 2003-2008 Maik Broemme <[email protected]>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef _EXTRACT_H
|
||||
#define _EXTRACT_H
|
||||
|
||||
/* define compression types for multilpe compressions. */
|
||||
#define LIBMPQ_COMPRESSION_HUFFMAN 0x01 /* huffman compression. (used on wave files only and introduced in starcraft) */
|
||||
#define LIBMPQ_COMPRESSION_ZLIB 0x02 /* zlib compression. (introduced in warcraft 3) */
|
||||
#define LIBMPQ_COMPRESSION_PKZIP 0x08 /* pkware dcl compression. (first used compression algorithm) */
|
||||
#define LIBMPQ_COMPRESSION_BZIP2 0x10 /* bzip compression. (introduced in warcraft 3 - the frozen throne) */
|
||||
#define LIBMPQ_COMPRESSION_WAVE_MONO 0x40 /* adpcm 4:1 compression. (introduced in starcraft) */
|
||||
#define LIBMPQ_COMPRESSION_WAVE_STEREO 0x80 /* adpcm 4:1 compression. (introduced in starcraft) */
|
||||
|
||||
/*
|
||||
* table for decompression functions, return value for all functions
|
||||
* is the transferred data size or one of the following error constants:
|
||||
*
|
||||
* LIBMPQ_ERROR_MALLOC
|
||||
* LIBMPQ_ERROR_DECOMPRESS
|
||||
*/
|
||||
typedef int32_t (*DECOMPRESS)(uint8_t *, uint32_t, uint8_t *, uint32_t);
|
||||
typedef struct {
|
||||
uint32_t mask; /* decompression bit. */
|
||||
DECOMPRESS decompress; /* decompression function. */
|
||||
} decompress_table_s;
|
||||
|
||||
/*
|
||||
* huffman decompression routine, the in_size parameter is not used,
|
||||
* but needs to be specified due to compatibility reasons.
|
||||
*
|
||||
* 1500F5F0
|
||||
*/
|
||||
extern int32_t libmpq__decompress_huffman(
|
||||
uint8_t *in_buf,
|
||||
uint32_t in_size,
|
||||
uint8_t *out_buf,
|
||||
uint32_t out_size
|
||||
);
|
||||
|
||||
/* decompression using zlib. */
|
||||
extern int32_t libmpq__decompress_zlib(
|
||||
uint8_t *in_buf,
|
||||
uint32_t in_size,
|
||||
uint8_t *out_buf,
|
||||
uint32_t out_size
|
||||
);
|
||||
|
||||
/* decompression using pkzip. */
|
||||
extern int32_t libmpq__decompress_pkzip(
|
||||
uint8_t *in_buf,
|
||||
uint32_t in_size,
|
||||
uint8_t *out_buf,
|
||||
uint32_t out_size
|
||||
);
|
||||
|
||||
/* decompression using bzip2. */
|
||||
extern int32_t libmpq__decompress_bzip2(
|
||||
uint8_t *in_buf,
|
||||
uint32_t in_size,
|
||||
uint8_t *out_buf,
|
||||
uint32_t out_size
|
||||
);
|
||||
|
||||
/* decompression using wave. (1 channel) */
|
||||
extern int32_t libmpq__decompress_wave_mono(
|
||||
uint8_t *in_buf,
|
||||
uint32_t in_size,
|
||||
uint8_t *out_buf,
|
||||
uint32_t out_size
|
||||
);
|
||||
|
||||
/* decompression using wave. (2 channels) */
|
||||
extern int32_t libmpq__decompress_wave_stereo(
|
||||
uint8_t *in_buf,
|
||||
uint32_t in_size,
|
||||
uint8_t *out_buf,
|
||||
uint32_t out_size
|
||||
);
|
||||
|
||||
/* decompression using multiple of the above algorithm. */
|
||||
extern int32_t libmpq__decompress_multi(
|
||||
uint8_t *in_buf,
|
||||
uint32_t in_size,
|
||||
uint8_t *out_buf,
|
||||
uint32_t out_size
|
||||
);
|
||||
|
||||
#endif /* _EXTRACT_H */
|
||||
Vendored
+1101
File diff suppressed because it is too large
Load Diff
Vendored
+151
@@ -0,0 +1,151 @@
|
||||
/*
|
||||
* huffman.h -- structures used for huffman compression.
|
||||
*
|
||||
* Copyright (c) 2003-2008 Maik Broemme <[email protected]>
|
||||
*
|
||||
* This source was adepted from the C++ version of huffman.h included
|
||||
* in stormlib. The C++ version belongs to the following authors:
|
||||
*
|
||||
* Ladislav Zezula <[email protected]>
|
||||
* ShadowFlare <[email protected]>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef _HUFFMAN_H
|
||||
#define _HUFFMAN_H
|
||||
|
||||
/* define huffman compression and decompression values. */
|
||||
#define LIBMPQ_HUFF_DECOMPRESS 0 /* we want to decompress using huffman trees. */
|
||||
|
||||
/* define pointer conversions. */
|
||||
#define PTR_NOT(ptr) (struct huffman_tree_item_s *)(~(unsigned long)(ptr))
|
||||
#define PTR_PTR(ptr) ((struct huffman_tree_item_s *)(ptr))
|
||||
#define PTR_INT(ptr) (long)(ptr)
|
||||
|
||||
/* define item handling. */
|
||||
#define INSERT_ITEM 1 /* insert item into huffman tree. */
|
||||
#define SWITCH_ITEMS 2 /* switch items isnide huffman tree. */
|
||||
|
||||
/* input stream for huffman decompression. */
|
||||
struct huffman_input_stream_s {
|
||||
uint8_t *in_buf; /* 00 - input data. */
|
||||
uint32_t bit_buf; /* 04 - input bit buffer. */
|
||||
uint32_t bits; /* 08 - number of bits remaining in byte. */
|
||||
};
|
||||
|
||||
/* huffman tree item. */
|
||||
struct huffman_tree_item_s {
|
||||
struct huffman_tree_item_s *next; /* 00 - pointer to next huffman tree item. */
|
||||
struct huffman_tree_item_s *prev; /* 04 - pointer to prev huffman tree item (< 0 if none). */
|
||||
uint32_t dcmp_byte; /* 08 - index of this item in item pointer array, decompressed byte value. */
|
||||
uint32_t byte_value; /* 0C - some byte value. */
|
||||
struct huffman_tree_item_s *parent; /* 10 - pointer to parent huffman tree item (NULL if none). */
|
||||
struct huffman_tree_item_s *child; /* 14 - pointer to child huffman tree item. */
|
||||
};
|
||||
|
||||
/* structure used for quick decompression. */
|
||||
struct huffman_decompress_s {
|
||||
uint32_t offs00; /* 00 - 1 if resolved. */
|
||||
uint32_t bits; /* 04 - bit count. */
|
||||
union {
|
||||
uint32_t dcmp_byte; /* 08 - byte value for decompress (if bitCount <= 7). */
|
||||
struct huffman_tree_item_s *p_item; /* 08 - huffman tree item (if number of bits is greater than 7). */
|
||||
};
|
||||
};
|
||||
|
||||
/* structure for huffman tree. */
|
||||
struct huffman_tree_s {
|
||||
uint32_t cmp0; /* 0000 - 1 if compression type 0. */
|
||||
uint32_t offs0004; /* 0004 - some flag. */
|
||||
struct huffman_tree_item_s items0008[0x203]; /* 0008 - huffman tree items. */
|
||||
struct huffman_tree_item_s *item3050; /* 3050 - always NULL? */
|
||||
struct huffman_tree_item_s *item3054; /* 3054 - pointer to huffman tree item. */
|
||||
struct huffman_tree_item_s *item3058; /* 3058 - pointer to huffman tree item (< 0 if invalid). */
|
||||
struct huffman_tree_item_s *item305C; /* 305C - usually NULL. */
|
||||
struct huffman_tree_item_s *first; /* 3060 - pointer to top (first) huffman tree item. */
|
||||
struct huffman_tree_item_s *last; /* 3064 - pointer to bottom (last) huffman tree item (< 0 if invalid). */
|
||||
uint32_t items; /* 3068 - number of used huffman tree items. */
|
||||
struct huffman_tree_item_s *items306C[0x102]; /* 306C - huffman tree item pointer array. */
|
||||
struct huffman_decompress_s qd3474[0x80]; /* 3474 - array for quick decompression. */
|
||||
uint8_t table_1502A630[]; /* some table to make struct size flexible. */
|
||||
};
|
||||
|
||||
/* insert a new item into huffman tree. */
|
||||
void libmpq__huffman_insert_item(
|
||||
struct huffman_tree_item_s **p_item,
|
||||
struct huffman_tree_item_s *item,
|
||||
uint32_t where,
|
||||
struct huffman_tree_item_s *item2
|
||||
);
|
||||
|
||||
/* remove item from huffman tree. */
|
||||
void libmpq__huffman_remove_item(
|
||||
struct huffman_tree_item_s *hi
|
||||
);
|
||||
|
||||
/* get previous item from huffman tree. */
|
||||
struct huffman_tree_item_s *libmpq__huffman_previous_item(
|
||||
struct huffman_tree_item_s *hi,
|
||||
long value
|
||||
);
|
||||
|
||||
/* get one bit from stream. */
|
||||
uint32_t libmpq__huffman_get_1bit(
|
||||
struct huffman_input_stream_s *is
|
||||
);
|
||||
|
||||
/* get seven bit from stream. */
|
||||
uint32_t libmpq__huffman_get_7bit(
|
||||
struct huffman_input_stream_s *is
|
||||
);
|
||||
|
||||
/* get eight bit from stream. */
|
||||
uint32_t libmpq__huffman_get_8bit(
|
||||
struct huffman_input_stream_s *is
|
||||
);
|
||||
|
||||
/* call 1500E740. */
|
||||
struct huffman_tree_item_s *libmpq__huffman_call_1500E740(
|
||||
struct huffman_tree_s *ht
|
||||
);
|
||||
|
||||
/* call 1500E820- */
|
||||
void libmpq__huffman_call_1500E820(
|
||||
struct huffman_tree_s *ht,
|
||||
struct huffman_tree_item_s *p_item
|
||||
);
|
||||
|
||||
/* initialize the huffman tree. */
|
||||
void libmpq__huffman_tree_init(
|
||||
struct huffman_tree_s *ht,
|
||||
uint32_t cmp
|
||||
);
|
||||
|
||||
/* build the huffman tree. */
|
||||
void libmpq__huffman_tree_build(
|
||||
struct huffman_tree_s *ht,
|
||||
uint32_t cmp_type
|
||||
);
|
||||
|
||||
/* decompress the stream using huffman compression. */
|
||||
int32_t libmpq__do_decompress_huffman(
|
||||
struct huffman_tree_s *ht,
|
||||
struct huffman_input_stream_s *is,
|
||||
uint8_t *out_buf,
|
||||
uint32_t out_length
|
||||
);
|
||||
|
||||
#endif /* _HUFFMAN_H */
|
||||
Vendored
+144
@@ -0,0 +1,144 @@
|
||||
/*
|
||||
* mpq-internal.h -- some default types and defines, but only required for
|
||||
* compilation of the library.
|
||||
*
|
||||
* Copyright (c) 2003-2008 Maik Broemme <[email protected]>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef _MPQ_INTERNAL_H
|
||||
#define _MPQ_INTERNAL_H
|
||||
|
||||
/* generic includes. */
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
/* define return value if nothing failed. */
|
||||
#define LIBMPQ_SUCCESS 0 /* return value for all functions which success. */
|
||||
|
||||
/* define generic mpq archive information. */
|
||||
#define LIBMPQ_HEADER 0x1A51504D /* mpq archive header ('MPQ\x1A') */
|
||||
|
||||
/* define the known archive versions. */
|
||||
#define LIBMPQ_ARCHIVE_VERSION_ONE 0 /* version one used until world of warcraft. */
|
||||
#define LIBMPQ_ARCHIVE_VERSION_TWO 1 /* version two used from world of warcraft - the burning crusade. */
|
||||
|
||||
/* define values used by blizzard as flags. */
|
||||
#define LIBMPQ_FLAG_EXISTS 0x80000000 /* set if file exists, reset when the file was deleted. */
|
||||
#define LIBMPQ_FLAG_ENCRYPTED 0x00010000 /* indicates whether file is encrypted. */
|
||||
#define LIBMPQ_FLAG_COMPRESSED 0x0000FF00 /* file is compressed. */
|
||||
#define LIBMPQ_FLAG_COMPRESS_PKZIP 0x00000100 /* compression made by pkware data compression library. */
|
||||
#define LIBMPQ_FLAG_COMPRESS_MULTI 0x00000200 /* multiple compressions. */
|
||||
#define LIBMPQ_FLAG_COMPRESS_NONE 0x00000300 /* no compression (no blizzard flag used by myself). */
|
||||
#define LIBMPQ_FLAG_SINGLE 0x01000000 /* file is stored in one single sector, first seen in world of warcraft. */
|
||||
#define LIBMPQ_FLAG_EXTRA 0x04000000 /* compressed block offset table has one extra entry. */
|
||||
|
||||
/* define generic hash values. */
|
||||
#define LIBMPQ_HASH_FREE 0xFFFFFFFF /* hash table entry is empty and has always been empty. */
|
||||
|
||||
/* define special files. */
|
||||
#define LIBMPQ_LISTFILE_NAME "(listfile)" /* internal listfile. */
|
||||
#define LIBMPQ_SIGNATURE_NAME "(signature)" /* internal signature file. */
|
||||
#define LIBMPQ_ATTRIBUTES_NAME "(attributes)" /* internal attributes file. */
|
||||
|
||||
/* define true and false, because not all systems have them. */
|
||||
#ifndef FALSE
|
||||
#define FALSE 0
|
||||
#endif
|
||||
#ifndef TRUE
|
||||
#define TRUE 1
|
||||
#endif
|
||||
|
||||
/* mpq archive header. */
|
||||
typedef struct {
|
||||
uint32_t mpq_magic; /* the 0x1A51504D ('MPQ\x1A') signature. */
|
||||
uint32_t header_size; /* mpq archive header size. */
|
||||
uint32_t archive_size; /* size of mpq archive. */
|
||||
uint16_t version; /* 0000 for starcraft and broodwar. */
|
||||
uint16_t block_size; /* size of file block is (512 * 2 ^ block size). */
|
||||
uint32_t hash_table_offset; /* file position of mpq_hash. */
|
||||
uint32_t block_table_offset; /* file position of mpq_block, each entry has 16 bytes. */
|
||||
uint32_t hash_table_count; /* number of entries in hash table. */
|
||||
uint32_t block_table_count; /* number of entries in the block table. */
|
||||
} __attribute__ ((packed)) mpq_header_s;
|
||||
|
||||
/* mpq extended archive header, used since world of warcraft - the burning crusade. */
|
||||
typedef struct {
|
||||
uint64_t extended_offset; /* offset to the beginning of the extended block table, relative to the beginning of the archive. */
|
||||
uint16_t hash_table_offset_high; /* upper 16 bits of the hash table offset for large archives. */
|
||||
uint16_t block_table_offset_high;/* upper 16 bits of the block table offset for large archives.*/
|
||||
} __attribute__ ((packed)) mpq_header_ex_s;
|
||||
|
||||
/* hash entry, all files in the archive are searched by their hashes. */
|
||||
typedef struct {
|
||||
uint32_t hash_a; /* the first two uint32_ts are the encrypted file. */
|
||||
uint32_t hash_b; /* the first two uint32_ts are the encrypted file. */
|
||||
uint16_t locale; /* locale information. */
|
||||
uint16_t platform; /* platform information and zero is default. */
|
||||
uint32_t block_table_index; /* index to file description block. */
|
||||
} __attribute__ ((packed)) mpq_hash_s;
|
||||
|
||||
/* file description block contains informations about the file. */
|
||||
typedef struct {
|
||||
uint32_t offset; /* block file starting position in the archive. */
|
||||
uint32_t packed_size; /* packed file size. */
|
||||
uint32_t unpacked_size; /* unpacked file size. */
|
||||
uint32_t flags; /* flags. */
|
||||
} __attribute__ ((packed)) mpq_block_s;
|
||||
|
||||
/* extended file description block contains information about the offset beyond 2^32 (4GB). */
|
||||
typedef struct {
|
||||
uint16_t offset_high; /* upper 16 bit of the file offset in archive. */
|
||||
} __attribute__ ((packed)) mpq_block_ex_s;
|
||||
|
||||
/* file structure used since diablo 1.00 (0x38 bytes). */
|
||||
typedef struct {
|
||||
uint32_t seed; /* seed used for file decrypt. */
|
||||
uint32_t *packed_offset; /* position of each file block (only for packed files). */
|
||||
uint32_t open_count; /* number of times it has been opened - used for freeing */
|
||||
} __attribute__ ((packed)) mpq_file_s;
|
||||
|
||||
/* map structure for valid blocks and hashes (first seen in warcraft 3 archives). */
|
||||
typedef struct {
|
||||
uint32_t block_table_indices; /* real mapping for file number to block entry. */
|
||||
uint32_t block_table_diff; /* block table difference between valid blocks and invalid blocks before. */
|
||||
} __attribute__ ((packed)) mpq_map_s;
|
||||
|
||||
/* archive structure used since diablo 1.00 by blizzard. */
|
||||
struct mpq_archive {
|
||||
|
||||
/* generic file information. */
|
||||
FILE *fp; /* file handle. */
|
||||
|
||||
/* generic size information. */
|
||||
uint32_t block_size; /* size of the mpq block. */
|
||||
off_t archive_offset; /* absolute start position of archive. */
|
||||
|
||||
/* archive related buffers and tables. */
|
||||
mpq_header_s mpq_header; /* mpq file header. */
|
||||
mpq_header_ex_s mpq_header_ex; /* mpq extended file header. */
|
||||
mpq_hash_s *mpq_hash; /* hash table. */
|
||||
mpq_block_s *mpq_block; /* block table. */
|
||||
mpq_block_ex_s *mpq_block_ex; /* extended block table. */
|
||||
mpq_file_s **mpq_file; /* pointer to the file pointers which are opened. */
|
||||
|
||||
/* non archive structure related members. */
|
||||
mpq_map_s *mpq_map; /* map table between valid blocks and hashes. */
|
||||
uint32_t files; /* number of files in archive, which could be extracted. */
|
||||
};
|
||||
|
||||
#endif /* _MPQ_INTERNAL_H */
|
||||
Vendored
+1027
File diff suppressed because it is too large
Load Diff
Vendored
+99
@@ -0,0 +1,99 @@
|
||||
/*
|
||||
* mpq.h -- some default types and defines.
|
||||
*
|
||||
* Copyright (c) 2003-2008 Maik Broemme <[email protected]>
|
||||
*
|
||||
* Some parts (the encryption and decryption stuff) were adapted from
|
||||
* the C++ version of StormLib.h and StormPort.h included in stormlib.
|
||||
* The C++ version belongs to the following authors:
|
||||
*
|
||||
* Ladislav Zezula <[email protected]>
|
||||
* Marko Friedemann <[email protected]>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef _MPQ_H
|
||||
#define _MPQ_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/* generic includes. */
|
||||
#include <stdint.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#if defined(__GNUC__) && (__GNUC__ >= 4)
|
||||
# define LIBMPQ_API __attribute__((visibility("default")))
|
||||
#else
|
||||
# define LIBMPQ_API
|
||||
#endif
|
||||
|
||||
/* define errors. */
|
||||
#define LIBMPQ_ERROR_OPEN -1 /* open error on file. */
|
||||
#define LIBMPQ_ERROR_CLOSE -2 /* close error on file. */
|
||||
#define LIBMPQ_ERROR_SEEK -3 /* lseek error on file. */
|
||||
#define LIBMPQ_ERROR_READ -4 /* read error on file. */
|
||||
#define LIBMPQ_ERROR_WRITE -5 /* write error on file. */
|
||||
#define LIBMPQ_ERROR_MALLOC -6 /* memory allocation error. */
|
||||
#define LIBMPQ_ERROR_FORMAT -7 /* format errror. */
|
||||
#define LIBMPQ_ERROR_NOT_INITIALIZED -8 /* libmpq__init() wasn't called. */
|
||||
#define LIBMPQ_ERROR_SIZE -9 /* buffer size is to small. */
|
||||
#define LIBMPQ_ERROR_EXIST -10 /* file or block does not exist in archive. */
|
||||
#define LIBMPQ_ERROR_DECRYPT -11 /* we don't know the decryption seed. */
|
||||
#define LIBMPQ_ERROR_UNPACK -12 /* error on unpacking file. */
|
||||
|
||||
/* internal data structure. */
|
||||
typedef struct mpq_archive mpq_archive_s;
|
||||
|
||||
/* file offset data type for API*/
|
||||
typedef int64_t libmpq__off_t;
|
||||
|
||||
/* generic information about library. */
|
||||
extern LIBMPQ_API const char *libmpq__version(void);
|
||||
|
||||
/* generic mpq archive information. */
|
||||
extern LIBMPQ_API int32_t libmpq__archive_open(mpq_archive_s **mpq_archive, const char *mpq_filename, libmpq__off_t archive_offset);
|
||||
extern LIBMPQ_API int32_t libmpq__archive_close(mpq_archive_s *mpq_archive);
|
||||
extern LIBMPQ_API int32_t libmpq__archive_packed_size(mpq_archive_s *mpq_archive, libmpq__off_t *packed_size);
|
||||
extern LIBMPQ_API int32_t libmpq__archive_unpacked_size(mpq_archive_s *mpq_archive, libmpq__off_t *unpacked_size);
|
||||
extern LIBMPQ_API int32_t libmpq__archive_offset(mpq_archive_s *mpq_archive, libmpq__off_t *offset);
|
||||
extern LIBMPQ_API int32_t libmpq__archive_version(mpq_archive_s *mpq_archive, uint32_t *version);
|
||||
extern LIBMPQ_API int32_t libmpq__archive_files(mpq_archive_s *mpq_archive, uint32_t *files);
|
||||
|
||||
/* generic file processing functions. */
|
||||
extern LIBMPQ_API int32_t libmpq__file_packed_size(mpq_archive_s *mpq_archive, uint32_t file_number, libmpq__off_t *packed_size);
|
||||
extern LIBMPQ_API int32_t libmpq__file_unpacked_size(mpq_archive_s *mpq_archive, uint32_t file_number, libmpq__off_t *unpacked_size);
|
||||
extern LIBMPQ_API int32_t libmpq__file_offset(mpq_archive_s *mpq_archive, uint32_t file_number, libmpq__off_t *offset);
|
||||
extern LIBMPQ_API int32_t libmpq__file_blocks(mpq_archive_s *mpq_archive, uint32_t file_number, uint32_t *blocks);
|
||||
extern LIBMPQ_API int32_t libmpq__file_encrypted(mpq_archive_s *mpq_archive, uint32_t file_number, uint32_t *encrypted);
|
||||
extern LIBMPQ_API int32_t libmpq__file_compressed(mpq_archive_s *mpq_archive, uint32_t file_number, uint32_t *compressed);
|
||||
extern LIBMPQ_API int32_t libmpq__file_imploded(mpq_archive_s *mpq_archive, uint32_t file_number, uint32_t *imploded);
|
||||
extern LIBMPQ_API int32_t libmpq__file_number(mpq_archive_s *mpq_archive, const char *filename, uint32_t *number);
|
||||
extern LIBMPQ_API int32_t libmpq__file_read(mpq_archive_s *mpq_archive, uint32_t file_number, uint8_t *out_buf, libmpq__off_t out_size, libmpq__off_t *transferred);
|
||||
|
||||
/* generic block processing functions. */
|
||||
extern LIBMPQ_API int32_t libmpq__block_open_offset(mpq_archive_s *mpq_archive, uint32_t file_number);
|
||||
extern LIBMPQ_API int32_t libmpq__block_close_offset(mpq_archive_s *mpq_archive, uint32_t file_number);
|
||||
extern LIBMPQ_API int32_t libmpq__block_unpacked_size(mpq_archive_s *mpq_archive, uint32_t file_number, uint32_t block_number, libmpq__off_t *unpacked_size);
|
||||
extern LIBMPQ_API int32_t libmpq__block_read(mpq_archive_s *mpq_archive, uint32_t file_number, uint32_t block_number, uint8_t *out_buf, libmpq__off_t out_size, libmpq__off_t *transferred);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _MPQ_H */
|
||||
Vendored
+250
@@ -0,0 +1,250 @@
|
||||
/*
|
||||
* wave.c -- this file contains decompression methods used by mpq-tools
|
||||
* to decompress wave files.
|
||||
*
|
||||
* Copyright (c) 2003-2007 Maik Broemme <[email protected]>
|
||||
*
|
||||
* This source was adepted from the C++ version of wave.cpp included
|
||||
* in stormlib. The C++ version belongs to the following authors:
|
||||
*
|
||||
* Ladislav Zezula <[email protected]>
|
||||
* Tom Amigo <[email protected]>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/* generic includes. */
|
||||
#include <stdint.h>
|
||||
|
||||
/* libmpq generic includes. */
|
||||
#include "wave.h"
|
||||
|
||||
/* table necessary dor decompression. */
|
||||
static const uint32_t wave_table_1503f120[] = {
|
||||
0xFFFFFFFF, 0x00000000, 0xFFFFFFFF, 0x00000004, 0xFFFFFFFF, 0x00000002, 0xFFFFFFFF, 0x00000006,
|
||||
0xFFFFFFFF, 0x00000001, 0xFFFFFFFF, 0x00000005, 0xFFFFFFFF, 0x00000003, 0xFFFFFFFF, 0x00000007,
|
||||
0xFFFFFFFF, 0x00000001, 0xFFFFFFFF, 0x00000005, 0xFFFFFFFF, 0x00000003, 0xFFFFFFFF, 0x00000007,
|
||||
0xFFFFFFFF, 0x00000002, 0xFFFFFFFF, 0x00000004, 0xFFFFFFFF, 0x00000006, 0xFFFFFFFF, 0x00000008
|
||||
};
|
||||
|
||||
/* table necessary dor decompression. */
|
||||
static const uint32_t wave_table_1503f1a0[] = {
|
||||
0x00000007, 0x00000008, 0x00000009, 0x0000000A, 0x0000000B, 0x0000000C, 0x0000000D, 0x0000000E,
|
||||
0x00000010, 0x00000011, 0x00000013, 0x00000015, 0x00000017, 0x00000019, 0x0000001C, 0x0000001F,
|
||||
0x00000022, 0x00000025, 0x00000029, 0x0000002D, 0x00000032, 0x00000037, 0x0000003C, 0x00000042,
|
||||
0x00000049, 0x00000050, 0x00000058, 0x00000061, 0x0000006B, 0x00000076, 0x00000082, 0x0000008F,
|
||||
0x0000009D, 0x000000AD, 0x000000BE, 0x000000D1, 0x000000E6, 0x000000FD, 0x00000117, 0x00000133,
|
||||
0x00000151, 0x00000173, 0x00000198, 0x000001C1, 0x000001EE, 0x00000220, 0x00000256, 0x00000292,
|
||||
0x000002D4, 0x0000031C, 0x0000036C, 0x000003C3, 0x00000424, 0x0000048E, 0x00000502, 0x00000583,
|
||||
0x00000610, 0x000006AB, 0x00000756, 0x00000812, 0x000008E0, 0x000009C3, 0x00000ABD, 0x00000BD0,
|
||||
0x00000CFF, 0x00000E4C, 0x00000FBA, 0x0000114C, 0x00001307, 0x000014EE, 0x00001706, 0x00001954,
|
||||
0x00001BDC, 0x00001EA5, 0x000021B6, 0x00002515, 0x000028CA, 0x00002CDF, 0x0000315B, 0x0000364B,
|
||||
0x00003BB9, 0x000041B2, 0x00004844, 0x00004F7E, 0x00005771, 0x0000602F, 0x000069CE, 0x00007462,
|
||||
0x00007FFF
|
||||
};
|
||||
|
||||
/* this function decompress a wave file, mono or stereo, 1500F230 offset. */
|
||||
int32_t libmpq__do_decompress_wave(uint8_t *out_buf, int32_t out_length, uint8_t *in_buf, int32_t in_length, int32_t channels) {
|
||||
|
||||
/* some common variables. */
|
||||
byte_and_int16_t out;
|
||||
byte_and_int16_t in;
|
||||
uint32_t index;
|
||||
int32_t nr_array1[2];
|
||||
int32_t nr_array2[2];
|
||||
uint32_t count = 0;
|
||||
|
||||
/* end on input buffer. */
|
||||
uint8_t *in_end = in_buf + in_length;
|
||||
|
||||
/* assign default values. */
|
||||
out.pb = out_buf;
|
||||
in.pb = in_buf;
|
||||
nr_array1[0] = 0x2C;
|
||||
nr_array1[1] = 0x2C;
|
||||
|
||||
/* increase. */
|
||||
in.pw++;
|
||||
|
||||
/* 15007AD7 */
|
||||
for (count = 0; count < channels; count++) {
|
||||
|
||||
/* some common variables. */
|
||||
int32_t temp;
|
||||
|
||||
/* save pointer. */
|
||||
temp = *(int16_t *)in.pw++;
|
||||
nr_array2[count] = temp;
|
||||
|
||||
/* check if should break. */
|
||||
if (out_length < 2) {
|
||||
return out.pb - out_buf;
|
||||
}
|
||||
|
||||
/* return values. */
|
||||
*out.pw++ = (uint16_t)temp;
|
||||
out_length -= 2;
|
||||
}
|
||||
|
||||
/* decrease channels. */
|
||||
index = channels - 1;
|
||||
|
||||
/* loop through input buffer until end reached. */
|
||||
while (in.pb < in_end) {
|
||||
|
||||
/* save the byte. */
|
||||
uint8_t one_byte = *in.pb++;
|
||||
|
||||
/* check how many channels and set index. */
|
||||
if (channels == 2) {
|
||||
index = (index == 0) ? 1 : 0;
|
||||
}
|
||||
|
||||
/* 15007B25 - get one byte from input buffer. */
|
||||
if (one_byte & 0x80) {
|
||||
|
||||
/* 15007B32 */
|
||||
switch (one_byte & 0x7F) {
|
||||
case 0:
|
||||
|
||||
/* 15007B8E */
|
||||
if (nr_array1[index] != 0) {
|
||||
nr_array1[index]--;
|
||||
}
|
||||
|
||||
/* check if should break. */
|
||||
if (out_length < 2) {
|
||||
break;
|
||||
}
|
||||
|
||||
/* return values. */
|
||||
*out.pw++ = (uint16_t)nr_array2[index];
|
||||
out_length -= 2;
|
||||
|
||||
/* continue loop. */
|
||||
continue;
|
||||
case 1:
|
||||
/* 15007B72 and EBX. */
|
||||
nr_array1[index] += 8;
|
||||
|
||||
/* check index. */
|
||||
if (nr_array1[index] > 0x58) {
|
||||
nr_array1[index] = 0x58;
|
||||
}
|
||||
|
||||
/* check how many channels and set index. */
|
||||
if (channels == 2) {
|
||||
index = (index == 0) ? 1 : 0;
|
||||
}
|
||||
|
||||
/* continue loop. */
|
||||
continue;
|
||||
case 2:
|
||||
|
||||
/* nothing todo, so continue. */
|
||||
continue;
|
||||
default:
|
||||
|
||||
/* decrease index. */
|
||||
nr_array1[index] -= 8;
|
||||
|
||||
/* check index. */
|
||||
if (nr_array1[index] < 0) {
|
||||
nr_array1[index] = 0;
|
||||
}
|
||||
|
||||
/* check if two channels left. */
|
||||
if (channels != 2) {
|
||||
continue;
|
||||
}
|
||||
index = (index == 0) ? 1 : 0;
|
||||
|
||||
/* continue loop. */
|
||||
continue;
|
||||
}
|
||||
} else {
|
||||
|
||||
/* EDI */
|
||||
uint32_t temp1 = wave_table_1503f1a0[nr_array1[index]];
|
||||
|
||||
/* ESI */
|
||||
uint32_t temp2 = temp1 >> in_buf[1];
|
||||
|
||||
/* ECX */
|
||||
int32_t temp3 = nr_array2[index];
|
||||
|
||||
/* EBX = one byte. */
|
||||
if (one_byte & 0x01) {
|
||||
temp2 += (temp1 >> 0);
|
||||
}
|
||||
if (one_byte & 0x02) {
|
||||
temp2 += (temp1 >> 1);
|
||||
}
|
||||
if (one_byte & 0x04) {
|
||||
temp2 += (temp1 >> 2);
|
||||
}
|
||||
if (one_byte & 0x08) {
|
||||
temp2 += (temp1 >> 3);
|
||||
}
|
||||
if (one_byte & 0x10) {
|
||||
temp2 += (temp1 >> 4);
|
||||
}
|
||||
if (one_byte & 0x20) {
|
||||
temp2 += (temp1 >> 5);
|
||||
}
|
||||
if (one_byte & 0x40) {
|
||||
temp3 -= temp2;
|
||||
if (temp3 <= (int32_t)0xFFFF8000) {
|
||||
temp3 = (int32_t)0xFFFF8000;
|
||||
}
|
||||
} else {
|
||||
temp3 += temp2;
|
||||
if (temp3 >= 0x7FFF) {
|
||||
temp3 = 0x7FFF;
|
||||
}
|
||||
}
|
||||
|
||||
/* restore index. */
|
||||
nr_array2[index] = temp3;
|
||||
|
||||
/* check if should break. */
|
||||
if (out_length < 2) {
|
||||
break;
|
||||
}
|
||||
|
||||
/* assign values. */
|
||||
temp2 = nr_array1[index];
|
||||
one_byte &= 0x1F;
|
||||
*out.pw++ = (uint16_t)temp3;
|
||||
out_length -= 2;
|
||||
temp2 += wave_table_1503f120[one_byte];
|
||||
nr_array1[index] = temp2;
|
||||
|
||||
/* check index. */
|
||||
if (nr_array1[index] < 0) {
|
||||
nr_array1[index] = 0;
|
||||
} else {
|
||||
|
||||
/* check index. */
|
||||
if (nr_array1[index] > 0x58) {
|
||||
nr_array1[index] = 0x58;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* return copied bytes. */
|
||||
return (out.pb - out_buf);
|
||||
}
|
||||
Vendored
+45
@@ -0,0 +1,45 @@
|
||||
/*
|
||||
* wave.h -- header file for wav unplode functions used by mpq-tools.
|
||||
*
|
||||
* Copyright (c) 2003-2007 Maik Broemme <[email protected]>
|
||||
*
|
||||
* This source was adepted from the C++ version of wave.h included
|
||||
* in stormlib. The C++ version belongs to the following authors:
|
||||
*
|
||||
* Ladislav Zezula <ladik.zezula.net>
|
||||
* Tom Amigo <[email protected]>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef _WAVE_H
|
||||
#define _WAVE_H
|
||||
|
||||
/* buffer. */
|
||||
typedef union {
|
||||
uint16_t *pw;
|
||||
uint8_t *pb;
|
||||
} byte_and_int16_t;
|
||||
|
||||
/* decompress a wave file, mono or stereo, 1500F230 offset. */
|
||||
int32_t libmpq__do_decompress_wave(
|
||||
uint8_t *out_buf,
|
||||
int32_t out_length,
|
||||
uint8_t *in_buf,
|
||||
int32_t in_length,
|
||||
int32_t channels
|
||||
);
|
||||
|
||||
#endif /* _WAVE_H */
|
||||
@@ -637,6 +637,6 @@ add_library(scripts STATIC ${scripts_STAT_SRCS})
|
||||
|
||||
# Generate precompiled header
|
||||
IF(DO_PCH AND CMAKE_COMPILER_IS_GNUCXX)
|
||||
ADD_PRECOMPILED_HEADER(scripts ${CMAKE_SOURCE_DIR}/src/server/game/ScriptMgr/ScriptedPch.h)
|
||||
ADD_PRECOMPILED_HEADER(scripts ${CMAKE_SOURCE_DIR}/src/server/game/Scripts/ScriptPCH.h)
|
||||
ENDIF(DO_PCH AND CMAKE_COMPILER_IS_GNUCXX)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user