Coverage Report

Created: 2025-07-01 06:55

/src/libtorrent/src/puff.cpp
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * puff.c
3
 * Copyright (C) 2002-2013 Mark Adler
4
 * For conditions of distribution and use, see copyright notice in puff.h
5
 * version 2.3, 21 Jan 2013
6
 *
7
 * puff.c is a simple inflate written to be an unambiguous way to specify the
8
 * deflate format.  It is not written for speed but rather simplicity.  As a
9
 * side benefit, this code might actually be useful when small code is more
10
 * important than speed, such as bootstrap applications.  For typical deflate
11
 * data, zlib's inflate() is about four times as fast as puff().  zlib's
12
 * inflate compiles to around 20K on my machine, whereas puff.c compiles to
13
 * around 4K on my machine (a PowerPC using GNU cc).  If the faster decode()
14
 * function here is used, then puff() is only twice as slow as zlib's
15
 * inflate().
16
 *
17
 * All dynamically allocated memory comes from the stack.  The stack required
18
 * is less than 2K bytes.  This code is compatible with 16-bit int's and
19
 * assumes that long's are at least 32 bits.  puff.c uses the short data type,
20
 * assumed to be 16 bits, for arrays in order to conserve memory.  The code
21
 * works whether integers are stored big endian or little endian.
22
 *
23
 * In the comments below are "Format notes" that describe the inflate process
24
 * and document some of the less obvious aspects of the format.  This source
25
 * code is meant to supplement RFC 1951, which formally describes the deflate
26
 * format:
27
 *
28
 *    http://www.zlib.org/rfc-deflate.html
29
 */
30
31
/*
32
 * Change history:
33
 *
34
 * 1.0  10 Feb 2002     - First version
35
 * 1.1  17 Feb 2002     - Clarifications of some comments and notes
36
 *                      - Update puff() dest and source pointers on negative
37
 *                        errors to facilitate debugging deflators
38
 *                      - Remove longest from struct huffman -- not needed
39
 *                      - Simplify offs[] index in construct()
40
 *                      - Add input size and checking, using longjmp() to
41
 *                        maintain easy readability
42
 *                      - Use short data type for large arrays
43
 *                      - Use pointers instead of long to specify source and
44
 *                        destination sizes to avoid arbitrary 4 GB limits
45
 * 1.2  17 Mar 2002     - Add faster version of decode(), doubles speed (!),
46
 *                        but leave simple version for readability
47
 *                      - Make sure invalid distances detected if pointers
48
 *                        are 16 bits
49
 *                      - Fix fixed codes table error
50
 *                      - Provide a scanning mode for determining size of
51
 *                        uncompressed data
52
 * 1.3  20 Mar 2002     - Go back to lengths for puff() parameters [Gailly]
53
 *                      - Add a puff.h file for the interface
54
 *                      - Add braces in puff() for else do [Gailly]
55
 *                      - Use indexes instead of pointers for readability
56
 * 1.4  31 Mar 2002     - Simplify construct() code set check
57
 *                      - Fix some comments
58
 *                      - Add FIXLCODES #define
59
 * 1.5   6 Apr 2002     - Minor comment fixes
60
 * 1.6   7 Aug 2002     - Minor format changes
61
 * 1.7   3 Mar 2003     - Added test code for distribution
62
 *                      - Added zlib-like license
63
 * 1.8   9 Jan 2004     - Added some comments on no distance codes case
64
 * 1.9  21 Feb 2008     - Fix bug on 16-bit integer architectures [Pohland]
65
 *                      - Catch missing end-of-block symbol error
66
 * 2.0  25 Jul 2008     - Add #define to permit distance too far back
67
 *                      - Add option in TEST code for puff to write the data
68
 *                      - Add option in TEST code to skip input bytes
69
 *                      - Allow TEST code to read from piped stdin
70
 * 2.1   4 Apr 2010     - Avoid variable initialization for happier compilers
71
 *                      - Avoid unsigned comparisons for even happier compilers
72
 * 2.2  25 Apr 2010     - Fix bug in variable initializations [Oberhumer]
73
 *                      - Add const where appropriate [Oberhumer]
74
 *                      - Split if's and ?'s for coverage testing
75
 *                      - Break out test code to separate file
76
 *                      - Move NIL to puff.h
77
 *                      - Allow incomplete code only if single code length is 1
78
 *                      - Add full code coverage test to Makefile
79
 * 2.3  21 Jan 2013     - Check for invalid code length codes in dynamic blocks
80
 */
81
82
// this whole file is just preserved and warnings are suppressed
83
#include "libtorrent/aux_/disable_warnings_push.hpp"
84
85
#include <csetjmp>             /* for setjmp(), longjmp(), and jmp_buf */
86
#include <cstring>             /* for nullptr */
87
#include "libtorrent/puff.hpp"             /* prototype for puff() */
88
89
#define local static            /* for local function definitions */
90
91
/*
92
 * Maximums for allocations and loops.  It is not useful to change these --
93
 * they are fixed by the deflate format.
94
 */
