]> wimlib.net Git - wimlib/blob - src/lzx_common.c
lzx_common: rename to lzx_preprocess/lzx_postprocess
[wimlib] / src / lzx_common.c
1 /*
2  * lzx_common.c - Common code for LZX compression and decompression.
3  */
4
5 /*
6  * Copyright (C) 2012, 2013, 2014, 2015 Eric Biggers
7  *
8  * This file is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU Lesser General Public License as published by the Free
10  * Software Foundation; either version 3 of the License, or (at your option) any
11  * later version.
12  *
13  * This file is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this file; if not, see http://www.gnu.org/licenses/.
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #  include "config.h"
24 #endif
25
26 #include <string.h>
27
28 #ifdef __SSE2__
29 #  include <emmintrin.h>
30 #endif
31
32 #ifdef __AVX2__
33 #  include <immintrin.h>
34 #endif
35
36 #include "wimlib/bitops.h"
37 #include "wimlib/endianness.h"
38 #include "wimlib/lzx_common.h"
39 #include "wimlib/unaligned.h"
40 #include "wimlib/util.h"
41
42 /* Mapping: offset slot => first match offset that uses that offset slot.
43  */
44 const u32 lzx_offset_slot_base[LZX_MAX_OFFSET_SLOTS + 1] = {
45         0      , 1      , 2      , 3      , 4      ,    /* 0  --- 4  */
46         6      , 8      , 12     , 16     , 24     ,    /* 5  --- 9  */
47         32     , 48     , 64     , 96     , 128    ,    /* 10 --- 14 */
48         192    , 256    , 384    , 512    , 768    ,    /* 15 --- 19 */
49         1024   , 1536   , 2048   , 3072   , 4096   ,    /* 20 --- 24 */
50         6144   , 8192   , 12288  , 16384  , 24576  ,    /* 25 --- 29 */
51         32768  , 49152  , 65536  , 98304  , 131072 ,    /* 30 --- 34 */
52         196608 , 262144 , 393216 , 524288 , 655360 ,    /* 35 --- 39 */
53         786432 , 917504 , 1048576, 1179648, 1310720,    /* 40 --- 44 */
54         1441792, 1572864, 1703936, 1835008, 1966080,    /* 45 --- 49 */
55         2097152                                         /* extra     */
56 };
57
58 /* Mapping: offset slot => how many extra bits must be read and added to the
59  * corresponding offset slot base to decode the match offset.  */
60 const u8 lzx_extra_offset_bits[LZX_MAX_OFFSET_SLOTS] = {
61         0 , 0 , 0 , 0 , 1 ,
62         1 , 2 , 2 , 3 , 3 ,
63         4 , 4 , 5 , 5 , 6 ,
64         6 , 7 , 7 , 8 , 8 ,
65         9 , 9 , 10, 10, 11,
66         11, 12, 12, 13, 13,
67         14, 14, 15, 15, 16,
68         16, 17, 17, 17, 17,
69         17, 17, 17, 17, 17,
70         17, 17, 17, 17, 17,
71 };
72
73 /* Round the specified buffer size up to the next valid LZX window size, and
74  * return its order (log2).  Or, if the buffer size is 0 or greater than the
75  * largest valid LZX window size, return 0.  */
76 unsigned
77 lzx_get_window_order(size_t max_bufsize)
78 {
79         unsigned order;
80
81         if (max_bufsize == 0 || max_bufsize > LZX_MAX_WINDOW_SIZE)
82                 return 0;
83
84         order = fls32(max_bufsize);
85
86         if (((u32)1 << order) != max_bufsize)
87                 order++;
88
89         return max(order, LZX_MIN_WINDOW_ORDER);
90 }
91
92 /* Given a valid LZX window order, return the number of symbols that will exist
93  * in the main Huffman code.  */
94 unsigned
95 lzx_get_num_main_syms(unsigned window_order)
96 {
97         /* Note: one would expect that the maximum match offset would be
98          * 'window_size - LZX_MIN_MATCH_LEN', which would occur if the first two
99          * bytes were to match the last two bytes.  However, the format
100          * disallows this case.  This reduces the number of needed offset slots
101          * by 1.  */
102         u32 window_size = (u32)1 << window_order;
103         u32 max_adjusted_offset = (window_size - LZX_MIN_MATCH_LEN - 1) +
104                                   LZX_OFFSET_ADJUSTMENT;
105         unsigned num_offset_slots = 30;
106         while (max_adjusted_offset >= lzx_offset_slot_base[num_offset_slots])
107                 num_offset_slots++;
108
109         return LZX_NUM_CHARS + (num_offset_slots * LZX_NUM_LEN_HEADERS);
110 }
111
112 static void
113 do_translate_target(void *target, s32 input_pos)
114 {
115         s32 abs_offset, rel_offset;
116
117         rel_offset = get_unaligned_u32_le(target);
118         if (rel_offset >= -input_pos && rel_offset < LZX_WIM_MAGIC_FILESIZE) {
119                 if (rel_offset < LZX_WIM_MAGIC_FILESIZE - input_pos) {
120                         /* "good translation" */
121                         abs_offset = rel_offset + input_pos;
122                 } else {
123                         /* "compensating translation" */
124                         abs_offset = rel_offset - LZX_WIM_MAGIC_FILESIZE;
125                 }
126                 put_unaligned_u32_le(abs_offset, target);
127         }
128 }
129
130 static void
131 undo_translate_target(void *target, s32 input_pos)
132 {
133         s32 abs_offset, rel_offset;
134
135         abs_offset = get_unaligned_u32_le(target);
136         if (abs_offset >= 0) {
137                 if (abs_offset < LZX_WIM_MAGIC_FILESIZE) {
138                         /* "good translation" */
139                         rel_offset = abs_offset - input_pos;
140                         put_unaligned_u32_le(rel_offset, target);
141                 }
142         } else {
143                 if (abs_offset >= -input_pos) {
144                         /* "compensating translation" */
145                         rel_offset = abs_offset + LZX_WIM_MAGIC_FILESIZE;
146                         put_unaligned_u32_le(rel_offset, target);
147                 }
148         }
149 }
150
151 /*
152  * Do or undo the 'E8' preprocessing used in LZX.  Before compression, the
153  * uncompressed data is preprocessed by changing the targets of x86 CALL
154  * instructions from relative offsets to absolute offsets.  After decompression,
155  * the translation is undone by changing the targets of x86 CALL instructions
156  * from absolute offsets to relative offsets.
157  *
158  * Note that despite its intent, E8 preprocessing can be done on any data even
159  * if it is not actually x86 machine code.  In fact, E8 preprocessing appears to
160  * always be used in LZX-compressed resources in WIM files; there is no bit to
161  * indicate whether it is used or not, unlike in the LZX compressed format as
162  * used in cabinet files, where a bit is reserved for that purpose.
163  *
164  * E8 preprocessing is disabled in the last 6 bytes of the uncompressed data,
165  * which really means the 5-byte call instruction cannot start in the last 10
166  * bytes of the uncompressed data.  This is one of the errors in the LZX
167  * documentation.
168  *
169  * E8 preprocessing does not appear to be disabled after the 32768th chunk of a
170  * WIM resource, which apparently is another difference from the LZX compression
171  * used in cabinet files.
172  *
173  * E8 processing is supposed to take the file size as a parameter, as it is used
174  * in calculating the translated jump targets.  But in WIM files, this file size
175  * is always the same (LZX_WIM_MAGIC_FILESIZE == 12000000).
176  */
177 static void
178 lzx_e8_filter(u8 *data, u32 size, void (*process_target)(void *, s32))
179 {
180
181 #if !defined(__SSE2__) && !defined(__AVX2__)
182         /*
183          * A worthwhile optimization is to push the end-of-buffer check into the
184          * relatively rare E8 case.  This is possible if we replace the last six
185          * bytes of data with E8 bytes; then we are guaranteed to hit an E8 byte
186          * before reaching end-of-buffer.  In addition, this scheme guarantees
187          * that no translation can begin following an E8 byte in the last 10
188          * bytes because a 4-byte offset containing E8 as its high byte is a
189          * large negative number that is not valid for translation.  That is
190          * exactly what we need.
191          */
192         u8 *tail;
193         u8 saved_bytes[6];
194         u8 *p;
195
196         if (size <= 10)
197                 return;
198
199         tail = &data[size - 6];
200         memcpy(saved_bytes, tail, 6);
201         memset(tail, 0xE8, 6);
202         p = data;
203         for (;;) {
204                 while (*p != 0xE8)
205                         p++;
206                 if (p >= tail)
207                         break;
208                 (*process_target)(p + 1, p - data);
209                 p += 5;
210         }
211         memcpy(tail, saved_bytes, 6);
212 #else
213         /* SSE2 or AVX-2 optimized version for x86_64  */
214
215         u8 *p = data;
216         u64 valid_mask = ~0;
217
218         if (size <= 10)
219                 return;
220 #ifdef __AVX2__
221 #  define ALIGNMENT_REQUIRED 32
222 #else
223 #  define ALIGNMENT_REQUIRED 16
224 #endif
225
226         /* Process one byte at a time until the pointer is properly aligned.  */
227         while ((uintptr_t)p % ALIGNMENT_REQUIRED != 0) {
228                 if (p >= data + size - 10)
229                         return;
230                 if (*p == 0xE8 && (valid_mask & 1)) {
231                         (*process_target)(p + 1, p - data);
232                         valid_mask &= ~0x1F;
233                 }
234                 p++;
235                 valid_mask >>= 1;
236                 valid_mask |= (u64)1 << 63;
237         }
238
239         if (data + size - p >= 64) {
240
241                 /* Vectorized processing  */
242
243                 /* Note: we use a "trap" E8 byte to eliminate the need to check
244                  * for end-of-buffer in the inner loop.  This byte is carefully
245                  * positioned so that it will never be changed by a previous
246                  * translation before it is detected.  */
247
248                 u8 *trap = p + ((data + size - p) & ~31) - 32 + 4;
249                 u8 saved_byte = *trap;
250                 *trap = 0xE8;
251
252                 for (;;) {
253                         u32 e8_mask;
254                         u8 *orig_p = p;
255                 #ifdef __AVX2__
256                         const __m256i e8_bytes = _mm256_set1_epi8(0xE8);
257                         for (;;) {
258                                 __m256i bytes = *(const __m256i *)p;
259                                 __m256i cmpresult = _mm256_cmpeq_epi8(bytes, e8_bytes);
260                                 e8_mask = _mm256_movemask_epi8(cmpresult);
261                                 if (e8_mask)
262                                         break;
263                                 p += 32;
264                         }
265                 #else
266                         const __m128i e8_bytes = _mm_set1_epi8(0xE8);
267                         for (;;) {
268                                 /* Read the next 32 bytes of data and test them
269                                  * for E8 bytes.  */
270                                 __m128i bytes1 = *(const __m128i *)p;
271                                 __m128i bytes2 = *(const __m128i *)(p + 16);
272                                 __m128i cmpresult1 = _mm_cmpeq_epi8(bytes1, e8_bytes);
273                                 __m128i cmpresult2 = _mm_cmpeq_epi8(bytes2, e8_bytes);
274                                 u32 mask1 = _mm_movemask_epi8(cmpresult1);
275                                 u32 mask2 = _mm_movemask_epi8(cmpresult2);
276                                 /* The masks have a bit set for each E8 byte.
277                                  * We stay in this fast inner loop as long as
278                                  * there are no E8 bytes.  */
279                                 if (mask1 | mask2) {
280                                         e8_mask = mask1 | (mask2 << 16);
281                                         break;
282                                 }
283                                 p += 32;
284                         }
285                 #endif
286
287                         /* Did we pass over data with no E8 bytes?  */
288                         if (p != orig_p)
289                                 valid_mask = ~0;
290
291                         /* Are we nearing end-of-buffer?  */
292                         if (p == trap - 4)
293                                 break;
294
295                         /* Process the E8 bytes.  However, the AND with
296                          * 'valid_mask' ensures we never process an E8 byte that
297                          * was itself part of a translation target.  */
298                         while ((e8_mask &= valid_mask)) {
299                                 unsigned bit = ffs32(e8_mask);
300                                 (*process_target)(p + bit + 1, p + bit - data);
301                                 valid_mask &= ~((u64)0x1F << bit);
302                         }
303
304                         valid_mask >>= 32;
305                         valid_mask |= 0xFFFFFFFF00000000;
306                         p += 32;
307                 }
308
309                 *trap = saved_byte;
310         }
311
312         /* Approaching the end of the buffer; process one byte a time.  */
313         while (p < data + size - 10) {
314                 if (*p == 0xE8 && (valid_mask & 1)) {
315                         (*process_target)(p + 1, p - data);
316                         valid_mask &= ~0x1F;
317                 }
318                 p++;
319                 valid_mask >>= 1;
320                 valid_mask |= (u64)1 << 63;
321         }
322 #endif /* __SSE2__ || __AVX2__ */
323 }
324
325 void
326 lzx_preprocess(u8 *data, u32 size)
327 {
328         lzx_e8_filter(data, size, do_translate_target);
329 }
330
331 void
332 lzx_postprocess(u8 *data, u32 size)
333 {
334         lzx_e8_filter(data, size, undo_translate_target);
335 }