kusano 7d535a
/*
kusano 7d535a
 * puff.c
kusano 7d535a
 * Copyright (C) 2002-2010 Mark Adler
kusano 7d535a
 * For conditions of distribution and use, see copyright notice in puff.h
kusano 7d535a
 * version 2.2, 25 Apr 2010
kusano 7d535a
 *
kusano 7d535a
 * puff.c is a simple inflate written to be an unambiguous way to specify the
kusano 7d535a
 * deflate format.  It is not written for speed but rather simplicity.  As a
kusano 7d535a
 * side benefit, this code might actually be useful when small code is more
kusano 7d535a
 * important than speed, such as bootstrap applications.  For typical deflate
kusano 7d535a
 * data, zlib's inflate() is about four times as fast as puff().  zlib's
kusano 7d535a
 * inflate compiles to around 20K on my machine, whereas puff.c compiles to
kusano 7d535a
 * around 4K on my machine (a PowerPC using GNU cc).  If the faster decode()
kusano 7d535a
 * function here is used, then puff() is only twice as slow as zlib's
kusano 7d535a
 * inflate().
kusano 7d535a
 *
kusano 7d535a
 * All dynamically allocated memory comes from the stack.  The stack required
kusano 7d535a
 * is less than 2K bytes.  This code is compatible with 16-bit int's and
kusano 7d535a
 * assumes that long's are at least 32 bits.  puff.c uses the short data type,
kusano 7d535a
 * assumed to be 16 bits, for arrays in order to to conserve memory.  The code
kusano 7d535a
 * works whether integers are stored big endian or little endian.
kusano 7d535a
 *
kusano 7d535a
 * In the comments below are "Format notes" that describe the inflate process
kusano 7d535a
 * and document some of the less obvious aspects of the format.  This source
kusano 7d535a
 * code is meant to supplement RFC 1951, which formally describes the deflate
kusano 7d535a
 * format:
kusano 7d535a
 *
kusano 7d535a
 *    http://www.zlib.org/rfc-deflate.html
kusano 7d535a
 */
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * Change history:
kusano 7d535a
 *
kusano 7d535a
 * 1.0  10 Feb 2002     - First version
kusano 7d535a
 * 1.1  17 Feb 2002     - Clarifications of some comments and notes
kusano 7d535a
 *                      - Update puff() dest and source pointers on negative
kusano 7d535a
 *                        errors to facilitate debugging deflators
kusano 7d535a
 *                      - Remove longest from struct huffman -- not needed
kusano 7d535a
 *                      - Simplify offs[] index in construct()
kusano 7d535a
 *                      - Add input size and checking, using longjmp() to
kusano 7d535a
 *                        maintain easy readability
kusano 7d535a
 *                      - Use short data type for large arrays
kusano 7d535a
 *                      - Use pointers instead of long to specify source and
kusano 7d535a
 *                        destination sizes to avoid arbitrary 4 GB limits
kusano 7d535a
 * 1.2  17 Mar 2002     - Add faster version of decode(), doubles speed (!),
kusano 7d535a
 *                        but leave simple version for readabilty
kusano 7d535a
 *                      - Make sure invalid distances detected if pointers
kusano 7d535a
 *                        are 16 bits
kusano 7d535a
 *                      - Fix fixed codes table error
kusano 7d535a
 *                      - Provide a scanning mode for determining size of
kusano 7d535a
 *                        uncompressed data
kusano 7d535a
 * 1.3  20 Mar 2002     - Go back to lengths for puff() parameters [Gailly]
kusano 7d535a
 *                      - Add a puff.h file for the interface
kusano 7d535a
 *                      - Add braces in puff() for else do [Gailly]
kusano 7d535a
 *                      - Use indexes instead of pointers for readability
kusano 7d535a
 * 1.4  31 Mar 2002     - Simplify construct() code set check
kusano 7d535a
 *                      - Fix some comments
kusano 7d535a
 *                      - Add FIXLCODES #define
kusano 7d535a
 * 1.5   6 Apr 2002     - Minor comment fixes
kusano 7d535a
 * 1.6   7 Aug 2002     - Minor format changes
kusano 7d535a
 * 1.7   3 Mar 2003     - Added test code for distribution
kusano 7d535a
 *                      - Added zlib-like license
kusano 7d535a
 * 1.8   9 Jan 2004     - Added some comments on no distance codes case
kusano 7d535a
 * 1.9  21 Feb 2008     - Fix bug on 16-bit integer architectures [Pohland]
kusano 7d535a
 *                      - Catch missing end-of-block symbol error
kusano 7d535a
 * 2.0  25 Jul 2008     - Add #define to permit distance too far back
kusano 7d535a
 *                      - Add option in TEST code for puff to write the data
kusano 7d535a
 *                      - Add option in TEST code to skip input bytes
kusano 7d535a
 *                      - Allow TEST code to read from piped stdin
kusano 7d535a
 * 2.1   4 Apr 2010     - Avoid variable initialization for happier compilers
kusano 7d535a
 *                      - Avoid unsigned comparisons for even happier compilers
kusano 7d535a
 * 2.2  25 Apr 2010     - Fix bug in variable initializations [Oberhumer]
kusano 7d535a
 *                      - Add const where appropriate [Oberhumer]
kusano 7d535a
 *                      - Split if's and ?'s for coverage testing
kusano 7d535a
 *                      - Break out test code to separate file
kusano 7d535a
 *                      - Move NIL to puff.h
kusano 7d535a
 *                      - Allow incomplete code only if single code length is 1
kusano 7d535a
 *                      - Add full code coverage test to Makefile
kusano 7d535a
 */
kusano 7d535a
kusano 7d535a
#include <setjmp.h>             /* for setjmp(), longjmp(), and jmp_buf */</setjmp.h>
kusano 7d535a
#include "puff.h"               /* prototype for puff() */
kusano 7d535a
kusano 7d535a
#define local static            /* for local function definitions */
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * Maximums for allocations and loops.  It is not useful to change these --
kusano 7d535a
 * they are fixed by the deflate format.
kusano 7d535a
 */