95
0
#define MAXBITS 15              /* maximum bits in a code */
96
0
#define MAXLCODES 286           /* maximum number of literal/length codes */
97
0
#define MAXDCODES 30            /* maximum number of distance codes */
98
#define MAXCODES (MAXLCODES+MAXDCODES)  /* maximum codes lengths to read */
99
0
#define FIXLCODES 288           /* number of fixed literal/length codes */
100
101
/* input and output state */
102
struct state {
103
    /* output state */
104
    unsigned char *out;         /* output buffer */
105
    unsigned long outlen;       /* available space at out */
106
    unsigned long outcnt;       /* bytes written to out so far */
107
108
    /* input state */
109
    const unsigned char *in;    /* input buffer */
110
    unsigned long inlen;        /* available input at in */
111
    unsigned long incnt;        /* bytes read so far */
112
    int bitbuf;                 /* bit buffer */
113
    int bitcnt;                 /* number of bits in bit buffer */
114
115
    /* input limit error return state for bits() and decode() */
116
   std::jmp_buf env;
117
};
118
119
/*
120
 * Return need bits from the input stream.  This always leaves less than
121
 * eight bits in the buffer.  bits() works properly for need == 0.
122
 *
123
 * Format notes:
124
 *
125
 * - Bits are stored in bytes from the least significant bit to the most
126
 *   significant bit.  Therefore bits are dropped from the bottom of the bit
127
 *   buffer, using shift right, and new bytes are appended to the top of the
128
 *   bit buffer, using shift left.
129
 */
130
local int bits(struct state *s, int need)
131
0
{
132
0
    long val;           /* bit accumulator (can use up to 20 bits) */
133
134
    /* load at least need bits into val */
135
0
    val = s->bitbuf;
136
0
    while (s->bitcnt < need) {
137
0
        if (s->incnt == s->inlen)
138
0
            std::longjmp(s->env, 1);         /* out of input */
139
0
        val |= long(s->in[s->incnt++]) << s->bitcnt;  /* load eight bits */
140
0
        s->bitcnt += 8;
141
0
    }
142
143
    /* drop need bits and update buffer, always zero to seven bits left */
144
0
    s->bitbuf = int(val >> need);
145
0
    s->bitcnt -= need;
146
147
    /* return need bits, zeroing the bits above that */
148
0
    return int(val & ((1L << need) - 1));
149
0
}
150
151
/*
152
 * Process a stored block.
153
 *
154
 * Format notes:
155
 *
156
 * - After the two-bit stored block type (00), the stored block length and
157
 *   stored bytes are byte-aligned for fast copying.  Therefore any leftover
158
 *   bits in the byte that has the last bit of the type, as many as seven, are
159
 *   discarded.  The value of the discarded bits are not defined and should not
160
 *   be checked against any expectation.
161
 *
162
 * - The second inverted copy of the stored block length does not have to be
163
 *   checked, but it's probably a good idea to do so anyway.
164
 *
165
 * - A stored block can have zero length.  This is sometimes used to byte-align
166
 *   subsets of the compressed data for random access or partial recovery.
167
 */
168
local int stored(struct state *s)
169
0
{
170
0
    unsigned len;       /* length of stored block */
171
172
    /* discard leftover bits from current byte (assumes s->bitcnt < 8) */
173
0
    s->bitbuf = 0;
174
0
    s->bitcnt = 0;
175
176
    /* get length and check against its one's complement */
177
0
    if (s->incnt + 4 > s->inlen)
178
0
        return 2;                               /* not enough input */
179
0
    len = s->in[s->incnt++];
180
0
    len |= s->in[s->incnt++] << 8;
181
0
    if (s->in[s->incnt++] != (~len & 0xff) ||
182
0
        s->in[s->incnt++] != ((~len >> 8) & 0xff))
183
0
        return -2;                              /* didn't match complement! */
184
185
    /* copy len bytes from in to out */
186
0
    if (s->incnt + len > s->inlen)
187
0
        return 2;                               /* not enough input */
188
0
    if (s->out != nullptr) {
189
0
        if (s->outcnt + len > s->outlen)
190
0
            return 1;                           /* not enough output space */
191
0
        while (len--)
192
0
            s->out[s->outcnt++] = s->in[s->incnt++];
193
0
    }
194
0
    else {                                      /* just scanning */
195
0
        s->outcnt += len;
196
0
        s->incnt += len;
197
0
    }
198
199
    /* done with a valid stored block */
200
0
    return 0;
201
0
}
202
203
/*
204
 * Huffman code decoding tables.  count[1..MAXBITS] is the number of symbols of
205
 * each length, which for a canonical code are stepped through in order.
206
 * symbol[] are the symbol values in canonical order, where the number of
207
 * entries is the sum of the counts in count[].  The decoding process can be
208
 * seen in the function decode() below.
209
 */
