/* Lzlib - Compression library for the lzip format Copyright (C) 2009-2016 Antonio Diaz Diaz. This library is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library. If not, see . As a special exception, you may use this file as part of a free software library without restriction. Specifically, if other files instantiate templates or use macros or inline functions from this file, or you compile this file and link it with other files to produce an executable, this file does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License. */ enum { rd_min_available_bytes = 8 }; struct Range_decoder { struct Circular_buffer cb; /* input buffer */ unsigned long long member_position; uint32_t code; uint32_t range; bool at_stream_end; bool reload_pending; }; static inline bool Rd_init( struct Range_decoder * const rdec ) { if( !Cb_init( &rdec->cb, 65536 + rd_min_available_bytes ) ) return false; rdec->member_position = 0; rdec->code = 0; rdec->range = 0xFFFFFFFFU; rdec->at_stream_end = false; rdec->reload_pending = false; return true; } static inline void Rd_free( struct Range_decoder * const rdec ) { Cb_free( &rdec->cb ); } static inline bool Rd_finished( const struct Range_decoder * const rdec ) { return rdec->at_stream_end && !Cb_used_bytes( &rdec->cb ); } static inline void Rd_finish( struct Range_decoder * const rdec ) { rdec->at_stream_end = true; } static inline bool Rd_enough_available_bytes( const struct Range_decoder * const rdec ) { return ( Cb_used_bytes( &rdec->cb ) >= rd_min_available_bytes ); } static inline unsigned Rd_available_bytes( const struct Range_decoder * const rdec ) { return Cb_used_bytes( &rdec->cb ); } static inline unsigned Rd_free_bytes( const struct Range_decoder * const rdec ) { if( rdec->at_stream_end ) return 0; return Cb_free_bytes( &rdec->cb ); } static inline unsigned long long Rd_purge( struct Range_decoder * const rdec ) { const unsigned long long size = rdec->member_position + Cb_used_bytes( &rdec->cb ); Cb_reset( &rdec->cb ); rdec->member_position = 0; rdec->at_stream_end = true; return size; } static inline void Rd_reset( struct Range_decoder * const rdec ) { Cb_reset( &rdec->cb ); rdec->member_position = 0; rdec->at_stream_end = false; } /* Seeks a member header and updates 'get'. '*skippedp' is set to the number of bytes skipped. Returns true if it finds a valid header. */ static bool Rd_find_header( struct Range_decoder * const rdec, int * const skippedp ) { *skippedp = 0; while( rdec->cb.get != rdec->cb.put ) { if( rdec->cb.buffer[rdec->cb.get] == magic_string[0] ) { unsigned get = rdec->cb.get; int i; File_header header; for( i = 0; i < Fh_size; ++i ) { if( get == rdec->cb.put ) return false; /* not enough data */ header[i] = rdec->cb.buffer[get]; if( ++get >= rdec->cb.buffer_size ) get = 0; } if( Fh_verify( header ) ) return true; } if( ++rdec->cb.get >= rdec->cb.buffer_size ) rdec->cb.get = 0; ++*skippedp; } return false; } static inline int Rd_write_data( struct Range_decoder * const rdec, const uint8_t * const inbuf, const int size ) { if( rdec->at_stream_end || size <= 0 ) return 0; return Cb_write_data( &rdec->cb, inbuf, size ); } static inline uint8_t Rd_get_byte( struct Range_decoder * const rdec ) { ++rdec->member_position; return Cb_get_byte( &rdec->cb ); } static inline int Rd_read_data( struct Range_decoder * const rdec, uint8_t * const outbuf, const int size ) { const int sz = Cb_read_data( &rdec->cb, outbuf, size ); if( sz > 0 ) rdec->member_position += sz; return sz; } static inline bool Rd_unread_data( struct Range_decoder * const rdec, const unsigned size ) { if( size > rdec->member_position || !Cb_unread_data( &rdec->cb, size ) ) return false; rdec->member_position -= size; return true; } static bool Rd_try_reload( struct Range_decoder * const rdec, const bool force ) { if( force ) rdec->reload_pending = true; if( rdec->reload_pending && Rd_available_bytes( rdec ) >= 5 ) { int i; rdec->reload_pending = false; rdec->code = 0; for( i = 0; i < 5; ++i ) rdec->code = (rdec->code << 8) | Rd_get_byte( rdec ); rdec->range = 0xFFFFFFFFU; rdec->code &= rdec->range; /* make sure that first byte is discarded */ } return !rdec->reload_pending; } static inline void Rd_normalize( struct Range_decoder * const rdec ) { if( rdec->range <= 0x00FFFFFFU ) { rdec->range <<= 8; rdec->code = (rdec->code << 8) | Rd_get_byte( rdec ); } } static inline int Rd_decode( struct Range_decoder * const rdec, const int num_bits ) { int symbol = 0; int i; for( i = num_bits; i > 0; --i ) { uint32_t mask; Rd_normalize( rdec ); rdec->range >>= 1; /* symbol <<= 1; */ /* if( rdec->code >= rdec->range ) { rdec->code -= rdec->range; symbol |= 1; } */ mask = 0U - (rdec->code < rdec->range); rdec->code -= rdec->range; rdec->code += rdec->range & mask; symbol = (symbol << 1) + (mask + 1); } return symbol; } static inline int Rd_decode_bit( struct Range_decoder * const rdec, Bit_model * const probability ) { uint32_t bound; Rd_normalize( rdec ); bound = ( rdec->range >> bit_model_total_bits ) * *probability; if( rdec->code < bound ) { rdec->range = bound; *probability += (bit_model_total - *probability) >> bit_model_move_bits; return 0; } else { rdec->range -= bound; rdec->code -= bound; *probability -= *probability >> bit_model_move_bits; return 1; } } static inline int Rd_decode_tree( struct Range_decoder * const rdec, Bit_model bm[], const int num_bits ) { int symbol = 1; int i; for( i = num_bits; i > 0; --i ) symbol = ( symbol << 1 ) | Rd_decode_bit( rdec, &bm[symbol] ); return symbol - (1 << num_bits); } static inline int Rd_decode_tree6( struct Range_decoder * const rdec, Bit_model bm[] ) { int symbol = 1; symbol = ( symbol << 1 ) | Rd_decode_bit( rdec, &bm[symbol] ); symbol = ( symbol << 1 ) | Rd_decode_bit( rdec, &bm[symbol] ); symbol = ( symbol << 1 ) | Rd_decode_bit( rdec, &bm[symbol] ); symbol = ( symbol << 1 ) | Rd_decode_bit( rdec, &bm[symbol] ); symbol = ( symbol << 1 ) | Rd_decode_bit( rdec, &bm[symbol] ); symbol = ( symbol << 1 ) | Rd_decode_bit( rdec, &bm[symbol] ); return symbol & 0x3F; } static inline int Rd_decode_tree_reversed( struct Range_decoder * const rdec, Bit_model bm[], const int num_bits ) { int model = 1; int symbol = 0; int i; for( i = 0; i < num_bits; ++i ) { const bool bit = Rd_decode_bit( rdec, &bm[model] ); model <<= 1; if( bit ) { ++model; symbol |= (1 << i); } } return symbol; } static inline int Rd_decode_tree_reversed4( struct Range_decoder * const rdec, Bit_model bm[] ) { int model = 1; int symbol = Rd_decode_bit( rdec, &bm[model] ); int bit; model = (model << 1) + symbol; bit = Rd_decode_bit( rdec, &bm[model] ); model = (model << 1) + bit; symbol |= (bit << 1); bit = Rd_decode_bit( rdec, &bm[model] ); model = (model << 1) + bit; symbol |= (bit << 2); if( Rd_decode_bit( rdec, &bm[model] ) ) symbol |= 8; return symbol; } static inline int Rd_decode_matched( struct Range_decoder * const rdec, Bit_model bm[], int match_byte ) { Bit_model * const bm1 = bm + 0x100; int symbol = 1; while( symbol < 0x100 ) { int match_bit, bit; match_byte <<= 1; match_bit = match_byte & 0x100; bit = Rd_decode_bit( rdec, &bm1[match_bit+symbol] ); symbol = ( symbol << 1 ) | bit; if( match_bit != bit << 8 ) { while( symbol < 0x100 ) symbol = ( symbol << 1 ) | Rd_decode_bit( rdec, &bm[symbol] ); break; } } return symbol & 0xFF; } static inline int Rd_decode_len( struct Range_decoder * const rdec, struct Len_model * const lm, const int pos_state ) { if( Rd_decode_bit( rdec, &lm->choice1 ) == 0 ) return Rd_decode_tree( rdec, lm->bm_low[pos_state], len_low_bits ); if( Rd_decode_bit( rdec, &lm->choice2 ) == 0 ) return len_low_symbols + Rd_decode_tree( rdec, lm->bm_mid[pos_state], len_mid_bits ); return len_low_symbols + len_mid_symbols + Rd_decode_tree( rdec, lm->bm_high, len_high_bits ); } enum { lzd_min_free_bytes = max_match_len }; struct LZ_decoder { struct Circular_buffer cb; unsigned long long partial_data_pos; struct Range_decoder * rdec; unsigned dictionary_size; uint32_t crc; bool member_finished; bool verify_trailer_pending; bool pos_wrapped; unsigned rep0; /* rep[0-3] latest four distances */ unsigned rep1; /* used for efficient coding of */ unsigned rep2; /* repeated distances */ unsigned rep3; State state; Bit_model bm_literal[1<cb ) >= lzd_min_free_bytes; } static inline uint8_t LZd_peek_prev( const struct LZ_decoder * const d ) { const unsigned i = ( ( d->cb.put > 0 ) ? d->cb.put : d->cb.buffer_size ) - 1; return d->cb.buffer[i]; } static inline uint8_t LZd_peek( const struct LZ_decoder * const d, const unsigned distance ) { unsigned i = d->cb.put - distance - 1; if( d->cb.put <= distance ) i += d->cb.buffer_size; return d->cb.buffer[i]; } static inline void LZd_put_byte( struct LZ_decoder * const d, const uint8_t b ) { CRC32_update_byte( &d->crc, b ); d->cb.buffer[d->cb.put] = b; if( ++d->cb.put >= d->cb.buffer_size ) { d->partial_data_pos += d->cb.put; d->cb.put = 0; d->pos_wrapped = true; } } static inline void LZd_copy_block( struct LZ_decoder * const d, const unsigned distance, unsigned len ) { unsigned i = d->cb.put - distance - 1; bool fast; if( d->cb.put <= distance ) { i += d->cb.buffer_size; fast = ( len <= d->cb.buffer_size - i && len <= i - d->cb.put ); } else fast = ( len < d->cb.buffer_size - d->cb.put && len <= d->cb.put - i ); if( fast ) /* no wrap, no overlap */ { CRC32_update_buf( &d->crc, d->cb.buffer + i, len ); memcpy( d->cb.buffer + d->cb.put, d->cb.buffer + i, len ); d->cb.put += len; } else for( ; len > 0; --len ) { LZd_put_byte( d, d->cb.buffer[i] ); if( ++i >= d->cb.buffer_size ) i = 0; } } static inline bool LZd_init( struct LZ_decoder * const d, struct Range_decoder * const rde, const unsigned dict_size ) { if( !Cb_init( &d->cb, max( 65536, dict_size ) + lzd_min_free_bytes ) ) return false; d->partial_data_pos = 0; d->rdec = rde; d->dictionary_size = dict_size; d->crc = 0xFFFFFFFFU; d->member_finished = false; d->verify_trailer_pending = false; d->pos_wrapped = false; d->rep0 = 0; d->rep1 = 0; d->rep2 = 0; d->rep3 = 0; d->state = 0; Bm_array_init( d->bm_literal[0], (1 << literal_context_bits) * 0x300 ); Bm_array_init( d->bm_match[0], states * pos_states ); Bm_array_init( d->bm_rep, states ); Bm_array_init( d->bm_rep0, states ); Bm_array_init( d->bm_rep1, states ); Bm_array_init( d->bm_rep2, states ); Bm_array_init( d->bm_len[0], states * pos_states ); Bm_array_init( d->bm_dis_slot[0], len_states * (1 << dis_slot_bits) ); Bm_array_init( d->bm_dis, modeled_distances - end_dis_model ); Bm_array_init( d->bm_align, dis_align_size ); Lm_init( &d->match_len_model ); Lm_init( &d->rep_len_model ); d->cb.buffer[d->cb.buffer_size-1] = 0; /* prev_byte of first byte */ return true; } static inline void LZd_free( struct LZ_decoder * const d ) { Cb_free( &d->cb ); } static inline bool LZd_member_finished( const struct LZ_decoder * const d ) { return ( d->member_finished && !Cb_used_bytes( &d->cb ) ); } static inline unsigned LZd_crc( const struct LZ_decoder * const d ) { return d->crc ^ 0xFFFFFFFFU; } static inline unsigned long long LZd_data_position( const struct LZ_decoder * const d ) { return d->partial_data_pos + d->cb.put; }