kusano 7d535a
#define MAXBITS 15              /* maximum bits in a code */
kusano 7d535a
#define MAXLCODES 286           /* maximum number of literal/length codes */
kusano 7d535a
#define MAXDCODES 30            /* maximum number of distance codes */
kusano 7d535a
#define MAXCODES (MAXLCODES+MAXDCODES)  /* maximum codes lengths to read */
kusano 7d535a
#define FIXLCODES 288           /* number of fixed literal/length codes */
kusano 7d535a
kusano 7d535a
/* input and output state */
kusano 7d535a
struct state {
kusano 7d535a
    /* output state */
kusano 7d535a
    unsigned char *out;         /* output buffer */
kusano 7d535a
    unsigned long outlen;       /* available space at out */
kusano 7d535a
    unsigned long outcnt;       /* bytes written to out so far */
kusano 7d535a
kusano 7d535a
    /* input state */
kusano 7d535a
    const unsigned char *in;    /* input buffer */
kusano 7d535a
    unsigned long inlen;        /* available input at in */
kusano 7d535a
    unsigned long incnt;        /* bytes read so far */
kusano 7d535a
    int bitbuf;                 /* bit buffer */
kusano 7d535a
    int bitcnt;                 /* number of bits in bit buffer */
kusano 7d535a
kusano 7d535a
    /* input limit error return state for bits() and decode() */
kusano 7d535a
    jmp_buf env;
kusano 7d535a
};
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * Return need bits from the input stream.  This always leaves less than
kusano 7d535a
 * eight bits in the buffer.  bits() works properly for need == 0.
kusano 7d535a
 *
kusano 7d535a
 * Format notes:
kusano 7d535a
 *
kusano 7d535a
 * - Bits are stored in bytes from the least significant bit to the most
kusano 7d535a
 *   significant bit.  Therefore bits are dropped from the bottom of the bit
kusano 7d535a
 *   buffer, using shift right, and new bytes are appended to the top of the
kusano 7d535a
 *   bit buffer, using shift left.
kusano 7d535a
 */
kusano 7d535a
local int bits(struct state *s, int need)
kusano 7d535a
{
kusano 7d535a
    long val;           /* bit accumulator (can use up to 20 bits) */
kusano 7d535a
kusano 7d535a
    /* load at least need bits into val */
kusano 7d535a
    val = s->bitbuf;
kusano 7d535a
    while (s->bitcnt < need) {
kusano 7d535a
        if (s->incnt == s->inlen)
kusano 7d535a
            longjmp(s->env, 1);         /* out of input */
kusano 7d535a
        val |= (long)(s->in[s->incnt++]) << s->bitcnt;  /* load eight bits */
kusano 7d535a
        s->bitcnt += 8;
kusano 7d535a
    }
kusano 7d535a
kusano 7d535a
    /* drop need bits and update buffer, always zero to seven bits left */
kusano 7d535a
    s->bitbuf = (int)(val >> need);
kusano 7d535a
    s->bitcnt -= need;
kusano 7d535a
kusano 7d535a
    /* return need bits, zeroing the bits above that */
kusano 7d535a
    return (int)(val & ((1L << need) - 1));
kusano 7d535a
}
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * Process a stored block.
kusano 7d535a
 *
kusano 7d535a
 * Format notes:
kusano 7d535a
 *
kusano 7d535a
 * - After the two-bit stored block type (00), the stored block length and
kusano 7d535a
 *   stored bytes are byte-aligned for fast copying.  Therefore any leftover
kusano 7d535a
 *   bits in the byte that has the last bit of the type, as many as seven, are
kusano 7d535a
 *   discarded.  The value of the discarded bits are not defined and should not
kusano 7d535a
 *   be checked against any expectation.
kusano 7d535a
 *
kusano 7d535a
 * - The second inverted copy of the stored block length does not have to be
kusano 7d535a
 *   checked, but it's probably a good idea to do so anyway.
kusano 7d535a
 *
kusano 7d535a
 * - A stored block can have zero length.  This is sometimes used to byte-align
kusano 7d535a
 *   subsets of the compressed data for random access or partial recovery.
kusano 7d535a
 */
kusano 7d535a
local int stored(struct state *s)
kusano 7d535a
{
kusano 7d535a
    unsigned len;       /* length of stored block */
kusano 7d535a
kusano 7d535a
    /* discard leftover bits from current byte (assumes s->bitcnt < 8) */
kusano 7d535a
    s->bitbuf = 0;
kusano 7d535a
    s->bitcnt = 0;
kusano 7d535a
kusano 7d535a
    /* get length and check against its one's complement */
kusano 7d535a
    if (s->incnt + 4 > s->inlen)
kusano 7d535a
        return 2;                               /* not enough input */
kusano 7d535a
    len = s->in[s->incnt++];
kusano 7d535a
    len |= s->in[s->incnt++] << 8;
kusano 7d535a
    if (s->in[s->incnt++] != (~len & 0xff) ||
kusano 7d535a
        s->in[s->incnt++] != ((~len >> 8) & 0xff))
kusano 7d535a
        return -2;                              /* didn't match complement! */
kusano 7d535a
kusano 7d535a
    /* copy len bytes from in to out */
kusano 7d535a
    if (s->incnt + len > s->inlen)
kusano 7d535a
        return 2;                               /* not enough input */
kusano 7d535a
    if (s->out != NIL) {
kusano 7d535a
        if (s->outcnt + len > s->outlen)
kusano 7d535a
            return 1;                           /* not enough output space */
kusano 7d535a
        while (len--)
kusano 7d535a
            s->out[s->outcnt++] = s->in[s->incnt++];
kusano 7d535a
    }
kusano 7d535a
    else {                                      /* just scanning */
kusano 7d535a
        s->outcnt += len;
kusano 7d535a
        s->incnt += len;
kusano 7d535a
    }
kusano 7d535a
kusano 7d535a
    /* done with a valid stored block */
kusano 7d535a
    return 0;
kusano 7d535a
}
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * Huffman code decoding tables.  count[1..MAXBITS] is the number of symbols of
kusano 7d535a
 * each length, which for a canonical code are stepped through in order.
kusano 7d535a
 * symbol[] are the symbol values in canonical order, where the number of
kusano 7d535a
 * entries is the sum of the counts in count[].  The decoding process can be
kusano 7d535a
 * seen in the function decode() below.
kusano 7d535a
 */
kusano 7d535a
struct huffman {
kusano 7d535a
    short *count;       /* number of symbols of each length */
kusano 7d535a
    short *symbol;      /* canonically ordered symbols */
kusano 7d535a
};
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * Decode a code from the stream s using huffman table h.  Return the symbol or
kusano 7d535a
 * a negative value if there is an error.  If all of the lengths are zero, i.e.