210
struct huffman {
211
    short *count;       /* number of symbols of each length */
212
    short *symbol;      /* canonically ordered symbols */
213
};
214
215
/*
216
 * Decode a code from the stream s using huffman table h.  Return the symbol or
217
 * a negative value if there is an error.  If all of the lengths are zero, i.e.
218
 * an empty code, or if the code is incomplete and an invalid code is received,
219
 * then -10 is returned after reading MAXBITS bits.
220
 *
221
 * Format notes:
222
 *
223
 * - The codes as stored in the compressed data are bit-reversed relative to
224
 *   a simple integer ordering of codes of the same lengths.  Hence below the
225
 *   bits are pulled from the compressed data one at a time and used to
226
 *   build the code value reversed from what is in the stream in order to
227
 *   permit simple integer comparisons for decoding.  A table-based decoding
228
 *   scheme (as used in zlib) does not need to do this reversal.
229
 *
230
 * - The first code for the shortest length is all zeros.  Subsequent codes of
231
 *   the same length are simply integer increments of the previous code.  When
232
 *   moving up a length, a zero bit is appended to the code.  For a complete
233
 *   code, the last code of the longest length will be all ones.
234
 *
235
 * - Incomplete codes are handled by this decoder, since they are permitted
236
 *   in the deflate format.  See the format notes for fixed() and dynamic().
237
 */
238
#ifdef SLOW
239
local int decode(struct state *s, const struct huffman *h)
240
{
241
    int len;            /* current number of bits in code */
242
    int code;           /* len bits being decoded */
243
    int first;          /* first code of length len */
244
    int count;          /* number of codes of length len */
245
    int index;          /* index of first code of length len in symbol table */
246
247
    code = first = index = 0;
248
    for (len = 1; len <= MAXBITS; len++) {
249
        code |= bits(s, 1);             /* get next bit */
250
        count = h->count[len];
251
        if (code - count < first)       /* if length len, return symbol */
252
            return h->symbol[index + (code - first)];
253
        index += count;                 /* else update for next length */
254
        first += count;
255
        first <<= 1;
256
        code <<= 1;
257
    }
258
    return -10;                         /* ran out of codes */
259
}
260
261
/*
262
 * A faster version of decode() for real applications of this code.   It's not
263
 * as readable, but it makes puff() twice as fast.  And it only makes the code
264
 * a few percent larger.
265
 */
266
#else /* !SLOW */
267
local int decode(struct state *s, const struct huffman *h)
268
0
{
269
0
    int len;            /* current number of bits in code */
270
0
    int code;           /* len bits being decoded */
271
0
    int first;          /* first code of length len */
272
0
    int count;          /* number of codes of length len */
273
0
    int index;          /* index of first code of length len in symbol table */
274
0
    int bitbuf;         /* bits from stream */
275
0
    int left;           /* bits left in next or left to process */
276
0
    short *next;        /* next number of codes */
277
278
0
    bitbuf = s->bitbuf;
279
0
    left = s->bitcnt;
280
0
    code = first = index = 0;
281
0
    len = 1;
282
0
    next = h->count + 1;
283
0
    for (;;) {
284
0
        while (left--) {
285
0
            code |= bitbuf & 1;
286
0
            bitbuf >>= 1;
287
0
            count = *next++;
288
0
            if (code - count < first) { /* if length len, return symbol */
289
0
                s->bitbuf = bitbuf;
290
0
                s->bitcnt = (s->bitcnt - len) & 7;
291
0
                return h->symbol[index + (code - first)];
292
0
            }
293
0
            index += count;             /* else update for next length */
294
0
            first += count;
295
0
            first <<= 1;
296
0
            code <<= 1;
297
0
            len++;
298
0
        }
299
0
        left = (MAXBITS+1) - len;
300
0
        if (left == 0)
301
0
            break;
302
0
        if (s->incnt == s->inlen)
303
0
            std::longjmp(s->env, 1);         /* out of input */
304
0
        bitbuf = s->in[s->incnt++];
305
0
        if (left > 8)
306
0
            left = 8;
307
0
    }
308
0
    return -10;                         /* ran out of codes */
309
0
}
310
#endif /* SLOW */
311
312
/*
313
 * Given the list of code lengths length[0..n-1] representing a canonical
314
 * Huffman code for n symbols, construct the tables required to decode those
315
 * codes.  Those tables are the number of codes of each length, and the symbols
316
 * sorted by length, retaining their original order within each length.  The
317
 * return value is zero for a complete code set, negative for an over-
318
 * subscribed code set, and positive for an incomplete code set.  The tables
319
 * can be used if the return value is zero or positive, but they cannot be used
320
 * if the return value is negative.  If the return value is zero, it is not
321
 * possible for decode() using that table to return an error--any stream of
322
 * enough bits will resolve to a symbol.  If the return value is positive, then
323
 * it is possible for decode() using that table to return an error for received
324
 * codes past the end of the incomplete lengths.
325
 *
326
 * Not used by decode(), but used for error checking, h->count[0] is the number
327
 * of the n symbols not in the code.  So n - h->count[0] is the number of
328
 * codes.  This is useful for checking for incomplete codes that have more than
329
 * one symbol, which is an error in a dynamic block.
330
 *
331
 * Assumption: for all i in 0..n-1, 0 <= length[i] <= MAXBITS
332
 * This is assured by the construction of the length arrays in dynamic() and
333
 * fixed() and is not verified by construct().
334
 *
335
 * Format notes:
336
 *
337
 * - Permitted and expected examples of incomplete codes are one of the fixed
338
 *   codes and any code with a single symbol which in deflate is coded as one
339
 *   bit instead of zero bits.  See the format notes for fixed() and dynamic().
340
 *
341
 * - Within a given code length, the symbols are kept in ascending order for
342
 *   the code bits definition.
343
 */
