funzip.c
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:16k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. /* funzip.c -- put in the public domain by Mark Adler */
  2. #define VERSION "3.93 of 21 November 1998"
  3. /* You can do whatever you like with this source file, though I would
  4.    prefer that if you modify it and redistribute it that you include
  5.    comments to that effect with your name and the date.  Thank you.
  6.    History:
  7.    vers     date          who           what
  8.    ----   ---------  --------------  ------------------------------------
  9.    1.0    13 Aug 92  M. Adler        really simple unzip filter.
  10.    1.1    13 Aug 92  M. Adler        cleaned up somewhat, give help if
  11.                                      stdin not redirected, warn if more
  12.                                      zip file entries after the first.
  13.    1.2    15 Aug 92  M. Adler        added check of lengths for stored
  14.                                      entries, added more help.
  15.    1.3    16 Aug 92  M. Adler        removed redundant #define's, added
  16.                                      decryption.
  17.    1.4    27 Aug 92  G. Roelofs      added exit(0).
  18.    1.5     1 Sep 92  K. U. Rommel    changed read/write modes for OS/2.
  19.    1.6     6 Sep 92  G. Roelofs      modified to use dummy crypt.c and
  20.                                      crypt.h instead of -DCRYPT.
  21.    1.7    23 Sep 92  G. Roelofs      changed to use DOS_OS2; included
  22.                                      crypt.c under MS-DOS.
  23.    1.8     9 Oct 92  M. Adler        improved inflation error msgs.
  24.    1.9    17 Oct 92  G. Roelofs      changed ULONG/UWORD/byte to ulg/ush/uch;
  25.                                      renamed inflate_entry() to inflate();
  26.                                      adapted to use new, in-place zdecode.
  27.    2.0    22 Oct 92  M. Adler        allow filename argument, prompt for
  28.                                      passwords and don't echo, still allow
  29.                                      command-line password entry, but as an
  30.                                      option.
  31.    2.1    23 Oct 92  J-l. Gailly     fixed crypt/store bug,
  32.                      G. Roelofs      removed crypt.c under MS-DOS, fixed
  33.                                      decryption check to compare single byte.
  34.    2.2    28 Oct 92  G. Roelofs      removed declaration of key.
  35.    2.3    14 Dec 92  M. Adler        replaced fseek (fails on stdin for SCO
  36.                                      Unix V.3.2.4).  added quietflg for
  37.                                      inflate.c.
  38.    3.0    11 May 93  M. Adler        added gzip support
  39.    3.1     9 Jul 93  K. U. Rommel    fixed OS/2 pipe bug (PIPE_ERROR)
  40.    3.2     4 Sep 93  G. Roelofs      moved crc_32_tab[] to tables.h; used FOPx
  41.                                      from unzip.h; nuked OUTB macro and outbuf;
  42.                                      replaced flush(); inlined FlushOutput();
  43.                                      renamed decrypt to encrypted
  44.    3.3    29 Sep 93  G. Roelofs      replaced ReadByte() with NEXTBYTE macro;
  45.                                      revised (restored?) flush(); added FUNZIP
  46.    3.4    21 Oct 93  G. Roelofs      renamed quietflg to qflag; changed outcnt,
  47.                      H. Gessau       second updcrc() arg and flush() arg to ulg;
  48.                                      added inflate_free(); added "g =" to null
  49.                                      getc(in) to avoid compiler warnings
  50.    3.5    31 Oct 93  H. Gessau       changed DOS_OS2 to DOS_NT_OS2
  51.    3.6     6 Dec 93  H. Gessau       added "near" to mask_bits[]
  52.    3.7     9 Dec 93  G. Roelofs      added extent typecasts to fwrite() checks
  53.    3.8    28 Jan 94  GRR/JlG         initialized g variable in main() for gcc
  54.    3.81   22 Feb 94  M. Hanning-Lee  corrected usage message
  55.    3.82   27 Feb 94  G. Roelofs      added some typecasts to avoid warnings
  56.    3.83   22 Jul 94  G. Roelofs      changed fprintf to macro for DLLs
  57.     -      2 Aug 94  -               public release with UnZip 5.11
  58.     -     28 Aug 94  -               public release with UnZip 5.12
  59.    3.84    1 Oct 94  K. U. Rommel    changes for Metaware High C
  60.    3.85   29 Oct 94  G. Roelofs      changed fprintf macro to Info
  61.    3.86    7 May 95  K. Davis        RISCOS patches;
  62.                      P. Kienitz      Amiga patches
  63.    3.87   12 Aug 95  G. Roelofs      inflate_free(), DESTROYGLOBALS fixes
  64.    3.88    4 Sep 95  C. Spieler      reordered macro to work around MSC 5.1 bug
  65.    3.89   22 Nov 95  PK/CS           ifdef'd out updcrc() for ASM_CRC
  66.    3.9    17 Dec 95  G. Roelofs      modified for USE_ZLIB (new fillinbuf())
  67.     -     30 Apr 96  -               public release with UnZip 5.2
  68.    3.91   17 Aug 96  G. Roelofs      main() -> return int (Peter Seebach)
  69.    3.92   13 Apr 97  G. Roelofs      minor cosmetic fixes to messages
  70.     -     22 Apr 97  -               public release with UnZip 5.3
  71.     -     31 May 97  -               public release with UnZip 5.31
  72.    3.93   20 Sep 97  G. Roelofs      minor cosmetic fixes to messages
  73.     -      3 Nov 97  -               public release with UnZip 5.32
  74.     -     28 Nov 98  -               public release with UnZip 5.4
  75.  */
  76. /*
  77.    All funzip does is take a zipfile from stdin and decompress the
  78.    first entry to stdout.  The entry has to be either deflated or
  79.    stored.  If the entry is encrypted, then the decryption password
  80.    must be supplied on the command line as the first argument.
  81.    funzip needs to be linked with inflate.o and crypt.o compiled from
  82.    the unzip source.  If decryption is desired, the full version of
  83.    crypt.c (and crypt.h) from zcrypt21.zip or later must be used.
  84.  */
  85. #define FUNZIP
  86. #define UNZIP_INTERNAL
  87. #include "unzip.h"
  88. #include "crypt.h"
  89. #include "ttyio.h"
  90. #ifdef EBCDIC
  91. #  undef EBCDIC                 /* don't need ebcdic[] */
  92. #endif
  93. #include "tables.h"             /* crc_32_tab[] */
  94. #ifndef USE_ZLIB  /* zlib's function is called inflate(), too */
  95. #  define UZinflate inflate
  96. #endif
  97. /* PKZIP header definitions */
  98. #define ZIPMAG 0x4b50           /* two-byte zip lead-in */
  99. #define LOCREM 0x0403           /* remaining two bytes in zip signature */
  100. #define LOCSIG 0x04034b50L      /* full signature */
  101. #define LOCFLG 4                /* offset of bit flag */
  102. #define  CRPFLG 1               /*  bit for encrypted entry */
  103. #define  EXTFLG 8               /*  bit for extended local header */
  104. #define LOCHOW 6                /* offset of compression method */
  105. #define LOCTIM 8                /* file mod time (for decryption) */
  106. #define LOCCRC 12               /* offset of crc */
  107. #define LOCSIZ 16               /* offset of compressed size */
  108. #define LOCLEN 20               /* offset of uncompressed length */
  109. #define LOCFIL 24               /* offset of file name field length */
  110. #define LOCEXT 26               /* offset of extra field length */
  111. #define LOCHDR 28               /* size of local header, including LOCREM */
  112. #define EXTHDR 16               /* size of extended local header, inc sig */
  113. /* GZIP header definitions */
  114. #define GZPMAG 0x8b1f           /* two-byte gzip lead-in */
  115. #define GZPHOW 0                /* offset of method number */
  116. #define GZPFLG 1                /* offset of gzip flags */
  117. #define  GZPMUL 2               /* bit for multiple-part gzip file */
  118. #define  GZPISX 4               /* bit for extra field present */
  119. #define  GZPISF 8               /* bit for filename present */
  120. #define  GZPISC 16              /* bit for comment present */
  121. #define  GZPISE 32              /* bit for encryption */
  122. #define GZPTIM 2                /* offset of Unix file modification time */
  123. #define GZPEXF 6                /* offset of extra flags */
  124. #define GZPCOS 7                /* offset of operating system compressed on */
  125. #define GZPHDR 8                /* length of minimal gzip header */
  126. /* Macros for getting two-byte and four-byte header values */
  127. #define SH(p) ((ush)(uch)((p)[0]) | ((ush)(uch)((p)[1]) << 8))
  128. #define LG(p) ((ulg)(SH(p)) | ((ulg)(SH((p)+2)) << 16))
  129. /* Function prototypes */
  130. void err OF((int, char *));
  131. int main OF((int, char **));
  132. /* Globals */
  133. FILE *out;                      /* output file (*in moved to G struct) */
  134. ulg outsiz;                     /* total bytes written to out */
  135. int encrypted;                  /* flag to turn on decryption */
  136. /* Masks for inflate.c */
  137. ZCONST ush near mask_bits[] = {
  138.     0x0000,
  139.     0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff,
  140.     0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff
  141. };
  142. #ifdef USE_ZLIB
  143. int fillinbuf(__G)
  144. __GDEF
  145. /* Fill input buffer for pull-model inflate() in zlib.  Return the number of
  146.  * bytes in inbuf. */
  147. {
  148. /*   GRR: check return value from fread(): same as read()?  check errno? */
  149.   if ((G.incnt = fread((char *)G.inbuf, 1, INBUFSIZ, G.in)) <= 0)
  150.     return 0;
  151.   G.inptr = G.inbuf;
  152. #if CRYPT
  153.   if (encrypted) {
  154.     uch *p;
  155.     int n;
  156.     for (n = G.incnt, p = G.inptr;  n--;  p++)
  157.       zdecode(*p);
  158.   }
  159. #endif /* CRYPT */
  160.   return G.incnt;
  161. }
  162. #endif /* USE_ZLIB */
  163. #if (!defined(USE_ZLIB) || defined(USE_OWN_CRCTAB))
  164. #ifdef USE_ZLIB
  165. ZCONST uLongf *get_crc_table()
  166. {
  167.   return (ZCONST uLongf *)crc_32_tab;
  168. }
  169. #else /* !USE_ZLIB */
  170. ZCONST ulg near *get_crc_table()
  171. {
  172.   return crc_32_tab;
  173. }
  174. #endif /* ?USE_ZLIB */
  175. #endif /* !USE_ZLIB || USE_OWN_CRCTAB */
  176. void err(n, m)
  177. int n;
  178. char *m;
  179. /* Exit on error with a message and a code */
  180. {
  181.   Info(slide, 1, ((char *)slide, "funzip error: %sn", m));
  182.   DESTROYGLOBALS()
  183.   EXIT(n);
  184. }
  185. int flush(w)    /* used by inflate.c (FLUSH macro) */
  186. ulg w;          /* number of bytes to flush */
  187. {
  188.   G.crc32val = crc32(G.crc32val, slide, (extent)w);
  189.   if (fwrite((char *)slide,1,(extent)w,out) != (extent)w && !PIPE_ERROR)
  190.     err(9, "out of space on stdout");
  191.   outsiz += w;
  192.   return 0;
  193. }
  194. int main(argc, argv)
  195. int argc;
  196. char **argv;
  197. /* Given a zipfile on stdin, decompress the first entry to stdout. */
  198. {
  199.   ush n;
  200.   uch h[LOCHDR];                /* first local header (GZPHDR < LOCHDR) */
  201.   int g = 0;                    /* true if gzip format */
  202. #if CRYPT
  203.   char *s = " [-password]";
  204.   char *p;                      /* password */
  205. #else /* !CRYPT */
  206.   char *s = "";
  207. #endif /* ?CRYPT */
  208.   CONSTRUCTGLOBALS();
  209.   /* skip executable name */
  210.   argc--;
  211.   argv++;
  212. #if CRYPT
  213.   /* get the command line password, if any */
  214.   p = (char *)NULL;
  215.   if (argc && **argv == '-')
  216.   {
  217.     argc--;
  218.     p = 1 + *argv++;
  219.   }
  220. #endif /* CRYPT */
  221. #ifdef MALLOC_WORK
  222.   G.area.Slide = (uch *)calloc(8193, sizeof(short)+sizeof(char)+sizeof(char));
  223. #endif
  224.   /* if no file argument and stdin not redirected, give the user help */
  225.   if (argc == 0 && isatty(0))
  226.   {
  227.     Info(slide, 1, ((char *)slide, "fUnZip (filter UnZip), version %sn",
  228.       VERSION));
  229.     Info(slide, 1, ((char *)slide, "usage: ... | funzip%s | ...n", s));
  230.     Info(slide, 1, ((char *)slide, "       ... | funzip%s > outfilen", s));
  231.     Info(slide, 1, ((char *)slide, "       funzip%s infile.zip > outfilen",s));
  232.     Info(slide, 1, ((char *)slide, "       funzip%s infile.gz > outfilen", s));
  233.     Info(slide, 1, ((char *)slide, "Extracts to stdout the gzip file or first
  234.  zip entry of stdin or the given file.n"));
  235.     DESTROYGLOBALS()
  236.     EXIT(3);
  237.   }
  238.   /* prepare to be a binary filter */
  239.   if (argc)
  240.   {
  241.     if ((G.in = fopen(*argv, FOPR)) == (FILE *)NULL)
  242.       err(2, "cannot find input file");
  243.   }
  244.   else
  245.   {
  246. #ifdef DOS_FLX_H68_OS2_W32
  247. #if (defined(__HIGHC__) && !defined(FLEXOS))
  248.     setmode(stdin, _BINARY);
  249. #else
  250.     setmode(0, O_BINARY);  /* some buggy C libraries require BOTH setmode() */
  251. #endif                     /*  call AND the fdopen() in binary mode :-( */
  252. #endif /* DOS_FLX_H68_OS2_W32 */
  253. #ifdef RISCOS
  254.     G.in = stdin;
  255. #else
  256.     if ((G.in = fdopen(0, FOPR)) == (FILE *)NULL)
  257.       err(2, "cannot find stdin");
  258. #endif
  259.   }
  260. #ifdef DOS_FLX_H68_OS2_W32
  261. #if (defined(__HIGHC__) && !defined(FLEXOS))
  262.   setmode(stdout, _BINARY);
  263. #else
  264.   setmode(1, O_BINARY);
  265. #endif
  266. #endif /* DOS_FLX_H68_OS2_W32 */
  267. #ifdef RISCOS
  268.   out = stdout;
  269. #else
  270.   if ((out = fdopen(1, FOPW)) == (FILE *)NULL)
  271.     err(2, "cannot write to stdout");
  272. #endif
  273.   /* read local header, check validity, and skip name and extra fields */
  274.   n = getc(G.in);  n |= getc(G.in) << 8;
  275.   if (n == ZIPMAG)
  276.   {
  277.     if (fread((char *)h, 1, LOCHDR, G.in) != LOCHDR || SH(h) != LOCREM)
  278.       err(3, "invalid zipfile");
  279.     if (SH(h + LOCHOW) != STORED && SH(h + LOCHOW) != DEFLATED)
  280.       err(3, "first entry not deflated or stored--cannot unpack");
  281.     for (n = SH(h + LOCFIL); n--; ) g = getc(G.in);
  282.     for (n = SH(h + LOCEXT); n--; ) g = getc(G.in);
  283.     g = 0;
  284.     encrypted = h[LOCFLG] & CRPFLG;
  285.   }
  286.   else if (n == GZPMAG)
  287.   {
  288.     if (fread((char *)h, 1, GZPHDR, G.in) != GZPHDR)
  289.       err(3, "invalid gzip file");
  290.     if (h[GZPHOW] != DEFLATED)
  291.       err(3, "gzip file not deflated");
  292.     if (h[GZPFLG] & GZPMUL)
  293.       err(3, "cannot handle multi-part gzip files");
  294.     if (h[GZPFLG] & GZPISX)
  295.     {
  296.       n = getc(G.in);  n |= getc(G.in) << 8;
  297.       while (n--) g = getc(G.in);
  298.     }
  299.     if (h[GZPFLG] & GZPISF)
  300.       while ((g = getc(G.in)) != 0 && g != EOF) ;
  301.     if (h[GZPFLG] & GZPISC)
  302.       while ((g = getc(G.in)) != 0 && g != EOF) ;
  303.     g = 1;
  304.     encrypted = h[GZPFLG] & GZPISE;
  305.   }
  306.   else
  307.     err(3, "input not a zip or gzip file");
  308.   /* if entry encrypted, decrypt and validate encryption header */
  309.   if (encrypted)
  310. #if CRYPT
  311.     {
  312.       ush i, e;
  313.       if (p == (char *)NULL) {
  314.         if ((p = (char *)malloc(IZ_PWLEN+1)) == (char *)NULL)
  315.           err(1, "out of memory");
  316.         else if ((p = getp("Enter password: ", p, IZ_PWLEN+1)) == (char *)NULL)
  317.           err(1, "no tty to prompt for password");
  318.       }
  319. #if (defined(USE_ZLIB) && !defined(USE_OWN_CRCTAB))
  320.       /* initialize crc_32_tab pointer for decryption */
  321.       CRC_32_TAB = (ZCONST ulg Far *)get_crc_table();
  322. #endif
  323.       init_keys(p);
  324.       for (i = 0; i < RAND_HEAD_LEN; i++)
  325.         e = NEXTBYTE;
  326.       if (e != (ush)(h[LOCFLG] & EXTFLG ? h[LOCTIM + 1] : h[LOCCRC + 3]))
  327.         err(3, "incorrect password for first entry");
  328.     }
  329. #else /* !CRYPT */
  330.     err(3, "cannot decrypt entry (need to recompile with full crypt.c)");
  331. #endif /* ?CRYPT */
  332.   /* prepare output buffer and crc */
  333.   G.outptr = slide;
  334.   G.outcnt = 0L;
  335.   outsiz = 0L;
  336.   G.crc32val = CRCVAL_INITIAL;
  337.   /* decompress */
  338.   if (g || h[LOCHOW])
  339.   {                             /* deflated entry */
  340.     int r;
  341. #ifdef USE_ZLIB
  342.     /* need to allocate and prepare input buffer */
  343.     if ((G.inbuf = (uch *)malloc(INBUFSIZ)) == (uch *)NULL)
  344.        err(1, "out of memory");
  345. #endif /* USE_ZLIB */
  346.     if ((r = UZinflate(__G)) != 0) {
  347.       if (r == 3)
  348.         err(1, "out of memory");
  349.       else
  350.         err(4, "invalid compressed data--format violated");
  351.     }
  352.     inflate_free(__G);
  353.   }
  354.   else
  355.   {                             /* stored entry */
  356.     register ulg n;
  357.     n = LG(h + LOCLEN);
  358. #if CRYPT
  359.     if (n != LG(h + LOCSIZ) - (encrypted ? RAND_HEAD_LEN : 0)) {
  360. #else
  361.     if (n != LG(h + LOCSIZ)) {
  362. #endif
  363.       Info(slide, 1, ((char *)slide, "len %ld, siz %ldn", n, LG(h + LOCSIZ)));
  364.       err(4, "invalid compressed data--length mismatch");
  365.     }
  366.     while (n--) {
  367.       ush c = getc(G.in);
  368. #if CRYPT
  369.       if (encrypted)
  370.         zdecode(c);
  371. #endif
  372.       *G.outptr++ = (uch)c;
  373.       if (++G.outcnt == WSIZE)    /* do FlushOutput() */
  374.       {
  375.         G.crc32val = crc32(G.crc32val, slide, (extent)G.outcnt);
  376.         if (fwrite((char *)slide, 1,(extent)G.outcnt,out) != (extent)G.outcnt
  377.             && !PIPE_ERROR)
  378.           err(9, "out of space on stdout");
  379.         outsiz += G.outcnt;
  380.         G.outptr = slide;
  381.         G.outcnt = 0L;
  382.       }
  383.     }
  384.   }
  385.   if (G.outcnt)   /* flush one last time; no need to reset G.outptr/outcnt */
  386.   {
  387.     G.crc32val = crc32(G.crc32val, slide, (extent)G.outcnt);
  388.     if (fwrite((char *)slide, 1,(extent)G.outcnt,out) != (extent)G.outcnt
  389.         && !PIPE_ERROR)
  390.       err(9, "out of space on stdout");
  391.     outsiz += G.outcnt;
  392.   }
  393.   fflush(out);
  394.   /* if extended header, get it */
  395.   if (g)
  396.   {
  397.     if (fread((char *)h + LOCCRC, 1, 8, G.in) != 8)
  398.       err(3, "gzip file ended prematurely");
  399.   }
  400.   else
  401.     if ((h[LOCFLG] & EXTFLG) &&
  402.         fread((char *)h + LOCCRC - 4, 1, EXTHDR, G.in) != EXTHDR)
  403.       err(3, "zipfile ended prematurely");
  404.   /* validate decompression */
  405.   if (LG(h + LOCCRC) != G.crc32val)
  406.     err(4, "invalid compressed data--crc error");
  407.   if (LG((g ? (h + LOCSIZ) : (h + LOCLEN))) != outsiz)
  408.     err(4, "invalid compressed data--length error");
  409.   /* check if there are more entries */
  410.   if (!g && fread((char *)h, 1, 4, G.in) == 4 && LG(h) == LOCSIG)
  411.     Info(slide, 1, ((char *)slide,
  412.       "funzip warning: zipfile has more than one entry--rest ignoredn"));
  413.   DESTROYGLOBALS()
  414.   RETURN (0);
  415. }