kusano 7d535a
 * an empty code, or if the code is incomplete and an invalid code is received,
kusano 7d535a
 * then -10 is returned after reading MAXBITS bits.
kusano 7d535a
 *
kusano 7d535a
 * Format notes:
kusano 7d535a
 *
kusano 7d535a
 * - The codes as stored in the compressed data are bit-reversed relative to
kusano 7d535a
 *   a simple integer ordering of codes of the same lengths.  Hence below the
kusano 7d535a
 *   bits are pulled from the compressed data one at a time and used to
kusano 7d535a
 *   build the code value reversed from what is in the stream in order to
kusano 7d535a
 *   permit simple integer comparisons for decoding.  A table-based decoding
kusano 7d535a
 *   scheme (as used in zlib) does not need to do this reversal.
kusano 7d535a
 *
kusano 7d535a
 * - The first code for the shortest length is all zeros.  Subsequent codes of
kusano 7d535a
 *   the same length are simply integer increments of the previous code.  When
kusano 7d535a
 *   moving up a length, a zero bit is appended to the code.  For a complete
kusano 7d535a
 *   code, the last code of the longest length will be all ones.
kusano 7d535a
 *
kusano 7d535a
 * - Incomplete codes are handled by this decoder, since they are permitted
kusano 7d535a
 *   in the deflate format.  See the format notes for fixed() and dynamic().
kusano 7d535a
 */
kusano 7d535a
#ifdef SLOW
kusano 7d535a
local int decode(struct state *s, const struct huffman *h)
kusano 7d535a
{
kusano 7d535a
    int len;            /* current number of bits in code */
kusano 7d535a
    int code;           /* len bits being decoded */
kusano 7d535a
    int first;          /* first code of length len */
kusano 7d535a
    int count;          /* number of codes of length len */
kusano 7d535a
    int index;          /* index of first code of length len in symbol table */
kusano 7d535a
kusano 7d535a
    code = first = index = 0;
kusano 7d535a
    for (len = 1; len <= MAXBITS; len++) {
kusano 7d535a
        code |= bits(s, 1);             /* get next bit */
kusano 7d535a
        count = h->count[len];
kusano 7d535a
        if (code - count < first)       /* if length len, return symbol */
kusano 7d535a
            return h->symbol[index + (code - first)];
kusano 7d535a
        index += count;                 /* else update for next length */
kusano 7d535a
        first += count;
kusano 7d535a
        first <<= 1;
kusano 7d535a
        code <<= 1;
kusano 7d535a
    }
kusano 7d535a
    return -10;                         /* ran out of codes */
kusano 7d535a
}
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * A faster version of decode() for real applications of this code.   It's not
kusano 7d535a
 * as readable, but it makes puff() twice as fast.  And it only makes the code
kusano 7d535a
 * a few percent larger.
kusano 7d535a
 */
kusano 7d535a
#else /* !SLOW */
kusano 7d535a
local int decode(struct state *s, const struct huffman *h)
kusano 7d535a
{
kusano 7d535a
    int len;            /* current number of bits in code */
kusano 7d535a
    int code;           /* len bits being decoded */
kusano 7d535a
    int first;          /* first code of length len */
kusano 7d535a
    int count;          /* number of codes of length len */
kusano 7d535a
    int index;          /* index of first code of length len in symbol table */
kusano 7d535a
    int bitbuf;         /* bits from stream */
kusano 7d535a
    int left;           /* bits left in next or left to process */
kusano 7d535a
    short *next;        /* next number of codes */
kusano 7d535a
kusano 7d535a
    bitbuf = s->bitbuf;
kusano 7d535a
    left = s->bitcnt;
kusano 7d535a
    code = first = index = 0;
kusano 7d535a
    len = 1;
kusano 7d535a
    next = h->count + 1;
kusano 7d535a
    while (1) {
kusano 7d535a
        while (left--) {
kusano 7d535a
            code |= bitbuf & 1;
kusano 7d535a
            bitbuf >>= 1;
kusano 7d535a
            count = *next++;
kusano 7d535a
            if (code - count < first) { /* if length len, return symbol */
kusano 7d535a
                s->bitbuf = bitbuf;
kusano 7d535a
                s->bitcnt = (s->bitcnt - len) & 7;
kusano 7d535a
                return h->symbol[index + (code - first)];
kusano 7d535a
            }
kusano 7d535a
            index += count;             /* else update for next length */
kusano 7d535a
            first += count;
kusano 7d535a
            first <<= 1;
kusano 7d535a
            code <<= 1;
kusano 7d535a
            len++;
kusano 7d535a
        }
kusano 7d535a
        left = (MAXBITS+1) - len;
kusano 7d535a
        if (left == 0)
kusano 7d535a
            break;
kusano 7d535a
        if (s->incnt == s->inlen)
kusano 7d535a
            longjmp(s->env, 1);         /* out of input */
kusano 7d535a
        bitbuf = s->in[s->incnt++];
kusano 7d535a
        if (left > 8)
kusano 7d535a
            left = 8;
kusano 7d535a
    }
kusano 7d535a
    return -10;                         /* ran out of codes */
kusano 7d535a
}
kusano 7d535a
#endif /* SLOW */
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * Given the list of code lengths length[0..n-1] representing a canonical
kusano 7d535a
 * Huffman code for n symbols, construct the tables required to decode those
kusano 7d535a
 * codes.  Those tables are the number of codes of each length, and the symbols
kusano 7d535a
 * sorted by length, retaining their original order within each length.  The
kusano 7d535a
 * return value is zero for a complete code set, negative for an over-
kusano 7d535a
 * subscribed code set, and positive for an incomplete code set.  The tables
kusano 7d535a
 * can be used if the return value is zero or positive, but they cannot be used
kusano 7d535a
 * if the return value is negative.  If the return value is zero, it is not
kusano 7d535a
 * possible for decode() using that table to return an error--any stream of
kusano 7d535a
 * enough bits will resolve to a symbol.  If the return value is positive, then
kusano 7d535a
 * it is possible for decode() using that table to return an error for received
kusano 7d535a
 * codes past the end of the incomplete lengths.
kusano 7d535a
 *
kusano 7d535a
 * Not used by decode(), but used for error checking, h->count[0] is the number