344
local int construct(struct huffman *h, const short *length, int n)
345
0
{
346
0
    int symbol;         /* current symbol when stepping through length[] */
347
0
    int len;            /* current length when stepping through h->count[] */
348
0
    int left;           /* number of possible codes left of current length */
349
0
    short offs[MAXBITS+1];      /* offsets in symbol table for each length */
350
351
    /* count number of codes of each length */
352
0
    for (len = 0; len <= MAXBITS; len++)
353
0
        h->count[len] = 0;
354
0
    for (symbol = 0; symbol < n; symbol++)
355
0
        (h->count[length[symbol]])++;   /* assumes lengths are within bounds */
356
0
    if (h->count[0] == n)               /* no codes! */
357
0
        return 0;                       /* complete, but decode() will fail */
358
359
    /* check for an over-subscribed or incomplete set of lengths */
360
0
    left = 1;                           /* one possible code of zero length */
361
0
    for (len = 1; len <= MAXBITS; len++) {
362
0
        left <<= 1;                     /* one more bit, double codes left */
363
0
        left -= h->count[len];          /* deduct count from possible codes */
364
0
        if (left < 0)
365
0
            return left;                /* over-subscribed--return negative */
366
0
    }                                   /* left > 0 means incomplete */
367
368
    /* generate offsets into symbol table for each length for sorting */
369
0
    offs[1] = 0;
370
0
    for (len = 1; len < MAXBITS; len++)
371
0
        offs[len + 1] = offs[len] + h->count[len];
372
373
    /*
374
     * put symbols in table sorted by length, by symbol order within each
375
     * length
376
     */
377
0
    for (symbol = 0; symbol < n; symbol++)
378
0
        if (length[symbol] != 0)
379
0
            h->symbol[offs[length[symbol]]++] = symbol;
380
381
    /* return zero for complete set, positive for incomplete set */
382
0
    return left;
383
0
}
384
385
/*
386
 * Decode literal/length and distance codes until an end-of-block code.
387
 *
388
 * Format notes:
389
 *
390
 * - Compressed data that is after the block type if fixed or after the code
391
 *   description if dynamic is a combination of literals and length/distance
392
 *   pairs terminated by and end-of-block code.  Literals are simply Huffman
393
 *   coded bytes.  A length/distance pair is a coded length followed by a
394
 *   coded distance to represent a string that occurs earlier in the
395
 *   uncompressed data that occurs again at the current location.
396
 *
397
 * - Literals, lengths, and the end-of-block code are combined into a single
398
 *   code of up to 286 symbols.  They are 256 literals (0..255), 29 length
399
 *   symbols (257..285), and the end-of-block symbol (256).
400
 *
401
 * - There are 256 possible lengths (3..258), and so 29 symbols are not enough
402
 *   to represent all of those.  Lengths 3..10 and 258 are in fact represented
403
 *   by just a length symbol.  Lengths 11..257 are represented as a symbol and
404
 *   some number of extra bits that are added as an integer to the base length
405
 *   of the length symbol.  The number of extra bits is determined by the base
406
 *   length symbol.  These are in the static arrays below, lens[] for the base
407
 *   lengths and lext[] for the corresponding number of extra bits.
408
 *
409
 * - The reason that 258 gets its own symbol is that the longest length is used
410
 *   often in highly redundant files.  Note that 258 can also be coded as the
411
 *   base value 227 plus the maximum extra value of 31.  While a good deflate
412
 *   should never do this, it is not an error, and should be decoded properly.
413
 *
414
 * - If a length is decoded, including its extra bits if any, then it is
415
 *   followed a distance code.  There are up to 30 distance symbols.  Again
416
 *   there are many more possible distances (1..32768), so extra bits are added
417
 *   to a base value represented by the symbol.  The distances 1..4 get their
418
 *   own symbol, but the rest require extra bits.  The base distances and
419
 *   corresponding number of extra bits are below in the static arrays dist[]
420
 *   and dext[].
421
 *
422
 * - Literal bytes are simply written to the output.  A length/distance pair is
423
 *   an instruction to copy previously uncompressed bytes to the output.  The
424
 *   copy is from distance bytes back in the output stream, copying for length
425
 *   bytes.
426
 *
427
 * - Distances pointing before the beginning of the output data are not
428
 *   permitted.
429
 *
430
 * - Overlapped copies, where the length is greater than the distance, are
431
 *   allowed and common.  For example, a distance of one and a length of 258
432
 *   simply copies the last byte 258 times.  A distance of four and a length of
433
 *   twelve copies the last four bytes three times.  A simple forward copy
434
 *   ignoring whether the length is greater than the distance or not implements
435
 *   this correctly.  You should not use memcpy() since its behavior is not
436
 *   defined for overlapped arrays.  You should not use memmove() or bcopy()
437
 *   since though their behavior -is- defined for overlapping arrays, it is
438
 *   defined to do the wrong thing in this case.
439
 */
