/* compress.c - deflate/inflate code for zip, gzip, zlib, and raw * * Copyright 2014 Rob Landley * * The inflate/deflate code lives here, so the various things that use it * either live here or call these commands to pipe data through them. * * Divergence from posix: replace obsolete "compress" with mutiplexer. * * See RFCs 1950 (zlib), 1951 (deflate), and 1952 (gzip) * LSB 4.1 has gzip, gunzip, and zcat * TODO: zip -d DIR -x LIST -list -quiet -no overwrite -overwrite -p to stdout // Accept many different kinds of command line argument. // Leave Lrg at end so flag values line up. USE_COMPRESS(NEWTOY(compress, "zcd9Lrg[-cd][!zgLr]", TOYFLAG_USR|TOYFLAG_BIN)) USE_COMPRESS(NEWTOY(zcat, "aLrg[!aLrg]", TOYFLAG_USR|TOYFLAG_BIN)) //zip unzip gzip gunzip zcat config COMPRESS bool "compress" default n help usage: compress [-zglrcd9] [FILE] Compress or decompress file (or stdin) using "deflate" algorithm. -c compress with -g gzip (default) -L zlib -r raw -z zip -d decompress (autodetects type) config ZCAT bool "zcat" default n depends on COMPRESS help usage: zcat [FILE...] Decompress deflated file(s) to stdout */ #define FOR_compress #include "toys.h" GLOBALS( // base offset and extra bits tables (length and distance) char lenbits[29], distbits[30]; unsigned short lenbase[29], distbase[30]; void *fixdisthuff, *fixlithuff; void (*crcfunc)(char *data, int len); unsigned crc, len; char *outbuf; unsigned outlen; int outfd; ) // little endian bit buffer struct bitbuf { int fd, bitpos, len, max; char buf[]; }; // malloc a struct bitbuf struct bitbuf *bitbuf_init(int fd, int size) { struct bitbuf *bb = xmalloc(sizeof(struct bitbuf)+size); memset(bb, 0, sizeof(struct bitbuf)); bb->max = size; bb->fd = fd; return bb; } // Advance bitpos without the overhead of recording bits void bitbuf_skip(struct bitbuf *bb, int bits) { int pos = bb->bitpos + bits, len = bb->len << 3; while (pos >= len) { pos -= len; len = (bb->len = read(bb->fd, bb->buf, bb->max)) << 3; if (bb->len < 1) perror_exit("inflate EOF"); } bb->bitpos = pos; } // Optimized single bit inlined version static inline int bitbuf_bit(struct bitbuf *bb) { int bufpos = bb->bitpos>>3; if (bufpos == bb->len) { bitbuf_skip(bb, 0); bufpos = 0; } return (bb->buf[bufpos]>>(bb->bitpos++&7))&1; } // Fetch the next X bits from the bitbuf, little endian unsigned bitbuf_get(struct bitbuf *bb, int bits) { int result = 0, offset = 0; while (bits) { int click = bb->bitpos >> 3, blow, blen; // Load more data if buffer empty if (click == bb->len) bitbuf_skip(bb, click = 0); // grab bits from next byte blow = bb->bitpos & 7; blen = 8-blow; if (blen > bits) blen = bits; result |= ((bb->buf[click] >> blow) & ((1<bitpos += blen; } return result; } static void outbuf_crc(char sym) { TT.outbuf[TT.outlen++ & 32767] = sym; if (!(TT.outlen & 32767)) { xwrite(TT.outfd, TT.outbuf, 32768); if (TT.crcfunc) TT.crcfunc(0, 32768); } } // Huffman coding uses bits to traverse a binary tree to a leaf node, // By placing frequently occurring symbols at shorter paths, frequently // used symbols may be represented in fewer bits than uncommon symbols. struct huff { unsigned short length[16]; unsigned short symbol[288]; }; // Create simple huffman tree from array of bit lengths. // The symbols in deflate's huffman trees are sorted (first by bit length // of the code to reach them, then by symbol number). This means that given // the bit length of each symbol, we can construct a unique tree. static void len2huff(struct huff *huff, char bitlen[], int len) { int offset[16]; int i; // Count number of codes at each bit length memset(huff, 0, sizeof(struct huff)); for (i = 0; ilength[bitlen[i]]++; // Sort symbols by bit length. (They'll remain sorted by symbol within that.) *huff->length = *offset = 0; for (i = 1; i<16; i++) offset[i] = offset[i-1] + huff->length[i-1]; for (i = 0; isymbol[offset[bitlen[i]]++] = i; } // Fetch and decode next huffman coded symbol from bitbuf. // This takes advantage of the the sorting to navigate the tree as an array: // each time we fetch a bit we have all the codes at that bit level in // order with no gaps.. static unsigned huff_and_puff(struct bitbuf *bb, struct huff *huff) { unsigned short *length = huff->length; int start = 0, offset = 0; // Traverse through the bit lengths until our code is in this range for (;;) { offset = (offset << 1) | bitbuf_bit(bb); start += *++length; if ((offset -= *length) < 0) break; if ((length - huff->length) & 16) error_exit("bad symbol"); } return huff->symbol[start + offset]; } // Decompress deflated data from bitbuf to filehandle. static void inflate(struct bitbuf *bb) { TT.crc = ~0; // repeat until spanked for (;;) { int final, type; final = bitbuf_get(bb, 1); type = bitbuf_get(bb, 2); if (type == 3) error_exit("bad type"); // Uncompressed block? if (!type) { int len, nlen; // Align to byte, read length bitbuf_skip(bb, (8-bb->bitpos)&7); len = bitbuf_get(bb, 16); nlen = bitbuf_get(bb, 16); if (len != (0xffff & ~nlen)) error_exit("bad len"); // Dump literal output data while (len) { int pos = bb->bitpos >> 3, bblen = bb->len - pos; char *p = bb->buf+pos; // dump bytes until done or end of current bitbuf contents if (bblen > len) bblen = len; pos = bblen; while (pos--) outbuf_crc(*(p++)); bitbuf_skip(bb, bblen << 3); len -= bblen; } // Compressed block } else { struct huff *disthuff, *lithuff; // Dynamic huffman codes? if (type == 2) { struct huff *h2 = ((struct huff *)toybuf)+1; int i, litlen, distlen, hufflen; char *hufflen_order = "\x10\x11\x12\0\x08\x07\x09\x06\x0a\x05\x0b" "\x04\x0c\x03\x0d\x02\x0e\x01\x0f", *bits; // The huffman trees are stored as a series of bit lengths litlen = bitbuf_get(bb, 5)+257; // max 288 distlen = bitbuf_get(bb, 5)+1; // max 32 hufflen = bitbuf_get(bb, 4)+4; // max 19 // The literal and distance codes are themselves compressed, in // a complicated way: an array of bit lengths (hufflen many // entries, each 3 bits) is used to fill out an array of 19 entries // in a magic order, leaving the rest 0. Then make a tree out of it: memset(bits = toybuf+1, 0, 19); for (i=0; i>1)) + 3 + (len<<2); memset(bits+i, bits[i-1] * !(sym&3), len); i += len; } } if (i > litlen+distlen) error_exit("bad tree"); len2huff(lithuff = h2, bits, litlen); len2huff(disthuff = ((struct huff *)toybuf)+2, bits+litlen, distlen); // Static huffman codes } else { lithuff = TT.fixlithuff; disthuff = TT.fixdisthuff; } // Use huffman tables to decode block of compressed symbols for (;;) { int sym = huff_and_puff(bb, lithuff); // Literal? if (sym < 256) outbuf_crc(sym); // Copy range? else if (sym > 256) { int len, dist; sym -= 257; len = TT.lenbase[sym] + bitbuf_get(bb, TT.lenbits[sym]); sym = huff_and_puff(bb, disthuff); dist = TT.distbase[sym] + bitbuf_get(bb, TT.distbits[sym]); sym = TT.outlen & 32767; while (len--) outbuf_crc(TT.outbuf[(TT.outlen-dist) & 32767]); // End of block } else break; } } // Was that the last block? if (final) break; } if (TT.outlen & 32767) { xwrite(TT.outfd, TT.outbuf, TT.outlen & 32767); if (TT.crcfunc) TT.crcfunc(0, TT.outlen & 32767); } } static void init_deflate(void) { int i, n = 1; // Ye olde deflate window TT.outbuf = xmalloc(32768); // Calculate lenbits, lenbase, distbits, distbase *TT.lenbase = 3; for (i = 0; i4) { if (!(i&3)) { TT.lenbits[i]++; n <<= 1; } if (i == 27) n--; else TT.lenbits[i+1] = TT.lenbits[i]; } TT.lenbase[i+1] = n + TT.lenbase[i]; } n = 0; for (i = 0; i3 && !(i&1)) n++; TT.distbits[i] = n; } // Init fixed huffman tables for (i=0; i<288; i++) toybuf[i] = 8 + (i>143) - ((i>255)<<1) + (i>279); len2huff(TT.fixlithuff = ((struct huff *)toybuf)+3, toybuf, 288); memset(toybuf, 5, 30); len2huff(TT.fixdisthuff = ((struct huff *)toybuf)+4, toybuf, 30); } // Return true/false whether we consumed a gzip header. static int is_gzip(struct bitbuf *bb) { int flags; // Confirm signature if (bitbuf_get(bb, 24) != 0x088b1f || (flags = bitbuf_get(bb, 8)) > 31) return 0; bitbuf_skip(bb, 6*8); // Skip extra, name, comment, header CRC fields if (flags & 4) bitbuf_skip(bb, 16); if (flags & 8) while (bitbuf_get(bb, 8)); if (flags & 16) while (bitbuf_get(bb, 8)); if (flags & 2) bitbuf_skip(bb, 16); return 1; } void gzip_crc(char *data, int len) { int i; unsigned crc, *crc_table = (unsigned *)(toybuf+sizeof(toybuf)-1024); crc = TT.crc; for (i=0; i>8); TT.crc = crc; TT.len += len; } static void do_zcat(int fd, char *name) { struct bitbuf *bb = bitbuf_init(fd, sizeof(toybuf)); if (!is_gzip(bb)) error_exit("not gzip"); TT.outfd = 1; // Use last 1k of toybuf for little endian crc table crc_init((unsigned *)(toybuf+sizeof(toybuf)-1024), 1); TT.crcfunc = gzip_crc; inflate(bb); // tail: crc32, len32 bitbuf_skip(bb, (8-bb->bitpos)&7); if (~TT.crc != bitbuf_get(bb, 32) || TT.len != bitbuf_get(bb, 32)) error_exit("bad crc"); free(bb); } // Parse many different kinds of command line argument: void compress_main(void) { zcat_main(); } //#define CLEANUP_compress //#define FOR_zcat //#include "generated/flags.h" void zcat_main(void) { init_deflate(); loopfiles(toys.optargs, do_zcat); }