kusano 7d535a
 * of the n symbols not in the code.  So n - h->count[0] is the number of
kusano 7d535a
 * codes.  This is useful for checking for incomplete codes that have more than
kusano 7d535a
 * one symbol, which is an error in a dynamic block.
kusano 7d535a
 *
kusano 7d535a
 * Assumption: for all i in 0..n-1, 0 <= length[i] <= MAXBITS
kusano 7d535a
 * This is assured by the construction of the length arrays in dynamic() and
kusano 7d535a
 * fixed() and is not verified by construct().
kusano 7d535a
 *
kusano 7d535a
 * Format notes:
kusano 7d535a
 *
kusano 7d535a
 * - Permitted and expected examples of incomplete codes are one of the fixed
kusano 7d535a
 *   codes and any code with a single symbol which in deflate is coded as one
kusano 7d535a
 *   bit instead of zero bits.  See the format notes for fixed() and dynamic().
kusano 7d535a
 *
kusano 7d535a
 * - Within a given code length, the symbols are kept in ascending order for
kusano 7d535a
 *   the code bits definition.
kusano 7d535a
 */
kusano 7d535a
local int construct(struct huffman *h, const short *length, int n)
kusano 7d535a
{
kusano 7d535a
    int symbol;         /* current symbol when stepping through length[] */
kusano 7d535a
    int len;            /* current length when stepping through h->count[] */
kusano 7d535a
    int left;           /* number of possible codes left of current length */
kusano 7d535a
    short offs[MAXBITS+1];      /* offsets in symbol table for each length */
kusano 7d535a
kusano 7d535a
    /* count number of codes of each length */
kusano 7d535a
    for (len = 0; len <= MAXBITS; len++)
kusano 7d535a
        h->count[len] = 0;
kusano 7d535a
    for (symbol = 0; symbol < n; symbol++)
kusano 7d535a
        (h->count[length[symbol]])++;   /* assumes lengths are within bounds */
kusano 7d535a
    if (h->count[0] == n)               /* no codes! */
kusano 7d535a
        return 0;                       /* complete, but decode() will fail */
kusano 7d535a
kusano 7d535a
    /* check for an over-subscribed or incomplete set of lengths */
kusano 7d535a
    left = 1;                           /* one possible code of zero length */
kusano 7d535a
    for (len = 1; len <= MAXBITS; len++) {
kusano 7d535a
        left <<= 1;                     /* one more bit, double codes left */
kusano 7d535a
        left -= h->count[len];          /* deduct count from possible codes */
kusano 7d535a
        if (left < 0)
kusano 7d535a
            return left;                /* over-subscribed--return negative */
kusano 7d535a
    }                                   /* left > 0 means incomplete */
kusano 7d535a
kusano 7d535a
    /* generate offsets into symbol table for each length for sorting */
kusano 7d535a
    offs[1] = 0;
kusano 7d535a
    for (len = 1; len < MAXBITS; len++)
kusano 7d535a
        offs[len + 1] = offs[len] + h->count[len];
kusano 7d535a
kusano 7d535a
    /*
kusano 7d535a
     * put symbols in table sorted by length, by symbol order within each
kusano 7d535a
     * length
kusano 7d535a
     */
kusano 7d535a
    for (symbol = 0; symbol < n; symbol++)
kusano 7d535a
        if (length[symbol] != 0)
kusano 7d535a
            h->symbol[offs[length[symbol]]++] = symbol;
kusano 7d535a
kusano 7d535a
    /* return zero for complete set, positive for incomplete set */
kusano 7d535a
    return left;
kusano 7d535a
}
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * Decode literal/length and distance codes until an end-of-block code.
kusano 7d535a
 *
kusano 7d535a
 * Format notes:
kusano 7d535a
 *
kusano 7d535a
 * - Compressed data that is after the block type if fixed or after the code
kusano 7d535a
 *   description if dynamic is a combination of literals and length/distance
kusano 7d535a
 *   pairs terminated by and end-of-block code.  Literals are simply Huffman
kusano 7d535a
 *   coded bytes.  A length/distance pair is a coded length followed by a
kusano 7d535a
 *   coded distance to represent a string that occurs earlier in the
kusano 7d535a
 *   uncompressed data that occurs again at the current location.
kusano 7d535a
 *
kusano 7d535a
 * - Literals, lengths, and the end-of-block code are combined into a single
kusano 7d535a
 *   code of up to 286 symbols.  They are 256 literals (0..255), 29 length
kusano 7d535a
 *   symbols (257..285), and the end-of-block symbol (256).
kusano 7d535a
 *
kusano 7d535a
 * - There are 256 possible lengths (3..258), and so 29 symbols are not enough
kusano 7d535a
 *   to represent all of those.  Lengths 3..10 and 258 are in fact represented
kusano 7d535a
 *   by just a length symbol.  Lengths 11..257 are represented as a symbol and
kusano 7d535a
 *   some number of extra bits that are added as an integer to the base length
kusano 7d535a
 *   of the length symbol.  The number of extra bits is determined by the base
kusano 7d535a
 *   length symbol.  These are in the static arrays below, lens[] for the base
kusano 7d535a
 *   lengths and lext[] for the corresponding number of extra bits.
kusano 7d535a
 *
kusano 7d535a
 * - The reason that 258 gets its own symbol is that the longest length is used
kusano 7d535a
 *   often in highly redundant files.  Note that 258 can also be coded as the
kusano 7d535a
 *   base value 227 plus the maximum extra value of 31.  While a good deflate
kusano 7d535a
 *   should never do this, it is not an error, and should be decoded properly.
kusano 7d535a
 *
kusano 7d535a
 * - If a length is decoded, including its extra bits if any, then it is
kusano 7d535a
 *   followed a distance code.  There are up to 30 distance symbols.  Again
kusano 7d535a
 *   there are many more possible distances (1..32768), so extra bits are added
kusano 7d535a
 *   to a base value represented by the symbol.  The distances 1..4 get their
kusano 7d535a
 *   own symbol, but the rest require extra bits.  The base distances and
kusano 7d535a
 *   corresponding number of extra bits are below in the static arrays dist[]
kusano 7d535a
 *   and dext[].
kusano 7d535a
 *
kusano 7d535a
 * - Literal bytes are simply written to the output.  A length/distance pair is
kusano 7d535a
 *   an instruction to copy previously uncompressed bytes to the output.  The