440
local int codes(struct state *s,
441
                const struct huffman *lencode,
442
                const struct huffman *distcode)
443
0
{
444
0
    int symbol;         /* decoded symbol */
445
0
    int len;            /* length for copy */
446
0
    unsigned dist;      /* distance for copy */
447
0
    static const short lens[29] = { /* Size base for length codes 257..285 */
448
0
        3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,
449
0
        35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258};
450
0
    static const short lext[29] = { /* Extra bits for length codes 257..285 */
451
0
        0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2,
452
0
        3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0};
453
0
    static const short dists[30] = { /* Offset base for distance codes 0..29 */
454
0
        1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
455
0
        257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
456
0
        8193, 12289, 16385, 24577};
457
0
    static const short dext[30] = { /* Extra bits for distance codes 0..29 */
458
0
        0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6,
459
0
        7, 7, 8, 8, 9, 9, 10, 10, 11, 11,
460
0
        12, 12, 13, 13};
461
462
    /* decode literals and length/distance pairs */
463
0
    do {
464
0
        symbol = decode(s, lencode);
465
0
        if (symbol < 0)
466
0
            return symbol;              /* invalid symbol */
467
0
        if (symbol < 256) {             /* literal: symbol is the byte */
468
            /* write out the literal */
469
0
            if (s->out != nullptr) {
470
0
                if (s->outcnt == s->outlen)
471
0
                    return 1;
472
0
                s->out[s->outcnt] = symbol;
473
0
            }
474
0
            s->outcnt++;
475
0
        }
476
0
        else if (symbol > 256) {        /* length */
477
            /* get and compute length */
478
0
            symbol -= 257;
479
0
            if (symbol >= 29)
480
0
                return -10;             /* invalid fixed code */
481
0
            len = lens[symbol] + bits(s, lext[symbol]);
482
483
            /* get and check distance */
484
0
            symbol = decode(s, distcode);
485
0
            if (symbol < 0)
486
0
                return symbol;          /* invalid symbol */
487
0
            dist = dists[symbol] + bits(s, dext[symbol]);
488
0
#ifndef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
489
0
            if (dist > s->outcnt)
490
0
                return -11;     /* distance too far back */
491
0
#endif
492
493
            /* copy length bytes from distance bytes back */
494
0
            if (s->out != nullptr) {
495
0
                if (s->outcnt + len > s->outlen)
496
0
                    return 1;
497
0
                while (len--) {
498
0
                    s->out[s->outcnt] =
499
#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
500
                        dist > s->outcnt ?
501
                            0 :
502
#endif
503
0
                            s->out[s->outcnt - dist];
504
0
                    s->outcnt++;
505
0
                }
506
0
            }
507
0
            else
508
0
                s->outcnt += len;
509
0
        }
510
0
    } while (symbol != 256);            /* end of block symbol */
511
512
    /* done with a valid fixed or dynamic block */
513
0
    return 0;
514
0
}
515
516
/*
517
 * Process a fixed codes block.
518
 *
519
 * Format notes:
520
 *
521
 * - This block type can be useful for compressing small amounts of data for
522
 *   which the size of the code descriptions in a dynamic block exceeds the
523
 *   benefit of custom codes for that block.  For fixed codes, no bits are
524
 *   spent on code descriptions.  Instead the code lengths for literal/length
525
 *   codes and distance codes are fixed.  The specific lengths for each symbol
526
 *   can be seen in the "for" loops below.
527
 *
528
 * - The literal/length code is complete, but has two symbols that are invalid
529
 *   and should result in an error if received.  This cannot be implemented
530
 *   simply as an incomplete code since those two symbols are in the "middle"
531
 *   of the code.  They are eight bits long and the longest literal/length\
532
 *   code is nine bits.  Therefore the code must be constructed with those
533
 *   symbols, and the invalid symbols must be detected after decoding.
534
 *
535
 * - The fixed distance codes also have two invalid symbols that should result
536
 *   in an error if received.  Since all of the distance codes are the same
537
 *   length, this can be implemented as an incomplete code.  Then the invalid
538
 *   codes are detected while decoding.
539
 */
