2019-02-21 01:49:26 +00:00
|
|
|
#include <memory>
|
2019-02-23 09:15:54 +00:00
|
|
|
#include <functional>
|
2017-09-14 15:11:56 +00:00
|
|
|
|
2019-11-21 11:08:02 +00:00
|
|
|
#include <zlib.h>
|
|
|
|
#include <bzlib.h>
|
|
|
|
#include <lzma.h>
|
|
|
|
#include <lz4.h>
|
|
|
|
#include <lz4frame.h>
|
|
|
|
#include <lz4hc.h>
|
2021-07-28 23:45:09 +00:00
|
|
|
#include <zopfli/util.h>
|
|
|
|
#include <zopfli/deflate.h>
|
2019-11-21 11:08:02 +00:00
|
|
|
|
2020-03-09 08:50:30 +00:00
|
|
|
#include <utils.hpp>
|
2017-02-28 13:56:13 +00:00
|
|
|
|
2020-03-09 08:50:30 +00:00
|
|
|
#include "magiskboot.hpp"
|
|
|
|
#include "compress.hpp"
|
2017-02-27 21:37:47 +00:00
|
|
|
|
2019-02-21 01:49:26 +00:00
|
|
|
using namespace std;
|
|
|
|
|
2019-11-21 11:08:02 +00:00
|
|
|
#define bwrite filter_stream::write
|
2017-11-10 12:25:41 +00:00
|
|
|
|
2019-11-21 11:08:02 +00:00
|
|
|
constexpr size_t CHUNK = 0x40000;
|
|
|
|
constexpr size_t LZ4_UNCOMPRESSED = 0x800000;
|
|
|
|
constexpr size_t LZ4_COMPRESSED = LZ4_COMPRESSBOUND(LZ4_UNCOMPRESSED);
|
2017-11-10 12:25:41 +00:00
|
|
|
|
2021-11-21 12:38:22 +00:00
|
|
|
class out_stream : public filter_stream {
|
2020-12-31 06:11:24 +00:00
|
|
|
using filter_stream::filter_stream;
|
|
|
|
using stream::read;
|
2019-11-21 11:08:02 +00:00
|
|
|
};
|
2019-02-21 01:49:26 +00:00
|
|
|
|
2021-11-21 12:38:22 +00:00
|
|
|
class gz_strm : public out_stream {
|
2019-11-21 11:08:02 +00:00
|
|
|
public:
|
2021-11-21 12:38:22 +00:00
|
|
|
bool write(const void *buf, size_t len) override {
|
|
|
|
return len == 0 || write(buf, len, Z_NO_FLUSH);
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
~gz_strm() override {
|
|
|
|
write(nullptr, 0, Z_FINISH);
|
|
|
|
switch(mode) {
|
2021-11-21 12:38:22 +00:00
|
|
|
case DECODE:
|
|
|
|
inflateEnd(&strm);
|
|
|
|
break;
|
|
|
|
case ENCODE:
|
|
|
|
deflateEnd(&strm);
|
|
|
|
break;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
|
|
|
}
|
2019-11-22 08:01:49 +00:00
|
|
|
|
2019-11-21 11:08:02 +00:00
|
|
|
protected:
|
2020-12-31 06:11:24 +00:00
|
|
|
enum mode_t {
|
|
|
|
DECODE,
|
|
|
|
ENCODE
|
|
|
|
} mode;
|
|
|
|
|
2021-05-11 01:38:30 +00:00
|
|
|
gz_strm(mode_t mode, stream_ptr &&base) :
|
2021-11-21 12:38:22 +00:00
|
|
|
out_stream(std::move(base)), mode(mode), strm{}, outbuf{0} {
|
2020-12-31 06:11:24 +00:00
|
|
|
switch(mode) {
|
2021-11-21 12:38:22 +00:00
|
|
|
case DECODE:
|
|
|
|
inflateInit2(&strm, 15 | 16);
|
|
|
|
break;
|
|
|
|
case ENCODE:
|
|
|
|
deflateInit2(&strm, 9, Z_DEFLATED, 15 | 16, 8, Z_DEFAULT_STRATEGY);
|
|
|
|
break;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-21 01:49:26 +00:00
|
|
|
|
2019-11-21 11:08:02 +00:00
|
|
|
private:
|
2020-12-31 06:11:24 +00:00
|
|
|
z_stream strm;
|
|
|
|
uint8_t outbuf[CHUNK];
|
|
|
|
|
2021-11-21 12:38:22 +00:00
|
|
|
bool write(const void *buf, size_t len, int flush) {
|
2020-12-31 06:11:24 +00:00
|
|
|
strm.next_in = (Bytef *) buf;
|
|
|
|
strm.avail_in = len;
|
|
|
|
do {
|
|
|
|
int code;
|
|
|
|
strm.next_out = outbuf;
|
|
|
|
strm.avail_out = sizeof(outbuf);
|
|
|
|
switch(mode) {
|
|
|
|
case DECODE:
|
|
|
|
code = inflate(&strm, flush);
|
|
|
|
break;
|
|
|
|
case ENCODE:
|
|
|
|
code = deflate(&strm, flush);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (code == Z_STREAM_ERROR) {
|
|
|
|
LOGW("gzip %s failed (%d)\n", mode ? "encode" : "decode", code);
|
2021-11-21 12:38:22 +00:00
|
|
|
return false;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
2021-11-21 12:38:22 +00:00
|
|
|
if (!bwrite(outbuf, sizeof(outbuf) - strm.avail_out))
|
|
|
|
return false;
|
2020-12-31 06:11:24 +00:00
|
|
|
} while (strm.avail_out == 0);
|
2021-11-21 12:38:22 +00:00
|
|
|
return true;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
2019-11-21 11:08:02 +00:00
|
|
|
};
|
2019-02-21 01:49:26 +00:00
|
|
|
|
2019-11-21 11:08:02 +00:00
|
|
|
class gz_decoder : public gz_strm {
|
|
|
|
public:
|
2020-12-31 06:11:24 +00:00
|
|
|
explicit gz_decoder(stream_ptr &&base) : gz_strm(DECODE, std::move(base)) {};
|
2019-11-21 11:08:02 +00:00
|
|
|
};
|
2017-03-04 17:50:36 +00:00
|
|
|
|
2019-11-21 11:08:02 +00:00
|
|
|
class gz_encoder : public gz_strm {
|
|
|
|
public:
|
2020-12-31 06:11:24 +00:00
|
|
|
explicit gz_encoder(stream_ptr &&base) : gz_strm(ENCODE, std::move(base)) {};
|
2019-11-21 11:08:02 +00:00
|
|
|
};
|
2019-02-21 01:49:26 +00:00
|
|
|
|
2021-11-24 00:50:08 +00:00
|
|
|
class zopfli_encoder : public chunk_out_stream {
|
2021-07-28 23:45:09 +00:00
|
|
|
public:
|
2021-11-21 12:38:22 +00:00
|
|
|
explicit zopfli_encoder(stream_ptr &&base) :
|
2021-11-24 00:50:08 +00:00
|
|
|
chunk_out_stream(std::move(base), ZOPFLI_MASTER_BLOCK_SIZE),
|
|
|
|
zo{}, out(nullptr), outsize(0), crc(crc32_z(0L, Z_NULL, 0)),
|
|
|
|
in_total(0), bp(0), final(false) {
|
2021-08-28 21:07:34 +00:00
|
|
|
ZopfliInitOptions(&zo);
|
|
|
|
|
2021-11-24 00:50:08 +00:00
|
|
|
// 5 iterations is reasonable for large files
|
|
|
|
zo.numiterations = 5;
|
2021-11-03 15:51:33 +00:00
|
|
|
|
2021-08-28 21:07:34 +00:00
|
|
|
ZOPFLI_APPEND_DATA(31, &out, &outsize); /* ID1 */
|
|
|
|
ZOPFLI_APPEND_DATA(139, &out, &outsize); /* ID2 */
|
|
|
|
ZOPFLI_APPEND_DATA(8, &out, &outsize); /* CM */
|
|
|
|
ZOPFLI_APPEND_DATA(0, &out, &outsize); /* FLG */
|
|
|
|
/* MTIME */
|
|
|
|
ZOPFLI_APPEND_DATA(0, &out, &outsize);
|
|
|
|
ZOPFLI_APPEND_DATA(0, &out, &outsize);
|
|
|
|
ZOPFLI_APPEND_DATA(0, &out, &outsize);
|
|
|
|
ZOPFLI_APPEND_DATA(0, &out, &outsize);
|
|
|
|
|
|
|
|
ZOPFLI_APPEND_DATA(2, &out, &outsize); /* XFL, 2 indicates best compression. */
|
|
|
|
ZOPFLI_APPEND_DATA(3, &out, &outsize); /* OS follows Unix conventions. */
|
2021-07-28 23:45:09 +00:00
|
|
|
}
|
|
|
|
|
2021-08-28 21:07:34 +00:00
|
|
|
~zopfli_encoder() override {
|
2021-11-24 00:50:08 +00:00
|
|
|
final = true;
|
|
|
|
finalize();
|
2021-08-29 00:01:08 +00:00
|
|
|
|
|
|
|
/* CRC */
|
2021-11-24 00:50:08 +00:00
|
|
|
ZOPFLI_APPEND_DATA(crc % 256, &out, &outsize);
|
|
|
|
ZOPFLI_APPEND_DATA((crc >> 8) % 256, &out, &outsize);
|
|
|
|
ZOPFLI_APPEND_DATA((crc >> 16) % 256, &out, &outsize);
|
|
|
|
ZOPFLI_APPEND_DATA((crc >> 24) % 256, &out, &outsize);
|
2021-08-29 00:01:08 +00:00
|
|
|
|
|
|
|
/* ISIZE */
|
2021-11-24 00:50:08 +00:00
|
|
|
ZOPFLI_APPEND_DATA(in_total % 256, &out, &outsize);
|
|
|
|
ZOPFLI_APPEND_DATA((in_total >> 8) % 256, &out, &outsize);
|
|
|
|
ZOPFLI_APPEND_DATA((in_total >> 16) % 256, &out, &outsize);
|
|
|
|
ZOPFLI_APPEND_DATA((in_total >> 24) % 256, &out, &outsize);
|
2021-08-29 00:01:08 +00:00
|
|
|
|
|
|
|
bwrite(out, outsize);
|
|
|
|
free(out);
|
2021-07-28 23:45:09 +00:00
|
|
|
}
|
|
|
|
|
2021-11-24 00:50:08 +00:00
|
|
|
protected:
|
|
|
|
bool write_chunk(const void *buf, size_t len) override {
|
|
|
|
if (len == 0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
auto in = static_cast<const unsigned char *>(buf);
|
|
|
|
|
|
|
|
in_total += len;
|
|
|
|
crc = crc32_z(crc, in, len);
|
|
|
|
|
|
|
|
ZopfliDeflatePart(&zo, 2, final, in, 0, len, &bp, &out, &outsize);
|
|
|
|
|
|
|
|
// ZOPFLI_APPEND_DATA is extremely dumb, so we always preserve the
|
|
|
|
// last byte to make sure that realloc is used instead of malloc
|
|
|
|
if (!bwrite(out, outsize - 1))
|
|
|
|
return false;
|
|
|
|
out[0] = out[outsize - 1];
|
|
|
|
outsize = 1;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-07-28 23:45:09 +00:00
|
|
|
private:
|
2021-08-28 21:07:34 +00:00
|
|
|
ZopfliOptions zo;
|
|
|
|
unsigned char *out;
|
|
|
|
size_t outsize;
|
2021-11-24 00:50:08 +00:00
|
|
|
unsigned long crc;
|
|
|
|
uint32_t in_total;
|
2021-08-28 21:07:34 +00:00
|
|
|
unsigned char bp;
|
2021-11-24 00:50:08 +00:00
|
|
|
bool final;
|
2021-07-28 23:45:09 +00:00
|
|
|
};
|
|
|
|
|
2021-11-21 12:38:22 +00:00
|
|
|
class bz_strm : public out_stream {
|
2019-11-21 11:08:02 +00:00
|
|
|
public:
|
2021-11-21 12:38:22 +00:00
|
|
|
bool write(const void *buf, size_t len) override {
|
|
|
|
return len == 0 || write(buf, len, BZ_RUN);
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
~bz_strm() override {
|
|
|
|
switch(mode) {
|
|
|
|
case DECODE:
|
|
|
|
BZ2_bzDecompressEnd(&strm);
|
|
|
|
break;
|
|
|
|
case ENCODE:
|
|
|
|
write(nullptr, 0, BZ_FINISH);
|
|
|
|
BZ2_bzCompressEnd(&strm);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-11-22 08:01:49 +00:00
|
|
|
|
2019-11-21 11:08:02 +00:00
|
|
|
protected:
|
2020-12-31 06:11:24 +00:00
|
|
|
enum mode_t {
|
|
|
|
DECODE,
|
|
|
|
ENCODE
|
|
|
|
} mode;
|
|
|
|
|
2021-05-11 01:38:30 +00:00
|
|
|
bz_strm(mode_t mode, stream_ptr &&base) :
|
2021-11-21 12:38:22 +00:00
|
|
|
out_stream(std::move(base)), mode(mode), strm{}, outbuf{0} {
|
2020-12-31 06:11:24 +00:00
|
|
|
switch(mode) {
|
2021-11-21 12:38:22 +00:00
|
|
|
case DECODE:
|
|
|
|
BZ2_bzDecompressInit(&strm, 0, 0);
|
|
|
|
break;
|
|
|
|
case ENCODE:
|
|
|
|
BZ2_bzCompressInit(&strm, 9, 0, 0);
|
|
|
|
break;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-21 01:49:26 +00:00
|
|
|
|
2019-11-21 11:08:02 +00:00
|
|
|
private:
|
2020-12-31 06:11:24 +00:00
|
|
|
bz_stream strm;
|
|
|
|
char outbuf[CHUNK];
|
|
|
|
|
2021-11-21 12:38:22 +00:00
|
|
|
bool write(const void *buf, size_t len, int flush) {
|
2020-12-31 06:11:24 +00:00
|
|
|
strm.next_in = (char *) buf;
|
|
|
|
strm.avail_in = len;
|
|
|
|
do {
|
|
|
|
int code;
|
|
|
|
strm.avail_out = sizeof(outbuf);
|
|
|
|
strm.next_out = outbuf;
|
|
|
|
switch(mode) {
|
2021-11-21 12:38:22 +00:00
|
|
|
case DECODE:
|
|
|
|
code = BZ2_bzDecompress(&strm);
|
|
|
|
break;
|
|
|
|
case ENCODE:
|
|
|
|
code = BZ2_bzCompress(&strm, flush);
|
|
|
|
break;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
|
|
|
if (code < 0) {
|
|
|
|
LOGW("bzip2 %s failed (%d)\n", mode ? "encode" : "decode", code);
|
2021-11-21 12:38:22 +00:00
|
|
|
return false;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
2021-11-21 12:38:22 +00:00
|
|
|
if (!bwrite(outbuf, sizeof(outbuf) - strm.avail_out))
|
|
|
|
return false;
|
2020-12-31 06:11:24 +00:00
|
|
|
} while (strm.avail_out == 0);
|
2021-11-21 12:38:22 +00:00
|
|
|
return true;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
2019-11-21 11:08:02 +00:00
|
|
|
};
|
2019-02-21 01:49:26 +00:00
|
|
|
|
2019-11-21 11:08:02 +00:00
|
|
|
class bz_decoder : public bz_strm {
|
|
|
|
public:
|
2020-12-31 06:11:24 +00:00
|
|
|
explicit bz_decoder(stream_ptr &&base) : bz_strm(DECODE, std::move(base)) {};
|
2019-11-21 11:08:02 +00:00
|
|
|
};
|
2019-02-21 01:49:26 +00:00
|
|
|
|
2019-11-21 11:08:02 +00:00
|
|
|
class bz_encoder : public bz_strm {
|
|
|
|
public:
|
2020-12-31 06:11:24 +00:00
|
|
|
explicit bz_encoder(stream_ptr &&base) : bz_strm(ENCODE, std::move(base)) {};
|
2019-11-21 11:08:02 +00:00
|
|
|
};
|
2017-03-04 17:50:36 +00:00
|
|
|
|
2021-11-21 12:38:22 +00:00
|
|
|
class lzma_strm : public out_stream {
|
2019-11-21 11:08:02 +00:00
|
|
|
public:
|
2021-11-21 12:38:22 +00:00
|
|
|
bool write(const void *buf, size_t len) override {
|
|
|
|
return len == 0 || write(buf, len, LZMA_RUN);
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
2019-02-20 07:10:06 +00:00
|
|
|
|
2020-12-31 06:11:24 +00:00
|
|
|
~lzma_strm() override {
|
|
|
|
write(nullptr, 0, LZMA_FINISH);
|
|
|
|
lzma_end(&strm);
|
|
|
|
}
|
2019-11-22 08:01:49 +00:00
|
|
|
|
2019-11-21 11:08:02 +00:00
|
|
|
protected:
|
2020-12-31 06:11:24 +00:00
|
|
|
enum mode_t {
|
|
|
|
DECODE,
|
|
|
|
ENCODE_XZ,
|
|
|
|
ENCODE_LZMA
|
|
|
|
} mode;
|
|
|
|
|
2021-05-11 01:38:30 +00:00
|
|
|
lzma_strm(mode_t mode, stream_ptr &&base) :
|
2021-11-21 12:38:22 +00:00
|
|
|
out_stream(std::move(base)), mode(mode), strm(LZMA_STREAM_INIT), outbuf{0} {
|
2020-12-31 06:11:24 +00:00
|
|
|
lzma_options_lzma opt;
|
|
|
|
|
|
|
|
// Initialize preset
|
|
|
|
lzma_lzma_preset(&opt, 9);
|
|
|
|
lzma_filter filters[] = {
|
|
|
|
{ .id = LZMA_FILTER_LZMA2, .options = &opt },
|
|
|
|
{ .id = LZMA_VLI_UNKNOWN, .options = nullptr },
|
|
|
|
};
|
|
|
|
|
2021-05-11 01:38:30 +00:00
|
|
|
lzma_ret code;
|
2020-12-31 06:11:24 +00:00
|
|
|
switch(mode) {
|
2021-11-21 12:38:22 +00:00
|
|
|
case DECODE:
|
|
|
|
code = lzma_auto_decoder(&strm, UINT64_MAX, 0);
|
|
|
|
break;
|
|
|
|
case ENCODE_XZ:
|
|
|
|
code = lzma_stream_encoder(&strm, filters, LZMA_CHECK_CRC32);
|
|
|
|
break;
|
|
|
|
case ENCODE_LZMA:
|
|
|
|
code = lzma_alone_encoder(&strm, &opt);
|
|
|
|
break;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
2021-05-11 01:38:30 +00:00
|
|
|
if (code != LZMA_OK) {
|
|
|
|
LOGE("LZMA initialization failed (%d)\n", code);
|
|
|
|
}
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
2019-02-20 07:10:06 +00:00
|
|
|
|
2019-11-21 11:08:02 +00:00
|
|
|
private:
|
2020-12-31 06:11:24 +00:00
|
|
|
lzma_stream strm;
|
|
|
|
uint8_t outbuf[CHUNK];
|
|
|
|
|
2021-11-21 12:38:22 +00:00
|
|
|
bool write(const void *buf, size_t len, lzma_action flush) {
|
2020-12-31 06:11:24 +00:00
|
|
|
strm.next_in = (uint8_t *) buf;
|
|
|
|
strm.avail_in = len;
|
|
|
|
do {
|
|
|
|
strm.avail_out = sizeof(outbuf);
|
|
|
|
strm.next_out = outbuf;
|
|
|
|
int code = lzma_code(&strm, flush);
|
|
|
|
if (code != LZMA_OK && code != LZMA_STREAM_END) {
|
|
|
|
LOGW("LZMA %s failed (%d)\n", mode ? "encode" : "decode", code);
|
2021-11-21 12:38:22 +00:00
|
|
|
return false;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
2021-11-21 12:38:22 +00:00
|
|
|
if (!bwrite(outbuf, sizeof(outbuf) - strm.avail_out))
|
|
|
|
return false;
|
2020-12-31 06:11:24 +00:00
|
|
|
} while (strm.avail_out == 0);
|
2021-11-21 12:38:22 +00:00
|
|
|
return true;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
2019-11-21 11:08:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class lzma_decoder : public lzma_strm {
|
|
|
|
public:
|
2020-12-31 06:11:24 +00:00
|
|
|
explicit lzma_decoder(stream_ptr &&base) : lzma_strm(DECODE, std::move(base)) {}
|
2019-11-21 11:08:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class xz_encoder : public lzma_strm {
|
|
|
|
public:
|
2020-12-31 06:11:24 +00:00
|
|
|
explicit xz_encoder(stream_ptr &&base) : lzma_strm(ENCODE_XZ, std::move(base)) {}
|
2019-11-21 11:08:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class lzma_encoder : public lzma_strm {
|
|
|
|
public:
|
2020-12-31 06:11:24 +00:00
|
|
|
explicit lzma_encoder(stream_ptr &&base) : lzma_strm(ENCODE_LZMA, std::move(base)) {}
|
2019-11-21 11:08:02 +00:00
|
|
|
};
|
|
|
|
|
2021-11-21 12:38:22 +00:00
|
|
|
class LZ4F_decoder : public out_stream {
|
2019-11-21 11:08:02 +00:00
|
|
|
public:
|
2021-05-11 01:38:30 +00:00
|
|
|
explicit LZ4F_decoder(stream_ptr &&base) :
|
2021-11-21 12:38:22 +00:00
|
|
|
out_stream(std::move(base)), ctx(nullptr), outbuf(nullptr), outCapacity(0) {
|
2020-12-31 06:11:24 +00:00
|
|
|
LZ4F_createDecompressionContext(&ctx, LZ4F_VERSION);
|
|
|
|
}
|
|
|
|
|
|
|
|
~LZ4F_decoder() override {
|
|
|
|
LZ4F_freeDecompressionContext(ctx);
|
|
|
|
delete[] outbuf;
|
|
|
|
}
|
|
|
|
|
2021-11-21 12:38:22 +00:00
|
|
|
bool write(const void *buf, size_t len) override {
|
|
|
|
auto in = reinterpret_cast<const uint8_t *>(buf);
|
|
|
|
if (!outbuf) {
|
|
|
|
size_t read = len;
|
|
|
|
LZ4F_frameInfo_t info;
|
|
|
|
LZ4F_getFrameInfo(ctx, &info, in, &read);
|
|
|
|
switch (info.blockSizeID) {
|
|
|
|
case LZ4F_default:
|
|
|
|
case LZ4F_max64KB: outCapacity = 1 << 16; break;
|
|
|
|
case LZ4F_max256KB: outCapacity = 1 << 18; break;
|
|
|
|
case LZ4F_max1MB: outCapacity = 1 << 20; break;
|
|
|
|
case LZ4F_max4MB: outCapacity = 1 << 22; break;
|
|
|
|
}
|
|
|
|
outbuf = new uint8_t[outCapacity];
|
|
|
|
in += read;
|
|
|
|
len -= read;
|
|
|
|
}
|
2020-12-31 06:11:24 +00:00
|
|
|
size_t read, write;
|
|
|
|
LZ4F_errorCode_t code;
|
|
|
|
do {
|
|
|
|
read = len;
|
|
|
|
write = outCapacity;
|
2021-11-21 12:38:22 +00:00
|
|
|
code = LZ4F_decompress(ctx, outbuf, &write, in, &read, nullptr);
|
2020-12-31 06:11:24 +00:00
|
|
|
if (LZ4F_isError(code)) {
|
|
|
|
LOGW("LZ4F decode error: %s\n", LZ4F_getErrorName(code));
|
2021-11-21 12:38:22 +00:00
|
|
|
return false;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
|
|
|
len -= read;
|
2021-11-21 12:38:22 +00:00
|
|
|
in += read;
|
|
|
|
if (!bwrite(outbuf, write))
|
|
|
|
return false;
|
2020-12-31 06:11:24 +00:00
|
|
|
} while (len != 0 || write != 0);
|
2021-11-21 12:38:22 +00:00
|
|
|
return true;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
2019-11-21 11:08:02 +00:00
|
|
|
|
|
|
|
private:
|
2020-12-31 06:11:24 +00:00
|
|
|
LZ4F_decompressionContext_t ctx;
|
|
|
|
uint8_t *outbuf;
|
|
|
|
size_t outCapacity;
|
2019-11-21 11:08:02 +00:00
|
|
|
};
|
2019-02-20 07:10:06 +00:00
|
|
|
|
2021-11-21 12:38:22 +00:00
|
|
|
class LZ4F_encoder : public out_stream {
|
2019-11-21 11:08:02 +00:00
|
|
|
public:
|
2021-05-11 01:38:30 +00:00
|
|
|
explicit LZ4F_encoder(stream_ptr &&base) :
|
2021-11-21 12:38:22 +00:00
|
|
|
out_stream(std::move(base)), ctx(nullptr), out_buf(nullptr), outCapacity(0) {
|
2020-12-31 06:11:24 +00:00
|
|
|
LZ4F_createCompressionContext(&ctx, LZ4F_VERSION);
|
|
|
|
}
|
|
|
|
|
2021-11-21 12:38:22 +00:00
|
|
|
bool write(const void *buf, size_t len) override {
|
|
|
|
if (!out_buf) {
|
|
|
|
LZ4F_preferences_t prefs {
|
|
|
|
.frameInfo = {
|
|
|
|
.blockSizeID = LZ4F_max4MB,
|
|
|
|
.blockMode = LZ4F_blockIndependent,
|
|
|
|
.contentChecksumFlag = LZ4F_contentChecksumEnabled,
|
|
|
|
.blockChecksumFlag = LZ4F_noBlockChecksum,
|
|
|
|
},
|
|
|
|
.compressionLevel = 9,
|
|
|
|
.autoFlush = 1,
|
|
|
|
};
|
|
|
|
outCapacity = LZ4F_compressBound(BLOCK_SZ, &prefs);
|
|
|
|
out_buf = new uint8_t[outCapacity];
|
|
|
|
size_t write = LZ4F_compressBegin(ctx, out_buf, outCapacity, &prefs);
|
|
|
|
if (!bwrite(out_buf, write))
|
|
|
|
return false;
|
|
|
|
}
|
2020-12-31 06:11:24 +00:00
|
|
|
if (len == 0)
|
2021-11-21 12:38:22 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
auto in = reinterpret_cast<const uint8_t *>(buf);
|
2020-12-31 06:11:24 +00:00
|
|
|
size_t read, write;
|
|
|
|
do {
|
|
|
|
read = len > BLOCK_SZ ? BLOCK_SZ : len;
|
2021-11-21 12:38:22 +00:00
|
|
|
write = LZ4F_compressUpdate(ctx, out_buf, outCapacity, in, read, nullptr);
|
2020-12-31 06:11:24 +00:00
|
|
|
if (LZ4F_isError(write)) {
|
|
|
|
LOGW("LZ4F encode error: %s\n", LZ4F_getErrorName(write));
|
2021-11-21 12:38:22 +00:00
|
|
|
return false;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
|
|
|
len -= read;
|
2021-11-21 12:38:22 +00:00
|
|
|
in += read;
|
|
|
|
if (!bwrite(out_buf, write))
|
|
|
|
return false;
|
2020-12-31 06:11:24 +00:00
|
|
|
} while (len != 0);
|
2021-11-21 12:38:22 +00:00
|
|
|
return true;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
~LZ4F_encoder() override {
|
2021-11-21 12:38:22 +00:00
|
|
|
size_t len = LZ4F_compressEnd(ctx, out_buf, outCapacity, nullptr);
|
|
|
|
bwrite(out_buf, len);
|
2020-12-31 06:11:24 +00:00
|
|
|
LZ4F_freeCompressionContext(ctx);
|
2021-11-21 12:38:22 +00:00
|
|
|
delete[] out_buf;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
2019-02-20 07:10:06 +00:00
|
|
|
|
2019-11-21 11:08:02 +00:00
|
|
|
private:
|
2020-12-31 06:11:24 +00:00
|
|
|
LZ4F_compressionContext_t ctx;
|
2021-11-21 12:38:22 +00:00
|
|
|
uint8_t *out_buf;
|
2020-12-31 06:11:24 +00:00
|
|
|
size_t outCapacity;
|
|
|
|
|
|
|
|
static constexpr size_t BLOCK_SZ = 1 << 22;
|
2019-11-21 11:08:02 +00:00
|
|
|
};
|
|
|
|
|
2021-11-21 12:38:22 +00:00
|
|
|
class LZ4_decoder : public chunk_out_stream {
|
2019-11-21 11:08:02 +00:00
|
|
|
public:
|
2021-05-11 01:38:30 +00:00
|
|
|
explicit LZ4_decoder(stream_ptr &&base) :
|
2021-11-21 12:38:22 +00:00
|
|
|
chunk_out_stream(std::move(base), LZ4_COMPRESSED, sizeof(block_sz) + 4),
|
|
|
|
out_buf(new char[LZ4_UNCOMPRESSED]), block_sz(0) {}
|
2020-12-31 06:11:24 +00:00
|
|
|
|
|
|
|
~LZ4_decoder() override {
|
2021-11-24 00:50:08 +00:00
|
|
|
finalize();
|
2020-12-31 06:11:24 +00:00
|
|
|
delete[] out_buf;
|
|
|
|
}
|
|
|
|
|
2021-11-21 10:27:52 +00:00
|
|
|
protected:
|
2021-11-21 12:38:22 +00:00
|
|
|
bool write_chunk(const void *buf, size_t len) override {
|
2021-11-21 10:27:52 +00:00
|
|
|
// This is an error
|
|
|
|
if (len != chunk_sz)
|
2021-11-21 12:38:22 +00:00
|
|
|
return false;
|
2021-11-21 10:27:52 +00:00
|
|
|
|
|
|
|
auto in = reinterpret_cast<const char *>(buf);
|
|
|
|
|
|
|
|
if (block_sz == 0) {
|
|
|
|
if (chunk_sz == sizeof(block_sz) + 4) {
|
|
|
|
// Skip the first 4 bytes, which is magic
|
|
|
|
memcpy(&block_sz, in + 4, sizeof(block_sz));
|
2020-12-31 06:11:24 +00:00
|
|
|
} else {
|
2021-11-21 10:27:52 +00:00
|
|
|
memcpy(&block_sz, in, sizeof(block_sz));
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
2021-11-21 10:27:52 +00:00
|
|
|
chunk_sz = block_sz;
|
2021-11-21 12:38:22 +00:00
|
|
|
return true;
|
2021-11-21 10:27:52 +00:00
|
|
|
} else {
|
|
|
|
int r = LZ4_decompress_safe(in, out_buf, block_sz, LZ4_UNCOMPRESSED);
|
|
|
|
chunk_sz = sizeof(block_sz);
|
|
|
|
block_sz = 0;
|
|
|
|
if (r < 0) {
|
|
|
|
LOGW("LZ4HC decompression failure (%d)\n", r);
|
2021-11-21 12:38:22 +00:00
|
|
|
return false;
|
2021-11-21 10:27:52 +00:00
|
|
|
}
|
|
|
|
return bwrite(out_buf, r);
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-20 07:10:06 +00:00
|
|
|
|
2019-11-21 11:08:02 +00:00
|
|
|
private:
|
2020-12-31 06:11:24 +00:00
|
|
|
char *out_buf;
|
2021-11-21 10:27:52 +00:00
|
|
|
uint32_t block_sz;
|
2019-11-21 11:08:02 +00:00
|
|
|
};
|
|
|
|
|
2021-11-21 12:38:22 +00:00
|
|
|
class LZ4_encoder : public chunk_out_stream {
|
2019-11-21 11:08:02 +00:00
|
|
|
public:
|
2021-05-11 01:38:30 +00:00
|
|
|
explicit LZ4_encoder(stream_ptr &&base, bool lg) :
|
2021-11-21 12:38:22 +00:00
|
|
|
chunk_out_stream(std::move(base), LZ4_UNCOMPRESSED),
|
|
|
|
out_buf(new char[LZ4_COMPRESSED]), lg(lg), in_total(0) {
|
2021-11-21 10:27:52 +00:00
|
|
|
bwrite("\x02\x21\x4c\x18", 4);
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
~LZ4_encoder() override {
|
2021-11-24 00:50:08 +00:00
|
|
|
finalize();
|
2020-12-31 06:11:24 +00:00
|
|
|
if (lg)
|
|
|
|
bwrite(&in_total, sizeof(in_total));
|
2021-11-21 10:27:52 +00:00
|
|
|
delete[] out_buf;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
2019-02-20 07:10:06 +00:00
|
|
|
|
2021-11-21 10:27:52 +00:00
|
|
|
protected:
|
2021-11-21 12:38:22 +00:00
|
|
|
bool write_chunk(const void *buf, size_t len) override {
|
2021-11-21 10:27:52 +00:00
|
|
|
int r = LZ4_compress_HC((const char *) buf, out_buf, len, LZ4_COMPRESSED, LZ4HC_CLEVEL_MAX);
|
|
|
|
if (r == 0) {
|
2020-12-31 06:11:24 +00:00
|
|
|
LOGW("LZ4HC compression failure\n");
|
2021-11-21 12:38:22 +00:00
|
|
|
return false;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
2021-11-21 12:38:22 +00:00
|
|
|
return bwrite(&r, sizeof(r)) && bwrite(out_buf, r);
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
2021-11-21 10:27:52 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
char *out_buf;
|
|
|
|
bool lg;
|
|
|
|
unsigned in_total;
|
2019-11-21 11:08:02 +00:00
|
|
|
};
|
2019-02-20 07:10:06 +00:00
|
|
|
|
2019-12-13 05:37:06 +00:00
|
|
|
stream_ptr get_encoder(format_t type, stream_ptr &&base) {
|
2020-12-31 06:11:24 +00:00
|
|
|
switch (type) {
|
|
|
|
case XZ:
|
|
|
|
return make_unique<xz_encoder>(std::move(base));
|
|
|
|
case LZMA:
|
|
|
|
return make_unique<lzma_encoder>(std::move(base));
|
|
|
|
case BZIP2:
|
|
|
|
return make_unique<bz_encoder>(std::move(base));
|
|
|
|
case LZ4:
|
|
|
|
return make_unique<LZ4F_encoder>(std::move(base));
|
|
|
|
case LZ4_LEGACY:
|
|
|
|
return make_unique<LZ4_encoder>(std::move(base), false);
|
|
|
|
case LZ4_LG:
|
|
|
|
return make_unique<LZ4_encoder>(std::move(base), true);
|
2021-08-29 00:16:20 +00:00
|
|
|
case ZOPFLI:
|
2021-08-28 21:07:34 +00:00
|
|
|
return make_unique<zopfli_encoder>(std::move(base));
|
2021-08-29 00:16:20 +00:00
|
|
|
case GZIP:
|
2020-12-31 06:11:24 +00:00
|
|
|
default:
|
|
|
|
return make_unique<gz_encoder>(std::move(base));
|
|
|
|
}
|
2019-02-20 07:10:06 +00:00
|
|
|
}
|
|
|
|
|
2019-12-13 05:37:06 +00:00
|
|
|
stream_ptr get_decoder(format_t type, stream_ptr &&base) {
|
2020-12-31 06:11:24 +00:00
|
|
|
switch (type) {
|
|
|
|
case XZ:
|
|
|
|
case LZMA:
|
|
|
|
return make_unique<lzma_decoder>(std::move(base));
|
|
|
|
case BZIP2:
|
|
|
|
return make_unique<bz_decoder>(std::move(base));
|
|
|
|
case LZ4:
|
|
|
|
return make_unique<LZ4F_decoder>(std::move(base));
|
|
|
|
case LZ4_LEGACY:
|
2021-02-08 01:40:59 +00:00
|
|
|
case LZ4_LG:
|
2020-12-31 06:11:24 +00:00
|
|
|
return make_unique<LZ4_decoder>(std::move(base));
|
2021-08-29 00:16:20 +00:00
|
|
|
case ZOPFLI:
|
2020-12-31 06:11:24 +00:00
|
|
|
case GZIP:
|
|
|
|
default:
|
|
|
|
return make_unique<gz_decoder>(std::move(base));
|
|
|
|
}
|
2019-02-20 07:10:06 +00:00
|
|
|
}
|
|
|
|
|
2019-11-21 11:08:02 +00:00
|
|
|
void decompress(char *infile, const char *outfile) {
|
2020-12-31 06:11:24 +00:00
|
|
|
bool in_std = infile == "-"sv;
|
|
|
|
bool rm_in = false;
|
|
|
|
|
|
|
|
FILE *in_fp = in_std ? stdin : xfopen(infile, "re");
|
|
|
|
stream_ptr strm;
|
|
|
|
|
|
|
|
char buf[4096];
|
|
|
|
size_t len;
|
|
|
|
while ((len = fread(buf, 1, sizeof(buf), in_fp))) {
|
|
|
|
if (!strm) {
|
|
|
|
format_t type = check_fmt(buf, len);
|
|
|
|
|
|
|
|
fprintf(stderr, "Detected format: [%s]\n", fmt2name[type]);
|
|
|
|
|
|
|
|
if (!COMPRESSED(type))
|
|
|
|
LOGE("Input file is not a supported compressed type!\n");
|
|
|
|
|
|
|
|
/* If user does not provide outfile, infile has to be either
|
|
|
|
* <path>.[ext], or '-'. Outfile will be either <path> or '-'.
|
|
|
|
* If the input does not have proper format, abort */
|
|
|
|
|
|
|
|
char *ext = nullptr;
|
|
|
|
if (outfile == nullptr) {
|
|
|
|
outfile = infile;
|
|
|
|
if (!in_std) {
|
|
|
|
ext = strrchr(infile, '.');
|
|
|
|
if (ext == nullptr || strcmp(ext, fmt2ext[type]) != 0)
|
|
|
|
LOGE("Input file is not a supported type!\n");
|
|
|
|
|
|
|
|
// Strip out extension and remove input
|
|
|
|
*ext = '\0';
|
|
|
|
rm_in = true;
|
|
|
|
fprintf(stderr, "Decompressing to [%s]\n", outfile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FILE *out_fp = outfile == "-"sv ? stdout : xfopen(outfile, "we");
|
|
|
|
strm = get_decoder(type, make_unique<fp_stream>(out_fp));
|
|
|
|
if (ext) *ext = '.';
|
|
|
|
}
|
2021-11-21 12:38:22 +00:00
|
|
|
if (!strm->write(buf, len))
|
2020-12-31 06:11:24 +00:00
|
|
|
LOGE("Decompression error!\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
strm.reset(nullptr);
|
|
|
|
fclose(in_fp);
|
|
|
|
|
|
|
|
if (rm_in)
|
|
|
|
unlink(infile);
|
2019-02-20 07:10:06 +00:00
|
|
|
}
|
|
|
|
|
2019-11-21 11:08:02 +00:00
|
|
|
void compress(const char *method, const char *infile, const char *outfile) {
|
2021-03-03 07:16:10 +00:00
|
|
|
format_t fmt = name2fmt[method];
|
|
|
|
if (fmt == UNKNOWN)
|
2020-12-31 06:11:24 +00:00
|
|
|
LOGE("Unknown compression method: [%s]\n", method);
|
|
|
|
|
|
|
|
bool in_std = infile == "-"sv;
|
|
|
|
bool rm_in = false;
|
|
|
|
|
|
|
|
FILE *in_fp = in_std ? stdin : xfopen(infile, "re");
|
|
|
|
FILE *out_fp;
|
|
|
|
|
|
|
|
if (outfile == nullptr) {
|
|
|
|
if (in_std) {
|
|
|
|
out_fp = stdout;
|
|
|
|
} else {
|
|
|
|
/* If user does not provide outfile and infile is not
|
|
|
|
* STDIN, output to <infile>.[ext] */
|
|
|
|
string tmp(infile);
|
2021-03-03 07:16:10 +00:00
|
|
|
tmp += fmt2ext[fmt];
|
2020-12-31 06:11:24 +00:00
|
|
|
out_fp = xfopen(tmp.data(), "we");
|
|
|
|
fprintf(stderr, "Compressing to [%s]\n", tmp.data());
|
|
|
|
rm_in = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
out_fp = outfile == "-"sv ? stdout : xfopen(outfile, "we");
|
|
|
|
}
|
|
|
|
|
2021-03-03 07:16:10 +00:00
|
|
|
auto strm = get_encoder(fmt, make_unique<fp_stream>(out_fp));
|
2020-12-31 06:11:24 +00:00
|
|
|
|
|
|
|
char buf[4096];
|
|
|
|
size_t len;
|
|
|
|
while ((len = fread(buf, 1, sizeof(buf), in_fp))) {
|
2021-11-21 12:38:22 +00:00
|
|
|
if (!strm->write(buf, len))
|
2020-12-31 06:11:24 +00:00
|
|
|
LOGE("Compression error!\n");
|
2021-11-21 12:38:22 +00:00
|
|
|
}
|
2020-12-31 06:11:24 +00:00
|
|
|
|
|
|
|
strm.reset(nullptr);
|
|
|
|
fclose(in_fp);
|
|
|
|
|
|
|
|
if (rm_in)
|
|
|
|
unlink(infile);
|
2019-02-20 07:10:06 +00:00
|
|
|
}
|