kusano 7d535a
 *   copy is from distance bytes back in the output stream, copying for length
kusano 7d535a
 *   bytes.
kusano 7d535a
 *
kusano 7d535a
 * - Distances pointing before the beginning of the output data are not
kusano 7d535a
 *   permitted.
kusano 7d535a
 *
kusano 7d535a
 * - Overlapped copies, where the length is greater than the distance, are
kusano 7d535a
 *   allowed and common.  For example, a distance of one and a length of 258
kusano 7d535a
 *   simply copies the last byte 258 times.  A distance of four and a length of
kusano 7d535a
 *   twelve copies the last four bytes three times.  A simple forward copy
kusano 7d535a
 *   ignoring whether the length is greater than the distance or not implements
kusano 7d535a
 *   this correctly.  You should not use memcpy() since its behavior is not
kusano 7d535a
 *   defined for overlapped arrays.  You should not use memmove() or bcopy()
kusano 7d535a
 *   since though their behavior -is- defined for overlapping arrays, it is
kusano 7d535a
 *   defined to do the wrong thing in this case.
kusano 7d535a
 */
kusano 7d535a
local int codes(struct state *s,
kusano 7d535a
                const struct huffman *lencode,
kusano 7d535a
                const struct huffman *distcode)
kusano 7d535a
{
kusano 7d535a
    int symbol;         /* decoded symbol */
kusano 7d535a
    int len;            /* length for copy */
kusano 7d535a
    unsigned dist;      /* distance for copy */
kusano 7d535a
    static const short lens[29] = { /* Size base for length codes 257..285 */
kusano 7d535a
        3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,
kusano 7d535a
        35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258};
kusano 7d535a
    static const short lext[29] = { /* Extra bits for length codes 257..285 */
kusano 7d535a
        0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2,
kusano 7d535a
        3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0};
kusano 7d535a
    static const short dists[30] = { /* Offset base for distance codes 0..29 */
kusano 7d535a
        1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
kusano 7d535a
        257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
kusano 7d535a
        8193, 12289, 16385, 24577};
kusano 7d535a
    static const short dext[30] = { /* Extra bits for distance codes 0..29 */
kusano 7d535a
        0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6,
kusano 7d535a
        7, 7, 8, 8, 9, 9, 10, 10, 11, 11,
kusano 7d535a
        12, 12, 13, 13};
kusano 7d535a
kusano 7d535a
    /* decode literals and length/distance pairs */
kusano 7d535a
    do {
kusano 7d535a
        symbol = decode(s, lencode);
kusano 7d535a
        if (symbol < 0)
kusano 7d535a
            return symbol;              /* invalid symbol */
kusano 7d535a
        if (symbol < 256) {             /* literal: symbol is the byte */
kusano 7d535a
            /* write out the literal */
kusano 7d535a
            if (s->out != NIL) {
kusano 7d535a
                if (s->outcnt == s->outlen)
kusano 7d535a
                    return 1;
kusano 7d535a
                s->out[s->outcnt] = symbol;
kusano 7d535a
            }
kusano 7d535a
            s->outcnt++;
kusano 7d535a
        }
kusano 7d535a
        else if (symbol > 256) {        /* length */
kusano 7d535a
            /* get and compute length */
kusano 7d535a
            symbol -= 257;
kusano 7d535a
            if (symbol >= 29)
kusano 7d535a
                return -10;             /* invalid fixed code */
kusano 7d535a
            len = lens[symbol] + bits(s, lext[symbol]);
kusano 7d535a
kusano 7d535a
            /* get and check distance */
kusano 7d535a
            symbol = decode(s, distcode);
kusano 7d535a
            if (symbol < 0)
kusano 7d535a
                return symbol;          /* invalid symbol */
kusano 7d535a
            dist = dists[symbol] + bits(s, dext[symbol]);
kusano 7d535a
#ifndef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
kusano 7d535a
            if (dist > s->outcnt)
kusano 7d535a
                return -11;     /* distance too far back */
kusano 7d535a
#endif
kusano 7d535a
kusano 7d535a
            /* copy length bytes from distance bytes back */
kusano 7d535a
            if (s->out != NIL) {
kusano 7d535a
                if (s->outcnt + len > s->outlen)
kusano 7d535a
                    return 1;
kusano 7d535a
                while (len--) {
kusano 7d535a
                    s->out[s->outcnt] =
kusano 7d535a
#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
kusano 7d535a
                        dist > s->outcnt ?
kusano 7d535a
                            0 :
kusano 7d535a
#endif
kusano 7d535a
                            s->out[s->outcnt - dist];
kusano 7d535a
                    s->outcnt++;
kusano 7d535a
                }
kusano 7d535a
            }
kusano 7d535a
            else
kusano 7d535a
                s->outcnt += len;
kusano 7d535a
        }
kusano 7d535a
    } while (symbol != 256);            /* end of block symbol */
kusano 7d535a
kusano 7d535a
    /* done with a valid fixed or dynamic block */
kusano 7d535a
    return 0;
kusano 7d535a
}
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * Process a fixed codes block.
kusano 7d535a
 *
kusano 7d535a
 * Format notes:
kusano 7d535a
 *
kusano 7d535a
 * - This block type can be useful for compressing small amounts of data for
kusano 7d535a
 *   which the size of the code descriptions in a dynamic block exceeds the
kusano 7d535a
 *   benefit of custom codes for that block.  For fixed codes, no bits are
kusano 7d535a
 *   spent on code descriptions.  Instead the code lengths for literal/length
kusano 7d535a
 *   codes and distance codes are fixed.  The specific lengths for each symbol
kusano 7d535a
 *   can be seen in the "for" loops below.
kusano 7d535a
 *
kusano 7d535a
 * - The literal/length code is complete, but has two symbols that are invalid
kusano 7d535a
 *   and should result in an error if received.  This cannot be implemented
kusano 7d535a
 *   simply as an incomplete code since those two symbols are in the "middle"
kusano 7d535a
 *   of the code.  They are eight bits long and the longest literal/length\
kusano 7d535a
 *   code is nine bits.  Therefore the code must be constructed with those
kusano 7d535a
 *   symbols, and the invalid symbols must be detected after decoding.
kusano 7d535a
 *
kusano 7d535a
 * - The fixed distance codes also have two invalid symbols that should result