540
local int fixed(struct state *s)
541
0
{
542
0
    static int virgin = 1;
543
0
    static short lencnt[MAXBITS+1], lensym[FIXLCODES];
544
0
    static short distcnt[MAXBITS+1], distsym[MAXDCODES];
545
0
    static struct huffman lencode, distcode;
546
547
    /* build fixed huffman tables if first call (may not be thread safe) */
548
0
    if (virgin) {
549
0
        int symbol;
550
0
        short lengths[FIXLCODES];
551
552
        /* construct lencode and distcode */
553
0
        lencode.count = lencnt;
554
0
        lencode.symbol = lensym;
555
0
        distcode.count = distcnt;
556
0
        distcode.symbol = distsym;
557
558
        /* literal/length table */
559
0
        for (symbol = 0; symbol < 144; symbol++)
560
0
            lengths[symbol] = 8;
561
0
        for (; symbol < 256; symbol++)
562
0
            lengths[symbol] = 9;
563
0
        for (; symbol < 280; symbol++)
564
0
            lengths[symbol] = 7;
565
0
        for (; symbol < FIXLCODES; symbol++)
566
0
            lengths[symbol] = 8;
567
0
        construct(&lencode, lengths, FIXLCODES);
568
569
        /* distance table */
570
0
        for (symbol = 0; symbol < MAXDCODES; symbol++)
571
0
            lengths[symbol] = 5;
572
0
        construct(&distcode, lengths, MAXDCODES);
573
574
        /* do this just once */
575
0
        virgin = 0;
576
0
    }
577
578
    /* decode data until end-of-block code */
579
0
    return codes(s, &lencode, &distcode);
580
0
}
581
582
/*
583
 * Process a dynamic codes block.
584
 *
585
 * Format notes:
586
 *
587
 * - A dynamic block starts with a description of the literal/length and
588
 *   distance codes for that block.  New dynamic blocks allow the compressor to
589
 *   rapidly adapt to changing data with new codes optimized for that data.
590
 *
591
 * - The codes used by the deflate format are "canonical", which means that
592
 *   the actual bits of the codes are generated in an unambiguous way simply
593
 *   from the number of bits in each code.  Therefore the code descriptions
594
 *   are simply a list of code lengths for each symbol.
595
 *
596
 * - The code lengths are stored in order for the symbols, so lengths are
597
 *   provided for each of the literal/length symbols, and for each of the
598
 *   distance symbols.
599
 *
600
 * - If a symbol is not used in the block, this is represented by a zero as
601
 *   as the code length.  This does not mean a zero-length code, but rather
602
 *   that no code should be created for this symbol.  There is no way in the
603
 *   deflate format to represent a zero-length code.
604
 *
605
 * - The maximum number of bits in a code is 15, so the possible lengths for
606
 *   any code are 1..15.
607
 *
608
 * - The fact that a length of zero is not permitted for a code has an
609
 *   interesting consequence.  Normally if only one symbol is used for a given
610
 *   code, then in fact that code could be represented with zero bits.  However
611
 *   in deflate, that code has to be at least one bit.  So for example, if
612
 *   only a single distance base symbol appears in a block, then it will be
613
 *   represented by a single code of length one, in particular one 0 bit.  This
614
 *   is an incomplete code, since if a 1 bit is received, it has no meaning,
615
 *   and should result in an error.  So incomplete distance codes of one symbol
616
 *   should be permitted, and the receipt of invalid codes should be handled.
617
 *
618
 * - It is also possible to have a single literal/length code, but that code
619
 *   must be the end-of-block code, since every dynamic block has one.  This
620
 *   is not the most efficient way to create an empty block (an empty fixed
621
 *   block is fewer bits), but it is allowed by the format.  So incomplete
622
 *   literal/length codes of one symbol should also be permitted.
623
 *
624
 * - If there are only literal codes and no lengths, then there are no distance
625
 *   codes.  This is represented by one distance code with zero bits.
626
 *
627
 * - The list of up to 286 length/literal lengths and up to 30 distance lengths
628
 *   are themselves compressed using Huffman codes and run-length encoding.  In
629
 *   the list of code lengths, a 0 symbol means no code, a 1..15 symbol means
630
 *   that length, and the symbols 16, 17, and 18 are run-length instructions.
631
 *   Each of 16, 17, and 18 are followed by extra bits to define the length of
632
 *   the run.  16 copies the last length 3 to 6 times.  17 represents 3 to 10
633
 *   zero lengths, and 18 represents 11 to 138 zero lengths.  Unused symbols
634
 *   are common, hence the special coding for zero lengths.
635
 *
636
 * - The symbols for 0..18 are Huffman coded, and so that code must be
637
 *   described first.  This is simply a sequence of up to 19 three-bit values
638
 *   representing no code (0) or the code length for that symbol (1..7).
639
 *
640
 * - A dynamic block starts with three fixed-size counts from which is computed
641
 *   the number of literal/length code lengths, the number of distance code
642
 *   lengths, and the number of code length code lengths (ok, you come up with
643
 *   a better name!) in the code descriptions.  For the literal/length and
644
 *   distance codes, lengths after those provided are considered zero, i.e. no
645
 *   code.  The code length code lengths are received in a permuted order (see
646
 *   the order[] array below) to make a short code length code length list more
647
 *   likely.  As it turns out, very short and very long codes are less likely
648
 *   to be seen in a dynamic code description, hence what may appear initially
649
 *   to be a peculiar ordering.
650
 *
651
 * - Given the number of literal/length code lengths (nlen) and distance code
652
 *   lengths (ndist), then they are treated as one long list of nlen + ndist
653
 *   code lengths.  Therefore run-length coding can and often does cross the
654
 *   boundary between the two sets of lengths.
655
 *
656
 * - So to summarize, the code description at the start of a dynamic block is
657
 *   three counts for the number of code lengths for the literal/length codes,
658
 *   the distance codes, and the code length codes.  This is followed by the
659
 *   code length code lengths, three bits each.  This is used to construct the
660
 *   code length code which is used to read the remainder of the lengths.  Then
661
 *   the literal/length code lengths and distance lengths are read as a single
662
 *   set of lengths using the code length codes.  Codes are constructed from
663
 *   the resulting two sets of lengths, and then finally you can start
664
 *   decoding actual compressed data in the block.
665
 *
666
 * - For reference, a "typical" size for the code description in a dynamic
667
 *   block is around 80 bytes.
668
 */
