Switch IO to go through streams

This commit is contained in:
Sean Purcell
2017-02-03 15:22:52 -08:00
parent 823d8c233b
commit 18ce8b54dd
2 changed files with 604 additions and 674 deletions
+12 -3
View File
@@ -18,6 +18,9 @@ typedef unsigned char u8;
// compression ratio is at most 16 // compression ratio is at most 16
#define MAX_COMPRESSION_RATIO (16) #define MAX_COMPRESSION_RATIO (16)
// Protect against allocating too much memory for output
#define MAX_OUTPUT_SIZE ((size_t)1024 * 1024 * 1024)
u8 *input; u8 *input;
u8 *output; u8 *output;
u8 *dict; u8 *dict;
@@ -86,11 +89,17 @@ int main(int argc, char **argv) {
size_t decompressed_size = ZSTD_get_decompressed_size(input, input_size); size_t decompressed_size = ZSTD_get_decompressed_size(input, input_size);
if (decompressed_size == -1) { if (decompressed_size == -1) {
decompressed_size = MAX_COMPRESSION_RATIO * input_size; decompressed_size = MAX_COMPRESSION_RATIO * input_size;
fprintf(stderr, "WARNING: Compressed data does contain decompressed " fprintf(stderr, "WARNING: Compressed data does not contain "
"size, going to assume the compression ratio is at " "decompressed size, going to assume the compression "
"most %d (decompressed size of at most %zu)\n", "ratio is at most %d (decompressed size of at most "
"%zu)\n",
MAX_COMPRESSION_RATIO, decompressed_size); MAX_COMPRESSION_RATIO, decompressed_size);
} }
if (decompressed_size > MAX_OUTPUT_SIZE) {
fprintf(stderr,
"Required output size too large for this implementation\n");
return 1;
}
output = malloc(decompressed_size); output = malloc(decompressed_size);
if (!output) { if (!output) {
fprintf(stderr, "failed to allocate memory\n"); fprintf(stderr, "failed to allocate memory\n");
+592 -671
View File
@@ -48,6 +48,7 @@ size_t ZSTD_get_decompressed_size(const void *const src, const size_t src_len);
#define OUT_SIZE() ERROR("Output buffer too small for output") #define OUT_SIZE() ERROR("Output buffer too small for output")
#define CORRUPTION() ERROR("Corruption detected while decompressing") #define CORRUPTION() ERROR("Corruption detected while decompressing")
#define BAD_ALLOC() ERROR("Memory allocation error") #define BAD_ALLOC() ERROR("Memory allocation error")
#define IMPOSSIBLE() ERROR("An impossibility has occurred")
typedef uint8_t u8; typedef uint8_t u8;
typedef uint16_t u16; typedef uint16_t u16;
@@ -65,6 +66,62 @@ typedef int64_t i64;
/// file. They implement low-level functionality needed for the higher level /// file. They implement low-level functionality needed for the higher level
/// decompression functions. /// decompression functions.
/*** IO STREAM OPERATIONS *************/
/// These structs are the interface for IO, and do bounds checking on all
/// operations. They should be used opaquely to ensure safety.
/// Output is always done byte-by-byte
typedef struct {
u8 *ptr;
size_t len;
} ostream_t;
/// Input often reads a few bits at a time, so maintain an internal offset
typedef struct {
const u8 *ptr;
int bit_offset;
size_t len;
} istream_t;
/// The following two functions are the only ones that allow the istream to be
/// non-byte aligned
/// Reads `num` bits from a bitstream, and updates the internal offset
static inline u64 IO_read_bits(istream_t *const in, const int num);
/// Rewinds the stream by `num` bits
static inline void IO_rewind_bits(istream_t *const in, const int num);
/// If the remaining bits in a byte will be unused, advance to the end of the
/// byte
static inline void IO_align_stream(istream_t *const in);
/// Write the given byte into the output stream
static inline void IO_write_byte(ostream_t *const out, u8 symb);
/// Returns the number of bytes left to be read in this stream. The stream must
/// be byte aligned.
static inline size_t IO_istream_len(const istream_t *const in);
/// Returns a pointer where `len` bytes can be read, and advances the internal
/// state. The stream must be byte aligned.
static inline const u8 *IO_read_bytes(istream_t *const in, size_t len);
/// Returns a pointer where `len` bytes can be written, and advances the internal
/// state. The stream must be byte aligned.
static inline u8 *IO_write_bytes(ostream_t *const out, size_t len);
/// Advance the inner state by `len` bytes. The stream must be byte aligned.
static inline void IO_advance_input(istream_t *const in, size_t len);
/// Returns an `ostream_t` constructed from the given pointer and length
static inline ostream_t IO_make_ostream(u8 *out, size_t len);
/// Returns an `istream_t` constructed from the given pointer and length
static inline istream_t IO_make_istream(const u8 *in, size_t len);
/// Returns an `istream_t` with the same base as `in`, and length `len`
/// Then, advance `in` to account for the consumed bytes
/// `in` must be byte aligned
static inline istream_t IO_make_sub_istream(istream_t *const in, size_t len);
/*** END IO STREAM OPERATIONS *********/
/*** BITSTREAM OPERATIONS *************/ /*** BITSTREAM OPERATIONS *************/
/// Read `num` bits (up to 64) from `src + offset`, where `offset` is in bits /// Read `num` bits (up to 64) from `src + offset`, where `offset` is in bits
static inline u64 read_bits_LE(const u8 *src, const int num, static inline u64 read_bits_LE(const u8 *src, const int num,
@@ -109,15 +166,13 @@ static inline void HUF_init_state(const HUF_dtable *const dtable,
/// Decompresses a single Huffman stream, returns the number of bytes decoded. /// Decompresses a single Huffman stream, returns the number of bytes decoded.
/// `src_len` must be the exact length of the Huffman-coded block. /// `src_len` must be the exact length of the Huffman-coded block.
static size_t HUF_decompress_1stream(const HUF_dtable *const dtable, u8 *dst, static size_t HUF_decompress_1stream(const HUF_dtable *const dtable,
const size_t dst_len, const u8 *src, ostream_t *const out, istream_t *const in);
size_t src_len);
/// Same as previous but decodes 4 streams, formatted as in the Zstandard /// Same as previous but decodes 4 streams, formatted as in the Zstandard
/// specification. /// specification.
/// `src_len` must be the exact length of the Huffman-coded block. /// `src_len` must be the exact length of the Huffman-coded block.
static size_t HUF_decompress_4stream(const HUF_dtable *const dtable, u8 *dst, static size_t HUF_decompress_4stream(const HUF_dtable *const dtable,
const size_t dst_len, const u8 *const src, ostream_t *const out, istream_t *const in);
const size_t src_len);
/// Initialize a Huffman decoding table using the table of bit counts provided /// Initialize a Huffman decoding table using the table of bit counts provided
static void HUF_init_dtable(HUF_dtable *const table, const u8 *const bits, static void HUF_init_dtable(HUF_dtable *const table, const u8 *const bits,
@@ -176,9 +231,8 @@ static inline void FSE_init_state(const FSE_dtable *const dtable,
/// using an FSE decoding table. `src_len` must be the exact length of the /// using an FSE decoding table. `src_len` must be the exact length of the
/// block. /// block.
static size_t FSE_decompress_interleaved2(const FSE_dtable *const dtable, static size_t FSE_decompress_interleaved2(const FSE_dtable *const dtable,
u8 *dst, const size_t dst_len, ostream_t *const out,
const u8 *const src, istream_t *const in);
const size_t src_len);
/// Initialize a decoding table using normalized frequencies. /// Initialize a decoding table using normalized frequencies.
static void FSE_init_dtable(FSE_dtable *const dtable, static void FSE_init_dtable(FSE_dtable *const dtable,
@@ -187,8 +241,7 @@ static void FSE_init_dtable(FSE_dtable *const dtable,
/// Decode an FSE header as defined in the Zstandard format specification and /// Decode an FSE header as defined in the Zstandard format specification and
/// use the decoded frequencies to initialize a decoding table. /// use the decoded frequencies to initialize a decoding table.
static size_t FSE_decode_header(FSE_dtable *const dtable, const u8 *const src, static void FSE_decode_header(FSE_dtable *const dtable, istream_t *const in,
const size_t src_len,
const int max_accuracy_log); const int max_accuracy_log);
/// Initialize an FSE table that will always return the same symbol and consume /// Initialize an FSE table that will always return the same symbol and consume
@@ -207,16 +260,6 @@ static void FSE_copy_dtable(FSE_dtable *const dst, const FSE_dtable *const src);
/******* ZSTD HELPER STRUCTS AND PROTOTYPES ***********************************/ /******* ZSTD HELPER STRUCTS AND PROTOTYPES ***********************************/
/// Input and output pointers to allow them to be advanced by
/// functions that consume input/produce output
typedef struct {
u8 *dst;
size_t dst_len;
const u8 *src;
size_t src_len;
} io_streams_t;
/// A small structure that can be reused in various places that need to access /// A small structure that can be reused in various places that need to access
/// frame header information /// frame header information
typedef struct { typedef struct {
@@ -233,9 +276,6 @@ typedef struct {
int content_checksum_flag; int content_checksum_flag;
// Whether or not the output for this frame is in a single segment // Whether or not the output for this frame is in a single segment
int single_segment_flag; int single_segment_flag;
// The size in bytes of this header
int header_size;
} frame_header_t; } frame_header_t;
/// The context needed to decode blocks in a frame /// The context needed to decode blocks in a frame
@@ -256,9 +296,8 @@ typedef struct {
FSE_dtable ml_dtable; FSE_dtable ml_dtable;
FSE_dtable of_dtable; FSE_dtable of_dtable;
// The last 3 offsets for the special "repeat offsets". Array size is 4 so // The last 3 offsets for the special "repeat offsets".
// that previous_offsets[1] corresponds to the most recent offset u64 previous_offsets[3];
u64 previous_offsets[4];
} frame_context_t; } frame_context_t;
/// The decoded contents of a dictionary so that it doesn't have to be repeated /// The decoded contents of a dictionary so that it doesn't have to be repeated
@@ -275,7 +314,7 @@ typedef struct {
size_t content_size; size_t content_size;
// Offset history to prepopulate the frame's history // Offset history to prepopulate the frame's history
u64 previous_offsets[4]; u64 previous_offsets[3];
u32 dictionary_id; u32 dictionary_id;
} dictionary_t; } dictionary_t;
@@ -301,34 +340,31 @@ typedef struct {
/// Accepts a dict argument, which may be NULL indicating no dictionary. /// Accepts a dict argument, which may be NULL indicating no dictionary.
/// See /// See
/// https://github.com/facebook/zstd/blob/dev/doc/zstd_compression_format.md#frame-concatenation /// https://github.com/facebook/zstd/blob/dev/doc/zstd_compression_format.md#frame-concatenation
static void decode_frame(io_streams_t *const streams, static void decode_frame(ostream_t *const out, istream_t *const in,
const dictionary_t *const dict); const dictionary_t *const dict);
// Decode data in a compressed block // Decode data in a compressed block
static void decompress_block(io_streams_t *const streams, static void decompress_block(frame_context_t *const ctx, ostream_t *const out,
frame_context_t *const ctx, istream_t *const in);
const size_t block_len);
// Decode the literals section of a block // Decode the literals section of a block
static size_t decode_literals(io_streams_t *const streams, static size_t decode_literals(frame_context_t *const ctx, istream_t *const in,
frame_context_t *const ctx, u8 **const literals); u8 **const literals);
// Decode the sequences part of a block // Decode the sequences part of a block
static size_t decode_sequences(frame_context_t *const ctx, const u8 *const src, static size_t decode_sequences(frame_context_t *const ctx, istream_t *const in,
const size_t src_len,
sequence_command_t **const sequences); sequence_command_t **const sequences);
// Execute the decoded sequences on the literals block // Execute the decoded sequences on the literals block
static void execute_sequences(io_streams_t *const streams, static void execute_sequences(frame_context_t *const ctx, ostream_t *const out,
frame_context_t *const ctx, const u8 *const literals,
const size_t literals_len,
const sequence_command_t *const sequences, const sequence_command_t *const sequences,
const size_t num_sequences, const size_t num_sequences);
const u8 *literals,
size_t literals_len);
// Parse a provided dictionary blob for use in decompression // Parse a provided dictionary blob for use in decompression
static void parse_dictionary(dictionary_t *const dict, const u8 *const src, static void parse_dictionary(dictionary_t *const dict, const u8 *src,
const size_t src_len); size_t src_len);
static void free_dictionary(dictionary_t *const dict); static void free_dictionary(dictionary_t *const dict);
/******* END ZSTD HELPER STRUCTS AND PROTOTYPES *******************************/ /******* END ZSTD HELPER STRUCTS AND PROTOTYPES *******************************/
@@ -348,58 +384,46 @@ size_t ZSTD_decompress_with_dict(void *const dst, const size_t dst_len,
parse_dictionary(&parsed_dict, (const u8 *)dict, dict_len); parse_dictionary(&parsed_dict, (const u8 *)dict, dict_len);
} }
io_streams_t streams = {(u8 *)dst, dst_len, (const u8 *)src, src_len}; istream_t in = {(const u8 *)src, 0, src_len};
while (streams.src_len > 0) { ostream_t out = {(u8 *)dst, dst_len};
decode_frame(&streams, &parsed_dict); while (IO_istream_len(&in) > 0) {
decode_frame(&out, &in, &parsed_dict);
} }
free_dictionary(&parsed_dict); free_dictionary(&parsed_dict);
return streams.dst - (u8 *)dst; return out.ptr - (u8 *)dst;
} }
/******* FRAME DECODING ******************************************************/ /******* FRAME DECODING ******************************************************/
static void decode_data_frame(io_streams_t *const streams, static void decode_data_frame(ostream_t *const out, istream_t *const in,
const dictionary_t *const dict); const dictionary_t *const dict);
static void init_frame_context(io_streams_t *const streams, static void init_frame_context(frame_context_t *const context,
frame_context_t *const context, istream_t *const in,
const dictionary_t *const dict); const dictionary_t *const dict);
static void free_frame_context(frame_context_t *const context); static void free_frame_context(frame_context_t *const context);
static void parse_frame_header(frame_header_t *const header, static void parse_frame_header(frame_header_t *const header,
const u8 *const src, const size_t src_len); istream_t *const in);
static void frame_context_apply_dict(frame_context_t *const ctx, static void frame_context_apply_dict(frame_context_t *const ctx,
const dictionary_t *const dict); const dictionary_t *const dict);
static void decompress_data(io_streams_t *const streams, static void decompress_data(frame_context_t *const ctx, ostream_t *const out,
frame_context_t *const ctx); istream_t *const in);
static void decode_frame(io_streams_t *const streams, static void decode_frame(ostream_t *const out, istream_t *const in,
const dictionary_t *const dict) { const dictionary_t *const dict) {
if (streams->src_len < 4) { const u32 magic_number = IO_read_bits(in, 32);
INP_SIZE();
}
const u32 magic_number = read_bits_LE(streams->src, 32, 0);
streams->src += 4; if ((magic_number & ~0xFU) == 0x184D2A50U) {
streams->src_len -= 4; // Skippable frame
if (magic_number >= 0x184D2A50U && magic_number <= 0x184D2A5F) { const size_t frame_size = IO_read_bits(in, 32);
// skippable frame
if (streams->src_len < 4) {
INP_SIZE();
}
const size_t frame_size = read_bits_LE(streams->src, 32, 32);
if (streams->src_len < 4 + frame_size) {
INP_SIZE();
}
// skip over frame // skip over frame
streams->src += 4 + frame_size; IO_advance_input(in, frame_size);
streams->src_len -= 4 + frame_size;
} else if (magic_number == 0xFD2FB528U) { } else if (magic_number == 0xFD2FB528U) {
// ZSTD frame // ZSTD frame
decode_data_frame(streams, dict); decode_data_frame(out, in, dict);
} else { } else {
// not a real frame // not a real frame
ERROR("Invalid magic number"); ERROR("Invalid magic number");
@@ -410,40 +434,38 @@ static void decode_frame(io_streams_t *const streams,
/// are skippable frames. /// are skippable frames.
/// See /// See
/// https://github.com/facebook/zstd/blob/dev/doc/zstd_compression_format.md#general-structure-of-zstandard-frame-format /// https://github.com/facebook/zstd/blob/dev/doc/zstd_compression_format.md#general-structure-of-zstandard-frame-format
static void decode_data_frame(io_streams_t *const streams, static void decode_data_frame(ostream_t *const out, istream_t *const in,
const dictionary_t *const dict) { const dictionary_t *const dict) {
frame_context_t ctx; frame_context_t ctx;
// Initialize the context that needs to be carried from block to block // Initialize the context that needs to be carried from block to block
init_frame_context(streams, &ctx, dict); init_frame_context(&ctx, in, dict);
if (ctx.header.frame_content_size != 0 && if (ctx.header.frame_content_size != 0 &&
ctx.header.frame_content_size > streams->dst_len) { ctx.header.frame_content_size > out->len) {
OUT_SIZE(); OUT_SIZE();
} }
decompress_data(streams, &ctx); decompress_data(&ctx, out, in);
free_frame_context(&ctx); free_frame_context(&ctx);
} }
/// Takes the information provided in the header and dictionary, and initializes /// Takes the information provided in the header and dictionary, and initializes
/// the context for this frame /// the context for this frame
static void init_frame_context(io_streams_t *const streams, static void init_frame_context(frame_context_t *const context,
frame_context_t *const context, istream_t *const in,
const dictionary_t *const dict) { const dictionary_t *const dict) {
// Most fields in context are correct when initialized to 0 // Most fields in context are correct when initialized to 0
memset(context, 0x00, sizeof(frame_context_t)); memset(context, 0, sizeof(frame_context_t));
// Parse data from the frame header // Parse data from the frame header
parse_frame_header(&context->header, streams->src, streams->src_len); parse_frame_header(&context->header, in);
streams->src += context->header.header_size;
streams->src_len -= context->header.header_size;
// Set up the offset history for the repeat offset commands // Set up the offset history for the repeat offset commands
context->previous_offsets[1] = 1; context->previous_offsets[0] = 1;
context->previous_offsets[2] = 4; context->previous_offsets[1] = 4;
context->previous_offsets[3] = 8; context->previous_offsets[2] = 8;
// Apply details from the dict if it exists // Apply details from the dict if it exists
frame_context_apply_dict(context, dict); frame_context_apply_dict(context, dict);
@@ -460,12 +482,8 @@ static void free_frame_context(frame_context_t *const context) {
} }
static void parse_frame_header(frame_header_t *const header, static void parse_frame_header(frame_header_t *const header,
const u8 *const src, const size_t src_len) { istream_t *const in) {
if (src_len < 1) { const u8 descriptor = IO_read_bits(in, 8);
INP_SIZE();
}
const u8 descriptor = read_bits_LE(src, 8, 0);
// decode frame header descriptor into flags // decode frame header descriptor into flags
const u8 frame_content_size_flag = descriptor >> 6; const u8 frame_content_size_flag = descriptor >> 6;
@@ -478,28 +496,20 @@ static void parse_frame_header(frame_header_t *const header,
CORRUPTION(); CORRUPTION();
} }
int header_size = 1;
header->single_segment_flag = single_segment_flag; header->single_segment_flag = single_segment_flag;
header->content_checksum_flag = content_checksum_flag; header->content_checksum_flag = content_checksum_flag;
// decode window size // decode window size
if (!single_segment_flag) { if (!single_segment_flag) {
if (src_len < header_size + 1) {
INP_SIZE();
}
// Use the algorithm from the specification to compute window size // Use the algorithm from the specification to compute window size
// https://github.com/facebook/zstd/blob/dev/doc/zstd_compression_format.md#window_descriptor // https://github.com/facebook/zstd/blob/dev/doc/zstd_compression_format.md#window_descriptor
u8 window_descriptor = src[header_size]; u8 window_descriptor = IO_read_bits(in, 8);
u8 exponent = window_descriptor >> 3; u8 exponent = window_descriptor >> 3;
u8 mantissa = window_descriptor & 7; u8 mantissa = window_descriptor & 7;
size_t window_base = (size_t)1 << (10 + exponent); size_t window_base = (size_t)1 << (10 + exponent);
size_t window_add = (window_base / 8) * mantissa; size_t window_add = (window_base / 8) * mantissa;
header->window_size = window_base + window_add; header->window_size = window_base + window_add;
header_size++;
} }
// decode dictionary id if it exists // decode dictionary id if it exists
@@ -507,13 +517,7 @@ static void parse_frame_header(frame_header_t *const header,
const int bytes_array[] = {0, 1, 2, 4}; const int bytes_array[] = {0, 1, 2, 4};
const int bytes = bytes_array[dictionary_id_flag]; const int bytes = bytes_array[dictionary_id_flag];
if (src_len < header_size + bytes) { header->dictionary_id = IO_read_bits(in, bytes * 8);
INP_SIZE();
}
header->dictionary_id = read_bits_LE(src + header_size, bytes * 8, 0);
header_size += bytes;
} else { } else {
header->dictionary_id = 0; header->dictionary_id = 0;
} }
@@ -525,17 +529,10 @@ static void parse_frame_header(frame_header_t *const header,
const int bytes_array[] = {1, 2, 4, 8}; const int bytes_array[] = {1, 2, 4, 8};
const int bytes = bytes_array[frame_content_size_flag]; const int bytes = bytes_array[frame_content_size_flag];
if (src_len < header_size + bytes) { header->frame_content_size = IO_read_bits(in, bytes * 8);
INP_SIZE();
}
header->frame_content_size =
read_bits_LE(src + header_size, bytes * 8, 0);
if (bytes == 2) { if (bytes == 2) {
header->frame_content_size += 256; header->frame_content_size += 256;
} }
header_size += bytes;
} else { } else {
header->frame_content_size = 0; header->frame_content_size = 0;
} }
@@ -546,8 +543,6 @@ static void parse_frame_header(frame_header_t *const header,
// back to the dictionary or not on large offsets // back to the dictionary or not on large offsets
header->window_size = header->frame_content_size; header->window_size = header->frame_content_size;
} }
header->header_size = header_size;
} }
/// A dictionary acts as initializing values for the frame context before /// A dictionary acts as initializing values for the frame context before
@@ -559,20 +554,15 @@ static void frame_context_apply_dict(frame_context_t *const ctx,
if (!dict || !dict->content) if (!dict || !dict->content)
return; return;
if (ctx->header.dictionary_id == 0 && dict->dictionary_id != 0) { // If the requested dictionary_id is non-zero, the correct dictionary must
// The dictionary is unneeded, and shouldn't be used as it may interfere // be present
// with the default offset history
return;
}
// If the dictionary id is 0, it doesn't matter if we provide the wrong raw
// content dict, it won't change anything
if (ctx->header.dictionary_id != 0 && if (ctx->header.dictionary_id != 0 &&
ctx->header.dictionary_id != dict->dictionary_id) { ctx->header.dictionary_id != dict->dictionary_id) {
ERROR("Wrong/no dictionary provided"); ERROR("Wrong dictionary provided");
} }
// Copy the pointer in so we can reference it in sequence execution // Copy the dict content to the context for references during sequence
// execution
ctx->dict_content = dict->content; ctx->dict_content = dict->content;
ctx->dict_content_len = dict->content_size; ctx->dict_content_len = dict->content_size;
@@ -592,188 +582,137 @@ static void frame_context_apply_dict(frame_context_t *const ctx,
} }
/// Decompress the data from a frame block by block /// Decompress the data from a frame block by block
static void decompress_data(io_streams_t *const streams, static void decompress_data(frame_context_t *const ctx, ostream_t *const out,
frame_context_t *const ctx) { istream_t *const in) {
int last_block = 0; int last_block = 0;
do { do {
if (streams->src_len < 3) {
INP_SIZE();
}
// Parse the block header // Parse the block header
last_block = streams->src[0] & 1; last_block = IO_read_bits(in, 1);
const int block_type = (streams->src[0] >> 1) & 3; const int block_type = IO_read_bits(in, 2);
const size_t block_len = read_bits_LE(streams->src, 21, 3); const size_t block_len = IO_read_bits(in, 21);
streams->src += 3;
streams->src_len -= 3;
switch (block_type) { switch (block_type) {
case 0: { case 0: {
// Raw, uncompressed block // Raw, uncompressed block
if (streams->src_len < block_len) { const u8 *const read_ptr = IO_read_bytes(in, block_len);
INP_SIZE(); u8 *const write_ptr = IO_write_bytes(out, block_len);
} //
if (streams->dst_len < block_len) {
OUT_SIZE();
}
// Copy the raw data into the output // Copy the raw data into the output
memcpy(streams->dst, streams->src, block_len); memcpy(write_ptr, read_ptr, block_len);
streams->src += block_len;
streams->src_len -= block_len;
streams->dst += block_len;
streams->dst_len -= block_len;
ctx->current_total_output += block_len; ctx->current_total_output += block_len;
break; break;
} }
case 1: { case 1: {
// RLE block, repeat the first byte N times // RLE block, repeat the first byte N times
if (streams->src_len < 1) { const u8 *const read_ptr = IO_read_bytes(in, 1);
INP_SIZE(); u8 *const write_ptr = IO_write_bytes(out, block_len);
}
if (streams->dst_len < block_len) {
OUT_SIZE();
}
// Copy `block_len` copies of `streams->src[0]` to the output // Copy `block_len` copies of `streams->src[0]` to the output
memset(streams->dst, streams->src[0], block_len); memset(write_ptr, read_ptr[0], block_len);
streams->dst += block_len;
streams->dst_len -= block_len;
streams->src += 1;
streams->src_len -= 1;
ctx->current_total_output += block_len; ctx->current_total_output += block_len;
break; break;
} }
case 2: case 2: {
// Compressed block, this is mode complex // Compressed block
decompress_block(streams, ctx, block_len); // Create a sub-stream for the block
istream_t block_stream = IO_make_sub_istream(in, block_len);
decompress_block(ctx, out, &block_stream);
break; break;
}
case 3: case 3:
// Reserved block type // Reserved block type
CORRUPTION(); CORRUPTION();
break; break;
default:
IMPOSSIBLE();
} }
} while (!last_block); } while (!last_block);
if (ctx->header.content_checksum_flag) { if (ctx->header.content_checksum_flag) {
// This program does not support checking the checksum, so skip over it // This program does not support checking the checksum, so skip over it
// if it's present // if it's present
if (streams->src_len < 4) { IO_advance_input(in, 4);
INP_SIZE();
}
streams->src += 4;
streams->src_len -= 4;
} }
} }
/******* END FRAME DECODING ***************************************************/ /******* END FRAME DECODING ***************************************************/
/******* BLOCK DECOMPRESSION **************************************************/ /******* BLOCK DECOMPRESSION **************************************************/
static void decompress_block(io_streams_t *const streams, frame_context_t *const ctx, static void decompress_block(frame_context_t *const ctx, ostream_t *const out,
const size_t block_len) { istream_t *const in) {
if (streams->src_len < block_len) {
INP_SIZE();
}
// We need this to determine how long the compressed literals block was
const u8 *const end_of_block = streams->src + block_len;
// Part 1: decode the literals block // Part 1: decode the literals block
u8 *literals = NULL; u8 *literals = NULL;
const size_t literals_size = decode_literals(streams, ctx, &literals); const size_t literals_size = decode_literals(ctx, in, &literals);
// Part 2: decode the sequences block // Part 2: decode the sequences block
if (streams->src > end_of_block) {
INP_SIZE();
}
const size_t sequences_size = end_of_block - streams->src;
sequence_command_t *sequences = NULL; sequence_command_t *sequences = NULL;
const size_t num_sequences = const size_t num_sequences =
decode_sequences(ctx, streams->src, sequences_size, &sequences); decode_sequences(ctx, in, &sequences);
streams->src += sequences_size;
streams->src_len -= sequences_size;
// Part 3: combine literals and sequence commands to generate output // Part 3: combine literals and sequence commands to generate output
execute_sequences(streams, ctx, sequences, num_sequences, literals, execute_sequences(ctx, out, literals, literals_size, sequences,
literals_size); num_sequences);
free(literals); free(literals);
free(sequences); free(sequences);
} }
/******* END BLOCK DECOMPRESSION **********************************************/ /******* END BLOCK DECOMPRESSION **********************************************/
/******* LITERALS DECODING ****************************************************/ /******* LITERALS DECODING ****************************************************/
static size_t decode_literals_simple(io_streams_t *const streams, static size_t decode_literals_simple(istream_t *const in, u8 **const literals,
u8 **const literals, const int block_type, const int block_type,
const int size_format); const int size_format);
static size_t decode_literals_compressed(io_streams_t *const streams, static size_t decode_literals_compressed(frame_context_t *const ctx,
frame_context_t *const ctx, istream_t *const in,
u8 **const literals, u8 **const literals,
const int block_type, const int block_type,
const int size_format); const int size_format);
static size_t decode_huf_table(const u8 *src, size_t src_len, static void decode_huf_table(istream_t *const in, HUF_dtable *const dtable);
HUF_dtable *const dtable); static void fse_decode_hufweights(ostream_t *weights, istream_t *const in,
static size_t fse_decode_hufweights(const u8 *const src, const size_t src_len, int *const num_symbs);
u8 *const weights, int *const num_symbs,
const size_t compressed_size);
static size_t decode_literals(io_streams_t *const streams, static size_t decode_literals(frame_context_t *const ctx, istream_t *const in,
frame_context_t *const ctx, u8 **const literals) { u8 **const literals) {
if (streams->src_len < 1) {
INP_SIZE();
}
// Decode literals header // Decode literals header
int block_type = streams->src[0] & 3; int block_type = IO_read_bits(in, 2);
int size_format = (streams->src[0] >> 2) & 3; int size_format = IO_read_bits(in, 2);
if (block_type <= 1) { if (block_type <= 1) {
// Raw or RLE literals block // Raw or RLE literals block
return decode_literals_simple(streams, literals, block_type, return decode_literals_simple(in, literals, block_type,
size_format); size_format);
} else { } else {
// Huffman compressed literals // Huffman compressed literals
return decode_literals_compressed(streams, ctx, literals, block_type, return decode_literals_compressed(ctx, in, literals, block_type,
size_format); size_format);
} }
} }
/// Decodes literals blocks in raw or RLE form /// Decodes literals blocks in raw or RLE form
static size_t decode_literals_simple(io_streams_t *const streams, static size_t decode_literals_simple(istream_t *const in, u8 **const literals,
u8 **const literals, const int block_type, const int block_type,
const int size_format) { const int size_format) {
size_t size; size_t size;
switch (size_format) { switch (size_format) {
// These cases are in the form X0 // These cases are in the form ?0
// In this case, the X bit is actually part of the size field // In this case, the ? bit is actually part of the size field
case 0: case 0:
case 2: case 2:
size = read_bits_LE(streams->src, 5, 3); // "Size_Format uses 1 bit. Regenerated_Size uses 5 bits (0-31)."
streams->src += 1; IO_rewind_bits(in, 1);
streams->src_len -= 1; size = IO_read_bits(in, 2);
break; break;
case 1: case 1:
if (streams->src_len < 2) { // "Size_Format uses 2 bits. Regenerated_Size uses 12 bits (0-4095)."
INP_SIZE(); size = IO_read_bits(in, 12);
}
size = read_bits_LE(streams->src, 12, 4);
streams->src += 2;
streams->src_len -= 2;
break; break;
case 3: case 3:
if (streams->src_len < 2) { // "Size_Format uses 2 bits. Regenerated_Size uses 20 bits (0-1048575)."
INP_SIZE(); size = IO_read_bits(in, 20);
}
size = read_bits_LE(streams->src, 20, 4);
streams->src += 3;
streams->src_len -= 3;
break; break;
default: default:
// Impossible // Size format is in range 0-3
size = -1; IMPOSSIBLE();
} }
if (size > MAX_LITERALS_SIZE) { if (size > MAX_LITERALS_SIZE) {
@@ -786,32 +725,28 @@ static size_t decode_literals_simple(io_streams_t *const streams,
} }
switch (block_type) { switch (block_type) {
case 0: case 0: {
// Raw data // Raw data
if (size > streams->src_len) { const u8 *const read_ptr = IO_read_bytes(in, size);
INP_SIZE(); memcpy(*literals, read_ptr, size);
}
memcpy(*literals, streams->src, size);
streams->src += size;
streams->src_len -= size;
break; break;
case 1: }
case 1: {
// Single repeated byte // Single repeated byte
if (1 > streams->src_len) { const u8 *const read_ptr = IO_read_bytes(in, 1);
INP_SIZE(); memset(*literals, read_ptr[0], size);
}
memset(*literals, streams->src[0], size);
streams->src += 1;
streams->src_len -= 1;
break; break;
} }
default:
IMPOSSIBLE();
}
return size; return size;
} }
/// Decodes Huffman compressed literals /// Decodes Huffman compressed literals
static size_t decode_literals_compressed(io_streams_t *const streams, static size_t decode_literals_compressed(frame_context_t *const ctx,
frame_context_t *const ctx, istream_t *const in,
u8 **const literals, u8 **const literals,
const int block_type, const int block_type,
const int size_format) { const int size_format) {
@@ -820,98 +755,78 @@ static size_t decode_literals_compressed(io_streams_t *const streams,
int num_streams = 4; int num_streams = 4;
switch (size_format) { switch (size_format) {
case 0: case 0:
// "A single stream. Both Compressed_Size and Regenerated_Size use 10
// bits (0-1023)."
num_streams = 1; num_streams = 1;
// Fall through as it has the same size format // Fall through as it has the same size format
case 1: case 1:
if (streams->src_len < 3) { // "4 streams. Both Compressed_Size and Regenerated_Size use 10 bits
INP_SIZE(); // (0-1023)."
} regenerated_size = IO_read_bits(in, 10);
regenerated_size = read_bits_LE(streams->src, 10, 4); compressed_size = IO_read_bits(in, 10);
compressed_size = read_bits_LE(streams->src, 10, 14);
streams->src += 3;
streams->src_len -= 3;
break; break;
case 2: case 2:
if (streams->src_len < 4) { // "4 streams. Both Compressed_Size and Regenerated_Size use 14 bits
INP_SIZE(); // (0-16383)."
} regenerated_size = IO_read_bits(in, 14);
regenerated_size = read_bits_LE(streams->src, 14, 4); compressed_size = IO_read_bits(in, 14);
compressed_size = read_bits_LE(streams->src, 14, 18);
streams->src += 4;
streams->src_len -= 4;
break; break;
case 3: case 3:
if (streams->src_len < 5) { // "4 streams. Both Compressed_Size and Regenerated_Size use 18 bits
INP_SIZE(); // (0-262143)."
} regenerated_size = IO_read_bits(in, 18);
regenerated_size = read_bits_LE(streams->src, 18, 4); compressed_size = IO_read_bits(in, 18);
compressed_size = read_bits_LE(streams->src, 18, 22);
streams->src += 5;
streams->src_len -= 5;
break; break;
default: default:
// Impossible // Impossible
compressed_size = regenerated_size = -1; IMPOSSIBLE();
} }
if (regenerated_size > MAX_LITERALS_SIZE || if (regenerated_size > MAX_LITERALS_SIZE ||
compressed_size > regenerated_size) { compressed_size > regenerated_size) {
CORRUPTION(); CORRUPTION();
} }
if (compressed_size > streams->src_len) {
INP_SIZE();
}
*literals = malloc(regenerated_size); *literals = malloc(regenerated_size);
if (!*literals) { if (!*literals) {
BAD_ALLOC(); BAD_ALLOC();
} }
ostream_t lit_stream = IO_make_ostream(*literals, regenerated_size);
istream_t huf_stream = IO_make_sub_istream(in, compressed_size);
if (block_type == 2) { if (block_type == 2) {
// Decode provided Huffman table // Decode provided Huffman table
HUF_free_dtable(&ctx->literals_dtable); HUF_free_dtable(&ctx->literals_dtable);
const size_t size = decode_huf_table(streams->src, compressed_size, decode_huf_table(&huf_stream, &ctx->literals_dtable);
&ctx->literals_dtable);
streams->src += size;
streams->src_len -= size;
compressed_size -= size;
} else { } else {
// If we're to repeat the previous Huffman table, make sure it exists // If the previous Huffman table is being repeated, ensure it exists
if (!ctx->literals_dtable.symbols) { if (!ctx->literals_dtable.symbols) {
CORRUPTION(); CORRUPTION();
} }
} }
size_t symbols_decoded;
if (num_streams == 1) { if (num_streams == 1) {
HUF_decompress_1stream(&ctx->literals_dtable, *literals, symbols_decoded = HUF_decompress_1stream(&ctx->literals_dtable, &lit_stream, &huf_stream);
regenerated_size, streams->src, compressed_size);
} else { } else {
HUF_decompress_4stream(&ctx->literals_dtable, *literals, symbols_decoded = HUF_decompress_4stream(&ctx->literals_dtable, &lit_stream, &huf_stream);
regenerated_size, streams->src, compressed_size); }
if (symbols_decoded != regenerated_size) {
CORRUPTION();
} }
streams->src += compressed_size;
streams->src_len -= compressed_size;
return regenerated_size; return regenerated_size;
} }
// Decode the Huffman table description // Decode the Huffman table description
static size_t decode_huf_table(const u8 *src, size_t src_len, static void decode_huf_table(istream_t *const in, HUF_dtable *const dtable) {
HUF_dtable *const dtable) { const u8 header = IO_read_bits(in, 8);
if (src_len < 1) {
INP_SIZE();
}
const u8 *const osrc = src;
const u8 header = src[0];
u8 weights[HUF_MAX_SYMBS]; u8 weights[HUF_MAX_SYMBS];
memset(weights, 0, sizeof(weights)); memset(weights, 0, sizeof(weights));
src++;
src_len--;
int num_symbs; int num_symbs;
if (header >= 128) { if (header >= 128) {
@@ -919,67 +834,56 @@ static size_t decode_huf_table(const u8 *src, size_t src_len,
num_symbs = header - 127; num_symbs = header - 127;
const size_t bytes = (num_symbs + 1) / 2; const size_t bytes = (num_symbs + 1) / 2;
if (bytes > src_len) { const u8 *const weight_src = IO_read_bytes(in, bytes);
INP_SIZE();
}
for (int i = 0; i < num_symbs; i++) { for (int i = 0; i < num_symbs; i++) {
// read_bits_LE isn't applicable here because the weights are order // read_bits_LE isn't applicable here because the weights are order
// reversed within each byte // reversed within each byte
// https://github.com/facebook/zstd/blob/dev/doc/zstd_compression_format.md#huffman-tree-header // https://github.com/facebook/zstd/blob/dev/doc/zstd_compression_format.md#huffman-tree-header
if (i % 2 == 0) { if (i % 2 == 0) {
weights[i] = src[i / 2] >> 4; weights[i] = weight_src[i / 2] >> 4;
} else { } else {
weights[i] = src[i / 2] & 0xf; weights[i] = weight_src[i / 2] & 0xf;
} }
} }
src += bytes;
src_len -= bytes;
} else { } else {
// The weights are FSE encoded, decode them before we can construct the // The weights are FSE encoded, decode them before we can construct the
// table // table
const size_t size = istream_t fse_stream = IO_make_sub_istream(in, header);
fse_decode_hufweights(src, src_len, weights, &num_symbs, header); ostream_t weight_stream = IO_make_ostream(weights, HUF_MAX_SYMBS);
src += size; fse_decode_hufweights(&weight_stream, &fse_stream, &num_symbs);
src_len -= size;
} }
// Construct the table using the decoded weights // Construct the table using the decoded weights
HUF_init_dtable_usingweights(dtable, weights, num_symbs); HUF_init_dtable_usingweights(dtable, weights, num_symbs);
return src - osrc;
} }
static size_t fse_decode_hufweights(const u8 *const src, const size_t src_len, static void fse_decode_hufweights(ostream_t *weights, istream_t *const in,
u8 *const weights, int *const num_symbs, int *const num_symbs) {
const size_t compressed_size) {
const int MAX_ACCURACY_LOG = 7; const int MAX_ACCURACY_LOG = 7;
FSE_dtable dtable; FSE_dtable dtable;
// Construct the FSE table // Construct the FSE table
const size_t read = FSE_decode_header(&dtable, in, MAX_ACCURACY_LOG);
FSE_decode_header(&dtable, src, src_len, MAX_ACCURACY_LOG);
if (src_len < compressed_size) {
INP_SIZE();
}
// Decode the weights // Decode the weights
*num_symbs = FSE_decompress_interleaved2( *num_symbs = FSE_decompress_interleaved2(&dtable, weights, in);
&dtable, weights, HUF_MAX_SYMBS, src + read, compressed_size - read);
FSE_free_dtable(&dtable); FSE_free_dtable(&dtable);
return compressed_size;
} }
/******* END LITERALS DECODING ************************************************/ /******* END LITERALS DECODING ************************************************/
/******* SEQUENCE DECODING ****************************************************/ /******* SEQUENCE DECODING ****************************************************/
/// The combination of FSE states needed to decode sequences /// The combination of FSE states needed to decode sequences
typedef struct { typedef struct {
u16 ll_state, of_state, ml_state; FSE_dtable ll_table;
FSE_dtable ll_table, of_table, ml_table; FSE_dtable of_table;
FSE_dtable ml_table;
u16 ll_state;
u16 of_state;
u16 ml_state;
} sequence_state_t; } sequence_state_t;
/// Different modes to signal to decode_seq_tables what to do /// Different modes to signal to decode_seq_tables what to do
@@ -1031,47 +935,36 @@ static const u8 SEQ_MATCH_LENGTH_EXTRA_BITS[53] = {
/// Offset decoding is simpler so we just need a maximum code value /// Offset decoding is simpler so we just need a maximum code value
static const u8 SEQ_MAX_CODES[3] = {35, -1, 52}; static const u8 SEQ_MAX_CODES[3] = {35, -1, 52};
static void decompress_sequences(frame_context_t *const ctx, const u8 *src, static void decompress_sequences(frame_context_t *const ctx,
size_t src_len, istream_t *const in,
sequence_command_t *const sequences, sequence_command_t *const sequences,
const size_t num_sequences); const size_t num_sequences);
static sequence_command_t decode_sequence(sequence_state_t *const state, static sequence_command_t decode_sequence(sequence_state_t *const state,
const u8 *const src, const u8 *const src,
i64 *const offset); i64 *const offset);
static size_t decode_seq_table(const u8 *src, size_t src_len, static void decode_seq_table(istream_t *const in, FSE_dtable *const table,
FSE_dtable *const table, const seq_part_t type, const seq_part_t type, const seq_mode_t mode);
const seq_mode_t mode);
static size_t decode_sequences(frame_context_t *const ctx, const u8 *src, static size_t decode_sequences(frame_context_t *const ctx, istream_t *in,
size_t src_len,
sequence_command_t **const sequences) { sequence_command_t **const sequences) {
size_t num_sequences; size_t num_sequences;
// Decode the sequence header and allocate space for the output // Decode the sequence header and allocate space for the output
if (src_len < 1) { u8 header = IO_read_bits(in, 8);
INP_SIZE(); if (header == 0) {
} // "There are no sequences. The sequence section stops there.
if (src[0] == 0) { // Regenerated content is defined entirely by literals section."
*sequences = NULL; *sequences = NULL;
return 0; return 0;
} else if (src[0] < 128) { } else if (header < 128) {
num_sequences = src[0]; // "Number_of_Sequences = byte0 . Uses 1 byte."
src++; num_sequences = header;
src_len--; } else if (header < 255) {
} else if (src[0] < 255) { // "Number_of_Sequences = ((byte0-128) << 8) + byte1 . Uses 2 bytes."
if (src_len < 2) { num_sequences = ((header - 128) << 8) + IO_read_bits(in, 8);
INP_SIZE();
}
num_sequences = ((src[0] - 128) << 8) + src[1];
src += 2;
src_len -= 2;
} else { } else {
if (src_len < 3) { // "Number_of_Sequences = byte1 + (byte2<<8) + 0x7F00 . Uses 3 bytes."
INP_SIZE(); num_sequences = IO_read_bits(in, 16) + 0x7F00;
}
num_sequences = src[1] + ((u64)src[2] << 8) + 0x7F00;
src += 3;
src_len -= 3;
} }
*sequences = malloc(num_sequences * sizeof(sequence_command_t)); *sequences = malloc(num_sequences * sizeof(sequence_command_t));
@@ -1079,51 +972,29 @@ static size_t decode_sequences(frame_context_t *const ctx, const u8 *src,
BAD_ALLOC(); BAD_ALLOC();
} }
decompress_sequences(ctx, src, src_len, *sequences, num_sequences); decompress_sequences(ctx, in, *sequences, num_sequences);
return num_sequences; return num_sequences;
} }
/// Decompress the FSE encoded sequence commands /// Decompress the FSE encoded sequence commands
static void decompress_sequences(frame_context_t *const ctx, const u8 *src, static void decompress_sequences(frame_context_t *const ctx, istream_t *in,
size_t src_len,
sequence_command_t *const sequences, sequence_command_t *const sequences,
const size_t num_sequences) { const size_t num_sequences) {
if (src_len < 1) { u8 compression_modes = IO_read_bits(in, 8);
INP_SIZE();
}
u8 compression_modes = src[0];
src++;
src_len--;
if ((compression_modes & 3) != 0) { if ((compression_modes & 3) != 0) {
CORRUPTION(); CORRUPTION();
} }
{ // Update the tables we have stored in the context
size_t read; decode_seq_table(in, &ctx->ll_dtable, seq_literal_length,
// Update the tables we have stored in the context (compression_modes >> 6) & 3);
read = decode_seq_table(src, src_len, &ctx->ll_dtable,
seq_literal_length,
(compression_modes >> 6) & 3);
src += read;
src_len -= read;
}
{ decode_seq_table(in, &ctx->of_dtable, seq_offset,
const size_t read = (compression_modes >> 4) & 3);
decode_seq_table(src, src_len, &ctx->of_dtable, seq_offset,
(compression_modes >> 4) & 3);
src += read;
src_len -= read;
}
{ decode_seq_table(in, &ctx->ml_dtable, seq_match_length,
const size_t read = decode_seq_table(src, src_len, &ctx->ml_dtable, (compression_modes >> 2) & 3);
seq_match_length,
(compression_modes >> 2) & 3);
src += read;
src_len -= read;
}
// Check to make sure none of the tables are uninitialized // Check to make sure none of the tables are uninitialized
if (!ctx->ll_dtable.symbols || !ctx->of_dtable.symbols || if (!ctx->ll_dtable.symbols || !ctx->of_dtable.symbols ||
@@ -1137,8 +1008,13 @@ static void decompress_sequences(frame_context_t *const ctx, const u8 *src,
memcpy(&state.of_table, &ctx->of_dtable, sizeof(FSE_dtable)); memcpy(&state.of_table, &ctx->of_dtable, sizeof(FSE_dtable));
memcpy(&state.ml_table, &ctx->ml_dtable, sizeof(FSE_dtable)); memcpy(&state.ml_table, &ctx->ml_dtable, sizeof(FSE_dtable));
const int padding = 8 - log2inf(src[src_len - 1]); size_t len = IO_istream_len(in);
i64 offset = src_len * 8 - padding; const u8 *const src = IO_read_bytes(in, len);
// "After writing the last bit containing information, the compressor writes
// a single 1-bit and then fills the byte with 0-7 0 bits of padding."
const int padding = 8 - log2inf(src[len - 1]);
i64 offset = len * 8 - padding;
FSE_init_state(&state.ll_table, &state.ll_state, src, &offset); FSE_init_state(&state.ll_table, &state.ll_state, src, &offset);
FSE_init_state(&state.of_table, &state.of_state, src, &offset); FSE_init_state(&state.of_table, &state.of_state, src, &offset);
@@ -1153,7 +1029,7 @@ static void decompress_sequences(frame_context_t *const ctx, const u8 *src,
CORRUPTION(); CORRUPTION();
} }
// Don't free our tables so they can be used in the next block // Don't free tables so they can be used in the next block
} }
// Decode a single sequence and update the state // Decode a single sequence and update the state
@@ -1194,9 +1070,8 @@ static sequence_command_t decode_sequence(sequence_state_t *const state,
} }
/// Given a sequence part and table mode, decode the FSE distribution /// Given a sequence part and table mode, decode the FSE distribution
static size_t decode_seq_table(const u8 *src, size_t src_len, static void decode_seq_table(istream_t *const in, FSE_dtable *const table,
FSE_dtable *const table, const seq_part_t type, const seq_part_t type, const seq_mode_t mode) {
const seq_mode_t mode) {
// Constant arrays indexed by seq_part_t // Constant arrays indexed by seq_part_t
const i16 *const default_distributions[] = {SEQ_LITERAL_LENGTH_DEFAULT_DIST, const i16 *const default_distributions[] = {SEQ_LITERAL_LENGTH_DEFAULT_DIST,
SEQ_OFFSET_DEFAULT_DIST, SEQ_OFFSET_DEFAULT_DIST,
@@ -1207,7 +1082,7 @@ static size_t decode_seq_table(const u8 *src, size_t src_len,
const size_t max_accuracies[] = {9, 8, 9}; const size_t max_accuracies[] = {9, 8, 9};
if (mode != seq_repeat) { if (mode != seq_repeat) {
// ree old one before overwriting // Free old one before overwriting
FSE_free_dtable(table); FSE_free_dtable(table);
} }
@@ -1218,102 +1093,102 @@ static size_t decode_seq_table(const u8 *src, size_t src_len,
const size_t accuracy_log = default_distribution_accuracies[type]; const size_t accuracy_log = default_distribution_accuracies[type];
FSE_init_dtable(table, distribution, symbs, accuracy_log); FSE_init_dtable(table, distribution, symbs, accuracy_log);
break;
return 0;
} }
case seq_rle: { case seq_rle: {
if (src_len < 1) { const u8 symb = IO_read_bits(in, 8);
INP_SIZE();
}
const u8 symb = src[0];
src++;
src_len--;
FSE_init_dtable_rle(table, symb); FSE_init_dtable_rle(table, symb);
break;
return 1;
} }
case seq_fse: { case seq_fse: {
size_t read = FSE_decode_header(table, in, max_accuracies[type]);
FSE_decode_header(table, src, src_len, max_accuracies[type]); break;
src += read;
src_len -= read;
return read;
} }
case seq_repeat: case seq_repeat:
// Don't have to do anything here as we're not changing the table // Nothing to do here, table will be unchanged
return 0; break;
default: default:
// Impossible, as mode is from 0-3 // Impossible, as mode is from 0-3
return -1; IMPOSSIBLE();
break;
} }
} }
/******* END SEQUENCE DECODING ************************************************/ /******* END SEQUENCE DECODING ************************************************/
/******* SEQUENCE EXECUTION ***************************************************/ /******* SEQUENCE EXECUTION ***************************************************/
static void execute_sequences(io_streams_t *const streams, static void execute_sequences(frame_context_t *const ctx, ostream_t *const out,
frame_context_t *const ctx, const u8 *const literals,
const size_t literals_len,
const sequence_command_t *const sequences, const sequence_command_t *const sequences,
const size_t num_sequences, const size_t num_sequences) {
const u8 *literals, istream_t litstream = IO_make_istream(literals, literals_len);
size_t literals_len) {
u64 *const offset_hist = ctx->previous_offsets; u64 *const offset_hist = ctx->previous_offsets;
size_t total_output = ctx->current_total_output; size_t total_output = ctx->current_total_output;
for (size_t i = 0; i < num_sequences; i++) { for (size_t i = 0; i < num_sequences; i++) {
const sequence_command_t seq = sequences[i]; const sequence_command_t seq = sequences[i];
if (seq.literal_length > literals_len) { {
CORRUPTION(); if (seq.literal_length > IO_istream_len(&litstream)) {
CORRUPTION();
}
u8 *const write_ptr = IO_write_bytes(out, seq.literal_length);
const u8 *const read_ptr =
IO_read_bytes(&litstream, seq.literal_length);
// Copy literals to output
memcpy(write_ptr, read_ptr, seq.literal_length);
total_output += seq.literal_length;
} }
if (streams->dst_len < seq.literal_length + seq.match_length) {
OUT_SIZE();
}
// Copy literals to output
memcpy(streams->dst, literals, seq.literal_length);
literals += seq.literal_length;
literals_len -= seq.literal_length;
streams->dst += seq.literal_length;
streams->dst_len -= seq.literal_length;
total_output += seq.literal_length;
size_t offset; size_t offset;
// Offsets are special, we need to handle the repeat offsets // Offsets are special, we need to handle the repeat offsets
if (seq.offset <= 3) { if (seq.offset <= 3) {
u32 idx = seq.offset; // "The first 3 values define a repeated offset and we will call
// them Repeated_Offset1, Repeated_Offset2, and Repeated_Offset3.
// They are sorted in recency order, with Repeated_Offset1 meaning
// 'most recent one'".
// Use 0 indexing for the array
u32 idx = seq.offset - 1;
if (seq.literal_length == 0) { if (seq.literal_length == 0) {
// Special case when literal length is 0 // "There is an exception though, when current sequence's
// literals length is 0. In this case, repeated offsets are
// shifted by one, so Repeated_Offset1 becomes Repeated_Offset2,
// Repeated_Offset2 becomes Repeated_Offset3, and
// Repeated_Offset3 becomes Repeated_Offset1 - 1_byte."
idx++; idx++;
} }
if (idx == 1) { if (idx == 0) {
offset = offset_hist[1]; offset = offset_hist[0];
} else { } else {
// If idx == 4 then literal length was 0 and the offset was 3 // If idx == 3 then literal length was 0 and the offset was 3,
offset = idx < 4 ? offset_hist[idx] : offset_hist[1] - 1; // as per the exception listed above
offset = idx < 3 ? offset_hist[idx] : offset_hist[0] - 1;
// If idx == 2 we don't need to modify offset_hist[3] // If idx == 1 we don't need to modify offset_hist[2]
if (idx > 2) { if (idx > 1) {
offset_hist[3] = offset_hist[2]; offset_hist[2] = offset_hist[1];
} }
offset_hist[2] = offset_hist[1]; offset_hist[1] = offset_hist[0];
offset_hist[1] = offset; offset_hist[0] = offset;
} }
} else { } else {
offset = seq.offset - 3; offset = seq.offset - 3;
// Shift back history // Shift back history
offset_hist[3] = offset_hist[2];
offset_hist[2] = offset_hist[1]; offset_hist[2] = offset_hist[1];
offset_hist[1] = offset; offset_hist[1] = offset_hist[0];
offset_hist[0] = offset;
} }
size_t match_length = seq.match_length; size_t match_length = seq.match_length;
u8 *write_ptr = IO_write_bytes(out, match_length);
if (total_output <= ctx->header.window_size) { if (total_output <= ctx->header.window_size) {
// In this case offset might go back into the dictionary // In this case offset might go back into the dictionary
if (offset > total_output + ctx->dict_content_len) { if (offset > total_output + ctx->dict_content_len) {
@@ -1322,13 +1197,16 @@ static void execute_sequences(io_streams_t *const streams,
} }
if (offset > total_output) { if (offset > total_output) {
// "The rest of the dictionary is its content. The content act
// as a "past" in front of data to compress or decompress, so it
// can be referenced in sequence commands."
const size_t dict_copy = const size_t dict_copy =
MIN(offset - total_output, match_length); MIN(offset - total_output, match_length);
const size_t dict_offset = const size_t dict_offset =
ctx->dict_content_len - (offset - total_output); ctx->dict_content_len - (offset - total_output);
for (size_t i = 0; i < dict_copy; i++) {
*streams->dst++ = ctx->dict_content[dict_offset + i]; memcpy(write_ptr, ctx->dict_content + dict_offset, dict_copy);
} write_ptr += dict_copy;
match_length -= dict_copy; match_length -= dict_copy;
} }
} else if (offset > ctx->header.window_size) { } else if (offset > ctx->header.window_size) {
@@ -1340,31 +1218,29 @@ static void execute_sequences(io_streams_t *const streams,
// ex: if the output so far was "abc", a command with offset=3 and // ex: if the output so far was "abc", a command with offset=3 and
// match_length=6 would produce "abcabcabc" as the new output // match_length=6 would produce "abcabcabc" as the new output
for (size_t i = 0; i < match_length; i++) { for (size_t i = 0; i < match_length; i++) {
*streams->dst = *(streams->dst - offset); *write_ptr = *(write_ptr - offset);
streams->dst++; write_ptr++;
} }
streams->dst_len -= seq.match_length;
total_output += seq.match_length; total_output += seq.match_length;
} }
if (streams->dst_len < literals_len) { {
OUT_SIZE(); size_t len = IO_istream_len(&litstream);
} u8 *const write_ptr = IO_write_bytes(out, len);
// Copy any leftover literals const u8 *const read_ptr = IO_read_bytes(&litstream, len);
memcpy(streams->dst, literals, literals_len); // Copy any leftover literals
streams->dst += literals_len; memcpy(write_ptr, read_ptr, len);
streams->dst_len -= literals_len;
total_output += literals_len; total_output += len;
}
ctx->current_total_output = total_output; ctx->current_total_output = total_output;
} }
/******* END SEQUENCE EXECUTION ***********************************************/ /******* END SEQUENCE EXECUTION ***********************************************/
/******* OUTPUT SIZE COUNTING *************************************************/ /******* OUTPUT SIZE COUNTING *************************************************/
size_t traverse_frame(const frame_header_t *const header, const u8 *src, static void traverse_frame(const frame_header_t *const header, istream_t *const in);
size_t src_len);
/// Get the decompressed size of an input stream so memory can be allocated in /// Get the decompressed size of an input stream so memory can be allocated in
/// advance. /// advance.
@@ -1372,115 +1248,75 @@ size_t traverse_frame(const frame_header_t *const header, const u8 *src,
/// implementation, as this API allows for the decompression of multiple /// implementation, as this API allows for the decompression of multiple
/// concatenated frames. /// concatenated frames.
size_t ZSTD_get_decompressed_size(const void *src, const size_t src_len) { size_t ZSTD_get_decompressed_size(const void *src, const size_t src_len) {
const u8 *ip = (const u8 *) src; istream_t in = IO_make_istream(src, src_len);
size_t ip_len = src_len; size_t dst_size = 0;
size_t dst_size = 0;
// Each frame header only gives us the size of its frame, so iterate over all // Each frame header only gives us the size of its frame, so iterate over
// frames // all
while (ip_len > 0) { // frames
if (ip_len < 4) { while (IO_istream_len(&in) > 0) {
INP_SIZE(); const u32 magic_number = IO_read_bits(&in, 32);
if ((magic_number & ~0xFU) == 0x184D2A50U) {
// skippable frame, this has no impact on output size
const size_t frame_size = IO_read_bits(&in, 32);
IO_advance_input(&in, frame_size);
} else if (magic_number == 0xFD2FB528U) {
// ZSTD frame
frame_header_t header;
parse_frame_header(&header, &in);
if (header.frame_content_size == 0 && !header.single_segment_flag) {
// Content size not provided, we can't tell
return -1;
}
dst_size += header.frame_content_size;
// Consume the input from the frame to reach the start of the next
traverse_frame(&header, &in);
} else {
// not a real frame
ERROR("Invalid magic number");
}
} }
const u32 magic_number = read_bits_LE(ip, 32, 0); return dst_size;
ip += 4;
ip_len -= 4;
if (magic_number >= 0x184D2A50U && magic_number <= 0x184D2A5F) {
// skippable frame, this has no impact on output size
if (ip_len < 4) {
INP_SIZE();
}
const size_t frame_size = read_bits_LE(ip, 32, 32);
if (ip_len < 4 + frame_size) {
INP_SIZE();
}
// skip over frame
ip += 4 + frame_size;
ip_len -= 4 + frame_size;
} else if (magic_number == 0xFD2FB528U) {
// ZSTD frame
frame_header_t header;
parse_frame_header(&header, ip, ip_len);
if (header.frame_content_size == 0 && !header.single_segment_flag) {
// Content size not provided, we can't tell
return -1;
}
dst_size += header.frame_content_size;
// we need to traverse the frame to find when the next one starts
const size_t traversed = traverse_frame(&header, ip, ip_len);
ip += traversed;
ip_len -= traversed;
} else {
// not a real frame
ERROR("Invalid magic number");
}
}
return dst_size;
} }
/// Iterate over each block in a frame to find the end of it, to get to the /// Iterate over each block in a frame to find the end of it, to get to the
/// start of the next frame /// start of the next frame
size_t traverse_frame(const frame_header_t *const header, const u8 *src, static void traverse_frame(const frame_header_t *const header, istream_t *const in) {
size_t src_len) {
const u8 *const src_beg = src;
const u8 *const src_end = src + src_len;
src += header->header_size;
src_len += header->header_size;
int last_block = 0; int last_block = 0;
do { do {
if (src + 3 > src_end) {
INP_SIZE();
}
// Parse the block header // Parse the block header
last_block = src[0] & 1; last_block = IO_read_bits(in, 1);
const int block_type = (src[0] >> 1) & 3; const int block_type = IO_read_bits(in, 2);
const size_t block_len = read_bits_LE(src, 21, 3); const size_t block_len = IO_read_bits(in, 21);
src += 3;
switch (block_type) { switch (block_type) {
case 0: // Raw block, block_len bytes case 0: // Raw block, block_len bytes
if (src + block_len > src_end) { IO_advance_input(in, block_len);
INP_SIZE();
}
src += block_len;
break; break;
case 1: // RLE block, 1 byte case 1: // RLE block, 1 byte
if (src + 1 > src_end) { IO_advance_input(in, 1);
INP_SIZE();
}
src++;
break; break;
case 2: // Compressed block, compressed size is block_len case 2: // Compressed block, compressed size is block_len
if (src + block_len > src_end) { IO_advance_input(in, block_len);
INP_SIZE();
}
src += block_len;
break; break;
case 3: case 3:
// Reserved block type // Reserved block type
CORRUPTION(); CORRUPTION();
break; break;
default:
IMPOSSIBLE();
} }
} while (!last_block); } while (!last_block);
if (header->content_checksum_flag) { if (header->content_checksum_flag) {
if (src + 4 > src_end) { IO_advance_input(in, 4);
INP_SIZE();
}
src += 4;
} }
return src - src_beg;
} }
/******* END OUTPUT SIZE COUNTING *********************************************/ /******* END OUTPUT SIZE COUNTING *********************************************/
@@ -1495,68 +1331,46 @@ static void parse_dictionary(dictionary_t *const dict, const u8 *src,
if (src_len < 8) { if (src_len < 8) {
INP_SIZE(); INP_SIZE();
} }
const u32 magic_number = read_bits_LE(src, 32, 0);
istream_t in = IO_make_istream(src, src_len);
const u32 magic_number = IO_read_bits(&in, 32);
if (magic_number != 0xEC30A437) { if (magic_number != 0xEC30A437) {
// raw content dict // raw content dict
init_raw_content_dict(dict, src, src_len); init_raw_content_dict(dict, src, src_len);
return; return;
} }
dict->dictionary_id = read_bits_LE(src, 32, 32);
src += 8; dict->dictionary_id = IO_read_bits(&in, 32);
src_len -= 8;
// Parse the provided entropy tables in order // Parse the provided entropy tables in order
{ decode_huf_table(&in, &dict->literals_dtable);
const size_t read = decode_seq_table(&in, &dict->of_dtable, seq_offset, seq_fse);
decode_huf_table(src, src_len, &dict->literals_dtable); decode_seq_table(&in, &dict->ml_dtable, seq_match_length, seq_fse);
src += read; decode_seq_table(&in, &dict->ll_dtable, seq_literal_length, seq_fse);
src_len -= read;
}
{
const size_t read = decode_seq_table(src, src_len, &dict->of_dtable,
seq_offset, seq_fse);
src += read;
src_len -= read;
}
{
const size_t read = decode_seq_table(src, src_len, &dict->ml_dtable,
seq_match_length, seq_fse);
src += read;
src_len -= read;
}
{
const size_t read = decode_seq_table(src, src_len, &dict->ll_dtable,
seq_literal_length, seq_fse);
src += read;
src_len -= read;
}
if (src_len < 12) {
INP_SIZE();
}
// Read in the previous offset history // Read in the previous offset history
dict->previous_offsets[1] = read_bits_LE(src, 32, 0); dict->previous_offsets[0] = IO_read_bits(&in, 32);
dict->previous_offsets[2] = read_bits_LE(src, 32, 32); dict->previous_offsets[1] = IO_read_bits(&in, 32);
dict->previous_offsets[3] = read_bits_LE(src, 32, 64); dict->previous_offsets[2] = IO_read_bits(&in, 32);
src += 12;
src_len -= 12;
// Ensure the provided offsets aren't too large // Ensure the provided offsets aren't too large
for (int i = 1; i <= 3; i++) { for (int i = 0; i < 3; i++) {
if (dict->previous_offsets[i] > src_len) { if (dict->previous_offsets[i] > src_len) {
ERROR("Dictionary corrupted"); ERROR("Dictionary corrupted");
} }
} }
// The rest is the content // The rest is the content
dict->content = malloc(src_len); dict->content_size = IO_istream_len(&in);
dict->content = malloc(dict->content_size);
if (!dict->content) { if (!dict->content) {
BAD_ALLOC(); BAD_ALLOC();
} }
dict->content_size = src_len; const u8 *const content = IO_read_bytes(&in, dict->content_size);
memcpy(dict->content, src, src_len);
memcpy(dict->content, content, dict->content_size);
} }
/// If parse_dictionary is given a raw content dictionary, it delegates here /// If parse_dictionary is given a raw content dictionary, it delegates here
@@ -1586,6 +1400,143 @@ static void free_dictionary(dictionary_t *const dict) {
} }
/******* END DICTIONARY PARSING ***********************************************/ /******* END DICTIONARY PARSING ***********************************************/
/******* IO STREAM OPERATIONS *************************************************/
#define UNALIGNED() ERROR("Attempting to operate on a non-byte aligned stream")
/// Reads `num` bits from a bitstream, and updates the internal offset
static inline u64 IO_read_bits(istream_t *const in, const int num) {
if (num > 64) {
return -1;
}
const size_t bytes = (num + in->bit_offset + 7) / 8;
const size_t full_bytes = (num + in->bit_offset) / 8;
if (bytes > in->len) {
INP_SIZE();
}
const u64 result = read_bits_LE(in->ptr, num, in->bit_offset);
in->bit_offset = (num + in->bit_offset) % 8;
in->ptr += full_bytes;
in->len -= full_bytes;
return result;
}
/// If a non-zero number of bits have been read from the current byte, advance
/// the offset to the next byte
static inline void IO_rewind_bits(istream_t *const in, int num) {
if (num < 0) {
ERROR("Attempting to rewind stream by a negative number of bits");
}
const int new_offset = in->bit_offset - num;
const i64 bytes = (new_offset - 7) / 8;
in->ptr += bytes;
in->len -= bytes;
in->bit_offset = ((new_offset % 8) + 8) % 8;
}
/// If the remaining bits in a byte will be unused, advance to the end of the
/// byte
static inline void IO_align_stream(istream_t *const in) {
if (in->bit_offset != 0) {
if (in->len == 0) {
INP_SIZE();
}
in->ptr++;
in->len--;
in->bit_offset = 0;
}
}
/// Write the given byte into the output stream
static inline void IO_write_byte(ostream_t *const out, u8 symb) {
if (out->len == 0) {
OUT_SIZE();
}
out->ptr[0] = symb;
out->ptr++;
out->len--;
}
/// Returns the number of bytes left to be read in this stream. The stream must
/// be byte aligned.
static inline size_t IO_istream_len(const istream_t *const in) {
return in->len;
}
/// Returns a pointer where `len` bytes can be read, and advances the internal
/// state. The stream must be byte aligned.
static inline const u8 *IO_read_bytes(istream_t *const in, size_t len) {
if (len > in->len) {
INP_SIZE();
}
if (in->bit_offset != 0) {
UNALIGNED();
}
const u8 *const ptr = in->ptr;
in->ptr += len;
in->len -= len;
return ptr;
}
/// Returns a pointer to write `len` bytes to, and advances the internal state
static inline u8 *IO_write_bytes(ostream_t *const out, size_t len) {
if (len > out->len) {
INP_SIZE();
}
u8 *const ptr = out->ptr;
out->ptr += len;
out->len -= len;
return ptr;
}
/// Advance the inner state by `len` bytes
static inline void IO_advance_input(istream_t *const in, size_t len) {
if (len > in->len) {
INP_SIZE();
}
if (in->bit_offset != 0) {
UNALIGNED();
}
in->ptr += len;
in->len -= len;
}
/// Returns an `ostream_t` constructed from the given pointer and length
static inline ostream_t IO_make_ostream(u8 *out, size_t len) {
return (ostream_t) { out, len };
}
/// Returns an `istream_t` constructed from the given pointer and length
static inline istream_t IO_make_istream(const u8 *in, size_t len) {
return (istream_t) { in, 0, len };
}
/// Returns an `istream_t` with the same base as `in`, and length `len`
/// Then, advance `in` to account for the consumed bytes
/// `in` must be byte aligned
static inline istream_t IO_make_sub_istream(istream_t *const in, size_t len) {
if (len > in->len) {
INP_SIZE();
}
if (in->bit_offset != 0) {
UNALIGNED();
}
const istream_t sub = { in->ptr, in->bit_offset, len };
in->ptr += len;
in->len -= len;
return sub;
}
/******* END IO STREAM OPERATIONS *********************************************/
/******* BITSTREAM OPERATIONS *************************************************/ /******* BITSTREAM OPERATIONS *************************************************/
/// Read `num` bits (up to 64) from `src + offset`, where `offset` is in bits /// Read `num` bits (up to 64) from `src + offset`, where `offset` is in bits
static inline u64 read_bits_LE(const u8 *src, const int num, static inline u64 read_bits_LE(const u8 *src, const int num,
@@ -1676,28 +1627,29 @@ static inline void HUF_init_state(const HUF_dtable *const dtable,
*state = STREAM_read_bits(src, bits, offset); *state = STREAM_read_bits(src, bits, offset);
} }
static size_t HUF_decompress_1stream(const HUF_dtable *const dtable, u8 *dst, static size_t HUF_decompress_1stream(const HUF_dtable *const dtable,
const size_t dst_len, const u8 *src, ostream_t *const out,
size_t src_len) { istream_t *const in) {
const u8 *const dst_max = dst + dst_len; const size_t len = IO_istream_len(in);
const u8 *const odst = dst; if (len == 0) {
INP_SIZE();
}
const u8 *const src = IO_read_bytes(in, len);
// To maintain similarity with FSE, start from the end // To maintain similarity with FSE, start from the end
// Find the last 1 bit // Find the last 1 bit
const int padding = 8 - log2inf(src[src_len - 1]); const int padding = 8 - log2inf(src[len - 1]);
i64 offset = src_len * 8 - padding; i64 offset = len * 8 - padding;
u16 state; u16 state;
HUF_init_state(dtable, &state, src, &offset); HUF_init_state(dtable, &state, src, &offset);
while (dst < dst_max && offset > -dtable->max_bits) { size_t symbols_written = 0;
while (offset > -dtable->max_bits) {
// Iterate over the stream, decoding one symbol at a time // Iterate over the stream, decoding one symbol at a time
*dst++ = HUF_decode_symbol(dtable, &state, src, &offset); IO_write_byte(out, HUF_decode_symbol(dtable, &state, src, &offset));
} symbols_written++;
// If we stopped before consuming all the input, we didn't have enough space
if (dst == dst_max && offset > -dtable->max_bits) {
OUT_SIZE();
} }
// When all symbols have been decoded, the final state value shouldn't have // When all symbols have been decoded, the final state value shouldn't have
@@ -1709,50 +1661,30 @@ static size_t HUF_decompress_1stream(const HUF_dtable *const dtable, u8 *dst,
CORRUPTION(); CORRUPTION();
} }
return dst - odst; return symbols_written;
} }
static size_t HUF_decompress_4stream(const HUF_dtable *const dtable, u8 *dst, static size_t HUF_decompress_4stream(const HUF_dtable *const dtable,
const size_t dst_len, const u8 *const src, ostream_t *const out, istream_t *const in) {
const size_t src_len) { const size_t csize1 = IO_read_bits(in, 16);
if (src_len < 6) { const size_t csize2 = IO_read_bits(in, 16);
INP_SIZE(); const size_t csize3 = IO_read_bits(in, 16);
}
const u8 *const src1 = src + 6; istream_t in1 = IO_make_sub_istream(in, csize1);
const u8 *const src2 = src1 + read_bits_LE(src, 16, 0); istream_t in2 = IO_make_sub_istream(in, csize2);
const u8 *const src3 = src2 + read_bits_LE(src, 16, 16); istream_t in3 = IO_make_sub_istream(in, csize3);
const u8 *const src4 = src3 + read_bits_LE(src, 16, 32); istream_t in4 = IO_make_sub_istream(in, IO_istream_len(in));
const u8 *const src_end = src + src_len;
// We can't test with all 4 sizes because the 4th size is a function of the
// other 3 and the provided length
if (src4 - src >= src_len) {
INP_SIZE();
}
const size_t segment_size = (dst_len + 3) / 4;
u8 *const dst1 = dst;
u8 *const dst2 = dst1 + segment_size;
u8 *const dst3 = dst2 + segment_size;
u8 *const dst4 = dst3 + segment_size;
u8 *const dst_end = dst + dst_len;
size_t total_out = 0;
size_t total_output = 0;
// Decode each stream independently for simplicity // Decode each stream independently for simplicity
// If we wanted to we could decode all 4 at the same time for speed, // If we wanted to we could decode all 4 at the same time for speed,
// utilizing more execution units // utilizing more execution units
total_out += HUF_decompress_1stream(dtable, dst1, segment_size, src1, total_output += HUF_decompress_1stream(dtable, out, &in1);
src2 - src1); total_output += HUF_decompress_1stream(dtable, out, &in2);
total_out += HUF_decompress_1stream(dtable, dst2, segment_size, src2, total_output += HUF_decompress_1stream(dtable, out, &in3);
src3 - src2); total_output += HUF_decompress_1stream(dtable, out, &in4);
total_out += HUF_decompress_1stream(dtable, dst3, segment_size, src3,
src4 - src3);
total_out += HUF_decompress_1stream(dtable, dst4, dst_end - dst4, src4,
src_end - src4);
return total_out; return total_output;
} }
static void HUF_init_dtable(HUF_dtable *const table, const u8 *const bits, static void HUF_init_dtable(HUF_dtable *const table, const u8 *const bits,
@@ -1827,6 +1759,10 @@ static void HUF_init_dtable_usingweights(HUF_dtable *const table,
u64 weight_sum = 0; u64 weight_sum = 0;
for (int i = 0; i < num_symbs; i++) { for (int i = 0; i < num_symbs; i++) {
// Weights are in the same range as bit count
if (weights[i] > HUF_MAX_BITS) {
CORRUPTION();
}
weight_sum += weights[i] > 0 ? (u64)1 << (weights[i] - 1) : 0; weight_sum += weights[i] > 0 ? (u64)1 << (weights[i] - 1) : 0;
} }
@@ -1913,20 +1849,17 @@ static inline void FSE_init_state(const FSE_dtable *const dtable,
} }
static size_t FSE_decompress_interleaved2(const FSE_dtable *const dtable, static size_t FSE_decompress_interleaved2(const FSE_dtable *const dtable,
u8 *dst, const size_t dst_len, ostream_t *const out,
const u8 *const src, istream_t *const in) {
const size_t src_len) { const size_t len = IO_istream_len(in);
if (src_len == 0) { if (len == 0) {
INP_SIZE(); INP_SIZE();
} }
const u8 *const src = IO_read_bytes(in, len);
const u8 *const dst_max = dst + dst_len;
const u8 *const odst = dst;
// Find the last 1 bit // Find the last 1 bit
const int padding = 8 - log2inf(src[src_len - 1]); const int padding = 8 - log2inf(src[len - 1]);
i64 offset = len * 8 - padding;
i64 offset = src_len * 8 - padding;
// The end of the stream contains the 2 states, in this order // The end of the stream contains the 2 states, in this order
u16 state1, state2; u16 state1, state2;
@@ -1936,30 +1869,28 @@ static size_t FSE_decompress_interleaved2(const FSE_dtable *const dtable,
// Decode until we overflow the stream // Decode until we overflow the stream
// Since we decode in reverse order, overflowing the stream is offset going // Since we decode in reverse order, overflowing the stream is offset going
// negative // negative
size_t symbols_written = 0;
while (1) { while (1) {
if (dst > dst_max - 2) { IO_write_byte(out, FSE_decode_symbol(dtable, &state1, src, &offset));
OUT_SIZE(); symbols_written++;
}
*dst++ = FSE_decode_symbol(dtable, &state1, src, &offset);
if (offset < 0) { if (offset < 0) {
// There's still a symbol to decode in state2 // There's still a symbol to decode in state2
*dst++ = FSE_peek_symbol(dtable, state2); IO_write_byte(out, FSE_peek_symbol(dtable, state2));
symbols_written++;
break; break;
} }
if (dst > dst_max - 2) { IO_write_byte(out, FSE_decode_symbol(dtable, &state2, src, &offset));
OUT_SIZE(); symbols_written++;
}
*dst++ = FSE_decode_symbol(dtable, &state2, src, &offset);
if (offset < 0) { if (offset < 0) {
// There's still a symbol to decode in state1 // There's still a symbol to decode in state1
*dst++ = FSE_peek_symbol(dtable, state1); IO_write_byte(out, FSE_peek_symbol(dtable, state1));
symbols_written++;
break; break;
} }
} }
// Number of symbols read return symbols_written;
return dst - odst;
} }
static void FSE_init_dtable(FSE_dtable *const dtable, static void FSE_init_dtable(FSE_dtable *const dtable,
@@ -2042,17 +1973,13 @@ static void FSE_init_dtable(FSE_dtable *const dtable,
/// Decode an FSE header as defined in the Zstandard format specification and /// Decode an FSE header as defined in the Zstandard format specification and
/// use the decoded frequencies to initialize a decoding table. /// use the decoded frequencies to initialize a decoding table.
static size_t FSE_decode_header(FSE_dtable *const dtable, const u8 *const src, static void FSE_decode_header(FSE_dtable *const dtable, istream_t *const in,
const size_t src_len,
const int max_accuracy_log) { const int max_accuracy_log) {
if (max_accuracy_log > FSE_MAX_ACCURACY_LOG) { if (max_accuracy_log > FSE_MAX_ACCURACY_LOG) {
ERROR("FSE accuracy too large"); ERROR("FSE accuracy too large");
} }
if (src_len < 1) {
INP_SIZE();
}
const int accuracy_log = 5 + read_bits_LE(src, 4, 0); const int accuracy_log = 5 + IO_read_bits(in, 4);
if (accuracy_log > max_accuracy_log) { if (accuracy_log > max_accuracy_log) {
ERROR("FSE accuracy too large"); ERROR("FSE accuracy too large");
} }
@@ -2062,14 +1989,11 @@ static size_t FSE_decode_header(FSE_dtable *const dtable, const u8 *const src,
i16 frequencies[FSE_MAX_SYMBS]; i16 frequencies[FSE_MAX_SYMBS];
int symb = 0; int symb = 0;
// Offset of 4 because 4 bits were already read in for accuracy
size_t offset = 4;
while (remaining > 1 && symb < FSE_MAX_SYMBS) { while (remaining > 1 && symb < FSE_MAX_SYMBS) {
// Log of the number of possible values we could read // Log of the number of possible values we could read
int bits = log2inf(remaining) + 1; int bits = log2inf(remaining) + 1;
u16 val = read_bits_LE(src, bits, offset); u16 val = IO_read_bits(in, bits);
offset += bits;
// Try to mask out the lower bits to see if it qualifies for the "small // Try to mask out the lower bits to see if it qualifies for the "small
// value" threshold // value" threshold
@@ -2077,7 +2001,7 @@ static size_t FSE_decode_header(FSE_dtable *const dtable, const u8 *const src,
const u16 threshold = ((u16)1 << bits) - 1 - remaining; const u16 threshold = ((u16)1 << bits) - 1 - remaining;
if ((val & lower_mask) < threshold) { if ((val & lower_mask) < threshold) {
offset--; IO_rewind_bits(in, 1);
val = val & lower_mask; val = val & lower_mask;
} else if (val > lower_mask) { } else if (val > lower_mask) {
val = val - threshold; val = val - threshold;
@@ -2093,22 +2017,21 @@ static size_t FSE_decode_header(FSE_dtable *const dtable, const u8 *const src,
// Handle the special probability = 0 case // Handle the special probability = 0 case
if (proba == 0) { if (proba == 0) {
// Read the next two bits to see how many more 0s // Read the next two bits to see how many more 0s
int repeat = read_bits_LE(src, 2, offset); int repeat = IO_read_bits(in, 2);
offset += 2;
while (1) { while (1) {
for (int i = 0; i < repeat && symb < FSE_MAX_SYMBS; i++) { for (int i = 0; i < repeat && symb < FSE_MAX_SYMBS; i++) {
frequencies[symb++] = 0; frequencies[symb++] = 0;
} }
if (repeat == 3) { if (repeat == 3) {
repeat = read_bits_LE(src, 2, offset); repeat = IO_read_bits(in, 2);
offset += 2;
} else { } else {
break; break;
} }
} }
} }
} }
IO_align_stream(in);
if (remaining != 1 || symb >= FSE_MAX_SYMBS) { if (remaining != 1 || symb >= FSE_MAX_SYMBS) {
CORRUPTION(); CORRUPTION();
@@ -2116,8 +2039,6 @@ static size_t FSE_decode_header(FSE_dtable *const dtable, const u8 *const src,
// Initialize the decoding table using the determined weights // Initialize the decoding table using the determined weights
FSE_init_dtable(dtable, frequencies, symb, accuracy_log); FSE_init_dtable(dtable, frequencies, symb, accuracy_log);
return (offset + 7) / 8;
} }
static void FSE_init_dtable_rle(FSE_dtable *const dtable, const u8 symb) { static void FSE_init_dtable_rle(FSE_dtable *const dtable, const u8 symb) {