kusano 7d535a
 *   in an error if received.  Since all of the distance codes are the same
kusano 7d535a
 *   length, this can be implemented as an incomplete code.  Then the invalid
kusano 7d535a
 *   codes are detected while decoding.
kusano 7d535a
 */
kusano 7d535a
local int fixed(struct state *s)
kusano 7d535a
{
kusano 7d535a
    static int virgin = 1;
kusano 7d535a
    static short lencnt[MAXBITS+1], lensym[FIXLCODES];
kusano 7d535a
    static short distcnt[MAXBITS+1], distsym[MAXDCODES];
kusano 7d535a
    static struct huffman lencode, distcode;
kusano 7d535a
kusano 7d535a
    /* build fixed huffman tables if first call (may not be thread safe) */
kusano 7d535a
    if (virgin) {
kusano 7d535a
        int symbol;
kusano 7d535a
        short lengths[FIXLCODES];
kusano 7d535a
kusano 7d535a
        /* construct lencode and distcode */
kusano 7d535a
        lencode.count = lencnt;
kusano 7d535a
        lencode.symbol = lensym;
kusano 7d535a
        distcode.count = distcnt;
kusano 7d535a
        distcode.symbol = distsym;
kusano 7d535a
kusano 7d535a
        /* literal/length table */
kusano 7d535a
        for (symbol = 0; symbol < 144; symbol++)
kusano 7d535a
            lengths[symbol] = 8;
kusano 7d535a
        for (; symbol < 256; symbol++)
kusano 7d535a
            lengths[symbol] = 9;
kusano 7d535a
        for (; symbol < 280; symbol++)
kusano 7d535a
            lengths[symbol] = 7;
kusano 7d535a
        for (; symbol < FIXLCODES; symbol++)
kusano 7d535a
            lengths[symbol] = 8;
kusano 7d535a
        construct(&lencode, lengths, FIXLCODES);
kusano 7d535a
kusano 7d535a
        /* distance table */
kusano 7d535a
        for (symbol = 0; symbol < MAXDCODES; symbol++)
kusano 7d535a
            lengths[symbol] = 5;
kusano 7d535a
        construct(&distcode, lengths, MAXDCODES);
kusano 7d535a
kusano 7d535a
        /* do this just once */
kusano 7d535a
        virgin = 0;
kusano 7d535a
    }
kusano 7d535a
kusano 7d535a
    /* decode data until end-of-block code */
kusano 7d535a
    return codes(s, &lencode, &distcode);
kusano 7d535a
}
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * Process a dynamic codes block.
kusano 7d535a
 *
kusano 7d535a
 * Format notes:
kusano 7d535a
 *
kusano 7d535a
 * - A dynamic block starts with a description of the literal/length and
kusano 7d535a
 *   distance codes for that block.  New dynamic blocks allow the compressor to
kusano 7d535a
 *   rapidly adapt to changing data with new codes optimized for that data.
kusano 7d535a
 *
kusano 7d535a
 * - The codes used by the deflate format are "canonical", which means that
kusano 7d535a
 *   the actual bits of the codes are generated in an unambiguous way simply
kusano 7d535a
 *   from the number of bits in each code.  Therefore the code descriptions
kusano 7d535a
 *   are simply a list of code lengths for each symbol.
kusano 7d535a
 *
kusano 7d535a
 * - The code lengths are stored in order for the symbols, so lengths are
kusano 7d535a
 *   provided for each of the literal/length symbols, and for each of the
kusano 7d535a
 *   distance symbols.
kusano 7d535a
 *
kusano 7d535a
 * - If a symbol is not used in the block, this is represented by a zero as
kusano 7d535a
 *   as the code length.  This does not mean a zero-length code, but rather
kusano 7d535a
 *   that no code should be created for this symbol.  There is no way in the
kusano 7d535a
 *   deflate format to represent a zero-length code.
kusano 7d535a
 *
kusano 7d535a
 * - The maximum number of bits in a code is 15, so the possible lengths for
kusano 7d535a
 *   any code are 1..15.
kusano 7d535a
 *
kusano 7d535a
 * - The fact that a length of zero is not permitted for a code has an
kusano 7d535a
 *   interesting consequence.  Normally if only one symbol is used for a given
kusano 7d535a
 *   code, then in fact that code could be represented with zero bits.  However
kusano 7d535a
 *   in deflate, that code has to be at least one bit.  So for example, if
kusano 7d535a
 *   only a single distance base symbol appears in a block, then it will be
kusano 7d535a
 *   represented by a single code of length one, in particular one 0 bit.  This
kusano 7d535a
 *   is an incomplete code, since if a 1 bit is received, it has no meaning,
kusano 7d535a
 *   and should result in an error.  So incomplete distance codes of one symbol
kusano 7d535a
 *   should be permitted, and the receipt of invalid codes should be handled.
kusano 7d535a
 *
kusano 7d535a
 * - It is also possible to have a single literal/length code, but that code
kusano 7d535a
 *   must be the end-of-block code, since every dynamic block has one.  This
kusano 7d535a
 *   is not the most efficient way to create an empty block (an empty fixed
kusano 7d535a
 *   block is fewer bits), but it is allowed by the format.  So incomplete
kusano 7d535a
 *   literal/length codes of one symbol should also be permitted.
kusano 7d535a
 *
kusano 7d535a
 * - If there are only literal codes and no lengths, then there are no distance
kusano 7d535a
 *   codes.  This is represented by one distance code with zero bits.
kusano 7d535a
 *
kusano 7d535a
 * - The list of up to 286 length/literal lengths and up to 30 distance lengths
kusano 7d535a
 *   are themselves compressed using Huffman codes and run-length encoding.  In
kusano 7d535a
 *   the list of code lengths, a 0 symbol means no code, a 1..15 symbol means
kusano 7d535a
 *   that length, and the symbols 16, 17, and 18 are run-length instructions.
kusano 7d535a
 *   Each of 16, 17, and 18 are follwed by extra bits to define the length of
kusano 7d535a
 *   the run.  16 copies the last length 3 to 6 times.  17 represents 3 to 10
kusano 7d535a
 *   zero lengths, and 18 represents 11 to 138 zero lengths.  Unused symbols
kusano 7d535a
 *   are common, hence the special coding for zero lengths.
kusano 7d535a
 *
kusano 7d535a
 * - The symbols for 0..18 are Huffman coded, and so that code must be
