]> wimlib.net Git - wimlib/blob - src/xpress-decompress.c
Update LZMS LRU queue handling
[wimlib] / src / xpress-decompress.c
1 /*
2  * xpress-decompress.c
3  *
4  * XPRESS decompression routines.
5  */
6
7 /*
8  *
9  * Copyright (C) 2012, 2013 Eric Biggers
10  *
11  * This file is part of wimlib, a library for working with WIM files.
12  *
13  * wimlib is free software; you can redistribute it and/or modify it under the
14  * terms of the GNU General Public License as published by the Free
15  * Software Foundation; either version 3 of the License, or (at your option)
16  * any later version.
17  *
18  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
19  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
20  * A PARTICULAR PURPOSE. See the GNU General Public License for more
21  * details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with wimlib; if not, see http://www.gnu.org/licenses/.
25  */
26
27
28 /*
29  * The XPRESS compression format is an LZ77 and Huffman-code based algorithm.
30  * That means it is fairly similar to LZX compression, but XPRESS is simpler, so
31  * it is a little faster to compress and decompress.
32  *
33  * The XPRESS compression format is mostly documented in a file called "[MS-XCA]
34  * Xpress Compression Algorithm".  In the MSDN library, it can currently be
35  * found under Open Specifications => Protocols => Windows Protocols => Windows
36  * Server Protocols => [MS-XCA] Xpress Compression Algorithm".  The format in
37  * WIMs is specifically the algorithm labeled as the "LZ77+Huffman Algorithm"
38  * (there apparently are some other versions of XPRESS as well).
39  *
40  * If you are already familiar with the LZ77 algorithm and Huffman coding, the
41  * XPRESS format is fairly simple.  The compressed data begins with 256 bytes
42  * that contain 512 4-bit integers that are the lengths of the symbols in the
43  * Huffman code used for match/literal headers.  In contrast with more
44  * complicated formats such as DEFLATE and LZX, this is the only Huffman code
45  * that is used for the entirety of the XPRESS compressed data, and the codeword
46  * lengths are not encoded with a pretree.
47  *
48  * The rest of the compressed data is Huffman-encoded symbols.  Values 0 through
49  * 255 represent the corresponding literal bytes.  Values 256 through 511
50  * represent matches and may require extra bits or bytes to be read to get the
51  * match offset and match length.
52  *
53  * The trickiest part is probably the way in which literal bytes for match
54  * lengths are interleaved in the bitstream.
55  *
56  * Also, a caveat--- according to Microsoft's documentation for XPRESS,
57  *
58  *      "Some implementation of the decompression algorithm expect an extra
59  *      symbol to mark the end of the data.  Specifically, some implementations
60  *      fail during decompression if the Huffman symbol 256 is not found after
61  *      the actual data."
62  *
63  * This is the case for the implementation in WIMGAPI.  However, wimlib's
64  * decompressor in this file currently does not care if this extra symbol is
65  * there or not.
66  */
67
68 #ifdef HAVE_CONFIG_H
69 #  include "config.h"
70 #endif
71
72 #include "wimlib.h"
73 #include "wimlib/decompressor_ops.h"
74 #include "wimlib/decompress_common.h"
75 #include "wimlib/xpress.h"
76
77 /*
78  * Decodes a symbol @sym that begins an XPRESS match.
79  *
80  * The low 8 bits of the symbol are divided into:
81  *
82  * bits 0-3:  length header
83  * bits 4-7:  index of high-order bit of match offset
84  *
85  * Returns the match length, or -1 if the data is invalid.
86  */
87 static int
88 xpress_decode_match(unsigned sym, input_idx_t window_pos,
89                     input_idx_t window_len, u8 window[restrict],
90                     struct input_bitstream * restrict istream)
91 {
92
93         u8 len_hdr;
94         u8 offset_bsr;
95         int ret;
96         u8 *match_dest;
97         u8 *match_src;
98         unsigned i;
99         unsigned match_len;
100         unsigned match_offset;
101
102         sym -= XPRESS_NUM_CHARS;
103         len_hdr = sym & 0xf;
104         offset_bsr = sym >> 4;
105
106         if (bitstream_ensure_bits(istream, 16))
107                 return -1;
108
109         match_offset = (1U << offset_bsr) | bitstream_pop_bits(istream, offset_bsr);
110
111         if (len_hdr == 0xf) {
112                 ret = bitstream_read_byte(istream);
113                 if (ret < 0)
114                         return ret;
115                 match_len = ret;
116                 if (unlikely(match_len == 0xff)) {
117                         ret = bitstream_read_byte(istream);
118                         if (ret < 0)
119                                 return ret;
120                         match_len = ret;
121
122                         ret = bitstream_read_byte(istream);
123                         if (ret < 0)
124                                 return ret;
125
126                         match_len |= (ret << 8);
127                 } else {
128                         match_len += 0xf;
129                 }
130         } else {
131                 match_len = len_hdr;
132         }
133         match_len += XPRESS_MIN_MATCH_LEN;
134
135
136         /* Verify the match is in bounds, then copy its data to the the current
137          * position.  */
138
139         if (window_pos + match_len > window_len)
140                 return -1;
141
142         if (match_offset > window_pos)
143                 return -1;
144
145         match_dest = window + window_pos;
146         match_src = match_dest - match_offset;
147
148         for (i = 0; i < match_len; i++)
149                 match_dest[i] = match_src[i];
150
151         return match_len;
152 }
153
154 /* Decodes the Huffman-encoded matches and literal bytes in a region of
155  * XPRESS-encoded data.  */
156 static int
157 xpress_lz_decode(struct input_bitstream * restrict istream,
158                  u8 uncompressed_data[restrict],
159                  unsigned uncompressed_len,
160                  const u8 lens[restrict],
161                  const u16 decode_table[restrict])
162 {
163         input_idx_t curpos;
164         unsigned match_len;
165
166         for (curpos = 0; curpos < uncompressed_len; curpos += match_len) {
167                 unsigned sym;
168                 int ret;
169
170                 if (unlikely(bitstream_ensure_bits(istream, 16)))
171                         return -1;
172
173                 if (unlikely(read_huffsym(istream, decode_table, lens,
174                                           XPRESS_NUM_SYMBOLS, XPRESS_TABLEBITS,
175                                           &sym, XPRESS_MAX_CODEWORD_LEN)))
176                         return -1;
177
178                 if (sym < XPRESS_NUM_CHARS) {
179                         /* Literal  */
180                         uncompressed_data[curpos] = sym;
181                         match_len = 1;
182                 } else {
183                         /* Match  */
184                         ret = xpress_decode_match(sym,
185                                                   curpos,
186                                                   uncompressed_len,
187                                                   uncompressed_data,
188                                                   istream);
189                         if (unlikely(ret < 0))
190                                 return -1;
191                         match_len = ret;
192                 }
193         }
194         return 0;
195 }
196
197
198 static int
199 xpress_decompress(const void *compressed_data, size_t compressed_size,
200                   void *uncompressed_data, size_t uncompressed_size, void *_ctx)
201 {
202         const u8 *cdata = compressed_data;
203         u8 lens[XPRESS_NUM_SYMBOLS];
204         u8 *lens_p;
205         u16 decode_table[(1 << XPRESS_TABLEBITS) + 2 * XPRESS_NUM_SYMBOLS]
206                         _aligned_attribute(DECODE_TABLE_ALIGNMENT);
207         struct input_bitstream istream;
208
209         /* XPRESS uses only one Huffman code.  It contains 512 symbols, and the
210          * code lengths of these symbols are given literally as 4-bit integers
211          * in the first 256 bytes of the compressed data.  */
212         if (compressed_size < XPRESS_NUM_SYMBOLS / 2)
213                 return -1;
214
215         lens_p = lens;
216         for (unsigned i = 0; i < XPRESS_NUM_SYMBOLS / 2; i++) {
217                 *lens_p++ = cdata[i] & 0xf;
218                 *lens_p++ = cdata[i] >> 4;
219         }
220
221         if (make_huffman_decode_table(decode_table, XPRESS_NUM_SYMBOLS,
222                                       XPRESS_TABLEBITS, lens,
223                                       XPRESS_MAX_CODEWORD_LEN))
224                 return -1;
225
226         init_input_bitstream(&istream, cdata + XPRESS_NUM_SYMBOLS / 2,
227                              compressed_size - XPRESS_NUM_SYMBOLS / 2);
228
229         return xpress_lz_decode(&istream, uncompressed_data,
230                                 uncompressed_size, lens, decode_table);
231 }
232
233 const struct decompressor_ops xpress_decompressor_ops = {
234         .decompress = xpress_decompress,
235 };