669
local int dynamic(struct state *s)
670
0
{
671
0
    int nlen, ndist, ncode;             /* number of lengths in descriptor */
672
0
    int index;                          /* index of lengths[] */
673
0
    int err;                            /* construct() return value */
674
0
    short lengths[MAXCODES];            /* descriptor code lengths */
675
0
    short lencnt[MAXBITS+1], lensym[MAXLCODES];         /* lencode memory */
676
0
    short distcnt[MAXBITS+1], distsym[MAXDCODES];       /* distcode memory */
677
0
    struct huffman lencode, distcode;   /* length and distance codes */
678
0
    static const short order[19] =      /* permutation of code length codes */
679
0
        {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};
680
681
    /* construct lencode and distcode */
682
0
    lencode.count = lencnt;
683
0
    lencode.symbol = lensym;
684
0
    distcode.count = distcnt;
685
0
    distcode.symbol = distsym;
686
687
    /* get number of lengths in each table, check lengths */
688
0
    nlen = bits(s, 5) + 257;
689
0
    ndist = bits(s, 5) + 1;
690
0
    ncode = bits(s, 4) + 4;
691
0
    if (nlen > MAXLCODES || ndist > MAXDCODES)
692
0
        return -3;                      /* bad counts */
693
694
    /* read code length code lengths (really), missing lengths are zero */
695
0
    for (index = 0; index < ncode; index++)
696
0
        lengths[order[index]] = bits(s, 3);
697
0
    for (; index < 19; index++)
698
0
        lengths[order[index]] = 0;
699
700
    /* build huffman table for code lengths codes (use lencode temporarily) */
701
0
    err = construct(&lencode, lengths, 19);
702
0
    if (err != 0)               /* require complete code set here */
703
0
        return -4;
704
705
    /* read length/literal and distance code length tables */
706
0
    index = 0;
707
0
    while (index < nlen + ndist) {
708
0
        int symbol;             /* decoded value */
709
710
0
        symbol = decode(s, &lencode);
711
0
        if (symbol < 0)
712
0
            return symbol;          /* invalid symbol */
713
0
        if (symbol < 16)                /* length in 0..15 */
714
0
            lengths[index++] = symbol;
715
0
        else {                          /* repeat instruction */
716
0
            int len = 0;                /* last length to repeat */
717
                                        /* assume repeating zeros */
718
0
            if (symbol == 16) {         /* repeat last length 3..6 times */
719
0
                if (index == 0)
720
0
                    return -5;          /* no last length! */
721
0
                len = lengths[index - 1];       /* last length */
722
0
                symbol = 3 + bits(s, 2);
723
0
            }
724
0
            else if (symbol == 17)      /* repeat zero 3..10 times */
725
0
                symbol = 3 + bits(s, 3);
726
0
            else                        /* == 18, repeat zero 11..138 times */
727
0
                symbol = 11 + bits(s, 7);
728
0
            if (index + symbol > nlen + ndist)
729
0
                return -6;              /* too many lengths! */
730
0
            while (symbol--)            /* repeat last or zero symbol times */
731
0
                lengths[index++] = len;
732
0
        }
733
0
    }
734
735
    /* check for end-of-block code -- there better be one! */
736
0
    if (lengths[256] == 0)
737
0
        return -9;
738
739
    /* build huffman table for literal/length codes */
740
0
    err = construct(&lencode, lengths, nlen);
741
0
    if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1]))