kusano 7d535a
 *   described first.  This is simply a sequence of up to 19 three-bit values
kusano 7d535a
 *   representing no code (0) or the code length for that symbol (1..7).
kusano 7d535a
 *
kusano 7d535a
 * - A dynamic block starts with three fixed-size counts from which is computed
kusano 7d535a
 *   the number of literal/length code lengths, the number of distance code
kusano 7d535a
 *   lengths, and the number of code length code lengths (ok, you come up with
kusano 7d535a
 *   a better name!) in the code descriptions.  For the literal/length and
kusano 7d535a
 *   distance codes, lengths after those provided are considered zero, i.e. no
kusano 7d535a
 *   code.  The code length code lengths are received in a permuted order (see
kusano 7d535a
 *   the order[] array below) to make a short code length code length list more
kusano 7d535a
 *   likely.  As it turns out, very short and very long codes are less likely
kusano 7d535a
 *   to be seen in a dynamic code description, hence what may appear initially
kusano 7d535a
 *   to be a peculiar ordering.
kusano 7d535a
 *
kusano 7d535a
 * - Given the number of literal/length code lengths (nlen) and distance code
kusano 7d535a
 *   lengths (ndist), then they are treated as one long list of nlen + ndist
kusano 7d535a
 *   code lengths.  Therefore run-length coding can and often does cross the
kusano 7d535a
 *   boundary between the two sets of lengths.
kusano 7d535a
 *
kusano 7d535a
 * - So to summarize, the code description at the start of a dynamic block is
kusano 7d535a
 *   three counts for the number of code lengths for the literal/length codes,
kusano 7d535a
 *   the distance codes, and the code length codes.  This is followed by the
kusano 7d535a
 *   code length code lengths, three bits each.  This is used to construct the
kusano 7d535a
 *   code length code which is used to read the remainder of the lengths.  Then
kusano 7d535a
 *   the literal/length code lengths and distance lengths are read as a single
kusano 7d535a
 *   set of lengths using the code length codes.  Codes are constructed from
kusano 7d535a
 *   the resulting two sets of lengths, and then finally you can start
kusano 7d535a
 *   decoding actual compressed data in the block.
kusano 7d535a
 *
kusano 7d535a
 * - For reference, a "typical" size for the code description in a dynamic
kusano 7d535a
 *   block is around 80 bytes.
kusano 7d535a
 */
kusano 7d535a
local int dynamic(struct state *s)
kusano 7d535a
{
kusano 7d535a
    int nlen, ndist, ncode;             /* number of lengths in descriptor */
kusano 7d535a
    int index;                          /* index of lengths[] */
kusano 7d535a
    int err;                            /* construct() return value */
kusano 7d535a
    short lengths[MAXCODES];            /* descriptor code lengths */
kusano 7d535a
    short lencnt[MAXBITS+1], lensym[MAXLCODES];         /* lencode memory */
kusano 7d535a
    short distcnt[MAXBITS+1], distsym[MAXDCODES];       /* distcode memory */
kusano 7d535a
    struct huffman lencode, distcode;   /* length and distance codes */
kusano 7d535a
    static const short order[19] =      /* permutation of code length codes */
kusano 7d535a
        {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};
kusano 7d535a
kusano 7d535a
    /* construct lencode and distcode */
kusano 7d535a
    lencode.count = lencnt;
kusano 7d535a
    lencode.symbol = lensym;
kusano 7d535a
    distcode.count = distcnt;
kusano 7d535a
    distcode.symbol = distsym;
kusano 7d535a
kusano 7d535a
    /* get number of lengths in each table, check lengths */
kusano 7d535a
    nlen = bits(s, 5) + 257;
kusano 7d535a
    ndist = bits(s, 5) + 1;
kusano 7d535a
    ncode = bits(s, 4) + 4;
kusano 7d535a
    if (nlen > MAXLCODES || ndist > MAXDCODES)
kusano 7d535a
        return -3;                      /* bad counts */
kusano 7d535a
kusano 7d535a
    /* read code length code lengths (really), missing lengths are zero */
kusano 7d535a
    for (index = 0; index < ncode; index++)
kusano 7d535a
        lengths[order[index]] = bits(s, 3);
kusano 7d535a
    for (; index < 19; index++)
kusano 7d535a
        lengths[order[index]] = 0;
kusano 7d535a
kusano 7d535a
    /* build huffman table for code lengths codes (use lencode temporarily) */
kusano 7d535a
    err = construct(&lencode, lengths, 19);
kusano 7d535a
    if (err != 0)               /* require complete code set here */
kusano 7d535a
        return -4;
kusano 7d535a
kusano 7d535a
    /* read length/literal and distance code length tables */
kusano 7d535a
    index = 0;
kusano 7d535a
    while (index < nlen + ndist) {
kusano 7d535a
        int symbol;             /* decoded value */
kusano 7d535a
        int len;                /* last length to repeat */
kusano 7d535a
kusano 7d535a
        symbol = decode(s, &lencode);
kusano 7d535a
        if (symbol < 16)                /* length in 0..15 */
kusano 7d535a
            lengths[index++] = symbol;
kusano 7d535a
        else {                          /* repeat instruction */
kusano 7d535a
            len = 0;                    /* assume repeating zeros */
kusano 7d535a
            if (symbol == 16) {         /* repeat last length 3..6 times */
kusano 7d535a
                if (index == 0)
kusano 7d535a
                    return -5;          /* no last length! */
kusano 7d535a
                len = lengths[index - 1];       /* last length */
kusano 7d535a
                symbol = 3 + bits(s, 2);
kusano 7d535a
            }
kusano 7d535a
            else if (symbol == 17)      /* repeat zero 3..10 times */
kusano 7d535a
                symbol = 3 + bits(s, 3);
kusano 7d535a
            else                        /* == 18, repeat zero 11..138 times */
kusano 7d535a
                symbol = 11 + bits(s, 7);
kusano 7d535a
            if (index + symbol > nlen + ndist)
kusano 7d535a
                return -6;              /* too many lengths! */
kusano 7d535a
            while (symbol--)            /* repeat last or zero symbol times */
kusano 7d535a
                lengths[index++] = len;
kusano 7d535a
        }
kusano 7d535a
    }
kusano 7d535a
kusano 7d535a
    /* check for end-of-block code -- there better be one! */
kusano 7d535a
    if (lengths[256] == 0)
kusano 7d535a
        return -9;
kusano 7d535a
kusano 7d535a
    /* build huffman table for literal/length codes */
kusano 7d535a
    err = construct(&lencode, lengths, nlen);
kusano 7d535a
    if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1]))
