00001 /* 00002 * puff.c 00003 * Copyright (C) 2002-2004 Mark Adler 00004 * For conditions of distribution and use, see copyright notice in puff.h 00005 * version 1.8, 9 Jan 2004 00006 * 00007 * puff.c is a simple inflate written to be an unambiguous way to specify the 00008 * deflate format. It is not written for speed but rather simplicity. As a 00009 * side benefit, this code might actually be useful when small code is more 00010 * important than speed, such as bootstrap applications. For typical deflate 00011 * data, zlib's inflate() is about four times as fast as puff(). zlib's 00012 * inflate compiles to around 20K on my machine, whereas puff.c compiles to 00013 * around 4K on my machine (a PowerPC using GNU cc). If the faster decode() 00014 * function here is used, then puff() is only twice as slow as zlib's 00015 * inflate(). 00016 * 00017 * All dynamically allocated memory comes from the stack. The stack required 00018 * is less than 2K bytes. This code is compatible with 16-bit int's and 00019 * assumes that long's are at least 32 bits. puff.c uses the short data type, 00020 * assumed to be 16 bits, for arrays in order to to conserve memory. The code 00021 * works whether integers are stored big endian or little endian. 00022 * 00023 * In the comments below are "Format notes" that describe the inflate process 00024 * and document some of the less obvious aspects of the format. This source 00025 * code is meant to supplement RFC 1951, which formally describes the deflate 00026 * format: 00027 * 00028 * http://www.zlib.org/rfc-deflate.html 00029 */ 00030 00031 /* 00032 * Change history: 00033 * 00034 * 1.0 10 Feb 2002 - First version 00035 * 1.1 17 Feb 2002 - Clarifications of some comments and notes 00036 * - Update puff() dest and source pointers on negative 00037 * errors to facilitate debugging deflators 00038 * - Remove longest from struct huffman -- not needed 00039 * - Simplify offs[] index in construct() 00040 * - Add input size and checking, using longjmp() to 00041 * maintain easy readability 00042 * - Use short data type for large arrays 00043 * - Use pointers instead of long to specify source and 00044 * destination sizes to avoid arbitrary 4 GB limits 00045 * 1.2 17 Mar 2002 - Add faster version of decode(), doubles speed (!), 00046 * but leave simple version for readabilty 00047 * - Make sure invalid distances detected if pointers 00048 * are 16 bits 00049 * - Fix fixed codes table error 00050 * - Provide a scanning mode for determining size of 00051 * uncompressed data 00052 * 1.3 20 Mar 2002 - Go back to lengths for puff() parameters [Jean-loup] 00053 * - Add a puff.h file for the interface 00054 * - Add braces in puff() for else do [Jean-loup] 00055 * - Use indexes instead of pointers for readability 00056 * 1.4 31 Mar 2002 - Simplify construct() code set check 00057 * - Fix some comments 00058 * - Add FIXLCODES #define 00059 * 1.5 6 Apr 2002 - Minor comment fixes 00060 * 1.6 7 Aug 2002 - Minor format changes 00061 * 1.7 3 Mar 2003 - Added test code for distribution 00062 * - Added zlib-like license 00063 * 1.8 9 Jan 2004 - Added some comments on no distance codes case 00064 */ 00065 00066 #include <setjmp.h> /* for setjmp(), longjmp(), and jmp_buf */ 00067 #include "puff.h" /* prototype for puff() */ 00068 00069 #define local static /* for local function definitions */ 00070 #define NIL ((unsigned char *)0) /* for no output option */ 00071 00072 /* 00073 * Maximums for allocations and loops. It is not useful to change these -- 00074 * they are fixed by the deflate format. 00075 */ 00076 #define MAXBITS 15 /* maximum bits in a code */ 00077 #define MAXLCODES 286 /* maximum number of literal/length codes */ 00078 #define MAXDCODES 30 /* maximum number of distance codes */ 00079 #define MAXCODES (MAXLCODES+MAXDCODES) /* maximum codes lengths to read */ 00080 #define FIXLCODES 288 /* number of fixed literal/length codes */ 00081 00082 /* input and output state */ 00083 struct state { 00084 /* output state */ 00085 unsigned char *out; /* output buffer */ 00086 unsigned long outlen; /* available space at out */ 00087 unsigned long outcnt; /* bytes written to out so far */ 00088 00089 /* input state */ 00090 unsigned char *in; /* input buffer */ 00091 unsigned long inlen; /* available input at in */ 00092 unsigned long incnt; /* bytes read so far */ 00093 int bitbuf; /* bit buffer */ 00094 int bitcnt; /* number of bits in bit buffer */ 00095 00096 /* input limit error return state for bits() and decode() */ 00097 jmp_buf env; 00098 }; 00099 00100 /* 00101 * Return need bits from the input stream. This always leaves less than 00102 * eight bits in the buffer. bits() works properly for need == 0. 00103 * 00104 * Format notes: 00105 * 00106 * - Bits are stored in bytes from the least significant bit to the most 00107 * significant bit. Therefore bits are dropped from the bottom of the bit 00108 * buffer, using shift right, and new bytes are appended to the top of the 00109 * bit buffer, using shift left. 00110 */ 00111 local int bits(struct state *s, int need) 00112 { 00113 long val; /* bit accumulator (can use up to 20 bits) */ 00114 00115 /* load at least need bits into val */ 00116 val = s->bitbuf; 00117 while (s->bitcnt < need) { 00118 if (s->incnt == s->inlen) longjmp(s->env, 1); /* out of input */ 00119 val |= (long)(s->in[s->incnt++]) << s->bitcnt; /* load eight bits */ 00120 s->bitcnt += 8; 00121 } 00122 00123 /* drop need bits and update buffer, always zero to seven bits left */ 00124 s->bitbuf = (int)(val >> need); 00125 s->bitcnt -= need; 00126 00127 /* return need bits, zeroing the bits above that */ 00128 return (int)(val & ((1L << need) - 1)); 00129 } 00130 00131 /* 00132 * Process a stored block. 00133 * 00134 * Format notes: 00135 * 00136 * - After the two-bit stored block type (00), the stored block length and 00137 * stored bytes are byte-aligned for fast copying. Therefore any leftover 00138 * bits in the byte that has the last bit of the type, as many as seven, are 00139 * discarded. The value of the discarded bits are not defined and should not 00140 * be checked against any expectation. 00141 * 00142 * - The second inverted copy of the stored block length does not have to be 00143 * checked, but it's probably a good idea to do so anyway. 00144 * 00145 * - A stored block can have zero length. This is sometimes used to byte-align 00146 * subsets of the compressed data for random access or partial recovery. 00147 */ 00148 local int stored(struct state *s) 00149 { 00150 unsigned len; /* length of stored block */ 00151 00152 /* discard leftover bits from current byte (assumes s->bitcnt < 8) */ 00153 s->bitbuf = 0; 00154 s->bitcnt = 0; 00155 00156 /* get length and check against its one's complement */ 00157 if (s->incnt + 4 > s->inlen) return 2; /* not enough input */ 00158 len = s->in[s->incnt++]; 00159 len |= s->in[s->incnt++] << 8; 00160 if (s->in[s->incnt++] != (~len & 0xff) || 00161 s->in[s->incnt++] != ((~len >> 8) & 0xff)) 00162 return -2; /* didn't match complement! */ 00163 00164 /* copy len bytes from in to out */ 00165 if (s->incnt + len > s->inlen) return 2; /* not enough input */ 00166 if (s->out != NIL) { 00167 if (s->outcnt + len > s->outlen) 00168 return 1; /* not enough output space */ 00169 while (len--) 00170 s->out[s->outcnt++] = s->in[s->incnt++]; 00171 } 00172 else { /* just scanning */ 00173 s->outcnt += len; 00174 s->incnt += len; 00175 } 00176 00177 /* done with a valid stored block */ 00178 return 0; 00179 } 00180 00181 /* 00182 * Huffman code decoding tables. count[1..MAXBITS] is the number of symbols of 00183 * each length, which for a canonical code are stepped through in order. 00184 * symbol[] are the symbol values in canonical order, where the number of 00185 * entries is the sum of the counts in count[]. The decoding process can be 00186 * seen in the function decode() below. 00187 */ 00188 struct huffman { 00189 short *count; /* number of symbols of each length */ 00190 short *symbol; /* canonically ordered symbols */ 00191 }; 00192 00193 /* 00194 * Decode a code from the stream s using huffman table h. Return the symbol or 00195 * a negative value if there is an error. If all of the lengths are zero, i.e. 00196 * an empty code, or if the code is incomplete and an invalid code is received, 00197 * then -9 is returned after reading MAXBITS bits. 00198 * 00199 * Format notes: 00200 * 00201 * - The codes as stored in the compressed data are bit-reversed relative to 00202 * a simple integer ordering of codes of the same lengths. Hence below the 00203 * bits are pulled from the compressed data one at a time and used to 00204 * build the code value reversed from what is in the stream in order to 00205 * permit simple integer comparisons for decoding. A table-based decoding 00206 * scheme (as used in zlib) does not need to do this reversal. 00207 * 00208 * - The first code for the shortest length is all zeros. Subsequent codes of 00209 * the same length are simply integer increments of the previous code. When 00210 * moving up a length, a zero bit is appended to the code. For a complete 00211 * code, the last code of the longest length will be all ones. 00212 * 00213 * - Incomplete codes are handled by this decoder, since they are permitted 00214 * in the deflate format. See the format notes for fixed() and dynamic(). 00215 */ 00216 #ifdef SLOW 00217 local int decode(struct state *s, struct huffman *h) 00218 { 00219 int len; /* current number of bits in code */ 00220 int code; /* len bits being decoded */ 00221 int first; /* first code of length len */ 00222 int count; /* number of codes of length len */ 00223 int index; /* index of first code of length len in symbol table */ 00224 00225 code = first = index = 0; 00226 for (len = 1; len <= MAXBITS; len++) { 00227 code |= bits(s, 1); /* get next bit */ 00228 count = h->count[len]; 00229 if (code < first + count) /* if length len, return symbol */ 00230 return h->symbol[index + (code - first)]; 00231 index += count; /* else update for next length */ 00232 first += count; 00233 first <<= 1; 00234 code <<= 1; 00235 } 00236 return -9; /* ran out of codes */ 00237 } 00238 00239 /* 00240 * A faster version of decode() for real applications of this code. It's not 00241 * as readable, but it makes puff() twice as fast. And it only makes the code 00242 * a few percent larger. 00243 */ 00244 #else /* !SLOW */ 00245 local int decode(struct state *s, struct huffman *h) 00246 { 00247 int len; /* current number of bits in code */ 00248 int code; /* len bits being decoded */ 00249 int first; /* first code of length len */ 00250 int count; /* number of codes of length len */ 00251 int index; /* index of first code of length len in symbol table */ 00252 int bitbuf; /* bits from stream */ 00253 int left; /* bits left in next or left to process */ 00254 short *next; /* next number of codes */ 00255 00256 bitbuf = s->bitbuf; 00257 left = s->bitcnt; 00258 code = first = index = 0; 00259 len = 1; 00260 next = h->count + 1; 00261 while (1) { 00262 while (left--) { 00263 code |= bitbuf & 1; 00264 bitbuf >>= 1; 00265 count = *next++; 00266 if (code < first + count) { /* if length len, return symbol */ 00267 s->bitbuf = bitbuf; 00268 s->bitcnt = (s->bitcnt - len) & 7; 00269 return h->symbol[index + (code - first)]; 00270 } 00271 index += count; /* else update for next length */ 00272 first += count; 00273 first <<= 1; 00274 code <<= 1; 00275 len++; 00276 } 00277 left = (MAXBITS+1) - len; 00278 if (left == 0) break; 00279 if (s->incnt == s->inlen) longjmp(s->env, 1); /* out of input */ 00280 bitbuf = s->in[s->incnt++]; 00281 if (left > 8) left = 8; 00282 } 00283 return -9; /* ran out of codes */ 00284 } 00285 #endif /* SLOW */ 00286 00287 /* 00288 * Given the list of code lengths length[0..n-1] representing a canonical 00289 * Huffman code for n symbols, construct the tables required to decode those 00290 * codes. Those tables are the number of codes of each length, and the symbols 00291 * sorted by length, retaining their original order within each length. The 00292 * return value is zero for a complete code set, negative for an over- 00293 * subscribed code set, and positive for an incomplete code set. The tables 00294 * can be used if the return value is zero or positive, but they cannot be used 00295 * if the return value is negative. If the return value is zero, it is not 00296 * possible for decode() using that table to return an error--any stream of 00297 * enough bits will resolve to a symbol. If the return value is positive, then 00298 * it is possible for decode() using that table to return an error for received 00299 * codes past the end of the incomplete lengths. 00300 * 00301 * Not used by decode(), but used for error checking, h->count[0] is the number 00302 * of the n symbols not in the code. So n - h->count[0] is the number of 00303 * codes. This is useful for checking for incomplete codes that have more than 00304 * one symbol, which is an error in a dynamic block. 00305 * 00306 * Assumption: for all i in 0..n-1, 0 <= length[i] <= MAXBITS 00307 * This is assured by the construction of the length arrays in dynamic() and 00308 * fixed() and is not verified by construct(). 00309 * 00310 * Format notes: 00311 * 00312 * - Permitted and expected examples of incomplete codes are one of the fixed 00313 * codes and any code with a single symbol which in deflate is coded as one 00314 * bit instead of zero bits. See the format notes for fixed() and dynamic(). 00315 * 00316 * - Within a given code length, the symbols are kept in ascending order for 00317 * the code bits definition. 00318 */ 00319 local int construct(struct huffman *h, short *length, int n) 00320 { 00321 int symbol; /* current symbol when stepping through length[] */ 00322 int len; /* current length when stepping through h->count[] */ 00323 int left; /* number of possible codes left of current length */ 00324 short offs[MAXBITS+1]; /* offsets in symbol table for each length */ 00325 00326 /* count number of codes of each length */ 00327 for (len = 0; len <= MAXBITS; len++) 00328 h->count[len] = 0; 00329 for (symbol = 0; symbol < n; symbol++) 00330 (h->count[length[symbol]])++; /* assumes lengths are within bounds */ 00331 if (h->count[0] == n) /* no codes! */ 00332 return 0; /* complete, but decode() will fail */ 00333 00334 /* check for an over-subscribed or incomplete set of lengths */ 00335 left = 1; /* one possible code of zero length */ 00336 for (len = 1; len <= MAXBITS; len++) { 00337 left <<= 1; /* one more bit, double codes left */ 00338 left -= h->count[len]; /* deduct count from possible codes */ 00339 if (left < 0) return left; /* over-subscribed--return negative */ 00340 } /* left > 0 means incomplete */ 00341 00342 /* generate offsets into symbol table for each length for sorting */ 00343 offs[1] = 0; 00344 for (len = 1; len < MAXBITS; len++) 00345 offs[len + 1] = offs[len] + h->count[len]; 00346 00347 /* 00348 * put symbols in table sorted by length, by symbol order within each 00349 * length 00350 */ 00351 for (symbol = 0; symbol < n; symbol++) 00352 if (length[symbol] != 0) 00353 h->symbol[offs[length[symbol]]++] = symbol; 00354 00355 /* return zero for complete set, positive for incomplete set */ 00356 return left; 00357 } 00358 00359 /* 00360 * Decode literal/length and distance codes until an end-of-block code. 00361 * 00362 * Format notes: 00363 * 00364 * - Compressed data that is after the block type if fixed or after the code 00365 * description if dynamic is a combination of literals and length/distance 00366 * pairs terminated by and end-of-block code. Literals are simply Huffman 00367 * coded bytes. A length/distance pair is a coded length followed by a 00368 * coded distance to represent a string that occurs earlier in the 00369 * uncompressed data that occurs again at the current location. 00370 * 00371 * - Literals, lengths, and the end-of-block code are combined into a single 00372 * code of up to 286 symbols. They are 256 literals (0..255), 29 length 00373 * symbols (257..285), and the end-of-block symbol (256). 00374 * 00375 * - There are 256 possible lengths (3..258), and so 29 symbols are not enough 00376 * to represent all of those. Lengths 3..10 and 258 are in fact represented 00377 * by just a length symbol. Lengths 11..257 are represented as a symbol and 00378 * some number of extra bits that are added as an integer to the base length 00379 * of the length symbol. The number of extra bits is determined by the base 00380 * length symbol. These are in the static arrays below, lens[] for the base 00381 * lengths and lext[] for the corresponding number of extra bits. 00382 * 00383 * - The reason that 258 gets its own symbol is that the longest length is used 00384 * often in highly redundant files. Note that 258 can also be coded as the 00385 * base value 227 plus the maximum extra value of 31. While a good deflate 00386 * should never do this, it is not an error, and should be decoded properly. 00387 * 00388 * - If a length is decoded, including its extra bits if any, then it is 00389 * followed a distance code. There are up to 30 distance symbols. Again 00390 * there are many more possible distances (1..32768), so extra bits are added 00391 * to a base value represented by the symbol. The distances 1..4 get their 00392 * own symbol, but the rest require extra bits. The base distances and 00393 * corresponding number of extra bits are below in the static arrays dist[] 00394 * and dext[]. 00395 * 00396 * - Literal bytes are simply written to the output. A length/distance pair is 00397 * an instruction to copy previously uncompressed bytes to the output. The 00398 * copy is from distance bytes back in the output stream, copying for length 00399 * bytes. 00400 * 00401 * - Distances pointing before the beginning of the output data are not 00402 * permitted. 00403 * 00404 * - Overlapped copies, where the length is greater than the distance, are 00405 * allowed and common. For example, a distance of one and a length of 258 00406 * simply copies the last byte 258 times. A distance of four and a length of 00407 * twelve copies the last four bytes three times. A simple forward copy 00408 * ignoring whether the length is greater than the distance or not implements 00409 * this correctly. You should not use memcpy() since its behavior is not 00410 * defined for overlapped arrays. You should not use memmove() or bcopy() 00411 * since though their behavior -is- defined for overlapping arrays, it is 00412 * defined to do the wrong thing in this case. 00413 */ 00414 local int codes(struct state *s, 00415 struct huffman *lencode, 00416 struct huffman *distcode) 00417 { 00418 int symbol; /* decoded symbol */ 00419 int len; /* length for copy */ 00420 unsigned dist; /* distance for copy */ 00421 static const short lens[29] = { /* Size base for length codes 257..285 */ 00422 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 00423 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; 00424 static const short lext[29] = { /* Extra bits for length codes 257..285 */ 00425 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 00426 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; 00427 static const short dists[30] = { /* Offset base for distance codes 0..29 */ 00428 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 00429 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 00430 8193, 12289, 16385, 24577}; 00431 static const short dext[30] = { /* Extra bits for distance codes 0..29 */ 00432 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 00433 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 00434 12, 12, 13, 13}; 00435 00436 /* decode literals and length/distance pairs */ 00437 do { 00438 symbol = decode(s, lencode); 00439 if (symbol < 0) return symbol; /* invalid symbol */ 00440 if (symbol < 256) { /* literal: symbol is the byte */ 00441 /* write out the literal */ 00442 if (s->out != NIL) { 00443 if (s->outcnt == s->outlen) return 1; 00444 s->out[s->outcnt] = symbol; 00445 } 00446 s->outcnt++; 00447 } 00448 else if (symbol > 256) { /* length */ 00449 /* get and compute length */ 00450 symbol -= 257; 00451 if (symbol >= 29) return -9; /* invalid fixed code */ 00452 len = lens[symbol] + bits(s, lext[symbol]); 00453 00454 /* get and check distance */ 00455 symbol = decode(s, distcode); 00456 if (symbol < 0) return symbol; /* invalid symbol */ 00457 dist = dists[symbol] + bits(s, dext[symbol]); 00458 if (dist > s->outcnt) 00459 return -10; /* distance too far back */ 00460 00461 /* copy length bytes from distance bytes back */ 00462 if (s->out != NIL) { 00463 if (s->outcnt + len > s->outlen) return 1; 00464 while (len--) { 00465 s->out[s->outcnt] = s->out[s->outcnt - dist]; 00466 s->outcnt++; 00467 } 00468 } 00469 else 00470 s->outcnt += len; 00471 } 00472 } while (symbol != 256); /* end of block symbol */ 00473 00474 /* done with a valid fixed or dynamic block */ 00475 return 0; 00476 } 00477 00478 /* 00479 * Process a fixed codes block. 00480 * 00481 * Format notes: 00482 * 00483 * - This block type can be useful for compressing small amounts of data for 00484 * which the size of the code descriptions in a dynamic block exceeds the 00485 * benefit of custom codes for that block. For fixed codes, no bits are 00486 * spent on code descriptions. Instead the code lengths for literal/length 00487 * codes and distance codes are fixed. The specific lengths for each symbol 00488 * can be seen in the "for" loops below. 00489 * 00490 * - The literal/length code is complete, but has two symbols that are invalid 00491 * and should result in an error if received. This cannot be implemented 00492 * simply as an incomplete code since those two symbols are in the "middle" 00493 * of the code. They are eight bits long and the longest literal/length\ 00494 * code is nine bits. Therefore the code must be constructed with those 00495 * symbols, and the invalid symbols must be detected after decoding. 00496 * 00497 * - The fixed distance codes also have two invalid symbols that should result 00498 * in an error if received. Since all of the distance codes are the same 00499 * length, this can be implemented as an incomplete code. Then the invalid 00500 * codes are detected while decoding. 00501 */ 00502 local int fixed(struct state *s) 00503 { 00504 static int virgin = 1; 00505 static short lencnt[MAXBITS+1], lensym[FIXLCODES]; 00506 static short distcnt[MAXBITS+1], distsym[MAXDCODES]; 00507 static struct huffman lencode = {lencnt, lensym}; 00508 static struct huffman distcode = {distcnt, distsym}; 00509 00510 /* build fixed huffman tables if first call (may not be thread safe) */ 00511 if (virgin) { 00512 int symbol; 00513 short lengths[FIXLCODES]; 00514 00515 /* literal/length table */ 00516 for (symbol = 0; symbol < 144; symbol++) 00517 lengths[symbol] = 8; 00518 for (; symbol < 256; symbol++) 00519 lengths[symbol] = 9; 00520 for (; symbol < 280; symbol++) 00521 lengths[symbol] = 7; 00522 for (; symbol < FIXLCODES; symbol++) 00523 lengths[symbol] = 8; 00524 construct(&lencode, lengths, FIXLCODES); 00525 00526 /* distance table */ 00527 for (symbol = 0; symbol < MAXDCODES; symbol++) 00528 lengths[symbol] = 5; 00529 construct(&distcode, lengths, MAXDCODES); 00530 00531 /* do this just once */ 00532 virgin = 0; 00533 } 00534 00535 /* decode data until end-of-block code */ 00536 return codes(s, &lencode, &distcode); 00537 } 00538 00539 /* 00540 * Process a dynamic codes block. 00541 * 00542 * Format notes: 00543 * 00544 * - A dynamic block starts with a description of the literal/length and 00545 * distance codes for that block. New dynamic blocks allow the compressor to 00546 * rapidly adapt to changing data with new codes optimized for that data. 00547 * 00548 * - The codes used by the deflate format are "canonical", which means that 00549 * the actual bits of the codes are generated in an unambiguous way simply 00550 * from the number of bits in each code. Therefore the code descriptions 00551 * are simply a list of code lengths for each symbol. 00552 * 00553 * - The code lengths are stored in order for the symbols, so lengths are 00554 * provided for each of the literal/length symbols, and for each of the 00555 * distance symbols. 00556 * 00557 * - If a symbol is not used in the block, this is represented by a zero as 00558 * as the code length. This does not mean a zero-length code, but rather 00559 * that no code should be created for this symbol. There is no way in the 00560 * deflate format to represent a zero-length code. 00561 * 00562 * - The maximum number of bits in a code is 15, so the possible lengths for 00563 * any code are 1..15. 00564 * 00565 * - The fact that a length of zero is not permitted for a code has an 00566 * interesting consequence. Normally if only one symbol is used for a given 00567 * code, then in fact that code could be represented with zero bits. However 00568 * in deflate, that code has to be at least one bit. So for example, if 00569 * only a single distance base symbol appears in a block, then it will be 00570 * represented by a single code of length one, in particular one 0 bit. This 00571 * is an incomplete code, since if a 1 bit is received, it has no meaning, 00572 * and should result in an error. So incomplete distance codes of one symbol 00573 * should be permitted, and the receipt of invalid codes should be handled. 00574 * 00575 * - It is also possible to have a single literal/length code, but that code 00576 * must be the end-of-block code, since every dynamic block has one. This 00577 * is not the most efficient way to create an empty block (an empty fixed 00578 * block is fewer bits), but it is allowed by the format. So incomplete 00579 * literal/length codes of one symbol should also be permitted. 00580 * 00581 * - If there are only literal codes and no lengths, then there are no distance 00582 * codes. This is represented by one distance code with zero bits. 00583 * 00584 * - The list of up to 286 length/literal lengths and up to 30 distance lengths 00585 * are themselves compressed using Huffman codes and run-length encoding. In 00586 * the list of code lengths, a 0 symbol means no code, a 1..15 symbol means 00587 * that length, and the symbols 16, 17, and 18 are run-length instructions. 00588 * Each of 16, 17, and 18 are follwed by extra bits to define the length of 00589 * the run. 16 copies the last length 3 to 6 times. 17 represents 3 to 10 00590 * zero lengths, and 18 represents 11 to 138 zero lengths. Unused symbols 00591 * are common, hence the special coding for zero lengths. 00592 * 00593 * - The symbols for 0..18 are Huffman coded, and so that code must be 00594 * described first. This is simply a sequence of up to 19 three-bit values 00595 * representing no code (0) or the code length for that symbol (1..7). 00596 * 00597 * - A dynamic block starts with three fixed-size counts from which is computed 00598 * the number of literal/length code lengths, the number of distance code 00599 * lengths, and the number of code length code lengths (ok, you come up with 00600 * a better name!) in the code descriptions. For the literal/length and 00601 * distance codes, lengths after those provided are considered zero, i.e. no 00602 * code. The code length code lengths are received in a permuted order (see 00603 * the order[] array below) to make a short code length code length list more 00604 * likely. As it turns out, very short and very long codes are less likely 00605 * to be seen in a dynamic code description, hence what may appear initially 00606 * to be a peculiar ordering. 00607 * 00608 * - Given the number of literal/length code lengths (nlen) and distance code 00609 * lengths (ndist), then they are treated as one long list of nlen + ndist 00610 * code lengths. Therefore run-length coding can and often does cross the 00611 * boundary between the two sets of lengths. 00612 * 00613 * - So to summarize, the code description at the start of a dynamic block is 00614 * three counts for the number of code lengths for the literal/length codes, 00615 * the distance codes, and the code length codes. This is followed by the 00616 * code length code lengths, three bits each. This is used to construct the 00617 * code length code which is used to read the remainder of the lengths. Then 00618 * the literal/length code lengths and distance lengths are read as a single 00619 * set of lengths using the code length codes. Codes are constructed from 00620 * the resulting two sets of lengths, and then finally you can start 00621 * decoding actual compressed data in the block. 00622 * 00623 * - For reference, a "typical" size for the code description in a dynamic 00624 * block is around 80 bytes. 00625 */ 00626 local int dynamic(struct state *s) 00627 { 00628 int nlen, ndist, ncode; /* number of lengths in descriptor */ 00629 int index; /* index of lengths[] */ 00630 int err; /* construct() return value */ 00631 short lengths[MAXCODES]; /* descriptor code lengths */ 00632 short lencnt[MAXBITS+1], lensym[MAXLCODES]; /* lencode memory */ 00633 short distcnt[MAXBITS+1], distsym[MAXDCODES]; /* distcode memory */ 00634 struct huffman lencode = {lencnt, lensym}; /* length code */ 00635 struct huffman distcode = {distcnt, distsym}; /* distance code */ 00636 static const short order[19] = /* permutation of code length codes */ 00637 {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; 00638 00639 /* get number of lengths in each table, check lengths */ 00640 nlen = bits(s, 5) + 257; 00641 ndist = bits(s, 5) + 1; 00642 ncode = bits(s, 4) + 4; 00643 if (nlen > MAXLCODES || ndist > MAXDCODES) 00644 return -3; /* bad counts */ 00645 00646 /* read code length code lengths (really), missing lengths are zero */ 00647 for (index = 0; index < ncode; index++) 00648 lengths[order[index]] = bits(s, 3); 00649 for (; index < 19; index++) 00650 lengths[order[index]] = 0; 00651 00652 /* build huffman table for code lengths codes (use lencode temporarily) */ 00653 err = construct(&lencode, lengths, 19); 00654 if (err != 0) return -4; /* require complete code set here */ 00655 00656 /* read length/literal and distance code length tables */ 00657 index = 0; 00658 while (index < nlen + ndist) { 00659 int symbol; /* decoded value */ 00660 int len; /* last length to repeat */ 00661 00662 symbol = decode(s, &lencode); 00663 if (symbol < 16) /* length in 0..15 */ 00664 lengths[index++] = symbol; 00665 else { /* repeat instruction */ 00666 len = 0; /* assume repeating zeros */ 00667 if (symbol == 16) { /* repeat last length 3..6 times */ 00668 if (index == 0) return -5; /* no last length! */ 00669 len = lengths[index - 1]; /* last length */ 00670 symbol = 3 + bits(s, 2); 00671 } 00672 else if (symbol == 17) /* repeat zero 3..10 times */ 00673 symbol = 3 + bits(s, 3); 00674 else /* == 18, repeat zero 11..138 times */ 00675 symbol = 11 + bits(s, 7); 00676 if (index + symbol > nlen + ndist) 00677 return -6; /* too many lengths! */ 00678 while (symbol--) /* repeat last or zero symbol times */ 00679 lengths[index++] = len; 00680 } 00681 } 00682 00683 /* build huffman table for literal/length codes */ 00684 err = construct(&lencode, lengths, nlen); 00685 if (err < 0 || (err > 0 && nlen - lencode.count[0] != 1)) 00686 return -7; /* only allow incomplete codes if just one code */ 00687 00688 /* build huffman table for distance codes */ 00689 err = construct(&distcode, lengths + nlen, ndist); 00690 if (err < 0 || (err > 0 && ndist - distcode.count[0] != 1)) 00691 return -8; /* only allow incomplete codes if just one code */ 00692 00693 /* decode data until end-of-block code */ 00694 return codes(s, &lencode, &distcode); 00695 } 00696 00697 /* 00698 * Inflate source to dest. On return, destlen and sourcelen are updated to the 00699 * size of the uncompressed data and the size of the deflate data respectively. 00700 * On success, the return value of puff() is zero. If there is an error in the 00701 * source data, i.e. it is not in the deflate format, then a negative value is 00702 * returned. If there is not enough input available or there is not enough 00703 * output space, then a positive error is returned. In that case, destlen and 00704 * sourcelen are not updated to facilitate retrying from the beginning with the 00705 * provision of more input data or more output space. In the case of invalid 00706 * inflate data (a negative error), the dest and source pointers are updated to 00707 * facilitate the debugging of deflators. 00708 * 00709 * puff() also has a mode to determine the size of the uncompressed output with 00710 * no output written. For this dest must be (unsigned char *)0. In this case, 00711 * the input value of *destlen is ignored, and on return *destlen is set to the 00712 * size of the uncompressed output. 00713 * 00714 * The return codes are: 00715 * 00716 * 2: available inflate data did not terminate 00717 * 1: output space exhausted before completing inflate 00718 * 0: successful inflate 00719 * -1: invalid block type (type == 3) 00720 * -2: stored block length did not match one's complement 00721 * -3: dynamic block code description: too many length or distance codes 00722 * -4: dynamic block code description: code lengths codes incomplete 00723 * -5: dynamic block code description: repeat lengths with no first length 00724 * -6: dynamic block code description: repeat more than specified lengths 00725 * -7: dynamic block code description: invalid literal/length code lengths 00726 * -8: dynamic block code description: invalid distance code lengths 00727 * -9: invalid literal/length or distance code in fixed or dynamic block 00728 * -10: distance is too far back in fixed or dynamic block 00729 * 00730 * Format notes: 00731 * 00732 * - Three bits are read for each block to determine the kind of block and 00733 * whether or not it is the last block. Then the block is decoded and the 00734 * process repeated if it was not the last block. 00735 * 00736 * - The leftover bits in the last byte of the deflate data after the last 00737 * block (if it was a fixed or dynamic block) are undefined and have no 00738 * expected values to check. 00739 */ 00740 int puff(unsigned char *dest, /* pointer to destination pointer */ 00741 unsigned long *destlen, /* amount of output space */ 00742 unsigned char *source, /* pointer to source data pointer */ 00743 unsigned long *sourcelen) /* amount of input available */ 00744 { 00745 struct state s; /* input/output state */ 00746 int last, type; /* block information */ 00747 int err; /* return value */ 00748 00749 /* initialize output state */ 00750 s.out = dest; 00751 s.outlen = *destlen; /* ignored if dest is NIL */ 00752 s.outcnt = 0; 00753 00754 /* initialize input state */ 00755 s.in = source; 00756 s.inlen = *sourcelen; 00757 s.incnt = 0; 00758 s.bitbuf = 0; 00759 s.bitcnt = 0; 00760 00761 /* return if bits() or decode() tries to read past available input */ 00762 if (setjmp(s.env) != 0) /* if came back here via longjmp() */ 00763 err = 2; /* then skip do-loop, return error */ 00764 else { 00765 /* process blocks until last block or error */ 00766 do { 00767 last = bits(&s, 1); /* one if last block */ 00768 type = bits(&s, 2); /* block type 0..3 */ 00769 err = type == 0 ? stored(&s) : 00770 (type == 1 ? fixed(&s) : 00771 (type == 2 ? dynamic(&s) : 00772 -1)); /* type == 3, invalid */ 00773 if (err != 0) break; /* return with error */ 00774 } while (!last); 00775 } 00776 00777 /* update the lengths and return */ 00778 if (err <= 0) { 00779 *destlen = s.outcnt; 00780 *sourcelen = s.incnt; 00781 } 00782 return err; 00783 } 00784 00785 #ifdef TEST 00786 /* Example of how to use puff() */ 00787 #include <stdio.h> 00788 #include <stdlib.h> 00789 #include <sys/types.h> 00790 #include <sys/stat.h> 00791 00792 local unsigned char *yank(char *name, unsigned long *len) 00793 { 00794 unsigned long size; 00795 unsigned char *buf; 00796 FILE *in; 00797 struct stat s; 00798 00799 *len = 0; 00800 if (stat(name, &s)) return NULL; 00801 if ((s.st_mode & S_IFMT) != S_IFREG) return NULL; 00802 size = (unsigned long)(s.st_size); 00803 if (size == 0 || (off_t)size != s.st_size) return NULL; 00804 in = fopen(name, "r"); 00805 if (in == NULL) return NULL; 00806 buf = malloc(size); 00807 if (buf != NULL && fread(buf, 1, size, in) != size) { 00808 free(buf); 00809 buf = NULL; 00810 } 00811 fclose(in); 00812 *len = size; 00813 return buf; 00814 } 00815 00816 int main(int argc, char **argv) 00817 { 00818 int ret; 00819 unsigned char *source; 00820 unsigned long len, sourcelen, destlen; 00821 00822 if (argc < 2) return 2; 00823 source = yank(argv[1], &len); 00824 if (source == NULL) return 2; 00825 sourcelen = len; 00826 ret = puff(NIL, &destlen, source, &sourcelen); 00827 if (ret) 00828 printf("puff() failed with return code %d\n", ret); 00829 else { 00830 printf("puff() succeeded uncompressing %lu bytes\n", destlen); 00831 if (sourcelen < len) printf("%lu compressed bytes unused\n", 00832 len - sourcelen); 00833 } 00834 free(source); 00835 return ret; 00836 } 00837 #endif
1.4.6