742
0
        return -7;      /* incomplete code ok only for single length 1 code */
743
744
    /* build huffman table for distance codes */
745
0
    err = construct(&distcode, lengths + nlen, ndist);
746
0
    if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1]))
747
0
        return -8;      /* incomplete code ok only for single length 1 code */
748
749
    /* decode data until end-of-block code */
750
0
    return codes(s, &lencode, &distcode);
751
0
}
752
753
/*
754
 * Inflate source to dest.  On return, destlen and sourcelen are updated to the
755
 * size of the uncompressed data and the size of the deflate data respectively.
756
 * On success, the return value of puff() is zero.  If there is an error in the
757
 * source data, i.e. it is not in the deflate format, then a negative value is
758
 * returned.  If there is not enough input available or there is not enough
759
 * output space, then a positive error is returned.  In that case, destlen and
760
 * sourcelen are not updated to facilitate retrying from the beginning with the
761
 * provision of more input data or more output space.  In the case of invalid
762
 * inflate data (a negative error), the dest and source pointers are updated to
763
 * facilitate the debugging of deflators.
764
 *
765
 * puff() also has a mode to determine the size of the uncompressed output with
766
 * no output written.  For this dest must be (unsigned char *)0.  In this case,
767
 * the input value of *destlen is ignored, and on return *destlen is set to the
768
 * size of the uncompressed output.
769
 *
770
 * The return codes are:
771
 *
772
 *   2:  available inflate data did not terminate
773
 *   1:  output space exhausted before completing inflate
774
 *   0:  successful inflate
775
 *  -1:  invalid block type (type == 3)
776
 *  -2:  stored block length did not match one's complement
777
 *  -3:  dynamic block code description: too many length or distance codes
778
 *  -4:  dynamic block code description: code lengths codes incomplete
779
 *  -5:  dynamic block code description: repeat lengths with no first length
780
 *  -6:  dynamic block code description: repeat more than specified lengths
781
 *  -7:  dynamic block code description: invalid literal/length code lengths
782
 *  -8:  dynamic block code description: invalid distance code lengths
783
 *  -9:  dynamic block code description: missing end-of-block code
784
 * -10:  invalid literal/length or distance code in fixed or dynamic block
785
 * -11:  distance is too far back in fixed or dynamic block
786
 *
787
 * Format notes:
788
 *
789
 * - Three bits are read for each block to determine the kind of block and
790
 *   whether or not it is the last block.  Then the block is decoded and the
791
 *   process repeated if it was not the last block.
792
 *
793
 * - The leftover bits in the last byte of the deflate data after the last
794
 *   block (if it was a fixed or dynamic block) are undefined and have no
795
 *   expected values to check.
796
 */
797
int puff(unsigned char *dest,           /* pointer to destination pointer */
798
         unsigned long *destlen,        /* amount of output space */
799
         const unsigned char *source,   /* pointer to source data pointer */
800
         unsigned long *sourcelen)      /* amount of input available */
801
0
{
802
0
    struct state s;             /* input/output state */
803
0
    int last, type;             /* block information */
804
0
    int err;                    /* return value */
805
806
    /* initialize output state */
807
0
    s.out = dest;
808
0
    s.outlen = *destlen;                /* ignored if dest is NIL */
809
0
    s.outcnt = 0;
810
811
    /* initialize input state */
812
0
    s.in = source;
813
0
    s.inlen = *sourcelen;
814
0
    s.incnt = 0;
815
0
    s.bitbuf = 0;
816
0
    s.bitcnt = 0;
817
818
    /* return if bits() or decode() tries to read past available input */
819
0
    if (setjmp(s.env) != 0)             /* if came back here via longjmp() */
820
0
        err = 2;                        /* then skip do-loop, return error */
821
0
    else {
822
        /* process blocks until last block or error */
823
0
        do {
824
0
            last = bits(&s, 1);         /* one if last block */
825
0
            type = bits(&s, 2);         /* block type 0..3 */
826
0
            err = type == 0 ?
827
0
                    stored(&s) :
828
0
                    (type == 1 ?
829
0
                        fixed(&s) :
830
0
                        (type == 2 ?
831
0
                            dynamic(&s) :
832
0
                            -1));       /* type == 3, invalid */
833
0
            if (err != 0)
834
0
                break;                  /* return with error */
835
0
        } while (!last);
836
0
    }
837
838
    /* update the lengths and return */
839
0
    if (err <= 0) {
840
0
        *destlen = s.outcnt;
841
0
        *sourcelen = s.incnt;
842
0
    }
843
0
    return err;
844
0
}