kusano 7d535a
        return -7;      /* incomplete code ok only for single length 1 code */
kusano 7d535a
kusano 7d535a
    /* build huffman table for distance codes */
kusano 7d535a
    err = construct(&distcode, lengths + nlen, ndist);
kusano 7d535a
    if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1]))
kusano 7d535a
        return -8;      /* incomplete code ok only for single length 1 code */
kusano 7d535a
kusano 7d535a
    /* decode data until end-of-block code */
kusano 7d535a
    return codes(s, &lencode, &distcode);
kusano 7d535a
}
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
 * Inflate source to dest.  On return, destlen and sourcelen are updated to the
kusano 7d535a
 * size of the uncompressed data and the size of the deflate data respectively.
kusano 7d535a
 * On success, the return value of puff() is zero.  If there is an error in the
kusano 7d535a
 * source data, i.e. it is not in the deflate format, then a negative value is
kusano 7d535a
 * returned.  If there is not enough input available or there is not enough
kusano 7d535a
 * output space, then a positive error is returned.  In that case, destlen and
kusano 7d535a
 * sourcelen are not updated to facilitate retrying from the beginning with the
kusano 7d535a
 * provision of more input data or more output space.  In the case of invalid
kusano 7d535a
 * inflate data (a negative error), the dest and source pointers are updated to
kusano 7d535a
 * facilitate the debugging of deflators.
kusano 7d535a
 *
kusano 7d535a
 * puff() also has a mode to determine the size of the uncompressed output with
kusano 7d535a
 * no output written.  For this dest must be (unsigned char *)0.  In this case,
kusano 7d535a
 * the input value of *destlen is ignored, and on return *destlen is set to the
kusano 7d535a
 * size of the uncompressed output.
kusano 7d535a
 *
kusano 7d535a
 * The return codes are:
kusano 7d535a
 *
kusano 7d535a
 *   2:  available inflate data did not terminate
kusano 7d535a
 *   1:  output space exhausted before completing inflate
kusano 7d535a
 *   0:  successful inflate
kusano 7d535a
 *  -1:  invalid block type (type == 3)
kusano 7d535a
 *  -2:  stored block length did not match one's complement
kusano 7d535a
 *  -3:  dynamic block code description: too many length or distance codes
kusano 7d535a
 *  -4:  dynamic block code description: code lengths codes incomplete
kusano 7d535a
 *  -5:  dynamic block code description: repeat lengths with no first length
kusano 7d535a
 *  -6:  dynamic block code description: repeat more than specified lengths
kusano 7d535a
 *  -7:  dynamic block code description: invalid literal/length code lengths
kusano 7d535a
 *  -8:  dynamic block code description: invalid distance code lengths
kusano 7d535a
 *  -9:  dynamic block code description: missing end-of-block code
kusano 7d535a
 * -10:  invalid literal/length or distance code in fixed or dynamic block
kusano 7d535a
 * -11:  distance is too far back in fixed or dynamic block
kusano 7d535a
 *
kusano 7d535a
 * Format notes:
kusano 7d535a
 *
kusano 7d535a
 * - Three bits are read for each block to determine the kind of block and
kusano 7d535a
 *   whether or not it is the last block.  Then the block is decoded and the
kusano 7d535a
 *   process repeated if it was not the last block.
kusano 7d535a
 *
kusano 7d535a
 * - The leftover bits in the last byte of the deflate data after the last
kusano 7d535a
 *   block (if it was a fixed or dynamic block) are undefined and have no
kusano 7d535a
 *   expected values to check.
kusano 7d535a
 */
kusano 7d535a
int puff(unsigned char *dest,           /* pointer to destination pointer */
kusano 7d535a
         unsigned long *destlen,        /* amount of output space */
kusano 7d535a
         const unsigned char *source,   /* pointer to source data pointer */
kusano 7d535a
         unsigned long *sourcelen)      /* amount of input available */
kusano 7d535a
{
kusano 7d535a
    struct state s;             /* input/output state */
kusano 7d535a
    int last, type;             /* block information */
kusano 7d535a
    int err;                    /* return value */
kusano 7d535a
kusano 7d535a
    /* initialize output state */
kusano 7d535a
    s.out = dest;
kusano 7d535a
    s.outlen = *destlen;                /* ignored if dest is NIL */
kusano 7d535a
    s.outcnt = 0;
kusano 7d535a
kusano 7d535a
    /* initialize input state */
kusano 7d535a
    s.in = source;
kusano 7d535a
    s.inlen = *sourcelen;
kusano 7d535a
    s.incnt = 0;
kusano 7d535a
    s.bitbuf = 0;
kusano 7d535a
    s.bitcnt = 0;
kusano 7d535a
kusano 7d535a
    /* return if bits() or decode() tries to read past available input */
kusano 7d535a
    if (setjmp(s.env) != 0)             /* if came back here via longjmp() */
kusano 7d535a
        err = 2;                        /* then skip do-loop, return error */
kusano 7d535a
    else {
kusano 7d535a
        /* process blocks until last block or error */
kusano 7d535a
        do {
kusano 7d535a
            last = bits(&s, 1);         /* one if last block */
kusano 7d535a
            type = bits(&s, 2);         /* block type 0..3 */
kusano 7d535a
            err = type == 0 ?
kusano 7d535a
                    stored(&s) :
kusano 7d535a
                    (type == 1 ?
kusano 7d535a
                        fixed(&s) :
kusano 7d535a
                        (type == 2 ?
kusano 7d535a
                            dynamic(&s) :
kusano 7d535a
                            -1));       /* type == 3, invalid */
kusano 7d535a
            if (err != 0)
kusano 7d535a
                break;                  /* return with error */
kusano 7d535a
        } while (!last);
kusano 7d535a
    }
kusano 7d535a
kusano 7d535a
    /* update the lengths and return */
kusano 7d535a
    if (err <= 0) {
kusano 7d535a
        *destlen = s.outcnt;
kusano 7d535a
        *sourcelen = s.incnt;
kusano 7d535a
    }
kusano 7d535a
    return err;
kusano 7d535a
}